
    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_0d418b1b4665c42acca4d109.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_7c7a40f63a349151a3189918.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_d5772931c7844a698e7f2dfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ed704cbae15b9938b2911f49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.707031;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_b1e67d341162174e931eedda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e232e2adb4b2b888af5c5fa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-29.880000px;}
.v3{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.886840px;}
.ls1e{letter-spacing:-1.749600px;}
.ls1f{letter-spacing:-1.733400px;}
.ls96{letter-spacing:-1.431000px;}
.lsc5{letter-spacing:-1.215000px;}
.lsa4{letter-spacing:-1.166400px;}
.ls8e{letter-spacing:-1.139400px;}
.ls97{letter-spacing:-1.128600px;}
.ls94{letter-spacing:-1.107000px;}
.ls92{letter-spacing:-1.090800px;}
.ls98{letter-spacing:-1.085400px;}
.ls95{letter-spacing:-1.080000px;}
.ls93{letter-spacing:-1.074600px;}
.ls73{letter-spacing:-1.073844px;}
.ls91{letter-spacing:-1.069200px;}
.ls61{letter-spacing:-1.067256px;}
.ls90{letter-spacing:-1.063800px;}
.ls25{letter-spacing:-1.060668px;}
.lsbf{letter-spacing:-1.058400px;}
.ls43{letter-spacing:-1.054080px;}
.lsca{letter-spacing:-1.053000px;}
.ls8d{letter-spacing:-1.047600px;}
.ls27{letter-spacing:-1.047492px;}
.lsae{letter-spacing:-1.042200px;}
.ls66{letter-spacing:-1.040904px;}
.ls5e{letter-spacing:-1.034316px;}
.lsa5{letter-spacing:-1.031400px;}
.ls62{letter-spacing:-1.027728px;}
.lsaf{letter-spacing:-1.026000px;}
.ls24{letter-spacing:-1.021140px;}
.lsc6{letter-spacing:-1.020600px;}
.lscc{letter-spacing:-1.015200px;}
.ls46{letter-spacing:-1.014552px;}
.lsa6{letter-spacing:-1.009800px;}
.ls44{letter-spacing:-1.007964px;}
.lsc9{letter-spacing:-1.004400px;}
.lsbe{letter-spacing:-0.999000px;}
.ls72{letter-spacing:-0.994788px;}
.ls26{letter-spacing:-0.981612px;}
.ls6b{letter-spacing:-0.961848px;}
.lsc7{letter-spacing:-0.853200px;}
.lsc0{letter-spacing:-0.777600px;}
.lsb2{letter-spacing:-0.750600px;}
.lsb0{letter-spacing:-0.739800px;}
.ls70{letter-spacing:-0.704916px;}
.ls23{letter-spacing:-0.698328px;}
.lsa8{letter-spacing:-0.696600px;}
.ls6e{letter-spacing:-0.691740px;}
.lsb4{letter-spacing:-0.691200px;}
.lsad{letter-spacing:-0.685800px;}
.ls65{letter-spacing:-0.685152px;}
.lsb3{letter-spacing:-0.680400px;}
.ls22{letter-spacing:-0.678564px;}
.lsa9{letter-spacing:-0.675000px;}
.ls6d{letter-spacing:-0.671976px;}
.ls8c{letter-spacing:-0.669600px;}
.ls64{letter-spacing:-0.665388px;}
.lsb1{letter-spacing:-0.664200px;}
.ls42{letter-spacing:-0.658800px;}
.lsaa{letter-spacing:-0.653400px;}
.ls71{letter-spacing:-0.652212px;}
.lsac{letter-spacing:-0.648000px;}
.ls5b{letter-spacing:-0.645624px;}
.ls8b{letter-spacing:-0.642600px;}
.ls5f{letter-spacing:-0.639036px;}
.ls77{letter-spacing:-0.632448px;}
.ls8a{letter-spacing:-0.631800px;}
.ls9b{letter-spacing:-0.625860px;}
.ls5c{letter-spacing:-0.619272px;}
.ls5d{letter-spacing:-0.592920px;}
.ls9c{letter-spacing:-0.176904px;}
.lscb{letter-spacing:-0.118800px;}
.lsc8{letter-spacing:-0.113400px;}
.ls53{letter-spacing:-0.091800px;}
.lsc3{letter-spacing:-0.086400px;}
.lsa7{letter-spacing:-0.081000px;}
.ls67{letter-spacing:-0.079056px;}
.ls1a{letter-spacing:-0.075492px;}
.lsd1{letter-spacing:-0.070200px;}
.ls19{letter-spacing:-0.067104px;}
.ls8f{letter-spacing:-0.059400px;}
.ls1b{letter-spacing:-0.058716px;}
.ls4a{letter-spacing:-0.054000px;}
.lsa3{letter-spacing:-0.052704px;}
.ls4b{letter-spacing:-0.048600px;}
.lsab{letter-spacing:-0.037800px;}
.ls54{letter-spacing:-0.032400px;}
.ls56{letter-spacing:-0.027000px;}
.lsd2{letter-spacing:-0.026352px;}
.ls55{letter-spacing:-0.021600px;}
.lsc4{letter-spacing:-0.016200px;}
.ls49{letter-spacing:-0.010800px;}
.ls68{letter-spacing:-0.006588px;}
.ls4c{letter-spacing:-0.005400px;}
.ls18{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.005400px;}
.ls86{letter-spacing:0.006588px;}
.ls40{letter-spacing:0.010800px;}
.ls45{letter-spacing:0.013176px;}
.ls51{letter-spacing:0.016200px;}
.ls15{letter-spacing:0.019764px;}
.ls4{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.026352px;}
.ls3{letter-spacing:0.027000px;}
.lsb{letter-spacing:0.032400px;}
.ls35{letter-spacing:0.032940px;}
.lsc{letter-spacing:0.037800px;}
.ls16{letter-spacing:0.039528px;}
.lsa{letter-spacing:0.043200px;}
.ls21{letter-spacing:0.046116px;}
.ls20{letter-spacing:0.048600px;}
.ls10{letter-spacing:0.052704px;}
.lsf{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.059292px;}
.ls5{letter-spacing:0.059400px;}
.ls1c{letter-spacing:0.064800px;}
.ls57{letter-spacing:0.065880px;}
.lse{letter-spacing:0.070200px;}
.ls17{letter-spacing:0.072468px;}
.ls8{letter-spacing:0.075600px;}
.ls58{letter-spacing:0.079056px;}
.ls9{letter-spacing:0.081000px;}
.ls33{letter-spacing:0.085644px;}
.ls1d{letter-spacing:0.086400px;}
.ls81{letter-spacing:0.090000px;}
.lsd{letter-spacing:0.091800px;}
.ls34{letter-spacing:0.092232px;}
.ls9e{letter-spacing:0.097200px;}
.ls4f{letter-spacing:0.098820px;}
.ls41{letter-spacing:0.102600px;}
.ls36{letter-spacing:0.105408px;}
.ls50{letter-spacing:0.111996px;}
.lsb8{letter-spacing:0.113400px;}
.ls0{letter-spacing:0.114228px;}
.ls99{letter-spacing:0.118584px;}
.lscf{letter-spacing:0.118800px;}
.ls9d{letter-spacing:0.124200px;}
.ls28{letter-spacing:0.126252px;}
.ls3f{letter-spacing:0.135000px;}
.ls2{letter-spacing:0.150300px;}
.ls69{letter-spacing:0.177876px;}
.ls48{letter-spacing:0.178200px;}
.ls31{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.180360px;}
.ls47{letter-spacing:0.181116px;}
.lsce{letter-spacing:0.205200px;}
.ls7a{letter-spacing:0.382104px;}
.ls52{letter-spacing:0.599508px;}
.lsa1{letter-spacing:0.691200px;}
.ls76{letter-spacing:0.724680px;}
.lsba{letter-spacing:0.729000px;}
.ls78{letter-spacing:0.744444px;}
.ls9f{letter-spacing:0.750600px;}
.ls5a{letter-spacing:0.757620px;}
.ls88{letter-spacing:0.761400px;}
.ls89{letter-spacing:0.764208px;}
.ls7{letter-spacing:0.766800px;}
.ls79{letter-spacing:0.770796px;}
.lsa2{letter-spacing:0.772200px;}
.ls82{letter-spacing:0.777384px;}
.ls6a{letter-spacing:0.777600px;}
.ls63{letter-spacing:0.783972px;}
.ls9a{letter-spacing:0.790560px;}
.ls6{letter-spacing:0.793800px;}
.ls75{letter-spacing:0.797148px;}
.lsb9{letter-spacing:0.799200px;}
.lsd0{letter-spacing:0.869616px;}
.ls85{letter-spacing:0.911880px;}
.lsc1{letter-spacing:1.004400px;}
.ls2c{letter-spacing:1.007964px;}
.lsa0{letter-spacing:1.026000px;}
.lsb7{letter-spacing:1.036800px;}
.lsbb{letter-spacing:1.042200px;}
.ls59{letter-spacing:1.047492px;}
.ls3d{letter-spacing:1.047600px;}
.lsb5{letter-spacing:1.053000px;}
.ls4d{letter-spacing:1.067256px;}
.lscd{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.080432px;}
.lsbc{letter-spacing:1.085400px;}
.ls2a{letter-spacing:1.087020px;}
.ls74{letter-spacing:1.093608px;}
.ls39{letter-spacing:1.100196px;}
.ls30{letter-spacing:1.106784px;}
.lsbd{letter-spacing:1.107000px;}
.ls3c{letter-spacing:1.112400px;}
.ls2b{letter-spacing:1.113372px;}
.ls7c{letter-spacing:1.117800px;}
.ls4e{letter-spacing:1.119960px;}
.lsb6{letter-spacing:1.123200px;}
.ls2f{letter-spacing:1.126548px;}
.ls3b{letter-spacing:1.128600px;}
.ls12{letter-spacing:1.133136px;}
.ls7f{letter-spacing:1.134000px;}
.ls80{letter-spacing:1.139400px;}
.ls14{letter-spacing:1.139724px;}
.ls7d{letter-spacing:1.144800px;}
.ls29{letter-spacing:1.146312px;}
.lsc2{letter-spacing:1.150200px;}
.ls2e{letter-spacing:1.152900px;}
.ls87{letter-spacing:1.155600px;}
.ls32{letter-spacing:1.159488px;}
.ls7e{letter-spacing:1.161000px;}
.ls3a{letter-spacing:1.166076px;}
.ls7b{letter-spacing:1.166400px;}
.ls84{letter-spacing:1.170000px;}
.ls83{letter-spacing:1.172664px;}
.ls6f{letter-spacing:1.179252px;}
.ls2d{letter-spacing:1.185840px;}
.ls60{letter-spacing:1.199016px;}
.ls6c{letter-spacing:1.212192px;}
.ls37{letter-spacing:1.258308px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws121{word-spacing:-65.880000px;}
.ws255{word-spacing:-54.000000px;}
.ws36{word-spacing:-17.728308px;}
.ws35{word-spacing:-17.576784px;}
.ws72{word-spacing:-17.550432px;}
.ws71{word-spacing:-17.537256px;}
.ws93{word-spacing:-17.517492px;}
.ws169{word-spacing:-16.647876px;}
.ws16a{word-spacing:-16.470000px;}
.ws209{word-spacing:-13.516200px;}
.ws254{word-spacing:-13.429800px;}
.ws37{word-spacing:-10.711116px;}
.ws1c1{word-spacing:-10.353096px;}
.ws38{word-spacing:-9.000000px;}
.ws262{word-spacing:-1.679400px;}
.ws18c{word-spacing:-1.396656px;}
.ws23b{word-spacing:-1.339200px;}
.ws230{word-spacing:-1.317600px;}
.ws261{word-spacing:-1.312200px;}
.ws22f{word-spacing:-1.306800px;}
.ws21c{word-spacing:-1.285200px;}
.ws18b{word-spacing:-1.054080px;}
.ws115{word-spacing:-1.040904px;}
.ws216{word-spacing:-0.988200px;}
.ws20e{word-spacing:-0.977400px;}
.ws23a{word-spacing:-0.972000px;}
.ws20b{word-spacing:-0.961200px;}
.ws21b{word-spacing:-0.945000px;}
.wsba{word-spacing:-0.751032px;}
.ws74{word-spacing:-0.737856px;}
.ws76{word-spacing:-0.704916px;}
.ws75{word-spacing:-0.698328px;}
.ws145{word-spacing:-0.691740px;}
.ws13d{word-spacing:-0.685152px;}
.ws173{word-spacing:-0.678564px;}
.ws77{word-spacing:-0.665388px;}
.ws129{word-spacing:-0.658800px;}
.ws1cb{word-spacing:-0.652212px;}
.ws213{word-spacing:-0.594000px;}
.ws73{word-spacing:-0.329400px;}
.ws267{word-spacing:-0.316224px;}
.ws1c8{word-spacing:-0.296460px;}
.ws184{word-spacing:-0.283284px;}
.ws193{word-spacing:-0.276696px;}
.ws128{word-spacing:-0.270108px;}
.ws15b{word-spacing:-0.232200px;}
.ws8f{word-spacing:-0.221400px;}
.ws208{word-spacing:-0.210600px;}
.ws212{word-spacing:-0.205200px;}
.ws1a2{word-spacing:-0.189000px;}
.ws2{word-spacing:-0.060120px;}
.wsf3{word-spacing:-0.039528px;}
.ws39{word-spacing:-0.036072px;}
.ws6{word-spacing:-0.033552px;}
.ws4{word-spacing:-0.025164px;}
.ws0{word-spacing:-0.024048px;}
.ws5{word-spacing:-0.016776px;}
.wse9{word-spacing:-0.006588px;}
.ws1{word-spacing:0.000000px;}
.ws42{word-spacing:0.006588px;}
.wsd0{word-spacing:0.013176px;}
.ws3{word-spacing:0.019764px;}
.ws9a{word-spacing:0.026352px;}
.wsd6{word-spacing:0.032940px;}
.ws2e{word-spacing:0.039528px;}
.ws6a{word-spacing:0.043200px;}
.wsdb{word-spacing:0.046116px;}
.wsa3{word-spacing:0.052704px;}
.ws240{word-spacing:0.054000px;}
.ws12b{word-spacing:0.059292px;}
.ws228{word-spacing:0.064800px;}
.ws51{word-spacing:0.065880px;}
.ws11c{word-spacing:0.072468px;}
.ws6c{word-spacing:0.075600px;}
.ws1e5{word-spacing:0.081000px;}
.ws10a{word-spacing:0.086400px;}
.ws6d{word-spacing:0.091800px;}
.ws8a{word-spacing:0.097200px;}
.ws1e{word-spacing:0.102600px;}
.ws1f{word-spacing:0.108000px;}
.ws21{word-spacing:0.113400px;}
.ws263{word-spacing:0.118584px;}
.wsdf{word-spacing:0.118800px;}
.ws13f{word-spacing:0.124200px;}
.ws20{word-spacing:0.129600px;}
.ws24{word-spacing:0.135000px;}
.ws8d{word-spacing:0.140400px;}
.ws92{word-spacing:0.145800px;}
.ws70{word-spacing:0.151200px;}
.ws67{word-spacing:0.156600px;}
.ws8c{word-spacing:0.162000px;}
.ws6b{word-spacing:0.167400px;}
.ws63{word-spacing:0.172800px;}
.ws68{word-spacing:0.178200px;}
.ws69{word-spacing:0.183600px;}
.ws64{word-spacing:0.189000px;}
.ws23e{word-spacing:0.194400px;}
.ws8b{word-spacing:0.199800px;}
.ws8e{word-spacing:0.205200px;}
.ws62{word-spacing:0.210600px;}
.ws1f1{word-spacing:0.216000px;}
.ws66{word-spacing:0.226800px;}
.ws65{word-spacing:0.232200px;}
.ws1ff{word-spacing:0.237600px;}
.ws237{word-spacing:0.253800px;}
.ws1ed{word-spacing:0.259200px;}
.ws1e9{word-spacing:0.264600px;}
.ws89{word-spacing:0.270000px;}
.ws24d{word-spacing:0.297000px;}
.ws246{word-spacing:0.313200px;}
.wsfc{word-spacing:0.335988px;}
.ws56{word-spacing:0.342576px;}
.ws54{word-spacing:0.355752px;}
.ws100{word-spacing:0.362340px;}
.wsfd{word-spacing:0.368928px;}
.ws10b{word-spacing:0.375516px;}
.ws119{word-spacing:0.382104px;}
.ws57{word-spacing:0.388692px;}
.wsc3{word-spacing:0.395280px;}
.ws58{word-spacing:0.401868px;}
.ws55{word-spacing:0.415044px;}
.ws123{word-spacing:0.421632px;}
.ws53{word-spacing:0.428220px;}
.ws1ee{word-spacing:0.480600px;}
.ws91{word-spacing:0.486000px;}
.ws235{word-spacing:0.491400px;}
.ws1f8{word-spacing:0.496800px;}
.ws203{word-spacing:0.502200px;}
.ws1f7{word-spacing:0.507600px;}
.ws265{word-spacing:0.658800px;}
.ws1c5{word-spacing:0.718092px;}
.ws141{word-spacing:0.724680px;}
.ws122{word-spacing:0.731268px;}
.ws133{word-spacing:0.737856px;}
.ws15c{word-spacing:0.744444px;}
.wsbc{word-spacing:0.751032px;}
.ws11f{word-spacing:0.757620px;}
.ws16e{word-spacing:0.764208px;}
.wsb1{word-spacing:0.777384px;}
.ws13b{word-spacing:0.783972px;}
.ws16f{word-spacing:0.790560px;}
.ws120{word-spacing:0.797148px;}
.wsd8{word-spacing:0.816912px;}
.ws157{word-spacing:0.820800px;}
.ws1f6{word-spacing:0.826200px;}
.ws218{word-spacing:0.831600px;}
.ws25c{word-spacing:0.837000px;}
.ws90{word-spacing:0.842400px;}
.ws109{word-spacing:0.847800px;}
.ws19d{word-spacing:0.853200px;}
.ws19c{word-spacing:0.858600px;}
.ws243{word-spacing:0.864000px;}
.ws210{word-spacing:0.869400px;}
.ws1f5{word-spacing:0.880200px;}
.ws1f4{word-spacing:0.896400px;}
.ws13e{word-spacing:0.901800px;}
.ws24a{word-spacing:1.015200px;}
.ws96{word-spacing:1.040904px;}
.ws84{word-spacing:1.087020px;}
.wsbb{word-spacing:1.093608px;}
.wsb2{word-spacing:1.100196px;}
.ws81{word-spacing:1.106784px;}
.ws132{word-spacing:1.113372px;}
.wsb3{word-spacing:1.119960px;}
.ws82{word-spacing:1.126548px;}
.ws144{word-spacing:1.133136px;}
.ws140{word-spacing:1.139724px;}
.wsf6{word-spacing:1.146312px;}
.ws220{word-spacing:1.177200px;}
.ws1fb{word-spacing:1.182600px;}
.ws1eb{word-spacing:1.188000px;}
.ws156{word-spacing:1.193400px;}
.ws167{word-spacing:1.198800px;}
.ws108{word-spacing:1.204200px;}
.ws1fa{word-spacing:1.215000px;}
.ws1fe{word-spacing:1.225800px;}
.ws1f9{word-spacing:1.231200px;}
.ws1f3{word-spacing:1.350000px;}
.ws83{word-spacing:1.416420px;}
.ws95{word-spacing:1.429596px;}
.wsd5{word-spacing:1.455948px;}
.ws1c4{word-spacing:1.462536px;}
.ws176{word-spacing:1.469124px;}
.ws12e{word-spacing:1.475712px;}
.ws40{word-spacing:1.482300px;}
.ws30{word-spacing:1.488888px;}
.ws164{word-spacing:1.495476px;}
.wsab{word-spacing:1.502064px;}
.ws2f{word-spacing:1.508652px;}
.wsaa{word-spacing:1.515240px;}
.ws21d{word-spacing:1.528200px;}
.ws21e{word-spacing:1.539000px;}
.ws219{word-spacing:1.544400px;}
.ws199{word-spacing:1.555200px;}
.ws23f{word-spacing:1.560600px;}
.ws20a{word-spacing:1.566000px;}
.ws1ea{word-spacing:1.571400px;}
.ws198{word-spacing:1.582200px;}
.ws1db{word-spacing:1.603800px;}
.ws253{word-spacing:1.620000px;}
.ws1dc{word-spacing:1.641600px;}
.ws1d6{word-spacing:1.791936px;}
.ws7f{word-spacing:1.798524px;}
.ws130{word-spacing:1.805112px;}
.ws94{word-spacing:1.818288px;}
.ws139{word-spacing:1.824876px;}
.ws1b1{word-spacing:1.831464px;}
.wsc0{word-spacing:1.838052px;}
.wsd4{word-spacing:1.844640px;}
.wsff{word-spacing:1.851228px;}
.wsc7{word-spacing:1.857816px;}
.ws1a4{word-spacing:1.864404px;}
.ws1d3{word-spacing:1.870992px;}
.wsbf{word-spacing:1.877580px;}
.ws252{word-spacing:1.900800px;}
.ws18{word-spacing:1.911600px;}
.ws19{word-spacing:1.922400px;}
.ws197{word-spacing:1.927800px;}
.ws60{word-spacing:1.933200px;}
.ws1e8{word-spacing:1.938600px;}
.ws200{word-spacing:1.944000px;}
.ws61{word-spacing:1.949400px;}
.ws1b3{word-spacing:2.147688px;}
.ws189{word-spacing:2.160864px;}
.ws1b4{word-spacing:2.167452px;}
.ws14b{word-spacing:2.174040px;}
.ws17b{word-spacing:2.180628px;}
.ws29{word-spacing:2.187216px;}
.wse4{word-spacing:2.193804px;}
.wsed{word-spacing:2.200392px;}
.wse3{word-spacing:2.206980px;}
.wseb{word-spacing:2.213568px;}
.ws25d{word-spacing:2.219400px;}
.wscd{word-spacing:2.220156px;}
.wsb5{word-spacing:2.226744px;}
.ws159{word-spacing:2.246400px;}
.wsa{word-spacing:2.268000px;}
.ws153{word-spacing:2.273400px;}
.ws8{word-spacing:2.278800px;}
.ws9{word-spacing:2.284200px;}
.ws158{word-spacing:2.289600px;}
.wsb{word-spacing:2.295000px;}
.ws152{word-spacing:2.300400px;}
.ws15a{word-spacing:2.305800px;}
.ws7{word-spacing:2.311200px;}
.ws1e3{word-spacing:2.332800px;}
.ws188{word-spacing:2.477088px;}
.ws26a{word-spacing:2.510028px;}
.wsc1{word-spacing:2.516616px;}
.ws146{word-spacing:2.523204px;}
.wsde{word-spacing:2.529792px;}
.ws1c9{word-spacing:2.536380px;}
.wsb4{word-spacing:2.542968px;}
.ws31{word-spacing:2.549556px;}
.wsdd{word-spacing:2.556144px;}
.ws134{word-spacing:2.562732px;}
.wsee{word-spacing:2.569320px;}
.wsea{word-spacing:2.575908px;}
.ws135{word-spacing:2.602260px;}
.ws21f{word-spacing:2.619000px;}
.ws244{word-spacing:2.629800px;}
.ws23d{word-spacing:2.635200px;}
.ws202{word-spacing:2.646000px;}
.ws1e2{word-spacing:2.656800px;}
.ws165{word-spacing:2.667600px;}
.ws166{word-spacing:2.678400px;}
.ws201{word-spacing:2.721600px;}
.ws187{word-spacing:2.878956px;}
.ws147{word-spacing:2.885544px;}
.ws179{word-spacing:2.892132px;}
.wsc6{word-spacing:2.898720px;}
.ws3a{word-spacing:2.905308px;}
.ws9f{word-spacing:2.911896px;}
.ws27{word-spacing:2.918484px;}
.wsa0{word-spacing:2.925072px;}
.ws264{word-spacing:2.931660px;}
.ws103{word-spacing:2.938248px;}
.ws87{word-spacing:2.944836px;}
.ws16d{word-spacing:2.951424px;}
.ws104{word-spacing:2.958012px;}
.wsd{word-spacing:2.986200px;}
.wsc{word-spacing:3.002400px;}
.ws21a{word-spacing:3.007800px;}
.ws1fd{word-spacing:3.013200px;}
.ws20c{word-spacing:3.018600px;}
.ws24c{word-spacing:3.034800px;}
.wse{word-spacing:3.040200px;}
.wse7{word-spacing:3.214944px;}
.ws1ba{word-spacing:3.221532px;}
.ws14d{word-spacing:3.228120px;}
.ws185{word-spacing:3.241296px;}
.wsad{word-spacing:3.247884px;}
.wsa8{word-spacing:3.254472px;}
.ws126{word-spacing:3.261060px;}
.ws86{word-spacing:3.267648px;}
.ws2c{word-spacing:3.274236px;}
.ws97{word-spacing:3.280824px;}
.ws137{word-spacing:3.287412px;}
.ws88{word-spacing:3.294000px;}
.ws1b9{word-spacing:3.300588px;}
.ws4d{word-spacing:3.307176px;}
.ws2d{word-spacing:3.313764px;}
.wsf{word-spacing:3.337200px;}
.ws24b{word-spacing:3.342600px;}
.ws1fc{word-spacing:3.358800px;}
.ws1e4{word-spacing:3.364200px;}
.ws239{word-spacing:3.369600px;}
.ws238{word-spacing:3.375000px;}
.ws248{word-spacing:3.380400px;}
.ws247{word-spacing:3.396600px;}
.ws181{word-spacing:3.597048px;}
.ws151{word-spacing:3.603636px;}
.ws150{word-spacing:3.610224px;}
.ws172{word-spacing:3.616812px;}
.ws15d{word-spacing:3.629988px;}
.ws10c{word-spacing:3.636576px;}
.ws125{word-spacing:3.643164px;}
.wsd7{word-spacing:3.649752px;}
.wsb7{word-spacing:3.656340px;}
.ws1c0{word-spacing:3.662928px;}
.ws127{word-spacing:3.669516px;}
.ws214{word-spacing:3.709800px;}
.ws1df{word-spacing:3.715200px;}
.ws215{word-spacing:3.720600px;}
.ws155{word-spacing:3.731400px;}
.ws1e0{word-spacing:3.736800px;}
.ws1e1{word-spacing:3.742200px;}
.ws245{word-spacing:3.915000px;}
.ws17e{word-spacing:3.939624px;}
.ws1ca{word-spacing:3.946212px;}
.ws118{word-spacing:3.965976px;}
.wsc2{word-spacing:3.972564px;}
.ws180{word-spacing:3.979152px;}
.ws107{word-spacing:3.985740px;}
.wse8{word-spacing:3.992328px;}
.ws116{word-spacing:3.998916px;}
.ws7e{word-spacing:4.005504px;}
.ws7d{word-spacing:4.012092px;}
.wsb6{word-spacing:4.018680px;}
.ws2b{word-spacing:4.025268px;}
.wsf2{word-spacing:4.031856px;}
.ws259{word-spacing:4.050000px;}
.ws1d4{word-spacing:4.058208px;}
.ws25a{word-spacing:4.077000px;}
.ws223{word-spacing:4.082400px;}
.ws154{word-spacing:4.087800px;}
.ws23{word-spacing:4.093200px;}
.ws5f{word-spacing:4.098600px;}
.ws207{word-spacing:4.109400px;}
.ws20f{word-spacing:4.185000px;}
.ws7c{word-spacing:4.308552px;}
.ws1bc{word-spacing:4.321728px;}
.ws32{word-spacing:4.334904px;}
.ws17d{word-spacing:4.341492px;}
.wsa6{word-spacing:4.348080px;}
.wsa2{word-spacing:4.354668px;}
.ws1ae{word-spacing:4.361256px;}
.ws2a{word-spacing:4.367844px;}
.ws13a{word-spacing:4.374432px;}
.ws26{word-spacing:4.381020px;}
.ws143{word-spacing:4.387608px;}
.ws23c{word-spacing:4.422600px;}
.ws241{word-spacing:4.428000px;}
.ws25b{word-spacing:4.433400px;}
.ws22{word-spacing:4.444200px;}
.ws5e{word-spacing:4.449600px;}
.ws242{word-spacing:4.460400px;}
.ws227{word-spacing:4.465800px;}
.ws226{word-spacing:4.476600px;}
.ws206{word-spacing:4.530600px;}
.ws4f{word-spacing:4.697244px;}
.ws117{word-spacing:4.703832px;}
.wsaf{word-spacing:4.710420px;}
.ws25{word-spacing:4.717008px;}
.ws85{word-spacing:4.723596px;}
.ws1ab{word-spacing:4.730184px;}
.ws34{word-spacing:4.736772px;}
.ws13c{word-spacing:4.743360px;}
.ws17f{word-spacing:4.749948px;}
.ws14{word-spacing:4.768200px;}
.ws15{word-spacing:4.773600px;}
.ws19a{word-spacing:4.784400px;}
.ws25f{word-spacing:4.789800px;}
.ws20d{word-spacing:4.800600px;}
.ws19b{word-spacing:4.811400px;}
.ws1f2{word-spacing:4.816800px;}
.ws22e{word-spacing:4.822200px;}
.ws6f{word-spacing:4.827600px;}
.ws249{word-spacing:4.833000px;}
.ws1bb{word-spacing:5.026644px;}
.ws33{word-spacing:5.033232px;}
.ws171{word-spacing:5.052996px;}
.ws44{word-spacing:5.059584px;}
.wsda{word-spacing:5.066172px;}
.ws28{word-spacing:5.072760px;}
.ws80{word-spacing:5.079348px;}
.wsa1{word-spacing:5.085936px;}
.ws9e{word-spacing:5.092524px;}
.ws105{word-spacing:5.099112px;}
.ws18a{word-spacing:5.105700px;}
.wsf4{word-spacing:5.112288px;}
.ws1cc{word-spacing:5.125464px;}
.ws6e{word-spacing:5.146200px;}
.ws1d{word-spacing:5.151600px;}
.ws25e{word-spacing:5.167800px;}
.ws1f0{word-spacing:5.173200px;}
.ws13{word-spacing:5.184000px;}
.ws1ef{word-spacing:5.194800px;}
.wsf7{word-spacing:5.382396px;}
.ws16c{word-spacing:5.395572px;}
.wsf8{word-spacing:5.402160px;}
.ws52{word-spacing:5.421924px;}
.ws11e{word-spacing:5.428512px;}
.ws1a6{word-spacing:5.435100px;}
.ws9d{word-spacing:5.441688px;}
.wsd1{word-spacing:5.448276px;}
.ws49{word-spacing:5.454864px;}
.ws170{word-spacing:5.461452px;}
.ws1a9{word-spacing:5.468040px;}
.ws251{word-spacing:5.529600px;}
.ws1c{word-spacing:5.556600px;}
.ws1c7{word-spacing:5.751324px;}
.ws98{word-spacing:5.784264px;}
.ws4e{word-spacing:5.790852px;}
.wsfe{word-spacing:5.797440px;}
.ws10f{word-spacing:5.804028px;}
.ws1b5{word-spacing:5.810616px;}
.ws1cd{word-spacing:5.817204px;}
.ws17c{word-spacing:5.823792px;}
.ws204{word-spacing:5.896800px;}
.ws19f{word-spacing:5.907600px;}
.ws205{word-spacing:5.929200px;}
.ws250{word-spacing:5.999400px;}
.ws1a8{word-spacing:6.107076px;}
.ws106{word-spacing:6.140016px;}
.wsae{word-spacing:6.146604px;}
.ws1a7{word-spacing:6.153192px;}
.wscc{word-spacing:6.159780px;}
.ws1bd{word-spacing:6.166368px;}
.ws1c6{word-spacing:6.172956px;}
.wscb{word-spacing:6.179544px;}
.ws1ce{word-spacing:6.186132px;}
.ws1bf{word-spacing:6.192720px;}
.ws1be{word-spacing:6.205896px;}
.ws16{word-spacing:6.242400px;}
.ws17{word-spacing:6.258600px;}
.ws22c{word-spacing:6.269400px;}
.ws22d{word-spacing:6.296400px;}
.ws131{word-spacing:6.489180px;}
.wsec{word-spacing:6.495768px;}
.ws1af{word-spacing:6.502356px;}
.wsc5{word-spacing:6.508944px;}
.wsf5{word-spacing:6.515532px;}
.wsf9{word-spacing:6.522120px;}
.ws1b0{word-spacing:6.528708px;}
.wsd3{word-spacing:6.535296px;}
.ws186{word-spacing:6.838344px;}
.ws124{word-spacing:6.858108px;}
.wsce{word-spacing:6.864696px;}
.ws136{word-spacing:6.871284px;}
.wsa9{word-spacing:6.877872px;}
.wsbd{word-spacing:6.884460px;}
.ws138{word-spacing:6.891048px;}
.ws24f{word-spacing:6.955200px;}
.ws232{word-spacing:6.966000px;}
.ws211{word-spacing:6.971400px;}
.ws24e{word-spacing:6.998400px;}
.ws10d{word-spacing:7.187508px;}
.wscf{word-spacing:7.220448px;}
.ws17a{word-spacing:7.227036px;}
.wse0{word-spacing:7.233624px;}
.ws142{word-spacing:7.246800px;}
.ws183{word-spacing:7.253388px;}
.ws1d2{word-spacing:7.266564px;}
.ws22a{word-spacing:7.300800px;}
.ws231{word-spacing:7.317000px;}
.ws258{word-spacing:7.333200px;}
.ws1e7{word-spacing:7.338600px;}
.ws22b{word-spacing:7.371000px;}
.ws256{word-spacing:7.533000px;}
.wsef{word-spacing:7.563024px;}
.wsf0{word-spacing:7.569612px;}
.ws182{word-spacing:7.582788px;}
.wsa7{word-spacing:7.595964px;}
.ws1cf{word-spacing:7.602552px;}
.ws14c{word-spacing:7.609140px;}
.ws149{word-spacing:7.615728px;}
.wsd9{word-spacing:7.622316px;}
.ws15e{word-spacing:7.628904px;}
.ws1d0{word-spacing:7.635492px;}
.ws257{word-spacing:7.689600px;}
.ws1e6{word-spacing:7.695000px;}
.ws1d8{word-spacing:7.918776px;}
.ws1d7{word-spacing:7.931952px;}
.ws175{word-spacing:7.938540px;}
.ws11b{word-spacing:7.945128px;}
.ws102{word-spacing:7.951716px;}
.ws11a{word-spacing:7.958304px;}
.ws112{word-spacing:7.964892px;}
.ws1aa{word-spacing:7.984656px;}
.ws1b8{word-spacing:7.991244px;}
.ws195{word-spacing:8.024400px;}
.ws168{word-spacing:8.035200px;}
.ws196{word-spacing:8.051400px;}
.ws236{word-spacing:8.056800px;}
.ws1ec{word-spacing:8.067600px;}
.wsac{word-spacing:8.287704px;}
.ws174{word-spacing:8.294292px;}
.ws163{word-spacing:8.300880px;}
.ws1ad{word-spacing:8.314056px;}
.ws178{word-spacing:8.320644px;}
.ws12f{word-spacing:8.333820px;}
.ws194{word-spacing:8.429400px;}
.ws1ac{word-spacing:8.623692px;}
.wsbe{word-spacing:8.663220px;}
.ws14a{word-spacing:8.669808px;}
.wsc8{word-spacing:8.676396px;}
.ws162{word-spacing:8.682984px;}
.ws18f{word-spacing:8.689572px;}
.ws15f{word-spacing:8.702748px;}
.ws1dd{word-spacing:8.753400px;}
.ws1de{word-spacing:8.758800px;}
.ws1a1{word-spacing:8.818200px;}
.wse5{word-spacing:9.012384px;}
.wsf1{word-spacing:9.018972px;}
.wse6{word-spacing:9.032148px;}
.wsdc{word-spacing:9.038736px;}
.ws10e{word-spacing:9.051912px;}
.ws9c{word-spacing:9.058500px;}
.ws12c{word-spacing:9.065088px;}
.ws1a5{word-spacing:9.071676px;}
.ws234{word-spacing:9.131400px;}
.ws1d9{word-spacing:9.361548px;}
.ws3f{word-spacing:9.374724px;}
.ws9b{word-spacing:9.401076px;}
.ws12a{word-spacing:9.407664px;}
.ws1da{word-spacing:9.414252px;}
.ws233{word-spacing:9.477000px;}
.ws260{word-spacing:9.487800px;}
.ws3b{word-spacing:9.737064px;}
.ws14f{word-spacing:9.743652px;}
.ws4a{word-spacing:9.750240px;}
.wsb0{word-spacing:9.756828px;}
.ws1d5{word-spacing:9.763416px;}
.ws114{word-spacing:9.770004px;}
.ws221{word-spacing:9.817200px;}
.ws222{word-spacing:9.844200px;}
.ws225{word-spacing:9.865800px;}
.ws1b2{word-spacing:10.053288px;}
.wsfb{word-spacing:10.079640px;}
.ws148{word-spacing:10.086228px;}
.ws101{word-spacing:10.092816px;}
.ws14e{word-spacing:10.119168px;}
.wsfa{word-spacing:10.125756px;}
.ws217{word-spacing:10.211400px;}
.ws224{word-spacing:10.281600px;}
.ws7a{word-spacing:10.448568px;}
.ws12d{word-spacing:10.468332px;}
.ws7b{word-spacing:10.474920px;}
.wsca{word-spacing:10.494684px;}
.wsa5{word-spacing:10.824084px;}
.wsc9{word-spacing:10.843848px;}
.ws78{word-spacing:10.850436px;}
.ws192{word-spacing:10.857024px;}
.ws191{word-spacing:11.179836px;}
.wsa4{word-spacing:11.206188px;}
.ws79{word-spacing:11.370888px;}
.ws5d{word-spacing:11.502648px;}
.ws5c{word-spacing:11.522412px;}
.ws1c3{word-spacing:11.529000px;}
.ws4b{word-spacing:11.542176px;}
.ws1c2{word-spacing:11.548764px;}
.wsc4{word-spacing:11.555352px;}
.ws1b7{word-spacing:11.575116px;}
.ws5a{word-spacing:11.904516px;}
.ws111{word-spacing:11.911104px;}
.ws48{word-spacing:11.924280px;}
.ws16b{word-spacing:11.944044px;}
.ws5b{word-spacing:11.950632px;}
.ws59{word-spacing:11.970396px;}
.ws41{word-spacing:12.247092px;}
.ws99{word-spacing:12.260268px;}
.ws113{word-spacing:12.273444px;}
.ws110{word-spacing:12.286620px;}
.ws1a3{word-spacing:12.293208px;}
.wsd2{word-spacing:12.299796px;}
.ws18d{word-spacing:12.622608px;}
.wsb8{word-spacing:12.642372px;}
.wse1{word-spacing:12.648960px;}
.wse2{word-spacing:12.675312px;}
.ws11d{word-spacing:12.998124px;}
.ws1d1{word-spacing:13.004712px;}
.ws266{word-spacing:13.334112px;}
.ws1b{word-spacing:14.536800px;}
.wsb9{word-spacing:14.803236px;}
.ws1a{word-spacing:14.882400px;}
.ws177{word-spacing:15.152400px;}
.ws50{word-spacing:15.198516px;}
.ws269{word-spacing:15.481800px;}
.ws190{word-spacing:15.514740px;}
.ws268{word-spacing:15.857316px;}
.ws47{word-spacing:15.896844px;}
.ws3c{word-spacing:15.923196px;}
.ws4c{word-spacing:16.595172px;}
.ws160{word-spacing:17.346204px;}
.ws161{word-spacing:17.365968px;}
.ws18e{word-spacing:18.044532px;}
.ws1b6{word-spacing:18.051120px;}
.ws45{word-spacing:19.474128px;}
.ws46{word-spacing:20.218572px;}
.ws3d{word-spacing:20.501856px;}
.ws3e{word-spacing:20.521620px;}
.ws12{word-spacing:22.793400px;}
.ws11{word-spacing:22.825800px;}
.ws10{word-spacing:23.176800px;}
.ws43{word-spacing:26.681400px;}
.ws229{word-spacing:28.150200px;}
.ws19e{word-spacing:95.563800px;}
.ws1a0{word-spacing:155.709000px;}
._12{margin-left:-155.520000px;}
._10{margin-left:-90.358200px;}
._11{margin-left:-88.921800px;}
._2c{margin-left:-77.398200px;}
._15{margin-left:-66.598200px;}
._16{margin-left:-64.438200px;}
._19{margin-left:-49.680000px;}
._13{margin-left:-46.796400px;}
._2d{margin-left:-40.678200px;}
._2b{margin-left:-36.720000px;}
._2f{margin-left:-30.958200px;}
._3f{margin-left:-28.682136px;}
._4{margin-left:-27.346788px;}
._5{margin-left:-19.447776px;}
._f{margin-left:-18.089748px;}
._e{margin-left:-12.583332px;}
._8{margin-left:-10.439388px;}
._b{margin-left:-8.277804px;}
._3b{margin-left:-7.121628px;}
._6{margin-left:-5.909436px;}
._c{margin-left:-4.799088px;}
._2{margin-left:-3.447468px;}
._9{margin-left:-2.303136px;}
._0{margin-left:-1.034064px;}
._1{width:1.004400px;}
._7{width:2.699388px;}
._a{width:4.681800px;}
._25{width:5.761800px;}
._3d{width:7.300800px;}
._3c{width:8.434800px;}
._24{width:9.720000px;}
._d{width:16.556400px;}
._3{width:21.219948px;}
._3e{width:27.853200px;}
._2e{width:55.803600px;}
._26{width:57.601800px;}
._17{width:68.392188px;}
._30{width:78.840000px;}
._36{width:84.240000px;}
._1e{width:91.081800px;}
._37{width:93.960000px;}
._39{width:96.120000px;}
._34{width:99.721404px;}
._23{width:104.760000px;}
._1d{width:105.840000px;}
._1b{width:108.723600px;}
._21{width:111.601800px;}
._31{width:114.841800px;}
._33{width:120.960000px;}
._28{width:124.561800px;}
._1f{width:127.801800px;}
._3a{width:129.600000px;}
._1a{width:155.520000px;}
._1c{width:162.000000px;}
._38{width:169.560000px;}
._32{width:178.200000px;}
._22{width:191.160000px;}
._14{width:195.480000px;}
._20{width:198.363600px;}
._27{width:211.323600px;}
._18{width:212.403600px;}
._2a{width:225.363600px;}
._29{width:264.961800px;}
._35{width:359.283600px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs9{font-size:24.120000px;}
.fsa{font-size:29.880000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.630234px;}
.y67{bottom:20.910225px;}
.y199{bottom:197.760450px;}
.y12e{bottom:202.800450px;}
.y101{bottom:203.250450px;}
.y177{bottom:205.679217px;}
.yb0{bottom:206.415453px;}
.y235{bottom:206.766390px;}
.y2dd{bottom:206.850450px;}
.y312{bottom:206.939550px;}
.y2e{bottom:207.119586px;}
.y159{bottom:207.208245px;}
.y12d{bottom:207.388353px;}
.y1c2{bottom:207.840000px;}
.y198{bottom:209.006229px;}
.yd5{bottom:209.280600px;}
.y1a8{bottom:209.460450px;}
.y60{bottom:209.550450px;}
.y206{bottom:210.180738px;}
.y1ec{bottom:210.181116px;}
.y345{bottom:211.170600px;}
.y2aa{bottom:211.349496px;}
.y80{bottom:211.620600px;}
.y25c{bottom:213.150450px;}
.y371{bottom:215.851251px;}
.y100{bottom:219.450450px;}
.yd4{bottom:219.720450px;}
.y311{bottom:222.869550px;}
.y2dc{bottom:223.050450px;}
.y25b{bottom:223.410450px;}
.y1c1{bottom:224.040000px;}
.y176{bottom:225.118758px;}
.y5f{bottom:225.300450px;}
.yaf{bottom:225.584886px;}
.y1a7{bottom:225.660450px;}
.y2d{bottom:226.200081px;}
.y234{bottom:226.205931px;}
.y158{bottom:226.558848px;}
.y12c{bottom:226.648371px;}
.y344{bottom:227.370600px;}
.y7f{bottom:227.640450px;}
.y197{bottom:228.266247px;}
.y205{bottom:230.251080px;}
.y1eb{bottom:230.251458px;}
.y2a9{bottom:231.240315px;}
.y370{bottom:235.742070px;}
.yd3{bottom:238.709775px;}
.y310{bottom:238.890000px;}
.y2db{bottom:239.250450px;}
.y1c0{bottom:240.240000px;}
.y5e{bottom:240.960600px;}
.yff{bottom:241.680450px;}
.y1a6{bottom:241.860450px;}
.y343{bottom:243.570450px;}
.y7e{bottom:243.840450px;}
.y175{bottom:244.558299px;}
.yae{bottom:244.754319px;}
.y2c{bottom:245.280576px;}
.y284{bottom:245.550801px;}
.y233{bottom:245.645472px;}
.y157{bottom:245.909451px;}
.y12b{bottom:245.998974px;}
.y25a{bottom:246.721269px;}
.y196{bottom:247.526265px;}
.y204{bottom:250.410360px;}
.y1ea{bottom:250.410738px;}
.y2a8{bottom:251.131134px;}
.yfe{bottom:252.120450px;}
.y30f{bottom:254.820000px;}
.y2da{bottom:255.450450px;}
.y36f{bottom:255.721827px;}
.y1bf{bottom:256.440000px;}
.y5d{bottom:256.620450px;}
.yd2{bottom:257.969793px;}
.y1a5{bottom:258.060450px;}
.y342{bottom:259.770450px;}
.y7d{bottom:259.950450px;}
.y174{bottom:263.818317px;}
.yad{bottom:264.014337px;}
.y2b{bottom:264.270486px;}
.y232{bottom:264.996075px;}
.y12a{bottom:265.258992px;}
.y156{bottom:265.260054px;}
.y283{bottom:265.270629px;}
.y259{bottom:266.430918px;}
.y195{bottom:266.786283px;}
.y203{bottom:270.480702px;}
.y1e9{bottom:270.481080px;}
.y30e{bottom:270.830100px;}
.y2a7{bottom:270.931368px;}
.y2d9{bottom:271.650450px;}
.y5c{bottom:272.280450px;}
.y1be{bottom:272.640000px;}
.y1a4{bottom:274.710405px;}
.y36e{bottom:275.701584px;}
.yfd{bottom:275.881611px;}
.y341{bottom:275.970450px;}
.y7c{bottom:276.060450px;}
.yd1{bottom:277.229811px;}
.y173{bottom:283.078335px;}
.yac{bottom:283.183770px;}
.y2a{bottom:283.350981px;}
.y231{bottom:284.435616px;}
.y129{bottom:284.519010px;}
.y155{bottom:284.610657px;}
.y282{bottom:284.980278px;}
.y194{bottom:286.046301px;}
.y258{bottom:286.231152px;}
.y30d{bottom:286.760100px;}
.y2d8{bottom:287.850450px;}
.y5b{bottom:287.940450px;}
.y1bd{bottom:288.930450px;}
.y1a3{bottom:289.920450px;}
.y202{bottom:290.551044px;}
.y1e8{bottom:290.551422px;}
.y2a6{bottom:290.820540px;}
.y7b{bottom:292.170450px;}
.yfc{bottom:295.411737px;}
.y36d{bottom:295.592403px;}
.yd0{bottom:296.489829px;}
.y1bc{bottom:301.170450px;}
.y172{bottom:302.338353px;}
.yab{bottom:302.353203px;}
.y29{bottom:302.610999px;}
.y30c{bottom:302.780550px;}
.y5a{bottom:303.600450px;}
.y128{bottom:303.779028px;}
.y230{bottom:303.875157px;}
.y154{bottom:303.961260px;}
.y2d7{bottom:304.050450px;}
.y281{bottom:304.689927px;}
.y193{bottom:305.396904px;}
.y257{bottom:305.940801px;}
.y7a{bottom:308.280450px;}
.y340{bottom:308.370450px;}
.y2a5{bottom:310.260081px;}
.y201{bottom:310.710324px;}
.y1e7{bottom:310.710702px;}
.yfb{bottom:314.851278px;}
.y36c{bottom:315.572160px;}
.ycf{bottom:315.749847px;}
.y30b{bottom:318.710550px;}
.y59{bottom:319.260450px;}
.y2d6{bottom:320.250450px;}
.y171{bottom:321.598371px;}
.yaa{bottom:321.613221px;}
.y28{bottom:321.871017px;}
.y127{bottom:323.039046px;}
.y153{bottom:323.311863px;}
.y22f{bottom:323.314698px;}
.y79{bottom:324.390450px;}
.y280{bottom:324.490161px;}
.y33f{bottom:324.570450px;}
.y192{bottom:324.656922px;}
.y256{bottom:325.658838px;}
.y2a4{bottom:328.620837px;}
.y200{bottom:330.780666px;}
.y1e6{bottom:330.781044px;}
.yfa{bottom:334.381404px;}
.y30a{bottom:334.731000px;}
.y58{bottom:335.010450px;}
.yce{bottom:335.098857px;}
.y36b{bottom:335.551917px;}
.y2d5{bottom:336.450450px;}
.y78{bottom:340.590450px;}
.y33e{bottom:340.770450px;}
.ya9{bottom:340.782654px;}
.y170{bottom:340.858389px;}
.y27{bottom:341.131035px;}
.y126{bottom:342.299064px;}
.y152{bottom:342.662466px;}
.y22e{bottom:342.754239px;}
.y191{bottom:343.916940px;}
.y27f{bottom:344.199810px;}
.y255{bottom:345.368487px;}
.y2a3{bottom:348.691179px;}
.y309{bottom:350.661000px;}
.y57{bottom:350.670450px;}
.y1ff{bottom:350.851008px;}
.y1e5{bottom:350.851386px;}
.y2d4{bottom:352.650450px;}
.yf9{bottom:353.911530px;}
.ycd{bottom:354.358875px;}
.y36a{bottom:355.441089px;}
.y77{bottom:356.700450px;}
.y33d{bottom:356.970450px;}
.ya8{bottom:359.952087px;}
.y16f{bottom:360.208992px;}
.y26{bottom:360.391053px;}
.y125{bottom:361.649667px;}
.y151{bottom:362.013069px;}
.y22d{bottom:362.193780px;}
.y190{bottom:363.176958px;}
.y27e{bottom:363.909459px;}
.y254{bottom:365.078136px;}
.y56{bottom:366.330450px;}
.y308{bottom:366.681450px;}
.y2a2{bottom:367.051935px;}
.y2d3{bottom:368.850450px;}
.y1fe{bottom:371.010288px;}
.y1e4{bottom:371.010666px;}
.y76{bottom:372.810450px;}
.y33c{bottom:373.170450px;}
.yf8{bottom:373.351071px;}
.ycc{bottom:373.618893px;}
.y369{bottom:375.420846px;}
.y55{bottom:375.960450px;}
.ya7{bottom:379.212105px;}
.y16e{bottom:379.469010px;}
.y25{bottom:379.651071px;}
.y124{bottom:380.909685px;}
.y150{bottom:381.363672px;}
.y22c{bottom:381.544383px;}
.y18f{bottom:382.436976px;}
.y307{bottom:382.611450px;}
.y27d{bottom:383.619108px;}
.y2a1{bottom:384.781890px;}
.y253{bottom:384.787785px;}
.y2d2{bottom:385.050450px;}
.y75{bottom:388.920450px;}
.y33b{bottom:389.370450px;}
.y1fd{bottom:391.080630px;}
.y1e3{bottom:391.081008px;}
.y54{bottom:391.620450px;}
.ycb{bottom:392.878911px;}
.yf7{bottom:392.881197px;}
.y368{bottom:395.400603px;}
.ya6{bottom:398.381538px;}
.y306{bottom:398.631900px;}
.y16d{bottom:398.729028px;}
.y24{bottom:399.001674px;}
.y74{bottom:399.360600px;}
.y123{bottom:400.169703px;}
.y14f{bottom:400.714275px;}
.y22b{bottom:400.983924px;}
.y2d1{bottom:401.250450px;}
.y18e{bottom:401.696994px;}
.y27c{bottom:403.328757px;}
.y252{bottom:404.588019px;}
.y2a0{bottom:404.672709px;}
.y33a{bottom:405.570450px;}
.y1fc{bottom:411.150972px;}
.y1e2{bottom:411.151350px;}
.yca{bottom:412.138929px;}
.yf6{bottom:412.411323px;}
.y53{bottom:413.310450px;}
.y305{bottom:414.561900px;}
.y367{bottom:415.291422px;}
.y2d0{bottom:417.450450px;}
.ya5{bottom:417.550971px;}
.y23{bottom:417.900999px;}
.y16c{bottom:417.989046px;}
.y86{bottom:418.799700px;}
.y122{bottom:419.429721px;}
.y14e{bottom:420.064878px;}
.y22a{bottom:420.423465px;}
.y18d{bottom:421.047597px;}
.y339{bottom:421.770450px;}
.y27b{bottom:423.038406px;}
.y52{bottom:423.390450px;}
.y251{bottom:424.297668px;}
.y29f{bottom:424.563528px;}
.y304{bottom:430.582350px;}
.y1fb{bottom:431.310252px;}
.y1e1{bottom:431.310630px;}
.yc9{bottom:431.398947px;}
.yf5{bottom:431.850864px;}
.y2cf{bottom:433.650450px;}
.y85{bottom:434.820150px;}
.y366{bottom:435.271179px;}
.y22{bottom:435.630954px;}
.ya4{bottom:436.810989px;}
.y16b{bottom:437.249064px;}
.y338{bottom:437.970450px;}
.y121{bottom:438.689739px;}
.y14d{bottom:439.415481px;}
.y229{bottom:439.863006px;}
.y18c{bottom:440.307615px;}
.y51{bottom:441.211017px;}
.y27a{bottom:442.838640px;}
.y250{bottom:444.007317px;}
.y29e{bottom:444.454347px;}
.y303{bottom:446.512350px;}
.y2ce{bottom:449.850450px;}
.yc8{bottom:450.749550px;}
.y84{bottom:450.840600px;}
.y1fa{bottom:451.380594px;}
.y1e0{bottom:451.380972px;}
.yf4{bottom:451.380990px;}
.y337{bottom:454.170450px;}
.y21{bottom:454.800387px;}
.y365{bottom:455.250936px;}
.ya3{bottom:455.980422px;}
.y16a{bottom:456.509082px;}
.y120{bottom:457.949757px;}
.y14c{bottom:458.766084px;}
.y228{bottom:459.302547px;}
.y18b{bottom:459.567633px;}
.y50{bottom:460.375158px;}
.y302{bottom:462.532800px;}
.y279{bottom:462.548289px;}
.y24f{bottom:463.716966px;}
.y29d{bottom:464.343519px;}
.y2cd{bottom:466.050450px;}
.y83{bottom:467.040600px;}
.yc7{bottom:470.009568px;}
.y336{bottom:470.370450px;}
.yf3{bottom:470.911116px;}
.y1f9{bottom:471.450936px;}
.y1df{bottom:471.451314px;}
.y20{bottom:472.800450px;}
.y364{bottom:475.141755px;}
.ya2{bottom:475.149855px;}
.y169{bottom:475.859685px;}
.y11f{bottom:477.300360px;}
.y14b{bottom:478.116687px;}
.y301{bottom:478.462800px;}
.y227{bottom:478.742088px;}
.y18a{bottom:478.827651px;}
.y82{bottom:479.280600px;}
.y4f{bottom:479.635176px;}
.y2cc{bottom:482.250450px;}
.y278{bottom:482.257938px;}
.y24e{bottom:483.426615px;}
.y29c{bottom:484.232691px;}
.y335{bottom:486.570450px;}
.yc6{bottom:489.269586px;}
.yf2{bottom:490.350657px;}
.y1f{bottom:490.440450px;}
.y1f8{bottom:491.610216px;}
.y1de{bottom:491.610594px;}
.ya1{bottom:494.409873px;}
.y300{bottom:494.483250px;}
.y168{bottom:495.119703px;}
.y363{bottom:495.121512px;}
.y11e{bottom:496.560378px;}
.y14a{bottom:497.016012px;}
.y189{bottom:498.087669px;}
.y226{bottom:498.092691px;}
.y4e{bottom:498.175455px;}
.y2cb{bottom:498.450450px;}
.y277{bottom:501.967587px;}
.y334{bottom:502.770450px;}
.y24d{bottom:503.136264px;}
.y29b{bottom:504.032925px;}
.y1e{bottom:506.640450px;}
.yc5{bottom:508.529604px;}
.yf1{bottom:509.880783px;}
.y2ff{bottom:510.413250px;}
.y1f7{bottom:511.680558px;}
.y1dd{bottom:511.680936px;}
.ya0{bottom:513.579306px;}
.y4d{bottom:513.925716px;}
.y167{bottom:514.379721px;}
.y2ca{bottom:514.650450px;}
.y149{bottom:514.655382px;}
.y362{bottom:515.101269px;}
.y11d{bottom:515.820396px;}
.y188{bottom:517.438272px;}
.y225{bottom:517.532232px;}
.y333{bottom:518.970450px;}
.y276{bottom:521.677236px;}
.y1d{bottom:522.840450px;}
.y24c{bottom:522.936498px;}
.y29a{bottom:523.922097px;}
.y2fe{bottom:526.433700px;}
.yc4{bottom:527.789622px;}
.yf0{bottom:529.410909px;}
.y2c9{bottom:530.850450px;}
.y1f6{bottom:531.750900px;}
.y1dc{bottom:531.751278px;}
.y9f{bottom:532.748739px;}
.y166{bottom:533.639739px;}
.y148{bottom:533.735877px;}
.y361{bottom:534.990441px;}
.y11c{bottom:535.080414px;}
.y332{bottom:535.170450px;}
.y187{bottom:536.698290px;}
.y224{bottom:536.971773px;}
.y1c{bottom:538.770450px;}
.y4c{bottom:540.654879px;}
.y275{bottom:541.386885px;}
.y1a2{bottom:542.280450px;}
.y2fd{bottom:542.363700px;}
.y24b{bottom:542.646147px;}
.y299{bottom:543.811269px;}
.y66{bottom:544.890450px;}
.yc3{bottom:547.049640px;}
.y2c8{bottom:547.050450px;}
.yef{bottom:548.850396px;}
.y147{bottom:551.016201px;}
.y331{bottom:551.370450px;}
.y1f5{bottom:551.910180px;}
.y1db{bottom:551.910558px;}
.y9e{bottom:552.008757px;}
.y165{bottom:552.899757px;}
.y1b{bottom:553.620450px;}
.y11b{bottom:554.340432px;}
.y360{bottom:554.881260px;}
.y186{bottom:555.958308px;}
.y1a1{bottom:555.960450px;}
.y223{bottom:556.411314px;}
.y2fc{bottom:558.384150px;}
.y4b{bottom:558.925050px;}
.y274{bottom:561.187119px;}
.y24a{bottom:562.355796px;}
.y2c7{bottom:563.250450px;}
.y65{bottom:563.430900px;}
.y298{bottom:563.702088px;}
.yc2{bottom:566.400243px;}
.y330{bottom:567.570450px;}
.yee{bottom:568.380522px;}
.y146{bottom:568.746156px;}
.y1a{bottom:569.820450px;}
.y9d{bottom:571.178190px;}
.y1f4{bottom:571.980522px;}
.y1da{bottom:571.980900px;}
.y164{bottom:572.159775px;}
.y11a{bottom:573.600450px;}
.y35f{bottom:574.141278px;}
.y2fb{bottom:574.314150px;}
.y185{bottom:575.218326px;}
.y1a0{bottom:575.760450px;}
.y222{bottom:575.850855px;}
.y4a{bottom:578.005545px;}
.y2c6{bottom:579.450450px;}
.y64{bottom:579.810450px;}
.y273{bottom:580.896768px;}
.y249{bottom:582.065445px;}
.y297{bottom:583.592907px;}
.y32f{bottom:583.770450px;}
.yc1{bottom:585.660261px;}
.y19{bottom:586.020450px;}
.yed{bottom:587.910648px;}
.y145{bottom:588.096759px;}
.y2fa{bottom:590.334600px;}
.y9c{bottom:590.438208px;}
.y163{bottom:591.510378px;}
.y19f{bottom:591.960450px;}
.y1f3{bottom:592.050864px;}
.y1d9{bottom:592.051242px;}
.y119{bottom:592.951053px;}
.y35e{bottom:593.401296px;}
.y184{bottom:594.478344px;}
.y221{bottom:595.290396px;}
.y2c5{bottom:595.650450px;}
.y49{bottom:596.995455px;}
.y63{bottom:597.000450px;}
.y32e{bottom:599.970450px;}
.y272{bottom:600.606417px;}
.y248{bottom:601.775094px;}
.y18{bottom:602.220450px;}
.y296{bottom:603.482079px;}
.yc0{bottom:604.920279px;}
.y2f9{bottom:606.264600px;}
.yec{bottom:607.350189px;}
.y144{bottom:607.536300px;}
.y19e{bottom:608.160450px;}
.y9b{bottom:609.607641px;}
.y162{bottom:610.770396px;}
.y2c4{bottom:611.850450px;}
.y1f2{bottom:612.210144px;}
.y1d8{bottom:612.210522px;}
.y118{bottom:612.211071px;}
.y35d{bottom:612.570729px;}
.y62{bottom:613.560450px;}
.y183{bottom:613.738362px;}
.y220{bottom:614.189721px;}
.y48{bottom:616.075950px;}
.y32d{bottom:616.170450px;}
.y17{bottom:618.420450px;}
.y271{bottom:620.316066px;}
.y247{bottom:621.484743px;}
.y2f8{bottom:622.285050px;}
.y295{bottom:623.282313px;}
.ybf{bottom:624.180297px;}
.y19d{bottom:624.360450px;}
.yeb{bottom:626.880315px;}
.y143{bottom:626.975841px;}
.y2c3{bottom:628.050450px;}
.y9a{bottom:628.777074px;}
.y161{bottom:630.030414px;}
.y117{bottom:631.471089px;}
.y35c{bottom:631.560639px;}
.y21f{bottom:631.919676px;}
.y1f1{bottom:632.280486px;}
.y1d7{bottom:632.280864px;}
.y32c{bottom:632.370450px;}
.y182{bottom:633.088965px;}
.y16{bottom:634.620450px;}
.y47{bottom:635.156445px;}
.y2f7{bottom:638.215050px;}
.y270{bottom:640.025715px;}
.y19c{bottom:640.560450px;}
.y246{bottom:641.284977px;}
.y294{bottom:643.173132px;}
.ybe{bottom:643.440315px;}
.y2c2{bottom:644.250450px;}
.yea{bottom:646.410441px;}
.y142{bottom:646.415382px;}
.y99{bottom:648.037092px;}
.y32b{bottom:648.570450px;}
.y160{bottom:649.290432px;}
.y116{bottom:650.731107px;}
.y15{bottom:650.820450px;}
.y35b{bottom:650.820657px;}
.y21e{bottom:651.270279px;}
.y181{bottom:652.348983px;}
.y1f0{bottom:652.350828px;}
.y1d6{bottom:652.351206px;}
.y46{bottom:654.146355px;}
.y2f6{bottom:654.235500px;}
.y19b{bottom:656.490450px;}
.y26f{bottom:659.735364px;}
.y2c1{bottom:660.450450px;}
.y245{bottom:660.994626px;}
.ybd{bottom:662.700333px;}
.y293{bottom:663.062304px;}
.y32a{bottom:664.770450px;}
.ye9{bottom:665.849982px;}
.y141{bottom:665.854923px;}
.y14{bottom:667.020450px;}
.y98{bottom:667.206525px;}
.y19a{bottom:667.290450px;}
.y15f{bottom:668.550450px;}
.y21d{bottom:669.540450px;}
.y115{bottom:669.991125px;}
.y2f5{bottom:670.165500px;}
.y35a{bottom:670.260198px;}
.y180{bottom:671.609001px;}
.y1ef{bottom:672.510108px;}
.y1d5{bottom:672.510486px;}
.y45{bottom:673.226850px;}
.y1bb{bottom:676.020450px;}
.y2c0{bottom:676.650450px;}
.y26e{bottom:679.535598px;}
.y244{bottom:680.704275px;}
.y329{bottom:680.970450px;}
.ybc{bottom:682.050936px;}
.y292{bottom:682.951476px;}
.y13{bottom:683.220450px;}
.y140{bottom:685.294464px;}
.ye8{bottom:685.380108px;}
.y2f4{bottom:686.185950px;}
.y97{bottom:686.375958px;}
.y21c{bottom:686.643150px;}
.y15e{bottom:687.000000px;}
.y114{bottom:689.251143px;}
.y359{bottom:689.790324px;}
.y17f{bottom:690.869019px;}
.y44{bottom:692.307345px;}
.y1ee{bottom:692.578299px;}
.y1d4{bottom:692.580828px;}
.y2bf{bottom:692.850450px;}
.y383{bottom:695.281503px;}
.y1ba{bottom:696.628164px;}
.y328{bottom:697.170450px;}
.y26d{bottom:699.245247px;}
.y12{bottom:699.420450px;}
.y243{bottom:700.413924px;}
.ybb{bottom:701.310954px;}
.y2f3{bottom:702.115950px;}
.y15d{bottom:702.480450px;}
.y291{bottom:702.842295px;}
.y21b{bottom:703.022700px;}
.y13f{bottom:704.645067px;}
.ye7{bottom:704.910234px;}
.y96{bottom:705.635976px;}
.y113{bottom:708.601746px;}
.y2be{bottom:709.050450px;}
.y358{bottom:709.320450px;}
.y17e{bottom:710.129037px;}
.y43{bottom:711.297255px;}
.y1ed{bottom:712.648641px;}
.y1d3{bottom:712.651170px;}
.y327{bottom:713.370450px;}
.y382{bottom:715.261260px;}
.y11{bottom:715.620450px;}
.y1b9{bottom:716.518983px;}
.y2f2{bottom:718.136400px;}
.y15c{bottom:718.680450px;}
.y26c{bottom:718.954896px;}
.y21a{bottom:719.492700px;}
.y242{bottom:720.123573px;}
.yba{bottom:720.570972px;}
.y290{bottom:722.731467px;}
.y13e{bottom:724.084608px;}
.ye6{bottom:724.349775px;}
.y95{bottom:724.805409px;}
.y2bd{bottom:725.250450px;}
.y112{bottom:727.861764px;}
.y357{bottom:728.213700px;}
.y17d{bottom:729.389055px;}
.y326{bottom:729.570450px;}
.y42{bottom:730.377750px;}
.y10{bottom:731.820450px;}
.y1d2{bottom:732.807921px;}
.y2f1{bottom:734.066400px;}
.y15b{bottom:735.150450px;}
.y381{bottom:735.152079px;}
.y219{bottom:735.872250px;}
.y1b8{bottom:736.408155px;}
.y26b{bottom:738.664545px;}
.yb9{bottom:739.830990px;}
.y241{bottom:739.833222px;}
.y2bc{bottom:741.450450px;}
.y28f{bottom:742.531701px;}
.y13d{bottom:743.524149px;}
.y94{bottom:743.704734px;}
.ye5{bottom:743.879901px;}
.y356{bottom:744.413700px;}
.y325{bottom:745.770450px;}
.y111{bottom:747.121782px;}
.yf{bottom:748.650450px;}
.y17c{bottom:748.739658px;}
.y15a{bottom:748.830450px;}
.y41{bottom:749.458245px;}
.y2f0{bottom:750.086850px;}
.y218{bottom:752.342250px;}
.y1d1{bottom:752.878263px;}
.y380{bottom:755.131836px;}
.y1b7{bottom:756.298974px;}
.y2bb{bottom:757.650450px;}
.y26a{bottom:758.374194px;}
.yb8{bottom:759.091008px;}
.y240{bottom:759.633456px;}
.y355{bottom:760.704150px;}
.y93{bottom:761.073996px;}
.y324{bottom:761.970450px;}
.y28e{bottom:762.420873px;}
.y13c{bottom:762.963690px;}
.ye4{bottom:763.410027px;}
.y2ef{bottom:766.016850px;}
.y110{bottom:766.381800px;}
.y17b{bottom:767.820153px;}
.y40{bottom:768.448155px;}
.y217{bottom:768.721800px;}
.ye{bottom:769.081575px;}
.y1d0{bottom:772.948605px;}
.y2ba{bottom:773.850450px;}
.y37f{bottom:775.111593px;}
.y1b6{bottom:776.189793px;}
.y354{bottom:776.994600px;}
.y269{bottom:778.083843px;}
.y323{bottom:778.170450px;}
.yb7{bottom:778.441611px;}
.y23f{bottom:779.343105px;}
.y2ee{bottom:782.037300px;}
.y28d{bottom:782.311692px;}
.y13b{bottom:782.403231px;}
.ye3{bottom:782.849568px;}
.y216{bottom:785.191800px;}
.y10f{bottom:785.641818px;}
.y17a{bottom:786.090324px;}
.y92{bottom:787.444113px;}
.y3f{bottom:787.528650px;}
.y2b9{bottom:790.050450px;}
.y1cf{bottom:793.109532px;}
.yd{bottom:793.111098px;}
.y353{bottom:793.285050px;}
.y322{bottom:794.370450px;}
.y37e{bottom:795.000765px;}
.y1b5{bottom:795.990027px;}
.yb6{bottom:797.701629px;}
.y268{bottom:797.884077px;}
.y2ed{bottom:797.967300px;}
.y23e{bottom:799.052754px;}
.y215{bottom:801.571350px;}
.y13a{bottom:801.842772px;}
.y28c{bottom:802.200864px;}
.ye2{bottom:802.379694px;}
.y91{bottom:804.544914px;}
.y10e{bottom:804.901836px;}
.y179{bottom:805.620450px;}
.y2b8{bottom:806.250450px;}
.y3e{bottom:806.609145px;}
.y352{bottom:809.575500px;}
.y321{bottom:810.570450px;}
.y1ce{bottom:813.179874px;}
.y2ec{bottom:813.987750px;}
.y37d{bottom:814.980522px;}
.y1b4{bottom:815.879199px;}
.yb5{bottom:816.961647px;}
.yc{bottom:817.050450px;}
.y267{bottom:817.593726px;}
.y81{bottom:817.770450px;}
.y214{bottom:818.041350px;}
.y23d{bottom:818.762403px;}
.y139{bottom:821.193375px;}
.ye1{bottom:821.909820px;}
.y28b{bottom:822.090036px;}
.y2b7{bottom:822.450450px;}
.y10d{bottom:823.712223px;}
.y90{bottom:823.804932px;}
.y178{bottom:824.430600px;}
.y3d{bottom:825.599055px;}
.y351{bottom:825.865950px;}
.y320{bottom:826.770450px;}
.y2eb{bottom:829.917750px;}
.y1cd{bottom:833.250216px;}
.y213{bottom:834.420900px;}
.y37c{bottom:834.960279px;}
.y1b3{bottom:835.768371px;}
.yb4{bottom:836.221665px;}
.y266{bottom:837.303375px;}
.y23c{bottom:838.472052px;}
.y2b6{bottom:838.650450px;}
.yb{bottom:840.180405px;}
.y138{bottom:840.632916px;}
.ye0{bottom:841.349361px;}
.y28a{bottom:841.980855px;}
.y350{bottom:842.065950px;}
.y31f{bottom:842.970450px;}
.y10c{bottom:842.972241px;}
.y73{bottom:842.973231px;}
.y8f{bottom:842.974365px;}
.y3c{bottom:844.679550px;}
.y2ea{bottom:845.938200px;}
.y212{bottom:850.890900px;}
.y1cc{bottom:853.409496px;}
.y2b5{bottom:854.850450px;}
.y37b{bottom:854.851098px;}
.yb3{bottom:855.302160px;}
.y1b2{bottom:855.657543px;}
.y265{bottom:857.013024px;}
.y23b{bottom:858.181701px;}
.y34f{bottom:858.356400px;}
.y31e{bottom:859.170450px;}
.ya{bottom:859.710531px;}
.y137{bottom:860.072457px;}
.ydf{bottom:860.879487px;}
.y10b{bottom:861.601458px;}
.y289{bottom:861.781089px;}
.y2e9{bottom:861.868200px;}
.y72{bottom:862.142664px;}
.y8e{bottom:862.143798px;}
.y3b{bottom:863.760045px;}
.y211{bottom:867.270450px;}
.y2b4{bottom:871.050450px;}
.yb2{bottom:873.302223px;}
.y1cb{bottom:873.479838px;}
.y34e{bottom:874.646850px;}
.y37a{bottom:874.830855px;}
.y31d{bottom:875.370450px;}
.y1b1{bottom:875.546715px;}
.y264{bottom:876.722673px;}
.y2e8{bottom:877.888650px;}
.y23a{bottom:877.981935px;}
.y136{bottom:879.511998px;}
.y9{bottom:879.780873px;}
.y10a{bottom:880.230675px;}
.yde{bottom:880.409613px;}
.y288{bottom:881.220630px;}
.y71{bottom:881.402682px;}
.y8d{bottom:881.403816px;}
.y3a{bottom:882.749955px;}
.y210{bottom:883.740450px;}
.y2b3{bottom:887.250450px;}
.y34d{bottom:890.937300px;}
.y31c{bottom:891.570450px;}
.y1ca{bottom:893.550180px;}
.y2e7{bottom:893.818650px;}
.y379{bottom:894.810612px;}
.y1b0{bottom:895.437534px;}
.y263{bottom:896.432322px;}
.y239{bottom:897.691584px;}
.y135{bottom:898.951539px;}
.y109{bottom:899.490693px;}
.y287{bottom:899.581386px;}
.ydd{bottom:899.849154px;}
.y20f{bottom:900.210450px;}
.yb1{bottom:900.392079px;}
.y70{bottom:900.572115px;}
.y8c{bottom:900.573249px;}
.y39{bottom:901.828740px;}
.y2b2{bottom:903.450450px;}
.y8{bottom:906.150990px;}
.y34c{bottom:907.227750px;}
.y31b{bottom:907.770450px;}
.y2e6{bottom:909.839100px;}
.y1c9{bottom:913.709460px;}
.y378{bottom:914.701431px;}
.y1af{bottom:915.237768px;}
.y262{bottom:916.232556px;}
.y238{bottom:917.401233px;}
.y7{bottom:918.030801px;}
.y134{bottom:918.391080px;}
.y108{bottom:918.750711px;}
.ydc{bottom:919.199757px;}
.y2b1{bottom:919.650450px;}
.y286{bottom:919.651728px;}
.y6f{bottom:919.741548px;}
.y8b{bottom:919.742682px;}
.y38{bottom:920.909235px;}
.y20e{bottom:922.980450px;}
.y34b{bottom:923.518200px;}
.y31a{bottom:923.970450px;}
.y2e5{bottom:925.769100px;}
.y1c8{bottom:933.779802px;}
.y377{bottom:934.681188px;}
.y1ae{bottom:935.128587px;}
.y6{bottom:935.311125px;}
.y2b0{bottom:935.850450px;}
.y261{bottom:935.942205px;}
.y285{bottom:936.932052px;}
.y237{bottom:937.110882px;}
.y20d{bottom:937.560450px;}
.y133{bottom:937.741683px;}
.y107{bottom:938.101314px;}
.ydb{bottom:938.550360px;}
.y6e{bottom:939.001566px;}
.y8a{bottom:939.002700px;}
.y34a{bottom:939.718200px;}
.y37{bottom:939.899145px;}
.y319{bottom:940.170450px;}
.y2e4{bottom:941.789550px;}
.y2af{bottom:952.050450px;}
.y1c7{bottom:953.850144px;}
.y376{bottom:954.660945px;}
.y1ad{bottom:955.017759px;}
.y260{bottom:955.651854px;}
.y349{bottom:956.008650px;}
.y20c{bottom:956.370000px;}
.y318{bottom:956.370450px;}
.y236{bottom:956.820531px;}
.y132{bottom:957.181224px;}
.y106{bottom:957.361332px;}
.y2e3{bottom:957.719550px;}
.yda{bottom:957.810378px;}
.y6d{bottom:958.170999px;}
.y89{bottom:958.172133px;}
.y36{bottom:958.979640px;}
.y5{bottom:962.850612px;}
.y2ae{bottom:968.250450px;}
.y348{bottom:972.299100px;}
.y317{bottom:972.570450px;}
.y20b{bottom:973.289550px;}
.y2e2{bottom:973.740000px;}
.y1c6{bottom:974.009424px;}
.y375{bottom:974.550117px;}
.y1ac{bottom:974.908578px;}
.y25f{bottom:975.361503px;}
.y131{bottom:976.620765px;}
.y105{bottom:976.621350px;}
.yd9{bottom:977.070396px;}
.y6c{bottom:977.340432px;}
.y88{bottom:977.341566px;}
.y35{bottom:978.060135px;}
.y4{bottom:980.941260px;}
.y2ad{bottom:984.450450px;}
.y347{bottom:988.589550px;}
.y316{bottom:988.770450px;}
.y20a{bottom:989.399100px;}
.y2e1{bottom:989.670000px;}
.y1c5{bottom:994.079766px;}
.y374{bottom:994.529874px;}
.y1ab{bottom:994.799397px;}
.y25e{bottom:995.071152px;}
.y104{bottom:995.881368px;}
.y130{bottom:996.060306px;}
.yd8{bottom:996.330414px;}
.y6b{bottom:996.601017px;}
.y87{bottom:996.601584px;}
.y34{bottom:997.050045px;}
.y2ac{bottom:1000.650450px;}
.y3{bottom:1003.620450px;}
.y346{bottom:1004.880000px;}
.y315{bottom:1004.970450px;}
.y209{bottom:1005.419550px;}
.y2e0{bottom:1005.690450px;}
.y1c4{bottom:1014.150108px;}
.y373{bottom:1014.509631px;}
.y1aa{bottom:1014.690216px;}
.y25d{bottom:1014.780801px;}
.y103{bottom:1015.320909px;}
.y12f{bottom:1015.499847px;}
.yd7{bottom:1015.590432px;}
.y6a{bottom:1015.771017px;}
.y33{bottom:1016.130540px;}
.y2ab{bottom:1017.121080px;}
.y2{bottom:1020.630576px;}
.y314{bottom:1021.170450px;}
.y208{bottom:1021.440000px;}
.y2df{bottom:1021.620450px;}
.y1c3{bottom:1034.220450px;}
.y372{bottom:1034.400450px;}
.y1a9{bottom:1034.490450px;}
.y102{bottom:1034.760450px;}
.yd6{bottom:1034.850450px;}
.y69{bottom:1034.940450px;}
.y32{bottom:1035.120450px;}
.y1{bottom:1037.100450px;}
.y313{bottom:1037.370450px;}
.y207{bottom:1037.460450px;}
.y2de{bottom:1037.550450px;}
.y61{bottom:1046.280450px;}
.y30{bottom:1074.630459px;}
.y31{bottom:1091.820270px;}
.y2f{bottom:1091.910450px;}
.hd{height:15.011719px;}
.hc{height:30.023438px;}
.h15{height:35.127422px;}
.h14{height:39.931172px;}
.h7{height:41.743477px;}
.h6{height:45.035156px;}
.h9{height:45.742852px;}
.hf{height:46.300781px;}
.h2{height:50.139141px;}
.h1{height:51.548203px;}
.h3{height:54.942891px;}
.h17{height:54.951495px;}
.h16{height:54.953007px;}
.h4{height:56.486953px;}
.he{height:60.046875px;}
.h19{height:64.966706px;}
.h18{height:64.973870px;}
.h11{height:65.005154px;}
.hb{height:65.005754px;}
.h10{height:65.007422px;}
.h13{height:65.007638px;}
.h12{height:65.013794px;}
.h8{height:65.014262px;}
.ha{height:65.028590px;}
.h5{height:71.920547px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:182.880000px;}
.x22{left:184.950000px;}
.xd{left:188.010000px;}
.x1d{left:197.550450px;}
.xe{left:200.699100px;}
.x2{left:204.210000px;}
.x5{left:209.159415px;}
.x4{left:216.090000px;}
.x29{left:222.839217px;}
.x7{left:225.450000px;}
.x1e{left:249.480900px;}
.x6{left:251.460099px;}
.x16{left:253.350189px;}
.x1f{left:261.451350px;}
.x19{left:269.549784px;}
.x2a{left:298.709919px;}
.xf{left:323.190000px;}
.x3{left:328.049577px;}
.x28{left:334.530522px;}
.x20{left:335.971350px;}
.x24{left:343.350504px;}
.xc{left:344.429334px;}
.x15{left:365.309955px;}
.x17{left:370.801053px;}
.x26{left:384.662205px;}
.x8{left:407.970252px;}
.x25{left:413.460000px;}
.x27{left:414.540000px;}
.x2b{left:423.629928px;}
.x10{left:450.720000px;}
.x13{left:452.880000px;}
.xa{left:477.000000px;}
.xb{left:498.329955px;}
.x9{left:510.300000px;}
.x23{left:638.820000px;}
.x21{left:649.981350px;}
.x14{left:665.460000px;}
.x18{left:698.850000px;}
.x12{left:700.289253px;}
.x1b{left:701.640000px;}
.x1c{left:703.800000px;}
.x11{left:722.879343px;}
.x1a{left:724.860000px;}
@media print{
.v2{vertical-align:-26.560000pt;}
.v3{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.566080pt;}
.ls1e{letter-spacing:-1.555200pt;}
.ls1f{letter-spacing:-1.540800pt;}
.ls96{letter-spacing:-1.272000pt;}
.lsc5{letter-spacing:-1.080000pt;}
.lsa4{letter-spacing:-1.036800pt;}
.ls8e{letter-spacing:-1.012800pt;}
.ls97{letter-spacing:-1.003200pt;}
.ls94{letter-spacing:-0.984000pt;}
.ls92{letter-spacing:-0.969600pt;}
.ls98{letter-spacing:-0.964800pt;}
.ls95{letter-spacing:-0.960000pt;}
.ls93{letter-spacing:-0.955200pt;}
.ls73{letter-spacing:-0.954528pt;}
.ls91{letter-spacing:-0.950400pt;}
.ls61{letter-spacing:-0.948672pt;}
.ls90{letter-spacing:-0.945600pt;}
.ls25{letter-spacing:-0.942816pt;}
.lsbf{letter-spacing:-0.940800pt;}
.ls43{letter-spacing:-0.936960pt;}
.lsca{letter-spacing:-0.936000pt;}
.ls8d{letter-spacing:-0.931200pt;}
.ls27{letter-spacing:-0.931104pt;}
.lsae{letter-spacing:-0.926400pt;}
.ls66{letter-spacing:-0.925248pt;}
.ls5e{letter-spacing:-0.919392pt;}
.lsa5{letter-spacing:-0.916800pt;}
.ls62{letter-spacing:-0.913536pt;}
.lsaf{letter-spacing:-0.912000pt;}
.ls24{letter-spacing:-0.907680pt;}
.lsc6{letter-spacing:-0.907200pt;}
.lscc{letter-spacing:-0.902400pt;}
.ls46{letter-spacing:-0.901824pt;}
.lsa6{letter-spacing:-0.897600pt;}
.ls44{letter-spacing:-0.895968pt;}
.lsc9{letter-spacing:-0.892800pt;}
.lsbe{letter-spacing:-0.888000pt;}
.ls72{letter-spacing:-0.884256pt;}
.ls26{letter-spacing:-0.872544pt;}
.ls6b{letter-spacing:-0.854976pt;}
.lsc7{letter-spacing:-0.758400pt;}
.lsc0{letter-spacing:-0.691200pt;}
.lsb2{letter-spacing:-0.667200pt;}
.lsb0{letter-spacing:-0.657600pt;}
.ls70{letter-spacing:-0.626592pt;}
.ls23{letter-spacing:-0.620736pt;}
.lsa8{letter-spacing:-0.619200pt;}
.ls6e{letter-spacing:-0.614880pt;}
.lsb4{letter-spacing:-0.614400pt;}
.lsad{letter-spacing:-0.609600pt;}
.ls65{letter-spacing:-0.609024pt;}
.lsb3{letter-spacing:-0.604800pt;}
.ls22{letter-spacing:-0.603168pt;}
.lsa9{letter-spacing:-0.600000pt;}
.ls6d{letter-spacing:-0.597312pt;}
.ls8c{letter-spacing:-0.595200pt;}
.ls64{letter-spacing:-0.591456pt;}
.lsb1{letter-spacing:-0.590400pt;}
.ls42{letter-spacing:-0.585600pt;}
.lsaa{letter-spacing:-0.580800pt;}
.ls71{letter-spacing:-0.579744pt;}
.lsac{letter-spacing:-0.576000pt;}
.ls5b{letter-spacing:-0.573888pt;}
.ls8b{letter-spacing:-0.571200pt;}
.ls5f{letter-spacing:-0.568032pt;}
.ls77{letter-spacing:-0.562176pt;}
.ls8a{letter-spacing:-0.561600pt;}
.ls9b{letter-spacing:-0.556320pt;}
.ls5c{letter-spacing:-0.550464pt;}
.ls5d{letter-spacing:-0.527040pt;}
.ls9c{letter-spacing:-0.157248pt;}
.lscb{letter-spacing:-0.105600pt;}
.lsc8{letter-spacing:-0.100800pt;}
.ls53{letter-spacing:-0.081600pt;}
.lsc3{letter-spacing:-0.076800pt;}
.lsa7{letter-spacing:-0.072000pt;}
.ls67{letter-spacing:-0.070272pt;}
.ls1a{letter-spacing:-0.067104pt;}
.lsd1{letter-spacing:-0.062400pt;}
.ls19{letter-spacing:-0.059648pt;}
.ls8f{letter-spacing:-0.052800pt;}
.ls1b{letter-spacing:-0.052192pt;}
.ls4a{letter-spacing:-0.048000pt;}
.lsa3{letter-spacing:-0.046848pt;}
.ls4b{letter-spacing:-0.043200pt;}
.lsab{letter-spacing:-0.033600pt;}
.ls54{letter-spacing:-0.028800pt;}
.ls56{letter-spacing:-0.024000pt;}
.lsd2{letter-spacing:-0.023424pt;}
.ls55{letter-spacing:-0.019200pt;}
.lsc4{letter-spacing:-0.014400pt;}
.ls49{letter-spacing:-0.009600pt;}
.ls68{letter-spacing:-0.005856pt;}
.ls4c{letter-spacing:-0.004800pt;}
.ls18{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.004800pt;}
.ls86{letter-spacing:0.005856pt;}
.ls40{letter-spacing:0.009600pt;}
.ls45{letter-spacing:0.011712pt;}
.ls51{letter-spacing:0.014400pt;}
.ls15{letter-spacing:0.017568pt;}
.ls4{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.023424pt;}
.ls3{letter-spacing:0.024000pt;}
.lsb{letter-spacing:0.028800pt;}
.ls35{letter-spacing:0.029280pt;}
.lsc{letter-spacing:0.033600pt;}
.ls16{letter-spacing:0.035136pt;}
.lsa{letter-spacing:0.038400pt;}
.ls21{letter-spacing:0.040992pt;}
.ls20{letter-spacing:0.043200pt;}
.ls10{letter-spacing:0.046848pt;}
.lsf{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.052704pt;}
.ls5{letter-spacing:0.052800pt;}
.ls1c{letter-spacing:0.057600pt;}
.ls57{letter-spacing:0.058560pt;}
.lse{letter-spacing:0.062400pt;}
.ls17{letter-spacing:0.064416pt;}
.ls8{letter-spacing:0.067200pt;}
.ls58{letter-spacing:0.070272pt;}
.ls9{letter-spacing:0.072000pt;}
.ls33{letter-spacing:0.076128pt;}
.ls1d{letter-spacing:0.076800pt;}
.ls81{letter-spacing:0.080000pt;}
.lsd{letter-spacing:0.081600pt;}
.ls34{letter-spacing:0.081984pt;}
.ls9e{letter-spacing:0.086400pt;}
.ls4f{letter-spacing:0.087840pt;}
.ls41{letter-spacing:0.091200pt;}
.ls36{letter-spacing:0.093696pt;}
.ls50{letter-spacing:0.099552pt;}
.lsb8{letter-spacing:0.100800pt;}
.ls0{letter-spacing:0.101536pt;}
.ls99{letter-spacing:0.105408pt;}
.lscf{letter-spacing:0.105600pt;}
.ls9d{letter-spacing:0.110400pt;}
.ls28{letter-spacing:0.112224pt;}
.ls3f{letter-spacing:0.120000pt;}
.ls2{letter-spacing:0.133600pt;}
.ls69{letter-spacing:0.158112pt;}
.ls48{letter-spacing:0.158400pt;}
.ls31{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.160320pt;}
.ls47{letter-spacing:0.160992pt;}
.lsce{letter-spacing:0.182400pt;}
.ls7a{letter-spacing:0.339648pt;}
.ls52{letter-spacing:0.532896pt;}
.lsa1{letter-spacing:0.614400pt;}
.ls76{letter-spacing:0.644160pt;}
.lsba{letter-spacing:0.648000pt;}
.ls78{letter-spacing:0.661728pt;}
.ls9f{letter-spacing:0.667200pt;}
.ls5a{letter-spacing:0.673440pt;}
.ls88{letter-spacing:0.676800pt;}
.ls89{letter-spacing:0.679296pt;}
.ls7{letter-spacing:0.681600pt;}
.ls79{letter-spacing:0.685152pt;}
.lsa2{letter-spacing:0.686400pt;}
.ls82{letter-spacing:0.691008pt;}
.ls6a{letter-spacing:0.691200pt;}
.ls63{letter-spacing:0.696864pt;}
.ls9a{letter-spacing:0.702720pt;}
.ls6{letter-spacing:0.705600pt;}
.ls75{letter-spacing:0.708576pt;}
.lsb9{letter-spacing:0.710400pt;}
.lsd0{letter-spacing:0.772992pt;}
.ls85{letter-spacing:0.810560pt;}
.lsc1{letter-spacing:0.892800pt;}
.ls2c{letter-spacing:0.895968pt;}
.lsa0{letter-spacing:0.912000pt;}
.lsb7{letter-spacing:0.921600pt;}
.lsbb{letter-spacing:0.926400pt;}
.ls59{letter-spacing:0.931104pt;}
.ls3d{letter-spacing:0.931200pt;}
.lsb5{letter-spacing:0.936000pt;}
.ls4d{letter-spacing:0.948672pt;}
.lscd{letter-spacing:0.960000pt;}
.ls38{letter-spacing:0.960384pt;}
.lsbc{letter-spacing:0.964800pt;}
.ls2a{letter-spacing:0.966240pt;}
.ls74{letter-spacing:0.972096pt;}
.ls39{letter-spacing:0.977952pt;}
.ls30{letter-spacing:0.983808pt;}
.lsbd{letter-spacing:0.984000pt;}
.ls3c{letter-spacing:0.988800pt;}
.ls2b{letter-spacing:0.989664pt;}
.ls7c{letter-spacing:0.993600pt;}
.ls4e{letter-spacing:0.995520pt;}
.lsb6{letter-spacing:0.998400pt;}
.ls2f{letter-spacing:1.001376pt;}
.ls3b{letter-spacing:1.003200pt;}
.ls12{letter-spacing:1.007232pt;}
.ls7f{letter-spacing:1.008000pt;}
.ls80{letter-spacing:1.012800pt;}
.ls14{letter-spacing:1.013088pt;}
.ls7d{letter-spacing:1.017600pt;}
.ls29{letter-spacing:1.018944pt;}
.lsc2{letter-spacing:1.022400pt;}
.ls2e{letter-spacing:1.024800pt;}
.ls87{letter-spacing:1.027200pt;}
.ls32{letter-spacing:1.030656pt;}
.ls7e{letter-spacing:1.032000pt;}
.ls3a{letter-spacing:1.036512pt;}
.ls7b{letter-spacing:1.036800pt;}
.ls84{letter-spacing:1.040000pt;}
.ls83{letter-spacing:1.042368pt;}
.ls6f{letter-spacing:1.048224pt;}
.ls2d{letter-spacing:1.054080pt;}
.ls60{letter-spacing:1.065792pt;}
.ls6c{letter-spacing:1.077504pt;}
.ls37{letter-spacing:1.118496pt;}
.ws121{word-spacing:-58.560000pt;}
.ws255{word-spacing:-48.000000pt;}
.ws36{word-spacing:-15.758496pt;}
.ws35{word-spacing:-15.623808pt;}
.ws72{word-spacing:-15.600384pt;}
.ws71{word-spacing:-15.588672pt;}
.ws93{word-spacing:-15.571104pt;}
.ws169{word-spacing:-14.798112pt;}
.ws16a{word-spacing:-14.640000pt;}
.ws209{word-spacing:-12.014400pt;}
.ws254{word-spacing:-11.937600pt;}
.ws37{word-spacing:-9.520992pt;}
.ws1c1{word-spacing:-9.202752pt;}
.ws38{word-spacing:-8.000000pt;}
.ws262{word-spacing:-1.492800pt;}
.ws18c{word-spacing:-1.241472pt;}
.ws23b{word-spacing:-1.190400pt;}
.ws230{word-spacing:-1.171200pt;}
.ws261{word-spacing:-1.166400pt;}
.ws22f{word-spacing:-1.161600pt;}
.ws21c{word-spacing:-1.142400pt;}
.ws18b{word-spacing:-0.936960pt;}
.ws115{word-spacing:-0.925248pt;}
.ws216{word-spacing:-0.878400pt;}
.ws20e{word-spacing:-0.868800pt;}
.ws23a{word-spacing:-0.864000pt;}
.ws20b{word-spacing:-0.854400pt;}
.ws21b{word-spacing:-0.840000pt;}
.wsba{word-spacing:-0.667584pt;}
.ws74{word-spacing:-0.655872pt;}
.ws76{word-spacing:-0.626592pt;}
.ws75{word-spacing:-0.620736pt;}
.ws145{word-spacing:-0.614880pt;}
.ws13d{word-spacing:-0.609024pt;}
.ws173{word-spacing:-0.603168pt;}
.ws77{word-spacing:-0.591456pt;}
.ws129{word-spacing:-0.585600pt;}
.ws1cb{word-spacing:-0.579744pt;}
.ws213{word-spacing:-0.528000pt;}
.ws73{word-spacing:-0.292800pt;}
.ws267{word-spacing:-0.281088pt;}
.ws1c8{word-spacing:-0.263520pt;}
.ws184{word-spacing:-0.251808pt;}
.ws193{word-spacing:-0.245952pt;}
.ws128{word-spacing:-0.240096pt;}
.ws15b{word-spacing:-0.206400pt;}
.ws8f{word-spacing:-0.196800pt;}
.ws208{word-spacing:-0.187200pt;}
.ws212{word-spacing:-0.182400pt;}
.ws1a2{word-spacing:-0.168000pt;}
.ws2{word-spacing:-0.053440pt;}
.wsf3{word-spacing:-0.035136pt;}
.ws39{word-spacing:-0.032064pt;}
.ws6{word-spacing:-0.029824pt;}
.ws4{word-spacing:-0.022368pt;}
.ws0{word-spacing:-0.021376pt;}
.ws5{word-spacing:-0.014912pt;}
.wse9{word-spacing:-0.005856pt;}
.ws1{word-spacing:0.000000pt;}
.ws42{word-spacing:0.005856pt;}
.wsd0{word-spacing:0.011712pt;}
.ws3{word-spacing:0.017568pt;}
.ws9a{word-spacing:0.023424pt;}
.wsd6{word-spacing:0.029280pt;}
.ws2e{word-spacing:0.035136pt;}
.ws6a{word-spacing:0.038400pt;}
.wsdb{word-spacing:0.040992pt;}
.wsa3{word-spacing:0.046848pt;}
.ws240{word-spacing:0.048000pt;}
.ws12b{word-spacing:0.052704pt;}
.ws228{word-spacing:0.057600pt;}
.ws51{word-spacing:0.058560pt;}
.ws11c{word-spacing:0.064416pt;}
.ws6c{word-spacing:0.067200pt;}
.ws1e5{word-spacing:0.072000pt;}
.ws10a{word-spacing:0.076800pt;}
.ws6d{word-spacing:0.081600pt;}
.ws8a{word-spacing:0.086400pt;}
.ws1e{word-spacing:0.091200pt;}
.ws1f{word-spacing:0.096000pt;}
.ws21{word-spacing:0.100800pt;}
.ws263{word-spacing:0.105408pt;}
.wsdf{word-spacing:0.105600pt;}
.ws13f{word-spacing:0.110400pt;}
.ws20{word-spacing:0.115200pt;}
.ws24{word-spacing:0.120000pt;}
.ws8d{word-spacing:0.124800pt;}
.ws92{word-spacing:0.129600pt;}
.ws70{word-spacing:0.134400pt;}
.ws67{word-spacing:0.139200pt;}
.ws8c{word-spacing:0.144000pt;}
.ws6b{word-spacing:0.148800pt;}
.ws63{word-spacing:0.153600pt;}
.ws68{word-spacing:0.158400pt;}
.ws69{word-spacing:0.163200pt;}
.ws64{word-spacing:0.168000pt;}
.ws23e{word-spacing:0.172800pt;}
.ws8b{word-spacing:0.177600pt;}
.ws8e{word-spacing:0.182400pt;}
.ws62{word-spacing:0.187200pt;}
.ws1f1{word-spacing:0.192000pt;}
.ws66{word-spacing:0.201600pt;}
.ws65{word-spacing:0.206400pt;}
.ws1ff{word-spacing:0.211200pt;}
.ws237{word-spacing:0.225600pt;}
.ws1ed{word-spacing:0.230400pt;}
.ws1e9{word-spacing:0.235200pt;}
.ws89{word-spacing:0.240000pt;}
.ws24d{word-spacing:0.264000pt;}
.ws246{word-spacing:0.278400pt;}
.wsfc{word-spacing:0.298656pt;}
.ws56{word-spacing:0.304512pt;}
.ws54{word-spacing:0.316224pt;}
.ws100{word-spacing:0.322080pt;}
.wsfd{word-spacing:0.327936pt;}
.ws10b{word-spacing:0.333792pt;}
.ws119{word-spacing:0.339648pt;}
.ws57{word-spacing:0.345504pt;}
.wsc3{word-spacing:0.351360pt;}
.ws58{word-spacing:0.357216pt;}
.ws55{word-spacing:0.368928pt;}
.ws123{word-spacing:0.374784pt;}
.ws53{word-spacing:0.380640pt;}
.ws1ee{word-spacing:0.427200pt;}
.ws91{word-spacing:0.432000pt;}
.ws235{word-spacing:0.436800pt;}
.ws1f8{word-spacing:0.441600pt;}
.ws203{word-spacing:0.446400pt;}
.ws1f7{word-spacing:0.451200pt;}
.ws265{word-spacing:0.585600pt;}
.ws1c5{word-spacing:0.638304pt;}
.ws141{word-spacing:0.644160pt;}
.ws122{word-spacing:0.650016pt;}
.ws133{word-spacing:0.655872pt;}
.ws15c{word-spacing:0.661728pt;}
.wsbc{word-spacing:0.667584pt;}
.ws11f{word-spacing:0.673440pt;}
.ws16e{word-spacing:0.679296pt;}
.wsb1{word-spacing:0.691008pt;}
.ws13b{word-spacing:0.696864pt;}
.ws16f{word-spacing:0.702720pt;}
.ws120{word-spacing:0.708576pt;}
.wsd8{word-spacing:0.726144pt;}
.ws157{word-spacing:0.729600pt;}
.ws1f6{word-spacing:0.734400pt;}
.ws218{word-spacing:0.739200pt;}
.ws25c{word-spacing:0.744000pt;}
.ws90{word-spacing:0.748800pt;}
.ws109{word-spacing:0.753600pt;}
.ws19d{word-spacing:0.758400pt;}
.ws19c{word-spacing:0.763200pt;}
.ws243{word-spacing:0.768000pt;}
.ws210{word-spacing:0.772800pt;}
.ws1f5{word-spacing:0.782400pt;}
.ws1f4{word-spacing:0.796800pt;}
.ws13e{word-spacing:0.801600pt;}
.ws24a{word-spacing:0.902400pt;}
.ws96{word-spacing:0.925248pt;}
.ws84{word-spacing:0.966240pt;}
.wsbb{word-spacing:0.972096pt;}
.wsb2{word-spacing:0.977952pt;}
.ws81{word-spacing:0.983808pt;}
.ws132{word-spacing:0.989664pt;}
.wsb3{word-spacing:0.995520pt;}
.ws82{word-spacing:1.001376pt;}
.ws144{word-spacing:1.007232pt;}
.ws140{word-spacing:1.013088pt;}
.wsf6{word-spacing:1.018944pt;}
.ws220{word-spacing:1.046400pt;}
.ws1fb{word-spacing:1.051200pt;}
.ws1eb{word-spacing:1.056000pt;}
.ws156{word-spacing:1.060800pt;}
.ws167{word-spacing:1.065600pt;}
.ws108{word-spacing:1.070400pt;}
.ws1fa{word-spacing:1.080000pt;}
.ws1fe{word-spacing:1.089600pt;}
.ws1f9{word-spacing:1.094400pt;}
.ws1f3{word-spacing:1.200000pt;}
.ws83{word-spacing:1.259040pt;}
.ws95{word-spacing:1.270752pt;}
.wsd5{word-spacing:1.294176pt;}
.ws1c4{word-spacing:1.300032pt;}
.ws176{word-spacing:1.305888pt;}
.ws12e{word-spacing:1.311744pt;}
.ws40{word-spacing:1.317600pt;}
.ws30{word-spacing:1.323456pt;}
.ws164{word-spacing:1.329312pt;}
.wsab{word-spacing:1.335168pt;}
.ws2f{word-spacing:1.341024pt;}
.wsaa{word-spacing:1.346880pt;}
.ws21d{word-spacing:1.358400pt;}
.ws21e{word-spacing:1.368000pt;}
.ws219{word-spacing:1.372800pt;}
.ws199{word-spacing:1.382400pt;}
.ws23f{word-spacing:1.387200pt;}
.ws20a{word-spacing:1.392000pt;}
.ws1ea{word-spacing:1.396800pt;}
.ws198{word-spacing:1.406400pt;}
.ws1db{word-spacing:1.425600pt;}
.ws253{word-spacing:1.440000pt;}
.ws1dc{word-spacing:1.459200pt;}
.ws1d6{word-spacing:1.592832pt;}
.ws7f{word-spacing:1.598688pt;}
.ws130{word-spacing:1.604544pt;}
.ws94{word-spacing:1.616256pt;}
.ws139{word-spacing:1.622112pt;}
.ws1b1{word-spacing:1.627968pt;}
.wsc0{word-spacing:1.633824pt;}
.wsd4{word-spacing:1.639680pt;}
.wsff{word-spacing:1.645536pt;}
.wsc7{word-spacing:1.651392pt;}
.ws1a4{word-spacing:1.657248pt;}
.ws1d3{word-spacing:1.663104pt;}
.wsbf{word-spacing:1.668960pt;}
.ws252{word-spacing:1.689600pt;}
.ws18{word-spacing:1.699200pt;}
.ws19{word-spacing:1.708800pt;}
.ws197{word-spacing:1.713600pt;}
.ws60{word-spacing:1.718400pt;}
.ws1e8{word-spacing:1.723200pt;}
.ws200{word-spacing:1.728000pt;}
.ws61{word-spacing:1.732800pt;}
.ws1b3{word-spacing:1.909056pt;}
.ws189{word-spacing:1.920768pt;}
.ws1b4{word-spacing:1.926624pt;}
.ws14b{word-spacing:1.932480pt;}
.ws17b{word-spacing:1.938336pt;}
.ws29{word-spacing:1.944192pt;}
.wse4{word-spacing:1.950048pt;}
.wsed{word-spacing:1.955904pt;}
.wse3{word-spacing:1.961760pt;}
.wseb{word-spacing:1.967616pt;}
.ws25d{word-spacing:1.972800pt;}
.wscd{word-spacing:1.973472pt;}
.wsb5{word-spacing:1.979328pt;}
.ws159{word-spacing:1.996800pt;}
.wsa{word-spacing:2.016000pt;}
.ws153{word-spacing:2.020800pt;}
.ws8{word-spacing:2.025600pt;}
.ws9{word-spacing:2.030400pt;}
.ws158{word-spacing:2.035200pt;}
.wsb{word-spacing:2.040000pt;}
.ws152{word-spacing:2.044800pt;}
.ws15a{word-spacing:2.049600pt;}
.ws7{word-spacing:2.054400pt;}
.ws1e3{word-spacing:2.073600pt;}
.ws188{word-spacing:2.201856pt;}
.ws26a{word-spacing:2.231136pt;}
.wsc1{word-spacing:2.236992pt;}
.ws146{word-spacing:2.242848pt;}
.wsde{word-spacing:2.248704pt;}
.ws1c9{word-spacing:2.254560pt;}
.wsb4{word-spacing:2.260416pt;}
.ws31{word-spacing:2.266272pt;}
.wsdd{word-spacing:2.272128pt;}
.ws134{word-spacing:2.277984pt;}
.wsee{word-spacing:2.283840pt;}
.wsea{word-spacing:2.289696pt;}
.ws135{word-spacing:2.313120pt;}
.ws21f{word-spacing:2.328000pt;}
.ws244{word-spacing:2.337600pt;}
.ws23d{word-spacing:2.342400pt;}
.ws202{word-spacing:2.352000pt;}
.ws1e2{word-spacing:2.361600pt;}
.ws165{word-spacing:2.371200pt;}
.ws166{word-spacing:2.380800pt;}
.ws201{word-spacing:2.419200pt;}
.ws187{word-spacing:2.559072pt;}
.ws147{word-spacing:2.564928pt;}
.ws179{word-spacing:2.570784pt;}
.wsc6{word-spacing:2.576640pt;}
.ws3a{word-spacing:2.582496pt;}
.ws9f{word-spacing:2.588352pt;}
.ws27{word-spacing:2.594208pt;}
.wsa0{word-spacing:2.600064pt;}
.ws264{word-spacing:2.605920pt;}
.ws103{word-spacing:2.611776pt;}
.ws87{word-spacing:2.617632pt;}
.ws16d{word-spacing:2.623488pt;}
.ws104{word-spacing:2.629344pt;}
.wsd{word-spacing:2.654400pt;}
.wsc{word-spacing:2.668800pt;}
.ws21a{word-spacing:2.673600pt;}
.ws1fd{word-spacing:2.678400pt;}
.ws20c{word-spacing:2.683200pt;}
.ws24c{word-spacing:2.697600pt;}
.wse{word-spacing:2.702400pt;}
.wse7{word-spacing:2.857728pt;}
.ws1ba{word-spacing:2.863584pt;}
.ws14d{word-spacing:2.869440pt;}
.ws185{word-spacing:2.881152pt;}
.wsad{word-spacing:2.887008pt;}
.wsa8{word-spacing:2.892864pt;}
.ws126{word-spacing:2.898720pt;}
.ws86{word-spacing:2.904576pt;}
.ws2c{word-spacing:2.910432pt;}
.ws97{word-spacing:2.916288pt;}
.ws137{word-spacing:2.922144pt;}
.ws88{word-spacing:2.928000pt;}
.ws1b9{word-spacing:2.933856pt;}
.ws4d{word-spacing:2.939712pt;}
.ws2d{word-spacing:2.945568pt;}
.wsf{word-spacing:2.966400pt;}
.ws24b{word-spacing:2.971200pt;}
.ws1fc{word-spacing:2.985600pt;}
.ws1e4{word-spacing:2.990400pt;}
.ws239{word-spacing:2.995200pt;}
.ws238{word-spacing:3.000000pt;}
.ws248{word-spacing:3.004800pt;}
.ws247{word-spacing:3.019200pt;}
.ws181{word-spacing:3.197376pt;}
.ws151{word-spacing:3.203232pt;}
.ws150{word-spacing:3.209088pt;}
.ws172{word-spacing:3.214944pt;}
.ws15d{word-spacing:3.226656pt;}
.ws10c{word-spacing:3.232512pt;}
.ws125{word-spacing:3.238368pt;}
.wsd7{word-spacing:3.244224pt;}
.wsb7{word-spacing:3.250080pt;}
.ws1c0{word-spacing:3.255936pt;}
.ws127{word-spacing:3.261792pt;}
.ws214{word-spacing:3.297600pt;}
.ws1df{word-spacing:3.302400pt;}
.ws215{word-spacing:3.307200pt;}
.ws155{word-spacing:3.316800pt;}
.ws1e0{word-spacing:3.321600pt;}
.ws1e1{word-spacing:3.326400pt;}
.ws245{word-spacing:3.480000pt;}
.ws17e{word-spacing:3.501888pt;}
.ws1ca{word-spacing:3.507744pt;}
.ws118{word-spacing:3.525312pt;}
.wsc2{word-spacing:3.531168pt;}
.ws180{word-spacing:3.537024pt;}
.ws107{word-spacing:3.542880pt;}
.wse8{word-spacing:3.548736pt;}
.ws116{word-spacing:3.554592pt;}
.ws7e{word-spacing:3.560448pt;}
.ws7d{word-spacing:3.566304pt;}
.wsb6{word-spacing:3.572160pt;}
.ws2b{word-spacing:3.578016pt;}
.wsf2{word-spacing:3.583872pt;}
.ws259{word-spacing:3.600000pt;}
.ws1d4{word-spacing:3.607296pt;}
.ws25a{word-spacing:3.624000pt;}
.ws223{word-spacing:3.628800pt;}
.ws154{word-spacing:3.633600pt;}
.ws23{word-spacing:3.638400pt;}
.ws5f{word-spacing:3.643200pt;}
.ws207{word-spacing:3.652800pt;}
.ws20f{word-spacing:3.720000pt;}
.ws7c{word-spacing:3.829824pt;}
.ws1bc{word-spacing:3.841536pt;}
.ws32{word-spacing:3.853248pt;}
.ws17d{word-spacing:3.859104pt;}
.wsa6{word-spacing:3.864960pt;}
.wsa2{word-spacing:3.870816pt;}
.ws1ae{word-spacing:3.876672pt;}
.ws2a{word-spacing:3.882528pt;}
.ws13a{word-spacing:3.888384pt;}
.ws26{word-spacing:3.894240pt;}
.ws143{word-spacing:3.900096pt;}
.ws23c{word-spacing:3.931200pt;}
.ws241{word-spacing:3.936000pt;}
.ws25b{word-spacing:3.940800pt;}
.ws22{word-spacing:3.950400pt;}
.ws5e{word-spacing:3.955200pt;}
.ws242{word-spacing:3.964800pt;}
.ws227{word-spacing:3.969600pt;}
.ws226{word-spacing:3.979200pt;}
.ws206{word-spacing:4.027200pt;}
.ws4f{word-spacing:4.175328pt;}
.ws117{word-spacing:4.181184pt;}
.wsaf{word-spacing:4.187040pt;}
.ws25{word-spacing:4.192896pt;}
.ws85{word-spacing:4.198752pt;}
.ws1ab{word-spacing:4.204608pt;}
.ws34{word-spacing:4.210464pt;}
.ws13c{word-spacing:4.216320pt;}
.ws17f{word-spacing:4.222176pt;}
.ws14{word-spacing:4.238400pt;}
.ws15{word-spacing:4.243200pt;}
.ws19a{word-spacing:4.252800pt;}
.ws25f{word-spacing:4.257600pt;}
.ws20d{word-spacing:4.267200pt;}
.ws19b{word-spacing:4.276800pt;}
.ws1f2{word-spacing:4.281600pt;}
.ws22e{word-spacing:4.286400pt;}
.ws6f{word-spacing:4.291200pt;}
.ws249{word-spacing:4.296000pt;}
.ws1bb{word-spacing:4.468128pt;}
.ws33{word-spacing:4.473984pt;}
.ws171{word-spacing:4.491552pt;}
.ws44{word-spacing:4.497408pt;}
.wsda{word-spacing:4.503264pt;}
.ws28{word-spacing:4.509120pt;}
.ws80{word-spacing:4.514976pt;}
.wsa1{word-spacing:4.520832pt;}
.ws9e{word-spacing:4.526688pt;}
.ws105{word-spacing:4.532544pt;}
.ws18a{word-spacing:4.538400pt;}
.wsf4{word-spacing:4.544256pt;}
.ws1cc{word-spacing:4.555968pt;}
.ws6e{word-spacing:4.574400pt;}
.ws1d{word-spacing:4.579200pt;}
.ws25e{word-spacing:4.593600pt;}
.ws1f0{word-spacing:4.598400pt;}
.ws13{word-spacing:4.608000pt;}
.ws1ef{word-spacing:4.617600pt;}
.wsf7{word-spacing:4.784352pt;}
.ws16c{word-spacing:4.796064pt;}
.wsf8{word-spacing:4.801920pt;}
.ws52{word-spacing:4.819488pt;}
.ws11e{word-spacing:4.825344pt;}
.ws1a6{word-spacing:4.831200pt;}
.ws9d{word-spacing:4.837056pt;}
.wsd1{word-spacing:4.842912pt;}
.ws49{word-spacing:4.848768pt;}
.ws170{word-spacing:4.854624pt;}
.ws1a9{word-spacing:4.860480pt;}
.ws251{word-spacing:4.915200pt;}
.ws1c{word-spacing:4.939200pt;}
.ws1c7{word-spacing:5.112288pt;}
.ws98{word-spacing:5.141568pt;}
.ws4e{word-spacing:5.147424pt;}
.wsfe{word-spacing:5.153280pt;}
.ws10f{word-spacing:5.159136pt;}
.ws1b5{word-spacing:5.164992pt;}
.ws1cd{word-spacing:5.170848pt;}
.ws17c{word-spacing:5.176704pt;}
.ws204{word-spacing:5.241600pt;}
.ws19f{word-spacing:5.251200pt;}
.ws205{word-spacing:5.270400pt;}
.ws250{word-spacing:5.332800pt;}
.ws1a8{word-spacing:5.428512pt;}
.ws106{word-spacing:5.457792pt;}
.wsae{word-spacing:5.463648pt;}
.ws1a7{word-spacing:5.469504pt;}
.wscc{word-spacing:5.475360pt;}
.ws1bd{word-spacing:5.481216pt;}
.ws1c6{word-spacing:5.487072pt;}
.wscb{word-spacing:5.492928pt;}
.ws1ce{word-spacing:5.498784pt;}
.ws1bf{word-spacing:5.504640pt;}
.ws1be{word-spacing:5.516352pt;}
.ws16{word-spacing:5.548800pt;}
.ws17{word-spacing:5.563200pt;}
.ws22c{word-spacing:5.572800pt;}
.ws22d{word-spacing:5.596800pt;}
.ws131{word-spacing:5.768160pt;}
.wsec{word-spacing:5.774016pt;}
.ws1af{word-spacing:5.779872pt;}
.wsc5{word-spacing:5.785728pt;}
.wsf5{word-spacing:5.791584pt;}
.wsf9{word-spacing:5.797440pt;}
.ws1b0{word-spacing:5.803296pt;}
.wsd3{word-spacing:5.809152pt;}
.ws186{word-spacing:6.078528pt;}
.ws124{word-spacing:6.096096pt;}
.wsce{word-spacing:6.101952pt;}
.ws136{word-spacing:6.107808pt;}
.wsa9{word-spacing:6.113664pt;}
.wsbd{word-spacing:6.119520pt;}
.ws138{word-spacing:6.125376pt;}
.ws24f{word-spacing:6.182400pt;}
.ws232{word-spacing:6.192000pt;}
.ws211{word-spacing:6.196800pt;}
.ws24e{word-spacing:6.220800pt;}
.ws10d{word-spacing:6.388896pt;}
.wscf{word-spacing:6.418176pt;}
.ws17a{word-spacing:6.424032pt;}
.wse0{word-spacing:6.429888pt;}
.ws142{word-spacing:6.441600pt;}
.ws183{word-spacing:6.447456pt;}
.ws1d2{word-spacing:6.459168pt;}
.ws22a{word-spacing:6.489600pt;}
.ws231{word-spacing:6.504000pt;}
.ws258{word-spacing:6.518400pt;}
.ws1e7{word-spacing:6.523200pt;}
.ws22b{word-spacing:6.552000pt;}
.ws256{word-spacing:6.696000pt;}
.wsef{word-spacing:6.722688pt;}
.wsf0{word-spacing:6.728544pt;}
.ws182{word-spacing:6.740256pt;}
.wsa7{word-spacing:6.751968pt;}
.ws1cf{word-spacing:6.757824pt;}
.ws14c{word-spacing:6.763680pt;}
.ws149{word-spacing:6.769536pt;}
.wsd9{word-spacing:6.775392pt;}
.ws15e{word-spacing:6.781248pt;}
.ws1d0{word-spacing:6.787104pt;}
.ws257{word-spacing:6.835200pt;}
.ws1e6{word-spacing:6.840000pt;}
.ws1d8{word-spacing:7.038912pt;}
.ws1d7{word-spacing:7.050624pt;}
.ws175{word-spacing:7.056480pt;}
.ws11b{word-spacing:7.062336pt;}
.ws102{word-spacing:7.068192pt;}
.ws11a{word-spacing:7.074048pt;}
.ws112{word-spacing:7.079904pt;}
.ws1aa{word-spacing:7.097472pt;}
.ws1b8{word-spacing:7.103328pt;}
.ws195{word-spacing:7.132800pt;}
.ws168{word-spacing:7.142400pt;}
.ws196{word-spacing:7.156800pt;}
.ws236{word-spacing:7.161600pt;}
.ws1ec{word-spacing:7.171200pt;}
.wsac{word-spacing:7.366848pt;}
.ws174{word-spacing:7.372704pt;}
.ws163{word-spacing:7.378560pt;}
.ws1ad{word-spacing:7.390272pt;}
.ws178{word-spacing:7.396128pt;}
.ws12f{word-spacing:7.407840pt;}
.ws194{word-spacing:7.492800pt;}
.ws1ac{word-spacing:7.665504pt;}
.wsbe{word-spacing:7.700640pt;}
.ws14a{word-spacing:7.706496pt;}
.wsc8{word-spacing:7.712352pt;}
.ws162{word-spacing:7.718208pt;}
.ws18f{word-spacing:7.724064pt;}
.ws15f{word-spacing:7.735776pt;}
.ws1dd{word-spacing:7.780800pt;}
.ws1de{word-spacing:7.785600pt;}
.ws1a1{word-spacing:7.838400pt;}
.wse5{word-spacing:8.011008pt;}
.wsf1{word-spacing:8.016864pt;}
.wse6{word-spacing:8.028576pt;}
.wsdc{word-spacing:8.034432pt;}
.ws10e{word-spacing:8.046144pt;}
.ws9c{word-spacing:8.052000pt;}
.ws12c{word-spacing:8.057856pt;}
.ws1a5{word-spacing:8.063712pt;}
.ws234{word-spacing:8.116800pt;}
.ws1d9{word-spacing:8.321376pt;}
.ws3f{word-spacing:8.333088pt;}
.ws9b{word-spacing:8.356512pt;}
.ws12a{word-spacing:8.362368pt;}
.ws1da{word-spacing:8.368224pt;}
.ws233{word-spacing:8.424000pt;}
.ws260{word-spacing:8.433600pt;}
.ws3b{word-spacing:8.655168pt;}
.ws14f{word-spacing:8.661024pt;}
.ws4a{word-spacing:8.666880pt;}
.wsb0{word-spacing:8.672736pt;}
.ws1d5{word-spacing:8.678592pt;}
.ws114{word-spacing:8.684448pt;}
.ws221{word-spacing:8.726400pt;}
.ws222{word-spacing:8.750400pt;}
.ws225{word-spacing:8.769600pt;}
.ws1b2{word-spacing:8.936256pt;}
.wsfb{word-spacing:8.959680pt;}
.ws148{word-spacing:8.965536pt;}
.ws101{word-spacing:8.971392pt;}
.ws14e{word-spacing:8.994816pt;}
.wsfa{word-spacing:9.000672pt;}
.ws217{word-spacing:9.076800pt;}
.ws224{word-spacing:9.139200pt;}
.ws7a{word-spacing:9.287616pt;}
.ws12d{word-spacing:9.305184pt;}
.ws7b{word-spacing:9.311040pt;}
.wsca{word-spacing:9.328608pt;}
.wsa5{word-spacing:9.621408pt;}
.wsc9{word-spacing:9.638976pt;}
.ws78{word-spacing:9.644832pt;}
.ws192{word-spacing:9.650688pt;}
.ws191{word-spacing:9.937632pt;}
.wsa4{word-spacing:9.961056pt;}
.ws79{word-spacing:10.107456pt;}
.ws5d{word-spacing:10.224576pt;}
.ws5c{word-spacing:10.242144pt;}
.ws1c3{word-spacing:10.248000pt;}
.ws4b{word-spacing:10.259712pt;}
.ws1c2{word-spacing:10.265568pt;}
.wsc4{word-spacing:10.271424pt;}
.ws1b7{word-spacing:10.288992pt;}
.ws5a{word-spacing:10.581792pt;}
.ws111{word-spacing:10.587648pt;}
.ws48{word-spacing:10.599360pt;}
.ws16b{word-spacing:10.616928pt;}
.ws5b{word-spacing:10.622784pt;}
.ws59{word-spacing:10.640352pt;}
.ws41{word-spacing:10.886304pt;}
.ws99{word-spacing:10.898016pt;}
.ws113{word-spacing:10.909728pt;}
.ws110{word-spacing:10.921440pt;}
.ws1a3{word-spacing:10.927296pt;}
.wsd2{word-spacing:10.933152pt;}
.ws18d{word-spacing:11.220096pt;}
.wsb8{word-spacing:11.237664pt;}
.wse1{word-spacing:11.243520pt;}
.wse2{word-spacing:11.266944pt;}
.ws11d{word-spacing:11.553888pt;}
.ws1d1{word-spacing:11.559744pt;}
.ws266{word-spacing:11.852544pt;}
.ws1b{word-spacing:12.921600pt;}
.wsb9{word-spacing:13.158432pt;}
.ws1a{word-spacing:13.228800pt;}
.ws177{word-spacing:13.468800pt;}
.ws50{word-spacing:13.509792pt;}
.ws269{word-spacing:13.761600pt;}
.ws190{word-spacing:13.790880pt;}
.ws268{word-spacing:14.095392pt;}
.ws47{word-spacing:14.130528pt;}
.ws3c{word-spacing:14.153952pt;}
.ws4c{word-spacing:14.751264pt;}
.ws160{word-spacing:15.418848pt;}
.ws161{word-spacing:15.436416pt;}
.ws18e{word-spacing:16.039584pt;}
.ws1b6{word-spacing:16.045440pt;}
.ws45{word-spacing:17.310336pt;}
.ws46{word-spacing:17.972064pt;}
.ws3d{word-spacing:18.223872pt;}
.ws3e{word-spacing:18.241440pt;}
.ws12{word-spacing:20.260800pt;}
.ws11{word-spacing:20.289600pt;}
.ws10{word-spacing:20.601600pt;}
.ws43{word-spacing:23.716800pt;}
.ws229{word-spacing:25.022400pt;}
.ws19e{word-spacing:84.945600pt;}
.ws1a0{word-spacing:138.408000pt;}
._12{margin-left:-138.240000pt;}
._10{margin-left:-80.318400pt;}
._11{margin-left:-79.041600pt;}
._2c{margin-left:-68.798400pt;}
._15{margin-left:-59.198400pt;}
._16{margin-left:-57.278400pt;}
._19{margin-left:-44.160000pt;}
._13{margin-left:-41.596800pt;}
._2d{margin-left:-36.158400pt;}
._2b{margin-left:-32.640000pt;}
._2f{margin-left:-27.518400pt;}
._3f{margin-left:-25.495232pt;}
._4{margin-left:-24.308256pt;}
._5{margin-left:-17.286912pt;}
._f{margin-left:-16.079776pt;}
._e{margin-left:-11.185184pt;}
._8{margin-left:-9.279456pt;}
._b{margin-left:-7.358048pt;}
._3b{margin-left:-6.330336pt;}
._6{margin-left:-5.252832pt;}
._c{margin-left:-4.265856pt;}
._2{margin-left:-3.064416pt;}
._9{margin-left:-2.047232pt;}
._0{margin-left:-0.919168pt;}
._1{width:0.892800pt;}
._7{width:2.399456pt;}
._a{width:4.161600pt;}
._25{width:5.121600pt;}
._3d{width:6.489600pt;}
._3c{width:7.497600pt;}
._24{width:8.640000pt;}
._d{width:14.716800pt;}
._3{width:18.862176pt;}
._3e{width:24.758400pt;}
._2e{width:49.603200pt;}
._26{width:51.201600pt;}
._17{width:60.793056pt;}
._30{width:70.080000pt;}
._36{width:74.880000pt;}
._1e{width:80.961600pt;}
._37{width:83.520000pt;}
._39{width:85.440000pt;}
._34{width:88.641248pt;}
._23{width:93.120000pt;}
._1d{width:94.080000pt;}
._1b{width:96.643200pt;}
._21{width:99.201600pt;}
._31{width:102.081600pt;}
._33{width:107.520000pt;}
._28{width:110.721600pt;}
._1f{width:113.601600pt;}
._3a{width:115.200000pt;}
._1a{width:138.240000pt;}
._1c{width:144.000000pt;}
._38{width:150.720000pt;}
._32{width:158.400000pt;}
._22{width:169.920000pt;}
._14{width:173.760000pt;}
._20{width:176.323200pt;}
._27{width:187.843200pt;}
._18{width:188.803200pt;}
._2a{width:200.323200pt;}
._29{width:235.521600pt;}
._35{width:319.363200pt;}
.fs6{font-size:16.000000pt;}
.fs9{font-size:21.440000pt;}
.fsa{font-size:26.560000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:3.226875pt;}
.y67{bottom:18.586867pt;}
.y199{bottom:175.787067pt;}
.y12e{bottom:180.267067pt;}
.y101{bottom:180.667067pt;}
.y177{bottom:182.825971pt;}
.yb0{bottom:183.480403pt;}
.y235{bottom:183.792347pt;}
.y2dd{bottom:183.867067pt;}
.y312{bottom:183.946267pt;}
.y2e{bottom:184.106299pt;}
.y159{bottom:184.185107pt;}
.y12d{bottom:184.345203pt;}
.y1c2{bottom:184.746667pt;}
.y198{bottom:185.783315pt;}
.yd5{bottom:186.027200pt;}
.y1a8{bottom:186.187067pt;}
.y60{bottom:186.267067pt;}
.y206{bottom:186.827323pt;}
.y1ec{bottom:186.827659pt;}
.y345{bottom:187.707200pt;}
.y2aa{bottom:187.866219pt;}
.y80{bottom:188.107200pt;}
.y25c{bottom:189.467067pt;}
.y371{bottom:191.867779pt;}
.y100{bottom:195.067067pt;}
.yd4{bottom:195.307067pt;}
.y311{bottom:198.106267pt;}
.y2dc{bottom:198.267067pt;}
.y25b{bottom:198.587067pt;}
.y1c1{bottom:199.146667pt;}
.y176{bottom:200.105563pt;}
.y5f{bottom:200.267067pt;}
.yaf{bottom:200.519899pt;}
.y1a7{bottom:200.587067pt;}
.y2d{bottom:201.066739pt;}
.y234{bottom:201.071939pt;}
.y158{bottom:201.385643pt;}
.y12c{bottom:201.465219pt;}
.y344{bottom:202.107200pt;}
.y7f{bottom:202.347067pt;}
.y197{bottom:202.903331pt;}
.y205{bottom:204.667627pt;}
.y1eb{bottom:204.667963pt;}
.y2a9{bottom:205.546947pt;}
.y370{bottom:209.548507pt;}
.yd3{bottom:212.186467pt;}
.y310{bottom:212.346667pt;}
.y2db{bottom:212.667067pt;}
.y1c0{bottom:213.546667pt;}
.y5e{bottom:214.187200pt;}
.yff{bottom:214.827067pt;}
.y1a6{bottom:214.987067pt;}
.y343{bottom:216.507067pt;}
.y7e{bottom:216.747067pt;}
.y175{bottom:217.385155pt;}
.yae{bottom:217.559395pt;}
.y2c{bottom:218.027179pt;}
.y284{bottom:218.267379pt;}
.y233{bottom:218.351531pt;}
.y157{bottom:218.586179pt;}
.y12b{bottom:218.665755pt;}
.y25a{bottom:219.307795pt;}
.y196{bottom:220.023347pt;}
.y204{bottom:222.586987pt;}
.y1ea{bottom:222.587323pt;}
.y2a8{bottom:223.227675pt;}
.yfe{bottom:224.107067pt;}
.y30f{bottom:226.506667pt;}
.y2da{bottom:227.067067pt;}
.y36f{bottom:227.308291pt;}
.y1bf{bottom:227.946667pt;}
.y5d{bottom:228.107067pt;}
.yd2{bottom:229.306483pt;}
.y1a5{bottom:229.387067pt;}
.y342{bottom:230.907067pt;}
.y7d{bottom:231.067067pt;}
.y174{bottom:234.505171pt;}
.yad{bottom:234.679411pt;}
.y2b{bottom:234.907099pt;}
.y232{bottom:235.552067pt;}
.y12a{bottom:235.785771pt;}
.y156{bottom:235.786715pt;}
.y283{bottom:235.796115pt;}
.y259{bottom:236.827483pt;}
.y195{bottom:237.143363pt;}
.y203{bottom:240.427291pt;}
.y1e9{bottom:240.427627pt;}
.y30e{bottom:240.737867pt;}
.y2a7{bottom:240.827883pt;}
.y2d9{bottom:241.467067pt;}
.y5c{bottom:242.027067pt;}
.y1be{bottom:242.346667pt;}
.y1a4{bottom:244.187027pt;}
.y36e{bottom:245.068075pt;}
.yfd{bottom:245.228099pt;}
.y341{bottom:245.307067pt;}
.y7c{bottom:245.387067pt;}
.yd1{bottom:246.426499pt;}
.y173{bottom:251.625187pt;}
.yac{bottom:251.718907pt;}
.y2a{bottom:251.867539pt;}
.y231{bottom:252.831659pt;}
.y129{bottom:252.905787pt;}
.y155{bottom:252.987251pt;}
.y282{bottom:253.315803pt;}
.y194{bottom:254.263379pt;}
.y258{bottom:254.427691pt;}
.y30d{bottom:254.897867pt;}
.y2d8{bottom:255.867067pt;}
.y5b{bottom:255.947067pt;}
.y1bd{bottom:256.827067pt;}
.y1a3{bottom:257.707067pt;}
.y202{bottom:258.267595pt;}
.y1e8{bottom:258.267931pt;}
.y2a6{bottom:258.507147pt;}
.y7b{bottom:259.707067pt;}
.yfc{bottom:262.588211pt;}
.y36d{bottom:262.748803pt;}
.yd0{bottom:263.546515pt;}
.y1bc{bottom:267.707067pt;}
.y172{bottom:268.745203pt;}
.yab{bottom:268.758403pt;}
.y29{bottom:268.987555pt;}
.y30c{bottom:269.138267pt;}
.y5a{bottom:269.867067pt;}
.y128{bottom:270.025803pt;}
.y230{bottom:270.111251pt;}
.y154{bottom:270.187787pt;}
.y2d7{bottom:270.267067pt;}
.y281{bottom:270.835491pt;}
.y193{bottom:271.463915pt;}
.y257{bottom:271.947379pt;}
.y7a{bottom:274.027067pt;}
.y340{bottom:274.107067pt;}
.y2a5{bottom:275.786739pt;}
.y201{bottom:276.186955pt;}
.y1e7{bottom:276.187291pt;}
.yfb{bottom:279.867803pt;}
.y36c{bottom:280.508587pt;}
.ycf{bottom:280.666531pt;}
.y30b{bottom:283.298267pt;}
.y59{bottom:283.787067pt;}
.y2d6{bottom:284.667067pt;}
.y171{bottom:285.865219pt;}
.yaa{bottom:285.878419pt;}
.y28{bottom:286.107571pt;}
.y127{bottom:287.145819pt;}
.y153{bottom:287.388323pt;}
.y22f{bottom:287.390843pt;}
.y79{bottom:288.347067pt;}
.y280{bottom:288.435699pt;}
.y33f{bottom:288.507067pt;}
.y192{bottom:288.583931pt;}
.y256{bottom:289.474523pt;}
.y2a4{bottom:292.107411pt;}
.y200{bottom:294.027259pt;}
.y1e6{bottom:294.027595pt;}
.yfa{bottom:297.227915pt;}
.y30a{bottom:297.538667pt;}
.y58{bottom:297.787067pt;}
.yce{bottom:297.865651pt;}
.y36b{bottom:298.268371pt;}
.y2d5{bottom:299.067067pt;}
.y78{bottom:302.747067pt;}
.y33e{bottom:302.907067pt;}
.ya9{bottom:302.917915pt;}
.y170{bottom:302.985235pt;}
.y27{bottom:303.227587pt;}
.y126{bottom:304.265835pt;}
.y152{bottom:304.588859pt;}
.y22e{bottom:304.670435pt;}
.y191{bottom:305.703947pt;}
.y27f{bottom:305.955387pt;}
.y255{bottom:306.994211pt;}
.y2a3{bottom:309.947715pt;}
.y309{bottom:311.698667pt;}
.y57{bottom:311.707067pt;}
.y1ff{bottom:311.867563pt;}
.y1e5{bottom:311.867899pt;}
.y2d4{bottom:313.467067pt;}
.yf9{bottom:314.588027pt;}
.ycd{bottom:314.985667pt;}
.y36a{bottom:315.947635pt;}
.y77{bottom:317.067067pt;}
.y33d{bottom:317.307067pt;}
.ya8{bottom:319.957411pt;}
.y16f{bottom:320.185771pt;}
.y26{bottom:320.347603pt;}
.y125{bottom:321.466371pt;}
.y151{bottom:321.789395pt;}
.y22d{bottom:321.950027pt;}
.y190{bottom:322.823963pt;}
.y27e{bottom:323.475075pt;}
.y254{bottom:324.513899pt;}
.y56{bottom:325.627067pt;}
.y308{bottom:325.939067pt;}
.y2a2{bottom:326.268387pt;}
.y2d3{bottom:327.867067pt;}
.y1fe{bottom:329.786923pt;}
.y1e4{bottom:329.787259pt;}
.y76{bottom:331.387067pt;}
.y33c{bottom:331.707067pt;}
.yf8{bottom:331.867619pt;}
.ycc{bottom:332.105683pt;}
.y369{bottom:333.707419pt;}
.y55{bottom:334.187067pt;}
.ya7{bottom:337.077427pt;}
.y16e{bottom:337.305787pt;}
.y25{bottom:337.467619pt;}
.y124{bottom:338.586387pt;}
.y150{bottom:338.989931pt;}
.y22c{bottom:339.150563pt;}
.y18f{bottom:339.943979pt;}
.y307{bottom:340.099067pt;}
.y27d{bottom:340.994763pt;}
.y2a1{bottom:342.028347pt;}
.y253{bottom:342.033587pt;}
.y2d2{bottom:342.267067pt;}
.y75{bottom:345.707067pt;}
.y33b{bottom:346.107067pt;}
.y1fd{bottom:347.627227pt;}
.y1e3{bottom:347.627563pt;}
.y54{bottom:348.107067pt;}
.ycb{bottom:349.225699pt;}
.yf7{bottom:349.227731pt;}
.y368{bottom:351.467203pt;}
.ya6{bottom:354.116923pt;}
.y306{bottom:354.339467pt;}
.y16d{bottom:354.425803pt;}
.y24{bottom:354.668155pt;}
.y74{bottom:354.987200pt;}
.y123{bottom:355.706403pt;}
.y14f{bottom:356.190467pt;}
.y22b{bottom:356.430155pt;}
.y2d1{bottom:356.667067pt;}
.y18e{bottom:357.063995pt;}
.y27c{bottom:358.514451pt;}
.y252{bottom:359.633795pt;}
.y2a0{bottom:359.709075pt;}
.y33a{bottom:360.507067pt;}
.y1fc{bottom:365.467531pt;}
.y1e2{bottom:365.467867pt;}
.yca{bottom:366.345715pt;}
.yf6{bottom:366.587843pt;}
.y53{bottom:367.387067pt;}
.y305{bottom:368.499467pt;}
.y367{bottom:369.147931pt;}
.y2d0{bottom:371.067067pt;}
.ya5{bottom:371.156419pt;}
.y23{bottom:371.467555pt;}
.y16c{bottom:371.545819pt;}
.y86{bottom:372.266400pt;}
.y122{bottom:372.826419pt;}
.y14e{bottom:373.391003pt;}
.y22a{bottom:373.709747pt;}
.y18d{bottom:374.264531pt;}
.y339{bottom:374.907067pt;}
.y27b{bottom:376.034139pt;}
.y52{bottom:376.347067pt;}
.y251{bottom:377.153483pt;}
.y29f{bottom:377.389803pt;}
.y304{bottom:382.739867pt;}
.y1fb{bottom:383.386891pt;}
.y1e1{bottom:383.387227pt;}
.yc9{bottom:383.465731pt;}
.yf5{bottom:383.867435pt;}
.y2cf{bottom:385.467067pt;}
.y85{bottom:386.506800pt;}
.y366{bottom:386.907715pt;}
.y22{bottom:387.227515pt;}
.ya4{bottom:388.276435pt;}
.y16b{bottom:388.665835pt;}
.y338{bottom:389.307067pt;}
.y121{bottom:389.946435pt;}
.y14d{bottom:390.591539pt;}
.y229{bottom:390.989339pt;}
.y18c{bottom:391.384547pt;}
.y51{bottom:392.187571pt;}
.y27a{bottom:393.634347pt;}
.y250{bottom:394.673171pt;}
.y29e{bottom:395.070531pt;}
.y303{bottom:396.899867pt;}
.y2ce{bottom:399.867067pt;}
.yc8{bottom:400.666267pt;}
.y84{bottom:400.747200pt;}
.y1fa{bottom:401.227195pt;}
.y1e0{bottom:401.227531pt;}
.yf4{bottom:401.227547pt;}
.y337{bottom:403.707067pt;}
.y21{bottom:404.267011pt;}
.y365{bottom:404.667499pt;}
.ya3{bottom:405.315931pt;}
.y16a{bottom:405.785851pt;}
.y120{bottom:407.066451pt;}
.y14c{bottom:407.792075pt;}
.y228{bottom:408.268931pt;}
.y18b{bottom:408.504563pt;}
.y50{bottom:409.222363pt;}
.y302{bottom:411.140267pt;}
.y279{bottom:411.154035pt;}
.y24f{bottom:412.192859pt;}
.y29d{bottom:412.749795pt;}
.y2cd{bottom:414.267067pt;}
.y83{bottom:415.147200pt;}
.yc7{bottom:417.786283pt;}
.y336{bottom:418.107067pt;}
.yf3{bottom:418.587659pt;}
.y1f9{bottom:419.067499pt;}
.y1df{bottom:419.067835pt;}
.y20{bottom:420.267067pt;}
.y364{bottom:422.348227pt;}
.ya2{bottom:422.355427pt;}
.y169{bottom:422.986387pt;}
.y11f{bottom:424.266987pt;}
.y14b{bottom:424.992611pt;}
.y301{bottom:425.300267pt;}
.y227{bottom:425.548523pt;}
.y18a{bottom:425.624579pt;}
.y82{bottom:426.027200pt;}
.y4f{bottom:426.342379pt;}
.y2cc{bottom:428.667067pt;}
.y278{bottom:428.673723pt;}
.y24e{bottom:429.712547pt;}
.y29c{bottom:430.429059pt;}
.y335{bottom:432.507067pt;}
.yc6{bottom:434.906299pt;}
.yf2{bottom:435.867251pt;}
.y1f{bottom:435.947067pt;}
.y1f8{bottom:436.986859pt;}
.y1de{bottom:436.987195pt;}
.ya1{bottom:439.475443pt;}
.y300{bottom:439.540667pt;}
.y168{bottom:440.106403pt;}
.y363{bottom:440.108011pt;}
.y11e{bottom:441.387003pt;}
.y14a{bottom:441.792011pt;}
.y189{bottom:442.744595pt;}
.y226{bottom:442.749059pt;}
.y4e{bottom:442.822627pt;}
.y2cb{bottom:443.067067pt;}
.y277{bottom:446.193411pt;}
.y334{bottom:446.907067pt;}
.y24d{bottom:447.232235pt;}
.y29b{bottom:448.029267pt;}
.y1e{bottom:450.347067pt;}
.yc5{bottom:452.026315pt;}
.yf1{bottom:453.227363pt;}
.y2ff{bottom:453.700667pt;}
.y1f7{bottom:454.827163pt;}
.y1dd{bottom:454.827499pt;}
.ya0{bottom:456.514939pt;}
.y4d{bottom:456.822859pt;}
.y167{bottom:457.226419pt;}
.y2ca{bottom:457.467067pt;}
.y149{bottom:457.471451pt;}
.y362{bottom:457.867795pt;}
.y11d{bottom:458.507019pt;}
.y188{bottom:459.945131pt;}
.y225{bottom:460.028651pt;}
.y333{bottom:461.307067pt;}
.y276{bottom:463.713099pt;}
.y1d{bottom:464.747067pt;}
.y24c{bottom:464.832443pt;}
.y29a{bottom:465.708531pt;}
.y2fe{bottom:467.941067pt;}
.yc4{bottom:469.146331pt;}
.yf0{bottom:470.587475pt;}
.y2c9{bottom:471.867067pt;}
.y1f6{bottom:472.667467pt;}
.y1dc{bottom:472.667803pt;}
.y9f{bottom:473.554435pt;}
.y166{bottom:474.346435pt;}
.y148{bottom:474.431891pt;}
.y361{bottom:475.547059pt;}
.y11c{bottom:475.627035pt;}
.y332{bottom:475.707067pt;}
.y187{bottom:477.065147pt;}
.y224{bottom:477.308243pt;}
.y1c{bottom:478.907067pt;}
.y4c{bottom:480.582115pt;}
.y275{bottom:481.232787pt;}
.y1a2{bottom:482.027067pt;}
.y2fd{bottom:482.101067pt;}
.y24b{bottom:482.352131pt;}
.y299{bottom:483.387795pt;}
.y66{bottom:484.347067pt;}
.yc3{bottom:486.266347pt;}
.y2c8{bottom:486.267067pt;}
.yef{bottom:487.867019pt;}
.y147{bottom:489.792179pt;}
.y331{bottom:490.107067pt;}
.y1f5{bottom:490.586827pt;}
.y1db{bottom:490.587163pt;}
.y9e{bottom:490.674451pt;}
.y165{bottom:491.466451pt;}
.y1b{bottom:492.107067pt;}
.y11b{bottom:492.747051pt;}
.y360{bottom:493.227787pt;}
.y186{bottom:494.185163pt;}
.y1a1{bottom:494.187067pt;}
.y223{bottom:494.587835pt;}
.y2fc{bottom:496.341467pt;}
.y4b{bottom:496.822267pt;}
.y274{bottom:498.832995pt;}
.y24a{bottom:499.871819pt;}
.y2c7{bottom:500.667067pt;}
.y65{bottom:500.827467pt;}
.y298{bottom:501.068523pt;}
.yc2{bottom:503.466883pt;}
.y330{bottom:504.507067pt;}
.yee{bottom:505.227131pt;}
.y146{bottom:505.552139pt;}
.y1a{bottom:506.507067pt;}
.y9d{bottom:507.713947pt;}
.y1f4{bottom:508.427131pt;}
.y1da{bottom:508.427467pt;}
.y164{bottom:508.586467pt;}
.y11a{bottom:509.867067pt;}
.y35f{bottom:510.347803pt;}
.y2fb{bottom:510.501467pt;}
.y185{bottom:511.305179pt;}
.y1a0{bottom:511.787067pt;}
.y222{bottom:511.867427pt;}
.y4a{bottom:513.782707pt;}
.y2c6{bottom:515.067067pt;}
.y64{bottom:515.387067pt;}
.y273{bottom:516.352683pt;}
.y249{bottom:517.391507pt;}
.y297{bottom:518.749251pt;}
.y32f{bottom:518.907067pt;}
.yc1{bottom:520.586899pt;}
.y19{bottom:520.907067pt;}
.yed{bottom:522.587243pt;}
.y145{bottom:522.752675pt;}
.y2fa{bottom:524.741867pt;}
.y9c{bottom:524.833963pt;}
.y163{bottom:525.787003pt;}
.y19f{bottom:526.187067pt;}
.y1f3{bottom:526.267435pt;}
.y1d9{bottom:526.267771pt;}
.y119{bottom:527.067603pt;}
.y35e{bottom:527.467819pt;}
.y184{bottom:528.425195pt;}
.y221{bottom:529.147019pt;}
.y2c5{bottom:529.467067pt;}
.y49{bottom:530.662627pt;}
.y63{bottom:530.667067pt;}
.y32e{bottom:533.307067pt;}
.y272{bottom:533.872371pt;}
.y248{bottom:534.911195pt;}
.y18{bottom:535.307067pt;}
.y296{bottom:536.428515pt;}
.yc0{bottom:537.706915pt;}
.y2f9{bottom:538.901867pt;}
.yec{bottom:539.866835pt;}
.y144{bottom:540.032267pt;}
.y19e{bottom:540.587067pt;}
.y9b{bottom:541.873459pt;}
.y162{bottom:542.907019pt;}
.y2c4{bottom:543.867067pt;}
.y1f2{bottom:544.186795pt;}
.y1d8{bottom:544.187131pt;}
.y118{bottom:544.187619pt;}
.y35d{bottom:544.507315pt;}
.y62{bottom:545.387067pt;}
.y183{bottom:545.545211pt;}
.y220{bottom:545.946419pt;}
.y48{bottom:547.623067pt;}
.y32d{bottom:547.707067pt;}
.y17{bottom:549.707067pt;}
.y271{bottom:551.392059pt;}
.y247{bottom:552.430883pt;}
.y2f8{bottom:553.142267pt;}
.y295{bottom:554.028723pt;}
.ybf{bottom:554.826931pt;}
.y19d{bottom:554.987067pt;}
.yeb{bottom:557.226947pt;}
.y143{bottom:557.311859pt;}
.y2c3{bottom:558.267067pt;}
.y9a{bottom:558.912955pt;}
.y161{bottom:560.027035pt;}
.y117{bottom:561.307635pt;}
.y35c{bottom:561.387235pt;}
.y21f{bottom:561.706379pt;}
.y1f1{bottom:562.027099pt;}
.y1d7{bottom:562.027435pt;}
.y32c{bottom:562.107067pt;}
.y182{bottom:562.745747pt;}
.y16{bottom:564.107067pt;}
.y47{bottom:564.583507pt;}
.y2f7{bottom:567.302267pt;}
.y270{bottom:568.911747pt;}
.y19c{bottom:569.387067pt;}
.y246{bottom:570.031091pt;}
.y294{bottom:571.709451pt;}
.ybe{bottom:571.946947pt;}
.y2c2{bottom:572.667067pt;}
.yea{bottom:574.587059pt;}
.y142{bottom:574.591451pt;}
.y99{bottom:576.032971pt;}
.y32b{bottom:576.507067pt;}
.y160{bottom:577.147051pt;}
.y116{bottom:578.427651pt;}
.y15{bottom:578.507067pt;}
.y35b{bottom:578.507251pt;}
.y21e{bottom:578.906915pt;}
.y181{bottom:579.865763pt;}
.y1f0{bottom:579.867403pt;}
.y1d6{bottom:579.867739pt;}
.y46{bottom:581.463427pt;}
.y2f6{bottom:581.542667pt;}
.y19b{bottom:583.547067pt;}
.y26f{bottom:586.431435pt;}
.y2c1{bottom:587.067067pt;}
.y245{bottom:587.550779pt;}
.ybd{bottom:589.066963pt;}
.y293{bottom:589.388715pt;}
.y32a{bottom:590.907067pt;}
.ye9{bottom:591.866651pt;}
.y141{bottom:591.871043pt;}
.y14{bottom:592.907067pt;}
.y98{bottom:593.072467pt;}
.y19a{bottom:593.147067pt;}
.y15f{bottom:594.267067pt;}
.y21d{bottom:595.147067pt;}
.y115{bottom:595.547667pt;}
.y2f5{bottom:595.702667pt;}
.y35a{bottom:595.786843pt;}
.y180{bottom:596.985779pt;}
.y1ef{bottom:597.786763pt;}
.y1d5{bottom:597.787099pt;}
.y45{bottom:598.423867pt;}
.y1bb{bottom:600.907067pt;}
.y2c0{bottom:601.467067pt;}
.y26e{bottom:604.031643pt;}
.y244{bottom:605.070467pt;}
.y329{bottom:605.307067pt;}
.ybc{bottom:606.267499pt;}
.y292{bottom:607.067979pt;}
.y13{bottom:607.307067pt;}
.y140{bottom:609.150635pt;}
.ye8{bottom:609.226763pt;}
.y2f4{bottom:609.943067pt;}
.y97{bottom:610.111963pt;}
.y21c{bottom:610.349467pt;}
.y15e{bottom:610.666667pt;}
.y114{bottom:612.667683pt;}
.y359{bottom:613.146955pt;}
.y17f{bottom:614.105795pt;}
.y44{bottom:615.384307pt;}
.y1ee{bottom:615.625155pt;}
.y1d4{bottom:615.627403pt;}
.y2bf{bottom:615.867067pt;}
.y383{bottom:618.028003pt;}
.y1ba{bottom:619.225035pt;}
.y328{bottom:619.707067pt;}
.y26d{bottom:621.551331pt;}
.y12{bottom:621.707067pt;}
.y243{bottom:622.590155pt;}
.ybb{bottom:623.387515pt;}
.y2f3{bottom:624.103067pt;}
.y15d{bottom:624.427067pt;}
.y291{bottom:624.748707pt;}
.y21b{bottom:624.909067pt;}
.y13f{bottom:626.351171pt;}
.ye7{bottom:626.586875pt;}
.y96{bottom:627.231979pt;}
.y113{bottom:629.868219pt;}
.y2be{bottom:630.267067pt;}
.y358{bottom:630.507067pt;}
.y17e{bottom:631.225811pt;}
.y43{bottom:632.264227pt;}
.y1ed{bottom:633.465459pt;}
.y1d3{bottom:633.467707pt;}
.y327{bottom:634.107067pt;}
.y382{bottom:635.787787pt;}
.y11{bottom:636.107067pt;}
.y1b9{bottom:636.905763pt;}
.y2f2{bottom:638.343467pt;}
.y15c{bottom:638.827067pt;}
.y26c{bottom:639.071019pt;}
.y21a{bottom:639.549067pt;}
.y242{bottom:640.109843pt;}
.yba{bottom:640.507531pt;}
.y290{bottom:642.427971pt;}
.y13e{bottom:643.630763pt;}
.ye6{bottom:643.866467pt;}
.y95{bottom:644.271475pt;}
.y2bd{bottom:644.667067pt;}
.y112{bottom:646.988235pt;}
.y357{bottom:647.301067pt;}
.y17d{bottom:648.345827pt;}
.y326{bottom:648.507067pt;}
.y42{bottom:649.224667pt;}
.y10{bottom:650.507067pt;}
.y1d2{bottom:651.384819pt;}
.y2f1{bottom:652.503467pt;}
.y15b{bottom:653.467067pt;}
.y381{bottom:653.468515pt;}
.y219{bottom:654.108667pt;}
.y1b8{bottom:654.585027pt;}
.y26b{bottom:656.590707pt;}
.yb9{bottom:657.627547pt;}
.y241{bottom:657.629531pt;}
.y2bc{bottom:659.067067pt;}
.y28f{bottom:660.028179pt;}
.y13d{bottom:660.910355pt;}
.y94{bottom:661.070875pt;}
.ye5{bottom:661.226579pt;}
.y356{bottom:661.701067pt;}
.y325{bottom:662.907067pt;}
.y111{bottom:664.108251pt;}
.yf{bottom:665.467067pt;}
.y17c{bottom:665.546363pt;}
.y15a{bottom:665.627067pt;}
.y41{bottom:666.185107pt;}
.y2f0{bottom:666.743867pt;}
.y218{bottom:668.748667pt;}
.y1d1{bottom:669.225123pt;}
.y380{bottom:671.228299pt;}
.y1b7{bottom:672.265755pt;}
.y2bb{bottom:673.467067pt;}
.y26a{bottom:674.110395pt;}
.yb8{bottom:674.747563pt;}
.y240{bottom:675.229739pt;}
.y355{bottom:676.181467pt;}
.y93{bottom:676.510219pt;}
.y324{bottom:677.307067pt;}
.y28e{bottom:677.707443pt;}
.y13c{bottom:678.189947pt;}
.ye4{bottom:678.586691pt;}
.y2ef{bottom:680.903867pt;}
.y110{bottom:681.228267pt;}
.y17b{bottom:682.506803pt;}
.y40{bottom:683.065027pt;}
.y217{bottom:683.308267pt;}
.ye{bottom:683.628067pt;}
.y1d0{bottom:687.065427pt;}
.y2ba{bottom:687.867067pt;}
.y37f{bottom:688.988083pt;}
.y1b6{bottom:689.946483pt;}
.y354{bottom:690.661867pt;}
.y269{bottom:691.630083pt;}
.y323{bottom:691.707067pt;}
.yb7{bottom:691.948099pt;}
.y23f{bottom:692.749427pt;}
.y2ee{bottom:695.144267pt;}
.y28d{bottom:695.388171pt;}
.y13b{bottom:695.469539pt;}
.ye3{bottom:695.866283pt;}
.y216{bottom:697.948267pt;}
.y10f{bottom:698.348283pt;}
.y17a{bottom:698.746955pt;}
.y92{bottom:699.950323pt;}
.y3f{bottom:700.025467pt;}
.y2b9{bottom:702.267067pt;}
.y1cf{bottom:704.986251pt;}
.yd{bottom:704.987643pt;}
.y353{bottom:705.142267pt;}
.y322{bottom:706.107067pt;}
.y37e{bottom:706.667347pt;}
.y1b5{bottom:707.546691pt;}
.yb6{bottom:709.068115pt;}
.y268{bottom:709.230291pt;}
.y2ed{bottom:709.304267pt;}
.y23e{bottom:710.269115pt;}
.y215{bottom:712.507867pt;}
.y13a{bottom:712.749131pt;}
.y28c{bottom:713.067435pt;}
.ye2{bottom:713.226395pt;}
.y91{bottom:715.151035pt;}
.y10e{bottom:715.468299pt;}
.y179{bottom:716.107067pt;}
.y2b8{bottom:716.667067pt;}
.y3e{bottom:716.985907pt;}
.y352{bottom:719.622667pt;}
.y321{bottom:720.507067pt;}
.y1ce{bottom:722.826555pt;}
.y2ec{bottom:723.544667pt;}
.y37d{bottom:724.427131pt;}
.y1b4{bottom:725.225955pt;}
.yb5{bottom:726.188131pt;}
.yc{bottom:726.267067pt;}
.y267{bottom:726.749979pt;}
.y81{bottom:726.907067pt;}
.y214{bottom:727.147867pt;}
.y23d{bottom:727.788803pt;}
.y139{bottom:729.949667pt;}
.ye1{bottom:730.586507pt;}
.y28b{bottom:730.746699pt;}
.y2b7{bottom:731.067067pt;}
.y10d{bottom:732.188643pt;}
.y90{bottom:732.271051pt;}
.y178{bottom:732.827200pt;}
.y3d{bottom:733.865827pt;}
.y351{bottom:734.103067pt;}
.y320{bottom:734.907067pt;}
.y2eb{bottom:737.704667pt;}
.y1cd{bottom:740.666859pt;}
.y213{bottom:741.707467pt;}
.y37c{bottom:742.186915pt;}
.y1b3{bottom:742.905219pt;}
.yb4{bottom:743.308147pt;}
.y266{bottom:744.269667pt;}
.y23c{bottom:745.308491pt;}
.y2b6{bottom:745.467067pt;}
.yb{bottom:746.827027pt;}
.y138{bottom:747.229259pt;}
.ye0{bottom:747.866099pt;}
.y28a{bottom:748.427427pt;}
.y350{bottom:748.503067pt;}
.y31f{bottom:749.307067pt;}
.y10c{bottom:749.308659pt;}
.y73{bottom:749.309539pt;}
.y8f{bottom:749.310547pt;}
.y3c{bottom:750.826267pt;}
.y2ea{bottom:751.945067pt;}
.y212{bottom:756.347467pt;}
.y1cc{bottom:758.586219pt;}
.y2b5{bottom:759.867067pt;}
.y37b{bottom:759.867643pt;}
.yb3{bottom:760.268587pt;}
.y1b2{bottom:760.584483pt;}
.y265{bottom:761.789355pt;}
.y23b{bottom:762.828179pt;}
.y34f{bottom:762.983467pt;}
.y31e{bottom:763.707067pt;}
.ya{bottom:764.187139pt;}
.y137{bottom:764.508851pt;}
.ydf{bottom:765.226211pt;}
.y10b{bottom:765.867963pt;}
.y289{bottom:766.027635pt;}
.y2e9{bottom:766.105067pt;}
.y72{bottom:766.349035pt;}
.y8e{bottom:766.350043pt;}
.y3b{bottom:767.786707pt;}
.y211{bottom:770.907067pt;}
.y2b4{bottom:774.267067pt;}
.yb2{bottom:776.268643pt;}
.y1cb{bottom:776.426523pt;}
.y34e{bottom:777.463867pt;}
.y37a{bottom:777.627427pt;}
.y31d{bottom:778.107067pt;}
.y1b1{bottom:778.263747pt;}
.y264{bottom:779.309043pt;}
.y2e8{bottom:780.345467pt;}
.y23a{bottom:780.428387pt;}
.y136{bottom:781.788443pt;}
.y9{bottom:782.027443pt;}
.y10a{bottom:782.427267pt;}
.yde{bottom:782.586323pt;}
.y288{bottom:783.307227pt;}
.y71{bottom:783.469051pt;}
.y8d{bottom:783.470059pt;}
.y3a{bottom:784.666627pt;}
.y210{bottom:785.547067pt;}
.y2b3{bottom:788.667067pt;}
.y34d{bottom:791.944267pt;}
.y31c{bottom:792.507067pt;}
.y1ca{bottom:794.266827pt;}
.y2e7{bottom:794.505467pt;}
.y379{bottom:795.387211pt;}
.y1b0{bottom:795.944475pt;}
.y263{bottom:796.828731pt;}
.y239{bottom:797.948075pt;}
.y135{bottom:799.068035pt;}
.y109{bottom:799.547283pt;}
.y287{bottom:799.627899pt;}
.ydd{bottom:799.865915pt;}
.y20f{bottom:800.187067pt;}
.yb1{bottom:800.348515pt;}
.y70{bottom:800.508547pt;}
.y8c{bottom:800.509555pt;}
.y39{bottom:801.625547pt;}
.y2b2{bottom:803.067067pt;}
.y8{bottom:805.467547pt;}
.y34c{bottom:806.424667pt;}
.y31b{bottom:806.907067pt;}
.y2e6{bottom:808.745867pt;}
.y1c9{bottom:812.186187pt;}
.y378{bottom:813.067939pt;}
.y1af{bottom:813.544683pt;}
.y262{bottom:814.428939pt;}
.y238{bottom:815.467763pt;}
.y7{bottom:816.027379pt;}
.y134{bottom:816.347627pt;}
.y108{bottom:816.667299pt;}
.ydc{bottom:817.066451pt;}
.y2b1{bottom:817.467067pt;}
.y286{bottom:817.468203pt;}
.y6f{bottom:817.548043pt;}
.y8b{bottom:817.549051pt;}
.y38{bottom:818.585987pt;}
.y20e{bottom:820.427067pt;}
.y34b{bottom:820.905067pt;}
.y31a{bottom:821.307067pt;}
.y2e5{bottom:822.905867pt;}
.y1c8{bottom:830.026491pt;}
.y377{bottom:830.827723pt;}
.y1ae{bottom:831.225411pt;}
.y6{bottom:831.387667pt;}
.y2b0{bottom:831.867067pt;}
.y261{bottom:831.948627pt;}
.y285{bottom:832.828491pt;}
.y237{bottom:832.987451pt;}
.y20d{bottom:833.387067pt;}
.y133{bottom:833.548163pt;}
.y107{bottom:833.867835pt;}
.ydb{bottom:834.266987pt;}
.y6e{bottom:834.668059pt;}
.y8a{bottom:834.669067pt;}
.y34a{bottom:835.305067pt;}
.y37{bottom:835.465907pt;}
.y319{bottom:835.707067pt;}
.y2e4{bottom:837.146267pt;}
.y2af{bottom:846.267067pt;}
.y1c7{bottom:847.866795pt;}
.y376{bottom:848.587507pt;}
.y1ad{bottom:848.904675pt;}
.y260{bottom:849.468315pt;}
.y349{bottom:849.785467pt;}
.y20c{bottom:850.106667pt;}
.y318{bottom:850.107067pt;}
.y236{bottom:850.507139pt;}
.y132{bottom:850.827755pt;}
.y106{bottom:850.987851pt;}
.y2e3{bottom:851.306267pt;}
.yda{bottom:851.387003pt;}
.y6d{bottom:851.707555pt;}
.y89{bottom:851.708563pt;}
.y36{bottom:852.426347pt;}
.y5{bottom:855.867211pt;}
.y2ae{bottom:860.667067pt;}
.y348{bottom:864.265867pt;}
.y317{bottom:864.507067pt;}
.y20b{bottom:865.146267pt;}
.y2e2{bottom:865.546667pt;}
.y1c6{bottom:865.786155pt;}
.y375{bottom:866.266771pt;}
.y1ac{bottom:866.585403pt;}
.y25f{bottom:866.988003pt;}
.y131{bottom:868.107347pt;}
.y105{bottom:868.107867pt;}
.yd9{bottom:868.507019pt;}
.y6c{bottom:868.747051pt;}
.y88{bottom:868.748059pt;}
.y35{bottom:869.386787pt;}
.y4{bottom:871.947787pt;}
.y2ad{bottom:875.067067pt;}
.y347{bottom:878.746267pt;}
.y316{bottom:878.907067pt;}
.y20a{bottom:879.465867pt;}
.y2e1{bottom:879.706667pt;}
.y1c5{bottom:883.626459pt;}
.y374{bottom:884.026555pt;}
.y1ab{bottom:884.266131pt;}
.y25e{bottom:884.507691pt;}
.y104{bottom:885.227883pt;}
.y130{bottom:885.386939pt;}
.yd8{bottom:885.627035pt;}
.y6b{bottom:885.867571pt;}
.y87{bottom:885.868075pt;}
.y34{bottom:886.266707pt;}
.y2ac{bottom:889.467067pt;}
.y3{bottom:892.107067pt;}
.y346{bottom:893.226667pt;}
.y315{bottom:893.307067pt;}
.y209{bottom:893.706267pt;}
.y2e0{bottom:893.947067pt;}
.y1c4{bottom:901.466763pt;}
.y373{bottom:901.786339pt;}
.y1aa{bottom:901.946859pt;}
.y25d{bottom:902.027379pt;}
.y103{bottom:902.507475pt;}
.y12f{bottom:902.666531pt;}
.yd7{bottom:902.747051pt;}
.y6a{bottom:902.907571pt;}
.y33{bottom:903.227147pt;}
.y2ab{bottom:904.107627pt;}
.y2{bottom:907.227179pt;}
.y314{bottom:907.707067pt;}
.y208{bottom:907.946667pt;}
.y2df{bottom:908.107067pt;}
.y1c3{bottom:919.307067pt;}
.y372{bottom:919.467067pt;}
.y1a9{bottom:919.547067pt;}
.y102{bottom:919.787067pt;}
.yd6{bottom:919.867067pt;}
.y69{bottom:919.947067pt;}
.y32{bottom:920.107067pt;}
.y1{bottom:921.867067pt;}
.y313{bottom:922.107067pt;}
.y207{bottom:922.187067pt;}
.y2de{bottom:922.267067pt;}
.y61{bottom:930.027067pt;}
.y30{bottom:955.227075pt;}
.y31{bottom:970.506907pt;}
.y2f{bottom:970.587067pt;}
.hd{height:13.343750pt;}
.hc{height:26.687500pt;}
.h15{height:31.224375pt;}
.h14{height:35.494375pt;}
.h7{height:37.105312pt;}
.h6{height:40.031250pt;}
.h9{height:40.660312pt;}
.hf{height:41.156250pt;}
.h2{height:44.568125pt;}
.h1{height:45.820625pt;}
.h3{height:48.838125pt;}
.h17{height:48.845773pt;}
.h16{height:48.847117pt;}
.h4{height:50.210625pt;}
.he{height:53.375000pt;}
.h19{height:57.748183pt;}
.h18{height:57.754551pt;}
.h11{height:57.782359pt;}
.hb{height:57.782892pt;}
.h10{height:57.784375pt;}
.h13{height:57.784567pt;}
.h12{height:57.790039pt;}
.h8{height:57.790455pt;}
.ha{height:57.803191pt;}
.h5{height:63.929375pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:162.560000pt;}
.x22{left:164.400000pt;}
.xd{left:167.120000pt;}
.x1d{left:175.600400pt;}
.xe{left:178.399200pt;}
.x2{left:181.520000pt;}
.x5{left:185.919480pt;}
.x4{left:192.080000pt;}
.x29{left:198.079304pt;}
.x7{left:200.400000pt;}
.x1e{left:221.760800pt;}
.x6{left:223.520088pt;}
.x16{left:225.200168pt;}
.x1f{left:232.401200pt;}
.x19{left:239.599808pt;}
.x2a{left:265.519928pt;}
.xf{left:287.280000pt;}
.x3{left:291.599624pt;}
.x28{left:297.360464pt;}
.x20{left:298.641200pt;}
.x24{left:305.200448pt;}
.xc{left:306.159408pt;}
.x15{left:324.719960pt;}
.x17{left:329.600936pt;}
.x26{left:341.921960pt;}
.x8{left:362.640224pt;}
.x25{left:367.520000pt;}
.x27{left:368.480000pt;}
.x2b{left:376.559936pt;}
.x10{left:400.640000pt;}
.x13{left:402.560000pt;}
.xa{left:424.000000pt;}
.xb{left:442.959960pt;}
.x9{left:453.600000pt;}
.x23{left:567.840000pt;}
.x21{left:577.761200pt;}
.x14{left:591.520000pt;}
.x18{left:621.200000pt;}
.x12{left:622.479336pt;}
.x1b{left:623.680000pt;}
.x1c{left:625.600000pt;}
.x11{left:642.559416pt;}
.x1a{left:644.320000pt;}
}




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