
    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_87b2ffa01c982394107eb9f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c697685e68aabb934bfd7bef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_b7848d3c7f73d7ac8fe1aec8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_36356f87b8205c3d258acd95.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d1cc3e65629a64c3c01f84f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf68583df6af160c85013721.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9e5fd2e328682181dee6050e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7651e82ae2951e6138cfbd57.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9ba9641843c55708e9ca38ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23a0caf1c942ce88e9156c95.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2834e80e083e02bd330167ec.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.777000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_61e47597cbafd3fb55b58689.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.925000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls20{letter-spacing:-2.086168px;}
.ls75{letter-spacing:-1.407415px;}
.ls5e{letter-spacing:-0.401695px;}
.lsa6{letter-spacing:-0.396312px;}
.ls54{letter-spacing:-0.308444px;}
.lsa5{letter-spacing:-0.279451px;}
.lsa7{letter-spacing:-0.269289px;}
.lsa2{letter-spacing:-0.259127px;}
.ls94{letter-spacing:-0.254046px;}
.ls78{letter-spacing:-0.248965px;}
.ls45{letter-spacing:-0.246061px;}
.ls5c{letter-spacing:-0.243886px;}
.ls35{letter-spacing:-0.243884px;}
.ls3a{letter-spacing:-0.238803px;}
.ls7b{letter-spacing:-0.233722px;}
.ls38{letter-spacing:-0.228641px;}
.ls64{letter-spacing:-0.223562px;}
.ls3b{letter-spacing:-0.223560px;}
.ls22{letter-spacing:-0.221170px;}
.ls3c{letter-spacing:-0.218480px;}
.ls3e{letter-spacing:-0.216054px;}
.ls74{letter-spacing:-0.213399px;}
.ls39{letter-spacing:-0.208318px;}
.ls50{letter-spacing:-0.203237px;}
.ls36{letter-spacing:-0.198156px;}
.ls7e{letter-spacing:-0.193075px;}
.ls8f{letter-spacing:-0.187994px;}
.ls52{letter-spacing:-0.186046px;}
.ls9b{letter-spacing:-0.182913px;}
.ls4a{letter-spacing:-0.180045px;}
.lsa4{letter-spacing:-0.172751px;}
.ls9e{letter-spacing:-0.167670px;}
.ls8a{letter-spacing:-0.162589px;}
.ls70{letter-spacing:-0.156039px;}
.ls87{letter-spacing:-0.152428px;}
.ls68{letter-spacing:-0.150037px;}
.ls3f{letter-spacing:-0.144036px;}
.ls89{letter-spacing:-0.142266px;}
.ls8d{letter-spacing:-0.137185px;}
.ls8c{letter-spacing:-0.132104px;}
.ls51{letter-spacing:-0.126031px;}
.ls9a{letter-spacing:-0.121942px;}
.ls49{letter-spacing:-0.114028px;}
.lsa0{letter-spacing:-0.111780px;}
.ls3d{letter-spacing:-0.108027px;}
.ls58{letter-spacing:-0.102025px;}
.ls73{letter-spacing:-0.101618px;}
.ls92{letter-spacing:-0.096537px;}
.ls2c{letter-spacing:-0.096024px;}
.ls2f{letter-spacing:-0.090022px;}
.ls7f{letter-spacing:-0.086376px;}
.ls31{letter-spacing:-0.084021px;}
.ls47{letter-spacing:-0.078019px;}
.ls29{letter-spacing:-0.072018px;}
.ls7d{letter-spacing:-0.071133px;}
.ls56{letter-spacing:-0.066016px;}
.ls96{letter-spacing:-0.060971px;}
.ls61{letter-spacing:-0.060015px;}
.ls30{letter-spacing:-0.054013px;}
.ls44{letter-spacing:-0.048012px;}
.ls97{letter-spacing:-0.045728px;}
.ls53{letter-spacing:-0.042010px;}
.ls99{letter-spacing:-0.040647px;}
.ls42{letter-spacing:-0.036009px;}
.ls95{letter-spacing:-0.035566px;}
.ls40{letter-spacing:-0.030007px;}
.ls76{letter-spacing:-0.025405px;}
.ls32{letter-spacing:-0.024006px;}
.ls41{letter-spacing:-0.018004px;}
.ls90{letter-spacing:-0.015243px;}
.ls5f{letter-spacing:-0.012003px;}
.ls69{letter-spacing:-0.006575px;}
.ls28{letter-spacing:-0.006001px;}
.ls9d{letter-spacing:-0.005081px;}
.ls0{letter-spacing:0.000000px;}
.ls85{letter-spacing:0.005081px;}
.ls16{letter-spacing:0.006001px;}
.ls66{letter-spacing:0.006575px;}
.ls1c{letter-spacing:0.012003px;}
.ls65{letter-spacing:0.018004px;}
.ls15{letter-spacing:0.024006px;}
.ls4d{letter-spacing:0.030007px;}
.lsa3{letter-spacing:0.030486px;}
.ls80{letter-spacing:0.035566px;}
.ls7{letter-spacing:0.036009px;}
.ls10{letter-spacing:0.042010px;}
.ls7c{letter-spacing:0.043039px;}
.ls4e{letter-spacing:0.048012px;}
.ls72{letter-spacing:0.050809px;}
.ls9{letter-spacing:0.054013px;}
.ls1{letter-spacing:0.057026px;}
.ls4c{letter-spacing:0.057385px;}
.lsf{letter-spacing:0.060015px;}
.ls11{letter-spacing:0.066016px;}
.ls1b{letter-spacing:0.072018px;}
.ls6b{letter-spacing:0.076214px;}
.ls19{letter-spacing:0.078019px;}
.ls6c{letter-spacing:0.081295px;}
.lsd{letter-spacing:0.084021px;}
.ls1f{letter-spacing:0.086077px;}
.ls83{letter-spacing:0.086376px;}
.ls4b{letter-spacing:0.090022px;}
.ls6e{letter-spacing:0.093251px;}
.ls17{letter-spacing:0.096024px;}
.ls5a{letter-spacing:0.098630px;}
.ls34{letter-spacing:0.102025px;}
.ls1d{letter-spacing:0.108027px;}
.ls18{letter-spacing:0.114028px;}
.ls82{letter-spacing:0.116861px;}
.ls6{letter-spacing:0.120030px;}
.ls4f{letter-spacing:0.126031px;}
.ls71{letter-spacing:0.127023px;}
.lsc{letter-spacing:0.132033px;}
.ls81{letter-spacing:0.132104px;}
.ls26{letter-spacing:0.138034px;}
.ls8{letter-spacing:0.144036px;}
.ls1a{letter-spacing:0.150037px;}
.ls27{letter-spacing:0.156039px;}
.ls9f{letter-spacing:0.157509px;}
.ls2b{letter-spacing:0.162040px;}
.ls88{letter-spacing:0.167670px;}
.ls43{letter-spacing:0.168042px;}
.ls2d{letter-spacing:0.174043px;}
.ls8e{letter-spacing:0.177832px;}
.ls2e{letter-spacing:0.180045px;}
.ls33{letter-spacing:0.186046px;}
.lse{letter-spacing:0.192048px;}
.ls84{letter-spacing:0.193075px;}
.ls57{letter-spacing:0.198049px;}
.lsb{letter-spacing:0.204051px;}
.ls37{letter-spacing:0.208318px;}
.ls9c{letter-spacing:0.213399px;}
.ls6d{letter-spacing:0.215194px;}
.ls8b{letter-spacing:0.218480px;}
.ls6f{letter-spacing:0.222367px;}
.ls86{letter-spacing:0.228641px;}
.lsa{letter-spacing:0.234058px;}
.ls55{letter-spacing:0.236713px;}
.ls93{letter-spacing:0.238803px;}
.ls7a{letter-spacing:0.243884px;}
.ls5d{letter-spacing:0.243886px;}
.ls79{letter-spacing:0.248965px;}
.ls62{letter-spacing:0.251059px;}
.lsa1{letter-spacing:0.254046px;}
.ls6a{letter-spacing:0.263014px;}
.ls67{letter-spacing:0.264066px;}
.ls91{letter-spacing:0.264208px;}
.ls98{letter-spacing:0.269289px;}
.ls77{letter-spacing:0.274370px;}
.ls59{letter-spacing:0.276069px;}
.ls24{letter-spacing:0.284532px;}
.ls63{letter-spacing:0.286925px;}
.ls5b{letter-spacing:0.288072px;}
.ls2{letter-spacing:0.289612px;}
.ls25{letter-spacing:0.294693px;}
.ls1e{letter-spacing:0.320098px;}
.ls21{letter-spacing:11.811658px;}
.ls14{letter-spacing:12.417103px;}
.ls5{letter-spacing:12.456031px;}
.ls23{letter-spacing:12.534943px;}
.ls4{letter-spacing:13.176093px;}
.ls3{letter-spacing:13.896018px;}
.ls48{letter-spacing:14.277568px;}
.ls46{letter-spacing:14.997748px;}
.ls60{letter-spacing:18.892721px;}
.ls2a{letter-spacing:23.213801px;}
.ls12{letter-spacing:34.929574px;}
.ls13{letter-spacing:67.747193px;}
.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;}
}
.ws87{word-spacing:-35.922985px;}
.ws1ef{word-spacing:-35.908639px;}
.wsdd{word-spacing:-35.463905px;}
.ws15{word-spacing:-23.273816px;}
.ws10a{word-spacing:-23.032889px;}
.ws19b{word-spacing:-22.889426px;}
.ws19c{word-spacing:-22.545116px;}
.wsdc{word-spacing:-22.229499px;}
.ws86{word-spacing:-22.207980px;}
.ws19d{word-spacing:-22.186460px;}
.ws109{word-spacing:-21.684342px;}
.wsdb{word-spacing:-20.909644px;}
.ws85{word-spacing:-19.338731px;}
.wsfc{word-spacing:-18.952736px;}
.ws4e{word-spacing:-15.057763px;}
.ws5c{word-spacing:-14.337583px;}
.ws8{word-spacing:-12.594719px;}
.ws3a{word-spacing:-12.477118px;}
.ws6{word-spacing:-11.871434px;}
.ws135{word-spacing:-0.348087px;}
.ws2{word-spacing:-0.340422px;}
.ws11f{word-spacing:-0.336084px;}
.ws203{word-spacing:-0.325179px;}
.ws241{word-spacing:-0.320098px;}
.ws1ed{word-spacing:-0.294693px;}
.ws12{word-spacing:-0.294073px;}
.ws286{word-spacing:-0.259127px;}
.ws277{word-spacing:-0.243884px;}
.ws223{word-spacing:-0.177832px;}
.ws84{word-spacing:-0.150037px;}
.ws263{word-spacing:-0.132104px;}
.ws1{word-spacing:-0.114052px;}
.ws221{word-spacing:-0.086376px;}
.ws222{word-spacing:-0.050809px;}
.ws0{word-spacing:0.000000px;}
.ws227{word-spacing:0.137185px;}
.ws30{word-spacing:0.147347px;}
.ws1ee{word-spacing:0.152428px;}
.ws20d{word-spacing:0.157509px;}
.ws1fd{word-spacing:0.162589px;}
.ws1f7{word-spacing:0.167670px;}
.ws26a{word-spacing:0.172751px;}
.ws24e{word-spacing:0.177832px;}
.ws291{word-spacing:0.182913px;}
.ws278{word-spacing:0.193075px;}
.ws9{word-spacing:8.363194px;}
.wsa{word-spacing:9.105008px;}
.ws204{word-spacing:9.232031px;}
.ws283{word-spacing:9.277760px;}
.ws3{word-spacing:9.577534px;}
.ws218{word-spacing:9.597858px;}
.ws292{word-spacing:9.978927px;}
.ws1e8{word-spacing:9.994170px;}
.ws1ea{word-spacing:10.055140px;}
.ws240{word-spacing:10.232972px;}
.ws1e2{word-spacing:10.288863px;}
.ws282{word-spacing:10.304106px;}
.ws1d8{word-spacing:10.405724px;}
.ws242{word-spacing:10.624204px;}
.ws1e0{word-spacing:10.715660px;}
.ws205{word-spacing:10.852844px;}
.ws1db{word-spacing:10.969706px;}
.ws1e9{word-spacing:11.005272px;}
.ws239{word-spacing:11.193266px;}
.ws39{word-spacing:11.252812px;}
.ws166{word-spacing:11.294823px;}
.ws7e{word-spacing:11.312827px;}
.ws8e{word-spacing:11.390847px;}
.ws23a{word-spacing:11.416827px;}
.ws172{word-spacing:11.421365px;}
.ws294{word-spacing:11.457474px;}
.ws68{word-spacing:11.468866px;}
.ws26e{word-spacing:11.482879px;}
.ws25f{word-spacing:11.559093px;}
.ws230{word-spacing:11.574335px;}
.ws199{word-spacing:11.612902px;}
.ws67{word-spacing:11.732932px;}
.ws1de{word-spacing:11.747087px;}
.ws1e1{word-spacing:11.762330px;}
.ws293{word-spacing:11.802977px;}
.ws191{word-spacing:11.894973px;}
.ws250{word-spacing:11.950324px;}
.ws24c{word-spacing:11.970647px;}
.ws1d9{word-spacing:12.067185px;}
.ws116{word-spacing:12.111027px;}
.ws124{word-spacing:12.131503px;}
.ws202{word-spacing:12.219612px;}
.ws290{word-spacing:12.275502px;}
.ws66{word-spacing:12.279068px;}
.ws287{word-spacing:12.295826px;}
.wsf8{word-spacing:12.333082px;}
.ws17e{word-spacing:12.357088px;}
.ws238{word-spacing:12.392363px;}
.ws1e7{word-spacing:12.407606px;}
.ws1d7{word-spacing:12.463497px;}
.ws121{word-spacing:12.483119px;}
.ws14f{word-spacing:12.507126px;}
.ws16f{word-spacing:12.537133px;}
.ws1cb{word-spacing:12.543134px;}
.ws198{word-spacing:12.555137px;}
.ws119{word-spacing:12.627156px;}
.ws171{word-spacing:12.677255px;}
.ws8c{word-spacing:12.735182px;}
.ws7{word-spacing:12.738180px;}
.ws5f{word-spacing:12.759188px;}
.wsee{word-spacing:12.783194px;}
.ws18d{word-spacing:12.807201px;}
.ws1be{word-spacing:12.819203px;}
.ws1b0{word-spacing:12.837208px;}
.ws233{word-spacing:12.844565px;}
.ws1bf{word-spacing:12.903224px;}
.wsa3{word-spacing:12.921229px;}
.ws56{word-spacing:12.933232px;}
.ws23c{word-spacing:12.961426px;}
.ws165{word-spacing:12.975242px;}
.ws1f3{word-spacing:12.986831px;}
.wsd6{word-spacing:12.999248px;}
.ws74{word-spacing:13.007155px;}
.ws77{word-spacing:13.023254px;}
.ws8d{word-spacing:13.071267px;}
.ws244{word-spacing:13.098611px;}
.ws26f{word-spacing:13.129097px;}
.ws1d0{word-spacing:13.131282px;}
.ws207{word-spacing:13.139259px;}
.ws170{word-spacing:13.150680px;}
.ws235{word-spacing:13.154502px;}
.ws236{word-spacing:13.159583px;}
.ws150{word-spacing:13.233307px;}
.ws1cf{word-spacing:13.251312px;}
.ws28d{word-spacing:13.261201px;}
.ws105{word-spacing:13.269316px;}
.ws157{word-spacing:13.317328px;}
.ws232{word-spacing:13.327253px;}
.ws260{word-spacing:13.393305px;}
.ws23d{word-spacing:13.423790px;}
.ws212{word-spacing:13.428872px;}
.ws20f{word-spacing:13.489842px;}
.ws164{word-spacing:13.515377px;}
.ws101{word-spacing:13.521379px;}
.wse5{word-spacing:13.527381px;}
.ws254{word-spacing:13.530490px;}
.ws111{word-spacing:13.581394px;}
.ws1f4{word-spacing:13.591460px;}
.wsd5{word-spacing:13.599398px;}
.ws20c{word-spacing:13.601622px;}
.ws32{word-spacing:13.621946px;}
.ws224{word-spacing:13.632109px;}
.ws1a5{word-spacing:13.647411px;}
.ws2f{word-spacing:13.652431px;}
.ws151{word-spacing:13.671417px;}
.ws23e{word-spacing:13.672755px;}
.ws28e{word-spacing:13.677837px;}
.wsda{word-spacing:13.728646px;}
.ws130{word-spacing:13.755437px;}
.ws251{word-spacing:13.830264px;}
.ws234{word-spacing:13.891235px;}
.ws26c{word-spacing:13.911559px;}
.ws81{word-spacing:13.935482px;}
.ws55{word-spacing:13.947486px;}
.ws123{word-spacing:13.985748px;}
.wsdf{word-spacing:14.019503px;}
.ws284{word-spacing:14.084309px;}
.ws5b{word-spacing:14.103524px;}
.ws5d{word-spacing:14.109526px;}
.ws219{word-spacing:14.150362px;}
.ws23f{word-spacing:14.236737px;}
.ws158{word-spacing:14.247561px;}
.ws24b{word-spacing:14.282457px;}
.wsd{word-spacing:14.283569px;}
.ws102{word-spacing:14.295572px;}
.wsd3{word-spacing:14.307576px;}
.ws38{word-spacing:14.328195px;}
.wsd0{word-spacing:14.331582px;}
.ws35{word-spacing:14.333275px;}
.ws1f2{word-spacing:14.368842px;}
.ws1d4{word-spacing:14.384084px;}
.ws18b{word-spacing:14.385595px;}
.ws289{word-spacing:14.394245px;}
.ws220{word-spacing:14.434894px;}
.ws72{word-spacing:14.439608px;}
.ws285{word-spacing:14.450135px;}
.ws1e4{word-spacing:14.485703px;}
.ws4f{word-spacing:14.517628px;}
.ws7f{word-spacing:14.523629px;}
.ws197{word-spacing:14.553637px;}
.ws22{word-spacing:14.625655px;}
.ws153{word-spacing:14.637658px;}
.ws71{word-spacing:14.835707px;}
.wsf3{word-spacing:14.853712px;}
.ws131{word-spacing:14.859713px;}
.ws1a4{word-spacing:14.901724px;}
.ws149{word-spacing:14.943734px;}
.ws22d{word-spacing:14.983633px;}
.ws1f6{word-spacing:14.998866px;}
.ws229{word-spacing:14.998876px;}
.ws100{word-spacing:15.003749px;}
.wsb9{word-spacing:15.015752px;}
.ws245{word-spacing:15.024280px;}
.ws1af{word-spacing:15.183794px;}
.ws80{word-spacing:15.207801px;}
.ws20a{word-spacing:15.278325px;}
.ws24f{word-spacing:15.329135px;}
.ws15a{word-spacing:15.345834px;}
.ws1eb{word-spacing:15.349458px;}
.ws12c{word-spacing:15.381844px;}
.ws4a{word-spacing:15.387846px;}
.wsa1{word-spacing:15.393848px;}
.ws70{word-spacing:15.399849px;}
.ws31{word-spacing:15.405348px;}
.ws17f{word-spacing:15.435857px;}
.ws96{word-spacing:15.447861px;}
.ws20b{word-spacing:15.512048px;}
.ws152{word-spacing:15.597897px;}
.ws44{word-spacing:15.627906px;}
.ws1f8{word-spacing:15.633991px;}
.ws36{word-spacing:15.649233px;}
.ws267{word-spacing:15.684800px;}
.ws1a6{word-spacing:15.687921px;}
.ws12e{word-spacing:15.699924px;}
.ws7b{word-spacing:15.705924px;}
.ws1fb{word-spacing:15.720367px;}
.ws9b{word-spacing:15.723929px;}
.ws1ff{word-spacing:15.725447px;}
.ws18e{word-spacing:15.747936px;}
.ws225{word-spacing:15.791499px;}
.ws2e{word-spacing:15.807951px;}
.ws7c{word-spacing:15.879969px;}
.ws25{word-spacing:15.891971px;}
.wse4{word-spacing:15.915977px;}
.ws1c2{word-spacing:15.927981px;}
.ws1e3{word-spacing:15.984573px;}
.ws1c0{word-spacing:15.987996px;}
.ws201{word-spacing:16.020140px;}
.ws257{word-spacing:16.030302px;}
.ws24{word-spacing:16.078017px;}
.wsb3{word-spacing:16.096022px;}
.ws1b1{word-spacing:16.114028px;}
.ws1fa{word-spacing:16.142082px;}
.ws16a{word-spacing:16.156037px;}
.ws27f{word-spacing:16.167487px;}
.ws50{word-spacing:16.204049px;}
.ws163{word-spacing:16.222054px;}
.ws5{word-spacing:16.229075px;}
.ws1d1{word-spacing:16.240059px;}
.ws1a2{word-spacing:16.276067px;}
.ws1f1{word-spacing:16.324995px;}
.ws43{word-spacing:16.330081px;}
.ws3c{word-spacing:16.360089px;}
.ws1ae{word-spacing:16.414103px;}
.wsa6{word-spacing:16.432106px;}
.wsb1{word-spacing:16.444109px;}
.ws187{word-spacing:16.456112px;}
.wsad{word-spacing:16.468116px;}
.ws18c{word-spacing:16.480119px;}
.ws22f{word-spacing:16.497746px;}
.wsc6{word-spacing:16.540134px;}
.ws22c{word-spacing:16.543475px;}
.ws280{word-spacing:16.563798px;}
.ws129{word-spacing:16.564139px;}
.ws231{word-spacing:16.573961px;}
.ws1df{word-spacing:16.589203px;}
.ws1f0{word-spacing:16.604446px;}
.ws1ec{word-spacing:16.614608px;}
.ws9e{word-spacing:16.624154px;}
.ws108{word-spacing:16.648161px;}
.wsb4{word-spacing:16.684169px;}
.ws6e{word-spacing:16.708176px;}
.ws252{word-spacing:16.726387px;}
.ws26b{word-spacing:16.741631px;}
.ws27e{word-spacing:16.761954px;}
.wsd9{word-spacing:16.768191px;}
.ws28{word-spacing:16.774193px;}
.ws1d5{word-spacing:16.782279px;}
.ws10e{word-spacing:16.828206px;}
.ws7d{word-spacing:16.840209px;}
.ws1b6{word-spacing:16.858212px;}
.wsa7{word-spacing:16.864214px;}
.ws19{word-spacing:16.912225px;}
.ws1f9{word-spacing:16.929625px;}
.wse7{word-spacing:16.948236px;}
.ws1f{word-spacing:16.954238px;}
.ws169{word-spacing:16.978242px;}
.wse6{word-spacing:17.002249px;}
.ws1b4{word-spacing:17.008251px;}
.ws213{word-spacing:17.041406px;}
.ws159{word-spacing:17.044259px;}
.ws200{word-spacing:17.071891px;}
.ws104{word-spacing:17.098272px;}
.ws1c3{word-spacing:17.104274px;}
.ws79{word-spacing:17.140284px;}
.ws217{word-spacing:17.143024px;}
.ws161{word-spacing:17.152286px;}
.ws143{word-spacing:17.164289px;}
.ws14d{word-spacing:17.176292px;}
.ws288{word-spacing:17.183671px;}
.ws246{word-spacing:17.188752px;}
.ws95{word-spacing:17.206299px;}
.ws4d{word-spacing:17.230306px;}
.wsd2{word-spacing:17.248311px;}
.ws29{word-spacing:17.266314px;}
.ws253{word-spacing:17.270047px;}
.ws4{word-spacing:17.282365px;}
.ws1a{word-spacing:17.290321px;}
.wseb{word-spacing:17.296322px;}
.ws18a{word-spacing:17.302324px;}
.ws54{word-spacing:17.332331px;}
.ws180{word-spacing:17.344334px;}
.ws1a1{word-spacing:17.368341px;}
.ws133{word-spacing:17.380344px;}
.ws21b{word-spacing:17.432636px;}
.ws1e5{word-spacing:17.447878px;}
.ws98{word-spacing:17.452361px;}
.ws1da{word-spacing:17.463121px;}
.ws117{word-spacing:17.476367px;}
.ws1fe{word-spacing:17.478365px;}
.ws266{word-spacing:17.508849px;}
.ws1ac{word-spacing:17.524379px;}
.ws122{word-spacing:17.536382px;}
.ws27{word-spacing:17.560389px;}
.ws264{word-spacing:17.610468px;}
.ws185{word-spacing:17.620404px;}
.ws190{word-spacing:17.644409px;}
.ws271{word-spacing:17.661277px;}
.ws15e{word-spacing:17.698422px;}
.wsb7{word-spacing:17.722429px;}
.ws154{word-spacing:17.746434px;}
.ws61{word-spacing:17.764439px;}
.ws140{word-spacing:17.776442px;}
.ws1ab{word-spacing:17.806449px;}
.ws1d2{word-spacing:17.812451px;}
.ws103{word-spacing:17.824454px;}
.ws195{word-spacing:17.860464px;}
.ws57{word-spacing:17.890471px;}
.ws1cd{word-spacing:17.920479px;}
.ws1e6{word-spacing:17.930565px;}
.wsfd{word-spacing:17.932481px;}
.ws37{word-spacing:17.940727px;}
.ws27c{word-spacing:17.950889px;}
.ws270{word-spacing:17.971213px;}
.ws19a{word-spacing:17.980494px;}
.ws34{word-spacing:17.981376px;}
.ws1b2{word-spacing:17.986494px;}
.ws132{word-spacing:17.992496px;}
.ws23b{word-spacing:18.027104px;}
.ws6a{word-spacing:18.028506px;}
.ws179{word-spacing:18.052511px;}
.ws1b3{word-spacing:18.082519px;}
.ws106{word-spacing:18.100524px;}
.ws112{word-spacing:18.124529px;}
.ws6d{word-spacing:18.160539px;}
.ws22e{word-spacing:18.199855px;}
.ws27d{word-spacing:18.210016px;}
.wsfa{word-spacing:18.262564px;}
.ws11b{word-spacing:18.322579px;}
.ws91{word-spacing:18.364589px;}
.ws1e{word-spacing:18.370591px;}
.ws145{word-spacing:18.376592px;}
.ws69{word-spacing:18.388596px;}
.ws156{word-spacing:18.400599px;}
.ws118{word-spacing:18.508626px;}
.ws137{word-spacing:18.568641px;}
.wsc4{word-spacing:18.580644px;}
.ws60{word-spacing:18.592645px;}
.ws94{word-spacing:18.604649px;}
.wsb{word-spacing:18.652660px;}
.ws17{word-spacing:18.748686px;}
.ws20{word-spacing:18.772690px;}
.wsf2{word-spacing:18.808701px;}
.ws3b{word-spacing:18.844709px;}
.ws174{word-spacing:18.862714px;}
.wsde{word-spacing:18.904724px;}
.ws237{word-spacing:18.916265px;}
.wsec{word-spacing:18.916727px;}
.ws21d{word-spacing:18.921345px;}
.ws138{word-spacing:18.928731px;}
.ws15d{word-spacing:18.958737px;}
.ws21c{word-spacing:18.997559px;}
.ws155{word-spacing:19.036757px;}
.ws173{word-spacing:19.072765px;}
.wsd4{word-spacing:19.084769px;}
.ws21f{word-spacing:19.119501px;}
.ws21{word-spacing:19.138782px;}
.ws265{word-spacing:19.165230px;}
.wsfb{word-spacing:19.168791px;}
.wsf9{word-spacing:19.192795px;}
.ws1c6{word-spacing:19.204799px;}
.ws255{word-spacing:19.236362px;}
.ws26d{word-spacing:19.246524px;}
.wsed{word-spacing:19.252810px;}
.ws216{word-spacing:19.261767px;}
.ws16c{word-spacing:19.270816px;}
.ws178{word-spacing:19.276817px;}
.ws10d{word-spacing:19.288821px;}
.ws211{word-spacing:19.312576px;}
.ws1b7{word-spacing:19.324829px;}
.ws12f{word-spacing:19.336832px;}
.ws28c{word-spacing:19.363385px;}
.ws5a{word-spacing:19.396847px;}
.ws21e{word-spacing:19.490409px;}
.wsc0{word-spacing:19.492870px;}
.ws17d{word-spacing:19.504874px;}
.ws25d{word-spacing:19.505652px;}
.ws269{word-spacing:19.510732px;}
.ws22a{word-spacing:19.525975px;}
.ws26{word-spacing:19.528881px;}
.wsc{word-spacing:19.540884px;}
.ws114{word-spacing:19.552885px;}
.ws25b{word-spacing:19.622512px;}
.ws22b{word-spacing:19.663159px;}
.ws1f5{word-spacing:19.673321px;}
.wsd1{word-spacing:19.678917px;}
.ws28f{word-spacing:19.703808px;}
.ws1bb{word-spacing:19.750936px;}
.ws196{word-spacing:19.756937px;}
.ws40{word-spacing:19.780944px;}
.ws8a{word-spacing:19.792945px;}
.ws16e{word-spacing:19.816952px;}
.ws62{word-spacing:19.840959px;}
.ws1aa{word-spacing:19.870966px;}
.ws113{word-spacing:19.996997px;}
.ws4b{word-spacing:20.045009px;}
.ws33{word-spacing:20.064552px;}
.ws1c{word-spacing:20.069016px;}
.wsb6{word-spacing:20.075017px;}
.ws249{word-spacing:20.089957px;}
.wsbb{word-spacing:20.129031px;}
.ws58{word-spacing:20.141034px;}
.ws14b{word-spacing:20.153035px;}
.ws15f{word-spacing:20.159037px;}
.ws142{word-spacing:20.189046px;}
.wsd7{word-spacing:20.201049px;}
.wsb5{word-spacing:20.237057px;}
.ws1a3{word-spacing:20.261064px;}
.ws14c{word-spacing:20.297072px;}
.ws243{word-spacing:20.359245px;}
.ws42{word-spacing:20.393095px;}
.ws13{word-spacing:20.405099px;}
.ws160{word-spacing:20.423104px;}
.ws63{word-spacing:20.441109px;}
.ws25a{word-spacing:20.450703px;}
.ws3f{word-spacing:20.453110px;}
.ws258{word-spacing:20.481188px;}
.ws11d{word-spacing:20.513125px;}
.ws1c4{word-spacing:20.537132px;}
.ws11c{word-spacing:20.549136px;}
.wsa9{word-spacing:20.591146px;}
.ws10c{word-spacing:20.609151px;}
.ws20e{word-spacing:20.648859px;}
.ws182{word-spacing:20.663164px;}
.wsea{word-spacing:20.669165px;}
.ws136{word-spacing:20.675167px;}
.ws8f{word-spacing:20.681169px;}
.ws12d{word-spacing:20.687169px;}
.ws162{word-spacing:20.717177px;}
.ws16{word-spacing:20.729180px;}
.wscc{word-spacing:20.741184px;}
.ws65{word-spacing:20.753185px;}
.ws14e{word-spacing:20.759180px;}
.ws272{word-spacing:20.770800px;}
.ws147{word-spacing:20.789195px;}
.ws181{word-spacing:20.909225px;}
.ws13f{word-spacing:20.933230px;}
.ws1a0{word-spacing:20.981244px;}
.ws1a7{word-spacing:21.017252px;}
.ws15c{word-spacing:21.029255px;}
.ws25e{word-spacing:21.050251px;}
.ws2d{word-spacing:21.101274px;}
.ws28a{word-spacing:21.111223px;}
.ws194{word-spacing:21.161289px;}
.ws1b{word-spacing:21.185294px;}
.ws3d{word-spacing:21.269315px;}
.ws7a{word-spacing:21.281319px;}
.ws18f{word-spacing:21.317327px;}
.ws41{word-spacing:21.341334px;}
.ws183{word-spacing:21.365339px;}
.ws3e{word-spacing:21.371341px;}
.ws11{word-spacing:21.425354px;}
.ws11a{word-spacing:21.437357px;}
.ws12a{word-spacing:21.485369px;}
.ws90{word-spacing:21.509375px;}
.ws262{word-spacing:21.517683px;}
.ws1ca{word-spacing:21.569390px;}
.ws141{word-spacing:21.581394px;}
.wsf1{word-spacing:21.605399px;}
.ws1c7{word-spacing:21.629405px;}
.wsa0{word-spacing:21.725429px;}
.wsf4{word-spacing:21.749435px;}
.ws259{word-spacing:21.751418px;}
.ws1d6{word-spacing:21.781903px;}
.ws78{word-spacing:21.809450px;}
.ws8b{word-spacing:21.839457px;}
.ws175{word-spacing:21.869465px;}
.wse0{word-spacing:21.881469px;}
.wse3{word-spacing:21.893470px;}
.ws15b{word-spacing:21.905474px;}
.wsa8{word-spacing:21.965489px;}
.ws126{word-spacing:21.977492px;}
.ws279{word-spacing:22.020707px;}
.wsf5{word-spacing:22.037507px;}
.ws2b{word-spacing:22.061514px;}
.ws28b{word-spacing:22.071515px;}
.wsb0{word-spacing:22.133530px;}
.ws261{word-spacing:22.142649px;}
.ws13e{word-spacing:22.169540px;}
.ws5e{word-spacing:22.205549px;}
.wsbe{word-spacing:22.241559px;}
.ws21a{word-spacing:22.264591px;}
.ws177{word-spacing:22.277567px;}
.ws134{word-spacing:22.289570px;}
.ws24a{word-spacing:22.376370px;}
.wse{word-spacing:22.385594px;}
.ws120{word-spacing:22.409600px;}
.ws2a{word-spacing:22.421604px;}
.ws184{word-spacing:22.433605px;}
.ws19f{word-spacing:22.457612px;}
.ws1c8{word-spacing:22.481619px;}
.ws76{word-spacing:22.505624px;}
.ws13a{word-spacing:22.517627px;}
.ws192{word-spacing:22.571641px;}
.ws188{word-spacing:22.577642px;}
.ws14a{word-spacing:22.613650px;}
.ws6f{word-spacing:22.625654px;}
.ws47{word-spacing:22.661664px;}
.ws45{word-spacing:22.685669px;}
.wsc3{word-spacing:22.709675px;}
.ws93{word-spacing:22.739683px;}
.ws1b8{word-spacing:22.781694px;}
.wsbc{word-spacing:22.841709px;}
.ws11e{word-spacing:22.853710px;}
.wsbf{word-spacing:22.865714px;}
.ws215{word-spacing:22.889544px;}
.ws46{word-spacing:22.889720px;}
.wsf{word-spacing:22.937732px;}
.wsaf{word-spacing:22.961739px;}
.wse2{word-spacing:22.973740px;}
.ws64{word-spacing:23.057762px;}
.ws248{word-spacing:23.097862px;}
.ws4c{word-spacing:23.099772px;}
.ws226{word-spacing:23.102942px;}
.ws127{word-spacing:23.105774px;}
.ws75{word-spacing:23.153785px;}
.ws193{word-spacing:23.183794px;}
.ws189{word-spacing:23.189795px;}
.ws228{word-spacing:23.229965px;}
.ws256{word-spacing:23.260451px;}
.ws1b9{word-spacing:23.309825px;}
.wscd{word-spacing:23.333830px;}
.ws1c5{word-spacing:23.345834px;}
.ws167{word-spacing:23.381844px;}
.ws13c{word-spacing:23.399847px;}
.ws6c{word-spacing:23.405849px;}
.ws1ba{word-spacing:23.477867px;}
.ws176{word-spacing:23.525879px;}
.ws52{word-spacing:23.561889px;}
.ws9c{word-spacing:23.609900px;}
.wscb{word-spacing:23.645909px;}
.wse8{word-spacing:23.657912px;}
.wsce{word-spacing:23.669915px;}
.ws214{word-spacing:23.712653px;}
.ws115{word-spacing:23.729930px;}
.ws51{word-spacing:23.741934px;}
.ws6b{word-spacing:23.801949px;}
.ws14{word-spacing:23.837957px;}
.ws208{word-spacing:23.915890px;}
.wsc5{word-spacing:24.126029px;}
.wsf7{word-spacing:24.138032px;}
.wscf{word-spacing:24.246059px;}
.ws206{word-spacing:24.276636px;}
.wsf6{word-spacing:24.294070px;}
.wsba{word-spacing:24.342084px;}
.ws148{word-spacing:24.354085px;}
.ws1d{word-spacing:24.366089px;}
.ws24d{word-spacing:24.373172px;}
.ws139{word-spacing:24.390095px;}
.wsaa{word-spacing:24.498122px;}
.ws1bc{word-spacing:24.510125px;}
.ws144{word-spacing:24.522129px;}
.ws13b{word-spacing:24.714175px;}
.ws1c1{word-spacing:24.738182px;}
.ws17c{word-spacing:24.786194px;}
.ws1ce{word-spacing:24.822204px;}
.ws17a{word-spacing:24.882219px;}
.ws1a8{word-spacing:24.894220px;}
.ws107{word-spacing:24.942234px;}
.ws18{word-spacing:24.966239px;}
.ws1bd{word-spacing:25.014250px;}
.wsc9{word-spacing:25.062264px;}
.ws128{word-spacing:25.122279px;}
.ws92{word-spacing:25.134280px;}
.wsc8{word-spacing:25.158287px;}
.ws276{word-spacing:25.191201px;}
.ws10b{word-spacing:25.218302px;}
.ws16d{word-spacing:25.242309px;}
.ws16b{word-spacing:25.266314px;}
.wse1{word-spacing:25.290320px;}
.wsff{word-spacing:25.302324px;}
.ws9f{word-spacing:25.326329px;}
.ws1b5{word-spacing:25.350335px;}
.ws1dd{word-spacing:25.389356px;}
.ws12b{word-spacing:25.446359px;}
.wsfe{word-spacing:25.494370px;}
.wsbd{word-spacing:25.518377px;}
.ws1cc{word-spacing:25.566389px;}
.wsae{word-spacing:25.602399px;}
.ws110{word-spacing:25.650410px;}
.wsa5{word-spacing:25.674415px;}
.ws83{word-spacing:25.746434px;}
.ws49{word-spacing:25.758437px;}
.wsca{word-spacing:25.770440px;}
.ws146{word-spacing:25.794445px;}
.wsb2{word-spacing:25.830455px;}
.ws10f{word-spacing:25.866464px;}
.ws1fc{word-spacing:25.938096px;}
.ws9d{word-spacing:25.962489px;}
.ws2c{word-spacing:25.986494px;}
.ws268{word-spacing:26.522400px;}
.wsf0{word-spacing:26.634655px;}
.ws1c9{word-spacing:26.670665px;}
.ws168{word-spacing:26.694670px;}
.ws274{word-spacing:26.812014px;}
.ws82{word-spacing:26.826704px;}
.wsc2{word-spacing:26.946734px;}
.wsd8{word-spacing:26.958737px;}
.ws125{word-spacing:27.006748px;}
.ws97{word-spacing:27.042759px;}
.ws210{word-spacing:27.132111px;}
.wse9{word-spacing:27.150785px;}
.ws27a{word-spacing:27.162596px;}
.ws1ad{word-spacing:27.198797px;}
.ws17b{word-spacing:27.222804px;}
.ws247{word-spacing:27.223567px;}
.ws48{word-spacing:27.246808px;}
.ws1a9{word-spacing:27.258812px;}
.wsc1{word-spacing:27.450860px;}
.wsa2{word-spacing:27.510875px;}
.ws13d{word-spacing:27.546883px;}
.ws23{word-spacing:27.678917px;}
.ws10{word-spacing:27.702924px;}
.ws59{word-spacing:27.966988px;}
.ws99{word-spacing:27.990995px;}
.ws89{word-spacing:28.015000px;}
.wsef{word-spacing:28.141026px;}
.wsa4{word-spacing:28.153035px;}
.wsb8{word-spacing:28.219052px;}
.ws9a{word-spacing:28.795195px;}
.wsac{word-spacing:28.855210px;}
.ws275{word-spacing:28.874868px;}
.ws186{word-spacing:28.939232px;}
.ws53{word-spacing:28.963239px;}
.ws19e{word-spacing:29.035255px;}
.wsc7{word-spacing:29.155285px;}
.wsab{word-spacing:29.587393px;}
.ws88{word-spacing:29.827453px;}
.ws27b{word-spacing:30.978368px;}
.ws25c{word-spacing:32.340055px;}
.ws209{word-spacing:33.071707px;}
.ws273{word-spacing:35.911940px;}
.ws1d3{word-spacing:37.654697px;}
.ws281{word-spacing:48.543109px;}
.ws1dc{word-spacing:52.922852px;}
.ws73{word-spacing:1774.938041px;}
._12{margin-left:-24.225682px;}
._11{margin-left:-22.776877px;}
._21{margin-left:-18.642148px;}
._19{margin-left:-15.161758px;}
._6{margin-left:-13.837489px;}
._8{margin-left:-12.789160px;}
._7{margin-left:-11.698084px;}
._14{margin-left:-6.379588px;}
._16{margin-left:-5.109957px;}
._17{margin-left:-3.607453px;}
._3{margin-left:-2.285826px;}
._0{margin-left:-1.197542px;}
._5{width:1.016185px;}
._4{width:2.199742px;}
._23{width:3.257166px;}
._26{width:4.435939px;}
._1{width:8.800568px;}
._9{width:10.301374px;}
._1d{width:12.143510px;}
._b{width:13.224547px;}
._1b{width:14.232800px;}
._c{width:15.489126px;}
._18{width:16.573961px;}
._13{width:17.926480px;}
._2{width:19.296910px;}
._a{width:20.327079px;}
._d{width:21.413351px;}
._10{width:22.508948px;}
._e{width:24.210535px;}
._1a{width:25.476367px;}
._f{width:26.837962px;}
._15{width:28.765188px;}
._1e{width:29.857461px;}
._1f{width:30.937731px;}
._27{width:32.406105px;}
._25{width:34.326695px;}
._24{width:35.393688px;}
._28{width:37.436210px;}
._22{width:39.412590px;}
._1c{width:43.296951px;}
._20{width:1775.533884px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:44.832000px;}
.fs6{font-size:50.809198px;}
.fs5{font-size:57.025800px;}
.fs8{font-size:59.775599px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.753400px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:89.664000px;}
.fs7{font-size:95.641199px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:62.392502px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y147{bottom:113.323928px;}
.y8c{bottom:113.327134px;}
.y4f{bottom:113.331608px;}
.yee{bottom:113.331838px;}
.y5a{bottom:122.686810px;}
.y4e{bottom:128.272053px;}
.y1b5{bottom:128.448945px;}
.y1f6{bottom:132.028698px;}
.y237{bottom:132.043171px;}
.y146{bottom:132.044106px;}
.y180{bottom:132.044661px;}
.y8b{bottom:132.047313px;}
.y11f{bottom:132.047791px;}
.yed{bottom:132.052016px;}
.y21{bottom:139.264499px;}
.y59{bottom:141.406988px;}
.y1b4{bottom:143.389390px;}
.y1f5{bottom:146.969143px;}
.y236{bottom:146.983615px;}
.y4d{bottom:147.712498px;}
.y145{bottom:150.764285px;}
.y17f{bottom:150.764839px;}
.y8a{bottom:150.767491px;}
.y11e{bottom:150.767969px;}
.yec{bottom:150.772194px;}
.y1b3{bottom:158.329835px;}
.y58{bottom:160.127166px;}
.y1f4{bottom:161.909588px;}
.y235{bottom:161.924060px;}
.y4c{bottom:165.711617px;}
.y144{bottom:169.304418px;}
.y17e{bottom:169.304973px;}
.y177{bottom:169.305722px;}
.y89{bottom:169.307624px;}
.y11d{bottom:169.308102px;}
.yeb{bottom:169.312327px;}
.y1b2{bottom:173.270280px;}
.y1f3{bottom:176.850033px;}
.y234{bottom:176.864505px;}
.y4b{bottom:180.652062px;}
.ybd{bottom:188.020329px;}
.y143{bottom:188.024596px;}
.y17d{bottom:188.025151px;}
.y176{bottom:188.025900px;}
.y57{bottom:188.026638px;}
.y88{bottom:188.027802px;}
.y11c{bottom:188.028280px;}
.yea{bottom:188.032505px;}
.y1b1{bottom:188.210725px;}
.y1f2{bottom:191.790477px;}
.y233{bottom:191.804950px;}
.y18{bottom:196.933500px;}
.y4a{bottom:200.092506px;}
.y1b0{bottom:203.151169px;}
.y1f1{bottom:206.730922px;}
.ybc{bottom:206.740507px;}
.y142{bottom:206.744774px;}
.y17c{bottom:206.745329px;}
.y232{bottom:206.745394px;}
.y175{bottom:206.746078px;}
.y56{bottom:206.746816px;}
.y87{bottom:206.747980px;}
.y11b{bottom:206.748458px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y49{bottom:217.912055px;}
.y1af{bottom:218.091614px;}
.y1f0{bottom:221.671367px;}
.y231{bottom:221.685839px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ybb{bottom:225.460685px;}
.y141{bottom:225.464952px;}
.y17b{bottom:225.465507px;}
.y174{bottom:225.466256px;}
.y55{bottom:225.466994px;}
.y86{bottom:225.468158px;}
.y11a{bottom:225.468636px;}
.ye9{bottom:226.371769px;}
.y1ae{bottom:233.032059px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1ef{bottom:236.611812px;}
.y230{bottom:236.626284px;}
.y48{bottom:237.352500px;}
.yba{bottom:244.180863px;}
.y140{bottom:244.185130px;}
.y17a{bottom:244.185685px;}
.y173{bottom:244.186434px;}
.y54{bottom:244.187172px;}
.y85{bottom:244.188336px;}
.y119{bottom:244.188814px;}
.ye8{bottom:244.912491px;}
.y1ad{bottom:247.972504px;}
.y1ee{bottom:251.552256px;}
.y22f{bottom:251.566729px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yb9{bottom:262.720996px;}
.y13f{bottom:262.725263px;}
.y179{bottom:262.725818px;}
.y172{bottom:262.726567px;}
.y53{bottom:262.727305px;}
.y84{bottom:262.728469px;}
.y118{bottom:262.728947px;}
.y1ed{bottom:266.492701px;}
.y22e{bottom:266.507174px;}
.y47{bottom:266.512047px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1ec{bottom:281.433146px;}
.yb8{bottom:281.441174px;}
.y13e{bottom:281.445441px;}
.y178{bottom:281.445996px;}
.y171{bottom:281.446745px;}
.y52{bottom:281.447483px;}
.y22d{bottom:281.447618px;}
.y83{bottom:281.448647px;}
.y117{bottom:281.449126px;}
.y46{bottom:281.452492px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1eb{bottom:296.373591px;}
.y22c{bottom:296.388063px;}
.yb7{bottom:300.161352px;}
.y13d{bottom:300.165619px;}
.ye7{bottom:300.166174px;}
.y170{bottom:300.166923px;}
.y51{bottom:300.167661px;}
.y82{bottom:300.168825px;}
.y116{bottom:300.169304px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1ea{bottom:311.314036px;}
.y22b{bottom:311.328508px;}
.yb6{bottom:318.881530px;}
.y13c{bottom:318.885797px;}
.ye6{bottom:318.886352px;}
.y16f{bottom:318.887101px;}
.y50{bottom:318.887839px;}
.y81{bottom:318.889003px;}
.y115{bottom:318.889482px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1ac{bottom:324.824184px;}
.y1e9{bottom:326.254480px;}
.y22a{bottom:326.268953px;}
.yb5{bottom:337.421663px;}
.y13b{bottom:337.425930px;}
.ye5{bottom:337.426485px;}
.y16e{bottom:337.427235px;}
.y45{bottom:337.427973px;}
.y80{bottom:337.429137px;}
.y114{bottom:337.429615px;}
.y1ab{bottom:339.764628px;}
.y1e8{bottom:341.194925px;}
.y229{bottom:341.209398px;}
.yf{bottom:348.133500px;}
.y1aa{bottom:354.705073px;}
.y1e7{bottom:356.135370px;}
.yb4{bottom:356.141841px;}
.y13a{bottom:356.146109px;}
.ye4{bottom:356.146663px;}
.y16d{bottom:356.147413px;}
.y44{bottom:356.148151px;}
.y7f{bottom:356.149315px;}
.y113{bottom:356.149793px;}
.y228{bottom:356.149842px;}
.y1a9{bottom:369.645518px;}
.y1e6{bottom:371.075815px;}
.y227{bottom:371.090287px;}
.yb3{bottom:374.862020px;}
.y139{bottom:374.866287px;}
.ye3{bottom:374.866842px;}
.y16c{bottom:374.867591px;}
.y43{bottom:374.868329px;}
.y7e{bottom:374.869493px;}
.y112{bottom:374.869971px;}
.y1a8{bottom:384.585963px;}
.y1e5{bottom:386.016259px;}
.y226{bottom:386.030732px;}
.ye{bottom:386.785499px;}
.yb2{bottom:393.582198px;}
.y138{bottom:393.586465px;}
.ye2{bottom:393.587020px;}
.y16b{bottom:393.587769px;}
.y42{bottom:393.588507px;}
.y7d{bottom:393.589671px;}
.y111{bottom:393.590149px;}
.y1a7{bottom:399.526407px;}
.y1e4{bottom:400.956704px;}
.y225{bottom:400.971177px;}
.yd{bottom:408.044999px;}
.yb1{bottom:412.302376px;}
.y137{bottom:412.306643px;}
.ye1{bottom:412.307198px;}
.y16a{bottom:412.307947px;}
.y41{bottom:412.308685px;}
.y7c{bottom:412.309849px;}
.y110{bottom:412.310327px;}
.y1a6{bottom:414.466852px;}
.y1e3{bottom:415.897149px;}
.y224{bottom:415.911621px;}
.y1a5{bottom:429.407297px;}
.y1e2{bottom:430.837594px;}
.yb0{bottom:430.842509px;}
.y136{bottom:430.846776px;}
.ye0{bottom:430.847331px;}
.y169{bottom:430.848080px;}
.y40{bottom:430.848818px;}
.y7b{bottom:430.849982px;}
.y10f{bottom:430.850460px;}
.y223{bottom:430.852066px;}
.y1a4{bottom:444.347742px;}
.y1e1{bottom:445.778039px;}
.y222{bottom:445.792511px;}
.yaf{bottom:449.562687px;}
.y135{bottom:449.566954px;}
.ydf{bottom:449.567509px;}
.y168{bottom:449.568258px;}
.y3f{bottom:449.568996px;}
.y7a{bottom:449.570160px;}
.y10e{bottom:449.570638px;}
.y1a3{bottom:459.288187px;}
.y221{bottom:460.687992px;}
.y1e0{bottom:460.718483px;}
.yae{bottom:468.282865px;}
.y134{bottom:468.287132px;}
.yde{bottom:468.287687px;}
.y167{bottom:468.288436px;}
.y3e{bottom:468.289174px;}
.y79{bottom:468.290338px;}
.y10d{bottom:468.290816px;}
.y1a2{bottom:474.228631px;}
.y220{bottom:475.628437px;}
.y1df{bottom:475.658928px;}
.yad{bottom:487.003043px;}
.y133{bottom:487.007310px;}
.ydd{bottom:487.007865px;}
.y166{bottom:487.008614px;}
.y3d{bottom:487.009352px;}
.y78{bottom:487.010516px;}
.y10c{bottom:487.010995px;}
.y1a1{bottom:489.169076px;}
.y21f{bottom:490.568882px;}
.y1de{bottom:490.599373px;}
.yc{bottom:502.864502px;}
.y1a0{bottom:504.109521px;}
.y21e{bottom:505.509327px;}
.y1dd{bottom:505.539818px;}
.yac{bottom:505.543176px;}
.y132{bottom:505.547443px;}
.ydc{bottom:505.547998px;}
.y165{bottom:505.548747px;}
.y3c{bottom:505.549485px;}
.y77{bottom:505.550649px;}
.y10b{bottom:505.551128px;}
.y21d{bottom:520.628874px;}
.y1dc{bottom:520.659365px;}
.yb{bottom:520.864502px;}
.yab{bottom:524.263354px;}
.y131{bottom:524.267621px;}
.ydb{bottom:524.268176px;}
.y164{bottom:524.268925px;}
.y3b{bottom:524.269663px;}
.y76{bottom:524.270827px;}
.y10a{bottom:524.271306px;}
.y19f{bottom:529.489986px;}
.y21c{bottom:535.569319px;}
.y1db{bottom:535.599810px;}
.ya{bottom:538.864499px;}
.yaa{bottom:542.983532px;}
.y130{bottom:542.987799px;}
.yda{bottom:542.988354px;}
.y163{bottom:542.989104px;}
.y3a{bottom:542.989842px;}
.y75{bottom:542.991005px;}
.y109{bottom:542.991484px;}
.y19e{bottom:544.430431px;}
.y21b{bottom:550.509763px;}
.y1da{bottom:550.540255px;}
.y9{bottom:556.864499px;}
.ya9{bottom:561.703710px;}
.y12f{bottom:561.707978px;}
.yd9{bottom:561.708532px;}
.y162{bottom:561.709282px;}
.y39{bottom:561.710020px;}
.y74{bottom:561.711184px;}
.y108{bottom:561.711662px;}
.y21a{bottom:565.450208px;}
.y1d9{bottom:565.480699px;}
.y19d{bottom:573.589829px;}
.y219{bottom:580.390653px;}
.y1d8{bottom:580.421144px;}
.ya8{bottom:580.423889px;}
.y12e{bottom:580.428156px;}
.yd8{bottom:580.428711px;}
.y161{bottom:580.429460px;}
.y38{bottom:580.430198px;}
.y73{bottom:580.431362px;}
.y107{bottom:580.431840px;}
.y19c{bottom:588.530274px;}
.y218{bottom:595.331098px;}
.y1d7{bottom:595.361589px;}
.ya7{bottom:598.964022px;}
.y12d{bottom:598.968289px;}
.yd7{bottom:598.968844px;}
.y160{bottom:598.969593px;}
.y37{bottom:598.970331px;}
.y72{bottom:598.971495px;}
.y106{bottom:598.971973px;}
.y19b{bottom:603.470719px;}
.y217{bottom:610.271543px;}
.y1d6{bottom:610.302034px;}
.ya6{bottom:617.684200px;}
.y12c{bottom:617.688467px;}
.yd6{bottom:617.689022px;}
.y15f{bottom:617.689771px;}
.y36{bottom:617.690509px;}
.y71{bottom:617.691673px;}
.y105{bottom:617.692151px;}
.y19a{bottom:618.411164px;}
.y216{bottom:625.211987px;}
.y1d5{bottom:625.242478px;}
.y199{bottom:633.351609px;}
.ya5{bottom:636.404378px;}
.y12b{bottom:636.408645px;}
.yd5{bottom:636.409200px;}
.y15e{bottom:636.409949px;}
.y35{bottom:636.410687px;}
.y70{bottom:636.411851px;}
.y104{bottom:636.412329px;}
.y215{bottom:640.152432px;}
.y1d4{bottom:640.182923px;}
.y8{bottom:645.510000px;}
.y198{bottom:648.292053px;}
.y214{bottom:655.092877px;}
.y1d3{bottom:655.123368px;}
.ya4{bottom:655.124556px;}
.y12a{bottom:655.128823px;}
.yd4{bottom:655.129378px;}
.y15d{bottom:655.130127px;}
.y34{bottom:655.130865px;}
.y6f{bottom:655.132029px;}
.y103{bottom:655.132507px;}
.y197{bottom:663.232498px;}
.y7{bottom:666.771000px;}
.y213{bottom:670.033322px;}
.y1d2{bottom:670.063813px;}
.ya3{bottom:673.664689px;}
.y129{bottom:673.668956px;}
.yd3{bottom:673.669511px;}
.y15c{bottom:673.670260px;}
.y33{bottom:673.670998px;}
.y6e{bottom:673.672162px;}
.y212{bottom:684.973766px;}
.y1d1{bottom:685.004258px;}
.y196{bottom:692.383708px;}
.ya2{bottom:692.384867px;}
.y128{bottom:692.389134px;}
.yd2{bottom:692.389689px;}
.y15b{bottom:692.390438px;}
.y32{bottom:692.391176px;}
.y6d{bottom:692.392340px;}
.y102{bottom:692.392525px;}
.y211{bottom:699.914211px;}
.y1d0{bottom:699.944702px;}
.y195{bottom:711.103886px;}
.ya1{bottom:711.105045px;}
.y127{bottom:711.109312px;}
.yd1{bottom:711.109867px;}
.y15a{bottom:711.110616px;}
.y31{bottom:711.111354px;}
.y6c{bottom:711.112518px;}
.y210{bottom:714.854656px;}
.y1cf{bottom:714.885147px;}
.y6{bottom:726.298500px;}
.y20f{bottom:729.795101px;}
.y194{bottom:729.824064px;}
.ya0{bottom:729.825223px;}
.y1ce{bottom:729.825592px;}
.y126{bottom:729.829490px;}
.yd0{bottom:729.830045px;}
.y159{bottom:729.830794px;}
.y30{bottom:729.831532px;}
.y20e{bottom:744.735546px;}
.y1cd{bottom:744.766037px;}
.y193{bottom:748.544242px;}
.y9f{bottom:748.545401px;}
.y125{bottom:748.549668px;}
.y101{bottom:748.550105px;}
.ycf{bottom:748.550223px;}
.y158{bottom:748.550973px;}
.y2f{bottom:748.551711px;}
.y6b{bottom:749.272364px;}
.y3{bottom:752.599495px;}
.y20d{bottom:759.675990px;}
.y1cc{bottom:759.706482px;}
.y192{bottom:767.084375px;}
.y9e{bottom:767.085534px;}
.y124{bottom:767.089802px;}
.y100{bottom:767.090238px;}
.yce{bottom:767.090356px;}
.y157{bottom:767.091106px;}
.y2e{bottom:767.091844px;}
.y6a{bottom:767.992413px;}
.y20c{bottom:774.616435px;}
.y1cb{bottom:774.646926px;}
.y191{bottom:785.804553px;}
.y9d{bottom:785.805713px;}
.y123{bottom:785.809980px;}
.yff{bottom:785.810416px;}
.ycd{bottom:785.810535px;}
.y156{bottom:785.811284px;}
.y2d{bottom:785.812022px;}
.y69{bottom:786.712463px;}
.y20b{bottom:789.556880px;}
.y1ca{bottom:789.587371px;}
.y20a{bottom:804.497325px;}
.y190{bottom:804.524732px;}
.y9c{bottom:804.525891px;}
.y1c9{bottom:804.527816px;}
.y122{bottom:804.530158px;}
.yfe{bottom:804.530594px;}
.ycc{bottom:804.530713px;}
.y155{bottom:804.531462px;}
.y2c{bottom:804.532200px;}
.y209{bottom:819.437770px;}
.y1c8{bottom:819.468261px;}
.y18f{bottom:823.244910px;}
.y9b{bottom:823.246069px;}
.y121{bottom:823.250336px;}
.yfd{bottom:823.250772px;}
.ycb{bottom:823.250891px;}
.y154{bottom:823.251640px;}
.y2b{bottom:823.252378px;}
.y208{bottom:834.378214px;}
.y1c7{bottom:834.408705px;}
.y18e{bottom:841.785043px;}
.y9a{bottom:841.786202px;}
.y68{bottom:841.790469px;}
.yfc{bottom:841.790905px;}
.yca{bottom:841.791024px;}
.y153{bottom:841.791773px;}
.y2a{bottom:841.792511px;}
.y207{bottom:849.317389px;}
.y1c6{bottom:849.349150px;}
.y18d{bottom:860.505221px;}
.y99{bottom:860.506380px;}
.y67{bottom:860.510647px;}
.yfb{bottom:860.511083px;}
.yc9{bottom:860.511202px;}
.y152{bottom:860.511951px;}
.y206{bottom:864.257834px;}
.y1c5{bottom:864.289595px;}
.y205{bottom:879.198278px;}
.y18c{bottom:879.225399px;}
.y98{bottom:879.226558px;}
.y1c4{bottom:879.230040px;}
.y66{bottom:879.230825px;}
.yfa{bottom:879.231261px;}
.yc8{bottom:879.231380px;}
.y151{bottom:879.232129px;}
.y2{bottom:879.369000px;}
.y204{bottom:894.138723px;}
.y1c3{bottom:894.170485px;}
.y18b{bottom:897.945577px;}
.y97{bottom:897.946736px;}
.y65{bottom:897.951003px;}
.yf9{bottom:897.951439px;}
.yc7{bottom:897.951558px;}
.y150{bottom:897.952307px;}
.y29{bottom:907.852066px;}
.y203{bottom:909.079168px;}
.y1c2{bottom:909.110929px;}
.y18a{bottom:916.665755px;}
.y96{bottom:916.666914px;}
.y120{bottom:916.671181px;}
.yf8{bottom:916.671617px;}
.yc6{bottom:916.671736px;}
.y14f{bottom:916.672485px;}
.y28{bottom:922.792511px;}
.y202{bottom:924.019613px;}
.y1c1{bottom:924.051374px;}
.y189{bottom:935.205888px;}
.y95{bottom:935.207047px;}
.y64{bottom:935.211314px;}
.yf7{bottom:935.211751px;}
.yc5{bottom:935.211869px;}
.y201{bottom:938.958787px;}
.y23c{bottom:938.989278px;}
.y1c0{bottom:938.991819px;}
.y200{bottom:953.899232px;}
.y188{bottom:953.926066px;}
.y94{bottom:953.927225px;}
.y23b{bottom:953.929723px;}
.y63{bottom:953.931492px;}
.yf6{bottom:953.931929px;}
.yc4{bottom:953.932047px;}
.y1bf{bottom:953.932264px;}
.y14e{bottom:953.932481px;}
.y245{bottom:954.646127px;}
.y26{bottom:956.452515px;}
.y27{bottom:960.952515px;}
.y1{bottom:966.726000px;}
.y1ff{bottom:968.839677px;}
.y23a{bottom:968.870168px;}
.y1be{bottom:968.872708px;}
.y244{bottom:969.586572px;}
.y187{bottom:972.646244px;}
.y93{bottom:972.647403px;}
.y62{bottom:972.651671px;}
.yf5{bottom:972.652107px;}
.yc3{bottom:972.652225px;}
.y14d{bottom:972.652474px;}
.y1fe{bottom:983.780122px;}
.y239{bottom:983.810613px;}
.y1bd{bottom:983.813153px;}
.y186{bottom:991.366422px;}
.y92{bottom:991.367582px;}
.y61{bottom:991.371849px;}
.yf4{bottom:991.372285px;}
.yc2{bottom:991.372404px;}
.y14c{bottom:991.372467px;}
.y1fd{bottom:998.720566px;}
.y243{bottom:998.745971px;}
.y238{bottom:998.751058px;}
.y1bc{bottom:998.752328px;}
.y25{bottom:1003.072540px;}
.y185{bottom:1009.906556px;}
.y91{bottom:1009.907715px;}
.y60{bottom:1009.911982px;}
.yf3{bottom:1009.912418px;}
.yc1{bottom:1009.912537px;}
.y1fc{bottom:1013.661011px;}
.y242{bottom:1013.686416px;}
.y1bb{bottom:1013.691502px;}
.y1fb{bottom:1028.601456px;}
.y14b{bottom:1028.624687px;}
.y184{bottom:1028.626734px;}
.y241{bottom:1028.626860px;}
.y90{bottom:1028.627893px;}
.y1ba{bottom:1028.630677px;}
.y5f{bottom:1028.632160px;}
.yf2{bottom:1028.632596px;}
.y1fa{bottom:1043.541901px;}
.y240{bottom:1043.567305px;}
.y1b9{bottom:1043.571122px;}
.y14a{bottom:1047.344865px;}
.y183{bottom:1047.346912px;}
.y8f{bottom:1047.348071px;}
.y5e{bottom:1047.352338px;}
.yf1{bottom:1047.352774px;}
.yc0{bottom:1048.251710px;}
.y1f9{bottom:1058.482346px;}
.y23f{bottom:1058.507750px;}
.y1b8{bottom:1058.511566px;}
.y149{bottom:1066.065043px;}
.y182{bottom:1066.067090px;}
.y8e{bottom:1066.068249px;}
.y5d{bottom:1066.072516px;}
.yf0{bottom:1066.072952px;}
.ybf{bottom:1066.971760px;}
.y22{bottom:1072.552460px;}
.y1f8{bottom:1073.422790px;}
.y23e{bottom:1073.448195px;}
.y1b7{bottom:1073.452011px;}
.y148{bottom:1084.785221px;}
.y181{bottom:1084.787268px;}
.y8d{bottom:1084.788427px;}
.y5c{bottom:1084.792694px;}
.yef{bottom:1084.793130px;}
.ybe{bottom:1085.512482px;}
.y1f7{bottom:1088.363235px;}
.y23d{bottom:1088.388640px;}
.y1b6{bottom:1088.392456px;}
.y23{bottom:1109.812500px;}
.y24{bottom:1126.732544px;}
.h11{height:24.675533px;}
.he{height:25.464576px;}
.h7{height:32.130000px;}
.h10{height:34.956728px;}
.hb{height:36.328577px;}
.ha{height:40.488318px;}
.hf{height:41.290318px;}
.h12{height:41.530378px;}
.h15{height:41.950483px;}
.hd{height:43.464576px;}
.h6{height:45.900000px;}
.h16{height:47.013681px;}
.h3{height:48.195000px;}
.h14{height:51.718195px;}
.h13{height:54.657439px;}
.h2{height:55.080000px;}
.hc{height:68.383457px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1186.500000px;}
.h8{height:1186.561500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:893.110500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.522499px;}
.xa{left:77.962498px;}
.x5{left:84.982498px;}
.x9{left:93.622272px;}
.xf{left:97.222330px;}
.xb{left:99.382347px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x7{left:238.702492px;}
.x8{left:436.702515px;}
.x3{left:454.959000px;}
.xc{left:459.202515px;}
.xd{left:476.302306px;}
.x12{left:484.762080px;}
.x10{left:490.162503px;}
.x11{left:756.382507px;}
.xe{left:759.262482px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls20{letter-spacing:-1.854372pt;}
.ls75{letter-spacing:-1.251035pt;}
.ls5e{letter-spacing:-0.357062pt;}
.lsa6{letter-spacing:-0.352277pt;}
.ls54{letter-spacing:-0.274173pt;}
.lsa5{letter-spacing:-0.248401pt;}
.lsa7{letter-spacing:-0.239368pt;}
.lsa2{letter-spacing:-0.230335pt;}
.ls94{letter-spacing:-0.225819pt;}
.ls78{letter-spacing:-0.221302pt;}
.ls45{letter-spacing:-0.218721pt;}
.ls5c{letter-spacing:-0.216788pt;}
.ls35{letter-spacing:-0.216786pt;}
.ls3a{letter-spacing:-0.212270pt;}
.ls7b{letter-spacing:-0.207753pt;}
.ls38{letter-spacing:-0.203237pt;}
.ls64{letter-spacing:-0.198721pt;}
.ls3b{letter-spacing:-0.198720pt;}
.ls22{letter-spacing:-0.196595pt;}
.ls3c{letter-spacing:-0.194204pt;}
.ls3e{letter-spacing:-0.192048pt;}
.ls74{letter-spacing:-0.189688pt;}
.ls39{letter-spacing:-0.185171pt;}
.ls50{letter-spacing:-0.180655pt;}
.ls36{letter-spacing:-0.176139pt;}
.ls7e{letter-spacing:-0.171622pt;}
.ls8f{letter-spacing:-0.167106pt;}
.ls52{letter-spacing:-0.165375pt;}
.ls9b{letter-spacing:-0.162589pt;}
.ls4a{letter-spacing:-0.160040pt;}
.lsa4{letter-spacing:-0.153557pt;}
.ls9e{letter-spacing:-0.149040pt;}
.ls8a{letter-spacing:-0.144524pt;}
.ls70{letter-spacing:-0.138701pt;}
.ls87{letter-spacing:-0.135491pt;}
.ls68{letter-spacing:-0.133367pt;}
.ls3f{letter-spacing:-0.128032pt;}
.ls89{letter-spacing:-0.126458pt;}
.ls8d{letter-spacing:-0.121942pt;}
.ls8c{letter-spacing:-0.117426pt;}
.ls51{letter-spacing:-0.112028pt;}
.ls9a{letter-spacing:-0.108393pt;}
.ls49{letter-spacing:-0.101359pt;}
.lsa0{letter-spacing:-0.099360pt;}
.ls3d{letter-spacing:-0.096024pt;}
.ls58{letter-spacing:-0.090689pt;}
.ls73{letter-spacing:-0.090327pt;}
.ls92{letter-spacing:-0.085811pt;}
.ls2c{letter-spacing:-0.085355pt;}
.ls2f{letter-spacing:-0.080020pt;}
.ls7f{letter-spacing:-0.076778pt;}
.ls31{letter-spacing:-0.074685pt;}
.ls47{letter-spacing:-0.069351pt;}
.ls29{letter-spacing:-0.064016pt;}
.ls7d{letter-spacing:-0.063229pt;}
.ls56{letter-spacing:-0.058681pt;}
.ls96{letter-spacing:-0.054196pt;}
.ls61{letter-spacing:-0.053347pt;}
.ls30{letter-spacing:-0.048012pt;}
.ls44{letter-spacing:-0.042677pt;}
.ls97{letter-spacing:-0.040647pt;}
.ls53{letter-spacing:-0.037343pt;}
.ls99{letter-spacing:-0.036131pt;}
.ls42{letter-spacing:-0.032008pt;}
.ls95{letter-spacing:-0.031615pt;}
.ls40{letter-spacing:-0.026673pt;}
.ls76{letter-spacing:-0.022582pt;}
.ls32{letter-spacing:-0.021339pt;}
.ls41{letter-spacing:-0.016004pt;}
.ls90{letter-spacing:-0.013549pt;}
.ls5f{letter-spacing:-0.010669pt;}
.ls69{letter-spacing:-0.005845pt;}
.ls28{letter-spacing:-0.005335pt;}
.ls9d{letter-spacing:-0.004516pt;}
.ls0{letter-spacing:0.000000pt;}
.ls85{letter-spacing:0.004516pt;}
.ls16{letter-spacing:0.005335pt;}
.ls66{letter-spacing:0.005845pt;}
.ls1c{letter-spacing:0.010669pt;}
.ls65{letter-spacing:0.016004pt;}
.ls15{letter-spacing:0.021339pt;}
.ls4d{letter-spacing:0.026673pt;}
.lsa3{letter-spacing:0.027098pt;}
.ls80{letter-spacing:0.031615pt;}
.ls7{letter-spacing:0.032008pt;}
.ls10{letter-spacing:0.037343pt;}
.ls7c{letter-spacing:0.038257pt;}
.ls4e{letter-spacing:0.042677pt;}
.ls72{letter-spacing:0.045164pt;}
.ls9{letter-spacing:0.048012pt;}
.ls1{letter-spacing:0.050690pt;}
.ls4c{letter-spacing:0.051009pt;}
.lsf{letter-spacing:0.053347pt;}
.ls11{letter-spacing:0.058681pt;}
.ls1b{letter-spacing:0.064016pt;}
.ls6b{letter-spacing:0.067746pt;}
.ls19{letter-spacing:0.069351pt;}
.ls6c{letter-spacing:0.072262pt;}
.lsd{letter-spacing:0.074685pt;}
.ls1f{letter-spacing:0.076513pt;}
.ls83{letter-spacing:0.076778pt;}
.ls4b{letter-spacing:0.080020pt;}
.ls6e{letter-spacing:0.082889pt;}
.ls17{letter-spacing:0.085355pt;}
.ls5a{letter-spacing:0.087671pt;}
.ls34{letter-spacing:0.090689pt;}
.ls1d{letter-spacing:0.096024pt;}
.ls18{letter-spacing:0.101359pt;}
.ls82{letter-spacing:0.103877pt;}
.ls6{letter-spacing:0.106693pt;}
.ls4f{letter-spacing:0.112028pt;}
.ls71{letter-spacing:0.112909pt;}
.lsc{letter-spacing:0.117363pt;}
.ls81{letter-spacing:0.117426pt;}
.ls26{letter-spacing:0.122697pt;}
.ls8{letter-spacing:0.128032pt;}
.ls1a{letter-spacing:0.133367pt;}
.ls27{letter-spacing:0.138701pt;}
.ls9f{letter-spacing:0.140008pt;}
.ls2b{letter-spacing:0.144036pt;}
.ls88{letter-spacing:0.149040pt;}
.ls43{letter-spacing:0.149371pt;}
.ls2d{letter-spacing:0.154705pt;}
.ls8e{letter-spacing:0.158073pt;}
.ls2e{letter-spacing:0.160040pt;}
.ls33{letter-spacing:0.165375pt;}
.lse{letter-spacing:0.170709pt;}
.ls84{letter-spacing:0.171622pt;}
.ls57{letter-spacing:0.176044pt;}
.lsb{letter-spacing:0.181379pt;}
.ls37{letter-spacing:0.185171pt;}
.ls9c{letter-spacing:0.189688pt;}
.ls6d{letter-spacing:0.191283pt;}
.ls8b{letter-spacing:0.194204pt;}
.ls6f{letter-spacing:0.197659pt;}
.ls86{letter-spacing:0.203237pt;}
.lsa{letter-spacing:0.208052pt;}
.ls55{letter-spacing:0.210412pt;}
.ls93{letter-spacing:0.212270pt;}
.ls7a{letter-spacing:0.216786pt;}
.ls5d{letter-spacing:0.216788pt;}
.ls79{letter-spacing:0.221302pt;}
.ls62{letter-spacing:0.223164pt;}
.lsa1{letter-spacing:0.225819pt;}
.ls6a{letter-spacing:0.233790pt;}
.ls67{letter-spacing:0.234725pt;}
.ls91{letter-spacing:0.234851pt;}
.ls98{letter-spacing:0.239368pt;}
.ls77{letter-spacing:0.243884pt;}
.ls59{letter-spacing:0.245395pt;}
.ls24{letter-spacing:0.252917pt;}
.ls63{letter-spacing:0.255044pt;}
.ls5b{letter-spacing:0.256064pt;}
.ls2{letter-spacing:0.257433pt;}
.ls25{letter-spacing:0.261950pt;}
.ls1e{letter-spacing:0.284532pt;}
.ls21{letter-spacing:10.499252pt;}
.ls14{letter-spacing:11.037425pt;}
.ls5{letter-spacing:11.072028pt;}
.ls23{letter-spacing:11.142172pt;}
.ls4{letter-spacing:11.712083pt;}
.ls3{letter-spacing:12.352016pt;}
.ls48{letter-spacing:12.691171pt;}
.ls46{letter-spacing:13.331331pt;}
.ls60{letter-spacing:16.793530pt;}
.ls2a{letter-spacing:20.634490pt;}
.ls12{letter-spacing:31.048510pt;}
.ls13{letter-spacing:60.219727pt;}
.ws87{word-spacing:-31.931542pt;}
.ws1ef{word-spacing:-31.918790pt;}
.wsdd{word-spacing:-31.523471pt;}
.ws15{word-spacing:-20.687836pt;}
.ws10a{word-spacing:-20.473679pt;}
.ws19b{word-spacing:-20.346157pt;}
.ws19c{word-spacing:-20.040103pt;}
.wsdc{word-spacing:-19.759555pt;}
.ws86{word-spacing:-19.740426pt;}
.ws19d{word-spacing:-19.721298pt;}
.ws109{word-spacing:-19.274971pt;}
.wsdb{word-spacing:-18.586351pt;}
.ws85{word-spacing:-17.189983pt;}
.wsfc{word-spacing:-16.846877pt;}
.ws4e{word-spacing:-13.384678pt;}
.ws5c{word-spacing:-12.744518pt;}
.ws8{word-spacing:-11.195305pt;}
.ws3a{word-spacing:-11.090772pt;}
.ws6{word-spacing:-10.552386pt;}
.ws135{word-spacing:-0.309411pt;}
.ws2{word-spacing:-0.302597pt;}
.ws11f{word-spacing:-0.298741pt;}
.ws203{word-spacing:-0.289048pt;}
.ws241{word-spacing:-0.284532pt;}
.ws1ed{word-spacing:-0.261950pt;}
.ws12{word-spacing:-0.261399pt;}
.ws286{word-spacing:-0.230335pt;}
.ws277{word-spacing:-0.216786pt;}
.ws223{word-spacing:-0.158073pt;}
.ws84{word-spacing:-0.133367pt;}
.ws263{word-spacing:-0.117426pt;}
.ws1{word-spacing:-0.101379pt;}
.ws221{word-spacing:-0.076778pt;}
.ws222{word-spacing:-0.045164pt;}
.ws0{word-spacing:0.000000pt;}
.ws227{word-spacing:0.121942pt;}
.ws30{word-spacing:0.130975pt;}
.ws1ee{word-spacing:0.135491pt;}
.ws20d{word-spacing:0.140008pt;}
.ws1fd{word-spacing:0.144524pt;}
.ws1f7{word-spacing:0.149040pt;}
.ws26a{word-spacing:0.153557pt;}
.ws24e{word-spacing:0.158073pt;}
.ws291{word-spacing:0.162589pt;}
.ws278{word-spacing:0.171622pt;}
.ws9{word-spacing:7.433950pt;}
.wsa{word-spacing:8.093341pt;}
.ws204{word-spacing:8.206250pt;}
.ws283{word-spacing:8.246897pt;}
.ws3{word-spacing:8.513364pt;}
.ws218{word-spacing:8.531429pt;}
.ws292{word-spacing:8.870157pt;}
.ws1e8{word-spacing:8.883706pt;}
.ws1ea{word-spacing:8.937902pt;}
.ws240{word-spacing:9.095975pt;}
.ws1e2{word-spacing:9.145656pt;}
.ws282{word-spacing:9.159205pt;}
.ws1d8{word-spacing:9.249532pt;}
.ws242{word-spacing:9.443736pt;}
.ws1e0{word-spacing:9.525031pt;}
.ws205{word-spacing:9.646973pt;}
.ws1db{word-spacing:9.750850pt;}
.ws1e9{word-spacing:9.782464pt;}
.ws239{word-spacing:9.949570pt;}
.ws39{word-spacing:10.002499pt;}
.ws166{word-spacing:10.039842pt;}
.ws7e{word-spacing:10.055846pt;}
.ws8e{word-spacing:10.125197pt;}
.ws23a{word-spacing:10.148291pt;}
.ws172{word-spacing:10.152325pt;}
.ws294{word-spacing:10.184421pt;}
.ws68{word-spacing:10.194548pt;}
.ws26e{word-spacing:10.207003pt;}
.ws25f{word-spacing:10.274749pt;}
.ws230{word-spacing:10.288298pt;}
.ws199{word-spacing:10.322579pt;}
.ws67{word-spacing:10.429273pt;}
.ws1de{word-spacing:10.441855pt;}
.ws1e1{word-spacing:10.455404pt;}
.ws293{word-spacing:10.491535pt;}
.ws191{word-spacing:10.573309pt;}
.ws250{word-spacing:10.622510pt;}
.ws24c{word-spacing:10.640575pt;}
.ws1d9{word-spacing:10.726386pt;}
.ws116{word-spacing:10.765357pt;}
.ws124{word-spacing:10.783558pt;}
.ws202{word-spacing:10.861878pt;}
.ws290{word-spacing:10.911557pt;}
.ws66{word-spacing:10.914727pt;}
.ws287{word-spacing:10.929623pt;}
.wsf8{word-spacing:10.962739pt;}
.ws17e{word-spacing:10.984078pt;}
.ws238{word-spacing:11.015434pt;}
.ws1e7{word-spacing:11.028983pt;}
.ws1d7{word-spacing:11.078664pt;}
.ws121{word-spacing:11.096106pt;}
.ws14f{word-spacing:11.117445pt;}
.ws16f{word-spacing:11.144118pt;}
.ws1cb{word-spacing:11.149453pt;}
.ws198{word-spacing:11.160122pt;}
.ws119{word-spacing:11.224139pt;}
.ws171{word-spacing:11.268671pt;}
.ws8c{word-spacing:11.320162pt;}
.ws7{word-spacing:11.322826pt;}
.ws5f{word-spacing:11.341501pt;}
.wsee{word-spacing:11.362839pt;}
.ws18d{word-spacing:11.384179pt;}
.ws1be{word-spacing:11.394847pt;}
.ws1b0{word-spacing:11.410852pt;}
.ws233{word-spacing:11.417391pt;}
.ws1bf{word-spacing:11.469533pt;}
.wsa3{word-spacing:11.485537pt;}
.ws56{word-spacing:11.496206pt;}
.ws23c{word-spacing:11.521268pt;}
.ws165{word-spacing:11.533549pt;}
.ws1f3{word-spacing:11.543850pt;}
.wsd6{word-spacing:11.554887pt;}
.ws74{word-spacing:11.561915pt;}
.ws77{word-spacing:11.576226pt;}
.ws8d{word-spacing:11.618904pt;}
.ws244{word-spacing:11.643210pt;}
.ws26f{word-spacing:11.670308pt;}
.ws1d0{word-spacing:11.672250pt;}
.ws207{word-spacing:11.679341pt;}
.ws170{word-spacing:11.689494pt;}
.ws235{word-spacing:11.692891pt;}
.ws236{word-spacing:11.697407pt;}
.ws150{word-spacing:11.762939pt;}
.ws1cf{word-spacing:11.778944pt;}
.ws28d{word-spacing:11.787734pt;}
.ws105{word-spacing:11.794948pt;}
.ws157{word-spacing:11.837625pt;}
.ws232{word-spacing:11.846447pt;}
.ws260{word-spacing:11.905160pt;}
.ws23d{word-spacing:11.932258pt;}
.ws212{word-spacing:11.936775pt;}
.ws20f{word-spacing:11.990970pt;}
.ws164{word-spacing:12.013669pt;}
.ws101{word-spacing:12.019004pt;}
.wse5{word-spacing:12.024338pt;}
.ws254{word-spacing:12.027102pt;}
.ws111{word-spacing:12.072350pt;}
.ws1f4{word-spacing:12.081298pt;}
.wsd5{word-spacing:12.088354pt;}
.ws20c{word-spacing:12.090331pt;}
.ws32{word-spacing:12.108397pt;}
.ws224{word-spacing:12.117430pt;}
.ws1a5{word-spacing:12.131032pt;}
.ws2f{word-spacing:12.135494pt;}
.ws151{word-spacing:12.152370pt;}
.ws23e{word-spacing:12.153560pt;}
.ws28e{word-spacing:12.158077pt;}
.wsda{word-spacing:12.203241pt;}
.ws130{word-spacing:12.227055pt;}
.ws251{word-spacing:12.293568pt;}
.ws234{word-spacing:12.347765pt;}
.ws26c{word-spacing:12.365830pt;}
.ws81{word-spacing:12.387095pt;}
.ws55{word-spacing:12.397765pt;}
.ws123{word-spacing:12.431776pt;}
.wsdf{word-spacing:12.461781pt;}
.ws284{word-spacing:12.519386pt;}
.ws5b{word-spacing:12.536466pt;}
.ws5d{word-spacing:12.541801pt;}
.ws219{word-spacing:12.578099pt;}
.ws23f{word-spacing:12.654877pt;}
.ws158{word-spacing:12.664498pt;}
.ws24b{word-spacing:12.695517pt;}
.wsd{word-spacing:12.696506pt;}
.ws102{word-spacing:12.707175pt;}
.wsd3{word-spacing:12.717845pt;}
.ws38{word-spacing:12.736173pt;}
.wsd0{word-spacing:12.739184pt;}
.ws35{word-spacing:12.740689pt;}
.ws1f2{word-spacing:12.772304pt;}
.ws1d4{word-spacing:12.785852pt;}
.ws18b{word-spacing:12.787196pt;}
.ws289{word-spacing:12.794885pt;}
.ws220{word-spacing:12.831017pt;}
.ws72{word-spacing:12.835207pt;}
.ws285{word-spacing:12.844565pt;}
.ws1e4{word-spacing:12.876181pt;}
.ws4f{word-spacing:12.904558pt;}
.ws7f{word-spacing:12.909892pt;}
.ws197{word-spacing:12.936566pt;}
.ws22{word-spacing:13.000582pt;}
.ws153{word-spacing:13.011251pt;}
.ws71{word-spacing:13.187295pt;}
.wsf3{word-spacing:13.203299pt;}
.ws131{word-spacing:13.208634pt;}
.ws1a4{word-spacing:13.245977pt;}
.ws149{word-spacing:13.283319pt;}
.ws22d{word-spacing:13.318785pt;}
.ws1f6{word-spacing:13.332325pt;}
.ws229{word-spacing:13.332334pt;}
.ws100{word-spacing:13.336666pt;}
.wsb9{word-spacing:13.347335pt;}
.ws245{word-spacing:13.354916pt;}
.ws1af{word-spacing:13.496706pt;}
.ws80{word-spacing:13.518045pt;}
.ws20a{word-spacing:13.580734pt;}
.ws24f{word-spacing:13.625898pt;}
.ws15a{word-spacing:13.640741pt;}
.ws1eb{word-spacing:13.643963pt;}
.ws12c{word-spacing:13.672750pt;}
.ws4a{word-spacing:13.678085pt;}
.wsa1{word-spacing:13.683420pt;}
.ws70{word-spacing:13.688755pt;}
.ws31{word-spacing:13.693643pt;}
.ws17f{word-spacing:13.720762pt;}
.ws96{word-spacing:13.731432pt;}
.ws20b{word-spacing:13.788487pt;}
.ws152{word-spacing:13.864798pt;}
.ws44{word-spacing:13.891472pt;}
.ws1f8{word-spacing:13.896881pt;}
.ws36{word-spacing:13.910430pt;}
.ws267{word-spacing:13.942044pt;}
.ws1a6{word-spacing:13.944818pt;}
.ws12e{word-spacing:13.955488pt;}
.ws7b{word-spacing:13.960821pt;}
.ws1fb{word-spacing:13.973659pt;}
.ws9b{word-spacing:13.976826pt;}
.ws1ff{word-spacing:13.978175pt;}
.ws18e{word-spacing:13.998165pt;}
.ws225{word-spacing:14.036888pt;}
.ws2e{word-spacing:14.051512pt;}
.ws7c{word-spacing:14.115528pt;}
.ws25{word-spacing:14.126196pt;}
.wse4{word-spacing:14.147535pt;}
.ws1c2{word-spacing:14.158205pt;}
.ws1e3{word-spacing:14.208510pt;}
.ws1c0{word-spacing:14.211552pt;}
.ws201{word-spacing:14.240125pt;}
.ws257{word-spacing:14.249158pt;}
.ws24{word-spacing:14.291571pt;}
.wsb3{word-spacing:14.307575pt;}
.ws1b1{word-spacing:14.323580pt;}
.ws1fa{word-spacing:14.348517pt;}
.ws16a{word-spacing:14.360922pt;}
.ws27f{word-spacing:14.371099pt;}
.ws50{word-spacing:14.403599pt;}
.ws163{word-spacing:14.419604pt;}
.ws5{word-spacing:14.425845pt;}
.ws1d1{word-spacing:14.435608pt;}
.ws1a2{word-spacing:14.467615pt;}
.ws1f1{word-spacing:14.511107pt;}
.ws43{word-spacing:14.515627pt;}
.ws3c{word-spacing:14.542301pt;}
.ws1ae{word-spacing:14.590313pt;}
.wsa6{word-spacing:14.606316pt;}
.wsb1{word-spacing:14.616986pt;}
.ws187{word-spacing:14.627655pt;}
.wsad{word-spacing:14.638325pt;}
.ws18c{word-spacing:14.648995pt;}
.ws22f{word-spacing:14.664663pt;}
.wsc6{word-spacing:14.702341pt;}
.ws22c{word-spacing:14.705311pt;}
.ws280{word-spacing:14.723376pt;}
.ws129{word-spacing:14.723679pt;}
.ws231{word-spacing:14.732410pt;}
.ws1df{word-spacing:14.745958pt;}
.ws1f0{word-spacing:14.759507pt;}
.ws1ec{word-spacing:14.768540pt;}
.ws9e{word-spacing:14.777026pt;}
.ws108{word-spacing:14.798365pt;}
.wsb4{word-spacing:14.830372pt;}
.ws6e{word-spacing:14.851712pt;}
.ws252{word-spacing:14.867900pt;}
.ws26b{word-spacing:14.881450pt;}
.ws27e{word-spacing:14.899515pt;}
.wsd9{word-spacing:14.905058pt;}
.ws28{word-spacing:14.910393pt;}
.ws1d5{word-spacing:14.917581pt;}
.ws10e{word-spacing:14.958405pt;}
.ws7d{word-spacing:14.969075pt;}
.ws1b6{word-spacing:14.985078pt;}
.wsa7{word-spacing:14.990412pt;}
.ws19{word-spacing:15.033089pt;}
.ws1f9{word-spacing:15.048555pt;}
.wse7{word-spacing:15.065098pt;}
.ws1f{word-spacing:15.070433pt;}
.ws169{word-spacing:15.091771pt;}
.wse6{word-spacing:15.113110pt;}
.ws1b4{word-spacing:15.118445pt;}
.ws213{word-spacing:15.147916pt;}
.ws159{word-spacing:15.150452pt;}
.ws200{word-spacing:15.175014pt;}
.ws104{word-spacing:15.198464pt;}
.ws1c3{word-spacing:15.203799pt;}
.ws79{word-spacing:15.235808pt;}
.ws217{word-spacing:15.238244pt;}
.ws161{word-spacing:15.246476pt;}
.ws143{word-spacing:15.257146pt;}
.ws14d{word-spacing:15.267815pt;}
.ws288{word-spacing:15.274374pt;}
.ws246{word-spacing:15.278891pt;}
.ws95{word-spacing:15.294488pt;}
.ws4d{word-spacing:15.315827pt;}
.wsd2{word-spacing:15.331832pt;}
.ws29{word-spacing:15.347835pt;}
.ws253{word-spacing:15.351152pt;}
.ws4{word-spacing:15.362102pt;}
.ws1a{word-spacing:15.369174pt;}
.wseb{word-spacing:15.374509pt;}
.ws18a{word-spacing:15.379844pt;}
.ws54{word-spacing:15.406516pt;}
.ws180{word-spacing:15.417186pt;}
.ws1a1{word-spacing:15.438525pt;}
.ws133{word-spacing:15.449195pt;}
.ws21b{word-spacing:15.495677pt;}
.ws1e5{word-spacing:15.509225pt;}
.ws98{word-spacing:15.513209pt;}
.ws1da{word-spacing:15.522774pt;}
.ws117{word-spacing:15.534549pt;}
.ws1fe{word-spacing:15.536324pt;}
.ws266{word-spacing:15.563422pt;}
.ws1ac{word-spacing:15.577226pt;}
.ws122{word-spacing:15.587895pt;}
.ws27{word-spacing:15.609235pt;}
.ws264{word-spacing:15.653750pt;}
.ws185{word-spacing:15.662581pt;}
.ws190{word-spacing:15.683919pt;}
.ws271{word-spacing:15.698913pt;}
.ws15e{word-spacing:15.731931pt;}
.wsb7{word-spacing:15.753270pt;}
.ws154{word-spacing:15.774608pt;}
.ws61{word-spacing:15.790612pt;}
.ws140{word-spacing:15.801282pt;}
.ws1ab{word-spacing:15.827955pt;}
.ws1d2{word-spacing:15.833289pt;}
.ws103{word-spacing:15.843959pt;}
.ws195{word-spacing:15.875968pt;}
.ws57{word-spacing:15.902641pt;}
.ws1cd{word-spacing:15.929315pt;}
.ws1e6{word-spacing:15.938280pt;}
.wsfd{word-spacing:15.939983pt;}
.ws37{word-spacing:15.947313pt;}
.ws27c{word-spacing:15.956346pt;}
.ws270{word-spacing:15.974412pt;}
.ws19a{word-spacing:15.982661pt;}
.ws34{word-spacing:15.983445pt;}
.ws1b2{word-spacing:15.987995pt;}
.ws132{word-spacing:15.993329pt;}
.ws23b{word-spacing:16.024092pt;}
.ws6a{word-spacing:16.025338pt;}
.ws179{word-spacing:16.046676pt;}
.ws1b3{word-spacing:16.073350pt;}
.ws106{word-spacing:16.089355pt;}
.ws112{word-spacing:16.110692pt;}
.ws6d{word-spacing:16.142701pt;}
.ws22e{word-spacing:16.177649pt;}
.ws27d{word-spacing:16.186681pt;}
.wsfa{word-spacing:16.233390pt;}
.ws11b{word-spacing:16.286737pt;}
.ws91{word-spacing:16.324079pt;}
.ws1e{word-spacing:16.329414pt;}
.ws145{word-spacing:16.334749pt;}
.ws69{word-spacing:16.345418pt;}
.ws156{word-spacing:16.356088pt;}
.ws118{word-spacing:16.452112pt;}
.ws137{word-spacing:16.505458pt;}
.wsc4{word-spacing:16.516128pt;}
.ws60{word-spacing:16.526796pt;}
.ws94{word-spacing:16.537466pt;}
.wsb{word-spacing:16.580143pt;}
.ws17{word-spacing:16.665498pt;}
.ws20{word-spacing:16.686836pt;}
.wsf2{word-spacing:16.718845pt;}
.ws3b{word-spacing:16.750852pt;}
.ws174{word-spacing:16.766857pt;}
.wsde{word-spacing:16.804199pt;}
.ws237{word-spacing:16.814457pt;}
.wsec{word-spacing:16.814869pt;}
.ws21d{word-spacing:16.818974pt;}
.ws138{word-spacing:16.825538pt;}
.ws15d{word-spacing:16.852211pt;}
.ws21c{word-spacing:16.886719pt;}
.ws155{word-spacing:16.921562pt;}
.ws173{word-spacing:16.953569pt;}
.wsd4{word-spacing:16.964239pt;}
.ws21f{word-spacing:16.995112pt;}
.ws21{word-spacing:17.012251pt;}
.ws265{word-spacing:17.035760pt;}
.wsfb{word-spacing:17.038925pt;}
.wsf9{word-spacing:17.060263pt;}
.ws1c6{word-spacing:17.070932pt;}
.ws255{word-spacing:17.098988pt;}
.ws26d{word-spacing:17.108021pt;}
.wsed{word-spacing:17.113609pt;}
.ws216{word-spacing:17.121570pt;}
.ws16c{word-spacing:17.129614pt;}
.ws178{word-spacing:17.134949pt;}
.ws10d{word-spacing:17.145618pt;}
.ws211{word-spacing:17.166734pt;}
.ws1b7{word-spacing:17.177626pt;}
.ws12f{word-spacing:17.188295pt;}
.ws28c{word-spacing:17.211898pt;}
.ws5a{word-spacing:17.241642pt;}
.ws21e{word-spacing:17.324808pt;}
.wsc0{word-spacing:17.326996pt;}
.ws17d{word-spacing:17.337666pt;}
.ws25d{word-spacing:17.338357pt;}
.ws269{word-spacing:17.342873pt;}
.ws22a{word-spacing:17.356422pt;}
.ws26{word-spacing:17.359005pt;}
.wsc{word-spacing:17.369675pt;}
.ws114{word-spacing:17.380343pt;}
.ws25b{word-spacing:17.442233pt;}
.ws22b{word-spacing:17.478364pt;}
.ws1f5{word-spacing:17.487397pt;}
.wsd1{word-spacing:17.492371pt;}
.ws28f{word-spacing:17.514496pt;}
.ws1bb{word-spacing:17.556387pt;}
.ws196{word-spacing:17.561722pt;}
.ws40{word-spacing:17.583061pt;}
.ws8a{word-spacing:17.593729pt;}
.ws16e{word-spacing:17.615069pt;}
.ws62{word-spacing:17.636408pt;}
.ws1aa{word-spacing:17.663081pt;}
.ws113{word-spacing:17.775109pt;}
.ws4b{word-spacing:17.817786pt;}
.ws33{word-spacing:17.835157pt;}
.ws1c{word-spacing:17.839125pt;}
.wsb6{word-spacing:17.844460pt;}
.ws249{word-spacing:17.857740pt;}
.wsbb{word-spacing:17.892472pt;}
.ws58{word-spacing:17.903141pt;}
.ws14b{word-spacing:17.913809pt;}
.ws15f{word-spacing:17.919144pt;}
.ws142{word-spacing:17.945818pt;}
.wsd7{word-spacing:17.956488pt;}
.wsb5{word-spacing:17.988495pt;}
.ws1a3{word-spacing:18.009835pt;}
.ws14c{word-spacing:18.041842pt;}
.ws243{word-spacing:18.097107pt;}
.ws42{word-spacing:18.127196pt;}
.ws13{word-spacing:18.137866pt;}
.ws160{word-spacing:18.153870pt;}
.ws63{word-spacing:18.169875pt;}
.ws25a{word-spacing:18.178403pt;}
.ws3f{word-spacing:18.180543pt;}
.ws258{word-spacing:18.205500pt;}
.ws11d{word-spacing:18.233889pt;}
.ws1c4{word-spacing:18.255229pt;}
.ws11c{word-spacing:18.265898pt;}
.wsa9{word-spacing:18.303241pt;}
.ws10c{word-spacing:18.319245pt;}
.ws20e{word-spacing:18.354541pt;}
.ws182{word-spacing:18.367257pt;}
.wsea{word-spacing:18.372592pt;}
.ws136{word-spacing:18.377927pt;}
.ws8f{word-spacing:18.383261pt;}
.ws12d{word-spacing:18.388595pt;}
.ws162{word-spacing:18.415269pt;}
.ws16{word-spacing:18.425938pt;}
.wscc{word-spacing:18.436608pt;}
.ws65{word-spacing:18.447276pt;}
.ws14e{word-spacing:18.452605pt;}
.ws272{word-spacing:18.462933pt;}
.ws147{word-spacing:18.479285pt;}
.ws181{word-spacing:18.585978pt;}
.ws13f{word-spacing:18.607316pt;}
.ws1a0{word-spacing:18.649995pt;}
.ws1a7{word-spacing:18.682002pt;}
.ws15c{word-spacing:18.692672pt;}
.ws25e{word-spacing:18.711334pt;}
.ws2d{word-spacing:18.756688pt;}
.ws28a{word-spacing:18.765531pt;}
.ws194{word-spacing:18.810035pt;}
.ws1b{word-spacing:18.831372pt;}
.ws3d{word-spacing:18.906058pt;}
.ws7a{word-spacing:18.916728pt;}
.ws18f{word-spacing:18.948735pt;}
.ws41{word-spacing:18.970075pt;}
.ws183{word-spacing:18.991412pt;}
.ws3e{word-spacing:18.996748pt;}
.ws11{word-spacing:19.044759pt;}
.ws11a{word-spacing:19.055429pt;}
.ws12a{word-spacing:19.098106pt;}
.ws90{word-spacing:19.119445pt;}
.ws262{word-spacing:19.126829pt;}
.ws1ca{word-spacing:19.172792pt;}
.ws141{word-spacing:19.183461pt;}
.wsf1{word-spacing:19.204799pt;}
.ws1c7{word-spacing:19.226138pt;}
.wsa0{word-spacing:19.311492pt;}
.wsf4{word-spacing:19.332832pt;}
.ws259{word-spacing:19.334594pt;}
.ws1d6{word-spacing:19.361692pt;}
.ws78{word-spacing:19.386178pt;}
.ws8b{word-spacing:19.412851pt;}
.ws175{word-spacing:19.439525pt;}
.wse0{word-spacing:19.450195pt;}
.wse3{word-spacing:19.460863pt;}
.ws15b{word-spacing:19.471532pt;}
.wsa8{word-spacing:19.524879pt;}
.ws126{word-spacing:19.535549pt;}
.ws279{word-spacing:19.573962pt;}
.wsf5{word-spacing:19.588895pt;}
.ws2b{word-spacing:19.610234pt;}
.ws28b{word-spacing:19.619125pt;}
.wsb0{word-spacing:19.674249pt;}
.ws261{word-spacing:19.682354pt;}
.ws13e{word-spacing:19.706258pt;}
.ws5e{word-spacing:19.738266pt;}
.wsbe{word-spacing:19.770274pt;}
.ws21a{word-spacing:19.790748pt;}
.ws177{word-spacing:19.802282pt;}
.ws134{word-spacing:19.812951pt;}
.ws24a{word-spacing:19.890107pt;}
.wse{word-spacing:19.898306pt;}
.ws120{word-spacing:19.919645pt;}
.ws2a{word-spacing:19.930314pt;}
.ws184{word-spacing:19.940983pt;}
.ws19f{word-spacing:19.962322pt;}
.ws1c8{word-spacing:19.983661pt;}
.ws76{word-spacing:20.004999pt;}
.ws13a{word-spacing:20.015668pt;}
.ws192{word-spacing:20.063680pt;}
.ws188{word-spacing:20.069015pt;}
.ws14a{word-spacing:20.101023pt;}
.ws6f{word-spacing:20.111692pt;}
.ws47{word-spacing:20.143701pt;}
.ws45{word-spacing:20.165039pt;}
.wsc3{word-spacing:20.186378pt;}
.ws93{word-spacing:20.213051pt;}
.ws1b8{word-spacing:20.250394pt;}
.wsbc{word-spacing:20.303741pt;}
.ws11e{word-spacing:20.314409pt;}
.wsbf{word-spacing:20.325079pt;}
.ws215{word-spacing:20.346261pt;}
.ws46{word-spacing:20.346418pt;}
.wsf{word-spacing:20.389095pt;}
.wsaf{word-spacing:20.410434pt;}
.wse2{word-spacing:20.421102pt;}
.ws64{word-spacing:20.495788pt;}
.ws248{word-spacing:20.531433pt;}
.ws4c{word-spacing:20.533130pt;}
.ws226{word-spacing:20.535949pt;}
.ws127{word-spacing:20.538465pt;}
.ws75{word-spacing:20.581142pt;}
.ws193{word-spacing:20.607816pt;}
.ws189{word-spacing:20.613151pt;}
.ws228{word-spacing:20.648858pt;}
.ws256{word-spacing:20.675957pt;}
.ws1b9{word-spacing:20.719845pt;}
.wscd{word-spacing:20.741182pt;}
.ws1c5{word-spacing:20.751852pt;}
.ws167{word-spacing:20.783861pt;}
.ws13c{word-spacing:20.799864pt;}
.ws6c{word-spacing:20.805199pt;}
.ws1ba{word-spacing:20.869215pt;}
.ws176{word-spacing:20.911892pt;}
.ws52{word-spacing:20.943901pt;}
.ws9c{word-spacing:20.986578pt;}
.wscb{word-spacing:21.018585pt;}
.wse8{word-spacing:21.029255pt;}
.wsce{word-spacing:21.039925pt;}
.ws214{word-spacing:21.077914pt;}
.ws115{word-spacing:21.093271pt;}
.ws51{word-spacing:21.103941pt;}
.ws6b{word-spacing:21.157288pt;}
.ws14{word-spacing:21.189295pt;}
.ws208{word-spacing:21.258569pt;}
.wsc5{word-spacing:21.445359pt;}
.wsf7{word-spacing:21.456028pt;}
.wscf{word-spacing:21.552052pt;}
.ws206{word-spacing:21.579232pt;}
.wsf6{word-spacing:21.594729pt;}
.wsba{word-spacing:21.637408pt;}
.ws148{word-spacing:21.648076pt;}
.ws1d{word-spacing:21.658745pt;}
.ws24d{word-spacing:21.665042pt;}
.ws139{word-spacing:21.680085pt;}
.wsaa{word-spacing:21.776108pt;}
.ws1bc{word-spacing:21.786778pt;}
.ws144{word-spacing:21.797448pt;}
.ws13b{word-spacing:21.968156pt;}
.ws1c1{word-spacing:21.989495pt;}
.ws17c{word-spacing:22.032172pt;}
.ws1ce{word-spacing:22.064181pt;}
.ws17a{word-spacing:22.117528pt;}
.ws1a8{word-spacing:22.128196pt;}
.ws107{word-spacing:22.170874pt;}
.ws18{word-spacing:22.192212pt;}
.ws1bd{word-spacing:22.234889pt;}
.wsc9{word-spacing:22.277568pt;}
.ws128{word-spacing:22.330914pt;}
.ws92{word-spacing:22.341582pt;}
.wsc8{word-spacing:22.362922pt;}
.ws276{word-spacing:22.392178pt;}
.ws10b{word-spacing:22.416268pt;}
.ws16d{word-spacing:22.437608pt;}
.ws16b{word-spacing:22.458945pt;}
.wse1{word-spacing:22.480285pt;}
.wsff{word-spacing:22.490954pt;}
.ws9f{word-spacing:22.512292pt;}
.ws1b5{word-spacing:22.533631pt;}
.ws1dd{word-spacing:22.568316pt;}
.ws12b{word-spacing:22.618985pt;}
.wsfe{word-spacing:22.661662pt;}
.wsbd{word-spacing:22.683002pt;}
.ws1cc{word-spacing:22.725679pt;}
.wsae{word-spacing:22.757688pt;}
.ws110{word-spacing:22.800365pt;}
.wsa5{word-spacing:22.821702pt;}
.ws83{word-spacing:22.885719pt;}
.ws49{word-spacing:22.896388pt;}
.wsca{word-spacing:22.907058pt;}
.ws146{word-spacing:22.928396pt;}
.wsb2{word-spacing:22.960405pt;}
.ws10f{word-spacing:22.992412pt;}
.ws1fc{word-spacing:23.056085pt;}
.ws9d{word-spacing:23.077768pt;}
.ws2c{word-spacing:23.099105pt;}
.ws268{word-spacing:23.575467pt;}
.wsf0{word-spacing:23.675249pt;}
.ws1c9{word-spacing:23.707258pt;}
.ws168{word-spacing:23.728596pt;}
.ws274{word-spacing:23.832901pt;}
.ws82{word-spacing:23.845959pt;}
.wsc2{word-spacing:23.952652pt;}
.wsd8{word-spacing:23.963322pt;}
.ws125{word-spacing:24.005999pt;}
.ws97{word-spacing:24.038008pt;}
.ws210{word-spacing:24.117432pt;}
.wse9{word-spacing:24.134031pt;}
.ws27a{word-spacing:24.144530pt;}
.ws1ad{word-spacing:24.176708pt;}
.ws17b{word-spacing:24.198048pt;}
.ws247{word-spacing:24.198726pt;}
.ws48{word-spacing:24.219385pt;}
.ws1a9{word-spacing:24.230055pt;}
.wsc1{word-spacing:24.400765pt;}
.wsa2{word-spacing:24.454111pt;}
.ws13d{word-spacing:24.486119pt;}
.ws23{word-spacing:24.603482pt;}
.ws10{word-spacing:24.624821pt;}
.ws59{word-spacing:24.859545pt;}
.ws99{word-spacing:24.880885pt;}
.ws89{word-spacing:24.902222pt;}
.wsef{word-spacing:25.014245pt;}
.wsa4{word-spacing:25.024920pt;}
.wsb8{word-spacing:25.083602pt;}
.ws9a{word-spacing:25.595729pt;}
.wsac{word-spacing:25.649076pt;}
.ws275{word-spacing:25.666549pt;}
.ws186{word-spacing:25.723762pt;}
.ws53{word-spacing:25.745101pt;}
.ws19e{word-spacing:25.809116pt;}
.wsc7{word-spacing:25.915809pt;}
.wsab{word-spacing:26.299905pt;}
.ws88{word-spacing:26.513292pt;}
.ws27b{word-spacing:27.536327pt;}
.ws25c{word-spacing:28.746716pt;}
.ws209{word-spacing:29.397073pt;}
.ws273{word-spacing:31.921725pt;}
.ws1d3{word-spacing:33.470842pt;}
.ws281{word-spacing:43.149431pt;}
.ws1dc{word-spacing:47.042535pt;}
.ws73{word-spacing:1577.722703pt;}
._12{margin-left:-21.533940pt;}
._11{margin-left:-20.246113pt;}
._21{margin-left:-16.570798pt;}
._19{margin-left:-13.477118pt;}
._6{margin-left:-12.299990pt;}
._8{margin-left:-11.368142pt;}
._7{margin-left:-10.398297pt;}
._14{margin-left:-5.670745pt;}
._16{margin-left:-4.542184pt;}
._17{margin-left:-3.206625pt;}
._3{margin-left:-2.031845pt;}
._0{margin-left:-1.064482pt;}
._5{width:0.903276pt;}
._4{width:1.955326pt;}
._23{width:2.895259pt;}
._26{width:3.943057pt;}
._1{width:7.822727pt;}
._9{width:9.156777pt;}
._1d{width:10.794231pt;}
._b{width:11.755153pt;}
._1b{width:12.651377pt;}
._c{width:13.768112pt;}
._18{width:14.732410pt;}
._13{width:15.934649pt;}
._2{width:17.152809pt;}
._a{width:18.068515pt;}
._d{width:19.034090pt;}
._10{width:20.007953pt;}
._e{width:21.520476pt;}
._1a{width:22.645660pt;}
._f{width:23.855966pt;}
._15{width:25.569056pt;}
._1e{width:26.539965pt;}
._1f{width:27.500206pt;}
._27{width:28.805427pt;}
._25{width:30.512618pt;}
._24{width:31.461056pt;}
._28{width:33.276631pt;}
._22{width:35.033413pt;}
._1c{width:38.486178pt;}
._20{width:1578.252341pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:39.850667pt;}
.fs6{font-size:45.163732pt;}
.fs5{font-size:50.689600pt;}
.fs8{font-size:53.133865pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.447467pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:79.701333pt;}
.fs7{font-size:85.014399pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:55.460002pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y147{bottom:100.732381pt;}
.y8c{bottom:100.735231pt;}
.y4f{bottom:100.739207pt;}
.yee{bottom:100.739411pt;}
.y5a{bottom:109.054942pt;}
.y4e{bottom:114.019603pt;}
.y1b5{bottom:114.176840pt;}
.y1f6{bottom:117.358843pt;}
.y237{bottom:117.371707pt;}
.y146{bottom:117.372539pt;}
.y180{bottom:117.373032pt;}
.y8b{bottom:117.375389pt;}
.y11f{bottom:117.375814pt;}
.yed{bottom:117.379570pt;}
.y21{bottom:123.790666pt;}
.y59{bottom:125.695100pt;}
.y1b4{bottom:127.457236pt;}
.y1f5{bottom:130.639238pt;}
.y236{bottom:130.652103pt;}
.y4d{bottom:131.299998pt;}
.y145{bottom:134.012697pt;}
.y17f{bottom:134.013191pt;}
.y8a{bottom:134.015547pt;}
.y11e{bottom:134.015972pt;}
.yec{bottom:134.019728pt;}
.y1b3{bottom:140.737631pt;}
.y58{bottom:142.335259pt;}
.y1f4{bottom:143.919634pt;}
.y235{bottom:143.932498pt;}
.y4c{bottom:147.299215pt;}
.y144{bottom:150.492816pt;}
.y17e{bottom:150.493309pt;}
.y177{bottom:150.493975pt;}
.y89{bottom:150.495665pt;}
.y11d{bottom:150.496091pt;}
.yeb{bottom:150.499846pt;}
.y1b2{bottom:154.018026pt;}
.y1f3{bottom:157.200029pt;}
.y234{bottom:157.212893pt;}
.y4b{bottom:160.579610pt;}
.ybd{bottom:167.129181pt;}
.y143{bottom:167.132974pt;}
.y17d{bottom:167.133467pt;}
.y176{bottom:167.134133pt;}
.y57{bottom:167.134789pt;}
.y88{bottom:167.135824pt;}
.y11c{bottom:167.136249pt;}
.yea{bottom:167.140004pt;}
.y1b1{bottom:167.298422pt;}
.y1f2{bottom:170.480424pt;}
.y233{bottom:170.493289pt;}
.y18{bottom:175.052000pt;}
.y4a{bottom:177.860006pt;}
.y1b0{bottom:180.578817pt;}
.y1f1{bottom:183.760820pt;}
.ybc{bottom:183.769339pt;}
.y142{bottom:183.773132pt;}
.y17c{bottom:183.773626pt;}
.y232{bottom:183.773684pt;}
.y175{bottom:183.774291pt;}
.y56{bottom:183.774947pt;}
.y87{bottom:183.775982pt;}
.y11b{bottom:183.776407pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y49{bottom:193.699605pt;}
.y1af{bottom:193.859213pt;}
.y1f0{bottom:197.041215pt;}
.y231{bottom:197.054079pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ybb{bottom:200.409498pt;}
.y141{bottom:200.413291pt;}
.y17b{bottom:200.413784pt;}
.y174{bottom:200.414450pt;}
.y55{bottom:200.415106pt;}
.y86{bottom:200.416140pt;}
.y11a{bottom:200.416566pt;}
.ye9{bottom:201.219350pt;}
.y1ae{bottom:207.139608pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1ef{bottom:210.321610pt;}
.y230{bottom:210.334475pt;}
.y48{bottom:210.980000pt;}
.yba{bottom:217.049656pt;}
.y140{bottom:217.053449pt;}
.y17a{bottom:217.053942pt;}
.y173{bottom:217.054608pt;}
.y54{bottom:217.055264pt;}
.y85{bottom:217.056299pt;}
.y119{bottom:217.056724pt;}
.ye8{bottom:217.699992pt;}
.y1ad{bottom:220.420003pt;}
.y1ee{bottom:223.602006pt;}
.y22f{bottom:223.614870pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yb9{bottom:233.529774pt;}
.y13f{bottom:233.533567pt;}
.y179{bottom:233.534060pt;}
.y172{bottom:233.534726pt;}
.y53{bottom:233.535382pt;}
.y84{bottom:233.536417pt;}
.y118{bottom:233.536842pt;}
.y1ed{bottom:236.882401pt;}
.y22e{bottom:236.895265pt;}
.y47{bottom:236.899597pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1ec{bottom:250.162796pt;}
.yb8{bottom:250.169933pt;}
.y13e{bottom:250.173726pt;}
.y178{bottom:250.174219pt;}
.y171{bottom:250.174885pt;}
.y52{bottom:250.175541pt;}
.y22d{bottom:250.175661pt;}
.y83{bottom:250.176575pt;}
.y117{bottom:250.177000pt;}
.y46{bottom:250.179993pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1eb{bottom:263.443192pt;}
.y22c{bottom:263.456056pt;}
.yb7{bottom:266.810091pt;}
.y13d{bottom:266.813884pt;}
.ye7{bottom:266.814377pt;}
.y170{bottom:266.815043pt;}
.y51{bottom:266.815699pt;}
.y82{bottom:266.816734pt;}
.y116{bottom:266.817159pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1ea{bottom:276.723587pt;}
.y22b{bottom:276.736451pt;}
.yb6{bottom:283.450249pt;}
.y13c{bottom:283.454042pt;}
.ye6{bottom:283.454535pt;}
.y16f{bottom:283.455201pt;}
.y50{bottom:283.455857pt;}
.y81{bottom:283.456892pt;}
.y115{bottom:283.457317pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1ac{bottom:288.732608pt;}
.y1e9{bottom:290.003983pt;}
.y22a{bottom:290.016847pt;}
.yb5{bottom:299.930367pt;}
.y13b{bottom:299.934160pt;}
.ye5{bottom:299.934654pt;}
.y16e{bottom:299.935320pt;}
.y45{bottom:299.935976pt;}
.y80{bottom:299.937010pt;}
.y114{bottom:299.937435pt;}
.y1ab{bottom:302.013003pt;}
.y1e8{bottom:303.284378pt;}
.y229{bottom:303.297242pt;}
.yf{bottom:309.452000pt;}
.y1aa{bottom:315.293398pt;}
.y1e7{bottom:316.564773pt;}
.yb4{bottom:316.570526pt;}
.y13a{bottom:316.574319pt;}
.ye4{bottom:316.574812pt;}
.y16d{bottom:316.575478pt;}
.y44{bottom:316.576134pt;}
.y7f{bottom:316.577169pt;}
.y113{bottom:316.577594pt;}
.y228{bottom:316.577638pt;}
.y1a9{bottom:328.573794pt;}
.y1e6{bottom:329.845169pt;}
.y227{bottom:329.858033pt;}
.yb3{bottom:333.210684pt;}
.y139{bottom:333.214477pt;}
.ye3{bottom:333.214970pt;}
.y16c{bottom:333.215636pt;}
.y43{bottom:333.216292pt;}
.y7e{bottom:333.217327pt;}
.y112{bottom:333.217752pt;}
.y1a8{bottom:341.854189pt;}
.y1e5{bottom:343.125564pt;}
.y226{bottom:343.138428pt;}
.ye{bottom:343.809333pt;}
.yb2{bottom:349.850842pt;}
.y138{bottom:349.854635pt;}
.ye2{bottom:349.855129pt;}
.y16b{bottom:349.855795pt;}
.y42{bottom:349.856450pt;}
.y7d{bottom:349.857485pt;}
.y111{bottom:349.857910pt;}
.y1a7{bottom:355.134584pt;}
.y1e4{bottom:356.405959pt;}
.y225{bottom:356.418824pt;}
.yd{bottom:362.706666pt;}
.yb1{bottom:366.491001pt;}
.y137{bottom:366.494794pt;}
.ye1{bottom:366.495287pt;}
.y16a{bottom:366.495953pt;}
.y41{bottom:366.496609pt;}
.y7c{bottom:366.497643pt;}
.y110{bottom:366.498069pt;}
.y1a6{bottom:368.414980pt;}
.y1e3{bottom:369.686355pt;}
.y224{bottom:369.699219pt;}
.y1a5{bottom:381.695375pt;}
.y1e2{bottom:382.966750pt;}
.yb0{bottom:382.971119pt;}
.y136{bottom:382.974912pt;}
.ye0{bottom:382.975405pt;}
.y169{bottom:382.976071pt;}
.y40{bottom:382.976727pt;}
.y7b{bottom:382.977762pt;}
.y10f{bottom:382.978187pt;}
.y223{bottom:382.979614pt;}
.y1a4{bottom:394.975770pt;}
.y1e1{bottom:396.247145pt;}
.y222{bottom:396.260010pt;}
.yaf{bottom:399.611277pt;}
.y135{bottom:399.615070pt;}
.ydf{bottom:399.615563pt;}
.y168{bottom:399.616229pt;}
.y3f{bottom:399.616885pt;}
.y7a{bottom:399.617920pt;}
.y10e{bottom:399.618345pt;}
.y1a3{bottom:408.256166pt;}
.y221{bottom:409.500438pt;}
.y1e0{bottom:409.527541pt;}
.yae{bottom:416.251436pt;}
.y134{bottom:416.255229pt;}
.yde{bottom:416.255722pt;}
.y167{bottom:416.256388pt;}
.y3e{bottom:416.257044pt;}
.y79{bottom:416.258078pt;}
.y10d{bottom:416.258503pt;}
.y1a2{bottom:421.536561pt;}
.y220{bottom:422.780833pt;}
.y1df{bottom:422.807936pt;}
.yad{bottom:432.891594pt;}
.y133{bottom:432.895387pt;}
.ydd{bottom:432.895880pt;}
.y166{bottom:432.896546pt;}
.y3d{bottom:432.897202pt;}
.y78{bottom:432.898237pt;}
.y10c{bottom:432.898662pt;}
.y1a1{bottom:434.816957pt;}
.y21f{bottom:436.061228pt;}
.y1de{bottom:436.088332pt;}
.yc{bottom:446.990669pt;}
.y1a0{bottom:448.097352pt;}
.y21e{bottom:449.341624pt;}
.y1dd{bottom:449.368727pt;}
.yac{bottom:449.371712pt;}
.y132{bottom:449.375505pt;}
.ydc{bottom:449.375998pt;}
.y165{bottom:449.376664pt;}
.y3c{bottom:449.377320pt;}
.y77{bottom:449.378355pt;}
.y10b{bottom:449.378780pt;}
.y21d{bottom:462.781221pt;}
.y1dc{bottom:462.808324pt;}
.yb{bottom:462.990669pt;}
.yab{bottom:466.011870pt;}
.y131{bottom:466.015663pt;}
.ydb{bottom:466.016157pt;}
.y164{bottom:466.016823pt;}
.y3b{bottom:466.017479pt;}
.y76{bottom:466.018513pt;}
.y10a{bottom:466.018938pt;}
.y19f{bottom:470.657765pt;}
.y21c{bottom:476.061617pt;}
.y1db{bottom:476.088720pt;}
.ya{bottom:478.990666pt;}
.yaa{bottom:482.652029pt;}
.y130{bottom:482.655822pt;}
.yda{bottom:482.656315pt;}
.y163{bottom:482.656981pt;}
.y3a{bottom:482.657637pt;}
.y75{bottom:482.658672pt;}
.y109{bottom:482.659097pt;}
.y19e{bottom:483.938160pt;}
.y21b{bottom:489.342012pt;}
.y1da{bottom:489.369115pt;}
.y9{bottom:494.990666pt;}
.ya9{bottom:499.292187pt;}
.y12f{bottom:499.295980pt;}
.yd9{bottom:499.296473pt;}
.y162{bottom:499.297139pt;}
.y39{bottom:499.297795pt;}
.y74{bottom:499.298830pt;}
.y108{bottom:499.299255pt;}
.y21a{bottom:502.622407pt;}
.y1d9{bottom:502.649511pt;}
.y19d{bottom:509.857626pt;}
.y219{bottom:515.902803pt;}
.y1d8{bottom:515.929906pt;}
.ya8{bottom:515.932345pt;}
.y12e{bottom:515.936138pt;}
.yd8{bottom:515.936632pt;}
.y161{bottom:515.937298pt;}
.y38{bottom:515.937954pt;}
.y73{bottom:515.938988pt;}
.y107{bottom:515.939413pt;}
.y19c{bottom:523.138022pt;}
.y218{bottom:529.183198pt;}
.y1d7{bottom:529.210301pt;}
.ya7{bottom:532.412464pt;}
.y12d{bottom:532.416257pt;}
.yd7{bottom:532.416750pt;}
.y160{bottom:532.417416pt;}
.y37{bottom:532.418072pt;}
.y72{bottom:532.419106pt;}
.y106{bottom:532.419532pt;}
.y19b{bottom:536.418417pt;}
.y217{bottom:542.463593pt;}
.y1d6{bottom:542.490697pt;}
.ya6{bottom:549.052622pt;}
.y12c{bottom:549.056415pt;}
.yd6{bottom:549.056908pt;}
.y15f{bottom:549.057574pt;}
.y36{bottom:549.058230pt;}
.y71{bottom:549.059265pt;}
.y105{bottom:549.059690pt;}
.y19a{bottom:549.698812pt;}
.y216{bottom:555.743989pt;}
.y1d5{bottom:555.771092pt;}
.y199{bottom:562.979208pt;}
.ya5{bottom:565.692780pt;}
.y12b{bottom:565.696573pt;}
.yd5{bottom:565.697066pt;}
.y15e{bottom:565.697732pt;}
.y35{bottom:565.698388pt;}
.y70{bottom:565.699423pt;}
.y104{bottom:565.699848pt;}
.y215{bottom:569.024384pt;}
.y1d4{bottom:569.051487pt;}
.y8{bottom:573.786667pt;}
.y198{bottom:576.259603pt;}
.y214{bottom:582.304779pt;}
.y1d3{bottom:582.331883pt;}
.ya4{bottom:582.332939pt;}
.y12a{bottom:582.336732pt;}
.yd4{bottom:582.337225pt;}
.y15d{bottom:582.337891pt;}
.y34{bottom:582.338547pt;}
.y6f{bottom:582.339581pt;}
.y103{bottom:582.340007pt;}
.y197{bottom:589.539998pt;}
.y7{bottom:592.685334pt;}
.y213{bottom:595.585175pt;}
.y1d2{bottom:595.612278pt;}
.ya3{bottom:598.813057pt;}
.y129{bottom:598.816850pt;}
.yd3{bottom:598.817343pt;}
.y15c{bottom:598.818009pt;}
.y33{bottom:598.818665pt;}
.y6e{bottom:598.819700pt;}
.y212{bottom:608.865570pt;}
.y1d1{bottom:608.892673pt;}
.y196{bottom:615.452185pt;}
.ya2{bottom:615.453215pt;}
.y128{bottom:615.457008pt;}
.yd2{bottom:615.457501pt;}
.y15b{bottom:615.458167pt;}
.y32{bottom:615.458823pt;}
.y6d{bottom:615.459858pt;}
.y102{bottom:615.460023pt;}
.y211{bottom:622.145966pt;}
.y1d0{bottom:622.173069pt;}
.y195{bottom:632.092343pt;}
.ya1{bottom:632.093373pt;}
.y127{bottom:632.097166pt;}
.yd1{bottom:632.097660pt;}
.y15a{bottom:632.098326pt;}
.y31{bottom:632.098982pt;}
.y6c{bottom:632.100016pt;}
.y210{bottom:635.426361pt;}
.y1cf{bottom:635.453464pt;}
.y6{bottom:645.598667pt;}
.y20f{bottom:648.706756pt;}
.y194{bottom:648.732501pt;}
.ya0{bottom:648.733532pt;}
.y1ce{bottom:648.733859pt;}
.y126{bottom:648.737325pt;}
.yd0{bottom:648.737818pt;}
.y159{bottom:648.738484pt;}
.y30{bottom:648.739140pt;}
.y20e{bottom:661.987152pt;}
.y1cd{bottom:662.014255pt;}
.y193{bottom:665.372660pt;}
.y9f{bottom:665.373690pt;}
.y125{bottom:665.377483pt;}
.y101{bottom:665.377871pt;}
.ycf{bottom:665.377976pt;}
.y158{bottom:665.378642pt;}
.y2f{bottom:665.379298pt;}
.y6b{bottom:666.019879pt;}
.y3{bottom:668.977329pt;}
.y20d{bottom:675.267547pt;}
.y1cc{bottom:675.294650pt;}
.y192{bottom:681.852778pt;}
.y9e{bottom:681.853808pt;}
.y124{bottom:681.857601pt;}
.y100{bottom:681.857989pt;}
.yce{bottom:681.858095pt;}
.y157{bottom:681.858761pt;}
.y2e{bottom:681.859417pt;}
.y6a{bottom:682.659923pt;}
.y20c{bottom:688.547942pt;}
.y1cb{bottom:688.575046pt;}
.y191{bottom:698.492936pt;}
.y9d{bottom:698.493967pt;}
.y123{bottom:698.497760pt;}
.yff{bottom:698.498147pt;}
.ycd{bottom:698.498253pt;}
.y156{bottom:698.498919pt;}
.y2d{bottom:698.499575pt;}
.y69{bottom:699.299967pt;}
.y20b{bottom:701.828338pt;}
.y1ca{bottom:701.855441pt;}
.y20a{bottom:715.108733pt;}
.y190{bottom:715.133095pt;}
.y9c{bottom:715.134125pt;}
.y1c9{bottom:715.135836pt;}
.y122{bottom:715.137918pt;}
.yfe{bottom:715.138306pt;}
.ycc{bottom:715.138411pt;}
.y155{bottom:715.139077pt;}
.y2c{bottom:715.139733pt;}
.y209{bottom:728.389128pt;}
.y1c8{bottom:728.416232pt;}
.y18f{bottom:731.773253pt;}
.y9b{bottom:731.774283pt;}
.y121{bottom:731.778076pt;}
.yfd{bottom:731.778464pt;}
.ycb{bottom:731.778570pt;}
.y154{bottom:731.779235pt;}
.y2b{bottom:731.779891pt;}
.y208{bottom:741.669524pt;}
.y1c7{bottom:741.696627pt;}
.y18e{bottom:748.253371pt;}
.y9a{bottom:748.254402pt;}
.y68{bottom:748.258195pt;}
.yfc{bottom:748.258582pt;}
.yca{bottom:748.258688pt;}
.y153{bottom:748.259354pt;}
.y2a{bottom:748.260010pt;}
.y207{bottom:754.948790pt;}
.y1c6{bottom:754.977022pt;}
.y18d{bottom:764.893530pt;}
.y99{bottom:764.894560pt;}
.y67{bottom:764.898353pt;}
.yfb{bottom:764.898741pt;}
.yc9{bottom:764.898846pt;}
.y152{bottom:764.899512pt;}
.y206{bottom:768.229185pt;}
.y1c5{bottom:768.257418pt;}
.y205{bottom:781.509581pt;}
.y18c{bottom:781.533688pt;}
.y98{bottom:781.534718pt;}
.y1c4{bottom:781.537813pt;}
.y66{bottom:781.538511pt;}
.yfa{bottom:781.538899pt;}
.yc8{bottom:781.539004pt;}
.y151{bottom:781.539670pt;}
.y2{bottom:781.661334pt;}
.y204{bottom:794.789976pt;}
.y1c3{bottom:794.818208pt;}
.y18b{bottom:798.173846pt;}
.y97{bottom:798.174877pt;}
.y65{bottom:798.178669pt;}
.yf9{bottom:798.179057pt;}
.yc7{bottom:798.179163pt;}
.y150{bottom:798.179829pt;}
.y29{bottom:806.979614pt;}
.y203{bottom:808.070372pt;}
.y1c2{bottom:808.098604pt;}
.y18a{bottom:814.814005pt;}
.y96{bottom:814.815035pt;}
.y120{bottom:814.818828pt;}
.yf8{bottom:814.819215pt;}
.yc6{bottom:814.819321pt;}
.y14f{bottom:814.819987pt;}
.y28{bottom:820.260010pt;}
.y202{bottom:821.350767pt;}
.y1c1{bottom:821.378999pt;}
.y189{bottom:831.294123pt;}
.y95{bottom:831.295153pt;}
.y64{bottom:831.298946pt;}
.yf7{bottom:831.299334pt;}
.yc5{bottom:831.299439pt;}
.y201{bottom:834.630033pt;}
.y23c{bottom:834.657136pt;}
.y1c0{bottom:834.659395pt;}
.y200{bottom:847.910429pt;}
.y188{bottom:847.934281pt;}
.y94{bottom:847.935311pt;}
.y23b{bottom:847.937532pt;}
.y63{bottom:847.939104pt;}
.yf6{bottom:847.939492pt;}
.yc4{bottom:847.939598pt;}
.y1bf{bottom:847.939790pt;}
.y14e{bottom:847.939983pt;}
.y245{bottom:848.574335pt;}
.y26{bottom:850.180013pt;}
.y27{bottom:854.180013pt;}
.y1{bottom:859.312000pt;}
.y1ff{bottom:861.190824pt;}
.y23a{bottom:861.217927pt;}
.y1be{bottom:861.220185pt;}
.y244{bottom:861.854731pt;}
.y187{bottom:864.574439pt;}
.y93{bottom:864.575470pt;}
.y62{bottom:864.579263pt;}
.yf5{bottom:864.579650pt;}
.yc3{bottom:864.579756pt;}
.y14d{bottom:864.579977pt;}
.y1fe{bottom:874.471219pt;}
.y239{bottom:874.498322pt;}
.y1bd{bottom:874.500581pt;}
.y186{bottom:881.214598pt;}
.y92{bottom:881.215628pt;}
.y61{bottom:881.219421pt;}
.yf4{bottom:881.219809pt;}
.yc2{bottom:881.219914pt;}
.y14c{bottom:881.219971pt;}
.y1fd{bottom:887.751615pt;}
.y243{bottom:887.774196pt;}
.y238{bottom:887.778718pt;}
.y1bc{bottom:887.779847pt;}
.y25{bottom:891.620036pt;}
.y185{bottom:897.694716pt;}
.y91{bottom:897.695746pt;}
.y60{bottom:897.699539pt;}
.yf3{bottom:897.699927pt;}
.yc1{bottom:897.700033pt;}
.y1fc{bottom:901.032010pt;}
.y242{bottom:901.054592pt;}
.y1bb{bottom:901.059113pt;}
.y1fb{bottom:914.312405pt;}
.y14b{bottom:914.333055pt;}
.y184{bottom:914.334874pt;}
.y241{bottom:914.334987pt;}
.y90{bottom:914.335905pt;}
.y1ba{bottom:914.338379pt;}
.y5f{bottom:914.339698pt;}
.yf2{bottom:914.340085pt;}
.y1fa{bottom:927.592801pt;}
.y240{bottom:927.615382pt;}
.y1b9{bottom:927.618775pt;}
.y14a{bottom:930.973213pt;}
.y183{bottom:930.975033pt;}
.y8f{bottom:930.976063pt;}
.y5e{bottom:930.979856pt;}
.yf1{bottom:930.980244pt;}
.yc0{bottom:931.779298pt;}
.y1f9{bottom:940.873196pt;}
.y23f{bottom:940.895778pt;}
.y1b8{bottom:940.899170pt;}
.y149{bottom:947.613371pt;}
.y182{bottom:947.615191pt;}
.y8e{bottom:947.616221pt;}
.y5d{bottom:947.620014pt;}
.yf0{bottom:947.620402pt;}
.ybf{bottom:948.419342pt;}
.y22{bottom:953.379964pt;}
.y1f8{bottom:954.153591pt;}
.y23e{bottom:954.176173pt;}
.y1b7{bottom:954.179566pt;}
.y148{bottom:964.253530pt;}
.y181{bottom:964.255349pt;}
.y8d{bottom:964.256380pt;}
.y5c{bottom:964.260173pt;}
.yef{bottom:964.260560pt;}
.ybe{bottom:964.899984pt;}
.y1f7{bottom:967.433987pt;}
.y23d{bottom:967.456568pt;}
.y1b6{bottom:967.459961pt;}
.y23{bottom:986.500000pt;}
.y24{bottom:1001.540039pt;}
.h11{height:21.933807pt;}
.he{height:22.635179pt;}
.h7{height:28.560000pt;}
.h10{height:31.072648pt;}
.hb{height:32.292068pt;}
.ha{height:35.989616pt;}
.hf{height:36.702505pt;}
.h12{height:36.915892pt;}
.h15{height:37.289318pt;}
.hd{height:38.635179pt;}
.h6{height:40.800000pt;}
.h16{height:41.789939pt;}
.h3{height:42.840000pt;}
.h14{height:45.971729pt;}
.h13{height:48.584390pt;}
.h2{height:48.960000pt;}
.hc{height:60.785295pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1054.666667pt;}
.h8{height:1054.721333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.876000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.019999pt;}
.xa{left:69.299998pt;}
.x5{left:75.539998pt;}
.x9{left:83.219797pt;}
.xf{left:86.419849pt;}
.xb{left:88.339864pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x7{left:212.179993pt;}
.x8{left:388.180013pt;}
.x3{left:404.408000pt;}
.xc{left:408.180013pt;}
.xd{left:423.379827pt;}
.x12{left:430.899627pt;}
.x10{left:435.700003pt;}
.x11{left:672.340007pt;}
.xe{left:674.899984pt;}
}




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