
    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_ea68ce93a0a6c9259101805e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec7c815b1be8f44b126fa4b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_6b9c9e62c0d2d85678f9c715.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_445647ae7cb9cb6e4aacb9c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a42060fdc23e2daad6fe0c5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_b9ebc099c5292a004c578951.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m2{transform:matrix(0.236550,0.000000,-0.080896,0.236550,0,0);-ms-transform:matrix(0.236550,0.000000,-0.080896,0.236550,0,0);-webkit-transform:matrix(0.236550,0.000000,-0.080896,0.236550,0,0);}
.m6{transform:matrix(0.236874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236874,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.268481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268481,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.268487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268487,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-85.677841px;}
.v1{vertical-align:-82.800000px;}
.vb{vertical-align:-81.000828px;}
.v11{vertical-align:-79.200936px;}
.v4{vertical-align:-42.120036px;}
.v6{vertical-align:-33.120000px;}
.v2{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:5.402160px;}
.v7{vertical-align:9.000000px;}
.v5{vertical-align:17.998518px;}
.ve{vertical-align:21.960000px;}
.vf{vertical-align:23.040000px;}
.v9{vertical-align:25.919400px;}
.vd{vertical-align:30.960000px;}
.vc{vertical-align:32.040000px;}
.v3{vertical-align:33.120000px;}
.v10{vertical-align:34.200000px;}
.v8{vertical-align:42.120000px;}
.v13{vertical-align:76.321980px;}
.ls59{letter-spacing:-5.030114px;}
.ls5a{letter-spacing:-4.097052px;}
.ls52{letter-spacing:-3.575399px;}
.ls51{letter-spacing:-3.214056px;}
.ls58{letter-spacing:-3.185037px;}
.ls57{letter-spacing:-3.037712px;}
.ls56{letter-spacing:-2.028595px;}
.ls53{letter-spacing:-1.901808px;}
.ls55{letter-spacing:-1.775021px;}
.ls54{letter-spacing:-1.413677px;}
.ls5f{letter-spacing:-0.842377px;}
.ls66{letter-spacing:-0.687183px;}
.ls7f{letter-spacing:-0.344081px;}
.ls3d{letter-spacing:-0.237814px;}
.ls46{letter-spacing:-0.194575px;}
.ls1c{letter-spacing:-0.181944px;}
.ls7c{letter-spacing:-0.149328px;}
.ls49{letter-spacing:-0.136923px;}
.ls43{letter-spacing:-0.093684px;}
.ls7d{letter-spacing:-0.093646px;}
.lsa4{letter-spacing:-0.093600px;}
.ls47{letter-spacing:-0.079271px;}
.ls50{letter-spacing:-0.072065px;}
.lsf{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.064800px;}
.ls3e{letter-spacing:-0.057652px;}
.ls4d{letter-spacing:-0.057600px;}
.ls4f{letter-spacing:-0.050445px;}
.ls12{letter-spacing:-0.050400px;}
.ls4e{letter-spacing:-0.043239px;}
.ls45{letter-spacing:-0.036032px;}
.ls15{letter-spacing:-0.036000px;}
.ls41{letter-spacing:-0.028826px;}
.ls11{letter-spacing:-0.028800px;}
.ls40{letter-spacing:-0.021619px;}
.ls14{letter-spacing:-0.021600px;}
.ls81{letter-spacing:-0.014488px;}
.ls3f{letter-spacing:-0.014413px;}
.lse{letter-spacing:-0.014400px;}
.ls44{letter-spacing:-0.007206px;}
.ls10{letter-spacing:-0.007200px;}
.ls80{letter-spacing:-0.003622px;}
.lsd{letter-spacing:0.000000px;}
.ls77{letter-spacing:0.004753px;}
.ls8{letter-spacing:0.007200px;}
.ls33{letter-spacing:0.007206px;}
.ls9c{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.014400px;}
.ls2d{letter-spacing:0.014413px;}
.ls76{letter-spacing:0.018110px;}
.lsa1{letter-spacing:0.019764px;}
.ls1{letter-spacing:0.021600px;}
.ls21{letter-spacing:0.021619px;}
.ls9d{letter-spacing:0.026352px;}
.ls3{letter-spacing:0.028800px;}
.ls42{letter-spacing:0.028826px;}
.ls8a{letter-spacing:0.032940px;}
.lsc{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.036032px;}
.ls98{letter-spacing:0.039528px;}
.ls4{letter-spacing:0.043200px;}
.ls3b{letter-spacing:0.043239px;}
.ls7e{letter-spacing:0.043463px;}
.ls8f{letter-spacing:0.046116px;}
.ls6{letter-spacing:0.050400px;}
.ls35{letter-spacing:0.050445px;}
.ls85{letter-spacing:0.052704px;}
.ls2{letter-spacing:0.057600px;}
.ls1e{letter-spacing:0.057652px;}
.ls99{letter-spacing:0.059292px;}
.lsa{letter-spacing:0.064800px;}
.ls4a{letter-spacing:0.064858px;}
.ls86{letter-spacing:0.065880px;}
.ls16{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.072065px;}
.ls8d{letter-spacing:0.079056px;}
.ls5{letter-spacing:0.079200px;}
.ls1f{letter-spacing:0.079271px;}
.ls9b{letter-spacing:0.085644px;}
.ls9{letter-spacing:0.086400px;}
.ls17{letter-spacing:0.093600px;}
.ls96{letter-spacing:0.100891px;}
.ls25{letter-spacing:0.101420px;}
.ls29{letter-spacing:0.101587px;}
.ls32{letter-spacing:0.101911px;}
.ls28{letter-spacing:0.104875px;}
.ls2a{letter-spacing:0.105072px;}
.ls2f{letter-spacing:0.105161px;}
.ls20{letter-spacing:0.105219px;}
.ls23{letter-spacing:0.105308px;}
.ls2e{letter-spacing:0.105317px;}
.ls9f{letter-spacing:0.105408px;}
.ls30{letter-spacing:0.106103px;}
.ls2b{letter-spacing:0.107978px;}
.ls22{letter-spacing:0.108302px;}
.ls2c{letter-spacing:0.108390px;}
.ls34{letter-spacing:0.108478px;}
.ls26{letter-spacing:0.109351px;}
.ls27{letter-spacing:0.122422px;}
.ls31{letter-spacing:0.122510px;}
.lsa0{letter-spacing:0.125172px;}
.ls78{letter-spacing:0.126040px;}
.ls9e{letter-spacing:0.131760px;}
.ls82{letter-spacing:0.133242px;}
.ls8b{letter-spacing:0.138348px;}
.ls1b{letter-spacing:0.144000px;}
.ls88{letter-spacing:0.144936px;}
.ls79{letter-spacing:0.147647px;}
.ls89{letter-spacing:0.151524px;}
.ls8e{letter-spacing:0.158112px;}
.ls8c{letter-spacing:0.164700px;}
.ls87{letter-spacing:0.177876px;}
.ls38{letter-spacing:0.179400px;}
.ls1a{letter-spacing:0.180000px;}
.ls93{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.181944px;}
.ls9a{letter-spacing:0.237168px;}
.ls48{letter-spacing:0.331498px;}
.ls36{letter-spacing:0.413276px;}
.ls39{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.813496px;}
.ls7b{letter-spacing:0.826358px;}
.ls90{letter-spacing:0.893458px;}
.ls73{letter-spacing:0.998369px;}
.ls7a{letter-spacing:1.258813px;}
.ls94{letter-spacing:1.295514px;}
.ls60{letter-spacing:1.478602px;}
.ls74{letter-spacing:1.615718px;}
.ls69{letter-spacing:1.616265px;}
.ls5e{letter-spacing:1.618943px;}
.ls75{letter-spacing:1.644657px;}
.ls91{letter-spacing:1.700133px;}
.ls62{letter-spacing:1.975802px;}
.ls6a{letter-spacing:2.069686px;}
.ls63{letter-spacing:2.092911px;}
.ls65{letter-spacing:2.151816px;}
.ls64{letter-spacing:2.454099px;}
.ls92{letter-spacing:2.652005px;}
.ls95{letter-spacing:3.008320px;}
.ls6f{letter-spacing:3.498755px;}
.ls6b{letter-spacing:3.586361px;}
.ls6c{letter-spacing:3.712294px;}
.lsa3{letter-spacing:4.104000px;}
.ls67{letter-spacing:4.161083px;}
.ls6d{letter-spacing:4.402189px;}
.ls68{letter-spacing:4.522271px;}
.ls6e{letter-spacing:4.758088px;}
.ls37{letter-spacing:5.400000px;}
.ls71{letter-spacing:27.343800px;}
.ls97{letter-spacing:32.492016px;}
.lsb{letter-spacing:33.984000px;}
.ls1d{letter-spacing:59.702396px;}
.ls5d{letter-spacing:61.903800px;}
.ls3a{letter-spacing:197.983625px;}
.ls19{letter-spacing:198.000000px;}
.ls5b{letter-spacing:213.463144px;}
.lsa2{letter-spacing:305.987141px;}
.ls3c{letter-spacing:326.828386px;}
.ls5c{letter-spacing:420.824456px;}
.ls84{letter-spacing:441.092952px;}
.ls4c{letter-spacing:639.707303px;}
.ls83{letter-spacing:1201.408020px;}
.ls0{letter-spacing:1216.528200px;}
.ls70{letter-spacing:1228.663800px;}
.ls61{letter-spacing:1231.650000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa5{word-spacing:-39.563575px;}
.ws9d{word-spacing:-39.528000px;}
.wsaa{word-spacing:-39.504942px;}
.wsd1{word-spacing:-39.500001px;}
.wsa9{word-spacing:-39.497036px;}
.wsd7{word-spacing:-19.764000px;}
.ws16d{word-spacing:-18.277099px;}
.wsce{word-spacing:-18.138710px;}
.ws1e4{word-spacing:-18.066645px;}
.ws1e5{word-spacing:-18.059439px;}
.ws9b{word-spacing:-18.050400px;}
.ws9c{word-spacing:-18.036000px;}
.ws2{word-spacing:-18.028800px;}
.ws1{word-spacing:-18.021600px;}
.wsa4{word-spacing:-18.016200px;}
.ws3{word-spacing:-18.000000px;}
.wsd4{word-spacing:-17.987250px;}
.wsae{word-spacing:-17.985900px;}
.ws4{word-spacing:-17.985600px;}
.wscd{word-spacing:-17.958548px;}
.wscf{word-spacing:-17.936929px;}
.ws16c{word-spacing:-17.915911px;}
.wsd0{word-spacing:-17.879277px;}
.wscc{word-spacing:-17.778386px;}
.ws196{word-spacing:-17.159132px;}
.ws194{word-spacing:-16.802816px;}
.ws12d{word-spacing:-16.209744px;}
.ws170{word-spacing:-16.208927px;}
.ws197{word-spacing:-15.850945px;}
.ws12e{word-spacing:-15.848400px;}
.ws16f{word-spacing:-15.847739px;}
.ws12c{word-spacing:-15.721613px;}
.ws12f{word-spacing:-15.594826px;}
.ws187{word-spacing:-15.052708px;}
.ws183{word-spacing:-15.023770px;}
.ws185{word-spacing:-14.666865px;}
.ws130{word-spacing:-14.501038px;}
.ws12a{word-spacing:-14.409365px;}
.ws186{word-spacing:-14.406420px;}
.ws131{word-spacing:-14.353713px;}
.ws12b{word-spacing:-14.048022px;}
.ws133{word-spacing:-13.441698px;}
.ws132{word-spacing:-12.508636px;}
.ws9e{word-spacing:-12.151944px;}
.ws9f{word-spacing:-11.970000px;}
.wsa0{word-spacing:-11.788056px;}
.ws15b{word-spacing:-11.354539px;}
.ws16e{word-spacing:-11.145632px;}
.ws18e{word-spacing:-10.158816px;}
.ws18b{word-spacing:-10.144411px;}
.ws18d{word-spacing:-10.137209px;}
.ws188{word-spacing:-10.086992px;}
.ws18a{word-spacing:-10.054394px;}
.ws16b{word-spacing:-10.045229px;}
.ws195{word-spacing:-9.764215px;}
.ws184{word-spacing:-9.752308px;}
.wsa2{word-spacing:-9.008100px;}
.wsd8{word-spacing:-9.000000px;}
.wsd2{word-spacing:-8.993700px;}
.wsa8{word-spacing:-8.992950px;}
.ws189{word-spacing:-6.886797px;}
.ws18c{word-spacing:-6.612035px;}
.ws181{word-spacing:-2.606271px;}
.ws180{word-spacing:-2.250373px;}
.ws17f{word-spacing:-1.560478px;}
.ws182{word-spacing:-1.346939px;}
.ws17e{word-spacing:-1.073171px;}
.ws168{word-spacing:-0.508936px;}
.wsc9{word-spacing:-0.504000px;}
.wse6{word-spacing:-0.497247px;}
.ws171{word-spacing:-0.470991px;}
.wsc6{word-spacing:-0.432000px;}
.wsdd{word-spacing:-0.410769px;}
.ws21c{word-spacing:-0.396356px;}
.ws211{word-spacing:-0.374737px;}
.wscb{word-spacing:-0.324000px;}
.ws1dd{word-spacing:-0.295200px;}
.wsdb{word-spacing:-0.273846px;}
.wsc7{word-spacing:-0.272916px;}
.wsca{word-spacing:-0.252000px;}
.wsff{word-spacing:-0.237814px;}
.wsfe{word-spacing:-0.208988px;}
.ws47{word-spacing:-0.201600px;}
.ws139{word-spacing:-0.194575px;}
.ws118{word-spacing:-0.194400px;}
.wsee{word-spacing:-0.165749px;}
.ws1fd{word-spacing:-0.151336px;}
.ws87{word-spacing:-0.151200px;}
.ws18f{word-spacing:-0.144000px;}
.wsf8{word-spacing:-0.136923px;}
.ws1e3{word-spacing:-0.136800px;}
.ws172{word-spacing:-0.135120px;}
.ws169{word-spacing:-0.131621px;}
.ws104{word-spacing:-0.122510px;}
.ws65{word-spacing:-0.122400px;}
.ws138{word-spacing:-0.115304px;}
.ws190{word-spacing:-0.115200px;}
.ws9a{word-spacing:-0.108000px;}
.ws21e{word-spacing:-0.100891px;}
.wse0{word-spacing:-0.093684px;}
.ws1f{word-spacing:-0.093600px;}
.wsb7{word-spacing:-0.086400px;}
.ws100{word-spacing:-0.079271px;}
.wsbf{word-spacing:-0.079200px;}
.wsda{word-spacing:-0.072065px;}
.wsc8{word-spacing:-0.072000px;}
.ws101{word-spacing:-0.064858px;}
.ws19b{word-spacing:-0.064800px;}
.wsa{word-spacing:-0.057600px;}
.ws109{word-spacing:-0.050445px;}
.ws99{word-spacing:-0.050400px;}
.wse1{word-spacing:-0.043239px;}
.ws1df{word-spacing:-0.039528px;}
.wsdc{word-spacing:-0.036032px;}
.wsb6{word-spacing:-0.036000px;}
.ws1e2{word-spacing:-0.032940px;}
.wse3{word-spacing:-0.028826px;}
.wsc0{word-spacing:-0.028800px;}
.wse7{word-spacing:-0.021619px;}
.ws9{word-spacing:-0.021600px;}
.wse5{word-spacing:-0.014413px;}
.wsbe{word-spacing:-0.014400px;}
.ws1e0{word-spacing:-0.013176px;}
.ws117{word-spacing:-0.007206px;}
.ws6d{word-spacing:-0.007200px;}
.ws0{word-spacing:-0.006120px;}
.ws5{word-spacing:0.000000px;}
.ws1da{word-spacing:0.006588px;}
.ws8{word-spacing:0.007200px;}
.wsde{word-spacing:0.007206px;}
.ws1e1{word-spacing:0.013176px;}
.ws6{word-spacing:0.014400px;}
.wsdf{word-spacing:0.014413px;}
.ws193{word-spacing:0.021731px;}
.ws1a2{word-spacing:0.026352px;}
.wsb{word-spacing:0.028800px;}
.ws1d9{word-spacing:0.032940px;}
.ws6e{word-spacing:0.050400px;}
.ws1e6{word-spacing:0.057600px;}
.ws1d7{word-spacing:0.057652px;}
.ws1dc{word-spacing:0.065880px;}
.ws7{word-spacing:0.072000px;}
.wse2{word-spacing:0.079271px;}
.ws17d{word-spacing:0.082130px;}
.ws10a{word-spacing:0.115200px;}
.ws1b9{word-spacing:0.180162px;}
.ws6b{word-spacing:0.187200px;}
.wse4{word-spacing:0.223401px;}
.ws1b7{word-spacing:0.230607px;}
.ws94{word-spacing:0.244800px;}
.ws1b8{word-spacing:0.245020px;}
.ws6c{word-spacing:0.259200px;}
.ws95{word-spacing:0.280800px;}
.ws96{word-spacing:0.316800px;}
.ws13c{word-spacing:0.396356px;}
.ws13d{word-spacing:0.417976px;}
.ws1db{word-spacing:0.434808px;}
.ws1d0{word-spacing:0.504454px;}
.ws1cf{word-spacing:0.562105px;}
.ws122{word-spacing:0.605344px;}
.ws1ce{word-spacing:0.634170px;}
.wsf7{word-spacing:0.648583px;}
.ws121{word-spacing:0.655790px;}
.wsbb{word-spacing:0.662400px;}
.ws135{word-spacing:0.662996px;}
.ws19e{word-spacing:0.677409px;}
.ws209{word-spacing:0.684616px;}
.ws1c5{word-spacing:0.699029px;}
.wsf6{word-spacing:0.706235px;}
.ws37{word-spacing:0.770400px;}
.ws1ee{word-spacing:0.922429px;}
.ws175{word-spacing:0.972875px;}
.ws103{word-spacing:0.994494px;}
.ws1ea{word-spacing:1.023320px;}
.ws7f{word-spacing:1.029600px;}
.ws102{word-spacing:1.044940px;}
.ws36{word-spacing:1.080000px;}
.ws1ef{word-spacing:1.080972px;}
.ws1e9{word-spacing:1.109798px;}
.ws38{word-spacing:1.116000px;}
.ws7e{word-spacing:1.123200px;}
.ws155{word-spacing:1.289960px;}
.ws173{word-spacing:1.304373px;}
.ws129{word-spacing:1.354818px;}
.ws205{word-spacing:1.362025px;}
.ws156{word-spacing:1.369231px;}
.ws127{word-spacing:1.376438px;}
.ws191{word-spacing:1.398057px;}
.ws174{word-spacing:1.405264px;}
.ws128{word-spacing:1.412470px;}
.ws192{word-spacing:1.477328px;}
.ws1c1{word-spacing:1.686316px;}
.ws1c2{word-spacing:1.707936px;}
.ws161{word-spacing:1.722349px;}
.wsb2{word-spacing:1.785600px;}
.ws141{word-spacing:1.916924px;}
.ws142{word-spacing:2.046640px;}
.ws1ae{word-spacing:2.097086px;}
.ws1af{word-spacing:2.133118px;}
.wsb9{word-spacing:2.138400px;}
.wsb8{word-spacing:2.145600px;}
.ws3c{word-spacing:2.325600px;}
.ws11b{word-spacing:2.327693px;}
.ws11a{word-spacing:2.349312px;}
.ws219{word-spacing:2.363725px;}
.ws115{word-spacing:2.435790px;}
.ws3d{word-spacing:2.462400px;}
.ws3b{word-spacing:2.469600px;}
.ws218{word-spacing:2.486236px;}
.ws11c{word-spacing:2.543887px;}
.ws1b1{word-spacing:2.673604px;}
.ws1b2{word-spacing:2.716843px;}
.wsea{word-spacing:2.738462px;}
.ws147{word-spacing:2.803321px;}
.ws144{word-spacing:2.817734px;}
.ws1cc{word-spacing:2.832147px;}
.ws143{word-spacing:2.839353px;}
.ws159{word-spacing:2.846560px;}
.ws29{word-spacing:2.865600px;}
.wse8{word-spacing:2.868179px;}
.wseb{word-spacing:2.882592px;}
.ws2a{word-spacing:2.887200px;}
.wse9{word-spacing:2.889798px;}
.ws148{word-spacing:2.918624px;}
.ws1fb{word-spacing:2.997896px;}
.ws1ff{word-spacing:3.120406px;}
.ws1fc{word-spacing:3.170851px;}
.ws1fe{word-spacing:3.199677px;}
.wsf1{word-spacing:3.480730px;}
.wsf2{word-spacing:3.495143px;}
.ws41{word-spacing:3.506400px;}
.ws40{word-spacing:3.564000px;}
.wsb1{word-spacing:3.636000px;}
.wsb0{word-spacing:3.664800px;}
.ws1bd{word-spacing:3.718544px;}
.ws1bc{word-spacing:3.848260px;}
.ws105{word-spacing:3.869880px;}
.ws11d{word-spacing:3.884293px;}
.ws106{word-spacing:3.898706px;}
.ws120{word-spacing:3.913119px;}
.ws1cd{word-spacing:3.927532px;}
.ws11e{word-spacing:3.949151px;}
.wsef{word-spacing:3.970770px;}
.wsf0{word-spacing:3.992390px;}
.ws1ed{word-spacing:4.237410px;}
.ws1b{word-spacing:4.240800px;}
.ws11f{word-spacing:4.259030px;}
.ws1b3{word-spacing:4.280649px;}
.ws1b4{word-spacing:4.295062px;}
.ws80{word-spacing:4.298400px;}
.ws81{word-spacing:4.312800px;}
.ws20c{word-spacing:4.475224px;}
.ws56{word-spacing:4.572000px;}
.ws177{word-spacing:4.648180px;}
.ws57{word-spacing:4.651200px;}
.ws178{word-spacing:4.655386px;}
.ws20b{word-spacing:4.669799px;}
.ws55{word-spacing:4.687200px;}
.ws20a{word-spacing:4.828342px;}
.ws1d6{word-spacing:4.857168px;}
.ws48{word-spacing:4.896000px;}
.ws17b{word-spacing:4.936439px;}
.ws49{word-spacing:5.047200px;}
.ws1d5{word-spacing:5.058949px;}
.ws14c{word-spacing:5.203079px;}
.ws157{word-spacing:5.239111px;}
.ws91{word-spacing:5.277600px;}
.ws14e{word-spacing:5.296763px;}
.ws158{word-spacing:5.303969px;}
.wsfa{word-spacing:5.311176px;}
.wsf9{word-spacing:5.347208px;}
.ws8f{word-spacing:5.356800px;}
.ws14d{word-spacing:5.368828px;}
.wsfb{word-spacing:5.397654px;}
.ws90{word-spacing:5.472000px;}
.wsfc{word-spacing:5.577816px;}
.ws1c6{word-spacing:5.628261px;}
.ws13e{word-spacing:5.700326px;}
.ws116{word-spacing:5.729152px;}
.wsfd{word-spacing:5.772390px;}
.ws150{word-spacing:6.024617px;}
.ws1d2{word-spacing:6.046237px;}
.ws151{word-spacing:6.089476px;}
.ws1d1{word-spacing:6.111095px;}
.ws136{word-spacing:6.276844px;}
.ws137{word-spacing:6.291257px;}
.wsb4{word-spacing:6.386400px;}
.ws32{word-spacing:6.415200px;}
.wsba{word-spacing:6.429600px;}
.ws6a{word-spacing:6.465600px;}
.ws33{word-spacing:6.501600px;}
.wsb3{word-spacing:6.566400px;}
.ws5f{word-spacing:6.667200px;}
.ws1ec{word-spacing:6.687613px;}
.ws3f{word-spacing:6.732000px;}
.ws119{word-spacing:6.738059px;}
.ws3e{word-spacing:6.760800px;}
.ws1eb{word-spacing:6.802917px;}
.ws5e{word-spacing:6.818400px;}
.ws79{word-spacing:6.912000px;}
.ws4e{word-spacing:6.955200px;}
.ws4c{word-spacing:6.998400px;}
.ws76{word-spacing:7.012800px;}
.ws7c{word-spacing:7.034400px;}
.ws77{word-spacing:7.041600px;}
.ws75{word-spacing:7.063200px;}
.ws4d{word-spacing:7.120800px;}
.wsec{word-spacing:7.177654px;}
.ws214{word-spacing:7.192067px;}
.ws7d{word-spacing:7.192800px;}
.ws78{word-spacing:7.207200px;}
.wsed{word-spacing:7.228099px;}
.ws215{word-spacing:7.271338px;}
.ws1f1{word-spacing:7.429881px;}
.ws1f2{word-spacing:7.465913px;}
.ws212{word-spacing:7.710934px;}
.ws108{word-spacing:7.768585px;}
.ws1a0{word-spacing:7.782998px;}
.ws152{word-spacing:7.819031px;}
.ws19f{word-spacing:7.826237px;}
.ws153{word-spacing:7.833444px;}
.ws107{word-spacing:7.840650px;}
.ws82{word-spacing:7.840800px;}
.ws149{word-spacing:7.869476px;}
.ws213{word-spacing:7.891096px;}
.ws216{word-spacing:7.912715px;}
.ws98{word-spacing:8.114400px;}
.ws97{word-spacing:8.222400px;}
.ws1a{word-spacing:8.229600px;}
.ws1f0{word-spacing:8.244213px;}
.ws19{word-spacing:8.272800px;}
.ws1c0{word-spacing:8.590124px;}
.ws8a{word-spacing:8.596800px;}
.ws1e8{word-spacing:8.611744px;}
.ws8c{word-spacing:8.618400px;}
.ws8b{word-spacing:8.632800px;}
.ws1e7{word-spacing:8.683808px;}
.ws14a{word-spacing:8.863970px;}
.wsf{word-spacing:8.913600px;}
.ws14b{word-spacing:8.914416px;}
.wse{word-spacing:8.949600px;}
.ws134{word-spacing:8.950448px;}
.ws19a{word-spacing:9.159436px;}
.ws2d{word-spacing:9.180000px;}
.ws8d{word-spacing:9.201600px;}
.ws198{word-spacing:9.267533px;}
.ws17c{word-spacing:9.274740px;}
.ws5b{word-spacing:9.295200px;}
.ws8e{word-spacing:9.309600px;}
.ws2f{word-spacing:9.331200px;}
.ws199{word-spacing:9.339598px;}
.ws2e{word-spacing:9.367200px;}
.ws89{word-spacing:9.662400px;}
.ws88{word-spacing:9.756000px;}
.wsc{word-spacing:10.324800px;}
.wsd{word-spacing:10.360800px;}
.ws34{word-spacing:10.706400px;}
.ws35{word-spacing:10.764000px;}
.ws1b5{word-spacing:11.105186px;}
.ws1ac{word-spacing:11.134012px;}
.ws1ad{word-spacing:11.141218px;}
.ws1b6{word-spacing:11.155631px;}
.ws145{word-spacing:11.465510px;}
.ws146{word-spacing:11.479923px;}
.ws15f{word-spacing:11.840247px;}
.ws15e{word-spacing:11.847453px;}
.ws217{word-spacing:11.854660px;}
.ws14f{word-spacing:12.114093px;}
.ws176{word-spacing:12.193364px;}
.ws63{word-spacing:12.434400px;}
.ws1cb{word-spacing:12.467210px;}
.ws64{word-spacing:12.470400px;}
.ws1be{word-spacing:12.481623px;}
.ws1bf{word-spacing:12.488830px;}
.ws1ca{word-spacing:12.625753px;}
.ws1f4{word-spacing:12.719437px;}
.ws13{word-spacing:12.722400px;}
.ws1f5{word-spacing:12.769883px;}
.ws1f3{word-spacing:12.784296px;}
.ws10c{word-spacing:12.805915px;}
.ws12{word-spacing:12.945600px;}
.ws14{word-spacing:12.952800px;}
.ws10b{word-spacing:12.971664px;}
.ws179{word-spacing:13.202271px;}
.ws31{word-spacing:13.226400px;}
.ws17a{word-spacing:13.303162px;}
.ws30{word-spacing:13.305600px;}
.ws20{word-spacing:13.665600px;}
.ws21{word-spacing:13.687200px;}
.ws22{word-spacing:13.730400px;}
.ws1c9{word-spacing:13.987778px;}
.ws3a{word-spacing:14.018400px;}
.ws1c8{word-spacing:14.059842px;}
.ws39{word-spacing:14.097600px;}
.ws17{word-spacing:14.162400px;}
.ws61{word-spacing:14.227200px;}
.ws200{word-spacing:14.276037px;}
.ws1d4{word-spacing:14.283243px;}
.ws62{word-spacing:14.292000px;}
.ws1d3{word-spacing:14.297656px;}
.ws16{word-spacing:14.320800px;}
.ws18{word-spacing:14.342400px;}
.wsb5{word-spacing:14.349600px;}
.ws10{word-spacing:14.371200px;}
.ws60{word-spacing:14.436000px;}
.ws11{word-spacing:14.457600px;}
.ws15{word-spacing:14.508000px;}
.wsc4{word-spacing:14.544000px;}
.wsc5{word-spacing:14.623200px;}
.ws28{word-spacing:14.731200px;}
.ws125{word-spacing:14.737252px;}
.ws126{word-spacing:14.744458px;}
.ws27{word-spacing:14.781600px;}
.ws45{word-spacing:14.810400px;}
.ws44{word-spacing:14.961600px;}
.ws46{word-spacing:15.012000px;}
.ws1ba{word-spacing:15.270531px;}
.ws110{word-spacing:15.364215px;}
.ws10f{word-spacing:15.414661px;}
.ws1c4{word-spacing:15.429074px;}
.ws1bb{word-spacing:15.472313px;}
.ws154{word-spacing:15.486726px;}
.ws206{word-spacing:15.493932px;}
.ws1c3{word-spacing:15.501138px;}
.wsc3{word-spacing:15.732000px;}
.ws21b{word-spacing:15.753365px;}
.wsc1{word-spacing:15.796800px;}
.wsc2{word-spacing:15.832800px;}
.ws21a{word-spacing:15.854256px;}
.ws54{word-spacing:16.005600px;}
.ws13b{word-spacing:16.048831px;}
.ws53{word-spacing:16.070400px;}
.ws15c{word-spacing:16.077657px;}
.wsf5{word-spacing:16.164135px;}
.ws13a{word-spacing:16.178548px;}
.ws15d{word-spacing:16.214580px;}
.ws203{word-spacing:16.510046px;}
.ws19d{word-spacing:16.517252px;}
.ws19c{word-spacing:16.603730px;}
.ws204{word-spacing:16.632556px;}
.ws10d{word-spacing:16.798305px;}
.ws10e{word-spacing:16.863163px;}
.ws43{word-spacing:16.869600px;}
.ws42{word-spacing:16.884000px;}
.ws50{word-spacing:16.891200px;}
.ws207{word-spacing:16.906402px;}
.ws4f{word-spacing:16.912800px;}
.ws208{word-spacing:16.913609px;}
.wsbc{word-spacing:17.136000px;}
.wsbd{word-spacing:17.229600px;}
.wsf4{word-spacing:17.468508px;}
.wsf3{word-spacing:17.504540px;}
.ws67{word-spacing:17.805600px;}
.ws113{word-spacing:17.987374px;}
.ws66{word-spacing:18.007200px;}
.ws114{word-spacing:18.088265px;}
.ws84{word-spacing:18.280800px;}
.ws83{word-spacing:18.352800px;}
.ws112{word-spacing:18.967455px;}
.ws2b{word-spacing:19.022400px;}
.ws111{word-spacing:19.061140px;}
.ws2c{word-spacing:19.072800px;}
.ws23{word-spacing:19.699200px;}
.ws24{word-spacing:19.742400px;}
.ws123{word-spacing:19.846646px;}
.ws124{word-spacing:19.868265px;}
.wsaf{word-spacing:20.880000px;}
.ws26{word-spacing:21.074400px;}
.ws70{word-spacing:21.175200px;}
.ws140{word-spacing:21.208671px;}
.ws6f{word-spacing:21.218400px;}
.ws25{word-spacing:21.225600px;}
.ws13f{word-spacing:21.230290px;}
.ws1f6{word-spacing:22.188752px;}
.ws160{word-spacing:22.217578px;}
.ws1f7{word-spacing:22.347294px;}
.ws1fa{word-spacing:22.426566px;}
.ws1f8{word-spacing:22.577902px;}
.ws5d{word-spacing:22.600800px;}
.ws5c{word-spacing:22.665600px;}
.ws1f9{word-spacing:22.678793px;}
.ws52{word-spacing:23.695200px;}
.ws68{word-spacing:25.891200px;}
.ws69{word-spacing:25.920000px;}
.ws1b0{word-spacing:26.930616px;}
.ws7b{word-spacing:27.021600px;}
.ws7a{word-spacing:27.043200px;}
.ws1d{word-spacing:27.482400px;}
.ws1c{word-spacing:27.547200px;}
.ws1e{word-spacing:27.734400px;}
.ws86{word-spacing:28.044000px;}
.ws85{word-spacing:28.116000px;}
.ws210{word-spacing:29.481710px;}
.ws73{word-spacing:29.764800px;}
.ws74{word-spacing:29.808000px;}
.ws92{word-spacing:31.154400px;}
.ws93{word-spacing:31.298400px;}
.ws59{word-spacing:32.184000px;}
.ws58{word-spacing:32.414400px;}
.ws5a{word-spacing:32.450400px;}
.ws20f{word-spacing:33.820011px;}
.ws20e{word-spacing:33.935314px;}
.ws20d{word-spacing:34.201954px;}
.ws1c7{word-spacing:34.468594px;}
.ws4b{word-spacing:37.375200px;}
.ws4a{word-spacing:37.411200px;}
.ws201{word-spacing:38.511429px;}
.ws202{word-spacing:38.569081px;}
.ws21d{word-spacing:38.871753px;}
.ws51{word-spacing:40.651200px;}
.ws72{word-spacing:41.400000px;}
.ws71{word-spacing:41.414400px;}
.wsa6{word-spacing:53.813813px;}
.ws166{word-spacing:60.491193px;}
.wsa1{word-spacing:65.189810px;}
.wsa7{word-spacing:65.623642px;}
.ws167{word-spacing:84.618488px;}
.ws15a{word-spacing:93.148685px;}
.ws163{word-spacing:104.782219px;}
.ws16a{word-spacing:108.298972px;}
.ws1a4{word-spacing:108.662472px;}
.ws1a7{word-spacing:108.669060px;}
.ws164{word-spacing:120.982386px;}
.ws165{word-spacing:156.978754px;}
.ws1a1{word-spacing:173.198520px;}
.ws1a5{word-spacing:183.541680px;}
.ws1a8{word-spacing:183.548268px;}
.ws1ab{word-spacing:183.554856px;}
.ws1aa{word-spacing:183.890844px;}
.ws1a6{word-spacing:183.904020px;}
.ws1a9{word-spacing:259.125804px;}
.wsd3{word-spacing:265.349388px;}
.ws1a3{word-spacing:308.430396px;}
.ws162{word-spacing:323.618400px;}
.wsad{word-spacing:334.186966px;}
.wsd6{word-spacing:334.188715px;}
.wsa3{word-spacing:488.478550px;}
.wsd9{word-spacing:577.080000px;}
.wsab{word-spacing:593.835357px;}
.wsd5{word-spacing:594.389388px;}
.wsac{word-spacing:627.156014px;}
.ws1d8{word-spacing:1312.250544px;}
.ws1de{word-spacing:1313.693316px;}
._42{margin-left:-1313.640612px;}
._3e{margin-left:-1312.197840px;}
._3d{margin-left:-1038.242448px;}
._41{margin-left:-1018.083168px;}
._13{margin-left:-345.506337px;}
._1f{margin-left:-295.578033px;}
._12{margin-left:-279.628788px;}
._14{margin-left:-255.586833px;}
._1c{margin-left:-215.171680px;}
._18{margin-left:-201.794604px;}
._5{margin-left:-198.849600px;}
._4{margin-left:-197.841600px;}
._a{margin-left:-196.535123px;}
._1a{margin-left:-194.959962px;}
._10{margin-left:-182.482487px;}
._6{margin-left:-176.947200px;}
._16{margin-left:-165.870386px;}
._1d{margin-left:-160.798820px;}
._15{margin-left:-141.030484px;}
._17{margin-left:-136.713004px;}
._1b{margin-left:-129.119675px;}
._30{margin-left:-116.969940px;}
._c{margin-left:-107.153151px;}
._b{margin-left:-98.599059px;}
._11{margin-left:-94.581595px;}
._e{margin-left:-92.394280px;}
._d{margin-left:-90.016142px;}
._19{margin-left:-88.397101px;}
._f{margin-left:-79.934276px;}
._2e{margin-left:-76.651380px;}
._39{margin-left:-75.628548px;}
._2f{margin-left:-73.443024px;}
._1e{margin-left:-65.988000px;}
._21{margin-left:-54.720000px;}
._20{margin-left:-53.028000px;}
._31{margin-left:-43.922196px;}
._7{margin-left:-17.150400px;}
._1{margin-left:-16.128000px;}
._22{margin-left:-3.746562px;}
._2c{margin-left:-2.461320px;}
._0{margin-left:-1.260000px;}
._3{width:1.884168px;}
._23{width:3.265209px;}
._27{width:7.789350px;}
._33{width:16.206480px;}
._34{width:33.124464px;}
._26{width:43.785717px;}
._24{width:46.080000px;}
._25{width:59.985884px;}
._36{width:75.071952px;}
._9{width:90.000000px;}
._2b{width:108.433844px;}
._2a{width:117.859028px;}
._37{width:126.845352px;}
._2d{width:130.033084px;}
._29{width:144.229635px;}
._3a{width:161.590464px;}
._28{width:168.349724px;}
._38{width:183.489192px;}
._8{width:198.000000px;}
._35{width:203.461920px;}
._32{width:207.732816px;}
._3c{width:211.020228px;}
._3b{width:234.769968px;}
._43{width:671.099796px;}
._3f{width:711.780696px;}
._2{width:793.951200px;}
._44{width:857.948652px;}
._40{width:898.629552px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.120000px;}
.fs23{font-size:23.767200px;}
.fs21{font-size:25.309800px;}
.fs1a{font-size:26.727000px;}
.fs18{font-size:30.373800px;}
.fs26{font-size:31.909200px;}
.fs1f{font-size:32.154000px;}
.fs1c{font-size:32.985000px;}
.fs8{font-size:35.971800px;}
.fs12{font-size:35.974800px;}
.fsa{font-size:35.979000px;}
.fsf{font-size:36.000000px;}
.fs22{font-size:36.011400px;}
.fs5{font-size:36.032400px;}
.fs20{font-size:36.219000px;}
.fsd{font-size:38.046952px;}
.fs19{font-size:38.605800px;}
.fs17{font-size:43.873800px;}
.fs3{font-size:47.880000px;}
.fs1e{font-size:48.230400px;}
.fs1b{font-size:49.477800px;}
.fs25{font-size:50.902200px;}
.fs1d{font-size:54.753600px;}
.fs0{font-size:60.120000px;}
.fs15{font-size:63.393600px;}
.fs24{font-size:65.880000px;}
.fs16{font-size:70.155000px;}
.fs7{font-size:71.943600px;}
.fs11{font-size:71.949000px;}
.fsb{font-size:71.958000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:72.064800px;}
.fsc{font-size:76.034908px;}
.fs13{font-size:76.040794px;}
.fse{font-size:76.094487px;}
.fs9{font-size:107.916000px;}
.fs10{font-size:107.925600px;}
.fs14{font-size:108.000000px;}
.fs6{font-size:108.097200px;}
.y1db{bottom:-0.719550px;}
.y182{bottom:-0.269550px;}
.y0{bottom:0.000000px;}
.y87{bottom:3.960450px;}
.y90{bottom:3.960600px;}
.y7b{bottom:5.490450px;}
.y7f{bottom:5.940450px;}
.y1{bottom:57.630450px;}
.yf2{bottom:112.434926px;}
.y172{bottom:115.950450px;}
.ybb{bottom:116.212771px;}
.y118{bottom:122.429836px;}
.y25f{bottom:124.220015px;}
.y5c{bottom:124.230450px;}
.y239{bottom:130.259998px;}
.y77{bottom:130.890450px;}
.y1b8{bottom:131.159222px;}
.y207{bottom:132.780450px;}
.yf1{bottom:133.135540px;}
.y33{bottom:134.580450px;}
.yba{bottom:136.913385px;}
.y117{bottom:143.130450px;}
.y25e{bottom:144.920629px;}
.y5b{bottom:144.930450px;}
.y238{bottom:150.780450px;}
.y1b7{bottom:151.859836px;}
.y76{bottom:152.940450px;}
.y206{bottom:153.480450px;}
.yf0{bottom:153.836153px;}
.y32{bottom:155.280450px;}
.y171{bottom:156.900657px;}
.yb9{bottom:157.613998px;}
.y116{bottom:163.650450px;}
.y25d{bottom:165.621243px;}
.y5a{bottom:165.630450px;}
.y237{bottom:171.480450px;}
.y1b6{bottom:172.560450px;}
.y205{bottom:174.180450px;}
.y170{bottom:174.180648px;}
.yef{bottom:174.536767px;}
.y75{bottom:174.990450px;}
.y31{bottom:175.980450px;}
.y17e{bottom:177.600450px;}
.yb8{bottom:178.314612px;}
.y173{bottom:181.380450px;}
.y17f{bottom:182.370110px;}
.y176{bottom:182.370600px;}
.y115{bottom:184.350450px;}
.y25c{bottom:186.321857px;}
.y59{bottom:186.330450px;}
.y16f{bottom:191.370459px;}
.y236{bottom:192.000450px;}
.y1b5{bottom:193.080450px;}
.y204{bottom:194.880450px;}
.yee{bottom:195.237381px;}
.y30{bottom:196.680450px;}
.y74{bottom:197.040450px;}
.yb7{bottom:199.015226px;}
.y114{bottom:205.225564px;}
.y25b{bottom:207.022471px;}
.y58{bottom:207.030450px;}
.y16e{bottom:208.650450px;}
.y177{bottom:209.730450px;}
.y234{bottom:211.801800px;}
.y174{bottom:212.610450px;}
.y1b4{bottom:213.780450px;}
.y203{bottom:215.400450px;}
.yed{bottom:215.937995px;}
.y2f{bottom:217.380450px;}
.y73{bottom:219.090450px;}
.yd1{bottom:220.890450px;}
.y113{bottom:225.926177px;}
.yd0{bottom:226.470000px;}
.y16d{bottom:226.545800px;}
.y25a{bottom:227.723084px;}
.y57{bottom:227.730450px;}
.y232{bottom:230.701125px;}
.y233{bottom:230.791710px;}
.yd4{bottom:232.050450px;}
.y1b3{bottom:234.480450px;}
.y202{bottom:235.110450px;}
.yd2{bottom:236.550450px;}
.yec{bottom:236.638609px;}
.y178{bottom:237.180450px;}
.y2e{bottom:238.080450px;}
.y72{bottom:239.790450px;}
.y175{bottom:243.750450px;}
.yd3{bottom:244.650450px;}
.y16c{bottom:247.246414px;}
.y259{bottom:248.423698px;}
.y56{bottom:248.430450px;}
.y123{bottom:249.240450px;}
.y231{bottom:249.600450px;}
.y235{bottom:249.691035px;}
.y124{bottom:254.101154px;}
.y201{bottom:254.820450px;}
.yeb{bottom:257.339222px;}
.y119{bottom:257.700450px;}
.y2d{bottom:258.780450px;}
.y71{bottom:260.490450px;}
.y179{bottom:264.360450px;}
.y16b{bottom:267.947027px;}
.y258{bottom:269.124312px;}
.y55{bottom:269.130450px;}
.y22f{bottom:269.401170px;}
.y200{bottom:274.530450px;}
.y11a{bottom:275.700450px;}
.y1b2{bottom:275.961243px;}
.yb6{bottom:277.315433px;}
.yea{bottom:278.039836px;}
.y2c{bottom:279.480450px;}
.y12b{bottom:280.110398px;}
.y70{bottom:282.540450px;}
.y11d{bottom:282.900450px;}
.y17a{bottom:283.350450px;}
.y22e{bottom:288.391080px;}
.y16a{bottom:288.647641px;}
.y1d7{bottom:289.650450px;}
.y257{bottom:289.824926px;}
.y54{bottom:289.830450px;}
.y1de{bottom:291.540450px;}
.y1e0{bottom:292.260450px;}
.y1cc{bottom:292.440450px;}
.y1d8{bottom:293.070429px;}
.y1cf{bottom:293.070450px;}
.y11b{bottom:293.430450px;}
.y1ff{bottom:294.240450px;}
.y1b1{bottom:296.661857px;}
.yb5{bottom:298.016047px;}
.ye9{bottom:298.740450px;}
.y2b{bottom:300.180450px;}
.y12a{bottom:300.990280px;}
.y6f{bottom:303.240450px;}
.y22d{bottom:306.030450px;}
.y230{bottom:307.380990px;}
.y169{bottom:309.348255px;}
.y256{bottom:310.525540px;}
.y53{bottom:310.530450px;}
.y11c{bottom:311.430450px;}
.y1e1{bottom:312.060450px;}
.y1d0{bottom:312.960600px;}
.y1fe{bottom:313.950450px;}
.y1cd{bottom:314.850450px;}
.y1b0{bottom:317.362471px;}
.yb4{bottom:318.716660px;}
.y2a{bottom:320.880450px;}
.y129{bottom:321.240521px;}
.y92{bottom:324.120450px;}
.y22c{bottom:327.000891px;}
.y188{bottom:328.260050px;}
.y8e{bottom:328.620450px;}
.y11e{bottom:329.340450px;}
.y168{bottom:330.048869px;}
.y255{bottom:331.226153px;}
.y52{bottom:331.230450px;}
.y1e2{bottom:331.860450px;}
.y1d1{bottom:332.670450px;}
.y1fd{bottom:333.660450px;}
.y94{bottom:336.270450px;}
.y1df{bottom:336.540450px;}
.y1ce{bottom:337.440450px;}
.y1af{bottom:338.063084px;}
.y8d{bottom:338.430450px;}
.yb3{bottom:339.417274px;}
.ye8{bottom:340.133845px;}
.y91{bottom:340.770450px;}
.y128{bottom:341.580209px;}
.y29{bottom:341.580450px;}
.y17b{bottom:341.670450px;}
.y187{bottom:344.460271px;}
.y11f{bottom:346.080450px;}
.y22b{bottom:346.710540px;}
.y93{bottom:347.250450px;}
.y8f{bottom:347.790000px;}
.y167{bottom:350.749483px;}
.y1e3{bottom:351.480450px;}
.y144{bottom:351.840450px;}
.y254{bottom:351.926767px;}
.y51{bottom:351.930450px;}
.y1d2{bottom:352.380450px;}
.y1fc{bottom:353.460600px;}
.y1ae{bottom:358.763698px;}
.yc6{bottom:359.940450px;}
.y186{bottom:360.300487px;}
.ye7{bottom:360.834459px;}
.ycb{bottom:361.470450px;}
.y181{bottom:361.650000px;}
.y127{bottom:361.830450px;}
.y28{bottom:362.280450px;}
.yc8{bottom:364.440450px;}
.y1e4{bottom:365.160450px;}
.y22a{bottom:365.700450px;}
.ycd{bottom:365.970450px;}
.y1d3{bottom:366.060450px;}
.y166{bottom:371.450096px;}
.y143{bottom:372.360450px;}
.y253{bottom:372.627381px;}
.y50{bottom:372.630450px;}
.y1fb{bottom:373.260450px;}
.y180{bottom:375.691007px;}
.y185{bottom:376.140704px;}
.yca{bottom:378.480450px;}
.y1ad{bottom:379.464312px;}
.ycf{bottom:380.010450px;}
.y1dd{bottom:382.441436px;}
.y27{bottom:382.980450px;}
.y229{bottom:384.960450px;}
.yc7{bottom:385.950569px;}
.yc9{bottom:386.490000px;}
.ycc{bottom:387.480569px;}
.yce{bottom:388.020000px;}
.y184{bottom:391.800234px;}
.y165{bottom:392.150710px;}
.y6e{bottom:392.340450px;}
.y142{bottom:393.060450px;}
.y1fa{bottom:393.324312px;}
.y252{bottom:393.327995px;}
.y4f{bottom:393.330450px;}
.y120{bottom:397.380450px;}
.y1ac{bottom:400.164926px;}
.y17c{bottom:401.070450px;}
.y26{bottom:403.680450px;}
.y228{bottom:405.660450px;}
.y1e5{bottom:407.460600px;}
.y183{bottom:407.640450px;}
.y1d4{bottom:408.360600px;}
.y164{bottom:412.851324px;}
.y1e9{bottom:412.860727px;}
.y6d{bottom:413.040450px;}
.y141{bottom:413.309964px;}
.y1f9{bottom:414.024926px;}
.y251{bottom:414.028609px;}
.y4e{bottom:414.030450px;}
.y1ab{bottom:420.865540px;}
.y126{bottom:421.951559px;}
.y1da{bottom:422.850000px;}
.y1e8{bottom:423.750574px;}
.y25{bottom:424.380450px;}
.y227{bottom:426.180600px;}
.y140{bottom:427.080450px;}
.y137{bottom:428.070498px;}
.yb2{bottom:428.518193px;}
.y1d9{bottom:432.659361px;}
.y163{bottom:433.551938px;}
.y6c{bottom:433.740450px;}
.y1f8{bottom:434.725540px;}
.y250{bottom:434.729222px;}
.y4d{bottom:434.730450px;}
.y138{bottom:435.360600px;}
.y125{bottom:441.391206px;}
.y1aa{bottom:441.566153px;}
.y24{bottom:445.080450px;}
.y225{bottom:445.891365px;}
.y136{bottom:448.320450px;}
.yb1{bottom:449.218807px;}
.y121{bottom:450.030600px;}
.y1e6{bottom:450.390450px;}
.y1d5{bottom:451.380450px;}
.y162{bottom:454.252552px;}
.y6b{bottom:454.440450px;}
.y1f7{bottom:455.426153px;}
.y24f{bottom:455.429836px;}
.y4c{bottom:455.430450px;}
.y17d{bottom:460.470450px;}
.y1a9{bottom:462.266767px;}
.y223{bottom:464.790690px;}
.y224{bottom:464.881275px;}
.y23{bottom:465.780450px;}
.y1dc{bottom:469.650450px;}
.yb0{bottom:469.919421px;}
.y8a{bottom:474.780600px;}
.y161{bottom:474.953165px;}
.y1f6{bottom:476.126767px;}
.y4b{bottom:476.130450px;}
.y89{bottom:480.360000px;}
.y1a8{bottom:482.967381px;}
.y222{bottom:483.780600px;}
.y226{bottom:483.871185px;}
.y8c{bottom:486.030507px;}
.y22{bottom:486.480450px;}
.y139{bottom:488.820450px;}
.y8b{bottom:490.440600px;}
.yaf{bottom:490.620034px;}
.y1e7{bottom:493.410450px;}
.y1d6{bottom:494.220450px;}
.y160{bottom:495.653779px;}
.y24e{bottom:496.650450px;}
.y1f5{bottom:496.827381px;}
.y4a{bottom:496.830450px;}
.y122{bottom:501.420450px;}
.y220{bottom:503.581170px;}
.y1a7{bottom:503.667995px;}
.y21{bottom:507.180450px;}
.yc2{bottom:511.680600px;}
.y15f{bottom:516.354393px;}
.y1f4{bottom:517.527995px;}
.y24d{bottom:517.528609px;}
.y49{bottom:517.530450px;}
.y6a{bottom:521.940450px;}
.y21f{bottom:522.571080px;}
.yc1{bottom:523.200600px;}
.y1a6{bottom:524.368609px;}
.yc4{bottom:525.180144px;}
.y20{bottom:527.880450px;}
.yc5{bottom:529.680450px;}
.y15e{bottom:537.055007px;}
.yc3{bottom:537.690380px;}
.y1f3{bottom:538.228609px;}
.y24c{bottom:538.229222px;}
.y48{bottom:538.230450px;}
.y21e{bottom:540.210450px;}
.y221{bottom:541.560990px;}
.y69{bottom:542.640450px;}
.y1a5{bottom:545.069222px;}
.y13a{bottom:545.340450px;}
.y1f{bottom:548.580450px;}
.y15d{bottom:557.755621px;}
.y1f2{bottom:558.929222px;}
.y24b{bottom:558.929836px;}
.y47{bottom:558.930450px;}
.y68{bottom:563.340450px;}
.y1a4{bottom:565.769836px;}
.yae{bottom:568.469836px;}
.y1e{bottom:568.561062px;}
.y15c{bottom:578.456234px;}
.y46{bottom:579.450450px;}
.y1f1{bottom:579.629836px;}
.y24a{bottom:579.630450px;}
.y21d{bottom:580.979847px;}
.y67{bottom:584.040450px;}
.y1d{bottom:586.290450px;}
.y1a3{bottom:586.470450px;}
.yad{bottom:589.169836px;}
.y15b{bottom:599.156848px;}
.y45{bottom:600.150450px;}
.y21c{bottom:600.314572px;}
.y112{bottom:600.326234px;}
.y1f0{bottom:600.330450px;}
.y13b{bottom:601.860450px;}
.y81{bottom:604.560450px;}
.y1c{bottom:606.540450px;}
.y1a2{bottom:606.990450px;}
.y83{bottom:609.060450px;}
.yab{bottom:609.866997px;}
.yac{bottom:609.870450px;}
.y15a{bottom:619.857462px;}
.y44{bottom:620.760450px;}
.y21b{bottom:620.925105px;}
.y111{bottom:620.936767px;}
.y85{bottom:623.099456px;}
.y88{bottom:623.100450px;}
.y1b{bottom:624.450450px;}
.y1a1{bottom:627.690450px;}
.y82{bottom:630.570569px;}
.y86{bottom:631.110000px;}
.yaa{bottom:631.917024px;}
.y84{bottom:635.069669px;}
.y159{bottom:640.558076px;}
.y1ef{bottom:641.460450px;}
.y21a{bottom:641.625719px;}
.y110{bottom:641.637381px;}
.y43{bottom:641.640450px;}
.y1a{bottom:645.150450px;}
.y1a0{bottom:648.390450px;}
.ya9{bottom:652.617638px;}
.y13c{bottom:658.380450px;}
.y158{bottom:661.258690px;}
.y1ee{bottom:662.160450px;}
.y219{bottom:662.326333px;}
.y10f{bottom:662.337995px;}
.y42{bottom:662.340450px;}
.y19{bottom:665.850450px;}
.y19f{bottom:669.090450px;}
.ybe{bottom:673.680450px;}
.y66{bottom:674.040450px;}
.y157{bottom:681.959303px;}
.y218{bottom:683.026946px;}
.y10e{bottom:683.038609px;}
.y41{bottom:683.040450px;}
.ybc{bottom:685.200450px;}
.y18{bottom:686.550450px;}
.yc0{bottom:687.179994px;}
.y19e{bottom:689.790450px;}
.ybd{bottom:691.680450px;}
.y267{bottom:693.379055px;}
.y65{bottom:694.740450px;}
.ybf{bottom:699.690230px;}
.y156{bottom:702.659917px;}
.y1ed{bottom:703.727560px;}
.y10d{bottom:703.739222px;}
.y40{bottom:703.740450px;}
.y17{bottom:707.250450px;}
.ye6{bottom:710.483860px;}
.y19d{bottom:710.490450px;}
.y212{bottom:711.750450px;}
.y266{bottom:714.079669px;}
.y13d{bottom:714.900450px;}
.y208{bottom:715.350450px;}
.y64{bottom:715.440450px;}
.y213{bottom:716.250204px;}
.y20b{bottom:716.250450px;}
.y155{bottom:723.270450px;}
.y1ec{bottom:724.428174px;}
.y10c{bottom:724.439836px;}
.y3f{bottom:724.440450px;}
.y1c5{bottom:727.680450px;}
.y16{bottom:727.950450px;}
.ye5{bottom:731.184474px;}
.y19c{bottom:731.190450px;}
.y1b9{bottom:731.370450px;}
.y1bd{bottom:732.270450px;}
.y1c6{bottom:732.270778px;}
.y265{bottom:734.780283px;}
.y63{bottom:736.140450px;}
.ya8{bottom:736.497462px;}
.y20c{bottom:743.070450px;}
.y1eb{bottom:745.128788px;}
.y249{bottom:745.139836px;}
.y3e{bottom:745.140450px;}
.y209{bottom:745.950450px;}
.y15{bottom:748.650450px;}
.ye4{bottom:751.885088px;}
.y19b{bottom:751.890450px;}
.y1ba{bottom:752.430450px;}
.y13e{bottom:755.400355px;}
.y264{bottom:755.480896px;}
.y62{bottom:756.840450px;}
.ya7{bottom:757.198076px;}
.y1be{bottom:759.990450px;}
.y13f{bottom:762.690450px;}
.y10b{bottom:765.660450px;}
.y1ea{bottom:765.829402px;}
.y248{bottom:765.839986px;}
.y3d{bottom:765.840450px;}
.y14{bottom:769.350450px;}
.y20d{bottom:770.070450px;}
.ye3{bottom:772.585702px;}
.y19a{bottom:772.590450px;}
.y1bb{bottom:773.310450px;}
.y263{bottom:776.181510px;}
.y20a{bottom:776.460450px;}
.y80{bottom:777.180450px;}
.ya6{bottom:777.808609px;}
.y135{bottom:779.610450px;}
.y7e{bottom:782.760000px;}
.y10a{bottom:786.530015px;}
.y3c{bottom:786.540450px;}
.y1bf{bottom:787.620450px;}
.y7d{bottom:788.430357px;}
.y13{bottom:790.050450px;}
.y7c{bottom:792.840450px;}
.ye2{bottom:793.286315px;}
.y199{bottom:793.290450px;}
.y1bc{bottom:794.370450px;}
.y20e{bottom:796.800450px;}
.y262{bottom:796.882124px;}
.ya5{bottom:798.509222px;}
.y134{bottom:800.310450px;}
.y109{bottom:807.230629px;}
.y247{bottom:807.231857px;}
.y3b{bottom:807.240450px;}
.y12{bottom:810.750450px;}
.ye1{bottom:813.986929px;}
.y198{bottom:813.990450px;}
.y1c0{bottom:815.250450px;}
.y261{bottom:817.582738px;}
.ya4{bottom:819.209836px;}
.y108{bottom:827.931243px;}
.y246{bottom:827.932471px;}
.y3a{bottom:827.940450px;}
.y11{bottom:830.730450px;}
.y154{bottom:831.450450px;}
.y1cb{bottom:832.441702px;}
.y1c1{bottom:834.420450px;}
.ye0{bottom:834.687543px;}
.y61{bottom:835.410450px;}
.y260{bottom:838.283352px;}
.ya3{bottom:839.910450px;}
.y217{bottom:841.259645px;}
.y133{bottom:841.890450px;}
.y153{bottom:848.190450px;}
.y10{bottom:848.460450px;}
.y107{bottom:848.631857px;}
.y245{bottom:848.633084px;}
.y39{bottom:848.640450px;}
.y146{bottom:849.000013px;}
.ydf{bottom:855.388157px;}
.y197{bottom:855.566767px;}
.y147{bottom:855.570450px;}
.y60{bottom:856.110450px;}
.ya2{bottom:860.430600px;}
.y132{bottom:863.220450px;}
.y145{bottom:866.820450px;}
.y106{bottom:869.332471px;}
.y244{bottom:869.333698px;}
.yf{bottom:869.340450px;}
.y20f{bottom:872.580450px;}
.yde{bottom:876.088771px;}
.y196{bottom:876.267381px;}
.y5f{bottom:876.810450px;}
.ya1{bottom:880.500600px;}
.y131{bottom:884.640450px;}
.y105{bottom:890.033084px;}
.y243{bottom:890.034312px;}
.ye{bottom:890.040450px;}
.y1c2{bottom:893.370450px;}
.y215{bottom:894.810032px;}
.y148{bottom:895.080450px;}
.ydd{bottom:896.789384px;}
.y195{bottom:896.967995px;}
.y5e{bottom:897.510450px;}
.ya0{bottom:898.589222px;}
.y130{bottom:906.150450px;}
.y214{bottom:909.480046px;}
.y104{bottom:910.733698px;}
.y242{bottom:910.734926px;}
.yd{bottom:910.740450px;}
.y1c8{bottom:914.791493px;}
.ydc{bottom:917.489998px;}
.y194{bottom:917.668609px;}
.y5d{bottom:918.210450px;}
.y9f{bottom:919.289836px;}
.y149{bottom:921.810450px;}
.y12f{bottom:927.570450px;}
.y1c7{bottom:928.740930px;}
.y1ca{bottom:930.721994px;}
.y210{bottom:931.080450px;}
.y103{bottom:931.434312px;}
.y241{bottom:931.435540px;}
.yc{bottom:931.440450px;}
.y7a{bottom:934.770000px;}
.ydb{bottom:938.010450px;}
.y193{bottom:938.369222px;}
.y9e{bottom:939.989809px;}
.y79{bottom:942.240821px;}
.y78{bottom:946.740450px;}
.y14a{bottom:948.540600px;}
.y12e{bottom:948.990450px;}
.y102{bottom:952.134926px;}
.y240{bottom:952.136153px;}
.yb{bottom:952.140450px;}
.y1c3{bottom:953.490450px;}
.yda{bottom:958.710450px;}
.y192{bottom:959.069836px;}
.y9d{bottom:962.039836px;}
.y12d{bottom:970.410450px;}
.y101{bottom:972.835540px;}
.y23f{bottom:972.836767px;}
.ya{bottom:972.840450px;}
.y216{bottom:973.649904px;}
.y14b{bottom:975.270450px;}
.yd9{bottom:979.588011px;}
.y191{bottom:979.770450px;}
.y1c9{bottom:982.111485px;}
.y9c{bottom:982.740423px;}
.y211{bottom:989.400450px;}
.y12c{bottom:991.920450px;}
.y100{bottom:993.536153px;}
.y23e{bottom:993.537381px;}
.y9{bottom:993.540450px;}
.y190{bottom:999.750873px;}
.yd8{bottom:1000.288625px;}
.y14c{bottom:1002.000450px;}
.y9b{bottom:1004.790423px;}
.y1c4{bottom:1013.520450px;}
.yff{bottom:1014.236767px;}
.y23d{bottom:1014.237995px;}
.y8{bottom:1014.240450px;}
.y18f{bottom:1017.030864px;}
.yd7{bottom:1020.989239px;}
.y9a{bottom:1026.840423px;}
.y14d{bottom:1029.450450px;}
.y18e{bottom:1034.310855px;}
.yfe{bottom:1034.937381px;}
.y23c{bottom:1034.938609px;}
.y7{bottom:1034.940450px;}
.yd6{bottom:1043.039266px;}
.y99{bottom:1048.890423px;}
.y18d{bottom:1051.500666px;}
.y6{bottom:1055.460450px;}
.yfd{bottom:1055.637995px;}
.y23b{bottom:1055.639222px;}
.y38{bottom:1055.640450px;}
.y14e{bottom:1056.180450px;}
.yd5{bottom:1063.739880px;}
.y18c{bottom:1068.780657px;}
.y98{bottom:1070.940423px;}
.y5{bottom:1076.160450px;}
.yfc{bottom:1076.338609px;}
.y23a{bottom:1076.339836px;}
.y37{bottom:1076.340450px;}
.y14f{bottom:1082.910450px;}
.yf7{bottom:1084.620450px;}
.y18b{bottom:1086.060648px;}
.yf4{bottom:1089.120450px;}
.y97{bottom:1092.990423px;}
.yf9{bottom:1096.770450px;}
.y4{bottom:1096.860450px;}
.yfb{bottom:1097.039222px;}
.y36{bottom:1097.040450px;}
.yf3{bottom:1098.930450px;}
.yf6{bottom:1101.270450px;}
.y18a{bottom:1103.250459px;}
.yf8{bottom:1107.750450px;}
.yf5{bottom:1108.290000px;}
.y150{bottom:1109.640450px;}
.y96{bottom:1115.040423px;}
.y3{bottom:1117.560450px;}
.yfa{bottom:1117.739836px;}
.y35{bottom:1117.740450px;}
.y189{bottom:1120.530450px;}
.y151{bottom:1137.090139px;}
.y95{bottom:1137.090450px;}
.y2{bottom:1138.260450px;}
.y34{bottom:1138.440450px;}
.y152{bottom:1143.570450px;}
.h4a{height:7.740000px;}
.h3b{height:11.250000px;}
.h36{height:19.601540px;}
.h1b{height:21.510000px;}
.h15{height:21.960000px;}
.h34{height:22.276097px;}
.h4e{height:26.410704px;}
.h49{height:26.562958px;}
.h35{height:28.313433px;}
.he{height:29.610000px;}
.h33{height:32.176976px;}
.h9{height:32.670000px;}
.h10{height:32.827780px;}
.h2f{height:32.853516px;}
.h19{height:34.721559px;}
.hd{height:35.286790px;}
.h29{height:35.289733px;}
.h12{height:35.311421px;}
.h1d{height:35.314453px;}
.h1c{height:35.332031px;}
.h42{height:35.372100px;}
.h3a{height:36.286941px;}
.h56{height:37.331594px;}
.h4c{height:39.750827px;}
.h4d{height:40.470227px;}
.h4b{height:40.470827px;}
.h46{height:40.521568px;}
.h43{height:40.522168px;}
.h48{height:40.881568px;}
.h45{height:40.882168px;}
.h47{height:40.882768px;}
.h44{height:41.242168px;}
.h31{height:46.492767px;}
.h3c{height:53.737664px;}
.h3e{height:54.541693px;}
.h3f{height:54.901693px;}
.h3d{height:55.261693px;}
.h41{height:55.262293px;}
.h38{height:55.511147px;}
.h40{height:55.621693px;}
.h39{height:56.230547px;}
.h37{height:56.231147px;}
.h52{height:56.882157px;}
.h53{height:57.242157px;}
.h54{height:57.602157px;}
.h55{height:57.962157px;}
.h1{height:59.004492px;}
.h23{height:60.589687px;}
.h51{height:64.657617px;}
.h11{height:65.655561px;}
.h28{height:65.660489px;}
.h13{height:65.668702px;}
.hb{height:65.766168px;}
.h4f{height:66.032348px;}
.h50{height:66.394687px;}
.h16{height:67.686790px;}
.h32{height:68.853296px;}
.h18{height:69.389279px;}
.h2c{height:69.394651px;}
.h1a{height:69.443650px;}
.h57{height:70.059777px;}
.h2d{height:70.578877px;}
.h14{height:70.587706px;}
.hc{height:70.608709px;}
.h3{height:70.664062px;}
.h5{height:70.664662px;}
.h7{height:70.692472px;}
.h21{height:70.727660px;}
.h20{height:70.727769px;}
.h22{height:70.730224px;}
.h2{height:72.562500px;}
.h24{height:72.576312px;}
.h4{height:75.093750px;}
.h5a{height:75.095605px;}
.h5b{height:75.096205px;}
.h25{height:80.088223px;}
.h26{height:80.090678px;}
.h6{height:80.111602px;}
.h1f{height:80.111710px;}
.h1e{height:83.766168px;}
.h17{height:88.249080px;}
.h2a{height:88.580703px;}
.h2b{height:88.615234px;}
.h30{height:88.692472px;}
.h8{height:88.726178px;}
.hf{height:98.483889px;}
.h27{height:98.492650px;}
.h2e{height:98.560547px;}
.ha{height:98.649251px;}
.h59{height:140.617257px;}
.h58{height:140.979597px;}
.h0{height:1263.000000px;}
.w7{width:5.040000px;}
.w6{width:8.010000px;}
.w2{width:10.080000px;}
.w5{width:11.160000px;}
.w4{width:16.020000px;}
.w3{width:19.260000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x77{left:54.270000px;}
.x6c{left:87.031191px;}
.x69{left:100.620000px;}
.x68{left:105.390000px;}
.x1{left:134.820000px;}
.x48{left:139.951291px;}
.x67{left:142.920000px;}
.x75{left:145.980000px;}
.x5a{left:147.688558px;}
.x5b{left:155.160000px;}
.x80{left:158.580174px;}
.x5d{left:168.210000px;}
.x45{left:170.190000px;}
.x6b{left:172.260836px;}
.x2{left:176.040000px;}
.x43{left:178.470000px;}
.x7d{left:180.720000px;}
.x66{left:185.130000px;}
.x7c{left:188.460000px;}
.x44{left:191.790000px;}
.x55{left:195.030000px;}
.x3e{left:199.530000px;}
.x6d{left:201.510000px;}
.x62{left:206.010000px;}
.x4a{left:214.020000px;}
.x85{left:215.819121px;}
.x5e{left:224.010000px;}
.x76{left:226.260000px;}
.x65{left:228.150000px;}
.x59{left:241.650000px;}
.x4f{left:249.390000px;}
.x47{left:251.820392px;}
.x4e{left:254.970000px;}
.x54{left:256.230000px;}
.x6e{left:258.119392px;}
.x50{left:260.550000px;}
.xb{left:272.250000px;}
.x51{left:283.680597px;}
.x42{left:289.080000px;}
.x7f{left:296.100102px;}
.x8{left:298.530000px;}
.x52{left:303.660000px;}
.x4b{left:307.620000px;}
.x7b{left:317.070000px;}
.x5c{left:320.040000px;}
.x7{left:323.550000px;}
.x6a{left:328.410000px;}
.x84{left:330.210000px;}
.x22{left:337.500000px;}
.x19{left:341.100245px;}
.x63{left:343.440000px;}
.x2f{left:348.300000px;}
.x21{left:350.549809px;}
.x3{left:352.260000px;}
.x18{left:356.940000px;}
.x2e{left:361.350528px;}
.x32{left:362.700000px;}
.xf{left:367.020237px;}
.x58{left:371.250000px;}
.x81{left:373.140582px;}
.x17{left:374.940000px;}
.x6{left:377.190000px;}
.x31{left:378.540000px;}
.x1d{left:381.420000px;}
.x12{left:383.490000px;}
.x3f{left:386.370000px;}
.x1f{left:387.810000px;}
.x3c{left:389.250000px;}
.x2c{left:392.670000px;}
.x16{left:394.290000px;}
.x30{left:396.180210px;}
.x5{left:397.260000px;}
.x10{left:398.340000px;}
.x35{left:401.220000px;}
.x1e{left:402.930000px;}
.x9{left:404.550000px;}
.x11{left:408.960000px;}
.x25{left:411.930000px;}
.x15{left:415.080000px;}
.x36{left:416.700000px;}
.xa{left:418.770000px;}
.x2a{left:419.940000px;}
.x56{left:421.020000px;}
.x38{left:422.640000px;}
.x27{left:425.070000px;}
.x64{left:426.510000px;}
.x14{left:430.290000px;}
.x3b{left:433.530000px;}
.x78{left:437.040000px;}
.x24{left:439.650000px;}
.x4{left:446.490000px;}
.x26{left:451.350000px;}
.x82{left:456.931521px;}
.x39{left:458.819738px;}
.x2b{left:459.900097px;}
.x23{left:461.520000px;}
.x73{left:467.730000px;}
.x46{left:471.690000px;}
.x3d{left:472.950000px;}
.x3a{left:483.120000px;}
.x1c{left:492.930000px;}
.x37{left:501.750000px;}
.x20{left:503.460000px;}
.xe{left:506.880000px;}
.x1b{left:508.770000px;}
.x2d{left:513.450184px;}
.x5f{left:514.980000px;}
.x34{left:519.570000px;}
.x1a{left:526.770000px;}
.x40{left:530.370000px;}
.x13{left:533.250000px;}
.x33{left:537.570000px;}
.x7e{left:548.010000px;}
.x72{left:552.330000px;}
.x57{left:553.860000px;}
.x79{left:572.130000px;}
.x83{left:584.821071px;}
.x71{left:595.170000px;}
.x60{left:597.240000px;}
.x41{left:603.720000px;}
.x4c{left:605.070590px;}
.x4d{left:624.960000px;}
.x6f{left:626.760000px;}
.x74{left:651.240000px;}
.x53{left:666.720000px;}
.xd{left:674.820000px;}
.x61{left:678.600000px;}
.x49{left:686.520000px;}
.x28{left:689.310000px;}
.x29{left:699.210000px;}
.x7a{left:706.320000px;}
.xc{left:728.820000px;}
.x70{left:793.620000px;}
@media print{
.va{vertical-align:-76.158081pt;}
.v1{vertical-align:-73.600000pt;}
.vb{vertical-align:-72.000736pt;}
.v11{vertical-align:-70.400832pt;}
.v4{vertical-align:-37.440032pt;}
.v6{vertical-align:-29.440000pt;}
.v2{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:4.801920pt;}
.v7{vertical-align:8.000000pt;}
.v5{vertical-align:15.998683pt;}
.ve{vertical-align:19.520000pt;}
.vf{vertical-align:20.480000pt;}
.v9{vertical-align:23.039467pt;}
.vd{vertical-align:27.520000pt;}
.vc{vertical-align:28.480000pt;}
.v3{vertical-align:29.440000pt;}
.v10{vertical-align:30.400000pt;}
.v8{vertical-align:37.440000pt;}
.v13{vertical-align:67.841760pt;}
.ls59{letter-spacing:-4.471212pt;}
.ls5a{letter-spacing:-3.641824pt;}
.ls52{letter-spacing:-3.178132pt;}
.ls51{letter-spacing:-2.856938pt;}
.ls58{letter-spacing:-2.831144pt;}
.ls57{letter-spacing:-2.700188pt;}
.ls56{letter-spacing:-1.803196pt;}
.ls53{letter-spacing:-1.690496pt;}
.ls55{letter-spacing:-1.577796pt;}
.ls54{letter-spacing:-1.256602pt;}
.ls5f{letter-spacing:-0.748780pt;}
.ls66{letter-spacing:-0.610830pt;}
.ls7f{letter-spacing:-0.305849pt;}
.ls3d{letter-spacing:-0.211390pt;}
.ls46{letter-spacing:-0.172956pt;}
.ls1c{letter-spacing:-0.161728pt;}
.ls7c{letter-spacing:-0.132736pt;}
.ls49{letter-spacing:-0.121709pt;}
.ls43{letter-spacing:-0.083275pt;}
.ls7d{letter-spacing:-0.083241pt;}
.lsa4{letter-spacing:-0.083200pt;}
.ls47{letter-spacing:-0.070463pt;}
.ls50{letter-spacing:-0.064058pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls3e{letter-spacing:-0.051246pt;}
.ls4d{letter-spacing:-0.051200pt;}
.ls4f{letter-spacing:-0.044840pt;}
.ls12{letter-spacing:-0.044800pt;}
.ls4e{letter-spacing:-0.038435pt;}
.ls45{letter-spacing:-0.032029pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls41{letter-spacing:-0.025623pt;}
.ls11{letter-spacing:-0.025600pt;}
.ls40{letter-spacing:-0.019217pt;}
.ls14{letter-spacing:-0.019200pt;}
.ls81{letter-spacing:-0.012878pt;}
.ls3f{letter-spacing:-0.012812pt;}
.lse{letter-spacing:-0.012800pt;}
.ls44{letter-spacing:-0.006406pt;}
.ls10{letter-spacing:-0.006400pt;}
.ls80{letter-spacing:-0.003219pt;}
.lsd{letter-spacing:0.000000pt;}
.ls77{letter-spacing:0.004225pt;}
.ls8{letter-spacing:0.006400pt;}
.ls33{letter-spacing:0.006406pt;}
.ls9c{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.012800pt;}
.ls2d{letter-spacing:0.012812pt;}
.ls76{letter-spacing:0.016097pt;}
.lsa1{letter-spacing:0.017568pt;}
.ls1{letter-spacing:0.019200pt;}
.ls21{letter-spacing:0.019217pt;}
.ls9d{letter-spacing:0.023424pt;}
.ls3{letter-spacing:0.025600pt;}
.ls42{letter-spacing:0.025623pt;}
.ls8a{letter-spacing:0.029280pt;}
.lsc{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.032029pt;}
.ls98{letter-spacing:0.035136pt;}
.ls4{letter-spacing:0.038400pt;}
.ls3b{letter-spacing:0.038435pt;}
.ls7e{letter-spacing:0.038634pt;}
.ls8f{letter-spacing:0.040992pt;}
.ls6{letter-spacing:0.044800pt;}
.ls35{letter-spacing:0.044840pt;}
.ls85{letter-spacing:0.046848pt;}
.ls2{letter-spacing:0.051200pt;}
.ls1e{letter-spacing:0.051246pt;}
.ls99{letter-spacing:0.052704pt;}
.lsa{letter-spacing:0.057600pt;}
.ls4a{letter-spacing:0.057652pt;}
.ls86{letter-spacing:0.058560pt;}
.ls16{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.064058pt;}
.ls8d{letter-spacing:0.070272pt;}
.ls5{letter-spacing:0.070400pt;}
.ls1f{letter-spacing:0.070463pt;}
.ls9b{letter-spacing:0.076128pt;}
.ls9{letter-spacing:0.076800pt;}
.ls17{letter-spacing:0.083200pt;}
.ls96{letter-spacing:0.089681pt;}
.ls25{letter-spacing:0.090151pt;}
.ls29{letter-spacing:0.090300pt;}
.ls32{letter-spacing:0.090588pt;}
.ls28{letter-spacing:0.093222pt;}
.ls2a{letter-spacing:0.093398pt;}
.ls2f{letter-spacing:0.093476pt;}
.ls20{letter-spacing:0.093528pt;}
.ls23{letter-spacing:0.093607pt;}
.ls2e{letter-spacing:0.093615pt;}
.ls9f{letter-spacing:0.093696pt;}
.ls30{letter-spacing:0.094314pt;}
.ls2b{letter-spacing:0.095981pt;}
.ls22{letter-spacing:0.096269pt;}
.ls2c{letter-spacing:0.096346pt;}
.ls34{letter-spacing:0.096425pt;}
.ls26{letter-spacing:0.097201pt;}
.ls27{letter-spacing:0.108819pt;}
.ls31{letter-spacing:0.108898pt;}
.lsa0{letter-spacing:0.111264pt;}
.ls78{letter-spacing:0.112035pt;}
.ls9e{letter-spacing:0.117120pt;}
.ls82{letter-spacing:0.118437pt;}
.ls8b{letter-spacing:0.122976pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls88{letter-spacing:0.128832pt;}
.ls79{letter-spacing:0.131242pt;}
.ls89{letter-spacing:0.134688pt;}
.ls8e{letter-spacing:0.140544pt;}
.ls8c{letter-spacing:0.146400pt;}
.ls87{letter-spacing:0.158112pt;}
.ls38{letter-spacing:0.159467pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls93{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.161728pt;}
.ls9a{letter-spacing:0.210816pt;}
.ls48{letter-spacing:0.294665pt;}
.ls36{letter-spacing:0.367357pt;}
.ls39{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.723108pt;}
.ls7b{letter-spacing:0.734540pt;}
.ls90{letter-spacing:0.794185pt;}
.ls73{letter-spacing:0.887439pt;}
.ls7a{letter-spacing:1.118945pt;}
.ls94{letter-spacing:1.151568pt;}
.ls60{letter-spacing:1.314313pt;}
.ls74{letter-spacing:1.436194pt;}
.ls69{letter-spacing:1.436680pt;}
.ls5e{letter-spacing:1.439061pt;}
.ls75{letter-spacing:1.461917pt;}
.ls91{letter-spacing:1.511230pt;}
.ls62{letter-spacing:1.756268pt;}
.ls6a{letter-spacing:1.839721pt;}
.ls63{letter-spacing:1.860365pt;}
.ls65{letter-spacing:1.912726pt;}
.ls64{letter-spacing:2.181421pt;}
.ls92{letter-spacing:2.357337pt;}
.ls95{letter-spacing:2.674062pt;}
.ls6f{letter-spacing:3.110004pt;}
.ls6b{letter-spacing:3.187876pt;}
.ls6c{letter-spacing:3.299817pt;}
.lsa3{letter-spacing:3.648000pt;}
.ls67{letter-spacing:3.698740pt;}
.ls6d{letter-spacing:3.913057pt;}
.ls68{letter-spacing:4.019796pt;}
.ls6e{letter-spacing:4.229411pt;}
.ls37{letter-spacing:4.800000pt;}
.ls71{letter-spacing:24.305600pt;}
.ls97{letter-spacing:28.881792pt;}
.lsb{letter-spacing:30.208000pt;}
.ls1d{letter-spacing:53.068797pt;}
.ls5d{letter-spacing:55.025600pt;}
.ls3a{letter-spacing:175.985444pt;}
.ls19{letter-spacing:176.000000pt;}
.ls5b{letter-spacing:189.745017pt;}
.lsa2{letter-spacing:271.988570pt;}
.ls3c{letter-spacing:290.514121pt;}
.ls5c{letter-spacing:374.066183pt;}
.ls84{letter-spacing:392.082624pt;}
.ls4c{letter-spacing:568.628714pt;}
.ls83{letter-spacing:1067.918240pt;}
.ls0{letter-spacing:1081.358400pt;}
.ls70{letter-spacing:1092.145600pt;}
.ls61{letter-spacing:1094.800000pt;}
.wsa5{word-spacing:-35.167622pt;}
.ws9d{word-spacing:-35.136000pt;}
.wsaa{word-spacing:-35.115504pt;}
.wsd1{word-spacing:-35.111112pt;}
.wsa9{word-spacing:-35.108477pt;}
.wsd7{word-spacing:-17.568000pt;}
.ws16d{word-spacing:-16.246311pt;}
.wsce{word-spacing:-16.123298pt;}
.ws1e4{word-spacing:-16.059240pt;}
.ws1e5{word-spacing:-16.052835pt;}
.ws9b{word-spacing:-16.044800pt;}
.ws9c{word-spacing:-16.032000pt;}
.ws2{word-spacing:-16.025600pt;}
.ws1{word-spacing:-16.019200pt;}
.wsa4{word-spacing:-16.014400pt;}
.ws3{word-spacing:-16.000000pt;}
.wsd4{word-spacing:-15.988667pt;}
.wsae{word-spacing:-15.987467pt;}
.ws4{word-spacing:-15.987200pt;}
.wscd{word-spacing:-15.963154pt;}
.wscf{word-spacing:-15.943937pt;}
.ws16c{word-spacing:-15.925255pt;}
.wsd0{word-spacing:-15.892691pt;}
.wscc{word-spacing:-15.803010pt;}
.ws196{word-spacing:-15.252561pt;}
.ws194{word-spacing:-14.935837pt;}
.ws12d{word-spacing:-14.408661pt;}
.ws170{word-spacing:-14.407935pt;}
.ws197{word-spacing:-14.089729pt;}
.ws12e{word-spacing:-14.087467pt;}
.ws16f{word-spacing:-14.086879pt;}
.ws12c{word-spacing:-13.974767pt;}
.ws12f{word-spacing:-13.862067pt;}
.ws187{word-spacing:-13.380185pt;}
.ws183{word-spacing:-13.354462pt;}
.ws185{word-spacing:-13.037213pt;}
.ws130{word-spacing:-12.889812pt;}
.ws12a{word-spacing:-12.808325pt;}
.ws186{word-spacing:-12.805707pt;}
.ws131{word-spacing:-12.758856pt;}
.ws12b{word-spacing:-12.487130pt;}
.ws133{word-spacing:-11.948176pt;}
.ws132{word-spacing:-11.118788pt;}
.ws9e{word-spacing:-10.801728pt;}
.ws9f{word-spacing:-10.640000pt;}
.wsa0{word-spacing:-10.478272pt;}
.ws15b{word-spacing:-10.092924pt;}
.ws16e{word-spacing:-9.907228pt;}
.ws18e{word-spacing:-9.030059pt;}
.ws18b{word-spacing:-9.017255pt;}
.ws18d{word-spacing:-9.010853pt;}
.ws188{word-spacing:-8.966215pt;}
.ws18a{word-spacing:-8.937239pt;}
.ws16b{word-spacing:-8.929093pt;}
.ws195{word-spacing:-8.679302pt;}
.ws184{word-spacing:-8.668718pt;}
.wsa2{word-spacing:-8.007200pt;}
.wsd8{word-spacing:-8.000000pt;}
.wsd2{word-spacing:-7.994400pt;}
.wsa8{word-spacing:-7.993733pt;}
.ws189{word-spacing:-6.121597pt;}
.ws18c{word-spacing:-5.877364pt;}
.ws181{word-spacing:-2.316686pt;}
.ws180{word-spacing:-2.000332pt;}
.ws17f{word-spacing:-1.387091pt;}
.ws182{word-spacing:-1.197279pt;}
.ws17e{word-spacing:-0.953929pt;}
.ws168{word-spacing:-0.452388pt;}
.wsc9{word-spacing:-0.448000pt;}
.wse6{word-spacing:-0.441997pt;}
.ws171{word-spacing:-0.418658pt;}
.wsc6{word-spacing:-0.384000pt;}
.wsdd{word-spacing:-0.365128pt;}
.ws21c{word-spacing:-0.352317pt;}
.ws211{word-spacing:-0.333100pt;}
.wscb{word-spacing:-0.288000pt;}
.ws1dd{word-spacing:-0.262400pt;}
.wsdb{word-spacing:-0.243419pt;}
.wsc7{word-spacing:-0.242592pt;}
.wsca{word-spacing:-0.224000pt;}
.wsff{word-spacing:-0.211390pt;}
.wsfe{word-spacing:-0.185767pt;}
.ws47{word-spacing:-0.179200pt;}
.ws139{word-spacing:-0.172956pt;}
.ws118{word-spacing:-0.172800pt;}
.wsee{word-spacing:-0.147332pt;}
.ws1fd{word-spacing:-0.134521pt;}
.ws87{word-spacing:-0.134400pt;}
.ws18f{word-spacing:-0.128000pt;}
.wsf8{word-spacing:-0.121709pt;}
.ws1e3{word-spacing:-0.121600pt;}
.ws172{word-spacing:-0.120107pt;}
.ws169{word-spacing:-0.116997pt;}
.ws104{word-spacing:-0.108898pt;}
.ws65{word-spacing:-0.108800pt;}
.ws138{word-spacing:-0.102492pt;}
.ws190{word-spacing:-0.102400pt;}
.ws9a{word-spacing:-0.096000pt;}
.ws21e{word-spacing:-0.089681pt;}
.wse0{word-spacing:-0.083275pt;}
.ws1f{word-spacing:-0.083200pt;}
.wsb7{word-spacing:-0.076800pt;}
.ws100{word-spacing:-0.070463pt;}
.wsbf{word-spacing:-0.070400pt;}
.wsda{word-spacing:-0.064058pt;}
.wsc8{word-spacing:-0.064000pt;}
.ws101{word-spacing:-0.057652pt;}
.ws19b{word-spacing:-0.057600pt;}
.wsa{word-spacing:-0.051200pt;}
.ws109{word-spacing:-0.044840pt;}
.ws99{word-spacing:-0.044800pt;}
.wse1{word-spacing:-0.038435pt;}
.ws1df{word-spacing:-0.035136pt;}
.wsdc{word-spacing:-0.032029pt;}
.wsb6{word-spacing:-0.032000pt;}
.ws1e2{word-spacing:-0.029280pt;}
.wse3{word-spacing:-0.025623pt;}
.wsc0{word-spacing:-0.025600pt;}
.wse7{word-spacing:-0.019217pt;}
.ws9{word-spacing:-0.019200pt;}
.wse5{word-spacing:-0.012812pt;}
.wsbe{word-spacing:-0.012800pt;}
.ws1e0{word-spacing:-0.011712pt;}
.ws117{word-spacing:-0.006406pt;}
.ws6d{word-spacing:-0.006400pt;}
.ws0{word-spacing:-0.005440pt;}
.ws5{word-spacing:0.000000pt;}
.ws1da{word-spacing:0.005856pt;}
.ws8{word-spacing:0.006400pt;}
.wsde{word-spacing:0.006406pt;}
.ws1e1{word-spacing:0.011712pt;}
.ws6{word-spacing:0.012800pt;}
.wsdf{word-spacing:0.012812pt;}
.ws193{word-spacing:0.019317pt;}
.ws1a2{word-spacing:0.023424pt;}
.wsb{word-spacing:0.025600pt;}
.ws1d9{word-spacing:0.029280pt;}
.ws6e{word-spacing:0.044800pt;}
.ws1e6{word-spacing:0.051200pt;}
.ws1d7{word-spacing:0.051246pt;}
.ws1dc{word-spacing:0.058560pt;}
.ws7{word-spacing:0.064000pt;}
.wse2{word-spacing:0.070463pt;}
.ws17d{word-spacing:0.073005pt;}
.ws10a{word-spacing:0.102400pt;}
.ws1b9{word-spacing:0.160144pt;}
.ws6b{word-spacing:0.166400pt;}
.wse4{word-spacing:0.198579pt;}
.ws1b7{word-spacing:0.204984pt;}
.ws94{word-spacing:0.217600pt;}
.ws1b8{word-spacing:0.217796pt;}
.ws6c{word-spacing:0.230400pt;}
.ws95{word-spacing:0.249600pt;}
.ws96{word-spacing:0.281600pt;}
.ws13c{word-spacing:0.352317pt;}
.ws13d{word-spacing:0.371534pt;}
.ws1db{word-spacing:0.386496pt;}
.ws1d0{word-spacing:0.448403pt;}
.ws1cf{word-spacing:0.499649pt;}
.ws122{word-spacing:0.538084pt;}
.ws1ce{word-spacing:0.563707pt;}
.wsf7{word-spacing:0.576518pt;}
.ws121{word-spacing:0.582924pt;}
.wsbb{word-spacing:0.588800pt;}
.ws135{word-spacing:0.589330pt;}
.ws19e{word-spacing:0.602141pt;}
.ws209{word-spacing:0.608547pt;}
.ws1c5{word-spacing:0.621359pt;}
.wsf6{word-spacing:0.627764pt;}
.ws37{word-spacing:0.684800pt;}
.ws1ee{word-spacing:0.819937pt;}
.ws175{word-spacing:0.864778pt;}
.ws103{word-spacing:0.883995pt;}
.ws1ea{word-spacing:0.909618pt;}
.ws7f{word-spacing:0.915200pt;}
.ws102{word-spacing:0.928835pt;}
.ws36{word-spacing:0.960000pt;}
.ws1ef{word-spacing:0.960864pt;}
.ws1e9{word-spacing:0.986487pt;}
.ws38{word-spacing:0.992000pt;}
.ws7e{word-spacing:0.998400pt;}
.ws155{word-spacing:1.146631pt;}
.ws173{word-spacing:1.159443pt;}
.ws129{word-spacing:1.204283pt;}
.ws205{word-spacing:1.210689pt;}
.ws156{word-spacing:1.217094pt;}
.ws127{word-spacing:1.223500pt;}
.ws191{word-spacing:1.242717pt;}
.ws174{word-spacing:1.249123pt;}
.ws128{word-spacing:1.255529pt;}
.ws192{word-spacing:1.313181pt;}
.ws1c1{word-spacing:1.498948pt;}
.ws1c2{word-spacing:1.518165pt;}
.ws161{word-spacing:1.530977pt;}
.wsb2{word-spacing:1.587200pt;}
.ws141{word-spacing:1.703932pt;}
.ws142{word-spacing:1.819236pt;}
.ws1ae{word-spacing:1.864076pt;}
.ws1af{word-spacing:1.896105pt;}
.wsb9{word-spacing:1.900800pt;}
.wsb8{word-spacing:1.907200pt;}
.ws3c{word-spacing:2.067200pt;}
.ws11b{word-spacing:2.069060pt;}
.ws11a{word-spacing:2.088278pt;}
.ws219{word-spacing:2.101089pt;}
.ws115{word-spacing:2.165147pt;}
.ws3d{word-spacing:2.188800pt;}
.ws3b{word-spacing:2.195200pt;}
.ws218{word-spacing:2.209987pt;}
.ws11c{word-spacing:2.261233pt;}
.ws1b1{word-spacing:2.376537pt;}
.ws1b2{word-spacing:2.414972pt;}
.wsea{word-spacing:2.434189pt;}
.ws147{word-spacing:2.491841pt;}
.ws144{word-spacing:2.504652pt;}
.ws1cc{word-spacing:2.517464pt;}
.ws143{word-spacing:2.523869pt;}
.ws159{word-spacing:2.530275pt;}
.ws29{word-spacing:2.547200pt;}
.wse8{word-spacing:2.549492pt;}
.wseb{word-spacing:2.562304pt;}
.ws2a{word-spacing:2.566400pt;}
.wse9{word-spacing:2.568710pt;}
.ws148{word-spacing:2.594333pt;}
.ws1fb{word-spacing:2.664796pt;}
.ws1ff{word-spacing:2.773694pt;}
.ws1fc{word-spacing:2.818534pt;}
.ws1fe{word-spacing:2.844157pt;}
.wsf1{word-spacing:3.093982pt;}
.wsf2{word-spacing:3.106794pt;}
.ws41{word-spacing:3.116800pt;}
.ws40{word-spacing:3.168000pt;}
.wsb1{word-spacing:3.232000pt;}
.wsb0{word-spacing:3.257600pt;}
.ws1bd{word-spacing:3.305372pt;}
.ws1bc{word-spacing:3.420676pt;}
.ws105{word-spacing:3.439893pt;}
.ws11d{word-spacing:3.452705pt;}
.ws106{word-spacing:3.465516pt;}
.ws120{word-spacing:3.478328pt;}
.ws1cd{word-spacing:3.491139pt;}
.ws11e{word-spacing:3.510356pt;}
.wsef{word-spacing:3.529574pt;}
.wsf0{word-spacing:3.548791pt;}
.ws1ed{word-spacing:3.766587pt;}
.ws1b{word-spacing:3.769600pt;}
.ws11f{word-spacing:3.785804pt;}
.ws1b3{word-spacing:3.805021pt;}
.ws1b4{word-spacing:3.817833pt;}
.ws80{word-spacing:3.820800pt;}
.ws81{word-spacing:3.833600pt;}
.ws20c{word-spacing:3.977977pt;}
.ws56{word-spacing:4.064000pt;}
.ws177{word-spacing:4.131715pt;}
.ws57{word-spacing:4.134400pt;}
.ws178{word-spacing:4.138121pt;}
.ws20b{word-spacing:4.150932pt;}
.ws55{word-spacing:4.166400pt;}
.ws20a{word-spacing:4.291859pt;}
.ws1d6{word-spacing:4.317482pt;}
.ws48{word-spacing:4.352000pt;}
.ws17b{word-spacing:4.387946pt;}
.ws49{word-spacing:4.486400pt;}
.ws1d5{word-spacing:4.496844pt;}
.ws14c{word-spacing:4.624959pt;}
.ws157{word-spacing:4.656988pt;}
.ws91{word-spacing:4.691200pt;}
.ws14e{word-spacing:4.708234pt;}
.ws158{word-spacing:4.714639pt;}
.wsfa{word-spacing:4.721045pt;}
.wsf9{word-spacing:4.753074pt;}
.ws8f{word-spacing:4.761600pt;}
.ws14d{word-spacing:4.772291pt;}
.wsfb{word-spacing:4.797914pt;}
.ws90{word-spacing:4.864000pt;}
.wsfc{word-spacing:4.958058pt;}
.ws1c6{word-spacing:5.002899pt;}
.ws13e{word-spacing:5.066956pt;}
.ws116{word-spacing:5.092579pt;}
.wsfd{word-spacing:5.131014pt;}
.ws150{word-spacing:5.355215pt;}
.ws1d2{word-spacing:5.374433pt;}
.ws151{word-spacing:5.412867pt;}
.ws1d1{word-spacing:5.432084pt;}
.ws136{word-spacing:5.579417pt;}
.ws137{word-spacing:5.592228pt;}
.wsb4{word-spacing:5.676800pt;}
.ws32{word-spacing:5.702400pt;}
.wsba{word-spacing:5.715200pt;}
.ws6a{word-spacing:5.747200pt;}
.ws33{word-spacing:5.779200pt;}
.wsb3{word-spacing:5.836800pt;}
.ws5f{word-spacing:5.926400pt;}
.ws1ec{word-spacing:5.944545pt;}
.ws3f{word-spacing:5.984000pt;}
.ws119{word-spacing:5.989386pt;}
.ws3e{word-spacing:6.009600pt;}
.ws1eb{word-spacing:6.047037pt;}
.ws5e{word-spacing:6.060800pt;}
.ws79{word-spacing:6.144000pt;}
.ws4e{word-spacing:6.182400pt;}
.ws4c{word-spacing:6.220800pt;}
.ws76{word-spacing:6.233600pt;}
.ws7c{word-spacing:6.252800pt;}
.ws77{word-spacing:6.259200pt;}
.ws75{word-spacing:6.278400pt;}
.ws4d{word-spacing:6.329600pt;}
.wsec{word-spacing:6.380137pt;}
.ws214{word-spacing:6.392948pt;}
.ws7d{word-spacing:6.393600pt;}
.ws78{word-spacing:6.406400pt;}
.wsed{word-spacing:6.424977pt;}
.ws215{word-spacing:6.463412pt;}
.ws1f1{word-spacing:6.604339pt;}
.ws1f2{word-spacing:6.636367pt;}
.ws212{word-spacing:6.854163pt;}
.ws108{word-spacing:6.905409pt;}
.ws1a0{word-spacing:6.918221pt;}
.ws152{word-spacing:6.950250pt;}
.ws19f{word-spacing:6.956655pt;}
.ws153{word-spacing:6.963061pt;}
.ws107{word-spacing:6.969467pt;}
.ws82{word-spacing:6.969600pt;}
.ws149{word-spacing:6.995090pt;}
.ws213{word-spacing:7.014307pt;}
.ws216{word-spacing:7.033524pt;}
.ws98{word-spacing:7.212800pt;}
.ws97{word-spacing:7.308800pt;}
.ws1a{word-spacing:7.315200pt;}
.ws1f0{word-spacing:7.328189pt;}
.ws19{word-spacing:7.353600pt;}
.ws1c0{word-spacing:7.635666pt;}
.ws8a{word-spacing:7.641600pt;}
.ws1e8{word-spacing:7.654883pt;}
.ws8c{word-spacing:7.660800pt;}
.ws8b{word-spacing:7.673600pt;}
.ws1e7{word-spacing:7.718941pt;}
.ws14a{word-spacing:7.879085pt;}
.wsf{word-spacing:7.923200pt;}
.ws14b{word-spacing:7.923925pt;}
.wse{word-spacing:7.955200pt;}
.ws134{word-spacing:7.955954pt;}
.ws19a{word-spacing:8.141721pt;}
.ws2d{word-spacing:8.160000pt;}
.ws8d{word-spacing:8.179200pt;}
.ws198{word-spacing:8.237807pt;}
.ws17c{word-spacing:8.244213pt;}
.ws5b{word-spacing:8.262400pt;}
.ws8e{word-spacing:8.275200pt;}
.ws2f{word-spacing:8.294400pt;}
.ws199{word-spacing:8.301865pt;}
.ws2e{word-spacing:8.326400pt;}
.ws89{word-spacing:8.588800pt;}
.ws88{word-spacing:8.672000pt;}
.wsc{word-spacing:9.177600pt;}
.wsd{word-spacing:9.209600pt;}
.ws34{word-spacing:9.516800pt;}
.ws35{word-spacing:9.568000pt;}
.ws1b5{word-spacing:9.871276pt;}
.ws1ac{word-spacing:9.896899pt;}
.ws1ad{word-spacing:9.903305pt;}
.ws1b6{word-spacing:9.916116pt;}
.ws145{word-spacing:10.191564pt;}
.ws146{word-spacing:10.204376pt;}
.ws15f{word-spacing:10.524664pt;}
.ws15e{word-spacing:10.531069pt;}
.ws217{word-spacing:10.537475pt;}
.ws14f{word-spacing:10.768083pt;}
.ws176{word-spacing:10.838546pt;}
.ws63{word-spacing:11.052800pt;}
.ws1cb{word-spacing:11.081965pt;}
.ws64{word-spacing:11.084800pt;}
.ws1be{word-spacing:11.094776pt;}
.ws1bf{word-spacing:11.101182pt;}
.ws1ca{word-spacing:11.222892pt;}
.ws1f4{word-spacing:11.306166pt;}
.ws13{word-spacing:11.308800pt;}
.ws1f5{word-spacing:11.351007pt;}
.ws1f3{word-spacing:11.363818pt;}
.ws10c{word-spacing:11.383036pt;}
.ws12{word-spacing:11.507200pt;}
.ws14{word-spacing:11.513600pt;}
.ws10b{word-spacing:11.530368pt;}
.ws179{word-spacing:11.735352pt;}
.ws31{word-spacing:11.756800pt;}
.ws17a{word-spacing:11.825033pt;}
.ws30{word-spacing:11.827200pt;}
.ws20{word-spacing:12.147200pt;}
.ws21{word-spacing:12.166400pt;}
.ws22{word-spacing:12.204800pt;}
.ws1c9{word-spacing:12.433580pt;}
.ws3a{word-spacing:12.460800pt;}
.ws1c8{word-spacing:12.497638pt;}
.ws39{word-spacing:12.531200pt;}
.ws17{word-spacing:12.588800pt;}
.ws61{word-spacing:12.646400pt;}
.ws200{word-spacing:12.689811pt;}
.ws1d4{word-spacing:12.696216pt;}
.ws62{word-spacing:12.704000pt;}
.ws1d3{word-spacing:12.709028pt;}
.ws16{word-spacing:12.729600pt;}
.ws18{word-spacing:12.748800pt;}
.wsb5{word-spacing:12.755200pt;}
.ws10{word-spacing:12.774400pt;}
.ws60{word-spacing:12.832000pt;}
.ws11{word-spacing:12.851200pt;}
.ws15{word-spacing:12.896000pt;}
.wsc4{word-spacing:12.928000pt;}
.wsc5{word-spacing:12.998400pt;}
.ws28{word-spacing:13.094400pt;}
.ws125{word-spacing:13.099779pt;}
.ws126{word-spacing:13.106185pt;}
.ws27{word-spacing:13.139200pt;}
.ws45{word-spacing:13.164800pt;}
.ws44{word-spacing:13.299200pt;}
.ws46{word-spacing:13.344000pt;}
.ws1ba{word-spacing:13.573805pt;}
.ws110{word-spacing:13.657080pt;}
.ws10f{word-spacing:13.701921pt;}
.ws1c4{word-spacing:13.714732pt;}
.ws1bb{word-spacing:13.753167pt;}
.ws154{word-spacing:13.765978pt;}
.ws206{word-spacing:13.772384pt;}
.ws1c3{word-spacing:13.778790pt;}
.wsc3{word-spacing:13.984000pt;}
.ws21b{word-spacing:14.002991pt;}
.wsc1{word-spacing:14.041600pt;}
.wsc2{word-spacing:14.073600pt;}
.ws21a{word-spacing:14.092672pt;}
.ws54{word-spacing:14.227200pt;}
.ws13b{word-spacing:14.265628pt;}
.ws53{word-spacing:14.284800pt;}
.ws15c{word-spacing:14.291251pt;}
.wsf5{word-spacing:14.368120pt;}
.ws13a{word-spacing:14.380931pt;}
.ws15d{word-spacing:14.412960pt;}
.ws203{word-spacing:14.675596pt;}
.ws19d{word-spacing:14.682002pt;}
.ws19c{word-spacing:14.758871pt;}
.ws204{word-spacing:14.784494pt;}
.ws10d{word-spacing:14.931827pt;}
.ws10e{word-spacing:14.989478pt;}
.ws43{word-spacing:14.995200pt;}
.ws42{word-spacing:15.008000pt;}
.ws50{word-spacing:15.014400pt;}
.ws207{word-spacing:15.027913pt;}
.ws4f{word-spacing:15.033600pt;}
.ws208{word-spacing:15.034319pt;}
.wsbc{word-spacing:15.232000pt;}
.wsbd{word-spacing:15.315200pt;}
.wsf4{word-spacing:15.527562pt;}
.wsf3{word-spacing:15.559591pt;}
.ws67{word-spacing:15.827200pt;}
.ws113{word-spacing:15.988777pt;}
.ws66{word-spacing:16.006400pt;}
.ws114{word-spacing:16.078458pt;}
.ws84{word-spacing:16.249600pt;}
.ws83{word-spacing:16.313600pt;}
.ws112{word-spacing:16.859960pt;}
.ws2b{word-spacing:16.908800pt;}
.ws111{word-spacing:16.943235pt;}
.ws2c{word-spacing:16.953600pt;}
.ws23{word-spacing:17.510400pt;}
.ws24{word-spacing:17.548800pt;}
.ws123{word-spacing:17.641463pt;}
.ws124{word-spacing:17.660680pt;}
.wsaf{word-spacing:18.560000pt;}
.ws26{word-spacing:18.732800pt;}
.ws70{word-spacing:18.822400pt;}
.ws140{word-spacing:18.852152pt;}
.ws6f{word-spacing:18.860800pt;}
.ws25{word-spacing:18.867200pt;}
.ws13f{word-spacing:18.871369pt;}
.ws1f6{word-spacing:19.723335pt;}
.ws160{word-spacing:19.748958pt;}
.ws1f7{word-spacing:19.864262pt;}
.ws1fa{word-spacing:19.934725pt;}
.ws1f8{word-spacing:20.069246pt;}
.ws5d{word-spacing:20.089600pt;}
.ws5c{word-spacing:20.147200pt;}
.ws1f9{word-spacing:20.158927pt;}
.ws52{word-spacing:21.062400pt;}
.ws68{word-spacing:23.014400pt;}
.ws69{word-spacing:23.040000pt;}
.ws1b0{word-spacing:23.938325pt;}
.ws7b{word-spacing:24.019200pt;}
.ws7a{word-spacing:24.038400pt;}
.ws1d{word-spacing:24.428800pt;}
.ws1c{word-spacing:24.486400pt;}
.ws1e{word-spacing:24.652800pt;}
.ws86{word-spacing:24.928000pt;}
.ws85{word-spacing:24.992000pt;}
.ws210{word-spacing:26.205964pt;}
.ws73{word-spacing:26.457600pt;}
.ws74{word-spacing:26.496000pt;}
.ws92{word-spacing:27.692800pt;}
.ws93{word-spacing:27.820800pt;}
.ws59{word-spacing:28.608000pt;}
.ws58{word-spacing:28.812800pt;}
.ws5a{word-spacing:28.844800pt;}
.ws20f{word-spacing:30.062232pt;}
.ws20e{word-spacing:30.164724pt;}
.ws20d{word-spacing:30.401737pt;}
.ws1c7{word-spacing:30.638750pt;}
.ws4b{word-spacing:33.222400pt;}
.ws4a{word-spacing:33.254400pt;}
.ws201{word-spacing:34.232381pt;}
.ws202{word-spacing:34.283628pt;}
.ws21d{word-spacing:34.552669pt;}
.ws51{word-spacing:36.134400pt;}
.ws72{word-spacing:36.800000pt;}
.ws71{word-spacing:36.812800pt;}
.wsa6{word-spacing:47.834500pt;}
.ws166{word-spacing:53.769949pt;}
.wsa1{word-spacing:57.946498pt;}
.wsa7{word-spacing:58.332126pt;}
.ws167{word-spacing:75.216434pt;}
.ws15a{word-spacing:82.798831pt;}
.ws163{word-spacing:93.139750pt;}
.ws16a{word-spacing:96.265753pt;}
.ws1a4{word-spacing:96.588864pt;}
.ws1a7{word-spacing:96.594720pt;}
.ws164{word-spacing:107.539899pt;}
.ws165{word-spacing:139.536670pt;}
.ws1a1{word-spacing:153.954240pt;}
.ws1a5{word-spacing:163.148160pt;}
.ws1a8{word-spacing:163.154016pt;}
.ws1ab{word-spacing:163.159872pt;}
.ws1aa{word-spacing:163.458528pt;}
.ws1a6{word-spacing:163.470240pt;}
.ws1a9{word-spacing:230.334048pt;}
.wsd3{word-spacing:235.866122pt;}
.ws1a3{word-spacing:274.160352pt;}
.ws162{word-spacing:287.660800pt;}
.wsad{word-spacing:297.055081pt;}
.wsd6{word-spacing:297.056636pt;}
.wsa3{word-spacing:434.203156pt;}
.wsd9{word-spacing:512.960000pt;}
.wsab{word-spacing:527.853651pt;}
.wsd5{word-spacing:528.346122pt;}
.wsac{word-spacing:557.472012pt;}
.ws1d8{word-spacing:1166.444928pt;}
.ws1de{word-spacing:1167.727392pt;}
._42{margin-left:-1167.680544pt;}
._3e{margin-left:-1166.398080pt;}
._3d{margin-left:-922.882176pt;}
._41{margin-left:-904.962816pt;}
._13{margin-left:-307.116744pt;}
._1f{margin-left:-262.736029pt;}
._12{margin-left:-248.558923pt;}
._14{margin-left:-227.188296pt;}
._1c{margin-left:-191.263715pt;}
._18{margin-left:-179.372981pt;}
._5{margin-left:-176.755200pt;}
._4{margin-left:-175.859200pt;}
._a{margin-left:-174.697887pt;}
._1a{margin-left:-173.297744pt;}
._10{margin-left:-162.206655pt;}
._6{margin-left:-157.286400pt;}
._16{margin-left:-147.440343pt;}
._1d{margin-left:-142.932285pt;}
._15{margin-left:-125.360430pt;}
._17{margin-left:-121.522670pt;}
._1b{margin-left:-114.773045pt;}
._30{margin-left:-103.973280pt;}
._c{margin-left:-95.247245pt;}
._b{margin-left:-87.643608pt;}
._11{margin-left:-84.072529pt;}
._e{margin-left:-82.128249pt;}
._d{margin-left:-80.014348pt;}
._19{margin-left:-78.575201pt;}
._f{margin-left:-71.052690pt;}
._2e{margin-left:-68.134560pt;}
._39{margin-left:-67.225376pt;}
._2f{margin-left:-65.282688pt;}
._1e{margin-left:-58.656000pt;}
._21{margin-left:-48.640000pt;}
._20{margin-left:-47.136000pt;}
._31{margin-left:-39.041952pt;}
._7{margin-left:-15.244800pt;}
._1{margin-left:-14.336000pt;}
._22{margin-left:-3.330277pt;}
._2c{margin-left:-2.187840pt;}
._0{margin-left:-1.120000pt;}
._3{width:1.674816pt;}
._23{width:2.902408pt;}
._27{width:6.923866pt;}
._33{width:14.405760pt;}
._34{width:29.443968pt;}
._26{width:38.920637pt;}
._24{width:40.960000pt;}
._25{width:53.320786pt;}
._36{width:66.730624pt;}
._9{width:80.000000pt;}
._2b{width:96.385639pt;}
._2a{width:104.763580pt;}
._37{width:112.751424pt;}
._2d{width:115.584964pt;}
._29{width:128.204120pt;}
._3a{width:143.635968pt;}
._28{width:149.644199pt;}
._38{width:163.101504pt;}
._8{width:176.000000pt;}
._35{width:180.855040pt;}
._32{width:184.651392pt;}
._3c{width:187.573536pt;}
._3b{width:208.684416pt;}
._43{width:596.533152pt;}
._3f{width:632.693952pt;}
._2{width:705.734400pt;}
._44{width:762.621024pt;}
._40{width:798.781824pt;}
.fs2{font-size:5.440000pt;}
.fs23{font-size:21.126400pt;}
.fs21{font-size:22.497600pt;}
.fs1a{font-size:23.757333pt;}
.fs18{font-size:26.998933pt;}
.fs26{font-size:28.363733pt;}
.fs1f{font-size:28.581333pt;}
.fs1c{font-size:29.320000pt;}
.fs8{font-size:31.974933pt;}
.fs12{font-size:31.977600pt;}
.fsa{font-size:31.981333pt;}
.fsf{font-size:32.000000pt;}
.fs22{font-size:32.010133pt;}
.fs5{font-size:32.028800pt;}
.fs20{font-size:32.194667pt;}
.fsd{font-size:33.819513pt;}
.fs19{font-size:34.316267pt;}
.fs17{font-size:38.998933pt;}
.fs3{font-size:42.560000pt;}
.fs1e{font-size:42.871467pt;}
.fs1b{font-size:43.980267pt;}
.fs25{font-size:45.246400pt;}
.fs1d{font-size:48.669867pt;}
.fs0{font-size:53.440000pt;}
.fs15{font-size:56.349867pt;}
.fs24{font-size:58.560000pt;}
.fs16{font-size:62.360000pt;}
.fs7{font-size:63.949867pt;}
.fs11{font-size:63.954667pt;}
.fsb{font-size:63.962667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:64.057600pt;}
.fsc{font-size:67.586585pt;}
.fs13{font-size:67.591817pt;}
.fse{font-size:67.639544pt;}
.fs9{font-size:95.925333pt;}
.fs10{font-size:95.933867pt;}
.fs14{font-size:96.000000pt;}
.fs6{font-size:96.086400pt;}
.y1db{bottom:-0.639600pt;}
.y182{bottom:-0.239600pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:3.520400pt;}
.y90{bottom:3.520533pt;}
.y7b{bottom:4.880400pt;}
.y7f{bottom:5.280400pt;}
.y1{bottom:51.227067pt;}
.yf2{bottom:99.942156pt;}
.y172{bottom:103.067067pt;}
.ybb{bottom:103.300241pt;}
.y118{bottom:108.826521pt;}
.y25f{bottom:110.417791pt;}
.y5c{bottom:110.427067pt;}
.y239{bottom:115.786665pt;}
.y77{bottom:116.347067pt;}
.y1b8{bottom:116.585975pt;}
.y207{bottom:118.027067pt;}
.yf1{bottom:118.342702pt;}
.y33{bottom:119.627067pt;}
.yba{bottom:121.700786pt;}
.y117{bottom:127.227067pt;}
.y25e{bottom:128.818337pt;}
.y5b{bottom:128.827067pt;}
.y238{bottom:134.027067pt;}
.y1b7{bottom:134.986521pt;}
.y76{bottom:135.947067pt;}
.y206{bottom:136.427067pt;}
.yf0{bottom:136.743247pt;}
.y32{bottom:138.027067pt;}
.y171{bottom:139.467251pt;}
.yb9{bottom:140.101332pt;}
.y116{bottom:145.467067pt;}
.y25d{bottom:147.218883pt;}
.y5a{bottom:147.227067pt;}
.y237{bottom:152.427067pt;}
.y1b6{bottom:153.387067pt;}
.y205{bottom:154.827067pt;}
.y170{bottom:154.827243pt;}
.yef{bottom:155.143793pt;}
.y75{bottom:155.547067pt;}
.y31{bottom:156.427067pt;}
.y17e{bottom:157.867067pt;}
.yb8{bottom:158.501878pt;}
.y173{bottom:161.227067pt;}
.y17f{bottom:162.106764pt;}
.y176{bottom:162.107200pt;}
.y115{bottom:163.867067pt;}
.y25c{bottom:165.619428pt;}
.y59{bottom:165.627067pt;}
.y16f{bottom:170.107075pt;}
.y236{bottom:170.667067pt;}
.y1b5{bottom:171.627067pt;}
.y204{bottom:173.227067pt;}
.yee{bottom:173.544339pt;}
.y30{bottom:174.827067pt;}
.y74{bottom:175.147067pt;}
.yb7{bottom:176.902423pt;}
.y114{bottom:182.422723pt;}
.y25b{bottom:184.019974pt;}
.y58{bottom:184.027067pt;}
.y16e{bottom:185.467067pt;}
.y177{bottom:186.427067pt;}
.y234{bottom:188.268267pt;}
.y174{bottom:188.987067pt;}
.y1b4{bottom:190.027067pt;}
.y203{bottom:191.467067pt;}
.yed{bottom:191.944884pt;}
.y2f{bottom:193.227067pt;}
.y73{bottom:194.747067pt;}
.yd1{bottom:196.347067pt;}
.y113{bottom:200.823269pt;}
.yd0{bottom:201.306667pt;}
.y16d{bottom:201.374044pt;}
.y25a{bottom:202.420519pt;}
.y57{bottom:202.427067pt;}
.y232{bottom:205.067667pt;}
.y233{bottom:205.148187pt;}
.yd4{bottom:206.267067pt;}
.y1b3{bottom:208.427067pt;}
.y202{bottom:208.987067pt;}
.yd2{bottom:210.267067pt;}
.yec{bottom:210.345430pt;}
.y178{bottom:210.827067pt;}
.y2e{bottom:211.627067pt;}
.y72{bottom:213.147067pt;}
.y175{bottom:216.667067pt;}
.yd3{bottom:217.467067pt;}
.y16c{bottom:219.774590pt;}
.y259{bottom:220.821065pt;}
.y56{bottom:220.827067pt;}
.y123{bottom:221.547067pt;}
.y231{bottom:221.867067pt;}
.y235{bottom:221.947587pt;}
.y124{bottom:225.867693pt;}
.y201{bottom:226.507067pt;}
.yeb{bottom:228.745975pt;}
.y119{bottom:229.067067pt;}
.y2d{bottom:230.027067pt;}
.y71{bottom:231.547067pt;}
.y179{bottom:234.987067pt;}
.y16b{bottom:238.175135pt;}
.y258{bottom:239.221611pt;}
.y55{bottom:239.227067pt;}
.y22f{bottom:239.467707pt;}
.y200{bottom:244.027067pt;}
.y11a{bottom:245.067067pt;}
.y1b2{bottom:245.298883pt;}
.yb6{bottom:246.502607pt;}
.yea{bottom:247.146521pt;}
.y2c{bottom:248.427067pt;}
.y12b{bottom:248.987021pt;}
.y70{bottom:251.147067pt;}
.y11d{bottom:251.467067pt;}
.y17a{bottom:251.867067pt;}
.y22e{bottom:256.347627pt;}
.y16a{bottom:256.575681pt;}
.y1d7{bottom:257.467067pt;}
.y257{bottom:257.622156pt;}
.y54{bottom:257.627067pt;}
.y1de{bottom:259.147067pt;}
.y1e0{bottom:259.787067pt;}
.y1cc{bottom:259.947067pt;}
.y1d8{bottom:260.507048pt;}
.y1cf{bottom:260.507067pt;}
.y11b{bottom:260.827067pt;}
.y1ff{bottom:261.547067pt;}
.y1b1{bottom:263.699428pt;}
.yb5{bottom:264.903153pt;}
.ye9{bottom:265.547067pt;}
.y2b{bottom:266.827067pt;}
.y12a{bottom:267.546916pt;}
.y6f{bottom:269.547067pt;}
.y22d{bottom:272.027067pt;}
.y230{bottom:273.227547pt;}
.y169{bottom:274.976227pt;}
.y256{bottom:276.022702pt;}
.y53{bottom:276.027067pt;}
.y11c{bottom:276.827067pt;}
.y1e1{bottom:277.387067pt;}
.y1d0{bottom:278.187200pt;}
.y1fe{bottom:279.067067pt;}
.y1cd{bottom:279.867067pt;}
.y1b0{bottom:282.099974pt;}
.yb4{bottom:283.303698pt;}
.y2a{bottom:285.227067pt;}
.y129{bottom:285.547130pt;}
.y92{bottom:288.107067pt;}
.y22c{bottom:290.667459pt;}
.y188{bottom:291.786711pt;}
.y8e{bottom:292.107067pt;}
.y11e{bottom:292.747067pt;}
.y168{bottom:293.376772pt;}
.y255{bottom:294.423247pt;}
.y52{bottom:294.427067pt;}
.y1e2{bottom:294.987067pt;}
.y1d1{bottom:295.707067pt;}
.y1fd{bottom:296.587067pt;}
.y94{bottom:298.907067pt;}
.y1df{bottom:299.147067pt;}
.y1ce{bottom:299.947067pt;}
.y1af{bottom:300.500519pt;}
.y8d{bottom:300.827067pt;}
.yb3{bottom:301.704244pt;}
.ye8{bottom:302.341195pt;}
.y91{bottom:302.907067pt;}
.y128{bottom:303.626853pt;}
.y29{bottom:303.627067pt;}
.y17b{bottom:303.707067pt;}
.y187{bottom:306.186908pt;}
.y11f{bottom:307.627067pt;}
.y22b{bottom:308.187147pt;}
.y93{bottom:308.667067pt;}
.y8f{bottom:309.146667pt;}
.y167{bottom:311.777318pt;}
.y1e3{bottom:312.427067pt;}
.y144{bottom:312.747067pt;}
.y254{bottom:312.823793pt;}
.y51{bottom:312.827067pt;}
.y1d2{bottom:313.227067pt;}
.y1fc{bottom:314.187200pt;}
.y1ae{bottom:318.901065pt;}
.yc6{bottom:319.947067pt;}
.y186{bottom:320.267100pt;}
.ye7{bottom:320.741741pt;}
.ycb{bottom:321.307067pt;}
.y181{bottom:321.466667pt;}
.y127{bottom:321.627067pt;}
.y28{bottom:322.027067pt;}
.yc8{bottom:323.947067pt;}
.y1e4{bottom:324.587067pt;}
.y22a{bottom:325.067067pt;}
.ycd{bottom:325.307067pt;}
.y1d3{bottom:325.387067pt;}
.y166{bottom:330.177863pt;}
.y143{bottom:330.987067pt;}
.y253{bottom:331.224339pt;}
.y50{bottom:331.227067pt;}
.y1fb{bottom:331.787067pt;}
.y180{bottom:333.947562pt;}
.y185{bottom:334.347292pt;}
.yca{bottom:336.427067pt;}
.y1ad{bottom:337.301611pt;}
.ycf{bottom:337.787067pt;}
.y1dd{bottom:339.947943pt;}
.y27{bottom:340.427067pt;}
.y229{bottom:342.187067pt;}
.yc7{bottom:343.067172pt;}
.yc9{bottom:343.546667pt;}
.ycc{bottom:344.427172pt;}
.yce{bottom:344.906667pt;}
.y184{bottom:348.266874pt;}
.y165{bottom:348.578409pt;}
.y6e{bottom:348.747067pt;}
.y142{bottom:349.387067pt;}
.y1fa{bottom:349.621611pt;}
.y252{bottom:349.624884pt;}
.y4f{bottom:349.627067pt;}
.y120{bottom:353.227067pt;}
.y1ac{bottom:355.702156pt;}
.y17c{bottom:356.507067pt;}
.y26{bottom:358.827067pt;}
.y228{bottom:360.587067pt;}
.y1e5{bottom:362.187200pt;}
.y183{bottom:362.347067pt;}
.y1d4{bottom:362.987200pt;}
.y164{bottom:366.978955pt;}
.y1e9{bottom:366.987313pt;}
.y6d{bottom:367.147067pt;}
.y141{bottom:367.386635pt;}
.y1f9{bottom:368.022156pt;}
.y251{bottom:368.025430pt;}
.y4e{bottom:368.027067pt;}
.y1ab{bottom:374.102702pt;}
.y126{bottom:375.068052pt;}
.y1da{bottom:375.866667pt;}
.y1e8{bottom:376.667177pt;}
.y25{bottom:377.227067pt;}
.y227{bottom:378.827200pt;}
.y140{bottom:379.627067pt;}
.y137{bottom:380.507109pt;}
.yb2{bottom:380.905060pt;}
.y1d9{bottom:384.586098pt;}
.y163{bottom:385.379500pt;}
.y6c{bottom:385.547067pt;}
.y1f8{bottom:386.422702pt;}
.y250{bottom:386.425975pt;}
.y4d{bottom:386.427067pt;}
.y138{bottom:386.987200pt;}
.y125{bottom:392.347739pt;}
.y1aa{bottom:392.503247pt;}
.y24{bottom:395.627067pt;}
.y225{bottom:396.347880pt;}
.y136{bottom:398.507067pt;}
.yb1{bottom:399.305606pt;}
.y121{bottom:400.027200pt;}
.y1e6{bottom:400.347067pt;}
.y1d5{bottom:401.227067pt;}
.y162{bottom:403.780046pt;}
.y6b{bottom:403.947067pt;}
.y1f7{bottom:404.823247pt;}
.y24f{bottom:404.826521pt;}
.y4c{bottom:404.827067pt;}
.y17d{bottom:409.307067pt;}
.y1a9{bottom:410.903793pt;}
.y223{bottom:413.147280pt;}
.y224{bottom:413.227800pt;}
.y23{bottom:414.027067pt;}
.y1dc{bottom:417.467067pt;}
.yb0{bottom:417.706152pt;}
.y8a{bottom:422.027200pt;}
.y161{bottom:422.180591pt;}
.y1f6{bottom:423.223793pt;}
.y4b{bottom:423.227067pt;}
.y89{bottom:426.986667pt;}
.y1a8{bottom:429.304339pt;}
.y222{bottom:430.027200pt;}
.y226{bottom:430.107720pt;}
.y8c{bottom:432.027118pt;}
.y22{bottom:432.427067pt;}
.y139{bottom:434.507067pt;}
.y8b{bottom:435.947200pt;}
.yaf{bottom:436.106697pt;}
.y1e7{bottom:438.587067pt;}
.y1d6{bottom:439.307067pt;}
.y160{bottom:440.581137pt;}
.y24e{bottom:441.467067pt;}
.y1f5{bottom:441.624339pt;}
.y4a{bottom:441.627067pt;}
.y122{bottom:445.707067pt;}
.y220{bottom:447.627707pt;}
.y1a7{bottom:447.704884pt;}
.y21{bottom:450.827067pt;}
.yc2{bottom:454.827200pt;}
.y15f{bottom:458.981683pt;}
.y1f4{bottom:460.024884pt;}
.y24d{bottom:460.025430pt;}
.y49{bottom:460.027067pt;}
.y6a{bottom:463.947067pt;}
.y21f{bottom:464.507627pt;}
.yc1{bottom:465.067200pt;}
.y1a6{bottom:466.105430pt;}
.yc4{bottom:466.826794pt;}
.y20{bottom:469.227067pt;}
.yc5{bottom:470.827067pt;}
.y15e{bottom:477.382228pt;}
.yc3{bottom:477.947005pt;}
.y1f3{bottom:478.425430pt;}
.y24c{bottom:478.425975pt;}
.y48{bottom:478.427067pt;}
.y21e{bottom:480.187067pt;}
.y221{bottom:481.387547pt;}
.y69{bottom:482.347067pt;}
.y1a5{bottom:484.505975pt;}
.y13a{bottom:484.747067pt;}
.y1f{bottom:487.627067pt;}
.y15d{bottom:495.782774pt;}
.y1f2{bottom:496.825975pt;}
.y24b{bottom:496.826521pt;}
.y47{bottom:496.827067pt;}
.y68{bottom:500.747067pt;}
.y1a4{bottom:502.906521pt;}
.yae{bottom:505.306521pt;}
.y1e{bottom:505.387611pt;}
.y15c{bottom:514.183319pt;}
.y46{bottom:515.067067pt;}
.y1f1{bottom:515.226521pt;}
.y24a{bottom:515.227067pt;}
.y21d{bottom:516.426531pt;}
.y67{bottom:519.147067pt;}
.y1d{bottom:521.147067pt;}
.y1a3{bottom:521.307067pt;}
.yad{bottom:523.706521pt;}
.y15b{bottom:532.583865pt;}
.y45{bottom:533.467067pt;}
.y21c{bottom:533.612953pt;}
.y112{bottom:533.623319pt;}
.y1f0{bottom:533.627067pt;}
.y13b{bottom:534.987067pt;}
.y81{bottom:537.387067pt;}
.y1c{bottom:539.147067pt;}
.y1a2{bottom:539.547067pt;}
.y83{bottom:541.387067pt;}
.yab{bottom:542.103997pt;}
.yac{bottom:542.107067pt;}
.y15a{bottom:550.984411pt;}
.y44{bottom:551.787067pt;}
.y21b{bottom:551.933427pt;}
.y111{bottom:551.943793pt;}
.y85{bottom:553.866183pt;}
.y88{bottom:553.867067pt;}
.y1b{bottom:555.067067pt;}
.y1a1{bottom:557.947067pt;}
.y82{bottom:560.507172pt;}
.y86{bottom:560.986667pt;}
.yaa{bottom:561.704022pt;}
.y84{bottom:564.506373pt;}
.y159{bottom:569.384956pt;}
.y1ef{bottom:570.187067pt;}
.y21a{bottom:570.333972pt;}
.y110{bottom:570.344339pt;}
.y43{bottom:570.347067pt;}
.y1a{bottom:573.467067pt;}
.y1a0{bottom:576.347067pt;}
.ya9{bottom:580.104567pt;}
.y13c{bottom:585.227067pt;}
.y158{bottom:587.785502pt;}
.y1ee{bottom:588.587067pt;}
.y219{bottom:588.734518pt;}
.y10f{bottom:588.744884pt;}
.y42{bottom:588.747067pt;}
.y19{bottom:591.867067pt;}
.y19f{bottom:594.747067pt;}
.ybe{bottom:598.827067pt;}
.y66{bottom:599.147067pt;}
.y157{bottom:606.186047pt;}
.y218{bottom:607.135063pt;}
.y10e{bottom:607.145430pt;}
.y41{bottom:607.147067pt;}
.ybc{bottom:609.067067pt;}
.y18{bottom:610.267067pt;}
.yc0{bottom:610.826661pt;}
.y19e{bottom:613.147067pt;}
.ybd{bottom:614.827067pt;}
.y267{bottom:616.336938pt;}
.y65{bottom:617.547067pt;}
.ybf{bottom:621.946871pt;}
.y156{bottom:624.586593pt;}
.y1ed{bottom:625.535609pt;}
.y10d{bottom:625.545975pt;}
.y40{bottom:625.547067pt;}
.y17{bottom:628.667067pt;}
.ye6{bottom:631.541209pt;}
.y19d{bottom:631.547067pt;}
.y212{bottom:632.667067pt;}
.y266{bottom:634.737483pt;}
.y13d{bottom:635.467067pt;}
.y208{bottom:635.867067pt;}
.y64{bottom:635.947067pt;}
.y213{bottom:636.666848pt;}
.y20b{bottom:636.667067pt;}
.y155{bottom:642.907067pt;}
.y1ec{bottom:643.936155pt;}
.y10c{bottom:643.946521pt;}
.y3f{bottom:643.947067pt;}
.y1c5{bottom:646.827067pt;}
.y16{bottom:647.067067pt;}
.ye5{bottom:649.941755pt;}
.y19c{bottom:649.947067pt;}
.y1b9{bottom:650.107067pt;}
.y1bd{bottom:650.907067pt;}
.y1c6{bottom:650.907359pt;}
.y265{bottom:653.138029pt;}
.y63{bottom:654.347067pt;}
.ya8{bottom:654.664411pt;}
.y20c{bottom:660.507067pt;}
.y1eb{bottom:662.336700pt;}
.y249{bottom:662.346521pt;}
.y3e{bottom:662.347067pt;}
.y209{bottom:663.067067pt;}
.y15{bottom:665.467067pt;}
.ye4{bottom:668.342300pt;}
.y19b{bottom:668.347067pt;}
.y1ba{bottom:668.827067pt;}
.y13e{bottom:671.466982pt;}
.y264{bottom:671.538575pt;}
.y62{bottom:672.747067pt;}
.ya7{bottom:673.064956pt;}
.y1be{bottom:675.547067pt;}
.y13f{bottom:677.947067pt;}
.y10b{bottom:680.587067pt;}
.y1ea{bottom:680.737246pt;}
.y248{bottom:680.746654pt;}
.y3d{bottom:680.747067pt;}
.y14{bottom:683.867067pt;}
.y20d{bottom:684.507067pt;}
.ye3{bottom:686.742846pt;}
.y19a{bottom:686.747067pt;}
.y1bb{bottom:687.387067pt;}
.y263{bottom:689.939120pt;}
.y20a{bottom:690.187067pt;}
.y80{bottom:690.827067pt;}
.ya6{bottom:691.385430pt;}
.y135{bottom:692.987067pt;}
.y7e{bottom:695.786667pt;}
.y10a{bottom:699.137791pt;}
.y3c{bottom:699.147067pt;}
.y1bf{bottom:700.107067pt;}
.y7d{bottom:700.826984pt;}
.y13{bottom:702.267067pt;}
.y7c{bottom:704.747067pt;}
.ye2{bottom:705.143391pt;}
.y199{bottom:705.147067pt;}
.y1bc{bottom:706.107067pt;}
.y20e{bottom:708.267067pt;}
.y262{bottom:708.339666pt;}
.ya5{bottom:709.785975pt;}
.y134{bottom:711.387067pt;}
.y109{bottom:717.538337pt;}
.y247{bottom:717.539428pt;}
.y3b{bottom:717.547067pt;}
.y12{bottom:720.667067pt;}
.ye1{bottom:723.543937pt;}
.y198{bottom:723.547067pt;}
.y1c0{bottom:724.667067pt;}
.y261{bottom:726.740211pt;}
.ya4{bottom:728.186521pt;}
.y108{bottom:735.938883pt;}
.y246{bottom:735.939974pt;}
.y3a{bottom:735.947067pt;}
.y11{bottom:738.427067pt;}
.y154{bottom:739.067067pt;}
.y1cb{bottom:739.948179pt;}
.y1c1{bottom:741.707067pt;}
.ye0{bottom:741.944483pt;}
.y61{bottom:742.587067pt;}
.y260{bottom:745.140757pt;}
.ya3{bottom:746.587067pt;}
.y217{bottom:747.786351pt;}
.y133{bottom:748.347067pt;}
.y153{bottom:753.947067pt;}
.y10{bottom:754.187067pt;}
.y107{bottom:754.339428pt;}
.y245{bottom:754.340519pt;}
.y39{bottom:754.347067pt;}
.y146{bottom:754.666678pt;}
.ydf{bottom:760.345028pt;}
.y197{bottom:760.503793pt;}
.y147{bottom:760.507067pt;}
.y60{bottom:760.987067pt;}
.ya2{bottom:764.827200pt;}
.y132{bottom:767.307067pt;}
.y145{bottom:770.507067pt;}
.y106{bottom:772.739974pt;}
.y244{bottom:772.741065pt;}
.yf{bottom:772.747067pt;}
.y20f{bottom:775.627067pt;}
.yde{bottom:778.745574pt;}
.y196{bottom:778.904339pt;}
.y5f{bottom:779.387067pt;}
.ya1{bottom:782.667200pt;}
.y131{bottom:786.347067pt;}
.y105{bottom:791.140519pt;}
.y243{bottom:791.141611pt;}
.ye{bottom:791.147067pt;}
.y1c2{bottom:794.107067pt;}
.y215{bottom:795.386695pt;}
.y148{bottom:795.627067pt;}
.ydd{bottom:797.146119pt;}
.y195{bottom:797.304884pt;}
.y5e{bottom:797.787067pt;}
.ya0{bottom:798.745975pt;}
.y130{bottom:805.467067pt;}
.y214{bottom:808.426707pt;}
.y104{bottom:809.541065pt;}
.y242{bottom:809.542156pt;}
.yd{bottom:809.547067pt;}
.y1c8{bottom:813.147993pt;}
.ydc{bottom:815.546665pt;}
.y194{bottom:815.705430pt;}
.y5d{bottom:816.187067pt;}
.y9f{bottom:817.146521pt;}
.y149{bottom:819.387067pt;}
.y12f{bottom:824.507067pt;}
.y1c7{bottom:825.547493pt;}
.y1ca{bottom:827.308439pt;}
.y210{bottom:827.627067pt;}
.y103{bottom:827.941611pt;}
.y241{bottom:827.942702pt;}
.yc{bottom:827.947067pt;}
.y7a{bottom:830.906667pt;}
.ydb{bottom:833.787067pt;}
.y193{bottom:834.105975pt;}
.y9e{bottom:835.546497pt;}
.y79{bottom:837.547396pt;}
.y78{bottom:841.547067pt;}
.y14a{bottom:843.147200pt;}
.y12e{bottom:843.547067pt;}
.y102{bottom:846.342156pt;}
.y240{bottom:846.343247pt;}
.yb{bottom:846.347067pt;}
.y1c3{bottom:847.547067pt;}
.yda{bottom:852.187067pt;}
.y192{bottom:852.506521pt;}
.y9d{bottom:855.146521pt;}
.y12d{bottom:862.587067pt;}
.y101{bottom:864.742702pt;}
.y23f{bottom:864.743793pt;}
.ya{bottom:864.747067pt;}
.y216{bottom:865.466582pt;}
.y14b{bottom:866.907067pt;}
.yd9{bottom:870.744899pt;}
.y191{bottom:870.907067pt;}
.y1c9{bottom:872.987987pt;}
.y9c{bottom:873.547043pt;}
.y211{bottom:879.467067pt;}
.y12c{bottom:881.707067pt;}
.y100{bottom:883.143247pt;}
.y23e{bottom:883.144339pt;}
.y9{bottom:883.147067pt;}
.y190{bottom:888.667443pt;}
.yd8{bottom:889.145445pt;}
.y14c{bottom:890.667067pt;}
.y9b{bottom:893.147043pt;}
.y1c4{bottom:900.907067pt;}
.yff{bottom:901.543793pt;}
.y23d{bottom:901.544884pt;}
.y8{bottom:901.547067pt;}
.y18f{bottom:904.027435pt;}
.yd7{bottom:907.545990pt;}
.y9a{bottom:912.747043pt;}
.y14d{bottom:915.067067pt;}
.y18e{bottom:919.387427pt;}
.yfe{bottom:919.944339pt;}
.y23c{bottom:919.945430pt;}
.y7{bottom:919.947067pt;}
.yd6{bottom:927.146014pt;}
.y99{bottom:932.347043pt;}
.y18d{bottom:934.667259pt;}
.y6{bottom:938.187067pt;}
.yfd{bottom:938.344884pt;}
.y23b{bottom:938.345975pt;}
.y38{bottom:938.347067pt;}
.y14e{bottom:938.827067pt;}
.yd5{bottom:945.546560pt;}
.y18c{bottom:950.027251pt;}
.y98{bottom:951.947043pt;}
.y5{bottom:956.587067pt;}
.yfc{bottom:956.745430pt;}
.y23a{bottom:956.746521pt;}
.y37{bottom:956.747067pt;}
.y14f{bottom:962.587067pt;}
.yf7{bottom:964.107067pt;}
.y18b{bottom:965.387243pt;}
.yf4{bottom:968.107067pt;}
.y97{bottom:971.547043pt;}
.yf9{bottom:974.907067pt;}
.y4{bottom:974.987067pt;}
.yfb{bottom:975.145975pt;}
.y36{bottom:975.147067pt;}
.yf3{bottom:976.827067pt;}
.yf6{bottom:978.907067pt;}
.y18a{bottom:980.667075pt;}
.yf8{bottom:984.667067pt;}
.yf5{bottom:985.146667pt;}
.y150{bottom:986.347067pt;}
.y96{bottom:991.147043pt;}
.y3{bottom:993.387067pt;}
.yfa{bottom:993.546521pt;}
.y35{bottom:993.547067pt;}
.y189{bottom:996.027067pt;}
.y151{bottom:1010.746790pt;}
.y95{bottom:1010.747067pt;}
.y2{bottom:1011.787067pt;}
.y34{bottom:1011.947067pt;}
.y152{bottom:1016.507067pt;}
.h4a{height:6.880000pt;}
.h3b{height:10.000000pt;}
.h36{height:17.423591pt;}
.h1b{height:19.120000pt;}
.h15{height:19.520000pt;}
.h34{height:19.800976pt;}
.h4e{height:23.476182pt;}
.h49{height:23.611518pt;}
.h35{height:25.167496pt;}
.he{height:26.320000pt;}
.h33{height:28.601757pt;}
.h9{height:29.040000pt;}
.h10{height:29.180249pt;}
.h2f{height:29.203125pt;}
.h19{height:30.863608pt;}
.hd{height:31.366036pt;}
.h29{height:31.368652pt;}
.h12{height:31.387930pt;}
.h1d{height:31.390625pt;}
.h1c{height:31.406250pt;}
.h42{height:31.441867pt;}
.h3a{height:32.255059pt;}
.h56{height:33.183639pt;}
.h4c{height:35.334069pt;}
.h4d{height:35.973535pt;}
.h4b{height:35.974069pt;}
.h46{height:36.019171pt;}
.h43{height:36.019705pt;}
.h48{height:36.339171pt;}
.h45{height:36.339705pt;}
.h47{height:36.340238pt;}
.h44{height:36.659705pt;}
.h31{height:41.326904pt;}
.h3c{height:47.766813pt;}
.h3e{height:48.481505pt;}
.h3f{height:48.801505pt;}
.h3d{height:49.121505pt;}
.h41{height:49.122039pt;}
.h38{height:49.343242pt;}
.h40{height:49.441505pt;}
.h39{height:49.982709pt;}
.h37{height:49.983242pt;}
.h52{height:50.561918pt;}
.h53{height:50.881918pt;}
.h54{height:51.201918pt;}
.h55{height:51.521918pt;}
.h1{height:52.448437pt;}
.h23{height:53.857500pt;}
.h51{height:57.473437pt;}
.h11{height:58.360498pt;}
.h28{height:58.364879pt;}
.h13{height:58.372180pt;}
.hb{height:58.458816pt;}
.h4f{height:58.695420pt;}
.h50{height:59.017500pt;}
.h16{height:60.166036pt;}
.h32{height:61.202930pt;}
.h18{height:61.679359pt;}
.h2c{height:61.684134pt;}
.h1a{height:61.727689pt;}
.h57{height:62.275358pt;}
.h2d{height:62.736780pt;}
.h14{height:62.744628pt;}
.hc{height:62.763297pt;}
.h3{height:62.812500pt;}
.h5{height:62.813033pt;}
.h7{height:62.837753pt;}
.h21{height:62.869031pt;}
.h20{height:62.869128pt;}
.h22{height:62.871310pt;}
.h2{height:64.500000pt;}
.h24{height:64.512277pt;}
.h4{height:66.750000pt;}
.h5a{height:66.751649pt;}
.h5b{height:66.752182pt;}
.h25{height:71.189531pt;}
.h26{height:71.191714pt;}
.h6{height:71.210313pt;}
.h1f{height:71.210409pt;}
.h1e{height:74.458816pt;}
.h17{height:78.443627pt;}
.h2a{height:78.738402pt;}
.h2b{height:78.769097pt;}
.h30{height:78.837753pt;}
.h8{height:78.867714pt;}
.hf{height:87.541234pt;}
.h27{height:87.549022pt;}
.h2e{height:87.609375pt;}
.ha{height:87.688223pt;}
.h59{height:124.993118pt;}
.h58{height:125.315197pt;}
.h0{height:1122.666667pt;}
.w7{width:4.480000pt;}
.w6{width:7.120000pt;}
.w2{width:8.960000pt;}
.w5{width:9.920000pt;}
.w4{width:14.240000pt;}
.w3{width:17.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x77{left:48.240000pt;}
.x6c{left:77.361059pt;}
.x69{left:89.440000pt;}
.x68{left:93.680000pt;}
.x1{left:119.840000pt;}
.x48{left:124.401148pt;}
.x67{left:127.040000pt;}
.x75{left:129.760000pt;}
.x5a{left:131.278718pt;}
.x5b{left:137.920000pt;}
.x80{left:140.960154pt;}
.x5d{left:149.520000pt;}
.x45{left:151.280000pt;}
.x6b{left:153.120743pt;}
.x2{left:156.480000pt;}
.x43{left:158.640000pt;}
.x7d{left:160.640000pt;}
.x66{left:164.560000pt;}
.x7c{left:167.520000pt;}
.x44{left:170.480000pt;}
.x55{left:173.360000pt;}
.x3e{left:177.360000pt;}
.x6d{left:179.120000pt;}
.x62{left:183.120000pt;}
.x4a{left:190.240000pt;}
.x85{left:191.839219pt;}
.x5e{left:199.120000pt;}
.x76{left:201.120000pt;}
.x65{left:202.800000pt;}
.x59{left:214.800000pt;}
.x4f{left:221.680000pt;}
.x47{left:223.840349pt;}
.x4e{left:226.640000pt;}
.x54{left:227.760000pt;}
.x6e{left:229.439459pt;}
.x50{left:231.600000pt;}
.xb{left:242.000000pt;}
.x51{left:252.160530pt;}
.x42{left:256.960000pt;}
.x7f{left:263.200091pt;}
.x8{left:265.360000pt;}
.x52{left:269.920000pt;}
.x4b{left:273.440000pt;}
.x7b{left:281.840000pt;}
.x5c{left:284.480000pt;}
.x7{left:287.600000pt;}
.x6a{left:291.920000pt;}
.x84{left:293.520000pt;}
.x22{left:300.000000pt;}
.x19{left:303.200218pt;}
.x63{left:305.280000pt;}
.x2f{left:309.600000pt;}
.x21{left:311.599830pt;}
.x3{left:313.120000pt;}
.x18{left:317.280000pt;}
.x2e{left:321.200469pt;}
.x32{left:322.400000pt;}
.xf{left:326.240211pt;}
.x58{left:330.000000pt;}
.x81{left:331.680517pt;}
.x17{left:333.280000pt;}
.x6{left:335.280000pt;}
.x31{left:336.480000pt;}
.x1d{left:339.040000pt;}
.x12{left:340.880000pt;}
.x3f{left:343.440000pt;}
.x1f{left:344.720000pt;}
.x3c{left:346.000000pt;}
.x2c{left:349.040000pt;}
.x16{left:350.480000pt;}
.x30{left:352.160187pt;}
.x5{left:353.120000pt;}
.x10{left:354.080000pt;}
.x35{left:356.640000pt;}
.x1e{left:358.160000pt;}
.x9{left:359.600000pt;}
.x11{left:363.520000pt;}
.x25{left:366.160000pt;}
.x15{left:368.960000pt;}
.x36{left:370.400000pt;}
.xa{left:372.240000pt;}
.x2a{left:373.280000pt;}
.x56{left:374.240000pt;}
.x38{left:375.680000pt;}
.x27{left:377.840000pt;}
.x64{left:379.120000pt;}
.x14{left:382.480000pt;}
.x3b{left:385.360000pt;}
.x78{left:388.480000pt;}
.x24{left:390.800000pt;}
.x4{left:396.880000pt;}
.x26{left:401.200000pt;}
.x82{left:406.161352pt;}
.x39{left:407.839767pt;}
.x2b{left:408.800087pt;}
.x23{left:410.240000pt;}
.x73{left:415.760000pt;}
.x46{left:419.280000pt;}
.x3d{left:420.400000pt;}
.x3a{left:429.440000pt;}
.x1c{left:438.160000pt;}
.x37{left:446.000000pt;}
.x20{left:447.520000pt;}
.xe{left:450.560000pt;}
.x1b{left:452.240000pt;}
.x2d{left:456.400163pt;}
.x5f{left:457.760000pt;}
.x34{left:461.840000pt;}
.x1a{left:468.240000pt;}
.x40{left:471.440000pt;}
.x13{left:474.000000pt;}
.x33{left:477.840000pt;}
.x7e{left:487.120000pt;}
.x72{left:490.960000pt;}
.x57{left:492.320000pt;}
.x79{left:508.560000pt;}
.x83{left:519.840952pt;}
.x71{left:529.040000pt;}
.x60{left:530.880000pt;}
.x41{left:536.640000pt;}
.x4c{left:537.840524pt;}
.x4d{left:555.520000pt;}
.x6f{left:557.120000pt;}
.x74{left:578.880000pt;}
.x53{left:592.640000pt;}
.xd{left:599.840000pt;}
.x61{left:603.200000pt;}
.x49{left:610.240000pt;}
.x28{left:612.720000pt;}
.x29{left:621.520000pt;}
.x7a{left:627.840000pt;}
.xc{left:647.840000pt;}
.x70{left:705.440000pt;}
}




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