
    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_7a07b496340c697ee665fb53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915000;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_adb90e56e9323bf0925bbc79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937000;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_b78279b5ec5384edb2e2f610.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_a0eae27701cca7abbd1bb195.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014000;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_7664ecd75ffe4f5027119ef6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_932f673439ed7987c8836696.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_390ad0b7aea21b59e45db081.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751000;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_de6c36a213ab5c64366db652.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.879000;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_66fa1b02a93ac10a49f584de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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_91b0e9457fdfa2972c7be9ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963000;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_f80a3698c9137b3de7010722.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.735077;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_9d3c710ff5c7c1dd0cab8473.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(-0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(-0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(-0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v5{vertical-align:-32.448600px;}
.vb{vertical-align:-28.884600px;}
.v8{vertical-align:-25.323600px;}
.v2{vertical-align:-19.493400px;}
.vc{vertical-align:-8.962627px;}
.v9{vertical-align:-5.594400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.988000px;}
.v3{vertical-align:17.982000px;}
.v7{vertical-align:19.553266px;}
.v4{vertical-align:21.707985px;}
.v1{vertical-align:32.562000px;}
.v6{vertical-align:45.585600px;}
.lsba{letter-spacing:-1.977091px;}
.lsc0{letter-spacing:-0.990339px;}
.lsbe{letter-spacing:-0.977338px;}
.ls1e{letter-spacing:-0.897895px;}
.lsb1{letter-spacing:-0.883190px;}
.lsaa{letter-spacing:-0.796216px;}
.lsc6{letter-spacing:-0.654547px;}
.lsc5{letter-spacing:-0.493152px;}
.lsb8{letter-spacing:-0.367174px;}
.ls48{letter-spacing:-0.334743px;}
.lsbb{letter-spacing:-0.255991px;}
.ls14{letter-spacing:-0.137484px;}
.lsc7{letter-spacing:-0.089664px;}
.lsc4{letter-spacing:-0.054247px;}
.lsab{letter-spacing:-0.053798px;}
.ls19{letter-spacing:-0.035866px;}
.lsb4{letter-spacing:-0.031382px;}
.ls1a{letter-spacing:-0.027796px;}
.lsb9{letter-spacing:-0.026899px;}
.ls11{letter-spacing:-0.025016px;}
.ls13{letter-spacing:-0.023910px;}
.lsbd{letter-spacing:-0.022416px;}
.ls17{letter-spacing:-0.018530px;}
.lsb6{letter-spacing:-0.017933px;}
.ls9e{letter-spacing:-0.016737px;}
.ls4b{letter-spacing:-0.016678px;}
.lsb0{letter-spacing:-0.013898px;}
.ls16{letter-spacing:-0.011955px;}
.ls21{letter-spacing:-0.010162px;}
.ls1b{letter-spacing:-0.009863px;}
.lsae{letter-spacing:-0.008966px;}
.ls15{letter-spacing:-0.006575px;}
.ls1d{letter-spacing:-0.005918px;}
.ls20{letter-spacing:-0.005589px;}
.lsa9{letter-spacing:-0.005260px;}
.lsad{letter-spacing:-0.004932px;}
.ls12{letter-spacing:0.000000px;}
.ls9d{letter-spacing:0.004782px;}
.lsa0{letter-spacing:0.004932px;}
.ls9c{letter-spacing:0.005260px;}
.ls28{letter-spacing:0.005380px;}
.lsc{letter-spacing:0.005918px;}
.ls52{letter-spacing:0.006123px;}
.ls0{letter-spacing:0.006575px;}
.ls23{letter-spacing:0.007233px;}
.ls1c{letter-spacing:0.007496px;}
.ls35{letter-spacing:0.008369px;}
.lsa3{letter-spacing:0.008966px;}
.ls5b{letter-spacing:0.009205px;}
.lsd{letter-spacing:0.010760px;}
.ls3{letter-spacing:0.011955px;}
.lsa1{letter-spacing:0.013898px;}
.ls9f{letter-spacing:0.014824px;}
.ls29{letter-spacing:0.016140px;}
.ls2f{letter-spacing:0.016678px;}
.ls2d{letter-spacing:0.016737px;}
.ls2{letter-spacing:0.017933px;}
.ls1{letter-spacing:0.018530px;}
.ls4{letter-spacing:0.019068px;}
.lsa2{letter-spacing:0.022416px;}
.ls93{letter-spacing:0.023466px;}
.ls50{letter-spacing:0.026899px;}
.lsaf{letter-spacing:0.031382px;}
.ls98{letter-spacing:0.033355px;}
.lsb2{letter-spacing:0.040349px;}
.ls24{letter-spacing:0.049495px;}
.ls22{letter-spacing:0.066411px;}
.lsc8{letter-spacing:0.067248px;}
.ls5{letter-spacing:0.069340px;}
.lsa5{letter-spacing:0.094596px;}
.ls10{letter-spacing:0.095641px;}
.lsa7{letter-spacing:0.098630px;}
.lsa6{letter-spacing:0.107597px;}
.lsbf{letter-spacing:0.121046px;}
.ls3e{letter-spacing:0.321089px;}
.ls3a{letter-spacing:0.331557px;}
.lsbc{letter-spacing:0.363139px;}
.ls6b{letter-spacing:1.040095px;}
.ls18{letter-spacing:1.087916px;}
.ls75{letter-spacing:1.361090px;}
.ls89{letter-spacing:1.362884px;}
.ls79{letter-spacing:1.398758px;}
.ls72{letter-spacing:1.730808px;}
.ls76{letter-spacing:1.733492px;}
.ls71{letter-spacing:1.739470px;}
.ls32{letter-spacing:1.906842px;}
.ls86{letter-spacing:2.357458px;}
.ls84{letter-spacing:2.361136px;}
.ls6e{letter-spacing:2.364037px;}
.ls6c{letter-spacing:2.367114px;}
.ls6{letter-spacing:2.959301px;}
.lsa{letter-spacing:2.988130px;}
.lsb{letter-spacing:3.004819px;}
.lsf{letter-spacing:3.005107px;}
.ls7{letter-spacing:3.013301px;}
.ls8{letter-spacing:3.023482px;}
.lse{letter-spacing:3.034505px;}
.ls36{letter-spacing:4.321348px;}
.ls6a{letter-spacing:5.400000px;}
.lsc3{letter-spacing:6.608237px;}
.lsb7{letter-spacing:6.613168px;}
.ls31{letter-spacing:6.635092px;}
.lsb3{letter-spacing:6.688934px;}
.lsc2{letter-spacing:7.007242px;}
.lsb5{letter-spacing:7.011725px;}
.lsa8{letter-spacing:7.015611px;}
.lsa4{letter-spacing:7.015760px;}
.lsc1{letter-spacing:7.020691px;}
.lsac{letter-spacing:7.024726px;}
.ls42{letter-spacing:7.241265px;}
.ls49{letter-spacing:8.763701px;}
.ls8c{letter-spacing:9.097846px;}
.ls1f{letter-spacing:9.408082px;}
.ls7e{letter-spacing:9.719460px;}
.ls30{letter-spacing:9.720000px;}
.ls2e{letter-spacing:10.221696px;}
.ls51{letter-spacing:10.383091px;}
.ls55{letter-spacing:10.420750px;}
.ls43{letter-spacing:10.436890px;}
.ls26{letter-spacing:10.447649px;}
.ls78{letter-spacing:10.453029px;}
.ls45{letter-spacing:10.463789px;}
.ls27{letter-spacing:10.474548px;}
.ls2a{letter-spacing:10.479928px;}
.ls33{letter-spacing:10.903069px;}
.ls8b{letter-spacing:10.987492px;}
.ls41{letter-spacing:11.216966px;}
.ls6d{letter-spacing:11.225858px;}
.ls85{letter-spacing:11.285633px;}
.ls37{letter-spacing:11.530713px;}
.ls3d{letter-spacing:11.584511px;}
.ls38{letter-spacing:11.608422px;}
.ls4a{letter-spacing:11.643689px;}
.ls34{letter-spacing:11.644287px;}
.ls44{letter-spacing:11.916346px;}
.ls57{letter-spacing:11.932485px;}
.ls2b{letter-spacing:11.986284px;}
.ls8a{letter-spacing:12.445280px;}
.ls6f{letter-spacing:12.553114px;}
.ls9a{letter-spacing:12.576786px;}
.ls8f{letter-spacing:12.588826px;}
.ls4f{letter-spacing:12.642624px;}
.ls7d{letter-spacing:13.180608px;}
.ls39{letter-spacing:13.264206px;}
.ls7c{letter-spacing:13.336623px;}
.ls2c{letter-spacing:13.460360px;}
.ls91{letter-spacing:13.476499px;}
.ls94{letter-spacing:13.476600px;}
.ls87{letter-spacing:13.579114px;}
.ls5a{letter-spacing:13.815429px;}
.ls59{letter-spacing:13.836948px;}
.ls88{letter-spacing:13.981513px;}
.ls70{letter-spacing:14.035311px;}
.ls56{letter-spacing:14.154359px;}
.ls58{letter-spacing:14.208157px;}
.ls54{letter-spacing:14.261956px;}
.ls92{letter-spacing:14.391072px;}
.ls3f{letter-spacing:14.560819px;}
.ls8d{letter-spacing:14.598130px;}
.ls3b{letter-spacing:14.668819px;}
.ls47{letter-spacing:14.778420px;}
.ls95{letter-spacing:15.042600px;}
.ls40{letter-spacing:15.159092px;}
.ls3c{letter-spacing:15.212890px;}
.ls60{letter-spacing:15.531598px;}
.ls62{letter-spacing:15.600998px;}
.ls74{letter-spacing:15.804669px;}
.ls7b{letter-spacing:16.177179px;}
.ls46{letter-spacing:16.241737px;}
.ls80{letter-spacing:16.359555px;}
.ls4e{letter-spacing:16.387114px;}
.ls5d{letter-spacing:16.844279px;}
.ls9{letter-spacing:17.145770px;}
.ls73{letter-spacing:17.166014px;}
.ls9b{letter-spacing:17.349446px;}
.ls96{letter-spacing:17.376883px;}
.ls7a{letter-spacing:17.815878px;}
.ls4d{letter-spacing:17.909487px;}
.ls77{letter-spacing:18.173100px;}
.ls5e{letter-spacing:18.194619px;}
.ls97{letter-spacing:19.001595px;}
.ls5f{letter-spacing:19.491160px;}
.ls5c{letter-spacing:23.649777px;}
.ls25{letter-spacing:24.220040px;}
.ls90{letter-spacing:28.007447px;}
.ls8e{letter-spacing:30.103114px;}
.ls61{letter-spacing:32.483474px;}
.ls53{letter-spacing:32.556014px;}
.ls64{letter-spacing:106.444800px;}
.ls63{letter-spacing:135.172800px;}
.ls99{letter-spacing:140.086260px;}
.ls66{letter-spacing:194.952000px;}
.ls69{letter-spacing:214.380000px;}
.ls82{letter-spacing:219.828000px;}
.ls65{letter-spacing:228.700800px;}
.ls67{letter-spacing:243.027000px;}
.ls81{letter-spacing:253.573200px;}
.ls68{letter-spacing:505.092000px;}
.ls4c{letter-spacing:1028.941200px;}
.ls7f{letter-spacing:1077.731460px;}
.ls83{letter-spacing:1103.020200px;}
.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;}
}
.ws111{word-spacing:-1091.231460px;}
.ws139{word-spacing:-267.073200px;}
.ws18{word-spacing:-59.614927px;}
.ws17{word-spacing:-59.477981px;}
.ws1{word-spacing:-53.798400px;}
.ws1b8{word-spacing:-53.744602px;}
.ws14e{word-spacing:-42.464586px;}
.ws0{word-spacing:-40.323784px;}
.ws24{word-spacing:-39.295882px;}
.ws94{word-spacing:-38.651501px;}
.ws16f{word-spacing:-36.960577px;}
.ws190{word-spacing:-36.894943px;}
.ws9c{word-spacing:-31.548964px;}
.ws9f{word-spacing:-31.489786px;}
.ws14{word-spacing:-30.975716px;}
.ws16a{word-spacing:-30.799046px;}
.ws1b{word-spacing:-30.726956px;}
.ws1a{word-spacing:-30.709023px;}
.ws19{word-spacing:-30.656122px;}
.ws149{word-spacing:-29.906330px;}
.wsc7{word-spacing:-29.899755px;}
.wse{word-spacing:-29.894375px;}
.ws9{word-spacing:-29.887800px;}
.ws23{word-spacing:-29.881225px;}
.ws123{word-spacing:-29.809155px;}
.wsf{word-spacing:-29.750316px;}
.ws21e{word-spacing:-29.436691px;}
.ws1c4{word-spacing:-29.431760px;}
.ws1dc{word-spacing:-29.427725px;}
.ws204{word-spacing:-29.423242px;}
.wsf9{word-spacing:-29.050598px;}
.ws1e4{word-spacing:-29.029168px;}
.ws206{word-spacing:-29.024237px;}
.ws84{word-spacing:-28.771316px;}
.wsed{word-spacing:-28.747047px;}
.ws75{word-spacing:-28.729472px;}
.wsb1{word-spacing:-28.389416px;}
.ws49{word-spacing:-23.316813px;}
.ws21b{word-spacing:-22.483248px;}
.ws1fd{word-spacing:-22.433933px;}
.ws1de{word-spacing:-22.429898px;}
.ws1e0{word-spacing:-22.420932px;}
.ws1c5{word-spacing:-22.416000px;}
.ws1d5{word-spacing:-22.411068px;}
.ws1d4{word-spacing:-22.407034px;}
.ws1f7{word-spacing:-22.402102px;}
.ws209{word-spacing:-22.398067px;}
.ws1ec{word-spacing:-22.389101px;}
.ws1e9{word-spacing:-22.384618px;}
.ws11a{word-spacing:-21.214360px;}
.ws7{word-spacing:-21.143227px;}
.ws93{word-spacing:-21.137250px;}
.ws142{word-spacing:-21.059542px;}
.ws143{word-spacing:-21.053564px;}
.ws145{word-spacing:-21.052966px;}
.ws141{word-spacing:-21.035631px;}
.ws144{word-spacing:-21.017101px;}
.ws11b{word-spacing:-20.880215px;}
.ws8d{word-spacing:-20.864211px;}
.ws4a{word-spacing:-20.857636px;}
.ws11c{word-spacing:-20.724201px;}
.ws22{word-spacing:-20.664425px;}
.ws6{word-spacing:-20.527539px;}
.wsa{word-spacing:-20.526941px;}
.wsa7{word-spacing:-20.521561px;}
.ws5{word-spacing:-20.514986px;}
.ws95{word-spacing:-20.509008px;}
.ws10{word-spacing:-20.503031px;}
.ws11f{word-spacing:-20.502433px;}
.wsa8{word-spacing:-20.497651px;}
.ws4{word-spacing:-20.491673px;}
.ws3{word-spacing:-20.491076px;}
.wsa1{word-spacing:-20.485098px;}
.wsc{word-spacing:-20.479718px;}
.ws8{word-spacing:-20.479121px;}
.ws2{word-spacing:-20.473143px;}
.ws11{word-spacing:-20.466568px;}
.ws9e{word-spacing:-20.461188px;}
.wsa0{word-spacing:-20.449233px;}
.ws13{word-spacing:-20.448635px;}
.wsa3{word-spacing:-20.413965px;}
.wsb{word-spacing:-20.407988px;}
.wsa6{word-spacing:-20.395435px;}
.ws12{word-spacing:-20.383480px;}
.wsa5{word-spacing:-20.371524px;}
.wsd{word-spacing:-20.347614px;}
.ws140{word-spacing:-20.222683px;}
.ws115{word-spacing:-19.953693px;}
.ws14a{word-spacing:-19.905275px;}
.ws148{word-spacing:-19.690680px;}
.ws147{word-spacing:-19.672150px;}
.ws146{word-spacing:-19.296161px;}
.ws1af{word-spacing:-19.249068px;}
.ws119{word-spacing:-18.697808px;}
.ws117{word-spacing:-18.686450px;}
.ws116{word-spacing:-18.662540px;}
.ws118{word-spacing:-18.656563px;}
.ws1f{word-spacing:-18.512029px;}
.ws21{word-spacing:-18.501808px;}
.ws20{word-spacing:-18.474371px;}
.ws1c{word-spacing:-18.473833px;}
.ws1e{word-spacing:-18.469529px;}
.ws1b3{word-spacing:-18.458769px;}
.ws13f{word-spacing:-18.428817px;}
.ws13e{word-spacing:-18.249491px;}
.ws15{word-spacing:-18.094672px;}
.ws11e{word-spacing:-18.010986px;}
.wsa2{word-spacing:-18.005008px;}
.ws113{word-spacing:-17.963166px;}
.wsd6{word-spacing:-17.914867px;}
.ws114{word-spacing:-17.855569px;}
.ws99{word-spacing:-17.705533px;}
.ws9a{word-spacing:-17.675645px;}
.ws14f{word-spacing:-17.419208px;}
.ws13d{word-spacing:-17.382744px;}
.ws45{word-spacing:-17.366585px;}
.ws14d{word-spacing:-17.340304px;}
.ws14c{word-spacing:-17.161575px;}
.ws1a9{word-spacing:-17.150392px;}
.ws14b{word-spacing:-17.144240px;}
.ws112{word-spacing:-17.006158px;}
.ws98{word-spacing:-16.844764px;}
.ws1d{word-spacing:-16.704941px;}
.wsa4{word-spacing:-16.587729px;}
.ws9d{word-spacing:-16.581751px;}
.ws11d{word-spacing:-16.151367px;}
.ws1f1{word-spacing:-16.117104px;}
.ws1fb{word-spacing:-16.045373px;}
.ws1ff{word-spacing:-16.032372px;}
.ws1d0{word-spacing:-16.027440px;}
.ws202{word-spacing:-15.964675px;}
.ws203{word-spacing:-15.919843px;}
.ws20d{word-spacing:-15.897427px;}
.ws208{word-spacing:-15.879494px;}
.ws1f2{word-spacing:-15.862010px;}
.ws1c7{word-spacing:-15.852595px;}
.ws1c1{word-spacing:-15.835111px;}
.ws1c8{word-spacing:-15.834214px;}
.ws1c3{word-spacing:-15.825248px;}
.ws1d3{word-spacing:-15.821213px;}
.ws1e1{word-spacing:-15.812695px;}
.ws20e{word-spacing:-15.807763px;}
.ws1df{word-spacing:-15.807315px;}
.ws214{word-spacing:-15.803280px;}
.ws1c2{word-spacing:-15.798348px;}
.ws1f3{word-spacing:-15.793865px;}
.ws1be{word-spacing:-15.789830px;}
.ws1f6{word-spacing:-15.780416px;}
.ws1f5{word-spacing:-15.775932px;}
.ws201{word-spacing:-15.767414px;}
.ws1e8{word-spacing:-15.762931px;}
.ws1f9{word-spacing:-15.758448px;}
.ws205{word-spacing:-15.727066px;}
.ws43{word-spacing:-15.592835px;}
.ws1cf{word-spacing:-15.565222px;}
.ws1d9{word-spacing:-15.489456px;}
.ws1ea{word-spacing:-15.454935px;}
.ws1e5{word-spacing:-15.453590px;}
.ws211{word-spacing:-15.443279px;}
.ws216{word-spacing:-15.440589px;}
.ws207{word-spacing:-15.440141px;}
.ws1ba{word-spacing:-15.436106px;}
.ws1db{word-spacing:-15.435658px;}
.ws210{word-spacing:-15.431174px;}
.ws1f4{word-spacing:-15.429381px;}
.ws1cd{word-spacing:-15.427140px;}
.ws1ed{word-spacing:-15.426691px;}
.ws21a{word-spacing:-15.426243px;}
.ws1cc{word-spacing:-15.422656px;}
.ws1ef{word-spacing:-15.419070px;}
.ws1bc{word-spacing:-15.418173px;}
.ws1e2{word-spacing:-15.417725px;}
.ws1d6{word-spacing:-15.413242px;}
.ws217{word-spacing:-15.410103px;}
.ws1b9{word-spacing:-15.409207px;}
.ws1d8{word-spacing:-15.408758px;}
.ws1d2{word-spacing:-15.404275px;}
.ws1ce{word-spacing:-15.403827px;}
.ws1eb{word-spacing:-15.400240px;}
.ws1bf{word-spacing:-15.399792px;}
.ws1bd{word-spacing:-15.399344px;}
.ws1ca{word-spacing:-15.395309px;}
.ws1cb{word-spacing:-15.394860px;}
.ws200{word-spacing:-15.391274px;}
.ws1d1{word-spacing:-15.390826px;}
.ws1c9{word-spacing:-15.390377px;}
.ws213{word-spacing:-15.386342px;}
.ws1c0{word-spacing:-15.381859px;}
.ws1f8{word-spacing:-15.381411px;}
.ws20b{word-spacing:-15.379618px;}
.ws219{word-spacing:-15.375583px;}
.ws1e7{word-spacing:-15.372893px;}
.ws1dd{word-spacing:-15.372444px;}
.ws1e3{word-spacing:-15.363926px;}
.ws218{word-spacing:-15.359443px;}
.ws21d{word-spacing:-15.354960px;}
.ws21c{word-spacing:-15.332544px;}
.ws20a{word-spacing:-15.263054px;}
.ws212{word-spacing:-15.121834px;}
.ws1f0{word-spacing:-14.897225px;}
.ws1e6{word-spacing:-14.664996px;}
.ws92{word-spacing:-14.459718px;}
.ws20c{word-spacing:-14.413488px;}
.ws91{word-spacing:-14.304301px;}
.wsc6{word-spacing:-14.256481px;}
.ws1d7{word-spacing:-14.077248px;}
.wscf{word-spacing:-13.933652px;}
.ws1fa{word-spacing:-13.853088px;}
.ws1fc{word-spacing:-13.822154px;}
.ws8f{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.455518px;}
.ws3e{word-spacing:-13.449600px;}
.ws5c{word-spacing:-13.443682px;}
.ws46{word-spacing:-13.344000px;}
.ws20f{word-spacing:-12.817469px;}
.ws1ab{word-spacing:-11.969974px;}
.ws1fe{word-spacing:-11.889446px;}
.ws1ee{word-spacing:-11.853581px;}
.ws215{word-spacing:-11.620454px;}
.ws3b{word-spacing:-10.738161px;}
.ws9b{word-spacing:-9.851019px;}
.ws44{word-spacing:-8.494790px;}
.ws191{word-spacing:-8.419669px;}
.ws19b{word-spacing:-8.418832px;}
.ws1da{word-spacing:-6.204749px;}
.ws97{word-spacing:-3.785400px;}
.ws8e{word-spacing:-3.780000px;}
.wse8{word-spacing:-3.104168px;}
.ws127{word-spacing:-2.986349px;}
.ws12a{word-spacing:-2.593621px;}
.ws129{word-spacing:-2.572102px;}
.ws25{word-spacing:-2.453745px;}
.ws175{word-spacing:-2.399947px;}
.wsab{word-spacing:-2.302572px;}
.wsac{word-spacing:-2.291812px;}
.ws63{word-spacing:-2.270830px;}
.wsaa{word-spacing:-2.245007px;}
.ws62{word-spacing:-2.211114px;}
.ws198{word-spacing:-2.163234px;}
.ws8b{word-spacing:-2.055637px;}
.ws8a{word-spacing:-2.055099px;}
.ws1a1{word-spacing:-1.996459px;}
.ws19f{word-spacing:-1.969021px;}
.wsc0{word-spacing:-1.926521px;}
.ws19c{word-spacing:-1.788797px;}
.wsd0{word-spacing:-1.787721px;}
.wsce{word-spacing:-1.781265px;}
.ws17d{word-spacing:-1.727467px;}
.ws19e{word-spacing:-1.716707px;}
.ws6d{word-spacing:-1.592971px;}
.wsf7{word-spacing:-1.559078px;}
.ws81{word-spacing:-1.509045px;}
.ws166{word-spacing:-1.458475px;}
.wsdb{word-spacing:-1.455247px;}
.wsb2{word-spacing:-1.454709px;}
.ws165{word-spacing:-1.420816px;}
.ws69{word-spacing:-1.404676px;}
.ws1b5{word-spacing:-1.393400px;}
.ws12c{word-spacing:-1.297079px;}
.wsb5{word-spacing:-1.199704px;}
.wsb4{word-spacing:-1.188945px;}
.wsee{word-spacing:-1.103405px;}
.ws5d{word-spacing:-1.102867px;}
.ws72{word-spacing:-0.985049px;}
.wsef{word-spacing:-0.979669px;}
.ws4b{word-spacing:-0.952770px;}
.ws73{word-spacing:-0.941472px;}
.ws1b0{word-spacing:-0.735959px;}
.ws195{word-spacing:-0.673018px;}
.ws196{word-spacing:-0.619220px;}
.ws77{word-spacing:-0.441147px;}
.ws122{word-spacing:-0.387886px;}
.ws134{word-spacing:-0.360987px;}
.ws6a{word-spacing:-0.328708px;}
.ws135{word-spacing:-0.312031px;}
.ws1ae{word-spacing:-0.247711px;}
.ws12f{word-spacing:-0.118894px;}
.ws71{word-spacing:-0.108135px;}
.ws130{word-spacing:-0.102755px;}
.wsec{word-spacing:-0.091995px;}
.ws5b{word-spacing:-0.081236px;}
.ws54{word-spacing:-0.070476px;}
.ws53{word-spacing:-0.065096px;}
.wsf0{word-spacing:-0.059716px;}
.ws132{word-spacing:-0.054336px;}
.ws90{word-spacing:-0.054000px;}
.wsc3{word-spacing:-0.053798px;}
.ws19a{word-spacing:-0.043577px;}
.ws78{word-spacing:-0.043039px;}
.ws101{word-spacing:-0.038197px;}
.ws1b4{word-spacing:-0.028692px;}
.ws4d{word-spacing:-0.027437px;}
.ws83{word-spacing:-0.026899px;}
.ws82{word-spacing:-0.026361px;}
.ws15c{word-spacing:-0.016678px;}
.wsbd{word-spacing:-0.016140px;}
.ws3a{word-spacing:-0.011298px;}
.ws1a8{word-spacing:-0.010760px;}
.ws18f{word-spacing:-0.005918px;}
.wsba{word-spacing:-0.000538px;}
.ws47{word-spacing:0.000000px;}
.ws1ad{word-spacing:0.018650px;}
.ws1b2{word-spacing:0.024389px;}
.ws131{word-spacing:0.026899px;}
.ws8c{word-spacing:0.059178px;}
.ws48{word-spacing:0.065753px;}
.wsfb{word-spacing:0.225415px;}
.wse6{word-spacing:0.235637px;}
.wsfc{word-spacing:0.263074px;}
.wse7{word-spacing:0.290511px;}
.wse4{word-spacing:0.316873px;}
.ws80{word-spacing:0.328170px;}
.ws7e{word-spacing:0.343772px;}
.wse5{word-spacing:0.377127px;}
.ws39{word-spacing:0.478268px;}
.wsea{word-spacing:0.494945px;}
.ws128{word-spacing:0.537446px;}
.ws15a{word-spacing:0.635359px;}
.ws15b{word-spacing:0.710139px;}
.ws58{word-spacing:0.720361px;}
.ws161{word-spacing:0.865616px;}
.ws162{word-spacing:0.870996px;}
.ws89{word-spacing:0.871534px;}
.ws163{word-spacing:0.935554px;}
.ws164{word-spacing:0.962991px;}
.ws17c{word-spacing:1.086728px;}
.ws1a6{word-spacing:1.092108px;}
.ws1a3{word-spacing:1.123849px;}
.ws1a5{word-spacing:1.150748px;}
.wsd4{word-spacing:1.183027px;}
.ws60{word-spacing:1.248123px;}
.ws61{word-spacing:1.258345px;}
.ws27{word-spacing:1.269104px;}
.ws159{word-spacing:1.285244px;}
.wsbe{word-spacing:1.312681px;}
.ws70{word-spacing:1.322903px;}
.ws158{word-spacing:1.334200px;}
.wsbf{word-spacing:1.349802px;}
.ws86{word-spacing:1.554236px;}
.wse0{word-spacing:1.559616px;}
.ws74{word-spacing:1.564995px;}
.ws174{word-spacing:1.597274px;}
.ws57{word-spacing:1.774809px;}
.ws56{word-spacing:1.833987px;}
.wsfd{word-spacing:1.995383px;}
.wsfa{word-spacing:2.070700px;}
.wsf8{word-spacing:2.098138px;}
.ws18c{word-spacing:2.189057px;}
.ws1aa{word-spacing:2.218398px;}
.ws1ac{word-spacing:2.228440px;}
.ws17e{word-spacing:2.242855px;}
.ws18d{word-spacing:2.248235px;}
.wsa9{word-spacing:2.619444px;}
.ws66{word-spacing:2.619982px;}
.ws125{word-spacing:2.684540px;}
.ws199{word-spacing:2.711439px;}
.ws126{word-spacing:2.748560px;}
.wsb7{word-spacing:2.754478px;}
.wsb8{word-spacing:2.759320px;}
.wsb9{word-spacing:2.807738px;}
.ws124{word-spacing:2.877676px;}
.ws154{word-spacing:2.958374px;}
.wsc2{word-spacing:2.974514px;}
.wsc1{word-spacing:2.996571px;}
.ws155{word-spacing:3.001413px;}
.wsc4{word-spacing:3.017552px;}
.ws16e{word-spacing:3.076730px;}
.ws1b1{word-spacing:3.199198px;}
.ws5a{word-spacing:3.238126px;}
.wsc5{word-spacing:3.240000px;}
.wsf4{word-spacing:3.313443px;}
.ws12b{word-spacing:3.324203px;}
.ws18b{word-spacing:3.367242px;}
.wsf2{word-spacing:3.378002px;}
.ws176{word-spacing:3.399521px;}
.wsf3{word-spacing:3.410819px;}
.ws5e{word-spacing:3.421040px;}
.ws102{word-spacing:3.447939px;}
.wsb6{word-spacing:3.485598px;}
.ws5f{word-spacing:3.507118px;}
.wse9{word-spacing:3.598575px;}
.ws87{word-spacing:3.614714px;}
.wsd9{word-spacing:3.733071px;}
.ws15f{word-spacing:3.786869px;}
.wsda{word-spacing:3.799781px;}
.wsdc{word-spacing:3.808927px;}
.ws169{word-spacing:3.846048px;}
.ws168{word-spacing:3.851965px;}
.ws15e{word-spacing:3.862187px;}
.ws2e{word-spacing:4.045102px;}
.wse2{word-spacing:4.109660px;}
.wsbb{word-spacing:4.131179px;}
.ws172{word-spacing:4.142477px;}
.wse1{word-spacing:4.174218px;}
.ws2d{word-spacing:4.266213px;}
.wsc9{word-spacing:4.336151px;}
.ws1c6{word-spacing:4.371568px;}
.wsca{word-spacing:4.373272px;}
.wsc8{word-spacing:4.400171px;}
.ws1b6{word-spacing:4.442534px;}
.wsad{word-spacing:4.535205px;}
.ws18e{word-spacing:4.566946px;}
.wsf5{word-spacing:4.630428px;}
.wsf6{word-spacing:4.636884px;}
.ws121{word-spacing:4.674543px;}
.ws120{word-spacing:4.690682px;}
.ws28{word-spacing:4.901034px;}
.wseb{word-spacing:5.083949px;}
.ws1a7{word-spacing:5.089329px;}
.ws1bb{word-spacing:5.111296px;}
.ws177{word-spacing:5.126450px;}
.ws88{word-spacing:5.147969px;}
.ws76{word-spacing:5.180248px;}
.wsbc{word-spacing:5.212527px;}
.ws4c{word-spacing:5.320124px;}
.ws197{word-spacing:5.336263px;}
.ws16c{word-spacing:5.471297px;}
.ws16d{word-spacing:5.492817px;}
.ws16b{word-spacing:5.546615px;}
.ws51{word-spacing:5.621933px;}
.wscc{word-spacing:5.659054px;}
.ws15d{word-spacing:5.885007px;}
.ws32{word-spacing:5.928046px;}
.ws6b{word-spacing:6.245456px;}
.ws178{word-spacing:6.293875px;}
.ws6f{word-spacing:6.347673px;}
.ws182{word-spacing:6.412769px;}
.ws7c{word-spacing:6.487549px;}
.ws183{word-spacing:6.514448px;}
.ws7b{word-spacing:6.525208px;}
.ws35{word-spacing:6.562867px;}
.ws7d{word-spacing:6.584386px;}
.wsdd{word-spacing:6.724262px;}
.ws171{word-spacing:6.799580px;}
.ws65{word-spacing:6.837239px;}
.ws64{word-spacing:6.853378px;}
.ws180{word-spacing:6.960975px;}
.ws55{word-spacing:7.154649px;}
.wsb0{word-spacing:7.241265px;}
.wsae{word-spacing:7.257404px;}
.wsb3{word-spacing:7.262246px;}
.ws167{word-spacing:7.385982px;}
.ws4e{word-spacing:7.623233px;}
.ws17a{word-spacing:7.827129px;}
.ws103{word-spacing:7.880928px;}
.ws36{word-spacing:7.967005px;}
.ws6e{word-spacing:8.085900px;}
.ws31{word-spacing:8.235997px;}
.ws192{word-spacing:8.462488px;}
.ws193{word-spacing:8.467330px;}
.ws2c{word-spacing:8.478628px;}
.wsde{word-spacing:8.483470px;}
.wsdf{word-spacing:8.521129px;}
.ws6c{word-spacing:8.720721px;}
.wsf1{word-spacing:8.833159px;}
.ws85{word-spacing:8.855217px;}
.ws185{word-spacing:8.983795px;}
.ws186{word-spacing:9.048353px;}
.ws170{word-spacing:9.155950px;}
.ws179{word-spacing:9.338864px;}
.ws194{word-spacing:9.484120px;}
.ws4f{word-spacing:9.532538px;}
.wscb{word-spacing:10.005964px;}
.ws41{word-spacing:10.043623px;}
.wscd{word-spacing:10.070522px;}
.ws59{word-spacing:10.237298px;}
.ws30{word-spacing:10.409990px;}
.ws50{word-spacing:10.485308px;}
.ws2f{word-spacing:10.695122px;}
.ws12d{word-spacing:10.700502px;}
.ws79{word-spacing:10.743002px;}
.ws7a{word-spacing:10.775820px;}
.ws17f{word-spacing:10.990475px;}
.ws173{word-spacing:11.151870px;}
.ws1a0{word-spacing:11.469819px;}
.ws19d{word-spacing:11.695772px;}
.ws184{word-spacing:11.765172px;}
.ws151{word-spacing:11.935175px;}
.ws153{word-spacing:11.959384px;}
.ws150{word-spacing:11.964226px;}
.ws152{word-spacing:11.986822px;}
.ws17b{word-spacing:12.018025px;}
.ws2a{word-spacing:12.104640px;}
.wse3{word-spacing:12.270877px;}
.wsd1{word-spacing:12.695884px;}
.wsd3{word-spacing:12.717404px;}
.wsd2{word-spacing:12.738923px;}
.ws2b{word-spacing:12.825001px;}
.ws3f{word-spacing:13.024593px;}
.ws3d{word-spacing:13.051492px;}
.ws100{word-spacing:13.083233px;}
.ws67{word-spacing:13.104752px;}
.wsff{word-spacing:13.110132px;}
.wsd5{word-spacing:13.115512px;}
.ws68{word-spacing:13.120892px;}
.wsd8{word-spacing:13.121430px;}
.wsfe{word-spacing:13.132189px;}
.ws160{word-spacing:13.164468px;}
.wsd7{word-spacing:13.197286px;}
.ws29{word-spacing:13.315104px;}
.ws38{word-spacing:13.664794px;}
.ws187{word-spacing:13.815429px;}
.ws189{word-spacing:13.831031px;}
.ws18a{word-spacing:13.868690px;}
.ws188{word-spacing:13.874069px;}
.ws1b7{word-spacing:13.920098px;}
.ws133{word-spacing:14.261956px;}
.ws156{word-spacing:14.487909px;}
.ws1a4{word-spacing:14.502973px;}
.ws157{word-spacing:14.525030px;}
.ws1a2{word-spacing:14.541708px;}
.ws12e{word-spacing:14.847820px;}
.ws26{word-spacing:15.977587px;}
.ws34{word-spacing:16.230439px;}
.ws52{word-spacing:16.795322px;}
.ws3c{word-spacing:17.554418px;}
.ws37{word-spacing:17.839011px;}
.ws104{word-spacing:18.990297px;}
.ws105{word-spacing:18.990835px;}
.ws33{word-spacing:19.054855px;}
.ws181{word-spacing:19.431444px;}
.ws42{word-spacing:19.975346px;}
.wsaf{word-spacing:20.730137px;}
.ws40{word-spacing:21.900791px;}
.ws16{word-spacing:32.404353px;}
.ws13b{word-spacing:62.163000px;}
.ws13c{word-spacing:62.169000px;}
.ws13a{word-spacing:62.173200px;}
.ws109{word-spacing:71.047800px;}
.ws10b{word-spacing:92.901000px;}
.ws10a{word-spacing:92.906400px;}
.ws10c{word-spacing:92.907000px;}
.ws137{word-spacing:95.553000px;}
.ws138{word-spacing:99.586800px;}
.ws136{word-spacing:109.058400px;}
.ws110{word-spacing:187.374600px;}
.ws10e{word-spacing:191.586600px;}
.ws10f{word-spacing:205.902000px;}
.ws10d{word-spacing:334.899000px;}
.ws108{word-spacing:369.738000px;}
.ws106{word-spacing:632.529000px;}
.ws107{word-spacing:1013.299200px;}
.ws96{word-spacing:1088.764200px;}
._2e{margin-left:-1315.326600px;}
._25{margin-left:-1243.193400px;}
._b{margin-left:-1240.606560px;}
._30{margin-left:-1228.948200px;}
._2a{margin-left:-1183.685400px;}
._c{margin-left:-1179.119520px;}
._1e{margin-left:-1170.169200px;}
._2b{margin-left:-1077.730920px;}
._28{margin-left:-977.189400px;}
._1d{margin-left:-592.752600px;}
._24{margin-left:-501.341400px;}
._18{margin-left:-347.868000px;}
._2f{margin-left:-253.573200px;}
._15{margin-left:-236.147400px;}
._23{margin-left:-234.781200px;}
._16{margin-left:-233.674200px;}
._1b{margin-left:-218.889000px;}
._1c{margin-left:-217.782000px;}
._34{margin-left:-18.101548px;}
._27{margin-left:-16.602186px;}
._26{margin-left:-15.574637px;}
._31{margin-left:-13.257192px;}
._1f{margin-left:-11.667002px;}
._5{margin-left:-9.343524px;}
._17{margin-left:-7.987709px;}
._9{margin-left:-6.348211px;}
._7{margin-left:-4.987112px;}
._3{margin-left:-3.216525px;}
._0{margin-left:-1.533254px;}
._1{width:1.243332px;}
._20{width:2.937386px;}
._4{width:4.455085px;}
._3c{width:6.011971px;}
._2{width:7.474970px;}
._13{width:9.093254px;}
._a{width:10.809831px;}
._d{width:12.145030px;}
._6{width:13.675553px;}
._11{width:15.063552px;}
._8{width:16.682884px;}
._e{width:17.731953px;}
._f{width:19.593377px;}
._36{width:20.873779px;}
._10{width:22.676026px;}
._32{width:24.253933px;}
._33{width:25.613418px;}
._2c{width:26.710906px;}
._3b{width:27.827222px;}
._3a{width:29.705683px;}
._12{width:33.441006px;}
._39{width:39.806333px;}
._38{width:41.689277px;}
._35{width:42.974162px;}
._37{width:44.652672px;}
._19{width:62.424000px;}
._21{width:77.657400px;}
._14{width:79.142400px;}
._2d{width:149.558400px;}
._22{width:346.404060px;}
._1a{width:435.952800px;}
._29{width:935.679600px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(9,0,76);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(50,48,49);}
.fsd{font-size:40.500000px;}
.fs6{font-size:41.842800px;}
.fsf{font-size:44.832000px;}
.fse{font-size:47.820600px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:50.809200px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:65.753400px;}
.fs5{font-size:68.144400px;}
.fs0{font-size:80.697600px;}
.fsb{font-size:83.686200px;}
.fs4{font-size:89.664000px;}
.fs1{font-size:107.596800px;}
.fs3{font-size:173.349600px;}
.y0{bottom:0.000000px;}
.y168{bottom:2.943000px;}
.y1ad{bottom:37.498037px;}
.y149{bottom:37.910306px;}
.yf4{bottom:37.913233px;}
.y7d{bottom:37.915350px;}
.y197{bottom:37.916833px;}
.ybc{bottom:38.886934px;}
.y45{bottom:46.232948px;}
.y1eb{bottom:52.429550px;}
.y223{bottom:52.431281px;}
.y25a{bottom:52.431925px;}
.y1ac{bottom:53.925629px;}
.y148{bottom:55.838622px;}
.yf3{bottom:55.841550px;}
.y7c{bottom:55.843667px;}
.y196{bottom:55.845150px;}
.ybb{bottom:56.828700px;}
.y44{bottom:64.160974px;}
.y1ea{bottom:67.374298px;}
.y222{bottom:67.376028px;}
.y259{bottom:67.376672px;}
.yf2{bottom:73.783316px;}
.y7b{bottom:73.785433px;}
.yba{bottom:74.757017px;}
.y1ab{bottom:78.590850px;}
.y43{bottom:82.089000px;}
.y1e9{bottom:82.319045px;}
.y221{bottom:82.320775px;}
.y258{bottom:82.321420px;}
.y195{bottom:82.750500px;}
.y147{bottom:91.708706px;}
.yf1{bottom:91.711633px;}
.y7a{bottom:91.713750px;}
.yb9{bottom:92.685334px;}
.y1aa{bottom:96.519167px;}
.y1e8{bottom:97.263792px;}
.y220{bottom:97.265522px;}
.y257{bottom:97.266167px;}
.y146{bottom:108.908054px;}
.yf0{bottom:109.639950px;}
.y79{bottom:109.642067px;}
.yb8{bottom:110.627100px;}
.y1e7{bottom:112.208539px;}
.y21f{bottom:112.210270px;}
.y256{bottom:112.210914px;}
.y1a9{bottom:114.447484px;}
.y19{bottom:116.821264px;}
.y145{bottom:126.093953px;}
.y1e6{bottom:127.153286px;}
.y21e{bottom:127.155017px;}
.y255{bottom:127.155661px;}
.yef{bottom:127.581716px;}
.y78{bottom:127.583833px;}
.yb7{bottom:128.555417px;}
.y42{bottom:131.227834px;}
.y1a8{bottom:132.389250px;}
.y18{bottom:137.745712px;}
.y194{bottom:138.544517px;}
.y1e5{bottom:142.098034px;}
.y21d{bottom:142.099764px;}
.y254{bottom:142.100408px;}
.y144{bottom:143.293302px;}
.yee{bottom:145.510033px;}
.y77{bottom:145.512150px;}
.yb6{bottom:146.497183px;}
.y41{bottom:149.156150px;}
.y1a7{bottom:150.317567px;}
.y193{bottom:156.472834px;}
.y1e4{bottom:157.042781px;}
.y21c{bottom:157.044511px;}
.y253{bottom:157.045156px;}
.y17{bottom:158.670161px;}
.yed{bottom:163.438350px;}
.yb5{bottom:164.425500px;}
.y40{bottom:167.097917px;}
.y1a6{bottom:168.259333px;}
.y1e3{bottom:171.987528px;}
.y21b{bottom:171.989258px;}
.y252{bottom:171.989903px;}
.y76{bottom:172.417500px;}
.y192{bottom:174.414600px;}
.y143{bottom:178.420967px;}
.yec{bottom:181.380116px;}
.y3f{bottom:185.026234px;}
.y1a5{bottom:186.187650px;}
.y1e2{bottom:186.932275px;}
.y21a{bottom:186.934006px;}
.y251{bottom:186.934650px;}
.yb4{bottom:191.317650px;}
.y191{bottom:192.342917px;}
.y142{bottom:196.349284px;}
.yeb{bottom:199.308433px;}
.y1e1{bottom:201.877022px;}
.y219{bottom:201.878753px;}
.y250{bottom:201.879397px;}
.y3e{bottom:202.968000px;}
.y190{bottom:210.271234px;}
.y1a4{bottom:213.079650px;}
.y141{bottom:214.277600px;}
.y1e0{bottom:216.821770px;}
.y218{bottom:216.823500px;}
.y24f{bottom:216.824144px;}
.yea{bottom:217.236750px;}
.y75{bottom:223.013850px;}
.y18f{bottom:228.212683px;}
.y3d{bottom:229.860150px;}
.y1df{bottom:231.766517px;}
.y217{bottom:231.768247px;}
.y24e{bottom:231.768892px;}
.y140{bottom:232.219367px;}
.yb3{bottom:234.245533px;}
.ye9{bottom:235.178516px;}
.y74{bottom:240.942167px;}
.y18e{bottom:246.137867px;}
.y1de{bottom:246.711264px;}
.y216{bottom:246.712994px;}
.y24d{bottom:246.713639px;}
.y13f{bottom:250.147684px;}
.yb2{bottom:252.173850px;}
.ye8{bottom:253.106833px;}
.y73{bottom:258.870484px;}
.y1dd{bottom:261.656011px;}
.y215{bottom:261.657742px;}
.y24c{bottom:261.658386px;}
.y18d{bottom:264.066184px;}
.y13e{bottom:268.076000px;}
.yb1{bottom:270.102167px;}
.y1a3{bottom:270.249300px;}
.ye7{bottom:271.035150px;}
.y1dc{bottom:276.587309px;}
.y214{bottom:276.589039px;}
.y24b{bottom:276.589684px;}
.y72{bottom:276.812250px;}
.y18c{bottom:282.007950px;}
.y16{bottom:282.870408px;}
.y13d{bottom:286.017767px;}
.yb0{bottom:288.043933px;}
.y1a2{bottom:288.177617px;}
.y1db{bottom:291.532056px;}
.y213{bottom:291.533786px;}
.y24a{bottom:291.534431px;}
.y71{bottom:294.740567px;}
.ye6{bottom:297.940500px;}
.y18b{bottom:299.936267px;}
.y3c{bottom:303.239900px;}
.y15{bottom:303.794857px;}
.y13c{bottom:303.946084px;}
.yaf{bottom:305.972250px;}
.y1a1{bottom:306.105934px;}
.y1da{bottom:306.476803px;}
.y212{bottom:306.478534px;}
.y249{bottom:306.479178px;}
.y70{bottom:312.682333px;}
.y18a{bottom:317.864584px;}
.y3b{bottom:321.181667px;}
.y1d9{bottom:321.421550px;}
.y211{bottom:321.423281px;}
.y248{bottom:321.423925px;}
.y13b{bottom:321.887850px;}
.yae{bottom:323.900567px;}
.y1a0{bottom:324.047700px;}
.y14{bottom:324.705856px;}
.y6f{bottom:330.610650px;}
.y189{bottom:335.806350px;}
.y1d8{bottom:336.366298px;}
.y210{bottom:336.368028px;}
.y247{bottom:336.368672px;}
.y3a{bottom:339.109984px;}
.y13a{bottom:339.816167px;}
.yad{bottom:341.842333px;}
.y19f{bottom:341.976017px;}
.y1d7{bottom:351.311045px;}
.y20f{bottom:351.312775px;}
.y246{bottom:351.313420px;}
.ye5{bottom:352.732817px;}
.y188{bottom:353.734667px;}
.y39{bottom:357.038300px;}
.y6e{bottom:357.502650px;}
.y139{bottom:357.744484px;}
.yac{bottom:359.770650px;}
.y19e{bottom:359.917783px;}
.y1d6{bottom:366.255792px;}
.y20e{bottom:366.257522px;}
.y245{bottom:366.258167px;}
.ye4{bottom:370.674583px;}
.y187{bottom:371.662984px;}
.y38{bottom:374.980067px;}
.y138{bottom:375.686250px;}
.y19d{bottom:377.846100px;}
.y1d5{bottom:381.200539px;}
.y20d{bottom:381.202270px;}
.y244{bottom:381.202914px;}
.ye3{bottom:388.602900px;}
.y186{bottom:389.604750px;}
.y13{bottom:390.463500px;}
.y37{bottom:392.908384px;}
.y6d{bottom:393.372000px;}
.y137{bottom:393.614567px;}
.y19c{bottom:395.774417px;}
.y1d4{bottom:396.145286px;}
.y20c{bottom:396.147017px;}
.y243{bottom:396.147661px;}
.ye2{bottom:406.531217px;}
.y185{bottom:407.533067px;}
.y36{bottom:410.850150px;}
.y1d3{bottom:411.090034px;}
.y20b{bottom:411.091764px;}
.y242{bottom:411.092408px;}
.y12{bottom:411.387948px;}
.y136{bottom:411.542884px;}
.y19b{bottom:413.716183px;}
.yab{bottom:418.590004px;}
.ye1{bottom:424.472983px;}
.y184{bottom:425.461384px;}
.y1d2{bottom:426.034781px;}
.y20a{bottom:426.036511px;}
.y241{bottom:426.037156px;}
.y35{bottom:428.778467px;}
.y135{bottom:429.484650px;}
.y19a{bottom:431.644500px;}
.y11{bottom:432.312397px;}
.yaa{bottom:436.530960px;}
.y1d1{bottom:440.979528px;}
.y209{bottom:440.981258px;}
.y240{bottom:440.981903px;}
.ye0{bottom:442.401300px;}
.y183{bottom:443.403150px;}
.y34{bottom:446.706784px;}
.y6c{bottom:449.940334px;}
.ya9{bottom:454.459157px;}
.y1d0{bottom:455.924275px;}
.y208{bottom:455.926006px;}
.y23f{bottom:455.926650px;}
.y199{bottom:458.536500px;}
.ydf{bottom:460.329617px;}
.y33{bottom:464.648550px;}
.y134{bottom:466.702920px;}
.y6b{bottom:467.882100px;}
.y1cf{bottom:470.869022px;}
.y207{bottom:470.870753px;}
.y23e{bottom:470.871397px;}
.y10{bottom:471.165043px;}
.ya8{bottom:472.387354px;}
.yde{bottom:478.271383px;}
.y32{bottom:482.576867px;}
.y133{bottom:484.644566px;}
.y6a{bottom:485.810417px;}
.y1ce{bottom:485.813770px;}
.y206{bottom:485.815500px;}
.y23d{bottom:485.816144px;}
.y182{bottom:487.709803px;}
.ya7{bottom:490.328756px;}
.yf{bottom:492.076042px;}
.y198{bottom:494.406000px;}
.ydd{bottom:496.199700px;}
.y31{bottom:500.505184px;}
.y1cd{bottom:500.758517px;}
.y205{bottom:500.760247px;}
.y23c{bottom:500.760892px;}
.y132{bottom:502.572763px;}
.y69{bottom:503.738734px;}
.y181{bottom:505.637807px;}
.ya6{bottom:508.256953px;}
.ye{bottom:513.000491px;}
.ydc{bottom:514.128017px;}
.y1cc{bottom:515.703264px;}
.y204{bottom:515.704994px;}
.y23b{bottom:515.705639px;}
.y30{bottom:518.446950px;}
.y131{bottom:520.500960px;}
.y68{bottom:521.680500px;}
.y180{bottom:523.579453px;}
.ya5{bottom:526.185150px;}
.y1cb{bottom:530.648011px;}
.y203{bottom:530.649742px;}
.y23a{bottom:530.650386px;}
.ydb{bottom:532.069783px;}
.yd{bottom:533.924940px;}
.y2f{bottom:536.375267px;}
.y130{bottom:538.442606px;}
.y67{bottom:539.608817px;}
.y17f{bottom:541.506913px;}
.y1ca{bottom:545.592758px;}
.y202{bottom:545.594489px;}
.y239{bottom:545.595133px;}
.yda{bottom:549.998100px;}
.y2e{bottom:554.303584px;}
.y12f{bottom:556.370803px;}
.y8c{bottom:557.301150px;}
.ya2{bottom:557.302050px;}
.y66{bottom:557.537134px;}
.ya3{bottom:558.165150px;}
.y17e{bottom:559.435110px;}
.y1c9{bottom:560.537506px;}
.y201{bottom:560.539236px;}
.y238{bottom:560.539880px;}
.yd9{bottom:567.926417px;}
.ya1{bottom:570.550950px;}
.y2d{bottom:572.245350px;}
.yc{bottom:572.777585px;}
.y12e{bottom:574.298807px;}
.y65{bottom:575.478900px;}
.y1c8{bottom:575.482253px;}
.y200{bottom:575.483983px;}
.y237{bottom:575.484628px;}
.y17d{bottom:577.376756px;}
.y93{bottom:584.956500px;}
.yd8{bottom:585.868183px;}
.y99{bottom:587.350050px;}
.y9e{bottom:588.481650px;}
.y2c{bottom:590.173667px;}
.y1c7{bottom:590.427000px;}
.y1ff{bottom:590.428730px;}
.y236{bottom:590.429375px;}
.y12d{bottom:592.240453px;}
.y64{bottom:593.407217px;}
.yb{bottom:593.702034px;}
.y17c{bottom:595.304953px;}
.y9d{bottom:599.794650px;}
.ya0{bottom:603.061650px;}
.y98{bottom:603.331350px;}
.yd7{bottom:603.795750px;}
.y1c6{bottom:605.371747px;}
.y1fe{bottom:605.373478px;}
.y235{bottom:605.374122px;}
.y2b{bottom:608.101984px;}
.y92{bottom:608.296650px;}
.y12c{bottom:610.168303px;}
.y63{bottom:611.335534px;}
.y17b{bottom:613.232657px;}
.y97{bottom:619.781100px;}
.y1c5{bottom:620.316494px;}
.y1fd{bottom:620.318225px;}
.y234{bottom:620.318869px;}
.y9f{bottom:621.360900px;}
.yd6{bottom:621.737516px;}
.y2a{bottom:626.043750px;}
.y12b{bottom:628.096500px;}
.y62{bottom:629.277300px;}
.y17a{bottom:631.174303px;}
.y91{bottom:631.636800px;}
.y1c4{bottom:635.261242px;}
.y1fc{bottom:635.262972px;}
.y233{bottom:635.263616px;}
.y96{bottom:635.577450px;}
.yd5{bottom:639.665833px;}
.y29{bottom:643.972067px;}
.y61{bottom:647.205617px;}
.y179{bottom:649.102500px;}
.y1c3{bottom:650.192539px;}
.y1fb{bottom:650.194270px;}
.y232{bottom:650.194914px;}
.y90{bottom:654.976950px;}
.yd4{bottom:657.592834px;}
.y11f{bottom:659.064600px;}
.y28{bottom:661.900384px;}
.y60{bottom:665.133934px;}
.y1c2{bottom:665.137286px;}
.y1fa{bottom:665.139017px;}
.y231{bottom:665.139661px;}
.y95{bottom:668.089500px;}
.y128{bottom:673.642500px;}
.yd3{bottom:675.534600px;}
.y167{bottom:677.128500px;}
.ya{bottom:677.510414px;}
.y8f{bottom:678.317100px;}
.y27{bottom:679.842150px;}
.y176{bottom:680.071050px;}
.y169{bottom:680.071500px;}
.y1c1{bottom:680.082034px;}
.y1f9{bottom:680.083764px;}
.y230{bottom:680.084408px;}
.y5f{bottom:683.075700px;}
.y9c{bottom:686.153850px;}
.yd2{bottom:693.462917px;}
.y175{bottom:693.513000px;}
.y102{bottom:694.513500px;}
.y123{bottom:694.516650px;}
.y1c0{bottom:695.026781px;}
.y1f8{bottom:695.028511px;}
.y22f{bottom:695.029156px;}
.y16a{bottom:695.925900px;}
.y166{bottom:695.926200px;}
.y9{bottom:698.434863px;}
.y94{bottom:700.601550px;}
.y5e{bottom:701.004017px;}
.y8e{bottom:701.657250px;}
.y9b{bottom:702.133800px;}
.y115{bottom:703.889850px;}
.y160{bottom:707.692800px;}
.y1bf{bottom:709.971528px;}
.y1f7{bottom:709.973258px;}
.y22e{bottom:709.973903px;}
.yd1{bottom:711.391234px;}
.y9a{bottom:718.583550px;}
.y5d{bottom:718.932334px;}
.y101{bottom:719.226600px;}
.y155{bottom:724.197450px;}
.y1be{bottom:724.916275px;}
.y1f6{bottom:724.918006px;}
.y22d{bottom:724.918678px;}
.y26{bottom:728.428500px;}
.yd0{bottom:729.333000px;}
.y8d{bottom:733.109550px;}
.y164{bottom:734.105550px;}
.y5c{bottom:736.874100px;}
.y125{bottom:736.894500px;}
.y22c{bottom:739.851545px;}
.y1bd{bottom:739.861022px;}
.y1f5{bottom:739.862753px;}
.y16e{bottom:740.495100px;}
.y154{bottom:740.807850px;}
.ya4{bottom:743.179950px;}
.y100{bottom:743.939700px;}
.y114{bottom:746.773950px;}
.y11d{bottom:747.023100px;}
.y22b{bottom:754.796292px;}
.y5b{bottom:754.802417px;}
.y1bc{bottom:754.805770px;}
.y1f3{bottom:754.807451px;}
.y1f4{bottom:754.807500px;}
.y16d{bottom:755.188500px;}
.y124{bottom:755.598750px;}
.y25{bottom:760.207650px;}
.y113{bottom:763.229100px;}
.y163{bottom:764.680350px;}
.yff{bottom:768.652800px;}
.y1f2{bottom:769.739309px;}
.y22a{bottom:769.741039px;}
.y1bb{bottom:769.750517px;}
.y8{bottom:772.130706px;}
.y5a{bottom:772.744183px;}
.y24{bottom:774.746898px;}
.y10e{bottom:777.587700px;}
.y112{bottom:779.682900px;}
.y1f1{bottom:784.684056px;}
.y229{bottom:784.685786px;}
.y1ba{bottom:784.695264px;}
.y15f{bottom:785.656650px;}
.y59{bottom:790.672500px;}
.ycf{bottom:791.797010px;}
.y10d{bottom:792.891300px;}
.y7{bottom:793.055154px;}
.yfe{bottom:793.365900px;}
.y162{bottom:795.253800px;}
.y10f{bottom:796.138050px;}
.y23{bottom:799.060500px;}
.y126{bottom:799.206150px;}
.y8b{bottom:799.235953px;}
.y156{bottom:799.522050px;}
.y1f0{bottom:799.628803px;}
.y228{bottom:799.630534px;}
.y1b9{bottom:799.640011px;}
.y10c{bottom:808.192200px;}
.y58{bottom:808.600817px;}
.yce{bottom:809.738657px;}
.y110{bottom:812.591850px;}
.y22{bottom:813.600048px;}
.y6{bottom:813.979603px;}
.y122{bottom:814.431150px;}
.y1ef{bottom:814.573550px;}
.y227{bottom:814.575281px;}
.y1b8{bottom:814.584758px;}
.y153{bottom:815.993400px;}
.y8a{bottom:817.164004px;}
.yfd{bottom:818.079000px;}
.y10a{bottom:823.494450px;}
.y161{bottom:825.828600px;}
.y57{bottom:826.542583px;}
.ycd{bottom:827.666854px;}
.y111{bottom:829.048350px;}
.y1ee{bottom:829.518298px;}
.y226{bottom:829.520028px;}
.y1b7{bottom:829.529506px;}
.y152{bottom:832.463400px;}
.y5{bottom:834.904052px;}
.y89{bottom:835.105650px;}
.y21{bottom:837.913500px;}
.y10b{bottom:838.798050px;}
.y12a{bottom:844.131300px;}
.yfc{bottom:844.132650px;}
.y1ed{bottom:844.463045px;}
.y225{bottom:844.464775px;}
.y56{bottom:844.470900px;}
.y1b6{bottom:844.474253px;}
.ycc{bottom:845.608500px;}
.y151{bottom:848.936100px;}
.y20{bottom:852.453098px;}
.y4{bottom:855.815051px;}
.y15d{bottom:856.401150px;}
.y1ec{bottom:859.407792px;}
.y224{bottom:859.409522px;}
.y1b5{bottom:859.419000px;}
.y15e{bottom:861.373200px;}
.y55{bottom:862.399217px;}
.y178{bottom:863.622300px;}
.y87{bottom:867.073200px;}
.y88{bottom:867.075000px;}
.yc9{bottom:876.580650px;}
.y11e{bottom:876.702150px;}
.y3{bottom:876.739500px;}
.y1f{bottom:876.766500px;}
.yca{bottom:877.576650px;}
.y54{bottom:880.340983px;}
.y16c{bottom:880.682850px;}
.yc6{bottom:888.895950px;}
.y127{bottom:892.790850px;}
.y174{bottom:894.820650px;}
.y270{bottom:895.283489px;}
.y264{bottom:895.285730px;}
.y1b4{bottom:895.288500px;}
.y16b{bottom:896.507550px;}
.y165{bottom:896.507850px;}
.y16f{bottom:896.508150px;}
.y53{bottom:898.269300px;}
.y86{bottom:898.402650px;}
.y1e{bottom:903.267547px;}
.yc3{bottom:905.904600px;}
.y173{bottom:905.937000px;}
.y26f{bottom:910.228236px;}
.y263{bottom:910.230478px;}
.y2{bottom:911.110500px;}
.y15c{bottom:913.330650px;}
.y52{bottom:916.197617px;}
.y85{bottom:918.756000px;}
.yc1{bottom:919.696200px;}
.yc2{bottom:922.741800px;}
.y117{bottom:923.129850px;}
.y11a{bottom:923.729250px;}
.y121{bottom:923.973750px;}
.y108{bottom:924.810600px;}
.y26e{bottom:925.172983px;}
.y262{bottom:925.175225px;}
.yfb{bottom:927.230100px;}
.yc7{bottom:927.520800px;}
.yc8{bottom:933.029250px;}
.y172{bottom:933.956700px;}
.y51{bottom:934.139383px;}
.y1d{bottom:937.638547px;}
.y116{bottom:939.148950px;}
.y279{bottom:940.102039px;}
.y26d{bottom:940.104281px;}
.y261{bottom:940.106522px;}
.y119{bottom:940.489500px;}
.y107{bottom:941.265750px;}
.yc0{bottom:950.499150px;}
.y50{bottom:952.067700px;}
.y15a{bottom:952.167900px;}
.yfa{bottom:953.595750px;}
.y278{bottom:955.046786px;}
.y26c{bottom:955.049028px;}
.y260{bottom:955.051270px;}
.y120{bottom:955.376100px;}
.y109{bottom:955.636500px;}
.y118{bottom:957.719550px;}
.y106{bottom:957.720900px;}
.y84{bottom:960.416700px;}
.y1b3{bottom:961.033273px;}
.y170{bottom:964.222800px;}
.y15b{bottom:967.606350px;}
.y277{bottom:969.991534px;}
.y26b{bottom:969.993775px;}
.y4f{bottom:969.996017px;}
.y1c{bottom:972.009000px;}
.y105{bottom:972.125400px;}
.y1b2{bottom:977.476387px;}
.y11c{bottom:979.135350px;}
.yf9{bottom:979.962300px;}
.y171{bottom:980.951250px;}
.ybf{bottom:981.302100px;}
.y11b{bottom:982.280100px;}
.y276{bottom:984.936281px;}
.y26a{bottom:984.938522px;}
.y25f{bottom:984.940764px;}
.y4e{bottom:987.937783px;}
.y104{bottom:988.614300px;}
.y157{bottom:989.997600px;}
.y159{bottom:991.003350px;}
.y1b1{bottom:993.919500px;}
.y275{bottom:999.881028px;}
.y269{bottom:999.883270px;}
.y25e{bottom:999.885511px;}
.y150{bottom:1000.011900px;}
.y1{bottom:1003.801500px;}
.y4d{bottom:1005.866100px;}
.yf8{bottom:1006.327950px;}
.y82{bottom:1010.262750px;}
.y1b0{bottom:1010.349000px;}
.y103{bottom:1011.434100px;}
.ybe{bottom:1012.105050px;}
.y274{bottom:1014.825775px;}
.y268{bottom:1014.828017px;}
.y25d{bottom:1014.830258px;}
.y14e{bottom:1016.483250px;}
.y14b{bottom:1018.013850px;}
.y83{bottom:1020.182550px;}
.y4c{bottom:1023.794417px;}
.y1b{bottom:1024.309873px;}
.y7f{bottom:1026.306150px;}
.y49{bottom:1026.414000px;}
.y7e{bottom:1026.751650px;}
.y1af{bottom:1026.791424px;}
.y48{bottom:1026.859500px;}
.yc5{bottom:1027.003650px;}
.y273{bottom:1029.770522px;}
.y267{bottom:1029.772764px;}
.y25c{bottom:1029.775006px;}
.y81{bottom:1029.833700px;}
.y158{bottom:1029.838800px;}
.ybd{bottom:1031.511600px;}
.yf7{bottom:1032.694500px;}
.y14f{bottom:1032.954600px;}
.y14d{bottom:1033.424400px;}
.yf5{bottom:1040.590650px;}
.y4b{bottom:1041.736183px;}
.y1ae{bottom:1043.234537px;}
.yc4{bottom:1043.842200px;}
.y272{bottom:1044.715270px;}
.y266{bottom:1044.717511px;}
.y25b{bottom:1044.719753px;}
.y14a{bottom:1046.033400px;}
.y80{bottom:1049.345250px;}
.y14c{bottom:1049.425950px;}
.y47{bottom:1052.253150px;}
.y129{bottom:1059.059400px;}
.yf6{bottom:1059.060000px;}
.y271{bottom:1059.660017px;}
.y265{bottom:1059.662258px;}
.y4a{bottom:1059.664500px;}
.y177{bottom:1060.036500px;}
.ycb{bottom:1060.309500px;}
.y1a{bottom:1073.623500px;}
.y46{bottom:1116.000000px;}
.h8{height:30.336030px;}
.h30{height:31.382400px;}
.h2f{height:32.503200px;}
.h2e{height:34.956859px;}
.hb{height:36.836670px;}
.hd{height:37.658880px;}
.h9{height:39.003840px;}
.h11{height:39.258000px;}
.ha{height:39.326630px;}
.h10{height:39.434227px;}
.h2d{height:39.446760px;}
.h14{height:39.694154px;}
.h12{height:40.014000px;}
.h4{height:41.842920px;}
.h3{height:43.337310px;}
.h2b{height:43.338083px;}
.h26{height:47.415900px;}
.h21{height:47.420100px;}
.h19{height:47.423100px;}
.h20{height:47.424900px;}
.h13{height:47.425500px;}
.h1c{height:47.426100px;}
.h27{height:47.427300px;}
.h1f{height:47.428500px;}
.h23{height:47.432100px;}
.h1d{height:47.435700px;}
.h2c{height:47.612362px;}
.h1b{height:47.669962px;}
.he{height:47.671215px;}
.h1a{height:47.671627px;}
.h22{height:48.247200px;}
.h25{height:49.827134px;}
.h24{height:49.827149px;}
.h29{height:49.828334px;}
.hc{height:50.062500px;}
.h15{height:50.997945px;}
.h16{height:51.991605px;}
.h17{height:51.992790px;}
.h2a{height:52.046377px;}
.h1{height:56.488320px;}
.h1e{height:60.420600px;}
.hf{height:60.672495px;}
.h2{height:78.007680px;}
.h7{height:81.964501px;}
.h6{height:81.966690px;}
.h18{height:84.843600px;}
.h5{height:125.678460px;}
.h28{height:394.126500px;}
.h0{height:1134.000000px;}
.w2{width:554.845500px;}
.w0{width:782.787000px;}
.w1{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:65.511000px;}
.x8{left:83.722500px;}
.x4f{left:100.057039px;}
.x9{left:101.664266px;}
.x36{left:112.897155px;}
.x42{left:114.489000px;}
.x35{left:115.947750px;}
.x21{left:120.503100px;}
.x15{left:123.823350px;}
.x1c{left:127.754700px;}
.x11{left:130.760850px;}
.x2f{left:134.713050px;}
.x48{left:135.930600px;}
.x24{left:139.774800px;}
.x37{left:140.993100px;}
.x30{left:144.837300px;}
.x3e{left:146.055600px;}
.x2e{left:151.588050px;}
.x3f{left:152.805600px;}
.x4a{left:162.649350px;}
.x33{left:171.304050px;}
.x18{left:174.538650px;}
.x22{left:175.998000px;}
.x49{left:184.899600px;}
.x13{left:191.672850px;}
.x32{left:193.968600px;}
.x19{left:197.482200px;}
.x23{left:198.941850px;}
.x4d{left:226.597950px;}
.x2c{left:238.838550px;}
.x31{left:247.396200px;}
.x2d{left:261.417300px;}
.xd{left:262.530000px;}
.x4b{left:264.274650px;}
.xb{left:269.073150px;}
.xc{left:274.135950px;}
.xe{left:280.885950px;}
.x50{left:295.212977px;}
.x1e{left:298.139100px;}
.x4c{left:303.779700px;}
.x51{left:311.547516px;}
.xf{left:318.248550px;}
.x2{left:331.758000px;}
.x38{left:334.327500px;}
.xa{left:336.895800px;}
.x4{left:340.735500px;}
.x3a{left:342.071100px;}
.x3{left:354.235500px;}
.x1b{left:388.617300px;}
.x34{left:395.750100px;}
.x16{left:399.834900px;}
.x1d{left:403.552500px;}
.x4e{left:405.985500px;}
.x2b{left:413.048100px;}
.x17{left:416.034900px;}
.x3c{left:417.204000px;}
.x26{left:418.779000px;}
.x12{left:423.201900px;}
.x25{left:425.529000px;}
.x20{left:427.178850px;}
.x3b{left:428.320500px;}
.x27{left:432.279000px;}
.x3d{left:435.070500px;}
.x52{left:444.857461px;}
.x40{left:446.584500px;}
.x41{left:453.987900px;}
.x28{left:472.044900px;}
.x39{left:476.027550px;}
.x5{left:478.769805px;}
.x29{left:483.218850px;}
.x14{left:493.844700px;}
.x53{left:506.694350px;}
.x43{left:516.013500px;}
.x54{left:523.028890px;}
.x45{left:526.754100px;}
.x2a{left:540.363000px;}
.x46{left:546.537000px;}
.x47{left:568.524000px;}
.x10{left:575.635500px;}
.x44{left:589.777500px;}
.x1f{left:610.431900px;}
.x1a{left:626.922000px;}
.x7{left:714.942000px;}
.x6{left:724.338000px;}
@media print{
.v5{vertical-align:-28.843200pt;}
.vb{vertical-align:-25.675200pt;}
.v8{vertical-align:-22.509867pt;}
.v2{vertical-align:-17.327467pt;}
.vc{vertical-align:-7.966780pt;}
.v9{vertical-align:-4.972800pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.989333pt;}
.v3{vertical-align:15.984000pt;}
.v7{vertical-align:17.380681pt;}
.v4{vertical-align:19.295987pt;}
.v1{vertical-align:28.944000pt;}
.v6{vertical-align:40.520533pt;}
.lsba{letter-spacing:-1.757414pt;}
.lsc0{letter-spacing:-0.880301pt;}
.lsbe{letter-spacing:-0.868745pt;}
.ls1e{letter-spacing:-0.798129pt;}
.lsb1{letter-spacing:-0.785058pt;}
.lsaa{letter-spacing:-0.707748pt;}
.lsc6{letter-spacing:-0.581820pt;}
.lsc5{letter-spacing:-0.438357pt;}
.lsb8{letter-spacing:-0.326377pt;}
.ls48{letter-spacing:-0.297550pt;}
.lsbb{letter-spacing:-0.227547pt;}
.ls14{letter-spacing:-0.122208pt;}
.lsc7{letter-spacing:-0.079701pt;}
.lsc4{letter-spacing:-0.048219pt;}
.lsab{letter-spacing:-0.047821pt;}
.ls19{letter-spacing:-0.031881pt;}
.lsb4{letter-spacing:-0.027895pt;}
.ls1a{letter-spacing:-0.024707pt;}
.lsb9{letter-spacing:-0.023910pt;}
.ls11{letter-spacing:-0.022237pt;}
.ls13{letter-spacing:-0.021254pt;}
.lsbd{letter-spacing:-0.019925pt;}
.ls17{letter-spacing:-0.016471pt;}
.lsb6{letter-spacing:-0.015940pt;}
.ls9e{letter-spacing:-0.014878pt;}
.ls4b{letter-spacing:-0.014824pt;}
.lsb0{letter-spacing:-0.012354pt;}
.ls16{letter-spacing:-0.010627pt;}
.ls21{letter-spacing:-0.009033pt;}
.ls1b{letter-spacing:-0.008767pt;}
.lsae{letter-spacing:-0.007970pt;}
.ls15{letter-spacing:-0.005845pt;}
.ls1d{letter-spacing:-0.005260pt;}
.ls20{letter-spacing:-0.004968pt;}
.lsa9{letter-spacing:-0.004676pt;}
.lsad{letter-spacing:-0.004384pt;}
.ls12{letter-spacing:0.000000pt;}
.ls9d{letter-spacing:0.004251pt;}
.lsa0{letter-spacing:0.004384pt;}
.ls9c{letter-spacing:0.004676pt;}
.ls28{letter-spacing:0.004782pt;}
.lsc{letter-spacing:0.005260pt;}
.ls52{letter-spacing:0.005443pt;}
.ls0{letter-spacing:0.005845pt;}
.ls23{letter-spacing:0.006429pt;}
.ls1c{letter-spacing:0.006663pt;}
.ls35{letter-spacing:0.007439pt;}
.lsa3{letter-spacing:0.007970pt;}
.ls5b{letter-spacing:0.008183pt;}
.lsd{letter-spacing:0.009564pt;}
.ls3{letter-spacing:0.010627pt;}
.lsa1{letter-spacing:0.012354pt;}
.ls9f{letter-spacing:0.013177pt;}
.ls29{letter-spacing:0.014346pt;}
.ls2f{letter-spacing:0.014824pt;}
.ls2d{letter-spacing:0.014878pt;}
.ls2{letter-spacing:0.015940pt;}
.ls1{letter-spacing:0.016471pt;}
.ls4{letter-spacing:0.016950pt;}
.lsa2{letter-spacing:0.019925pt;}
.ls93{letter-spacing:0.020859pt;}
.ls50{letter-spacing:0.023910pt;}
.lsaf{letter-spacing:0.027895pt;}
.ls98{letter-spacing:0.029649pt;}
.lsb2{letter-spacing:0.035866pt;}
.ls24{letter-spacing:0.043995pt;}
.ls22{letter-spacing:0.059032pt;}
.lsc8{letter-spacing:0.059776pt;}
.ls5{letter-spacing:0.061635pt;}
.lsa5{letter-spacing:0.084085pt;}
.ls10{letter-spacing:0.085014pt;}
.lsa7{letter-spacing:0.087671pt;}
.lsa6{letter-spacing:0.095642pt;}
.lsbf{letter-spacing:0.107597pt;}
.ls3e{letter-spacing:0.285413pt;}
.ls3a{letter-spacing:0.294718pt;}
.lsbc{letter-spacing:0.322790pt;}
.ls6b{letter-spacing:0.924529pt;}
.ls18{letter-spacing:0.967036pt;}
.ls75{letter-spacing:1.209858pt;}
.ls89{letter-spacing:1.211452pt;}
.ls79{letter-spacing:1.243341pt;}
.ls72{letter-spacing:1.538496pt;}
.ls76{letter-spacing:1.540882pt;}
.ls71{letter-spacing:1.546196pt;}
.ls32{letter-spacing:1.694970pt;}
.ls86{letter-spacing:2.095518pt;}
.ls84{letter-spacing:2.098788pt;}
.ls6e{letter-spacing:2.101366pt;}
.ls6c{letter-spacing:2.104101pt;}
.ls6{letter-spacing:2.630490pt;}
.lsa{letter-spacing:2.656115pt;}
.lsb{letter-spacing:2.670950pt;}
.lsf{letter-spacing:2.671206pt;}
.ls7{letter-spacing:2.678490pt;}
.ls8{letter-spacing:2.687539pt;}
.lse{letter-spacing:2.697338pt;}
.ls36{letter-spacing:3.841198pt;}
.ls6a{letter-spacing:4.800000pt;}
.lsc3{letter-spacing:5.873988pt;}
.lsb7{letter-spacing:5.878372pt;}
.ls31{letter-spacing:5.897859pt;}
.lsb3{letter-spacing:5.945719pt;}
.lsc2{letter-spacing:6.228659pt;}
.lsb5{letter-spacing:6.232644pt;}
.lsa8{letter-spacing:6.236099pt;}
.lsa4{letter-spacing:6.236231pt;}
.lsc1{letter-spacing:6.240614pt;}
.lsac{letter-spacing:6.244201pt;}
.ls42{letter-spacing:6.436680pt;}
.ls49{letter-spacing:7.789956pt;}
.ls8c{letter-spacing:8.086975pt;}
.ls1f{letter-spacing:8.362739pt;}
.ls7e{letter-spacing:8.639520pt;}
.ls30{letter-spacing:8.640000pt;}
.ls2e{letter-spacing:9.085952pt;}
.ls51{letter-spacing:9.229414pt;}
.ls55{letter-spacing:9.262889pt;}
.ls43{letter-spacing:9.277235pt;}
.ls26{letter-spacing:9.286799pt;}
.ls78{letter-spacing:9.291581pt;}
.ls45{letter-spacing:9.301146pt;}
.ls27{letter-spacing:9.310710pt;}
.ls2a{letter-spacing:9.315492pt;}
.ls33{letter-spacing:9.691617pt;}
.ls8b{letter-spacing:9.766659pt;}
.ls41{letter-spacing:9.970637pt;}
.ls6d{letter-spacing:9.978540pt;}
.ls85{letter-spacing:10.031674pt;}
.ls37{letter-spacing:10.249523pt;}
.ls3d{letter-spacing:10.297343pt;}
.ls38{letter-spacing:10.318597pt;}
.ls4a{letter-spacing:10.349946pt;}
.ls34{letter-spacing:10.350477pt;}
.ls44{letter-spacing:10.592307pt;}
.ls57{letter-spacing:10.606653pt;}
.ls2b{letter-spacing:10.654474pt;}
.ls8a{letter-spacing:11.062471pt;}
.ls6f{letter-spacing:11.158324pt;}
.ls9a{letter-spacing:11.179366pt;}
.ls8f{letter-spacing:11.190067pt;}
.ls4f{letter-spacing:11.237888pt;}
.ls7d{letter-spacing:11.716096pt;}
.ls39{letter-spacing:11.790405pt;}
.ls7c{letter-spacing:11.854776pt;}
.ls2c{letter-spacing:11.964764pt;}
.ls91{letter-spacing:11.979110pt;}
.ls94{letter-spacing:11.979200pt;}
.ls87{letter-spacing:12.070324pt;}
.ls5a{letter-spacing:12.280381pt;}
.ls59{letter-spacing:12.299510pt;}
.ls88{letter-spacing:12.428011pt;}
.ls70{letter-spacing:12.475832pt;}
.ls56{letter-spacing:12.581652pt;}
.ls58{letter-spacing:12.629473pt;}
.ls54{letter-spacing:12.677294pt;}
.ls92{letter-spacing:12.792064pt;}
.ls3f{letter-spacing:12.942950pt;}
.ls8d{letter-spacing:12.976115pt;}
.ls3b{letter-spacing:13.038950pt;}
.ls47{letter-spacing:13.136374pt;}
.ls95{letter-spacing:13.371200pt;}
.ls40{letter-spacing:13.474749pt;}
.ls3c{letter-spacing:13.522569pt;}
.ls60{letter-spacing:13.805865pt;}
.ls62{letter-spacing:13.867554pt;}
.ls74{letter-spacing:14.048594pt;}
.ls7b{letter-spacing:14.379715pt;}
.ls46{letter-spacing:14.437100pt;}
.ls80{letter-spacing:14.541827pt;}
.ls4e{letter-spacing:14.566324pt;}
.ls5d{letter-spacing:14.972692pt;}
.ls9{letter-spacing:15.240685pt;}
.ls73{letter-spacing:15.258679pt;}
.ls9b{letter-spacing:15.421730pt;}
.ls96{letter-spacing:15.446118pt;}
.ls7a{letter-spacing:15.836336pt;}
.ls4d{letter-spacing:15.919544pt;}
.ls77{letter-spacing:16.153866pt;}
.ls5e{letter-spacing:16.172995pt;}
.ls97{letter-spacing:16.890307pt;}
.ls5f{letter-spacing:17.325476pt;}
.ls5c{letter-spacing:21.022024pt;}
.ls25{letter-spacing:21.528924pt;}
.ls90{letter-spacing:24.895508pt;}
.ls8e{letter-spacing:26.758324pt;}
.ls61{letter-spacing:28.874199pt;}
.ls53{letter-spacing:28.938679pt;}
.ls64{letter-spacing:94.617600pt;}
.ls63{letter-spacing:120.153600pt;}
.ls99{letter-spacing:124.521120pt;}
.ls66{letter-spacing:173.290667pt;}
.ls69{letter-spacing:190.560000pt;}
.ls82{letter-spacing:195.402667pt;}
.ls65{letter-spacing:203.289600pt;}
.ls67{letter-spacing:216.024000pt;}
.ls81{letter-spacing:225.398400pt;}
.ls68{letter-spacing:448.970667pt;}
.ls4c{letter-spacing:914.614400pt;}
.ls7f{letter-spacing:957.983520pt;}
.ls83{letter-spacing:980.462400pt;}
.ws111{word-spacing:-969.983520pt;}
.ws139{word-spacing:-237.398400pt;}
.ws18{word-spacing:-52.991047pt;}
.ws17{word-spacing:-52.869317pt;}
.ws1{word-spacing:-47.820800pt;}
.ws1b8{word-spacing:-47.772979pt;}
.ws14e{word-spacing:-37.746299pt;}
.ws0{word-spacing:-35.843363pt;}
.ws24{word-spacing:-34.929673pt;}
.ws94{word-spacing:-34.356890pt;}
.ws16f{word-spacing:-32.853846pt;}
.ws190{word-spacing:-32.795505pt;}
.ws9c{word-spacing:-28.043523pt;}
.ws9f{word-spacing:-27.990921pt;}
.ws14{word-spacing:-27.533970pt;}
.ws16a{word-spacing:-27.376930pt;}
.ws1b{word-spacing:-27.312850pt;}
.ws1a{word-spacing:-27.296910pt;}
.ws19{word-spacing:-27.249886pt;}
.ws149{word-spacing:-26.583405pt;}
.wsc7{word-spacing:-26.577560pt;}
.wse{word-spacing:-26.572778pt;}
.ws9{word-spacing:-26.566933pt;}
.ws23{word-spacing:-26.561089pt;}
.ws123{word-spacing:-26.497027pt;}
.wsf{word-spacing:-26.444725pt;}
.ws21e{word-spacing:-26.165948pt;}
.ws1c4{word-spacing:-26.161564pt;}
.ws1dc{word-spacing:-26.157978pt;}
.ws204{word-spacing:-26.153993pt;}
.wsf9{word-spacing:-25.822754pt;}
.ws1e4{word-spacing:-25.803705pt;}
.ws206{word-spacing:-25.799322pt;}
.ws84{word-spacing:-25.574503pt;}
.wsed{word-spacing:-25.552930pt;}
.ws75{word-spacing:-25.537309pt;}
.wsb1{word-spacing:-25.235036pt;}
.ws49{word-spacing:-20.726056pt;}
.ws21b{word-spacing:-19.985109pt;}
.ws1fd{word-spacing:-19.941274pt;}
.ws1de{word-spacing:-19.937687pt;}
.ws1e0{word-spacing:-19.929717pt;}
.ws1c5{word-spacing:-19.925333pt;}
.ws1d5{word-spacing:-19.920950pt;}
.ws1d4{word-spacing:-19.917363pt;}
.ws1f7{word-spacing:-19.912980pt;}
.ws209{word-spacing:-19.909393pt;}
.ws1ec{word-spacing:-19.901423pt;}
.ws1e9{word-spacing:-19.897438pt;}
.ws11a{word-spacing:-18.857209pt;}
.ws7{word-spacing:-18.793980pt;}
.ws93{word-spacing:-18.788667pt;}
.ws142{word-spacing:-18.719593pt;}
.ws143{word-spacing:-18.714279pt;}
.ws145{word-spacing:-18.713748pt;}
.ws141{word-spacing:-18.698339pt;}
.ws144{word-spacing:-18.681868pt;}
.ws11b{word-spacing:-18.560191pt;}
.ws8d{word-spacing:-18.545966pt;}
.ws4a{word-spacing:-18.540121pt;}
.ws11c{word-spacing:-18.421512pt;}
.ws22{word-spacing:-18.368378pt;}
.ws6{word-spacing:-18.246701pt;}
.wsa{word-spacing:-18.246170pt;}
.wsa7{word-spacing:-18.241388pt;}
.ws5{word-spacing:-18.235543pt;}
.ws95{word-spacing:-18.230230pt;}
.ws10{word-spacing:-18.224916pt;}
.ws11f{word-spacing:-18.224385pt;}
.wsa8{word-spacing:-18.220134pt;}
.ws4{word-spacing:-18.214821pt;}
.ws3{word-spacing:-18.214289pt;}
.wsa1{word-spacing:-18.208976pt;}
.wsc{word-spacing:-18.204194pt;}
.ws8{word-spacing:-18.203663pt;}
.ws2{word-spacing:-18.198349pt;}
.ws11{word-spacing:-18.192505pt;}
.ws9e{word-spacing:-18.187723pt;}
.wsa0{word-spacing:-18.177096pt;}
.ws13{word-spacing:-18.176564pt;}
.wsa3{word-spacing:-18.145747pt;}
.wsb{word-spacing:-18.140433pt;}
.wsa6{word-spacing:-18.129275pt;}
.ws12{word-spacing:-18.118649pt;}
.wsa5{word-spacing:-18.108022pt;}
.wsd{word-spacing:-18.086768pt;}
.ws140{word-spacing:-17.975718pt;}
.ws115{word-spacing:-17.736616pt;}
.ws14a{word-spacing:-17.693578pt;}
.ws148{word-spacing:-17.502827pt;}
.ws147{word-spacing:-17.486356pt;}
.ws146{word-spacing:-17.152143pt;}
.ws1af{word-spacing:-17.110282pt;}
.ws119{word-spacing:-16.620273pt;}
.ws117{word-spacing:-16.610178pt;}
.ws116{word-spacing:-16.588925pt;}
.ws118{word-spacing:-16.583611pt;}
.ws1f{word-spacing:-16.455137pt;}
.ws21{word-spacing:-16.446051pt;}
.ws20{word-spacing:-16.421663pt;}
.ws1c{word-spacing:-16.421185pt;}
.ws1e{word-spacing:-16.417359pt;}
.ws1b3{word-spacing:-16.407795pt;}
.ws13f{word-spacing:-16.381171pt;}
.ws13e{word-spacing:-16.221769pt;}
.ws15{word-spacing:-16.084153pt;}
.ws11e{word-spacing:-16.009765pt;}
.wsa2{word-spacing:-16.004452pt;}
.ws113{word-spacing:-15.967258pt;}
.wsd6{word-spacing:-15.924326pt;}
.ws114{word-spacing:-15.871617pt;}
.ws99{word-spacing:-15.738251pt;}
.ws9a{word-spacing:-15.711684pt;}
.ws14f{word-spacing:-15.483740pt;}
.ws13d{word-spacing:-15.451328pt;}
.ws45{word-spacing:-15.436964pt;}
.ws14d{word-spacing:-15.413603pt;}
.ws14c{word-spacing:-15.254733pt;}
.ws1a9{word-spacing:-15.244793pt;}
.ws14b{word-spacing:-15.239324pt;}
.ws112{word-spacing:-15.116585pt;}
.ws98{word-spacing:-14.973124pt;}
.ws1d{word-spacing:-14.848837pt;}
.wsa4{word-spacing:-14.744648pt;}
.ws9d{word-spacing:-14.739335pt;}
.ws11d{word-spacing:-14.356771pt;}
.ws1f1{word-spacing:-14.326315pt;}
.ws1fb{word-spacing:-14.262554pt;}
.ws1ff{word-spacing:-14.250997pt;}
.ws1d0{word-spacing:-14.246613pt;}
.ws202{word-spacing:-14.190822pt;}
.ws203{word-spacing:-14.150972pt;}
.ws20d{word-spacing:-14.131046pt;}
.ws208{word-spacing:-14.115106pt;}
.ws1f2{word-spacing:-14.099564pt;}
.ws1c7{word-spacing:-14.091196pt;}
.ws1c1{word-spacing:-14.075654pt;}
.ws1c8{word-spacing:-14.074857pt;}
.ws1c3{word-spacing:-14.066887pt;}
.ws1d3{word-spacing:-14.063300pt;}
.ws1e1{word-spacing:-14.055729pt;}
.ws20e{word-spacing:-14.051345pt;}
.ws1df{word-spacing:-14.050947pt;}
.ws214{word-spacing:-14.047360pt;}
.ws1c2{word-spacing:-14.042976pt;}
.ws1f3{word-spacing:-14.038991pt;}
.ws1be{word-spacing:-14.035405pt;}
.ws1f6{word-spacing:-14.027036pt;}
.ws1f5{word-spacing:-14.023051pt;}
.ws201{word-spacing:-14.015479pt;}
.ws1e8{word-spacing:-14.011494pt;}
.ws1f9{word-spacing:-14.007509pt;}
.ws205{word-spacing:-13.979614pt;}
.ws43{word-spacing:-13.860298pt;}
.ws1cf{word-spacing:-13.835753pt;}
.ws1d9{word-spacing:-13.768405pt;}
.ws1ea{word-spacing:-13.737720pt;}
.ws1e5{word-spacing:-13.736525pt;}
.ws211{word-spacing:-13.727359pt;}
.ws216{word-spacing:-13.724968pt;}
.ws207{word-spacing:-13.724570pt;}
.ws1ba{word-spacing:-13.720983pt;}
.ws1db{word-spacing:-13.720585pt;}
.ws210{word-spacing:-13.716599pt;}
.ws1f4{word-spacing:-13.715005pt;}
.ws1cd{word-spacing:-13.713013pt;}
.ws1ed{word-spacing:-13.712614pt;}
.ws21a{word-spacing:-13.712216pt;}
.ws1cc{word-spacing:-13.709028pt;}
.ws1ef{word-spacing:-13.705840pt;}
.ws1bc{word-spacing:-13.705043pt;}
.ws1e2{word-spacing:-13.704644pt;}
.ws1d6{word-spacing:-13.700659pt;}
.ws217{word-spacing:-13.697870pt;}
.ws1b9{word-spacing:-13.697073pt;}
.ws1d8{word-spacing:-13.696674pt;}
.ws1d2{word-spacing:-13.692689pt;}
.ws1ce{word-spacing:-13.692291pt;}
.ws1eb{word-spacing:-13.689103pt;}
.ws1bf{word-spacing:-13.688704pt;}
.ws1bd{word-spacing:-13.688305pt;}
.ws1ca{word-spacing:-13.684719pt;}
.ws1cb{word-spacing:-13.684320pt;}
.ws200{word-spacing:-13.681132pt;}
.ws1d1{word-spacing:-13.680734pt;}
.ws1c9{word-spacing:-13.680335pt;}
.ws213{word-spacing:-13.676749pt;}
.ws1c0{word-spacing:-13.672764pt;}
.ws1f8{word-spacing:-13.672365pt;}
.ws20b{word-spacing:-13.670771pt;}
.ws219{word-spacing:-13.667185pt;}
.ws1e7{word-spacing:-13.664794pt;}
.ws1dd{word-spacing:-13.664395pt;}
.ws1e3{word-spacing:-13.656823pt;}
.ws218{word-spacing:-13.652838pt;}
.ws21d{word-spacing:-13.648853pt;}
.ws21c{word-spacing:-13.628928pt;}
.ws20a{word-spacing:-13.567159pt;}
.ws212{word-spacing:-13.441630pt;}
.ws1f0{word-spacing:-13.241978pt;}
.ws1e6{word-spacing:-13.035552pt;}
.ws92{word-spacing:-12.853082pt;}
.ws20c{word-spacing:-12.811989pt;}
.ws91{word-spacing:-12.714934pt;}
.wsc6{word-spacing:-12.672427pt;}
.ws1d7{word-spacing:-12.513109pt;}
.wscf{word-spacing:-12.385469pt;}
.ws1fa{word-spacing:-12.313856pt;}
.ws1fc{word-spacing:-12.286359pt;}
.ws8f{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.960460pt;}
.ws3e{word-spacing:-11.955200pt;}
.ws5c{word-spacing:-11.949940pt;}
.ws46{word-spacing:-11.861333pt;}
.ws20f{word-spacing:-11.393306pt;}
.ws1ab{word-spacing:-10.639977pt;}
.ws1fe{word-spacing:-10.568397pt;}
.ws1ee{word-spacing:-10.536516pt;}
.ws215{word-spacing:-10.329293pt;}
.ws3b{word-spacing:-9.545032pt;}
.ws9b{word-spacing:-8.756461pt;}
.ws44{word-spacing:-7.550925pt;}
.ws191{word-spacing:-7.484150pt;}
.ws19b{word-spacing:-7.483406pt;}
.ws1da{word-spacing:-5.515332pt;}
.ws97{word-spacing:-3.364800pt;}
.ws8e{word-spacing:-3.360000pt;}
.wse8{word-spacing:-2.759260pt;}
.ws127{word-spacing:-2.654533pt;}
.ws12a{word-spacing:-2.305441pt;}
.ws129{word-spacing:-2.286312pt;}
.ws25{word-spacing:-2.181107pt;}
.ws175{word-spacing:-2.133286pt;}
.wsab{word-spacing:-2.046730pt;}
.wsac{word-spacing:-2.037166pt;}
.ws63{word-spacing:-2.018516pt;}
.wsaa{word-spacing:-1.995562pt;}
.ws62{word-spacing:-1.965435pt;}
.ws198{word-spacing:-1.922874pt;}
.ws8b{word-spacing:-1.827233pt;}
.ws8a{word-spacing:-1.826755pt;}
.ws1a1{word-spacing:-1.774630pt;}
.ws19f{word-spacing:-1.750241pt;}
.wsc0{word-spacing:-1.712463pt;}
.ws19c{word-spacing:-1.590042pt;}
.wsd0{word-spacing:-1.589085pt;}
.wsce{word-spacing:-1.583347pt;}
.ws17d{word-spacing:-1.535526pt;}
.ws19e{word-spacing:-1.525962pt;}
.ws6d{word-spacing:-1.415974pt;}
.wsf7{word-spacing:-1.385847pt;}
.ws81{word-spacing:-1.341373pt;}
.ws166{word-spacing:-1.296422pt;}
.wsdb{word-spacing:-1.293553pt;}
.wsb2{word-spacing:-1.293074pt;}
.ws165{word-spacing:-1.262947pt;}
.ws69{word-spacing:-1.248601pt;}
.ws1b5{word-spacing:-1.238577pt;}
.ws12c{word-spacing:-1.152959pt;}
.wsb5{word-spacing:-1.066404pt;}
.wsb4{word-spacing:-1.056840pt;}
.wsee{word-spacing:-0.980805pt;}
.ws5d{word-spacing:-0.980326pt;}
.ws72{word-spacing:-0.875599pt;}
.wsef{word-spacing:-0.870817pt;}
.ws4b{word-spacing:-0.846906pt;}
.ws73{word-spacing:-0.836864pt;}
.ws1b0{word-spacing:-0.654186pt;}
.ws195{word-spacing:-0.598238pt;}
.ws196{word-spacing:-0.550417pt;}
.ws77{word-spacing:-0.392131pt;}
.ws122{word-spacing:-0.344788pt;}
.ws134{word-spacing:-0.320878pt;}
.ws6a{word-spacing:-0.292185pt;}
.ws135{word-spacing:-0.277361pt;}
.ws1ae{word-spacing:-0.220187pt;}
.ws12f{word-spacing:-0.105684pt;}
.ws71{word-spacing:-0.096120pt;}
.ws130{word-spacing:-0.091338pt;}
.wsec{word-spacing:-0.081774pt;}
.ws5b{word-spacing:-0.072209pt;}
.ws54{word-spacing:-0.062645pt;}
.ws53{word-spacing:-0.057863pt;}
.wsf0{word-spacing:-0.053081pt;}
.ws132{word-spacing:-0.048299pt;}
.ws90{word-spacing:-0.048000pt;}
.wsc3{word-spacing:-0.047821pt;}
.ws19a{word-spacing:-0.038735pt;}
.ws78{word-spacing:-0.038257pt;}
.ws101{word-spacing:-0.033953pt;}
.ws1b4{word-spacing:-0.025504pt;}
.ws4d{word-spacing:-0.024389pt;}
.ws83{word-spacing:-0.023910pt;}
.ws82{word-spacing:-0.023432pt;}
.ws15c{word-spacing:-0.014824pt;}
.wsbd{word-spacing:-0.014346pt;}
.ws3a{word-spacing:-0.010042pt;}
.ws1a8{word-spacing:-0.009564pt;}
.ws18f{word-spacing:-0.005260pt;}
.wsba{word-spacing:-0.000478pt;}
.ws47{word-spacing:0.000000pt;}
.ws1ad{word-spacing:0.016578pt;}
.ws1b2{word-spacing:0.021679pt;}
.ws131{word-spacing:0.023910pt;}
.ws8c{word-spacing:0.052603pt;}
.ws48{word-spacing:0.058447pt;}
.wsfb{word-spacing:0.200369pt;}
.wse6{word-spacing:0.209455pt;}
.wsfc{word-spacing:0.233844pt;}
.wse7{word-spacing:0.258232pt;}
.wse4{word-spacing:0.281665pt;}
.ws80{word-spacing:0.291707pt;}
.ws7e{word-spacing:0.305575pt;}
.wse5{word-spacing:0.335224pt;}
.ws39{word-spacing:0.425127pt;}
.wsea{word-spacing:0.439951pt;}
.ws128{word-spacing:0.477730pt;}
.ws15a{word-spacing:0.564764pt;}
.ws15b{word-spacing:0.631235pt;}
.ws58{word-spacing:0.640321pt;}
.ws161{word-spacing:0.769437pt;}
.ws162{word-spacing:0.774219pt;}
.ws89{word-spacing:0.774697pt;}
.ws163{word-spacing:0.831604pt;}
.ws164{word-spacing:0.855992pt;}
.ws17c{word-spacing:0.965980pt;}
.ws1a6{word-spacing:0.970762pt;}
.ws1a3{word-spacing:0.998977pt;}
.ws1a5{word-spacing:1.022887pt;}
.wsd4{word-spacing:1.051579pt;}
.ws60{word-spacing:1.109443pt;}
.ws61{word-spacing:1.118529pt;}
.ws27{word-spacing:1.128093pt;}
.ws159{word-spacing:1.142439pt;}
.wsbe{word-spacing:1.166828pt;}
.ws70{word-spacing:1.175913pt;}
.ws158{word-spacing:1.185956pt;}
.wsbf{word-spacing:1.199824pt;}
.ws86{word-spacing:1.381543pt;}
.wse0{word-spacing:1.386325pt;}
.ws74{word-spacing:1.391107pt;}
.ws174{word-spacing:1.419800pt;}
.ws57{word-spacing:1.577608pt;}
.ws56{word-spacing:1.630211pt;}
.wsfd{word-spacing:1.773673pt;}
.wsfa{word-spacing:1.840623pt;}
.wsf8{word-spacing:1.865011pt;}
.ws18c{word-spacing:1.945828pt;}
.ws1aa{word-spacing:1.971909pt;}
.ws1ac{word-spacing:1.980836pt;}
.ws17e{word-spacing:1.993649pt;}
.ws18d{word-spacing:1.998431pt;}
.wsa9{word-spacing:2.328395pt;}
.ws66{word-spacing:2.328873pt;}
.ws125{word-spacing:2.386258pt;}
.ws199{word-spacing:2.410168pt;}
.ws126{word-spacing:2.443165pt;}
.wsb7{word-spacing:2.448425pt;}
.wsb8{word-spacing:2.452729pt;}
.wsb9{word-spacing:2.495768pt;}
.ws124{word-spacing:2.557935pt;}
.ws154{word-spacing:2.629666pt;}
.wsc2{word-spacing:2.644012pt;}
.wsc1{word-spacing:2.663619pt;}
.ws155{word-spacing:2.667922pt;}
.wsc4{word-spacing:2.682269pt;}
.ws16e{word-spacing:2.734872pt;}
.ws1b1{word-spacing:2.843732pt;}
.ws5a{word-spacing:2.878334pt;}
.wsc5{word-spacing:2.880000pt;}
.wsf4{word-spacing:2.945283pt;}
.ws12b{word-spacing:2.954847pt;}
.ws18b{word-spacing:2.993104pt;}
.wsf2{word-spacing:3.002668pt;}
.ws176{word-spacing:3.021796pt;}
.wsf3{word-spacing:3.031839pt;}
.ws5e{word-spacing:3.040925pt;}
.ws102{word-spacing:3.064835pt;}
.wsb6{word-spacing:3.098310pt;}
.ws5f{word-spacing:3.117438pt;}
.wse9{word-spacing:3.198733pt;}
.ws87{word-spacing:3.213080pt;}
.wsd9{word-spacing:3.318285pt;}
.ws15f{word-spacing:3.366106pt;}
.wsda{word-spacing:3.377583pt;}
.wsdc{word-spacing:3.385713pt;}
.ws169{word-spacing:3.418709pt;}
.ws168{word-spacing:3.423969pt;}
.ws15e{word-spacing:3.433055pt;}
.ws2e{word-spacing:3.595646pt;}
.wse2{word-spacing:3.653031pt;}
.wsbb{word-spacing:3.672159pt;}
.ws172{word-spacing:3.682202pt;}
.wse1{word-spacing:3.710416pt;}
.ws2d{word-spacing:3.792189pt;}
.wsc9{word-spacing:3.854356pt;}
.ws1c6{word-spacing:3.885839pt;}
.wsca{word-spacing:3.887353pt;}
.wsc8{word-spacing:3.911263pt;}
.ws1b6{word-spacing:3.948919pt;}
.wsad{word-spacing:4.031293pt;}
.ws18e{word-spacing:4.059508pt;}
.wsf5{word-spacing:4.115936pt;}
.wsf6{word-spacing:4.121675pt;}
.ws121{word-spacing:4.155149pt;}
.ws120{word-spacing:4.169496pt;}
.ws28{word-spacing:4.356475pt;}
.wseb{word-spacing:4.519066pt;}
.ws1a7{word-spacing:4.523848pt;}
.ws1bb{word-spacing:4.543375pt;}
.ws177{word-spacing:4.556844pt;}
.ws88{word-spacing:4.575972pt;}
.ws76{word-spacing:4.604665pt;}
.wsbc{word-spacing:4.633357pt;}
.ws4c{word-spacing:4.728999pt;}
.ws197{word-spacing:4.743345pt;}
.ws16c{word-spacing:4.863375pt;}
.ws16d{word-spacing:4.882504pt;}
.ws16b{word-spacing:4.930324pt;}
.ws51{word-spacing:4.997274pt;}
.wscc{word-spacing:5.030270pt;}
.ws15d{word-spacing:5.231117pt;}
.ws32{word-spacing:5.269374pt;}
.ws6b{word-spacing:5.551517pt;}
.ws178{word-spacing:5.594555pt;}
.ws6f{word-spacing:5.642376pt;}
.ws182{word-spacing:5.700239pt;}
.ws7c{word-spacing:5.766710pt;}
.ws183{word-spacing:5.790621pt;}
.ws7b{word-spacing:5.800185pt;}
.ws35{word-spacing:5.833659pt;}
.ws7d{word-spacing:5.852788pt;}
.wsdd{word-spacing:5.977122pt;}
.ws171{word-spacing:6.044071pt;}
.ws65{word-spacing:6.077545pt;}
.ws64{word-spacing:6.091892pt;}
.ws180{word-spacing:6.187533pt;}
.ws55{word-spacing:6.359688pt;}
.wsb0{word-spacing:6.436680pt;}
.wsae{word-spacing:6.451026pt;}
.wsb3{word-spacing:6.455330pt;}
.ws167{word-spacing:6.565318pt;}
.ws4e{word-spacing:6.776207pt;}
.ws17a{word-spacing:6.957448pt;}
.ws103{word-spacing:7.005269pt;}
.ws36{word-spacing:7.081782pt;}
.ws6e{word-spacing:7.187466pt;}
.ws31{word-spacing:7.320886pt;}
.ws192{word-spacing:7.522212pt;}
.ws193{word-spacing:7.526516pt;}
.ws2c{word-spacing:7.536558pt;}
.wsde{word-spacing:7.540862pt;}
.wsdf{word-spacing:7.574337pt;}
.ws6c{word-spacing:7.751752pt;}
.wsf1{word-spacing:7.851697pt;}
.ws85{word-spacing:7.871304pt;}
.ws185{word-spacing:7.985595pt;}
.ws186{word-spacing:8.042980pt;}
.ws170{word-spacing:8.138622pt;}
.ws179{word-spacing:8.301213pt;}
.ws194{word-spacing:8.430329pt;}
.ws4f{word-spacing:8.473368pt;}
.wscb{word-spacing:8.894191pt;}
.ws41{word-spacing:8.927665pt;}
.wscd{word-spacing:8.951576pt;}
.ws59{word-spacing:9.099820pt;}
.ws30{word-spacing:9.253325pt;}
.ws50{word-spacing:9.320274pt;}
.ws2f{word-spacing:9.506775pt;}
.ws12d{word-spacing:9.511557pt;}
.ws79{word-spacing:9.549336pt;}
.ws7a{word-spacing:9.578506pt;}
.ws17f{word-spacing:9.769311pt;}
.ws173{word-spacing:9.912774pt;}
.ws1a0{word-spacing:10.195395pt;}
.ws19d{word-spacing:10.396242pt;}
.ws184{word-spacing:10.457931pt;}
.ws151{word-spacing:10.609044pt;}
.ws153{word-spacing:10.630564pt;}
.ws150{word-spacing:10.634868pt;}
.ws152{word-spacing:10.654952pt;}
.ws17b{word-spacing:10.682689pt;}
.ws2a{word-spacing:10.759680pt;}
.wse3{word-spacing:10.907446pt;}
.wsd1{word-spacing:11.285231pt;}
.wsd3{word-spacing:11.304359pt;}
.wsd2{word-spacing:11.323487pt;}
.ws2b{word-spacing:11.400001pt;}
.ws3f{word-spacing:11.577416pt;}
.ws3d{word-spacing:11.601326pt;}
.ws100{word-spacing:11.629540pt;}
.ws67{word-spacing:11.648669pt;}
.wsff{word-spacing:11.653451pt;}
.wsd5{word-spacing:11.658233pt;}
.ws68{word-spacing:11.663015pt;}
.wsd8{word-spacing:11.663493pt;}
.wsfe{word-spacing:11.673057pt;}
.ws160{word-spacing:11.701750pt;}
.wsd7{word-spacing:11.730920pt;}
.ws29{word-spacing:11.835648pt;}
.ws38{word-spacing:12.146483pt;}
.ws187{word-spacing:12.280381pt;}
.ws189{word-spacing:12.294249pt;}
.ws18a{word-spacing:12.327724pt;}
.ws188{word-spacing:12.332506pt;}
.ws1b7{word-spacing:12.373421pt;}
.ws133{word-spacing:12.677294pt;}
.ws156{word-spacing:12.878141pt;}
.ws1a4{word-spacing:12.891531pt;}
.ws157{word-spacing:12.911138pt;}
.ws1a2{word-spacing:12.925962pt;}
.ws12e{word-spacing:13.198063pt;}
.ws26{word-spacing:14.202299pt;}
.ws34{word-spacing:14.427057pt;}
.ws52{word-spacing:14.929176pt;}
.ws3c{word-spacing:15.603927pt;}
.ws37{word-spacing:15.856899pt;}
.ws104{word-spacing:16.880264pt;}
.ws105{word-spacing:16.880742pt;}
.ws33{word-spacing:16.937649pt;}
.ws181{word-spacing:17.272395pt;}
.ws42{word-spacing:17.755863pt;}
.wsaf{word-spacing:18.426789pt;}
.ws40{word-spacing:19.467369pt;}
.ws16{word-spacing:28.803869pt;}
.ws13b{word-spacing:55.256000pt;}
.ws13c{word-spacing:55.261333pt;}
.ws13a{word-spacing:55.265067pt;}
.ws109{word-spacing:63.153600pt;}
.ws10b{word-spacing:82.578667pt;}
.ws10a{word-spacing:82.583467pt;}
.ws10c{word-spacing:82.584000pt;}
.ws137{word-spacing:84.936000pt;}
.ws138{word-spacing:88.521600pt;}
.ws136{word-spacing:96.940800pt;}
.ws110{word-spacing:166.555200pt;}
.ws10e{word-spacing:170.299200pt;}
.ws10f{word-spacing:183.024000pt;}
.ws10d{word-spacing:297.688000pt;}
.ws108{word-spacing:328.656000pt;}
.ws106{word-spacing:562.248000pt;}
.ws107{word-spacing:900.710400pt;}
.ws96{word-spacing:967.790400pt;}
._2e{margin-left:-1169.179200pt;}
._25{margin-left:-1105.060800pt;}
._b{margin-left:-1102.761387pt;}
._30{margin-left:-1092.398400pt;}
._2a{margin-left:-1052.164800pt;}
._c{margin-left:-1048.106240pt;}
._1e{margin-left:-1040.150400pt;}
._2b{margin-left:-957.983040pt;}
._28{margin-left:-868.612800pt;}
._1d{margin-left:-526.891200pt;}
._24{margin-left:-445.636800pt;}
._18{margin-left:-309.216000pt;}
._2f{margin-left:-225.398400pt;}
._15{margin-left:-209.908800pt;}
._23{margin-left:-208.694400pt;}
._16{margin-left:-207.710400pt;}
._1b{margin-left:-194.568000pt;}
._1c{margin-left:-193.584000pt;}
._34{margin-left:-16.090265pt;}
._27{margin-left:-14.757499pt;}
._26{margin-left:-13.844122pt;}
._31{margin-left:-11.784171pt;}
._1f{margin-left:-10.370668pt;}
._5{margin-left:-8.305355pt;}
._17{margin-left:-7.100186pt;}
._9{margin-left:-5.642854pt;}
._7{margin-left:-4.432988pt;}
._3{margin-left:-2.859133pt;}
._0{margin-left:-1.362893pt;}
._1{width:1.105184pt;}
._20{width:2.611009pt;}
._4{width:3.960075pt;}
._3c{width:5.343974pt;}
._2{width:6.644417pt;}
._13{width:8.082893pt;}
._a{width:9.608739pt;}
._d{width:10.795582pt;}
._6{width:12.156047pt;}
._11{width:13.389824pt;}
._8{width:14.829230pt;}
._e{width:15.761736pt;}
._f{width:17.416335pt;}
._36{width:18.554470pt;}
._10{width:20.156467pt;}
._32{width:21.559051pt;}
._33{width:22.767483pt;}
._2c{width:23.743027pt;}
._3b{width:24.735309pt;}
._3a{width:26.405052pt;}
._12{width:29.725338pt;}
._39{width:35.383407pt;}
._38{width:37.057135pt;}
._35{width:38.199255pt;}
._37{width:39.691264pt;}
._19{width:55.488000pt;}
._21{width:69.028800pt;}
._14{width:70.348800pt;}
._2d{width:132.940800pt;}
._22{width:307.914720pt;}
._1a{width:387.513600pt;}
._29{width:831.715200pt;}
.fsd{font-size:36.000000pt;}
.fs6{font-size:37.193600pt;}
.fsf{font-size:39.850667pt;}
.fse{font-size:42.507200pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:45.163733pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:58.447467pt;}
.fs5{font-size:60.572800pt;}
.fs0{font-size:71.731200pt;}
.fsb{font-size:74.387733pt;}
.fs4{font-size:79.701333pt;}
.fs1{font-size:95.641600pt;}
.fs3{font-size:154.088533pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:2.616000pt;}
.y1ad{bottom:33.331589pt;}
.y149{bottom:33.698049pt;}
.yf4{bottom:33.700652pt;}
.y7d{bottom:33.702533pt;}
.y197{bottom:33.703852pt;}
.ybc{bottom:34.566163pt;}
.y45{bottom:41.095953pt;}
.y1eb{bottom:46.604045pt;}
.y223{bottom:46.605583pt;}
.y25a{bottom:46.606156pt;}
.y1ac{bottom:47.933892pt;}
.y148{bottom:49.634331pt;}
.yf3{bottom:49.636933pt;}
.y7c{bottom:49.638815pt;}
.y196{bottom:49.640133pt;}
.ybb{bottom:50.514400pt;}
.y44{bottom:57.031977pt;}
.y1ea{bottom:59.888265pt;}
.y222{bottom:59.889803pt;}
.y259{bottom:59.890375pt;}
.yf2{bottom:65.585170pt;}
.y7b{bottom:65.587052pt;}
.yba{bottom:66.450682pt;}
.y1ab{bottom:69.858533pt;}
.y43{bottom:72.968000pt;}
.y1e9{bottom:73.172484pt;}
.y221{bottom:73.174022pt;}
.y258{bottom:73.174595pt;}
.y195{bottom:73.556000pt;}
.y147{bottom:81.518849pt;}
.yf1{bottom:81.521452pt;}
.y7a{bottom:81.523333pt;}
.yb9{bottom:82.386963pt;}
.y1aa{bottom:85.794815pt;}
.y1e8{bottom:86.456704pt;}
.y220{bottom:86.458242pt;}
.y257{bottom:86.458815pt;}
.y146{bottom:96.807159pt;}
.yf0{bottom:97.457733pt;}
.y79{bottom:97.459615pt;}
.yb8{bottom:98.335200pt;}
.y1e7{bottom:99.740924pt;}
.y21f{bottom:99.742462pt;}
.y256{bottom:99.743035pt;}
.y1a9{bottom:101.731097pt;}
.y19{bottom:103.841123pt;}
.y145{bottom:112.083514pt;}
.y1e6{bottom:113.025143pt;}
.y21e{bottom:113.026682pt;}
.y255{bottom:113.027254pt;}
.yef{bottom:113.405970pt;}
.y78{bottom:113.407852pt;}
.yb7{bottom:114.271482pt;}
.y42{bottom:116.646963pt;}
.y1a8{bottom:117.679333pt;}
.y18{bottom:122.440633pt;}
.y194{bottom:123.150682pt;}
.y1e5{bottom:126.309363pt;}
.y21d{bottom:126.310901pt;}
.y254{bottom:126.311474pt;}
.y144{bottom:127.371824pt;}
.yee{bottom:129.342252pt;}
.y77{bottom:129.344133pt;}
.yb6{bottom:130.219718pt;}
.y41{bottom:132.583245pt;}
.y1a7{bottom:133.615615pt;}
.y193{bottom:139.086963pt;}
.y1e4{bottom:139.593583pt;}
.y21c{bottom:139.595121pt;}
.y253{bottom:139.595694pt;}
.y17{bottom:141.040143pt;}
.yed{bottom:145.278533pt;}
.yb5{bottom:146.156000pt;}
.y40{bottom:148.531482pt;}
.y1a6{bottom:149.563852pt;}
.y1e3{bottom:152.877803pt;}
.y21b{bottom:152.879341pt;}
.y252{bottom:152.879914pt;}
.y76{bottom:153.260000pt;}
.y192{bottom:155.035200pt;}
.y143{bottom:158.596415pt;}
.yec{bottom:161.226770pt;}
.y3f{bottom:164.467763pt;}
.y1a5{bottom:165.500133pt;}
.y1e2{bottom:166.162022pt;}
.y21a{bottom:166.163561pt;}
.y251{bottom:166.164133pt;}
.yb4{bottom:170.060133pt;}
.y191{bottom:170.971482pt;}
.y142{bottom:174.532697pt;}
.yeb{bottom:177.163052pt;}
.y1e1{bottom:179.446242pt;}
.y219{bottom:179.447780pt;}
.y250{bottom:179.448353pt;}
.y3e{bottom:180.416000pt;}
.y190{bottom:186.907763pt;}
.y1a4{bottom:189.404133pt;}
.y141{bottom:190.468978pt;}
.y1e0{bottom:192.730462pt;}
.y218{bottom:192.732000pt;}
.y24f{bottom:192.732573pt;}
.yea{bottom:193.099333pt;}
.y75{bottom:198.234533pt;}
.y18f{bottom:202.855718pt;}
.y3d{bottom:204.320133pt;}
.y1df{bottom:206.014682pt;}
.y217{bottom:206.016220pt;}
.y24e{bottom:206.016793pt;}
.y140{bottom:206.417215pt;}
.yb3{bottom:208.218252pt;}
.ye9{bottom:209.047570pt;}
.y74{bottom:214.170815pt;}
.y18e{bottom:218.789215pt;}
.y1de{bottom:219.298901pt;}
.y216{bottom:219.300439pt;}
.y24d{bottom:219.301012pt;}
.y13f{bottom:222.353497pt;}
.yb2{bottom:224.154533pt;}
.ye8{bottom:224.983852pt;}
.y73{bottom:230.107097pt;}
.y1dd{bottom:232.583121pt;}
.y215{bottom:232.584659pt;}
.y24c{bottom:232.585232pt;}
.y18d{bottom:234.725497pt;}
.y13e{bottom:238.289778pt;}
.yb1{bottom:240.090815pt;}
.y1a3{bottom:240.221600pt;}
.ye7{bottom:240.920133pt;}
.y1dc{bottom:245.855386pt;}
.y214{bottom:245.856924pt;}
.y24b{bottom:245.857497pt;}
.y72{bottom:246.055333pt;}
.y18c{bottom:250.673733pt;}
.y16{bottom:251.440363pt;}
.y13d{bottom:254.238015pt;}
.yb0{bottom:256.039052pt;}
.y1a2{bottom:256.157882pt;}
.y1db{bottom:259.139605pt;}
.y213{bottom:259.141143pt;}
.y24a{bottom:259.141716pt;}
.y71{bottom:261.991615pt;}
.ye6{bottom:264.836000pt;}
.y18b{bottom:266.610015pt;}
.y3c{bottom:269.546578pt;}
.y15{bottom:270.039873pt;}
.y13c{bottom:270.174297pt;}
.yaf{bottom:271.975333pt;}
.y1a1{bottom:272.094163pt;}
.y1da{bottom:272.423825pt;}
.y212{bottom:272.425363pt;}
.y249{bottom:272.425936pt;}
.y70{bottom:277.939852pt;}
.y18a{bottom:282.546297pt;}
.y3b{bottom:285.494815pt;}
.y1d9{bottom:285.708045pt;}
.y211{bottom:285.709583pt;}
.y248{bottom:285.710156pt;}
.y13b{bottom:286.122533pt;}
.yae{bottom:287.911615pt;}
.y1a0{bottom:288.042400pt;}
.y14{bottom:288.627428pt;}
.y6f{bottom:293.876133pt;}
.y189{bottom:298.494533pt;}
.y1d8{bottom:298.992265pt;}
.y210{bottom:298.993803pt;}
.y247{bottom:298.994375pt;}
.y3a{bottom:301.431097pt;}
.y13a{bottom:302.058815pt;}
.yad{bottom:303.859852pt;}
.y19f{bottom:303.978682pt;}
.y1d7{bottom:312.276484pt;}
.y20f{bottom:312.278022pt;}
.y246{bottom:312.278595pt;}
.ye5{bottom:313.540282pt;}
.y188{bottom:314.430815pt;}
.y39{bottom:317.367378pt;}
.y6e{bottom:317.780133pt;}
.y139{bottom:317.995097pt;}
.yac{bottom:319.796133pt;}
.y19e{bottom:319.926918pt;}
.y1d6{bottom:325.560704pt;}
.y20e{bottom:325.562242pt;}
.y245{bottom:325.562815pt;}
.ye4{bottom:329.488518pt;}
.y187{bottom:330.367097pt;}
.y38{bottom:333.315615pt;}
.y138{bottom:333.943333pt;}
.y19d{bottom:335.863200pt;}
.y1d5{bottom:338.844924pt;}
.y20d{bottom:338.846462pt;}
.y244{bottom:338.847035pt;}
.ye3{bottom:345.424800pt;}
.y186{bottom:346.315333pt;}
.y13{bottom:347.078666pt;}
.y37{bottom:349.251897pt;}
.y6d{bottom:349.664000pt;}
.y137{bottom:349.879615pt;}
.y19c{bottom:351.799482pt;}
.y1d4{bottom:352.129143pt;}
.y20c{bottom:352.130682pt;}
.y243{bottom:352.131254pt;}
.ye2{bottom:361.361082pt;}
.y185{bottom:362.251615pt;}
.y36{bottom:365.200133pt;}
.y1d3{bottom:365.413363pt;}
.y20b{bottom:365.414901pt;}
.y242{bottom:365.415474pt;}
.y12{bottom:365.678176pt;}
.y136{bottom:365.815897pt;}
.y19b{bottom:367.747718pt;}
.yab{bottom:372.080003pt;}
.ye1{bottom:377.309318pt;}
.y184{bottom:378.187897pt;}
.y1d2{bottom:378.697583pt;}
.y20a{bottom:378.699121pt;}
.y241{bottom:378.699694pt;}
.y35{bottom:381.136415pt;}
.y135{bottom:381.764133pt;}
.y19a{bottom:383.684000pt;}
.y11{bottom:384.277686pt;}
.yaa{bottom:388.027520pt;}
.y1d1{bottom:391.981803pt;}
.y209{bottom:391.983341pt;}
.y240{bottom:391.983914pt;}
.ye0{bottom:393.245600pt;}
.y183{bottom:394.136133pt;}
.y34{bottom:397.072697pt;}
.y6c{bottom:399.946963pt;}
.ya9{bottom:403.963695pt;}
.y1d0{bottom:405.266022pt;}
.y208{bottom:405.267561pt;}
.y23f{bottom:405.268133pt;}
.y199{bottom:407.588000pt;}
.ydf{bottom:409.181882pt;}
.y33{bottom:413.020933pt;}
.y134{bottom:414.847040pt;}
.y6b{bottom:415.895200pt;}
.y1cf{bottom:418.550242pt;}
.y207{bottom:418.551780pt;}
.y23e{bottom:418.552353pt;}
.y10{bottom:418.813371pt;}
.ya8{bottom:419.899870pt;}
.yde{bottom:425.130118pt;}
.y32{bottom:428.957215pt;}
.y133{bottom:430.795170pt;}
.y6a{bottom:431.831482pt;}
.y1ce{bottom:431.834462pt;}
.y206{bottom:431.836000pt;}
.y23d{bottom:431.836573pt;}
.y182{bottom:433.519825pt;}
.ya7{bottom:435.847783pt;}
.yf{bottom:437.400926pt;}
.y198{bottom:439.472000pt;}
.ydd{bottom:441.066400pt;}
.y31{bottom:444.893497pt;}
.y1cd{bottom:445.118682pt;}
.y205{bottom:445.120220pt;}
.y23c{bottom:445.120793pt;}
.y132{bottom:446.731345pt;}
.y69{bottom:447.767763pt;}
.y181{bottom:449.455828pt;}
.ya6{bottom:451.783958pt;}
.ye{bottom:456.000436pt;}
.ydc{bottom:457.002682pt;}
.y1cc{bottom:458.402901pt;}
.y204{bottom:458.404439pt;}
.y23b{bottom:458.405012pt;}
.y30{bottom:460.841733pt;}
.y131{bottom:462.667520pt;}
.y68{bottom:463.716000pt;}
.y180{bottom:465.403958pt;}
.ya5{bottom:467.720133pt;}
.y1cb{bottom:471.687121pt;}
.y203{bottom:471.688659pt;}
.y23a{bottom:471.689232pt;}
.ydb{bottom:472.950918pt;}
.yd{bottom:474.599946pt;}
.y2f{bottom:476.778015pt;}
.y130{bottom:478.615650pt;}
.y67{bottom:479.652282pt;}
.y17f{bottom:481.339478pt;}
.y1ca{bottom:484.971341pt;}
.y202{bottom:484.972879pt;}
.y239{bottom:484.973452pt;}
.yda{bottom:488.887200pt;}
.y2e{bottom:492.714297pt;}
.y12f{bottom:494.551825pt;}
.y8c{bottom:495.378800pt;}
.ya2{bottom:495.379600pt;}
.y66{bottom:495.588563pt;}
.ya3{bottom:496.146800pt;}
.y17e{bottom:497.275653pt;}
.y1c9{bottom:498.255561pt;}
.y201{bottom:498.257099pt;}
.y238{bottom:498.257671pt;}
.yd9{bottom:504.823482pt;}
.ya1{bottom:507.156400pt;}
.y2d{bottom:508.662533pt;}
.yc{bottom:509.135631pt;}
.y12e{bottom:510.487828pt;}
.y65{bottom:511.536800pt;}
.y1c8{bottom:511.539780pt;}
.y200{bottom:511.541318pt;}
.y237{bottom:511.541891pt;}
.y17d{bottom:513.223783pt;}
.y93{bottom:519.961333pt;}
.yd8{bottom:520.771718pt;}
.y99{bottom:522.088933pt;}
.y9e{bottom:523.094800pt;}
.y2c{bottom:524.598815pt;}
.y1c7{bottom:524.824000pt;}
.y1ff{bottom:524.825538pt;}
.y236{bottom:524.826111pt;}
.y12d{bottom:526.435958pt;}
.y64{bottom:527.473082pt;}
.yb{bottom:527.735141pt;}
.y17c{bottom:529.159958pt;}
.y9d{bottom:533.150800pt;}
.ya0{bottom:536.054800pt;}
.y98{bottom:536.294533pt;}
.yd7{bottom:536.707333pt;}
.y1c6{bottom:538.108220pt;}
.y1fe{bottom:538.109758pt;}
.y235{bottom:538.110331pt;}
.y2b{bottom:540.535097pt;}
.y92{bottom:540.708133pt;}
.y12c{bottom:542.371825pt;}
.y63{bottom:543.409363pt;}
.y17b{bottom:545.095695pt;}
.y97{bottom:550.916533pt;}
.y1c5{bottom:551.392439pt;}
.y1fd{bottom:551.393978pt;}
.y234{bottom:551.394550pt;}
.y9f{bottom:552.320800pt;}
.yd6{bottom:552.655570pt;}
.y2a{bottom:556.483333pt;}
.y12b{bottom:558.308000pt;}
.y62{bottom:559.357600pt;}
.y17a{bottom:561.043825pt;}
.y91{bottom:561.454933pt;}
.y1c4{bottom:564.676659pt;}
.y1fc{bottom:564.678197pt;}
.y233{bottom:564.678770pt;}
.y96{bottom:564.957733pt;}
.yd5{bottom:568.591852pt;}
.y29{bottom:572.419615pt;}
.y61{bottom:575.293882pt;}
.y179{bottom:576.980000pt;}
.y1c3{bottom:577.948924pt;}
.y1fb{bottom:577.950462pt;}
.y232{bottom:577.951035pt;}
.y90{bottom:582.201733pt;}
.yd4{bottom:584.526963pt;}
.y11f{bottom:585.835200pt;}
.y28{bottom:588.355897pt;}
.y60{bottom:591.230163pt;}
.y1c2{bottom:591.233143pt;}
.y1fa{bottom:591.234682pt;}
.y231{bottom:591.235254pt;}
.y95{bottom:593.857333pt;}
.y128{bottom:598.793333pt;}
.yd3{bottom:600.475200pt;}
.y167{bottom:601.892000pt;}
.ya{bottom:602.231479pt;}
.y8f{bottom:602.948533pt;}
.y27{bottom:604.304133pt;}
.y176{bottom:604.507600pt;}
.y169{bottom:604.508000pt;}
.y1c1{bottom:604.517363pt;}
.y1f9{bottom:604.518901pt;}
.y230{bottom:604.519474pt;}
.y5f{bottom:607.178400pt;}
.y9c{bottom:609.914533pt;}
.yd2{bottom:616.411482pt;}
.y175{bottom:616.456000pt;}
.y102{bottom:617.345333pt;}
.y123{bottom:617.348133pt;}
.y1c0{bottom:617.801583pt;}
.y1f8{bottom:617.803121pt;}
.y22f{bottom:617.803694pt;}
.y16a{bottom:618.600800pt;}
.y166{bottom:618.601067pt;}
.y9{bottom:620.830989pt;}
.y94{bottom:622.756933pt;}
.y5e{bottom:623.114682pt;}
.y8e{bottom:623.695333pt;}
.y9b{bottom:624.118933pt;}
.y115{bottom:625.679867pt;}
.y160{bottom:629.060267pt;}
.y1bf{bottom:631.085803pt;}
.y1f7{bottom:631.087341pt;}
.y22e{bottom:631.087914pt;}
.yd1{bottom:632.347763pt;}
.y9a{bottom:638.740933pt;}
.y5d{bottom:639.050963pt;}
.y101{bottom:639.312533pt;}
.y155{bottom:643.731067pt;}
.y1be{bottom:644.370022pt;}
.y1f6{bottom:644.371561pt;}
.y22d{bottom:644.372158pt;}
.y26{bottom:647.492000pt;}
.yd0{bottom:648.296000pt;}
.y8d{bottom:651.652933pt;}
.y164{bottom:652.538267pt;}
.y5c{bottom:654.999200pt;}
.y125{bottom:655.017333pt;}
.y22c{bottom:657.645818pt;}
.y1bd{bottom:657.654242pt;}
.y1f5{bottom:657.655780pt;}
.y16e{bottom:658.217867pt;}
.y154{bottom:658.495867pt;}
.ya4{bottom:660.604400pt;}
.y100{bottom:661.279733pt;}
.y114{bottom:663.799067pt;}
.y11d{bottom:664.020533pt;}
.y22b{bottom:670.930037pt;}
.y5b{bottom:670.935482pt;}
.y1bc{bottom:670.938462pt;}
.y1f3{bottom:670.939956pt;}
.y1f4{bottom:670.940000pt;}
.y16d{bottom:671.278667pt;}
.y124{bottom:671.643333pt;}
.y25{bottom:675.740133pt;}
.y113{bottom:678.425867pt;}
.y163{bottom:679.715867pt;}
.yff{bottom:683.246933pt;}
.y1f2{bottom:684.212719pt;}
.y22a{bottom:684.214257pt;}
.y1bb{bottom:684.222682pt;}
.y8{bottom:686.338405pt;}
.y5a{bottom:686.883718pt;}
.y24{bottom:688.663909pt;}
.y10e{bottom:691.189067pt;}
.y112{bottom:693.051467pt;}
.y1f1{bottom:697.496939pt;}
.y229{bottom:697.498477pt;}
.y1ba{bottom:697.506901pt;}
.y15f{bottom:698.361467pt;}
.y59{bottom:702.820000pt;}
.ycf{bottom:703.819565pt;}
.y10d{bottom:704.792267pt;}
.y7{bottom:704.937915pt;}
.yfe{bottom:705.214133pt;}
.y162{bottom:706.892267pt;}
.y10f{bottom:707.678267pt;}
.y23{bottom:710.276000pt;}
.y126{bottom:710.405467pt;}
.y8b{bottom:710.431958pt;}
.y156{bottom:710.686267pt;}
.y1f0{bottom:710.781158pt;}
.y228{bottom:710.782697pt;}
.y1b9{bottom:710.791121pt;}
.y10c{bottom:718.393067pt;}
.y58{bottom:718.756282pt;}
.yce{bottom:719.767695pt;}
.y110{bottom:722.303867pt;}
.y22{bottom:723.200042pt;}
.y6{bottom:723.537425pt;}
.y122{bottom:723.938800pt;}
.y1ef{bottom:724.065378pt;}
.y227{bottom:724.066916pt;}
.y1b8{bottom:724.075341pt;}
.y153{bottom:725.327467pt;}
.y8a{bottom:726.368003pt;}
.yfd{bottom:727.181333pt;}
.y10a{bottom:731.995067pt;}
.y161{bottom:734.069867pt;}
.y57{bottom:734.704518pt;}
.ycd{bottom:735.703870pt;}
.y111{bottom:736.931867pt;}
.y1ee{bottom:737.349598pt;}
.y226{bottom:737.351136pt;}
.y1b7{bottom:737.359561pt;}
.y152{bottom:739.967467pt;}
.y5{bottom:742.136935pt;}
.y89{bottom:742.316133pt;}
.y21{bottom:744.812000pt;}
.y10b{bottom:745.598267pt;}
.y12a{bottom:750.338933pt;}
.yfc{bottom:750.340133pt;}
.y1ed{bottom:750.633818pt;}
.y225{bottom:750.635356pt;}
.y56{bottom:750.640800pt;}
.y1b6{bottom:750.643780pt;}
.ycc{bottom:751.652000pt;}
.y151{bottom:754.609867pt;}
.y20{bottom:757.736087pt;}
.y4{bottom:760.724490pt;}
.y15d{bottom:761.245467pt;}
.y1ec{bottom:763.918037pt;}
.y224{bottom:763.919575pt;}
.y1b5{bottom:763.928000pt;}
.y15e{bottom:765.665067pt;}
.y55{bottom:766.577082pt;}
.y178{bottom:767.664267pt;}
.y87{bottom:770.731733pt;}
.y88{bottom:770.733333pt;}
.yc9{bottom:779.182800pt;}
.y11e{bottom:779.290800pt;}
.y3{bottom:779.324000pt;}
.y1f{bottom:779.348000pt;}
.yca{bottom:780.068133pt;}
.y54{bottom:782.525318pt;}
.y16c{bottom:782.829200pt;}
.yc6{bottom:790.129733pt;}
.y127{bottom:793.591867pt;}
.y174{bottom:795.396133pt;}
.y270{bottom:795.807546pt;}
.y264{bottom:795.809538pt;}
.y1b4{bottom:795.812000pt;}
.y16b{bottom:796.895600pt;}
.y165{bottom:796.895867pt;}
.y16f{bottom:796.896133pt;}
.y53{bottom:798.461600pt;}
.y86{bottom:798.580133pt;}
.y1e{bottom:802.904486pt;}
.yc3{bottom:805.248533pt;}
.y173{bottom:805.277333pt;}
.y26f{bottom:809.091765pt;}
.y263{bottom:809.093758pt;}
.y2{bottom:809.876000pt;}
.y15c{bottom:811.849467pt;}
.y52{bottom:814.397882pt;}
.y85{bottom:816.672000pt;}
.yc1{bottom:817.507733pt;}
.yc2{bottom:820.214933pt;}
.y117{bottom:820.559867pt;}
.y11a{bottom:821.092667pt;}
.y121{bottom:821.310000pt;}
.y108{bottom:822.053867pt;}
.y26e{bottom:822.375985pt;}
.y262{bottom:822.377978pt;}
.yfb{bottom:824.204533pt;}
.yc7{bottom:824.462933pt;}
.yc8{bottom:829.359333pt;}
.y172{bottom:830.183733pt;}
.y51{bottom:830.346118pt;}
.y1d{bottom:833.456486pt;}
.y116{bottom:834.799067pt;}
.y279{bottom:835.646257pt;}
.y26d{bottom:835.648250pt;}
.y261{bottom:835.650242pt;}
.y119{bottom:835.990667pt;}
.y107{bottom:836.680667pt;}
.yc0{bottom:844.888133pt;}
.y50{bottom:846.282400pt;}
.y15a{bottom:846.371467pt;}
.yfa{bottom:847.640667pt;}
.y278{bottom:848.930477pt;}
.y26c{bottom:848.932469pt;}
.y260{bottom:848.934462pt;}
.y120{bottom:849.223200pt;}
.y109{bottom:849.454667pt;}
.y118{bottom:851.306267pt;}
.y106{bottom:851.307467pt;}
.y84{bottom:853.703733pt;}
.y1b3{bottom:854.251799pt;}
.y170{bottom:857.086933pt;}
.y15b{bottom:860.094533pt;}
.y277{bottom:862.214697pt;}
.y26b{bottom:862.216689pt;}
.y4f{bottom:862.218682pt;}
.y1c{bottom:864.008000pt;}
.y105{bottom:864.111467pt;}
.y1b2{bottom:868.867899pt;}
.y11c{bottom:870.342533pt;}
.yf9{bottom:871.077600pt;}
.y171{bottom:871.956667pt;}
.ybf{bottom:872.268533pt;}
.y11b{bottom:873.137867pt;}
.y276{bottom:875.498916pt;}
.y26a{bottom:875.500909pt;}
.y25f{bottom:875.502901pt;}
.y4e{bottom:878.166918pt;}
.y104{bottom:878.768267pt;}
.y157{bottom:879.997867pt;}
.y159{bottom:880.891867pt;}
.y1b1{bottom:883.484000pt;}
.y275{bottom:888.783136pt;}
.y269{bottom:888.785129pt;}
.y25e{bottom:888.787121pt;}
.y150{bottom:888.899467pt;}
.y1{bottom:892.268000pt;}
.y4d{bottom:894.103200pt;}
.yf8{bottom:894.513733pt;}
.y82{bottom:898.011333pt;}
.y1b0{bottom:898.088000pt;}
.y103{bottom:899.052533pt;}
.ybe{bottom:899.648933pt;}
.y274{bottom:902.067356pt;}
.y268{bottom:902.069348pt;}
.y25d{bottom:902.071341pt;}
.y14e{bottom:903.540667pt;}
.y14b{bottom:904.901200pt;}
.y83{bottom:906.828933pt;}
.y4c{bottom:910.039482pt;}
.y1b{bottom:910.497664pt;}
.y7f{bottom:912.272133pt;}
.y49{bottom:912.368000pt;}
.y7e{bottom:912.668133pt;}
.y1af{bottom:912.703488pt;}
.y48{bottom:912.764000pt;}
.yc5{bottom:912.892133pt;}
.y273{bottom:915.351575pt;}
.y267{bottom:915.353568pt;}
.y25c{bottom:915.355561pt;}
.y81{bottom:915.407733pt;}
.y158{bottom:915.412267pt;}
.ybd{bottom:916.899200pt;}
.yf7{bottom:917.950667pt;}
.y14f{bottom:918.181867pt;}
.y14d{bottom:918.599467pt;}
.yf5{bottom:924.969467pt;}
.y4b{bottom:925.987718pt;}
.y1ae{bottom:927.319589pt;}
.yc4{bottom:927.859733pt;}
.y272{bottom:928.635795pt;}
.y266{bottom:928.637788pt;}
.y25b{bottom:928.639780pt;}
.y14a{bottom:929.807467pt;}
.y80{bottom:932.751333pt;}
.y14c{bottom:932.823067pt;}
.y47{bottom:935.336133pt;}
.y129{bottom:941.386133pt;}
.yf6{bottom:941.386667pt;}
.y271{bottom:941.920015pt;}
.y265{bottom:941.922007pt;}
.y4a{bottom:941.924000pt;}
.y177{bottom:942.254667pt;}
.ycb{bottom:942.497333pt;}
.y1a{bottom:954.332000pt;}
.y46{bottom:992.000000pt;}
.h8{height:26.965360pt;}
.h30{height:27.895467pt;}
.h2f{height:28.891733pt;}
.h2e{height:31.072763pt;}
.hb{height:32.743707pt;}
.hd{height:33.474560pt;}
.h9{height:34.670080pt;}
.h11{height:34.896000pt;}
.ha{height:34.957005pt;}
.h10{height:35.052646pt;}
.h2d{height:35.063787pt;}
.h14{height:35.283692pt;}
.h12{height:35.568000pt;}
.h4{height:37.193707pt;}
.h3{height:38.522053pt;}
.h2b{height:38.522740pt;}
.h26{height:42.147467pt;}
.h21{height:42.151200pt;}
.h19{height:42.153867pt;}
.h20{height:42.155467pt;}
.h13{height:42.156000pt;}
.h1c{height:42.156533pt;}
.h27{height:42.157600pt;}
.h1f{height:42.158667pt;}
.h23{height:42.161867pt;}
.h1d{height:42.165067pt;}
.h2c{height:42.322099pt;}
.h1b{height:42.373299pt;}
.he{height:42.374413pt;}
.h1a{height:42.374780pt;}
.h22{height:42.886400pt;}
.h25{height:44.290786pt;}
.h24{height:44.290799pt;}
.h29{height:44.291853pt;}
.hc{height:44.500000pt;}
.h15{height:45.331507pt;}
.h16{height:46.214760pt;}
.h17{height:46.215813pt;}
.h2a{height:46.263447pt;}
.h1{height:50.211840pt;}
.h1e{height:53.707200pt;}
.hf{height:53.931107pt;}
.h2{height:69.340160pt;}
.h7{height:72.857334pt;}
.h6{height:72.859280pt;}
.h18{height:75.416533pt;}
.h5{height:111.714187pt;}
.h28{height:350.334667pt;}
.h0{height:1008.000000pt;}
.w2{width:493.196000pt;}
.w0{width:695.810667pt;}
.w1{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:58.232000pt;}
.x8{left:74.420000pt;}
.x4f{left:88.939590pt;}
.x9{left:90.368237pt;}
.x36{left:100.353027pt;}
.x42{left:101.768000pt;}
.x35{left:103.064667pt;}
.x21{left:107.113867pt;}
.x15{left:110.065200pt;}
.x1c{left:113.559733pt;}
.x11{left:116.231867pt;}
.x2f{left:119.744933pt;}
.x48{left:120.827200pt;}
.x24{left:124.244267pt;}
.x37{left:125.327200pt;}
.x30{left:128.744267pt;}
.x3e{left:129.827200pt;}
.x2e{left:134.744933pt;}
.x3f{left:135.827200pt;}
.x4a{left:144.577200pt;}
.x33{left:152.270267pt;}
.x18{left:155.145467pt;}
.x22{left:156.442667pt;}
.x49{left:164.355200pt;}
.x13{left:170.375867pt;}
.x32{left:172.416533pt;}
.x19{left:175.539733pt;}
.x23{left:176.837200pt;}
.x4d{left:201.420400pt;}
.x2c{left:212.300933pt;}
.x31{left:219.907733pt;}
.x2d{left:232.370933pt;}
.xd{left:233.360000pt;}
.x4b{left:234.910800pt;}
.xb{left:239.176133pt;}
.xc{left:243.676400pt;}
.xe{left:249.676400pt;}
.x50{left:262.411535pt;}
.x1e{left:265.012533pt;}
.x4c{left:270.026400pt;}
.x51{left:276.931125pt;}
.xf{left:282.887600pt;}
.x2{left:294.896000pt;}
.x38{left:297.180000pt;}
.xa{left:299.462933pt;}
.x4{left:302.876000pt;}
.x3a{left:304.063200pt;}
.x3{left:314.876000pt;}
.x1b{left:345.437600pt;}
.x34{left:351.777867pt;}
.x16{left:355.408800pt;}
.x1d{left:358.713333pt;}
.x4e{left:360.876000pt;}
.x2b{left:367.153867pt;}
.x17{left:369.808800pt;}
.x3c{left:370.848000pt;}
.x26{left:372.248000pt;}
.x12{left:376.179467pt;}
.x25{left:378.248000pt;}
.x20{left:379.714533pt;}
.x3b{left:380.729333pt;}
.x27{left:384.248000pt;}
.x3d{left:386.729333pt;}
.x52{left:395.428854pt;}
.x40{left:396.964000pt;}
.x41{left:403.544800pt;}
.x28{left:419.595467pt;}
.x39{left:423.135600pt;}
.x5{left:425.573160pt;}
.x29{left:429.527867pt;}
.x14{left:438.973067pt;}
.x53{left:450.394978pt;}
.x43{left:458.678667pt;}
.x54{left:464.914569pt;}
.x45{left:468.225867pt;}
.x2a{left:480.322667pt;}
.x46{left:485.810667pt;}
.x47{left:505.354667pt;}
.x10{left:511.676000pt;}
.x44{left:524.246667pt;}
.x1f{left:542.606133pt;}
.x1a{left:557.264000pt;}
.x7{left:635.504000pt;}
.x6{left:643.856000pt;}
}




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