
    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_5fc149bd00a5b963998ccead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0142b1716c8054bc0a39ac05.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c34521bf0cfa2f6ad15e491d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854000;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_9b89f7ba00eddcfa06891d6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_a06e97185db835706ce44036.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104000;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_dffe475eb76f48c81e7931a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_6f568f3d4ca49101b3dedf4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_f1e40f02e3d6c278126741f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_8c969dc869422d0862b14cfe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.782000;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_4661e36d9eccf1e1321c95da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.723000;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_ae09a5fb61326fa8d44375a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_2969bdcf09eb4e33d48152cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_add64c1204d1f3c46c6db232.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_700f366b493abf0b048b48f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_626f0e90222f7d913b084732.woff2')format("woff");}.fff{font-family:fff;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a39a17bfc3c5932fbb8ad4bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.953000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1d341c76ec22025e89f134a9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1432ff9bec07fdb7845dcda6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.878184px;}
.v9{vertical-align:-14.946843px;}
.v3{vertical-align:-8.965288px;}
.v8{vertical-align:-5.981549px;}
.v15{vertical-align:-3.546273px;}
.v5{vertical-align:-2.076668px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.076668px;}
.vb{vertical-align:5.866733px;}
.v11{vertical-align:7.692565px;}
.v12{vertical-align:8.972309px;}
.va{vertical-align:14.839042px;}
.ve{vertical-align:16.662533px;}
.v1{vertical-align:21.697205px;}
.vf{vertical-align:24.678574px;}
.vd{vertical-align:29.647602px;}
.v13{vertical-align:30.662433px;}
.vc{vertical-align:36.529166px;}
.v6{vertical-align:40.441062px;}
.v10{vertical-align:44.425681px;}
.v14{vertical-align:45.625741px;}
.v7{vertical-align:97.800090px;}
.ls1{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.002545px;}
.ls4{letter-spacing:0.004380px;}
.ls1b{letter-spacing:0.005323px;}
.lsc{letter-spacing:0.006268px;}
.ls14{letter-spacing:0.006644px;}
.ls3b{letter-spacing:0.007691px;}
.ls35{letter-spacing:0.008984px;}
.ls2f{letter-spacing:0.009184px;}
.ls68{letter-spacing:0.009309px;}
.ls24{letter-spacing:0.010948px;}
.ls2e{letter-spacing:0.030708px;}
.ls2c{letter-spacing:0.032277px;}
.ls25{letter-spacing:0.032765px;}
.ls16{letter-spacing:0.032974px;}
.ls27{letter-spacing:0.033074px;}
.ls4a{letter-spacing:0.034055px;}
.ls21{letter-spacing:0.035105px;}
.ls3d{letter-spacing:0.035389px;}
.ls1c{letter-spacing:0.040094px;}
.ls56{letter-spacing:0.042583px;}
.ls11{letter-spacing:0.044541px;}
.ls5b{letter-spacing:0.044923px;}
.ls2b{letter-spacing:0.045301px;}
.ls5{letter-spacing:0.046882px;}
.ls62{letter-spacing:0.047263px;}
.ls4e{letter-spacing:0.049603px;}
.ls19{letter-spacing:0.050050px;}
.ls1f{letter-spacing:0.052390px;}
.ls1a{letter-spacing:0.057070px;}
.ls6e{letter-spacing:1.077757px;}
.ls41{letter-spacing:2.290228px;}
.ls28{letter-spacing:2.997433px;}
.ls6{letter-spacing:3.004097px;}
.ls7{letter-spacing:3.006437px;}
.ls5e{letter-spacing:3.010409px;}
.lsd{letter-spacing:3.011117px;}
.ls3c{letter-spacing:3.014527px;}
.ls1d{letter-spacing:3.015048px;}
.ls20{letter-spacing:3.021215px;}
.ls30{letter-spacing:3.022068px;}
.ls58{letter-spacing:3.025406px;}
.ls54{letter-spacing:3.032427px;}
.ls5d{letter-spacing:3.454590px;}
.ls46{letter-spacing:3.461610px;}
.ls59{letter-spacing:4.317297px;}
.ls37{letter-spacing:6.777602px;}
.lse{letter-spacing:7.491385px;}
.ls8{letter-spacing:7.516665px;}
.ls4c{letter-spacing:10.004359px;}
.ls48{letter-spacing:10.011379px;}
.ls6c{letter-spacing:11.841446px;}
.ls0{letter-spacing:11.952958px;}
.ls53{letter-spacing:13.327685px;}
.ls26{letter-spacing:14.379222px;}
.ls13{letter-spacing:14.420521px;}
.ls3e{letter-spacing:15.261140px;}
.ls52{letter-spacing:16.317511px;}
.ls49{letter-spacing:16.617634px;}
.ls17{letter-spacing:16.633900px;}
.ls51{letter-spacing:16.644163px;}
.ls18{letter-spacing:16.651191px;}
.ls1e{letter-spacing:16.654020px;}
.ls29{letter-spacing:16.658700px;}
.ls5c{letter-spacing:16.661040px;}
.ls9{letter-spacing:16.697395px;}
.ls23{letter-spacing:17.968142px;}
.ls6b{letter-spacing:18.244512px;}
.ls40{letter-spacing:18.474682px;}
.ls3f{letter-spacing:18.484531px;}
.ls55{letter-spacing:18.921968px;}
.ls36{letter-spacing:19.083594px;}
.ls38{letter-spacing:19.125139px;}
.ls6f{letter-spacing:19.132677px;}
.ls66{letter-spacing:19.457442px;}
.ls4b{letter-spacing:19.600369px;}
.ls33{letter-spacing:19.601343px;}
.ls47{letter-spacing:19.607359px;}
.ls5a{letter-spacing:19.612039px;}
.ls34{letter-spacing:19.625425px;}
.ls3{letter-spacing:19.902154px;}
.ls12{letter-spacing:20.482667px;}
.ls4d{letter-spacing:20.921268px;}
.ls22{letter-spacing:21.339414px;}
.ls32{letter-spacing:23.213361px;}
.ls2{letter-spacing:23.311863px;}
.lsf{letter-spacing:23.707943px;}
.ls70{letter-spacing:23.720111px;}
.ls10{letter-spacing:24.031995px;}
.ls42{letter-spacing:24.179623px;}
.ls71{letter-spacing:24.797431px;}
.ls15{letter-spacing:26.326011px;}
.lsb{letter-spacing:26.479083px;}
.ls63{letter-spacing:26.800729px;}
.ls43{letter-spacing:27.735220px;}
.lsa{letter-spacing:29.464168px;}
.ls61{letter-spacing:29.887854px;}
.ls39{letter-spacing:31.948380px;}
.ls45{letter-spacing:33.255056px;}
.ls31{letter-spacing:34.911529px;}
.ls3a{letter-spacing:36.249275px;}
.ls44{letter-spacing:38.430480px;}
.ls2d{letter-spacing:44.044361px;}
.ls6a{letter-spacing:46.102047px;}
.ls4f{letter-spacing:63.953506px;}
.ls50{letter-spacing:63.955906px;}
.ls5f{letter-spacing:63.960707px;}
.ls2a{letter-spacing:64.423780px;}
.ls57{letter-spacing:78.518035px;}
.ls60{letter-spacing:80.561737px;}
.ls67{letter-spacing:83.365077px;}
.ls69{letter-spacing:83.857701px;}
.ls65{letter-spacing:96.643141px;}
.ls64{letter-spacing:96.650341px;}
.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;}
}
.wsaf{word-spacing:-29.889294px;}
.wsb4{word-spacing:-20.922446px;}
.wsc1{word-spacing:-16.172240px;}
.wsc0{word-spacing:-10.238443px;}
.wsd3{word-spacing:-10.177516px;}
.ws11c{word-spacing:-9.849834px;}
.ws138{word-spacing:-9.646487px;}
.ws137{word-spacing:-8.629663px;}
.wsa5{word-spacing:-3.503664px;}
.wsce{word-spacing:-0.370209px;}
.ws6{word-spacing:-0.059779px;}
.ws110{word-spacing:-0.041845px;}
.ws61{word-spacing:0.000000px;}
.ws2d{word-spacing:9.659144px;}
.ws9d{word-spacing:9.970351px;}
.ws9a{word-spacing:9.970531px;}
.ws1ca{word-spacing:11.297854px;}
.ws29d{word-spacing:11.298094px;}
.wsb9{word-spacing:11.357513px;}
.wsba{word-spacing:11.358649px;}
.ws183{word-spacing:11.416993px;}
.ws258{word-spacing:11.417232px;}
.ws1d0{word-spacing:11.476592px;}
.wsf7{word-spacing:11.536192px;}
.ws276{word-spacing:11.597764px;}
.ws161{word-spacing:11.656825px;}
.ws191{word-spacing:11.656944px;}
.wsf8{word-spacing:11.657482px;}
.wsc{word-spacing:11.715468px;}
.ws13b{word-spacing:11.775426px;}
.ws13c{word-spacing:11.777040px;}
.ws71{word-spacing:11.836400px;}
.ws18f{word-spacing:11.895102px;}
.ws92{word-spacing:11.895700px;}
.ws33{word-spacing:11.907781px;}
.ws60{word-spacing:11.908260px;}
.ws1b1{word-spacing:12.015257px;}
.ws1ee{word-spacing:12.074259px;}
.ws2a5{word-spacing:12.074378px;}
.ws1ed{word-spacing:12.074737px;}
.wsf4{word-spacing:12.076172px;}
.ws139{word-spacing:12.120881px;}
.ws13a{word-spacing:12.133918px;}
.ws24d{word-spacing:12.253714px;}
.wsc9{word-spacing:12.253893px;}
.wsc8{word-spacing:12.255208px;}
.ws253{word-spacing:12.313373px;}
.ws295{word-spacing:12.314330px;}
.ws59{word-spacing:12.315406px;}
.ws296{word-spacing:12.373690px;}
.ws27c{word-spacing:12.373869px;}
.ws27b{word-spacing:12.374467px;}
.ws223{word-spacing:12.374706px;}
.ws217{word-spacing:12.493725px;}
.ws280{word-spacing:12.554042px;}
.ws27f{word-spacing:12.554161px;}
.ws1a{word-spacing:12.554460px;}
.wsf6{word-spacing:12.603147px;}
.ws14d{word-spacing:12.671805px;}
.ws25d{word-spacing:12.672104px;}
.ws23f{word-spacing:12.673419px;}
.ws2a6{word-spacing:12.673718px;}
.ws128{word-spacing:12.674017px;}
.ws14{word-spacing:12.674137px;}
.ws21d{word-spacing:12.732481px;}
.ws13{word-spacing:12.732600px;}
.ws21e{word-spacing:12.733617px;}
.ws27e{word-spacing:12.852277px;}
.wsca{word-spacing:12.852636px;}
.ws27d{word-spacing:12.910920px;}
.ws18a{word-spacing:12.912474px;}
.ws2c{word-spacing:12.959026px;}
.ws26{word-spacing:12.972073px;}
.ws136{word-spacing:12.973030px;}
.ws4e{word-spacing:13.032749px;}
.wsb1{word-spacing:13.032928px;}
.ws266{word-spacing:13.090614px;}
.ws12{word-spacing:13.090913px;}
.ws240{word-spacing:13.092707px;}
.ws14b{word-spacing:13.133550px;}
.ws14c{word-spacing:13.141967px;}
.ws70{word-spacing:13.150273px;}
.wse3{word-spacing:13.150572px;}
.ws17e{word-spacing:13.150991px;}
.ws36{word-spacing:13.151409px;}
.ws213{word-spacing:13.210052px;}
.ws10a{word-spacing:13.210291px;}
.ws15b{word-spacing:13.210470px;}
.ws109{word-spacing:13.211367px;}
.ws127{word-spacing:13.269890px;}
.ws1d9{word-spacing:13.269950px;}
.ws1ff{word-spacing:13.270847px;}
.ws205{word-spacing:13.329430px;}
.ws1d3{word-spacing:13.331163px;}
.ws34{word-spacing:13.389627px;}
.ws2f{word-spacing:13.390437px;}
.wsb2{word-spacing:13.391360px;}
.ws28a{word-spacing:13.482257px;}
.ws6f{word-spacing:13.509184px;}
.ws28b{word-spacing:13.509602px;}
.ws5b{word-spacing:13.510619px;}
.wsf3{word-spacing:13.510918px;}
.wsd9{word-spacing:13.555211px;}
.ws83{word-spacing:13.568723px;}
.ws86{word-spacing:13.569142px;}
.ws84{word-spacing:13.569979px;}
.wsdb{word-spacing:13.570517px;}
.wsda{word-spacing:13.574793px;}
.ws85{word-spacing:13.591504px;}
.ws212{word-spacing:13.688161px;}
.ws162{word-spacing:13.689297px;}
.ws82{word-spacing:13.748358px;}
.ws80{word-spacing:13.749255px;}
.wsfd{word-spacing:13.808316px;}
.ws1f2{word-spacing:13.867855px;}
.ws4b{word-spacing:13.868095px;}
.ws16d{word-spacing:13.868453px;}
.ws1e3{word-spacing:13.868812px;}
.ws182{word-spacing:13.927395px;}
.ws106{word-spacing:13.927515px;}
.ws15{word-spacing:13.927993px;}
.ws64{word-spacing:13.929129px;}
.ws107{word-spacing:13.965945px;}
.ws11f{word-spacing:13.987293px;}
.ws120{word-spacing:13.987472px;}
.ws1bb{word-spacing:13.987592px;}
.ws259{word-spacing:13.988309px;}
.ws81{word-spacing:13.988770px;}
.wsfe{word-spacing:13.989086px;}
.ws25a{word-spacing:13.989206px;}
.ws5e{word-spacing:14.047669px;}
.ws286{word-spacing:14.047968px;}
.ws153{word-spacing:14.103481px;}
.ws155{word-spacing:14.107448px;}
.ws154{word-spacing:14.108584px;}
.ws30{word-spacing:14.154458px;}
.ws3e{word-spacing:14.166330px;}
.ws1eb{word-spacing:14.166689px;}
.ws248{word-spacing:14.167227px;}
.ws54{word-spacing:14.167346px;}
.ws1bc{word-spacing:14.226706px;}
.ws271{word-spacing:14.227543px;}
.ws1c0{word-spacing:14.228141px;}
.wsab{word-spacing:14.286425px;}
.wsa3{word-spacing:14.345905px;}
.ws39{word-spacing:14.346503px;}
.wsa4{word-spacing:14.352376px;}
.ws4f{word-spacing:14.406102px;}
.ws261{word-spacing:14.406281px;}
.ws287{word-spacing:14.407596px;}
.wsee{word-spacing:14.465283px;}
.ws87{word-spacing:14.466179px;}
.ws72{word-spacing:14.466658px;}
.ws165{word-spacing:14.466897px;}
.wsef{word-spacing:14.467196px;}
.wsed{word-spacing:14.525300px;}
.wsec{word-spacing:14.542961px;}
.wsc6{word-spacing:14.585019px;}
.ws16f{word-spacing:14.585139px;}
.ws21a{word-spacing:14.585557px;}
.ws12a{word-spacing:14.585737px;}
.ws129{word-spacing:14.586215px;}
.wse2{word-spacing:14.644738px;}
.ws235{word-spacing:14.644917px;}
.wsc7{word-spacing:14.645515px;}
.wsea{word-spacing:14.705652px;}
.ws1e9{word-spacing:14.824014px;}
.wsb7{word-spacing:14.878191px;}
.wsf0{word-spacing:14.879586px;}
.wsdc{word-spacing:14.881744px;}
.wsb8{word-spacing:14.882202px;}
.wsbe{word-spacing:14.883077px;}
.ws198{word-spacing:14.883673px;}
.ws163{word-spacing:14.883793px;}
.wsb3{word-spacing:14.883852px;}
.ws1b{word-spacing:14.883912px;}
.ws44{word-spacing:14.883972px;}
.ws1fa{word-spacing:14.884032px;}
.wsaa{word-spacing:14.884151px;}
.ws90{word-spacing:14.884271px;}
.ws68{word-spacing:14.884390px;}
.wsc5{word-spacing:14.884450px;}
.ws254{word-spacing:14.884510px;}
.ws25b{word-spacing:14.884570px;}
.ws95{word-spacing:14.884689px;}
.wsde{word-spacing:14.884928px;}
.ws2b{word-spacing:14.884988px;}
.ws18e{word-spacing:14.885108px;}
.ws13d{word-spacing:14.885167px;}
.ws290{word-spacing:14.885227px;}
.ws51{word-spacing:14.885287px;}
.ws125{word-spacing:14.885466px;}
.ws74{word-spacing:14.885526px;}
.ws150{word-spacing:14.885586px;}
.ws100{word-spacing:14.885765px;}
.ws156{word-spacing:14.885825px;}
.wsff{word-spacing:14.885885px;}
.ws89{word-spacing:14.943452px;}
.ws192{word-spacing:14.943930px;}
.ws1a0{word-spacing:14.944468px;}
.ws1cf{word-spacing:15.003529px;}
.ws1f3{word-spacing:15.003649px;}
.wsc2{word-spacing:15.063128px;}
.ws1ec{word-spacing:15.063427px;}
.ws24{word-spacing:15.063607px;}
.wsc3{word-spacing:15.064025px;}
.wsc4{word-spacing:15.064623px;}
.ws112{word-spacing:15.123086px;}
.ws113{word-spacing:15.123206px;}
.ws272{word-spacing:15.182686px;}
.ws67{word-spacing:15.183224px;}
.ws8b{word-spacing:15.184240px;}
.ws88{word-spacing:15.242643px;}
.ws108{word-spacing:15.243301px;}
.ws18b{word-spacing:15.244377px;}
.wsb{word-spacing:15.362440px;}
.ws25{word-spacing:15.423055px;}
.ws56{word-spacing:15.541596px;}
.ws186{word-spacing:15.542612px;}
.ws146{word-spacing:15.543031px;}
.ws1b2{word-spacing:15.601674px;}
.ws27a{word-spacing:15.661572px;}
.ws48{word-spacing:15.720872px;}
.ws21c{word-spacing:15.721171px;}
.ws170{word-spacing:15.782444px;}
.ws167{word-spacing:15.840429px;}
.wsa{word-spacing:15.840668px;}
.ws1bf{word-spacing:15.900507px;}
.ws94{word-spacing:15.959807px;}
.ws26e{word-spacing:16.019885px;}
.ws218{word-spacing:16.020004px;}
.wse6{word-spacing:16.021439px;}
.ws1ab{word-spacing:16.021499px;}
.ws1a2{word-spacing:16.139263px;}
.ws11{word-spacing:16.139442px;}
.ws1cd{word-spacing:16.140159px;}
.ws96{word-spacing:16.199041px;}
.wse{word-spacing:16.199161px;}
.ws21{word-spacing:16.199460px;}
.ws114{word-spacing:16.378198px;}
.ws115{word-spacing:16.394653px;}
.ws1ef{word-spacing:16.498891px;}
.wsd1{word-spacing:16.557772px;}
.ws24e{word-spacing:16.557892px;}
.ws93{word-spacing:16.558550px;}
.wsdd{word-spacing:16.600813px;}
.wsbf{word-spacing:16.605536px;}
.wsfb{word-spacing:16.605715px;}
.wsf9{word-spacing:16.606014px;}
.ws99{word-spacing:16.617431px;}
.ws23e{word-spacing:16.617730px;}
.ws9b{word-spacing:16.618866px;}
.ws117{word-spacing:16.670291px;}
.ws181{word-spacing:16.677210px;}
.ws119{word-spacing:16.677509px;}
.ws20{word-spacing:16.737706px;}
.ws1d7{word-spacing:16.738543px;}
.ws196{word-spacing:16.797006px;}
.wse5{word-spacing:16.857562px;}
.ws204{word-spacing:16.857682px;}
.ws8c{word-spacing:16.916384px;}
.ws263{word-spacing:16.916862px;}
.ws1b9{word-spacing:16.918297px;}
.ws20d{word-spacing:16.976043px;}
.ws2a{word-spacing:16.976282px;}
.ws8a{word-spacing:16.977119px;}
.ws19a{word-spacing:17.035822px;}
.ws28d{word-spacing:17.036001px;}
.ws199{word-spacing:17.037974px;}
.ws22c{word-spacing:17.095720px;}
.ws8{word-spacing:17.096736px;}
.ws159{word-spacing:17.155499px;}
.ws17f{word-spacing:17.216114px;}
.ws1a9{word-spacing:17.216234px;}
.ws219{word-spacing:17.216592px;}
.ws29a{word-spacing:17.274876px;}
.ws1a6{word-spacing:17.275773px;}
.ws134{word-spacing:17.334775px;}
.ws6c{word-spacing:17.334834px;}
.ws1c1{word-spacing:17.336090px;}
.ws149{word-spacing:17.394732px;}
.wsa0{word-spacing:17.395151px;}
.ws142{word-spacing:17.395270px;}
.wsa1{word-spacing:17.432739px;}
.ws1f9{word-spacing:17.454332px;}
.ws1ae{word-spacing:17.454451px;}
.ws269{word-spacing:17.454929px;}
.wsa2{word-spacing:17.455049px;}
.ws207{word-spacing:17.515127px;}
.ws200{word-spacing:17.574008px;}
.ws227{word-spacing:17.633787px;}
.ws12f{word-spacing:17.634205px;}
.wsa8{word-spacing:17.694462px;}
.ws1ad{word-spacing:17.695000px;}
.wsb0{word-spacing:17.695299px;}
.ws2e{word-spacing:17.739178px;}
.ws16c{word-spacing:17.754480px;}
.ws257{word-spacing:17.755078px;}
.ws1f4{word-spacing:17.813063px;}
.ws185{word-spacing:17.813481px;}
.ws141{word-spacing:17.814019px;}
.wsfc{word-spacing:17.814259px;}
.ws195{word-spacing:17.814557px;}
.ws3{word-spacing:17.861029px;}
.ws2{word-spacing:17.861173px;}
.ws4{word-spacing:17.861747px;}
.ws5{word-spacing:17.862392px;}
.ws144{word-spacing:17.872842px;}
.ws26d{word-spacing:17.874934px;}
.ws7a{word-spacing:17.932620px;}
.ws18c{word-spacing:17.932919px;}
.ws43{word-spacing:17.933517px;}
.ws1fe{word-spacing:17.933816px;}
.ws7c{word-spacing:17.934234px;}
.ws25c{word-spacing:17.992399px;}
.ws3f{word-spacing:17.993714px;}
.ws40{word-spacing:17.994132px;}
.ws1af{word-spacing:18.052177px;}
.ws121{word-spacing:18.052596px;}
.ws232{word-spacing:18.053313px;}
.ws169{word-spacing:18.111836px;}
.ws285{word-spacing:18.111956px;}
.ws1d2{word-spacing:18.112494px;}
.ws122{word-spacing:18.171675px;}
.ws1da{word-spacing:18.172273px;}
.ws171{word-spacing:18.172870px;}
.ws210{word-spacing:18.173169px;}
.ws160{word-spacing:18.231633px;}
.ws4a{word-spacing:18.231752px;}
.ws1f8{word-spacing:18.291232px;}
.ws1fb{word-spacing:18.291411px;}
.ws28{word-spacing:18.291531px;}
.ws2a4{word-spacing:18.291770px;}
.ws1fc{word-spacing:18.292428px;}
.ws23a{word-spacing:18.351130px;}
.ws20e{word-spacing:18.410789px;}
.ws35{word-spacing:18.411387px;}
.ws104{word-spacing:18.470807px;}
.ws32{word-spacing:18.506589px;}
.ws15a{word-spacing:18.531363px;}
.ws1ac{word-spacing:18.532080px;}
.ws14f{word-spacing:18.590065px;}
.ws14e{word-spacing:18.590097px;}
.ws9{word-spacing:18.590304px;}
.ws270{word-spacing:18.590364px;}
.ws1c8{word-spacing:18.590424px;}
.ws1f0{word-spacing:18.590663px;}
.ws189{word-spacing:18.591141px;}
.ws229{word-spacing:18.649724px;}
.ws26f{word-spacing:18.651338px;}
.ws187{word-spacing:18.651637px;}
.ws214{word-spacing:18.711057px;}
.ws7b{word-spacing:18.728407px;}
.ws8f{word-spacing:18.770058px;}
.ws28e{word-spacing:18.830495px;}
.ws28f{word-spacing:18.889675px;}
.ws53{word-spacing:18.890512px;}
.ws299{word-spacing:18.948976px;}
.ws252{word-spacing:19.009173px;}
.ws41{word-spacing:19.009352px;}
.ws16b{word-spacing:19.009591px;}
.ws1fd{word-spacing:19.010368px;}
.ws179{word-spacing:19.068473px;}
.ws178{word-spacing:19.069609px;}
.ws17d{word-spacing:19.069968px;}
.ws17b{word-spacing:19.070446px;}
.ws23c{word-spacing:19.128312px;}
.ws197{word-spacing:19.129029px;}
.ws23b{word-spacing:19.129268px;}
.ws4d{word-spacing:19.187791px;}
.ws76{word-spacing:19.188329px;}
.ws289{word-spacing:19.188748px;}
.wse9{word-spacing:19.247510px;}
.ws236{word-spacing:19.247689px;}
.ws237{word-spacing:19.247928px;}
.ws1b8{word-spacing:19.248407px;}
.ws152{word-spacing:19.367247px;}
.ws298{word-spacing:19.367306px;}
.ws78{word-spacing:19.367486px;}
.ws260{word-spacing:19.367665px;}
.ws79{word-spacing:19.368083px;}
.ws77{word-spacing:19.368263px;}
.ws1d8{word-spacing:19.427802px;}
.ws21b{word-spacing:19.486624px;}
.ws1b0{word-spacing:19.487461px;}
.ws222{word-spacing:19.487820px;}
.ws267{word-spacing:19.546642px;}
.ws188{word-spacing:19.562449px;}
.wsd6{word-spacing:19.607198px;}
.wsd4{word-spacing:19.607377px;}
.wsd2{word-spacing:19.646739px;}
.ws11b{word-spacing:19.665900px;}
.ws22{word-spacing:19.666379px;}
.ws11a{word-spacing:19.666618px;}
.ws1e7{word-spacing:19.666797px;}
.ws255{word-spacing:19.666917px;}
.ws256{word-spacing:19.667395px;}
.ws15d{word-spacing:19.667813px;}
.ws158{word-spacing:19.668232px;}
.ws116{word-spacing:19.669131px;}
.ws57{word-spacing:19.726277px;}
.ws17{word-spacing:19.726396px;}
.ws1ce{word-spacing:19.786713px;}
.wsf5{word-spacing:19.846372px;}
.ws118{word-spacing:19.894015px;}
.ws1d4{word-spacing:19.965212px;}
.ws5d{word-spacing:20.024691px;}
.ws16a{word-spacing:20.024751px;}
.ws47{word-spacing:20.026604px;}
.ws2a7{word-spacing:20.026843px;}
.ws69{word-spacing:20.027023px;}
.ws91{word-spacing:20.085486px;}
.ws16e{word-spacing:20.086801px;}
.ws17c{word-spacing:20.115355px;}
.ws17a{word-spacing:20.121614px;}
.ws297{word-spacing:20.144189px;}
.ws62{word-spacing:20.144607px;}
.ws63{word-spacing:20.144667px;}
.ws124{word-spacing:20.146281px;}
.ws226{word-spacing:20.146401px;}
.ws9c{word-spacing:20.185800px;}
.ws9f{word-spacing:20.204685px;}
.wseb{word-spacing:20.204864px;}
.ws1e8{word-spacing:20.204984px;}
.ws278{word-spacing:20.205283px;}
.ws37{word-spacing:20.205581px;}
.ws279{word-spacing:20.205880px;}
.wsf2{word-spacing:20.323644px;}
.ws1df{word-spacing:20.323824px;}
.ws225{word-spacing:20.384618px;}
.ws10{word-spacing:20.385037px;}
.ws1f{word-spacing:20.443321px;}
.ws135{word-spacing:20.503877px;}
.ws16{word-spacing:20.563297px;}
.ws1dd{word-spacing:20.563476px;}
.ws130{word-spacing:20.622716px;}
.ws2a2{word-spacing:20.622896px;}
.ws58{word-spacing:20.623254px;}
.ws251{word-spacing:20.624091px;}
.ws250{word-spacing:20.675728px;}
.ws1ea{word-spacing:20.682734px;}
.ws201{word-spacing:20.682854px;}
.wsd5{word-spacing:20.683033px;}
.ws147{word-spacing:20.786048px;}
.ws148{word-spacing:20.790551px;}
.ws143{word-spacing:20.802411px;}
.ws1b3{word-spacing:20.861592px;}
.ws22d{word-spacing:20.861771px;}
.ws1b4{word-spacing:20.861891px;}
.ws6d{word-spacing:20.862369px;}
.ws221{word-spacing:20.863505px;}
.ws23d{word-spacing:20.921430px;}
.ws265{word-spacing:20.921908px;}
.ws264{word-spacing:20.938094px;}
.ws6e{word-spacing:20.981388px;}
.ws268{word-spacing:20.981567px;}
.wse8{word-spacing:20.982046px;}
.ws133{word-spacing:20.982165px;}
.ws1c7{word-spacing:21.041346px;}
.ws4c{word-spacing:21.100945px;}
.ws26b{word-spacing:21.102679px;}
.ws1c9{word-spacing:21.161142px;}
.wsb5{word-spacing:21.220502px;}
.wsb6{word-spacing:21.221100px;}
.ws2a1{word-spacing:21.222415px;}
.ws1b6{word-spacing:21.276105px;}
.ws15f{word-spacing:21.279982px;}
.wse7{word-spacing:21.280281px;}
.ws1b5{word-spacing:21.280819px;}
.ws233{word-spacing:21.322560px;}
.ws1bd{word-spacing:21.339701px;}
.ws234{word-spacing:21.340777px;}
.ws203{word-spacing:21.341793px;}
.ws12e{word-spacing:21.399599px;}
.ws29e{word-spacing:21.399958px;}
.ws1c5{word-spacing:21.400077px;}
.ws1c6{word-spacing:21.400675px;}
.ws29f{word-spacing:21.401392px;}
.ws0{word-spacing:21.433261px;}
.ws1{word-spacing:21.434467px;}
.ws211{word-spacing:21.459437px;}
.ws45{word-spacing:21.459557px;}
.ws123{word-spacing:21.459975px;}
.ws247{word-spacing:21.460812px;}
.ws19f{word-spacing:21.461051px;}
.wse4{word-spacing:21.461470px;}
.ws224{word-spacing:21.519634px;}
.ws31{word-spacing:21.521015px;}
.ws9e{word-spacing:21.539749px;}
.ws176{word-spacing:21.577765px;}
.ws73{word-spacing:21.579114px;}
.ws75{word-spacing:21.579234px;}
.ws15c{word-spacing:21.579293px;}
.ws180{word-spacing:21.579473px;}
.ws173{word-spacing:21.579831px;}
.ws174{word-spacing:21.580115px;}
.ws177{word-spacing:21.580549px;}
.ws1f5{word-spacing:21.580848px;}
.ws1de{word-spacing:21.639132px;}
.ws3b{word-spacing:21.695641px;}
.ws3d{word-spacing:21.698611px;}
.ws3c{word-spacing:21.699209px;}
.ws6a{word-spacing:21.700524px;}
.wsd0{word-spacing:21.818169px;}
.ws42{word-spacing:21.819663px;}
.ws273{word-spacing:21.819902px;}
.wscf{word-spacing:21.850862px;}
.wse1{word-spacing:21.878067px;}
.wsa9{word-spacing:21.878246px;}
.ws19e{word-spacing:21.878366px;}
.ws29{word-spacing:21.997923px;}
.ws50{word-spacing:22.057821px;}
.ws172{word-spacing:22.058299px;}
.ws206{word-spacing:22.058419px;}
.ws7{word-spacing:22.117181px;}
.ws22a{word-spacing:22.117301px;}
.ws190{word-spacing:22.177378px;}
.ws1d6{word-spacing:22.177677px;}
.ws1e5{word-spacing:22.177737px;}
.ws105{word-spacing:22.178275px;}
.ws55{word-spacing:22.178514px;}
.ws26a{word-spacing:22.236679px;}
.ws1a1{word-spacing:22.236858px;}
.ws49{word-spacing:22.298071px;}
.ws1e6{word-spacing:22.298310px;}
.wsd{word-spacing:22.356176px;}
.ws12c{word-spacing:22.356236px;}
.ws239{word-spacing:22.416971px;}
.ws238{word-spacing:22.470890px;}
.ws1e4{word-spacing:22.475793px;}
.ws1a4{word-spacing:22.476092px;}
.ws1d{word-spacing:22.477586px;}
.ws1ba{word-spacing:22.536707px;}
.ws220{word-spacing:22.595171px;}
.ws27{word-spacing:22.595589px;}
.ws97{word-spacing:22.595769px;}
.ws66{word-spacing:22.775224px;}
.ws22b{word-spacing:22.775583px;}
.ws5c{word-spacing:22.835122px;}
.wse0{word-spacing:22.835182px;}
.ws15e{word-spacing:22.890851px;}
.ws1be{word-spacing:22.894303px;}
.ws1f1{word-spacing:22.955695px;}
.ws166{word-spacing:23.014278px;}
.ws20b{word-spacing:23.074057px;}
.wsbd{word-spacing:23.133955px;}
.ws281{word-spacing:23.134852px;}
.wsbb{word-spacing:23.151591px;}
.wsa7{word-spacing:23.193136px;}
.wsa6{word-spacing:23.193315px;}
.ws3a{word-spacing:23.252915px;}
.ws98{word-spacing:23.253213px;}
.ws231{word-spacing:23.253871px;}
.ws175{word-spacing:23.260371px;}
.ws18d{word-spacing:23.313171px;}
.ws1a3{word-spacing:23.313829px;}
.ws1dc{word-spacing:23.373428px;}
.ws1e2{word-spacing:23.373906px;}
.ws275{word-spacing:23.432191px;}
.ws1e1{word-spacing:23.432310px;}
.ws14a{word-spacing:23.432489px;}
.ws111{word-spacing:23.552346px;}
.ws10e{word-spacing:23.568236px;}
.ws126{word-spacing:23.612722px;}
.wsf{word-spacing:23.730904px;}
.ws10b{word-spacing:23.731920px;}
.ws1a7{word-spacing:23.732518px;}
.ws19d{word-spacing:23.790802px;}
.ws19b{word-spacing:23.791281px;}
.ws244{word-spacing:23.791579px;}
.ws245{word-spacing:23.792416px;}
.ws8e{word-spacing:23.851059px;}
.ws24b{word-spacing:23.851478px;}
.ws24a{word-spacing:23.900911px;}
.ws140{word-spacing:23.910359px;}
.ws18{word-spacing:23.912213px;}
.ws1cc{word-spacing:23.970198px;}
.ws249{word-spacing:23.970258px;}
.ws1db{word-spacing:23.971035px;}
.ws131{word-spacing:23.971513px;}
.ws274{word-spacing:23.971872px;}
.ws216{word-spacing:24.091010px;}
.ws291{word-spacing:24.209372px;}
.ws46{word-spacing:24.269569px;}
.ws5a{word-spacing:24.328869px;}
.ws24f{word-spacing:24.329348px;}
.ws132{word-spacing:24.388528px;}
.ws1a5{word-spacing:24.410240px;}
.ws65{word-spacing:24.448845px;}
.ws1c3{word-spacing:24.449144px;}
.ws1c2{word-spacing:24.450041px;}
.ws21f{word-spacing:24.510118px;}
.ws215{word-spacing:24.568402px;}
.ws193{word-spacing:24.628181px;}
.ws168{word-spacing:24.747320px;}
.ws8d{word-spacing:24.749412px;}
.ws184{word-spacing:24.807158px;}
.ws277{word-spacing:24.867235px;}
.ws157{word-spacing:24.927074px;}
.ws1cb{word-spacing:24.986613px;}
.wscc{word-spacing:25.107964px;}
.wscb{word-spacing:25.114463px;}
.ws1aa{word-spacing:25.166965px;}
.ws194{word-spacing:25.225548px;}
.ws1f6{word-spacing:25.226206px;}
.ws7d{word-spacing:25.406139px;}
.ws6b{word-spacing:25.406618px;}
.ws7f{word-spacing:25.464483px;}
.ws7e{word-spacing:25.465440px;}
.ws38{word-spacing:25.465798px;}
.ws202{word-spacing:25.466097px;}
.ws23{word-spacing:25.764811px;}
.ws102{word-spacing:25.943071px;}
.ws208{word-spacing:25.943908px;}
.ws20a{word-spacing:26.002550px;}
.ws19c{word-spacing:26.012921px;}
.ws29c{word-spacing:26.122705px;}
.ws28c{word-spacing:26.122825px;}
.ws29b{word-spacing:26.123243px;}
.ws101{word-spacing:26.182305px;}
.ws19{word-spacing:26.242681px;}
.wsac{word-spacing:26.243099px;}
.ws283{word-spacing:26.362059px;}
.ws284{word-spacing:26.422973px;}
.ws282{word-spacing:26.480719px;}
.ws1f7{word-spacing:26.480958px;}
.wsfa{word-spacing:26.529917px;}
.ws52{word-spacing:26.542829px;}
.ws10d{word-spacing:26.578476px;}
.wsd8{word-spacing:26.601293px;}
.wsd7{word-spacing:26.642723px;}
.ws288{word-spacing:26.660175px;}
.ws1e0{word-spacing:26.660892px;}
.ws13e{word-spacing:26.720671px;}
.ws103{word-spacing:26.721268px;}
.ws228{word-spacing:27.019205px;}
.ws12d{word-spacing:27.020699px;}
.ws1e{word-spacing:27.198839px;}
.ws12b{word-spacing:27.317679px;}
.ws1c4{word-spacing:27.557690px;}
.ws25e{word-spacing:27.677128px;}
.ws25f{word-spacing:27.737923px;}
.ws1b7{word-spacing:27.916063px;}
.ws1a8{word-spacing:28.156253px;}
.ws1d1{word-spacing:28.224326px;}
.ws20f{word-spacing:28.323449px;}
.ws5f{word-spacing:28.633526px;}
.ws209{word-spacing:28.750857px;}
.ws230{word-spacing:28.873118px;}
.ws26c{word-spacing:29.589565px;}
.ws151{word-spacing:29.826216px;}
.ws145{word-spacing:29.828616px;}
.wsf1{word-spacing:29.828619px;}
.ws2a0{word-spacing:29.828978px;}
.ws241{word-spacing:29.829277px;}
.ws20c{word-spacing:30.248504px;}
.ws13f{word-spacing:30.306788px;}
.ws292{word-spacing:31.025267px;}
.ws293{word-spacing:31.025327px;}
.ws2a3{word-spacing:31.742550px;}
.ws1d5{word-spacing:31.802448px;}
.wsbc{word-spacing:31.908675px;}
.wsae{word-spacing:32.339619px;}
.wsad{word-spacing:32.342472px;}
.wscd{word-spacing:32.366117px;}
.ws294{word-spacing:32.579032px;}
.wsdf{word-spacing:32.579570px;}
.ws10c{word-spacing:32.686813px;}
.ws10f{word-spacing:32.686992px;}
.ws24c{word-spacing:33.176280px;}
.ws262{word-spacing:33.356453px;}
.ws164{word-spacing:35.807674px;}
.ws1c{word-spacing:35.807972px;}
.ws246{word-spacing:35.985634px;}
.ws243{word-spacing:38.377137px;}
.ws11d{word-spacing:40.397990px;}
.ws11e{word-spacing:42.718235px;}
.ws242{word-spacing:45.490550px;}
.ws22f{word-spacing:77.651191px;}
.ws22e{word-spacing:88.591271px;}
._1{margin-left:-8.607565px;}
._27{margin-left:-7.288408px;}
._17{margin-left:-6.040240px;}
._2{margin-left:-4.306460px;}
._0{margin-left:-3.011475px;}
._3{margin-left:-1.792982px;}
._21{width:1.002248px;}
._1d{width:2.093731px;}
._20{width:3.413771px;}
._1f{width:6.423705px;}
._1a{width:8.011108px;}
._19{width:10.042863px;}
._22{width:13.932594px;}
._c{width:15.062650px;}
._18{width:16.078814px;}
._8{width:17.873961px;}
._1c{width:19.244212px;}
._e{width:20.686074px;}
._5{width:22.061537px;}
._15{width:23.132628px;}
._6{width:24.396553px;}
._7{width:26.004822px;}
._11{width:27.257267px;}
._4{width:28.877017px;}
._16{width:30.009734px;}
._13{width:31.626436px;}
._23{width:32.642736px;}
._10{width:34.626524px;}
._9{width:36.229091px;}
._26{width:38.139756px;}
._14{width:39.452972px;}
._f{width:41.010246px;}
._12{width:42.986108px;}
._a{width:46.230422px;}
._28{width:47.763152px;}
._1b{width:49.195453px;}
._d{width:51.171070px;}
._1e{width:52.544244px;}
._2d{width:53.982935px;}
._b{width:55.117853px;}
._29{width:57.571443px;}
._24{width:63.573477px;}
._2e{width:65.577710px;}
._2c{width:67.364791px;}
._2f{width:73.121978px;}
._31{width:80.641316px;}
._2b{width:93.619664px;}
._30{width:97.021247px;}
._2a{width:107.302265px;}
._25{width:173.564079px;}
.fc3{color:rgb(255,145,77);}
.fc2{color:rgb(255,102,196);}
.fc1{color:rgb(126,217,87);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.889294px;}
.fsa{font-size:32.111746px;}
.fs5{font-size:35.867393px;}
.fs10{font-size:36.566368px;}
.fsf{font-size:40.874944px;}
.fsb{font-size:41.284044px;}
.fsd{font-size:41.736587px;}
.fs4{font-size:41.844892px;}
.fs3{font-size:47.822991px;}
.fse{font-size:54.918346px;}
.fs9{font-size:55.068353px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:59.778589px;}
.fs8{font-size:60.003000px;}
.fsc{font-size:68.818041px;}
.fs1{font-size:71.734787px;}
.fs0{font-size:86.081504px;}
.y0{bottom:0.000000px;}
.yce{bottom:6.453323px;}
.yc3{bottom:7.743927px;}
.ycb{bottom:8.175154px;}
.yc0{bottom:8.603710px;}
.yb5{bottom:9.034952px;}
.yb7{bottom:10.325016px;}
.y15d{bottom:10.763488px;}
.yb9{bottom:12.045602px;}
.yc9{bottom:13.337167px;}
.y133{bottom:13.683684px;}
.ybd{bottom:15.057753px;}
.ybb{bottom:15.488274px;}
.ybf{bottom:18.498925px;}
.yc2{bottom:18.929446px;}
.yca{bottom:22.802640px;}
.yc5{bottom:26.672834px;}
.y12d{bottom:28.111015px;}
.yc7{bottom:36.549327px;}
.y12c{bottom:42.528731px;}
.y65{bottom:52.839000px;}
.y137{bottom:55.866093px;}
.y156{bottom:74.865593px;}
.yd0{bottom:85.421771px;}
.y17a{bottom:88.474713px;}
.yfc{bottom:88.475013px;}
.y8c{bottom:88.475163px;}
.yb0{bottom:88.475951px;}
.y151{bottom:88.476063px;}
.y1e5{bottom:88.476363px;}
.y126{bottom:88.476507px;}
.y21e{bottom:88.476513px;}
.y288{bottom:88.479663px;}
.y37{bottom:91.549222px;}
.y64{bottom:92.695474px;}
.y155{bottom:94.419821px;}
.yfa{bottom:102.542356px;}
.yfb{bottom:102.713455px;}
.y161{bottom:104.958448px;}
.y36{bottom:106.344881px;}
.y179{bottom:106.708275px;}
.yf9{bottom:106.708575px;}
.y8b{bottom:106.708725px;}
.yaf{bottom:106.709512px;}
.y150{bottom:106.709625px;}
.y1e4{bottom:106.709925px;}
.y125{bottom:106.710069px;}
.y21d{bottom:106.710075px;}
.y287{bottom:106.711425px;}
.y254{bottom:113.746327px;}
.y63{bottom:115.958622px;}
.y35{bottom:121.139956px;}
.y178{bottom:124.940036px;}
.yf8{bottom:124.940336px;}
.y8a{bottom:124.940486px;}
.y14f{bottom:124.941386px;}
.y21c{bottom:124.941836px;}
.y2ba{bottom:124.943186px;}
.y286{bottom:124.944386px;}
.y1e3{bottom:125.000339px;}
.y253{bottom:131.978088px;}
.y12b{bottom:132.098960px;}
.y15b{bottom:132.125556px;}
.y1ac{bottom:133.978438px;}
.y62{bottom:134.190384px;}
.y34{bottom:135.935031px;}
.y124{bottom:136.977082px;}
.yad{bottom:137.724725px;}
.y89{bottom:143.174048px;}
.y14e{bottom:143.174948px;}
.y2b9{bottom:143.176748px;}
.y285{bottom:143.177348px;}
.y1e2{bottom:143.233901px;}
.yac{bottom:145.331756px;}
.yb3{bottom:145.846292px;}
.y21b{bottom:146.644921px;}
.y252{bottom:150.211650px;}
.y33{bottom:150.730691px;}
.y123{bottom:151.043210px;}
.y122{bottom:151.216064px;}
.y136{bottom:151.345267px;}
.y61{bottom:152.423945px;}
.y177{bottom:154.269503px;}
.yf6{bottom:154.727400px;}
.yf7{bottom:155.198514px;}
.y121{bottom:155.208829px;}
.yae{bottom:155.583306px;}
.yab{bottom:155.583418px;}
.yf5{bottom:158.893034px;}
.y88{bottom:161.405809px;}
.y14d{bottom:161.406709px;}
.y284{bottom:161.409710px;}
.y1e1{bottom:161.465662px;}
.y21a{bottom:164.876683px;}
.y32{bottom:165.525765px;}
.y251{bottom:168.443411px;}
.y60{bottom:170.655707px;}
.y120{bottom:171.208719px;}
.y176{bottom:172.501264px;}
.y2b8{bottom:172.931036px;}
.y11f{bottom:175.374937px;}
.y1ab{bottom:175.953537px;}
.y87{bottom:179.639371px;}
.y14c{bottom:179.640271px;}
.y283{bottom:179.643271px;}
.y1e0{bottom:179.699224px;}
.y219{bottom:183.110245px;}
.y250{bottom:186.676973px;}
.y5f{bottom:188.887468px;}
.y175{bottom:190.734826px;}
.y2b7{bottom:191.164597px;}
.yf4{bottom:192.845731px;}
.y11e{bottom:193.607898px;}
.y159{bottom:193.785089px;}
.y1aa{bottom:194.185298px;}
.yaa{bottom:195.376958px;}
.y86{bottom:197.871733px;}
.y14b{bottom:197.872033px;}
.y1df{bottom:197.930986px;}
.y218{bottom:201.342006px;}
.y131{bottom:204.209710px;}
.y24f{bottom:204.908734px;}
.y5e{bottom:207.121030px;}
.y282{bottom:208.935236px;}
.y2b6{bottom:209.396359px;}
.y31{bottom:210.835081px;}
.yf3{bottom:211.077493px;}
.y12f{bottom:211.408180px;}
.y1a9{bottom:212.418860px;}
.ya9{bottom:213.610519px;}
.y154{bottom:214.367768px;}
.y14a{bottom:216.103794px;}
.y85{bottom:216.104094px;}
.y1de{bottom:216.162747px;}
.y217{bottom:219.575568px;}
.y174{bottom:220.064292px;}
.y24e{bottom:223.142296px;}
.y11d{bottom:223.874912px;}
.y5d{bottom:225.352792px;}
.y281{bottom:227.168197px;}
.y2b5{bottom:227.629920px;}
.y160{bottom:227.976898px;}
.y30{bottom:229.066842px;}
.yf2{bottom:229.311054px;}
.y1a8{bottom:230.650621px;}
.ya8{bottom:232.031590px;}
.y84{bottom:234.337656px;}
.y216{bottom:237.807329px;}
.y173{bottom:238.296654px;}
.y24d{bottom:241.374658px;}
.y11c{bottom:242.107273px;}
.y1dd{bottom:243.472963px;}
.y149{bottom:245.073393px;}
.y280{bottom:245.399959px;}
.y2f{bottom:247.300404px;}
.yf1{bottom:247.542816px;}
.y1a7{bottom:248.884183px;}
.ya7{bottom:250.265152px;}
.y15a{bottom:252.858192px;}
.y5c{bottom:253.186833px;}
.y215{bottom:256.039091px;}
.y11a{bottom:256.174617px;}
.y11b{bottom:256.345715px;}
.y172{bottom:256.528415px;}
.y2b4{bottom:257.383608px;}
.y24c{bottom:259.607019px;}
.y119{bottom:260.340835px;}
.ycf{bottom:260.848042px;}
.y132{bottom:262.267113px;}
.y83{bottom:262.656222px;}
.y27f{bottom:263.632920px;}
.y2e{bottom:265.532165px;}
.yf0{bottom:265.775778px;}
.y1a6{bottom:267.115945px;}
.y214{bottom:274.272652px;}
.y2b3{bottom:275.617170px;}
.y12a{bottom:276.695089px;}
.y118{bottom:278.572596px;}
.y1dc{bottom:278.840681px;}
.y27e{bottom:281.864682px;}
.y2d{bottom:283.763927px;}
.ya6{bottom:283.819880px;}
.yef{bottom:284.008739px;}
.y148{bottom:285.239701px;}
.y1a5{bottom:285.349506px;}
.y171{bottom:285.857882px;}
.y24b{bottom:286.806379px;}
.y129{bottom:291.112805px;}
.y213{bottom:292.505014px;}
.y2b2{bottom:293.848931px;}
.y5b{bottom:296.790983px;}
.y117{bottom:296.804358px;}
.y1db{bottom:297.073642px;}
.y27d{bottom:300.098244px;}
.y2c{bottom:301.997489px;}
.yee{bottom:302.241101px;}
.y147{bottom:303.471462px;}
.y1a4{bottom:303.581268px;}
.y170{bottom:304.091443px;}
.y135{bottom:304.412920px;}
.y82{bottom:307.668972px;}
.y212{bottom:310.737376px;}
.y2b1{bottom:312.082493px;}
.y5a{bottom:315.024545px;}
.y1da{bottom:315.305404px;}
.y158{bottom:316.694034px;}
.ya5{bottom:317.375207px;}
.y2b{bottom:320.229250px;}
.yed{bottom:320.861382px;}
.y146{bottom:321.705024px;}
.y1a3{bottom:321.814229px;}
.y16f{bottom:322.323205px;}
.y81{bottom:325.902534px;}
.y24a{bottom:328.577018px;}
.y211{bottom:328.969737px;}
.y27c{bottom:329.390208px;}
.y116{bottom:330.060871px;}
.y59{bottom:333.256907px;}
.y1d9{bottom:333.537166px;}
.ya4{bottom:335.608769px;}
.y2a{bottom:338.462812px;}
.y153{bottom:338.708235px;}
.yec{bottom:339.093143px;}
.y145{bottom:339.936785px;}
.y1a2{bottom:340.047191px;}
.y2b0{bottom:341.836780px;}
.y80{bottom:344.134295px;}
.y249{bottom:346.809379px;}
.y210{bottom:347.202099px;}
.y27b{bottom:347.623170px;}
.y115{bottom:348.294432px;}
.y16e{bottom:350.792978px;}
.y58{bottom:351.489268px;}
.y1d8{bottom:351.770727px;}
.y15f{bottom:352.854692px;}
.ya3{bottom:353.840531px;}
.y29{bottom:356.694573px;}
.yeb{bottom:357.326705px;}
.y144{bottom:358.170347px;}
.y1a1{bottom:358.280153px;}
.y2af{bottom:360.070342px;}
.y7f{bottom:362.367857px;}
.y248{bottom:365.041741px;}
.y20f{bottom:365.434460px;}
.y27a{bottom:365.854931px;}
.y114{bottom:366.526194px;}
.y16d{bottom:369.026540px;}
.y57{bottom:369.721630px;}
.y1d7{bottom:370.002489px;}
.ya2{bottom:372.074092px;}
.y15c{bottom:374.626180px;}
.y28{bottom:374.928135px;}
.yea{bottom:375.558466px;}
.y143{bottom:376.402109px;}
.y1a0{bottom:376.513114px;}
.y2ae{bottom:378.302104px;}
.y7e{bottom:380.599619px;}
.y128{bottom:380.683033px;}
.y247{bottom:383.274102px;}
.y20e{bottom:383.666222px;}
.y279{bottom:384.088493px;}
.y113{bottom:384.758555px;}
.y16c{bottom:387.258301px;}
.y56{bottom:387.953991px;}
.y1d6{bottom:388.236050px;}
.ya1{bottom:390.305854px;}
.y27{bottom:393.159897px;}
.ye9{bottom:393.792028px;}
.y142{bottom:394.633870px;}
.y19f{bottom:394.744876px;}
.y7d{bottom:398.833180px;}
.y134{bottom:399.928995px;}
.y246{bottom:401.507664px;}
.y20d{bottom:401.899783px;}
.y278{bottom:402.320255px;}
.y112{bottom:402.990917px;}
.y16b{bottom:405.491263px;}
.y55{bottom:406.186353px;}
.y1d5{bottom:406.467812px;}
.y2ad{bottom:408.057441px;}
.ya0{bottom:408.537615px;}
.y26{bottom:411.391658px;}
.ye8{bottom:412.023790px;}
.y141{bottom:412.867432px;}
.y19e{bottom:412.976637px;}
.y7c{bottom:417.064942px;}
.y2d8{bottom:417.571817px;}
.y245{bottom:419.740025px;}
.y277{bottom:420.552016px;}
.y111{bottom:421.223279px;}
.y20c{bottom:423.601068px;}
.y16a{bottom:423.724225px;}
.y54{bottom:424.418714px;}
.y1d4{bottom:424.701374px;}
.y2ac{bottom:426.289203px;}
.y9f{bottom:426.960486px;}
.y25{bottom:429.625220px;}
.ye7{bottom:430.255551px;}
.y140{bottom:431.099193px;}
.y19d{bottom:431.210199px;}
.y7b{bottom:435.296703px;}
.y2d7{bottom:435.805379px;}
.y157{bottom:437.666232px;}
.y244{bottom:437.971787px;}
.y276{bottom:438.785578px;}
.y110{bottom:439.455640px;}
.y20b{bottom:441.834630px;}
.y169{bottom:441.957186px;}
.y53{bottom:442.650476px;}
.y1d3{bottom:442.933135px;}
.y2ab{bottom:444.520964px;}
.y9e{bottom:445.192248px;}
.y24{bottom:447.856981px;}
.ye6{bottom:448.489113px;}
.y13f{bottom:449.332755px;}
.y19c{bottom:449.441960px;}
.y130{bottom:452.794639px;}
.y7a{bottom:453.530265px;}
.y243{bottom:456.205349px;}
.y10f{bottom:457.688002px;}
.y12e{bottom:459.991608px;}
.y20a{bottom:460.066392px;}
.y168{bottom:460.190148px;}
.y152{bottom:461.174058px;}
.y52{bottom:461.216904px;}
.y1d2{bottom:461.223550px;}
.y2aa{bottom:462.754526px;}
.y9d{bottom:463.425810px;}
.y2d6{bottom:465.992588px;}
.y23{bottom:466.090543px;}
.y19b{bottom:467.675522px;}
.y275{bottom:468.078592px;}
.y79{bottom:471.762026px;}
.y242{bottom:474.437110px;}
.y15e{bottom:474.622680px;}
.ye5{bottom:476.425010px;}
.y209{bottom:478.299953px;}
.y13e{bottom:478.300553px;}
.y167{bottom:478.421909px;}
.y51{bottom:479.450466px;}
.y1d1{bottom:479.457111px;}
.y9c{bottom:481.657571px;}
.y2d5{bottom:484.226150px;}
.y10e{bottom:484.924864px;}
.y19a{bottom:485.907284px;}
.y274{bottom:486.310354px;}
.y78{bottom:490.584968px;}
.y2a9{bottom:492.508814px;}
.y241{bottom:492.670672px;}
.y22{bottom:493.741725px;}
.ye4{bottom:494.656771px;}
.y208{bottom:496.531715px;}
.y166{bottom:496.653671px;}
.y50{bottom:497.682227px;}
.y1d0{bottom:497.688873px;}
.y9b{bottom:499.891133px;}
.y273{bottom:504.543315px;}
.y77{bottom:508.817329px;}
.y2a8{bottom:510.742375px;}
.y240{bottom:510.902433px;}
.y13d{bottom:511.741725px;}
.y199{bottom:513.176997px;}
.y2d4{bottom:514.413359px;}
.y207{bottom:514.765276px;}
.y4f{bottom:515.915789px;}
.y1cf{bottom:515.922434px;}
.y9a{bottom:518.122894px;}
.y10d{bottom:520.078821px;}
.y272{bottom:522.775077px;}
.y165{bottom:523.853031px;}
.y76{bottom:527.049691px;}
.y2a7{bottom:528.974137px;}
.y23f{bottom:529.135995px;}
.y13c{bottom:529.974687px;}
.ye3{bottom:531.833430px;}
.y2d3{bottom:532.646921px;}
.y206{bottom:532.997038px;}
.y4e{bottom:534.147551px;}
.y1ce{bottom:534.154196px;}
.y10c{bottom:534.616063px;}
.y99{bottom:536.356456px;}
.y21{bottom:536.817879px;}
.y10b{bottom:538.310583px;}
.y271{bottom:541.006838px;}
.y75{bottom:545.282052px;}
.ye1{bottom:546.357231px;}
.ye2{bottom:546.371872px;}
.y2a6{bottom:547.207699px;}
.y23e{bottom:547.367757px;}
.y13b{bottom:548.206448px;}
.y198{bottom:548.427560px;}
.ye0{bottom:550.066991px;}
.y2d2{bottom:550.879282px;}
.y205{bottom:551.228800px;}
.y164{bottom:551.787277px;}
.y4d{bottom:552.379312px;}
.y1cd{bottom:552.385957px;}
.y98{bottom:554.588218px;}
.y20{bottom:555.051441px;}
.y10a{bottom:556.544144px;}
.y270{bottom:559.240400px;}
.y74{bottom:563.514414px;}
.y23d{bottom:565.599518px;}
.y197{bottom:566.660521px;}
.ydf{bottom:568.298753px;}
.y2d1{bottom:569.111044px;}
.y204{bottom:569.462361px;}
.y163{bottom:570.019039px;}
.y4c{bottom:570.612874px;}
.y1cc{bottom:570.619519px;}
.y97{bottom:572.819979px;}
.y1f{bottom:573.283202px;}
.y2a5{bottom:576.961386px;}
.y73{bottom:581.746775px;}
.y23c{bottom:583.833080px;}
.y196{bottom:584.892283px;}
.y107{bottom:585.594087px;}
.y108{bottom:586.065200px;}
.y109{bottom:586.065785px;}
.yde{bottom:586.532315px;}
.y203{bottom:587.694123px;}
.y162{bottom:588.252601px;}
.y26f{bottom:588.533415px;}
.y4b{bottom:588.844635px;}
.y1cb{bottom:588.851281px;}
.y106{bottom:589.759726px;}
.y96{bottom:591.052941px;}
.y1e{bottom:591.516764px;}
.y2a4{bottom:595.194948px;}
.y13a{bottom:598.138395px;}
.y2d0{bottom:599.300053px;}
.y72{bottom:599.979137px;}
.y23b{bottom:602.064841px;}
.y195{bottom:603.124044px;}
.ydd{bottom:604.764076px;}
.y202{bottom:605.927084px;}
.y26e{bottom:606.765776px;}
.y4a{bottom:607.078197px;}
.y1ca{bottom:607.084842px;}
.y95{bottom:609.284702px;}
.y1d{bottom:609.748525px;}
.y2a3{bottom:613.426709px;}
.y139{bottom:616.371357px;}
.y2cf{bottom:617.532415px;}
.y71{bottom:618.212699px;}
.y23a{bottom:620.298403px;}
.y194{bottom:621.357606px;}
.y105{bottom:622.975887px;}
.ydc{bottom:622.995838px;}
.y201{bottom:624.159446px;}
.y26d{bottom:624.997538px;}
.y49{bottom:625.309958px;}
.y1c9{bottom:625.316604px;}
.y94{bottom:627.706973px;}
.y1c{bottom:627.980287px;}
.y138{bottom:634.603718px;}
.y2ce{bottom:635.765976px;}
.y70{bottom:636.444460px;}
.y239{bottom:638.530164px;}
.y193{bottom:639.626869px;}
.y104{bottom:641.209448px;}
.ydb{bottom:641.229399px;}
.y2a2{bottom:643.182047px;}
.y26c{bottom:643.231099px;}
.y48{bottom:643.541720px;}
.y1c8{bottom:643.550165px;}
.y200{bottom:645.862531px;}
.y93{bottom:645.939935px;}
.y1b{bottom:646.213849px;}
.y6f{bottom:654.676222px;}
.y238{bottom:656.761926px;}
.y192{bottom:657.860431px;}
.y103{bottom:659.441210px;}
.yda{bottom:659.461161px;}
.y2a1{bottom:661.414409px;}
.y26b{bottom:661.462861px;}
.y47{bottom:661.775282px;}
.y1c7{bottom:661.781927px;}
.y1ff{bottom:664.094293px;}
.y92{bottom:664.172896px;}
.y1a{bottom:664.445610px;}
.y2cd{bottom:665.953185px;}
.y127{bottom:667.780877px;}
.y6e{bottom:672.909783px;}
.y237{bottom:674.995488px;}
.y191{bottom:676.092192px;}
.y102{bottom:677.674772px;}
.yd9{bottom:677.694723px;}
.y2a0{bottom:679.646170px;}
.y26a{bottom:679.696423px;}
.y46{bottom:680.007043px;}
.y1c6{bottom:680.072341px;}
.y1fe{bottom:682.327854px;}
.y91{bottom:682.404658px;}
.y19{bottom:682.679172px;}
.y2cc{bottom:684.186747px;}
.y6d{bottom:691.141545px;}
.y236{bottom:693.227849px;}
.y190{bottom:694.323954px;}
.y101{bottom:695.925884px;}
.yd8{bottom:695.926484px;}
.y29f{bottom:697.879732px;}
.y1c5{bottom:698.305903px;}
.y45{bottom:698.573921px;}
.y1fd{bottom:700.559616px;}
.y90{bottom:700.636420px;}
.y18{bottom:700.910933px;}
.y2cb{bottom:702.418509px;}
.y269{bottom:708.988387px;}
.y6c{bottom:709.964486px;}
.y235{bottom:711.461411px;}
.y18f{bottom:712.557516px;}
.yd7{bottom:714.158246px;}
.y100{bottom:714.159446px;}
.y1c4{bottom:716.537665px;}
.y44{bottom:716.805683px;}
.y1fc{bottom:718.791377px;}
.y8f{bottom:718.869981px;}
.y17{bottom:719.144495px;}
.y268{bottom:727.221949px;}
.y29e{bottom:727.633419px;}
.y6b{bottom:728.196247px;}
.y234{bottom:729.693172px;}
.y18e{bottom:730.789277px;}
.yff{bottom:732.391207px;}
.yd6{bottom:732.391807px;}
.y2ca{bottom:732.607518px;}
.y1c3{bottom:734.771226px;}
.y43{bottom:735.039245px;}
.y1fb{bottom:737.024939px;}
.y16{bottom:737.376256px;}
.y267{bottom:745.453710px;}
.y29d{bottom:745.866981px;}
.y8e{bottom:746.427409px;}
.y6a{bottom:746.428009px;}
.y233{bottom:747.926734px;}
.y18d{bottom:749.022839px;}
.yfe{bottom:750.622969px;}
.yd5{bottom:750.623569px;}
.y2c9{bottom:750.839280px;}
.y1c2{bottom:753.002988px;}
.y42{bottom:753.271006px;}
.y1fa{bottom:755.256700px;}
.y15{bottom:755.608018px;}
.y266{bottom:763.687272px;}
.y29c{bottom:764.098743px;}
.y8d{bottom:764.660971px;}
.y69{bottom:764.661571px;}
.y232{bottom:766.159096px;}
.y18c{bottom:767.254600px;}
.yfd{bottom:768.856530px;}
.yd4{bottom:768.857130px;}
.y2c8{bottom:769.071041px;}
.y1c1{bottom:771.235349px;}
.y41{bottom:771.504568px;}
.y1f9{bottom:773.490262px;}
.y14{bottom:773.841580px;}
.y29b{bottom:782.332304px;}
.y231{bottom:784.391457px;}
.y18b{bottom:785.486362px;}
.y1c0{bottom:789.526814px;}
.y40{bottom:789.736329px;}
.y1f8{bottom:791.722024px;}
.y13{bottom:792.073341px;}
.y265{bottom:792.980287px;}
.y2c7{bottom:799.260051px;}
.y18a{bottom:803.719923px;}
.y1bf{bottom:807.759175px;}
.y3f{bottom:807.969891px;}
.y1f7{bottom:809.953785px;}
.y12{bottom:810.306903px;}
.y264{bottom:811.212048px;}
.y230{bottom:811.590817px;}
.y29a{bottom:812.086592px;}
.y68{bottom:812.731324px;}
.yd3{bottom:816.925684px;}
.y2c6{bottom:817.492412px;}
.y1be{bottom:825.991537px;}
.y3e{bottom:826.201653px;}
.y1f6{bottom:828.187347px;}
.y11{bottom:828.539264px;}
.y263{bottom:829.443810px;}
.y299{bottom:830.320153px;}
.y67{bottom:830.963686px;}
.y189{bottom:830.989637px;}
.yd2{bottom:835.159245px;}
.y2c5{bottom:835.725974px;}
.y1bd{bottom:844.223899px;}
.y3d{bottom:844.433414px;}
.y1f5{bottom:846.419108px;}
.y10{bottom:846.771626px;}
.y262{bottom:847.677371px;}
.y298{bottom:848.551915px;}
.y66{bottom:849.195447px;}
.y22f{bottom:853.361455px;}
.y2c4{bottom:853.958335px;}
.y1bc{bottom:862.457460px;}
.y3c{bottom:862.666976px;}
.y1f4{bottom:864.652670px;}
.yf{bottom:865.005188px;}
.y261{bottom:865.909133px;}
.y188{bottom:866.240199px;}
.y297{bottom:866.783677px;}
.yc6{bottom:868.336404px;}
.y22e{bottom:871.593817px;}
.yc4{bottom:878.592417px;}
.y1bb{bottom:880.689222px;}
.y3b{bottom:880.898737px;}
.ye{bottom:883.236949px;}
.y260{bottom:884.142694px;}
.y2c3{bottom:884.147345px;}
.y187{bottom:884.471961px;}
.y296{bottom:885.016638px;}
.y1f3{bottom:886.354555px;}
.y22d{bottom:889.827379px;}
.ybc{bottom:890.623018px;}
.y1ba{bottom:898.920983px;}
.y3a{bottom:899.132299px;}
.yd{bottom:901.470511px;}
.y2c2{bottom:902.379106px;}
.y295{bottom:903.248400px;}
.y1f2{bottom:904.588117px;}
.y22c{bottom:908.059140px;}
.y186{bottom:911.743474px;}
.y25f{bottom:913.434659px;}
.y1b9{bottom:917.154545px;}
.y39{bottom:917.364060px;}
.y2c1{bottom:920.612668px;}
.y1f1{bottom:922.819878px;}
.y22b{bottom:926.292702px;}
.y25e{bottom:931.668221px;}
.y294{bottom:933.003737px;}
.y1b8{bottom:935.444959px;}
.y38{bottom:935.596422px;}
.yc{bottom:935.597217px;}
.y2c0{bottom:938.844429px;}
.y1f0{bottom:941.053440px;}
.y22a{bottom:944.524463px;}
.y293{bottom:951.236099px;}
.y1b7{bottom:953.678521px;}
.y185{bottom:953.718573px;}
.yc1{bottom:953.915683px;}
.y2bf{bottom:957.076191px;}
.y1ef{bottom:959.285201px;}
.y25d{bottom:960.961835px;}
.y229{bottom:962.756225px;}
.y292{bottom:969.469061px;}
.y1b6{bottom:971.910283px;}
.y184{bottom:971.950335px;}
.y25c{bottom:979.193597px;}
.y1ee{bottom:980.988286px;}
.y228{bottom:980.989787px;}
.y2be{bottom:987.265200px;}
.y291{bottom:987.701422px;}
.y1b5{bottom:990.142044px;}
.y183{bottom:990.182096px;}
.yb2{bottom:992.713623px;}
.y25b{bottom:997.427158px;}
.y1ed{bottom:999.220048px;}
.y227{bottom:999.221548px;}
.ycc{bottom:1000.284501px;}
.y5{bottom:1001.652420px;}
.y8{bottom:1001.652570px;}
.yb{bottom:1001.652720px;}
.yc8{bottom:1002.308102px;}
.y2bd{bottom:1005.496962px;}
.y290{bottom:1005.934384px;}
.y1b4{bottom:1008.375606px;}
.y182{bottom:1008.415658px;}
.y25a{bottom:1015.658920px;}
.y1ec{bottom:1017.453610px;}
.y226{bottom:1017.455110px;}
.ycd{bottom:1020.074991px;}
.y4{bottom:1022.575466px;}
.y7{bottom:1022.575616px;}
.ya{bottom:1022.575766px;}
.y2bc{bottom:1023.730523px;}
.y28f{bottom:1024.166745px;}
.y1b3{bottom:1026.607367px;}
.y181{bottom:1026.647419px;}
.y259{bottom:1033.890681px;}
.y1eb{bottom:1035.685971px;}
.y225{bottom:1035.687471px;}
.y2bb{bottom:1041.962885px;}
.y3{bottom:1043.498512px;}
.y6{bottom:1043.498662px;}
.y9{bottom:1043.498812px;}
.y1b2{bottom:1044.840929px;}
.y180{bottom:1044.880981px;}
.yd1{bottom:1046.377306px;}
.ybe{bottom:1049.407457px;}
.yb8{bottom:1051.069540px;}
.y1ea{bottom:1053.918333px;}
.y224{bottom:1053.919833px;}
.y28e{bottom:1053.922083px;}
.yb6{bottom:1061.913583px;}
.y1b1{bottom:1063.072690px;}
.y17f{bottom:1063.113343px;}
.y258{bottom:1063.184296px;}
.y1e9{bottom:1072.151894px;}
.y223{bottom:1072.152194px;}
.y28d{bottom:1072.153845px;}
.y1b0{bottom:1081.306252px;}
.y17e{bottom:1081.345704px;}
.y257{bottom:1081.417858px;}
.y1e8{bottom:1090.383656px;}
.y222{bottom:1090.384556px;}
.y28c{bottom:1090.385606px;}
.yba{bottom:1096.124293px;}
.y2{bottom:1097.258050px;}
.y1af{bottom:1099.538014px;}
.y17d{bottom:1099.579266px;}
.y256{bottom:1099.649619px;}
.y221{bottom:1108.616918px;}
.y1e7{bottom:1108.617218px;}
.y28b{bottom:1108.619168px;}
.yb4{bottom:1113.336154px;}
.y1ae{bottom:1117.769775px;}
.y17c{bottom:1117.811027px;}
.y255{bottom:1117.881381px;}
.y1{bottom:1121.169545px;}
.y1e6{bottom:1126.848979px;}
.y220{bottom:1126.849279px;}
.y28a{bottom:1126.850929px;}
.y1ad{bottom:1145.079991px;}
.y17b{bottom:1145.080741px;}
.y21f{bottom:1145.082841px;}
.y289{bottom:1145.084491px;}
.yb1{bottom:1195.604767px;}
.h21{height:17.639382px;}
.h15{height:22.371068px;}
.h16{height:23.762692px;}
.h17{height:24.952848px;}
.hb{height:26.075595px;}
.h3a{height:27.978271px;}
.h11{height:29.416959px;}
.h18{height:30.115806px;}
.h19{height:30.550193px;}
.h1d{height:30.975949px;}
.h39{height:31.274920px;}
.h36{height:31.791541px;}
.h1c{height:33.127056px;}
.h9{height:34.767314px;}
.h1b{height:36.138307px;}
.h1a{height:37.429271px;}
.h20{height:37.429871px;}
.h14{height:39.318804px;}
.h38{height:41.008112px;}
.h12{height:41.282064px;}
.h7{height:41.366783px;}
.h37{height:41.832334px;}
.h8{height:43.459034px;}
.hd{height:44.833942px;}
.h24{height:45.834627px;}
.h30{height:45.841708px;}
.he{height:46.910609px;}
.h6{height:47.918837px;}
.h23{height:49.136081px;}
.h4{height:49.640472px;}
.ha{height:52.118441px;}
.h5{height:52.151190px;}
.hc{height:52.961182px;}
.h26{height:58.237113px;}
.h32{height:59.167450px;}
.h2b{height:59.439513px;}
.h3{height:59.568401px;}
.h29{height:59.612020px;}
.h1e{height:59.800790px;}
.h2c{height:60.068815px;}
.h27{height:60.068839px;}
.h31{height:60.073519px;}
.h34{height:60.121567px;}
.h25{height:60.673669px;}
.h2d{height:63.601155px;}
.h2f{height:63.603496px;}
.h2a{height:68.776234px;}
.h28{height:71.762344px;}
.h2e{height:74.846918px;}
.h33{height:76.046978px;}
.h1f{height:80.861693px;}
.hf{height:85.275004px;}
.h10{height:97.800090px;}
.h13{height:163.914695px;}
.h22{height:291.689584px;}
.h35{height:492.248111px;}
.h2{height:1233.106642px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:100.671983px;}
.wb{width:101.962348px;}
.w3{width:111.857593px;}
.w7{width:117.020551px;}
.w6{width:122.182909px;}
.w9{width:122.612980px;}
.w4{width:167.355867px;}
.w8{width:194.030201px;}
.wa{width:299.003949px;}
.wd{width:348.675933px;}
.w2{width:433.233661px;}
.wc{width:731.376567px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:3.675184px;}
.x26{left:5.743637px;}
.x25{left:7.578379px;}
.x2c{left:9.117456px;}
.x32{left:10.304015px;}
.x4a{left:11.675384px;}
.x27{left:14.985749px;}
.x4b{left:17.928236px;}
.x23{left:19.006400px;}
.x2f{left:21.298065px;}
.x4c{left:30.369483px;}
.x2a{left:31.533077px;}
.x2e{left:33.168158px;}
.x28{left:37.834292px;}
.x31{left:44.288664px;}
.x21{left:52.009100px;}
.x5f{left:72.516627px;}
.x59{left:78.830273px;}
.x5e{left:79.988650px;}
.xe{left:82.470119px;}
.x57{left:88.863225px;}
.xd{left:100.403066px;}
.x56{left:101.888091px;}
.x22{left:105.149708px;}
.x5{left:109.514582px;}
.x1d{left:112.376619px;}
.x1{left:113.755189px;}
.x58{left:115.815973px;}
.x4{left:117.200711px;}
.x3{left:136.550478px;}
.x4f{left:140.028701px;}
.x4d{left:142.191809px;}
.x10{left:146.252963px;}
.x4e{left:162.552327px;}
.x34{left:164.383545px;}
.x37{left:167.331777px;}
.x50{left:181.981299px;}
.xf{left:187.167704px;}
.x5d{left:196.485825px;}
.x52{left:197.543977px;}
.x5a{left:199.899261px;}
.x35{left:214.854033px;}
.xc{left:216.532872px;}
.x38{left:218.760304px;}
.x16{left:229.280015px;}
.x51{left:232.419520px;}
.x24{left:239.509476px;}
.x2{left:250.419671px;}
.x39{left:252.084260px;}
.x3a{left:278.478319px;}
.x53{left:287.470755px;}
.x54{left:292.745634px;}
.x55{left:294.501771px;}
.x8{left:315.000705px;}
.x36{left:331.542932px;}
.x2d{left:350.780539px;}
.x20{left:351.908596px;}
.x7{left:360.139462px;}
.x1e{left:379.742487px;}
.x29{left:384.578729px;}
.x6{left:402.221216px;}
.x3b{left:407.196965px;}
.x15{left:430.480500px;}
.x1c{left:447.489000px;}
.x60{left:455.212611px;}
.x12{left:465.166508px;}
.x14{left:479.213961px;}
.x11{left:483.099455px;}
.x61{left:487.582579px;}
.x44{left:489.824861px;}
.x45{left:502.527451px;}
.x5b{left:506.544577px;}
.x30{left:509.476474px;}
.x17{left:513.148027px;}
.x3c{left:523.942207px;}
.x18{left:547.315356px;}
.x3d{left:557.267333px;}
.x13{left:567.719136px;}
.x48{left:574.707235px;}
.x5c{left:578.770488px;}
.x33{left:608.268112px;}
.x19{left:616.094304px;}
.x49{left:622.966298px;}
.xb{left:628.087449px;}
.xa{left:630.391474px;}
.x46{left:632.811290px;}
.x3e{left:641.072308px;}
.x1a{left:648.151387px;}
.x2b{left:668.658432px;}
.x9{left:670.705990px;}
.x1b{left:685.659112px;}
.x3f{left:699.489594px;}
.x40{left:734.017075px;}
.x41{left:767.342831px;}
.x43{left:774.394264px;}
.x47{left:777.153022px;}
.x42{left:814.489589px;}
@media print{
.v2{vertical-align:-15.002830pt;}
.v9{vertical-align:-13.286083pt;}
.v3{vertical-align:-7.969145pt;}
.v8{vertical-align:-5.316932pt;}
.v15{vertical-align:-3.152243pt;}
.v5{vertical-align:-1.845927pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.845927pt;}
.vb{vertical-align:5.214874pt;}
.v11{vertical-align:6.837835pt;}
.v12{vertical-align:7.975385pt;}
.va{vertical-align:13.190259pt;}
.ve{vertical-align:14.811141pt;}
.v1{vertical-align:19.286404pt;}
.vf{vertical-align:21.936510pt;}
.vd{vertical-align:26.353424pt;}
.v13{vertical-align:27.255496pt;}
.vc{vertical-align:32.470370pt;}
.v6{vertical-align:35.947611pt;}
.v10{vertical-align:39.489494pt;}
.v14{vertical-align:40.556214pt;}
.v7{vertical-align:86.933413pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.002263pt;}
.ls4{letter-spacing:0.003894pt;}
.ls1b{letter-spacing:0.004732pt;}
.lsc{letter-spacing:0.005571pt;}
.ls14{letter-spacing:0.005905pt;}
.ls3b{letter-spacing:0.006837pt;}
.ls35{letter-spacing:0.007985pt;}
.ls2f{letter-spacing:0.008164pt;}
.ls68{letter-spacing:0.008275pt;}
.ls24{letter-spacing:0.009732pt;}
.ls2e{letter-spacing:0.027296pt;}
.ls2c{letter-spacing:0.028691pt;}
.ls25{letter-spacing:0.029125pt;}
.ls16{letter-spacing:0.029310pt;}
.ls27{letter-spacing:0.029399pt;}
.ls4a{letter-spacing:0.030271pt;}
.ls21{letter-spacing:0.031205pt;}
.ls3d{letter-spacing:0.031457pt;}
.ls1c{letter-spacing:0.035639pt;}
.ls56{letter-spacing:0.037851pt;}
.ls11{letter-spacing:0.039592pt;}
.ls5b{letter-spacing:0.039932pt;}
.ls2b{letter-spacing:0.040268pt;}
.ls5{letter-spacing:0.041672pt;}
.ls62{letter-spacing:0.042012pt;}
.ls4e{letter-spacing:0.044092pt;}
.ls19{letter-spacing:0.044489pt;}
.ls1f{letter-spacing:0.046569pt;}
.ls1a{letter-spacing:0.050729pt;}
.ls6e{letter-spacing:0.958006pt;}
.ls41{letter-spacing:2.035758pt;}
.ls28{letter-spacing:2.664385pt;}
.ls6{letter-spacing:2.670308pt;}
.ls7{letter-spacing:2.672389pt;}
.ls5e{letter-spacing:2.675919pt;}
.lsd{letter-spacing:2.676549pt;}
.ls3c{letter-spacing:2.679579pt;}
.ls1d{letter-spacing:2.680042pt;}
.ls20{letter-spacing:2.685524pt;}
.ls30{letter-spacing:2.686283pt;}
.ls58{letter-spacing:2.689250pt;}
.ls54{letter-spacing:2.695491pt;}
.ls5d{letter-spacing:3.070747pt;}
.ls46{letter-spacing:3.076987pt;}
.ls59{letter-spacing:3.837598pt;}
.ls37{letter-spacing:6.024535pt;}
.lse{letter-spacing:6.659009pt;}
.ls8{letter-spacing:6.681480pt;}
.ls4c{letter-spacing:8.892764pt;}
.ls48{letter-spacing:8.899004pt;}
.ls6c{letter-spacing:10.525729pt;}
.ls0{letter-spacing:10.624851pt;}
.ls53{letter-spacing:11.846831pt;}
.ls26{letter-spacing:12.781531pt;}
.ls13{letter-spacing:12.818241pt;}
.ls3e{letter-spacing:13.565458pt;}
.ls52{letter-spacing:14.504454pt;}
.ls49{letter-spacing:14.771230pt;}
.ls17{letter-spacing:14.785689pt;}
.ls51{letter-spacing:14.794811pt;}
.ls18{letter-spacing:14.801059pt;}
.ls1e{letter-spacing:14.803573pt;}
.ls29{letter-spacing:14.807733pt;}
.ls5c{letter-spacing:14.809814pt;}
.ls9{letter-spacing:14.842129pt;}
.ls23{letter-spacing:15.971682pt;}
.ls6b{letter-spacing:16.217344pt;}
.ls40{letter-spacing:16.421940pt;}
.ls3f{letter-spacing:16.430695pt;}
.ls55{letter-spacing:16.819527pt;}
.ls36{letter-spacing:16.963195pt;}
.ls38{letter-spacing:17.000124pt;}
.ls6f{letter-spacing:17.006824pt;}
.ls66{letter-spacing:17.295504pt;}
.ls4b{letter-spacing:17.422550pt;}
.ls33{letter-spacing:17.423416pt;}
.ls47{letter-spacing:17.428764pt;}
.ls5a{letter-spacing:17.432924pt;}
.ls34{letter-spacing:17.444822pt;}
.ls3{letter-spacing:17.690803pt;}
.ls12{letter-spacing:18.206815pt;}
.ls4d{letter-spacing:18.596682pt;}
.ls22{letter-spacing:18.968368pt;}
.ls32{letter-spacing:20.634098pt;}
.ls2{letter-spacing:20.721656pt;}
.lsf{letter-spacing:21.073727pt;}
.ls70{letter-spacing:21.084543pt;}
.ls10{letter-spacing:21.361773pt;}
.ls42{letter-spacing:21.492998pt;}
.ls71{letter-spacing:22.042161pt;}
.ls15{letter-spacing:23.400899pt;}
.lsb{letter-spacing:23.536962pt;}
.ls63{letter-spacing:23.822870pt;}
.ls43{letter-spacing:24.653529pt;}
.lsa{letter-spacing:26.190372pt;}
.ls61{letter-spacing:26.566982pt;}
.ls39{letter-spacing:28.398560pt;}
.ls45{letter-spacing:29.560050pt;}
.ls31{letter-spacing:31.032470pt;}
.ls3a{letter-spacing:32.221578pt;}
.ls44{letter-spacing:34.160427pt;}
.ls2d{letter-spacing:39.150543pt;}
.ls6a{letter-spacing:40.979598pt;}
.ls4f{letter-spacing:56.847561pt;}
.ls50{letter-spacing:56.849695pt;}
.ls5f{letter-spacing:56.853961pt;}
.ls2a{letter-spacing:57.265582pt;}
.ls57{letter-spacing:69.793808pt;}
.ls60{letter-spacing:71.610433pt;}
.ls67{letter-spacing:74.102291pt;}
.ls69{letter-spacing:74.540179pt;}
.ls65{letter-spacing:85.905014pt;}
.ls64{letter-spacing:85.911414pt;}
.wsaf{word-spacing:-26.568262pt;}
.wsb4{word-spacing:-18.597730pt;}
.wsc1{word-spacing:-14.375324pt;}
.wsc0{word-spacing:-9.100838pt;}
.wsd3{word-spacing:-9.046681pt;}
.ws11c{word-spacing:-8.755408pt;}
.ws138{word-spacing:-8.574655pt;}
.ws137{word-spacing:-7.670811pt;}
.wsa5{word-spacing:-3.114368pt;}
.wsce{word-spacing:-0.329074pt;}
.ws6{word-spacing:-0.053137pt;}
.ws110{word-spacing:-0.037195pt;}
.ws61{word-spacing:0.000000pt;}
.ws2d{word-spacing:8.585906pt;}
.ws9d{word-spacing:8.862534pt;}
.ws9a{word-spacing:8.862694pt;}
.ws1ca{word-spacing:10.042537pt;}
.ws29d{word-spacing:10.042750pt;}
.wsb9{word-spacing:10.095567pt;}
.wsba{word-spacing:10.096577pt;}
.ws183{word-spacing:10.148438pt;}
.ws258{word-spacing:10.148651pt;}
.ws1d0{word-spacing:10.201415pt;}
.wsf7{word-spacing:10.254393pt;}
.ws276{word-spacing:10.309123pt;}
.ws161{word-spacing:10.361622pt;}
.ws191{word-spacing:10.361728pt;}
.wsf8{word-spacing:10.362207pt;}
.wsc{word-spacing:10.413749pt;}
.ws13b{word-spacing:10.467045pt;}
.ws13c{word-spacing:10.468480pt;}
.ws71{word-spacing:10.521244pt;}
.ws18f{word-spacing:10.573424pt;}
.ws92{word-spacing:10.573956pt;}
.ws33{word-spacing:10.584694pt;}
.ws60{word-spacing:10.585120pt;}
.ws1b1{word-spacing:10.680229pt;}
.ws1ee{word-spacing:10.732674pt;}
.ws2a5{word-spacing:10.732781pt;}
.ws1ed{word-spacing:10.733099pt;}
.wsf4{word-spacing:10.734375pt;}
.ws139{word-spacing:10.774116pt;}
.ws13a{word-spacing:10.785705pt;}
.ws24d{word-spacing:10.892190pt;}
.wsc9{word-spacing:10.892350pt;}
.wsc8{word-spacing:10.893519pt;}
.ws253{word-spacing:10.945220pt;}
.ws295{word-spacing:10.946071pt;}
.ws59{word-spacing:10.947027pt;}
.ws296{word-spacing:10.998835pt;}
.ws27c{word-spacing:10.998995pt;}
.ws27b{word-spacing:10.999526pt;}
.ws223{word-spacing:10.999739pt;}
.ws217{word-spacing:11.105533pt;}
.ws280{word-spacing:11.159148pt;}
.ws27f{word-spacing:11.159254pt;}
.ws1a{word-spacing:11.159520pt;}
.wsf6{word-spacing:11.202797pt;}
.ws14d{word-spacing:11.263827pt;}
.ws25d{word-spacing:11.264093pt;}
.ws23f{word-spacing:11.265262pt;}
.ws2a6{word-spacing:11.265527pt;}
.ws128{word-spacing:11.265793pt;}
.ws14{word-spacing:11.265899pt;}
.ws21d{word-spacing:11.317761pt;}
.ws13{word-spacing:11.317867pt;}
.ws21e{word-spacing:11.318770pt;}
.ws27e{word-spacing:11.424246pt;}
.wsca{word-spacing:11.424565pt;}
.ws27d{word-spacing:11.476373pt;}
.ws18a{word-spacing:11.477755pt;}
.ws2c{word-spacing:11.519134pt;}
.ws26{word-spacing:11.530732pt;}
.ws136{word-spacing:11.531582pt;}
.ws4e{word-spacing:11.584665pt;}
.wsb1{word-spacing:11.584825pt;}
.ws266{word-spacing:11.636102pt;}
.ws12{word-spacing:11.636367pt;}
.ws240{word-spacing:11.637961pt;}
.ws14b{word-spacing:11.674267pt;}
.ws14c{word-spacing:11.681749pt;}
.ws70{word-spacing:11.689132pt;}
.wse3{word-spacing:11.689398pt;}
.ws17e{word-spacing:11.689769pt;}
.ws36{word-spacing:11.690141pt;}
.ws213{word-spacing:11.742268pt;}
.ws10a{word-spacing:11.742481pt;}
.ws15b{word-spacing:11.742640pt;}
.ws109{word-spacing:11.743437pt;}
.ws127{word-spacing:11.795458pt;}
.ws1d9{word-spacing:11.795511pt;}
.ws1ff{word-spacing:11.796308pt;}
.ws205{word-spacing:11.848382pt;}
.ws1d3{word-spacing:11.849923pt;}
.ws34{word-spacing:11.901890pt;}
.ws2f{word-spacing:11.902611pt;}
.wsb2{word-spacing:11.903431pt;}
.ws28a{word-spacing:11.984228pt;}
.ws6f{word-spacing:12.008164pt;}
.ws28b{word-spacing:12.008535pt;}
.ws5b{word-spacing:12.009439pt;}
.wsf3{word-spacing:12.009704pt;}
.wsd9{word-spacing:12.049076pt;}
.ws83{word-spacing:12.061087pt;}
.ws86{word-spacing:12.061459pt;}
.ws84{word-spacing:12.062203pt;}
.wsdb{word-spacing:12.062682pt;}
.wsda{word-spacing:12.066482pt;}
.ws85{word-spacing:12.081337pt;}
.ws212{word-spacing:12.167254pt;}
.ws162{word-spacing:12.168264pt;}
.ws82{word-spacing:12.220763pt;}
.ws80{word-spacing:12.221560pt;}
.wsfd{word-spacing:12.274059pt;}
.ws1f2{word-spacing:12.326983pt;}
.ws4b{word-spacing:12.327195pt;}
.ws16d{word-spacing:12.327514pt;}
.ws1e3{word-spacing:12.327833pt;}
.ws182{word-spacing:12.379907pt;}
.ws106{word-spacing:12.380013pt;}
.ws15{word-spacing:12.380438pt;}
.ws64{word-spacing:12.381448pt;}
.ws107{word-spacing:12.414173pt;}
.ws11f{word-spacing:12.433149pt;}
.ws120{word-spacing:12.433309pt;}
.ws1bb{word-spacing:12.433415pt;}
.ws259{word-spacing:12.434053pt;}
.ws81{word-spacing:12.434462pt;}
.wsfe{word-spacing:12.434744pt;}
.ws25a{word-spacing:12.434850pt;}
.ws5e{word-spacing:12.486817pt;}
.ws286{word-spacing:12.487083pt;}
.ws153{word-spacing:12.536427pt;}
.ws155{word-spacing:12.539954pt;}
.ws154{word-spacing:12.540963pt;}
.ws30{word-spacing:12.581740pt;}
.ws3e{word-spacing:12.592293pt;}
.ws1eb{word-spacing:12.592612pt;}
.ws248{word-spacing:12.593090pt;}
.ws54{word-spacing:12.593197pt;}
.ws1bc{word-spacing:12.645961pt;}
.ws271{word-spacing:12.646705pt;}
.ws1c0{word-spacing:12.647236pt;}
.wsab{word-spacing:12.699045pt;}
.wsa3{word-spacing:12.751915pt;}
.ws39{word-spacing:12.752447pt;}
.wsa4{word-spacing:12.757667pt;}
.ws4f{word-spacing:12.805424pt;}
.ws261{word-spacing:12.805583pt;}
.ws287{word-spacing:12.806752pt;}
.wsee{word-spacing:12.858029pt;}
.ws87{word-spacing:12.858826pt;}
.ws72{word-spacing:12.859251pt;}
.ws165{word-spacing:12.859464pt;}
.wsef{word-spacing:12.859729pt;}
.wsed{word-spacing:12.911378pt;}
.wsec{word-spacing:12.927076pt;}
.wsc6{word-spacing:12.964462pt;}
.ws16f{word-spacing:12.964568pt;}
.ws21a{word-spacing:12.964940pt;}
.ws12a{word-spacing:12.965099pt;}
.ws129{word-spacing:12.965524pt;}
.wse2{word-spacing:13.017545pt;}
.ws235{word-spacing:13.017704pt;}
.wsc7{word-spacing:13.018236pt;}
.wsea{word-spacing:13.071691pt;}
.ws1e9{word-spacing:13.176901pt;}
.wsb7{word-spacing:13.225059pt;}
.wsf0{word-spacing:13.226299pt;}
.wsdc{word-spacing:13.228217pt;}
.wsb8{word-spacing:13.228624pt;}
.wsbe{word-spacing:13.229402pt;}
.ws198{word-spacing:13.229932pt;}
.ws163{word-spacing:13.230038pt;}
.wsb3{word-spacing:13.230091pt;}
.ws1b{word-spacing:13.230144pt;}
.ws44{word-spacing:13.230197pt;}
.ws1fa{word-spacing:13.230250pt;}
.wsaa{word-spacing:13.230357pt;}
.ws90{word-spacing:13.230463pt;}
.ws68{word-spacing:13.230569pt;}
.wsc5{word-spacing:13.230622pt;}
.ws254{word-spacing:13.230675pt;}
.ws25b{word-spacing:13.230729pt;}
.ws95{word-spacing:13.230835pt;}
.wsde{word-spacing:13.231047pt;}
.ws2b{word-spacing:13.231101pt;}
.ws18e{word-spacing:13.231207pt;}
.ws13d{word-spacing:13.231260pt;}
.ws290{word-spacing:13.231313pt;}
.ws51{word-spacing:13.231366pt;}
.ws125{word-spacing:13.231526pt;}
.ws74{word-spacing:13.231579pt;}
.ws150{word-spacing:13.231632pt;}
.ws100{word-spacing:13.231791pt;}
.ws156{word-spacing:13.231845pt;}
.wsff{word-spacing:13.231898pt;}
.ws89{word-spacing:13.283068pt;}
.ws192{word-spacing:13.283493pt;}
.ws1a0{word-spacing:13.283971pt;}
.ws1cf{word-spacing:13.336470pt;}
.ws1f3{word-spacing:13.336577pt;}
.wsc2{word-spacing:13.389447pt;}
.ws1ec{word-spacing:13.389713pt;}
.ws24{word-spacing:13.389873pt;}
.wsc3{word-spacing:13.390244pt;}
.wsc4{word-spacing:13.390776pt;}
.ws112{word-spacing:13.442743pt;}
.ws113{word-spacing:13.442850pt;}
.ws272{word-spacing:13.495720pt;}
.ws67{word-spacing:13.496199pt;}
.ws8b{word-spacing:13.497102pt;}
.ws88{word-spacing:13.549016pt;}
.ws108{word-spacing:13.549601pt;}
.ws18b{word-spacing:13.550557pt;}
.wsb{word-spacing:13.655502pt;}
.ws25{word-spacing:13.709382pt;}
.ws56{word-spacing:13.814752pt;}
.ws186{word-spacing:13.815655pt;}
.ws146{word-spacing:13.816027pt;}
.ws1b2{word-spacing:13.868154pt;}
.ws27a{word-spacing:13.921397pt;}
.ws48{word-spacing:13.974109pt;}
.ws21c{word-spacing:13.974374pt;}
.ws170{word-spacing:14.028839pt;}
.ws167{word-spacing:14.080382pt;}
.wsa{word-spacing:14.080594pt;}
.ws1bf{word-spacing:14.133784pt;}
.ws94{word-spacing:14.186495pt;}
.ws26e{word-spacing:14.239897pt;}
.ws218{word-spacing:14.240004pt;}
.wse6{word-spacing:14.241279pt;}
.ws1ab{word-spacing:14.241332pt;}
.ws1a2{word-spacing:14.346011pt;}
.ws11{word-spacing:14.346171pt;}
.ws1cd{word-spacing:14.346808pt;}
.ws96{word-spacing:14.399148pt;}
.wse{word-spacing:14.399254pt;}
.ws21{word-spacing:14.399520pt;}
.ws114{word-spacing:14.558398pt;}
.ws115{word-spacing:14.573025pt;}
.ws1ef{word-spacing:14.665680pt;}
.wsd1{word-spacing:14.718020pt;}
.ws24e{word-spacing:14.718126pt;}
.ws93{word-spacing:14.718711pt;}
.wsdd{word-spacing:14.756278pt;}
.wsbf{word-spacing:14.760476pt;}
.wsfb{word-spacing:14.760635pt;}
.wsf9{word-spacing:14.760901pt;}
.ws99{word-spacing:14.771050pt;}
.ws23e{word-spacing:14.771316pt;}
.ws9b{word-spacing:14.772325pt;}
.ws117{word-spacing:14.818037pt;}
.ws181{word-spacing:14.824187pt;}
.ws119{word-spacing:14.824452pt;}
.ws20{word-spacing:14.877961pt;}
.ws1d7{word-spacing:14.878705pt;}
.ws196{word-spacing:14.930672pt;}
.wse5{word-spacing:14.984500pt;}
.ws204{word-spacing:14.984606pt;}
.ws8c{word-spacing:15.036786pt;}
.ws263{word-spacing:15.037211pt;}
.ws1b9{word-spacing:15.038486pt;}
.ws20d{word-spacing:15.089816pt;}
.ws2a{word-spacing:15.090029pt;}
.ws8a{word-spacing:15.090773pt;}
.ws19a{word-spacing:15.142953pt;}
.ws28d{word-spacing:15.143112pt;}
.ws199{word-spacing:15.144866pt;}
.ws22c{word-spacing:15.196195pt;}
.ws8{word-spacing:15.197099pt;}
.ws159{word-spacing:15.249332pt;}
.ws17f{word-spacing:15.303212pt;}
.ws1a9{word-spacing:15.303319pt;}
.ws219{word-spacing:15.303638pt;}
.ws29a{word-spacing:15.355446pt;}
.ws1a6{word-spacing:15.356243pt;}
.ws134{word-spacing:15.408688pt;}
.ws6c{word-spacing:15.408742pt;}
.ws1c1{word-spacing:15.409857pt;}
.ws149{word-spacing:15.461984pt;}
.wsa0{word-spacing:15.462356pt;}
.ws142{word-spacing:15.462463pt;}
.wsa1{word-spacing:15.495768pt;}
.ws1f9{word-spacing:15.514962pt;}
.ws1ae{word-spacing:15.515068pt;}
.ws269{word-spacing:15.515493pt;}
.wsa2{word-spacing:15.515599pt;}
.ws207{word-spacing:15.569001pt;}
.ws200{word-spacing:15.621341pt;}
.ws227{word-spacing:15.674477pt;}
.ws12f{word-spacing:15.674849pt;}
.wsa8{word-spacing:15.728411pt;}
.ws1ad{word-spacing:15.728889pt;}
.wsb0{word-spacing:15.729155pt;}
.ws2e{word-spacing:15.768159pt;}
.ws16c{word-spacing:15.781760pt;}
.ws257{word-spacing:15.782291pt;}
.ws1f4{word-spacing:15.833834pt;}
.ws185{word-spacing:15.834206pt;}
.ws141{word-spacing:15.834684pt;}
.wsfc{word-spacing:15.834897pt;}
.ws195{word-spacing:15.835162pt;}
.ws3{word-spacing:15.876470pt;}
.ws2{word-spacing:15.876598pt;}
.ws4{word-spacing:15.877108pt;}
.ws5{word-spacing:15.877682pt;}
.ws144{word-spacing:15.886970pt;}
.ws26d{word-spacing:15.888830pt;}
.ws7a{word-spacing:15.940107pt;}
.ws18c{word-spacing:15.940373pt;}
.ws43{word-spacing:15.940904pt;}
.ws1fe{word-spacing:15.941170pt;}
.ws7c{word-spacing:15.941542pt;}
.ws25c{word-spacing:15.993243pt;}
.ws3f{word-spacing:15.994412pt;}
.ws40{word-spacing:15.994784pt;}
.ws1af{word-spacing:16.046380pt;}
.ws121{word-spacing:16.046752pt;}
.ws232{word-spacing:16.047389pt;}
.ws169{word-spacing:16.099410pt;}
.ws285{word-spacing:16.099516pt;}
.ws1d2{word-spacing:16.099995pt;}
.ws122{word-spacing:16.152600pt;}
.ws1da{word-spacing:16.153131pt;}
.ws171{word-spacing:16.153663pt;}
.ws210{word-spacing:16.153928pt;}
.ws160{word-spacing:16.205896pt;}
.ws4a{word-spacing:16.206002pt;}
.ws1f8{word-spacing:16.258873pt;}
.ws1fb{word-spacing:16.259032pt;}
.ws28{word-spacing:16.259139pt;}
.ws2a4{word-spacing:16.259351pt;}
.ws1fc{word-spacing:16.259936pt;}
.ws23a{word-spacing:16.312116pt;}
.ws20e{word-spacing:16.365146pt;}
.ws35{word-spacing:16.365677pt;}
.ws104{word-spacing:16.418495pt;}
.ws32{word-spacing:16.450301pt;}
.ws15a{word-spacing:16.472322pt;}
.ws1ac{word-spacing:16.472960pt;}
.ws14f{word-spacing:16.524502pt;}
.ws14e{word-spacing:16.524530pt;}
.ws9{word-spacing:16.524715pt;}
.ws270{word-spacing:16.524768pt;}
.ws1c8{word-spacing:16.524821pt;}
.ws1f0{word-spacing:16.525034pt;}
.ws189{word-spacing:16.525459pt;}
.ws229{word-spacing:16.577533pt;}
.ws26f{word-spacing:16.578967pt;}
.ws187{word-spacing:16.579233pt;}
.ws214{word-spacing:16.632051pt;}
.ws7b{word-spacing:16.647473pt;}
.ws8f{word-spacing:16.684496pt;}
.ws28e{word-spacing:16.738217pt;}
.ws28f{word-spacing:16.790823pt;}
.ws53{word-spacing:16.791566pt;}
.ws299{word-spacing:16.843534pt;}
.ws252{word-spacing:16.897042pt;}
.ws41{word-spacing:16.897202pt;}
.ws16b{word-spacing:16.897414pt;}
.ws1fd{word-spacing:16.898105pt;}
.ws179{word-spacing:16.949754pt;}
.ws178{word-spacing:16.950763pt;}
.ws17d{word-spacing:16.951082pt;}
.ws17b{word-spacing:16.951507pt;}
.ws23c{word-spacing:17.002944pt;}
.ws197{word-spacing:17.003581pt;}
.ws23b{word-spacing:17.003794pt;}
.ws4d{word-spacing:17.055814pt;}
.ws76{word-spacing:17.056293pt;}
.ws289{word-spacing:17.056665pt;}
.wse9{word-spacing:17.108898pt;}
.ws236{word-spacing:17.109057pt;}
.ws237{word-spacing:17.109270pt;}
.ws1b8{word-spacing:17.109695pt;}
.ws152{word-spacing:17.215330pt;}
.ws298{word-spacing:17.215383pt;}
.ws78{word-spacing:17.215543pt;}
.ws260{word-spacing:17.215702pt;}
.ws79{word-spacing:17.216074pt;}
.ws77{word-spacing:17.216234pt;}
.ws1d8{word-spacing:17.269158pt;}
.ws21b{word-spacing:17.321444pt;}
.ws1b0{word-spacing:17.322188pt;}
.ws222{word-spacing:17.322507pt;}
.ws267{word-spacing:17.374793pt;}
.ws188{word-spacing:17.388843pt;}
.wsd6{word-spacing:17.428620pt;}
.wsd4{word-spacing:17.428780pt;}
.wsd2{word-spacing:17.463768pt;}
.ws11b{word-spacing:17.480800pt;}
.ws22{word-spacing:17.481225pt;}
.ws11a{word-spacing:17.481438pt;}
.ws1e7{word-spacing:17.481597pt;}
.ws255{word-spacing:17.481704pt;}
.ws256{word-spacing:17.482129pt;}
.ws15d{word-spacing:17.482501pt;}
.ws158{word-spacing:17.482873pt;}
.ws116{word-spacing:17.483672pt;}
.ws57{word-spacing:17.534468pt;}
.ws17{word-spacing:17.534574pt;}
.ws1ce{word-spacing:17.588189pt;}
.wsf5{word-spacing:17.641219pt;}
.ws118{word-spacing:17.683569pt;}
.ws1d4{word-spacing:17.746855pt;}
.ws5d{word-spacing:17.799726pt;}
.ws16a{word-spacing:17.799779pt;}
.ws47{word-spacing:17.801426pt;}
.ws2a7{word-spacing:17.801639pt;}
.ws69{word-spacing:17.801798pt;}
.ws91{word-spacing:17.853766pt;}
.ws16e{word-spacing:17.854935pt;}
.ws17c{word-spacing:17.880316pt;}
.ws17a{word-spacing:17.885879pt;}
.ws297{word-spacing:17.905946pt;}
.ws62{word-spacing:17.906318pt;}
.ws63{word-spacing:17.906371pt;}
.ws124{word-spacing:17.907805pt;}
.ws226{word-spacing:17.907912pt;}
.ws9c{word-spacing:17.942933pt;}
.ws9f{word-spacing:17.959720pt;}
.wseb{word-spacing:17.959879pt;}
.ws1e8{word-spacing:17.959985pt;}
.ws278{word-spacing:17.960251pt;}
.ws37{word-spacing:17.960517pt;}
.ws279{word-spacing:17.960783pt;}
.wsf2{word-spacing:18.065461pt;}
.ws1df{word-spacing:18.065621pt;}
.ws225{word-spacing:18.119661pt;}
.ws10{word-spacing:18.120033pt;}
.ws1f{word-spacing:18.171841pt;}
.ws135{word-spacing:18.225668pt;}
.ws16{word-spacing:18.278486pt;}
.ws1dd{word-spacing:18.278645pt;}
.ws130{word-spacing:18.331304pt;}
.ws2a2{word-spacing:18.331463pt;}
.ws58{word-spacing:18.331782pt;}
.ws251{word-spacing:18.332526pt;}
.ws250{word-spacing:18.378425pt;}
.ws1ea{word-spacing:18.384653pt;}
.ws201{word-spacing:18.384759pt;}
.wsd5{word-spacing:18.384918pt;}
.ws147{word-spacing:18.476487pt;}
.ws148{word-spacing:18.480490pt;}
.ws143{word-spacing:18.491032pt;}
.ws1b3{word-spacing:18.543637pt;}
.ws22d{word-spacing:18.543796pt;}
.ws1b4{word-spacing:18.543903pt;}
.ws6d{word-spacing:18.544328pt;}
.ws221{word-spacing:18.545337pt;}
.ws23d{word-spacing:18.596827pt;}
.ws265{word-spacing:18.597252pt;}
.ws264{word-spacing:18.611640pt;}
.ws6e{word-spacing:18.650123pt;}
.ws268{word-spacing:18.650282pt;}
.wse8{word-spacing:18.650707pt;}
.ws133{word-spacing:18.650813pt;}
.ws1c7{word-spacing:18.703419pt;}
.ws4c{word-spacing:18.756396pt;}
.ws26b{word-spacing:18.757937pt;}
.ws1c9{word-spacing:18.809904pt;}
.wsb5{word-spacing:18.862669pt;}
.wsb6{word-spacing:18.863200pt;}
.ws2a1{word-spacing:18.864369pt;}
.ws1b6{word-spacing:18.912093pt;}
.ws15f{word-spacing:18.915540pt;}
.wse7{word-spacing:18.915805pt;}
.ws1b5{word-spacing:18.916283pt;}
.ws233{word-spacing:18.953387pt;}
.ws1bd{word-spacing:18.968623pt;}
.ws234{word-spacing:18.969579pt;}
.ws203{word-spacing:18.970483pt;}
.ws12e{word-spacing:19.021866pt;}
.ws29e{word-spacing:19.022185pt;}
.ws1c5{word-spacing:19.022291pt;}
.ws1c6{word-spacing:19.022822pt;}
.ws29f{word-spacing:19.023460pt;}
.ws0{word-spacing:19.051788pt;}
.ws1{word-spacing:19.052859pt;}
.ws211{word-spacing:19.075055pt;}
.ws45{word-spacing:19.075162pt;}
.ws123{word-spacing:19.075534pt;}
.ws247{word-spacing:19.076278pt;}
.ws19f{word-spacing:19.076490pt;}
.wse4{word-spacing:19.076862pt;}
.ws224{word-spacing:19.128564pt;}
.ws31{word-spacing:19.129792pt;}
.ws9e{word-spacing:19.146443pt;}
.ws176{word-spacing:19.180236pt;}
.ws73{word-spacing:19.181435pt;}
.ws75{word-spacing:19.181541pt;}
.ws15c{word-spacing:19.181594pt;}
.ws180{word-spacing:19.181754pt;}
.ws173{word-spacing:19.182072pt;}
.ws174{word-spacing:19.182325pt;}
.ws177{word-spacing:19.182710pt;}
.ws1f5{word-spacing:19.182976pt;}
.ws1de{word-spacing:19.234784pt;}
.ws3b{word-spacing:19.285014pt;}
.ws3d{word-spacing:19.287655pt;}
.ws3c{word-spacing:19.288186pt;}
.ws6a{word-spacing:19.289355pt;}
.wsd0{word-spacing:19.393928pt;}
.ws42{word-spacing:19.395256pt;}
.ws273{word-spacing:19.395469pt;}
.wscf{word-spacing:19.422988pt;}
.wse1{word-spacing:19.447171pt;}
.wsa9{word-spacing:19.447330pt;}
.ws19e{word-spacing:19.447436pt;}
.ws29{word-spacing:19.553709pt;}
.ws50{word-spacing:19.606952pt;}
.ws172{word-spacing:19.607377pt;}
.ws206{word-spacing:19.607483pt;}
.ws7{word-spacing:19.659717pt;}
.ws22a{word-spacing:19.659823pt;}
.ws190{word-spacing:19.713225pt;}
.ws1d6{word-spacing:19.713491pt;}
.ws1e5{word-spacing:19.713544pt;}
.ws105{word-spacing:19.714022pt;}
.ws55{word-spacing:19.714235pt;}
.ws26a{word-spacing:19.765937pt;}
.ws1a1{word-spacing:19.766096pt;}
.ws49{word-spacing:19.820508pt;}
.ws1e6{word-spacing:19.820720pt;}
.wsd{word-spacing:19.872156pt;}
.ws12c{word-spacing:19.872210pt;}
.ws239{word-spacing:19.926196pt;}
.ws238{word-spacing:19.974124pt;}
.ws1e4{word-spacing:19.978483pt;}
.ws1a4{word-spacing:19.978748pt;}
.ws1d{word-spacing:19.980077pt;}
.ws1ba{word-spacing:20.032629pt;}
.ws220{word-spacing:20.084596pt;}
.ws27{word-spacing:20.084968pt;}
.ws97{word-spacing:20.085128pt;}
.ws66{word-spacing:20.244643pt;}
.ws22b{word-spacing:20.244962pt;}
.ws5c{word-spacing:20.297886pt;}
.wse0{word-spacing:20.297939pt;}
.ws15e{word-spacing:20.347423pt;}
.ws1be{word-spacing:20.350491pt;}
.ws1f1{word-spacing:20.405063pt;}
.ws166{word-spacing:20.457136pt;}
.ws20b{word-spacing:20.510273pt;}
.wsbd{word-spacing:20.563516pt;}
.ws281{word-spacing:20.564313pt;}
.wsbb{word-spacing:20.579192pt;}
.wsa7{word-spacing:20.616121pt;}
.wsa6{word-spacing:20.616280pt;}
.ws3a{word-spacing:20.669257pt;}
.ws98{word-spacing:20.669523pt;}
.ws231{word-spacing:20.670108pt;}
.ws175{word-spacing:20.675885pt;}
.ws18d{word-spacing:20.722819pt;}
.ws1a3{word-spacing:20.723404pt;}
.ws1dc{word-spacing:20.776381pt;}
.ws1e2{word-spacing:20.776806pt;}
.ws275{word-spacing:20.828614pt;}
.ws1e1{word-spacing:20.828720pt;}
.ws14a{word-spacing:20.828880pt;}
.ws111{word-spacing:20.935418pt;}
.ws10e{word-spacing:20.949543pt;}
.ws126{word-spacing:20.989086pt;}
.wsf{word-spacing:21.094137pt;}
.ws10b{word-spacing:21.095040pt;}
.ws1a7{word-spacing:21.095572pt;}
.ws19d{word-spacing:21.147380pt;}
.ws19b{word-spacing:21.147805pt;}
.ws244{word-spacing:21.148071pt;}
.ws245{word-spacing:21.148815pt;}
.ws8e{word-spacing:21.200941pt;}
.ws24b{word-spacing:21.201313pt;}
.ws24a{word-spacing:21.245255pt;}
.ws140{word-spacing:21.253653pt;}
.ws18{word-spacing:21.255300pt;}
.ws1cc{word-spacing:21.306843pt;}
.ws249{word-spacing:21.306896pt;}
.ws1db{word-spacing:21.307586pt;}
.ws131{word-spacing:21.308012pt;}
.ws274{word-spacing:21.308330pt;}
.ws216{word-spacing:21.414231pt;}
.ws291{word-spacing:21.519442pt;}
.ws46{word-spacing:21.572950pt;}
.ws5a{word-spacing:21.625662pt;}
.ws24f{word-spacing:21.626087pt;}
.ws132{word-spacing:21.678692pt;}
.ws1a5{word-spacing:21.697992pt;}
.ws65{word-spacing:21.732307pt;}
.ws1c3{word-spacing:21.732572pt;}
.ws1c2{word-spacing:21.733369pt;}
.ws21f{word-spacing:21.786772pt;}
.ws215{word-spacing:21.838580pt;}
.ws193{word-spacing:21.891716pt;}
.ws168{word-spacing:21.997617pt;}
.ws8d{word-spacing:21.999477pt;}
.ws184{word-spacing:22.050807pt;}
.ws277{word-spacing:22.104209pt;}
.ws157{word-spacing:22.157399pt;}
.ws1cb{word-spacing:22.210323pt;}
.wscc{word-spacing:22.318190pt;}
.wscb{word-spacing:22.323967pt;}
.ws1aa{word-spacing:22.370636pt;}
.ws194{word-spacing:22.422710pt;}
.ws1f6{word-spacing:22.423294pt;}
.ws7d{word-spacing:22.583235pt;}
.ws6b{word-spacing:22.583660pt;}
.ws7f{word-spacing:22.635096pt;}
.ws7e{word-spacing:22.635946pt;}
.ws38{word-spacing:22.636265pt;}
.ws202{word-spacing:22.636531pt;}
.ws23{word-spacing:22.902054pt;}
.ws102{word-spacing:23.060507pt;}
.ws208{word-spacing:23.061251pt;}
.ws20a{word-spacing:23.113378pt;}
.ws19c{word-spacing:23.122596pt;}
.ws29c{word-spacing:23.220182pt;}
.ws28c{word-spacing:23.220289pt;}
.ws29b{word-spacing:23.220661pt;}
.ws101{word-spacing:23.273160pt;}
.ws19{word-spacing:23.326827pt;}
.wsac{word-spacing:23.327199pt;}
.ws283{word-spacing:23.432941pt;}
.ws284{word-spacing:23.487087pt;}
.ws282{word-spacing:23.538417pt;}
.ws1f7{word-spacing:23.538630pt;}
.wsfa{word-spacing:23.582148pt;}
.ws52{word-spacing:23.593626pt;}
.ws10d{word-spacing:23.625312pt;}
.wsd8{word-spacing:23.645593pt;}
.wsd7{word-spacing:23.682420pt;}
.ws288{word-spacing:23.697933pt;}
.ws1e0{word-spacing:23.698571pt;}
.ws13e{word-spacing:23.751707pt;}
.ws103{word-spacing:23.752238pt;}
.ws228{word-spacing:24.017071pt;}
.ws12d{word-spacing:24.018399pt;}
.ws1e{word-spacing:24.176746pt;}
.ws12b{word-spacing:24.282382pt;}
.ws1c4{word-spacing:24.495725pt;}
.ws25e{word-spacing:24.601891pt;}
.ws25f{word-spacing:24.655931pt;}
.ws1b7{word-spacing:24.814278pt;}
.ws1a8{word-spacing:25.027781pt;}
.ws1d1{word-spacing:25.088290pt;}
.ws20f{word-spacing:25.176399pt;}
.ws5f{word-spacing:25.452023pt;}
.ws209{word-spacing:25.556318pt;}
.ws230{word-spacing:25.664994pt;}
.ws26c{word-spacing:26.301835pt;}
.ws151{word-spacing:26.512192pt;}
.ws145{word-spacing:26.514325pt;}
.wsf1{word-spacing:26.514328pt;}
.ws2a0{word-spacing:26.514647pt;}
.ws241{word-spacing:26.514913pt;}
.ws20c{word-spacing:26.887559pt;}
.ws13f{word-spacing:26.939367pt;}
.ws292{word-spacing:27.578015pt;}
.ws293{word-spacing:27.578068pt;}
.ws2a3{word-spacing:28.215600pt;}
.ws1d5{word-spacing:28.268843pt;}
.wsbc{word-spacing:28.363267pt;}
.wsae{word-spacing:28.746328pt;}
.wsad{word-spacing:28.748864pt;}
.wscd{word-spacing:28.769882pt;}
.ws294{word-spacing:28.959140pt;}
.wsdf{word-spacing:28.959618pt;}
.ws10c{word-spacing:29.054945pt;}
.ws10f{word-spacing:29.055104pt;}
.ws24c{word-spacing:29.490027pt;}
.ws262{word-spacing:29.650180pt;}
.ws164{word-spacing:31.829043pt;}
.ws1c{word-spacing:31.829309pt;}
.ws246{word-spacing:31.987231pt;}
.ws243{word-spacing:34.113010pt;}
.ws11d{word-spacing:35.909325pt;}
.ws11e{word-spacing:37.971765pt;}
.ws242{word-spacing:40.436044pt;}
.ws22f{word-spacing:69.023281pt;}
.ws22e{word-spacing:78.747796pt;}
._1{margin-left:-7.651169pt;}
._27{margin-left:-6.478585pt;}
._17{margin-left:-5.369102pt;}
._2{margin-left:-3.827964pt;}
._0{margin-left:-2.676867pt;}
._3{margin-left:-1.593762pt;}
._21{width:0.890887pt;}
._1d{width:1.861094pt;}
._20{width:3.034463pt;}
._1f{width:5.709960pt;}
._1a{width:7.120985pt;}
._19{width:8.926989pt;}
._22{width:12.384528pt;}
._c{width:13.389022pt;}
._18{width:14.292279pt;}
._8{width:15.887965pt;}
._1c{width:17.105966pt;}
._e{width:18.387621pt;}
._5{width:19.610255pt;}
._15{width:20.562336pt;}
._6{width:21.685825pt;}
._7{width:23.115397pt;}
._11{width:24.228682pt;}
._4{width:25.668460pt;}
._16{width:26.675320pt;}
._13{width:28.112387pt;}
._23{width:29.015766pt;}
._10{width:30.779132pt;}
._9{width:32.203636pt;}
._26{width:33.902005pt;}
._14{width:35.069308pt;}
._f{width:36.453552pt;}
._12{width:38.209874pt;}
._a{width:41.093708pt;}
._28{width:42.456135pt;}
._1b{width:43.729292pt;}
._d{width:45.485395pt;}
._1e{width:46.705994pt;}
._2d{width:47.984831pt;}
._b{width:48.993647pt;}
._29{width:51.174616pt;}
._24{width:56.509757pt;}
._2e{width:58.291297pt;}
._2c{width:59.879814pt;}
._2f{width:64.997314pt;}
._31{width:71.681170pt;}
._2b{width:83.217480pt;}
._30{width:86.241109pt;}
._2a{width:95.379791pt;}
._25{width:154.279182pt;}
.fs7{font-size:26.568262pt;}
.fsa{font-size:28.543774pt;}
.fs5{font-size:31.882127pt;}
.fs10{font-size:32.503438pt;}
.fsf{font-size:36.333283pt;}
.fsb{font-size:36.696928pt;}
.fsd{font-size:37.099188pt;}
.fs4{font-size:37.195460pt;}
.fs3{font-size:42.509325pt;}
.fse{font-size:48.816307pt;}
.fs9{font-size:48.949647pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:53.136523pt;}
.fs8{font-size:53.336000pt;}
.fsc{font-size:61.171592pt;}
.fs1{font-size:63.764255pt;}
.fs0{font-size:76.516892pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:5.736287pt;}
.yc3{bottom:6.883491pt;}
.ycb{bottom:7.266803pt;}
.yc0{bottom:7.647742pt;}
.yb5{bottom:8.031068pt;}
.yb7{bottom:9.177792pt;}
.y15d{bottom:9.567545pt;}
.yb9{bottom:10.707202pt;}
.yc9{bottom:11.855259pt;}
.y133{bottom:12.163275pt;}
.ybd{bottom:13.384669pt;}
.ybb{bottom:13.767355pt;}
.ybf{bottom:16.443489pt;}
.yc2{bottom:16.826175pt;}
.yca{bottom:20.269013pt;}
.yc5{bottom:23.709185pt;}
.y12d{bottom:24.987569pt;}
.yc7{bottom:32.488291pt;}
.y12c{bottom:37.803317pt;}
.y65{bottom:46.968000pt;}
.y137{bottom:49.658749pt;}
.y156{bottom:66.547194pt;}
.yd0{bottom:75.930463pt;}
.y17a{bottom:78.644189pt;}
.yfc{bottom:78.644456pt;}
.y8c{bottom:78.644589pt;}
.yb0{bottom:78.645289pt;}
.y151{bottom:78.645389pt;}
.y1e5{bottom:78.645656pt;}
.y126{bottom:78.645784pt;}
.y21e{bottom:78.645789pt;}
.y288{bottom:78.648590pt;}
.y37{bottom:81.377086pt;}
.y64{bottom:82.395977pt;}
.y155{bottom:83.928730pt;}
.yfa{bottom:91.148761pt;}
.yfb{bottom:91.300849pt;}
.y161{bottom:93.296398pt;}
.y36{bottom:94.528784pt;}
.y179{bottom:94.851800pt;}
.yf9{bottom:94.852066pt;}
.y8b{bottom:94.852200pt;}
.yaf{bottom:94.852900pt;}
.y150{bottom:94.853000pt;}
.y1e4{bottom:94.853266pt;}
.y125{bottom:94.853394pt;}
.y21d{bottom:94.853400pt;}
.y287{bottom:94.854600pt;}
.y254{bottom:101.107846pt;}
.y63{bottom:103.074331pt;}
.y35{bottom:107.679961pt;}
.y178{bottom:111.057810pt;}
.yf8{bottom:111.058077pt;}
.y8a{bottom:111.058210pt;}
.y14f{bottom:111.059010pt;}
.y21c{bottom:111.059410pt;}
.y2ba{bottom:111.060610pt;}
.y286{bottom:111.061677pt;}
.y1e3{bottom:111.111413pt;}
.y253{bottom:117.313856pt;}
.y12b{bottom:117.421297pt;}
.y15b{bottom:117.444939pt;}
.y1ac{bottom:119.091945pt;}
.y62{bottom:119.280341pt;}
.y34{bottom:120.831139pt;}
.y124{bottom:121.757406pt;}
.yad{bottom:122.421978pt;}
.y89{bottom:127.265820pt;}
.y14e{bottom:127.266620pt;}
.y2b9{bottom:127.268220pt;}
.y285{bottom:127.268754pt;}
.y1e2{bottom:127.319023pt;}
.yac{bottom:129.183783pt;}
.yb3{bottom:129.641148pt;}
.y21b{bottom:130.351041pt;}
.y252{bottom:133.521466pt;}
.y33{bottom:133.982836pt;}
.y123{bottom:134.260631pt;}
.y122{bottom:134.414279pt;}
.y136{bottom:134.529126pt;}
.y61{bottom:135.487951pt;}
.y177{bottom:137.128447pt;}
.yf6{bottom:137.535467pt;}
.yf7{bottom:137.954235pt;}
.y121{bottom:137.963403pt;}
.yae{bottom:138.296272pt;}
.yab{bottom:138.296372pt;}
.yf5{bottom:141.238252pt;}
.y88{bottom:143.471831pt;}
.y14d{bottom:143.472631pt;}
.y284{bottom:143.475297pt;}
.y1e1{bottom:143.525033pt;}
.y21a{bottom:146.557051pt;}
.y32{bottom:147.134014pt;}
.y251{bottom:149.727477pt;}
.y60{bottom:151.693962pt;}
.y120{bottom:152.185528pt;}
.y176{bottom:153.334457pt;}
.y2b8{bottom:153.716476pt;}
.y11f{bottom:155.888833pt;}
.y1ab{bottom:156.403144pt;}
.y87{bottom:159.679441pt;}
.y14c{bottom:159.680241pt;}
.y283{bottom:159.682908pt;}
.y1e0{bottom:159.732644pt;}
.y219{bottom:162.764662pt;}
.y250{bottom:165.935087pt;}
.y5f{bottom:167.899972pt;}
.y175{bottom:169.542067pt;}
.y2b7{bottom:169.924086pt;}
.yf4{bottom:171.418428pt;}
.y11e{bottom:172.095910pt;}
.y159{bottom:172.253412pt;}
.y1aa{bottom:172.609154pt;}
.yaa{bottom:173.668407pt;}
.y86{bottom:175.885985pt;}
.y14b{bottom:175.886251pt;}
.y1df{bottom:175.938654pt;}
.y218{bottom:178.970672pt;}
.y131{bottom:181.519742pt;}
.y24f{bottom:182.141097pt;}
.y5e{bottom:184.107582pt;}
.y282{bottom:185.720210pt;}
.y2b6{bottom:186.130097pt;}
.y31{bottom:187.408961pt;}
.yf3{bottom:187.624438pt;}
.y12f{bottom:187.918382pt;}
.y1a9{bottom:188.816764pt;}
.ya9{bottom:189.876017pt;}
.y154{bottom:190.549127pt;}
.y14a{bottom:192.092261pt;}
.y85{bottom:192.092528pt;}
.y1de{bottom:192.144664pt;}
.y217{bottom:195.178282pt;}
.y174{bottom:195.612704pt;}
.y24e{bottom:198.348708pt;}
.y11d{bottom:198.999921pt;}
.y5d{bottom:200.313593pt;}
.y281{bottom:201.927287pt;}
.y2b5{bottom:202.337707pt;}
.y160{bottom:202.646132pt;}
.y30{bottom:203.614971pt;}
.yf2{bottom:203.832048pt;}
.y1a8{bottom:205.022775pt;}
.ya8{bottom:206.250303pt;}
.y84{bottom:208.300138pt;}
.y216{bottom:211.384293pt;}
.y173{bottom:211.819248pt;}
.y24d{bottom:214.555251pt;}
.y11c{bottom:215.206465pt;}
.y1dd{bottom:216.420411pt;}
.y149{bottom:217.843016pt;}
.y280{bottom:218.133297pt;}
.y2f{bottom:219.822581pt;}
.yf1{bottom:220.038059pt;}
.y1a7{bottom:221.230385pt;}
.ya7{bottom:222.457913pt;}
.y15a{bottom:224.762838pt;}
.y5c{bottom:225.054963pt;}
.y215{bottom:227.590303pt;}
.y11a{bottom:227.710770pt;}
.y11b{bottom:227.862858pt;}
.y172{bottom:228.025258pt;}
.y2b4{bottom:228.785429pt;}
.y24c{bottom:230.761795pt;}
.y119{bottom:231.414075pt;}
.ycf{bottom:231.864926pt;}
.y132{bottom:233.126322pt;}
.y83{bottom:233.472197pt;}
.y27f{bottom:234.340374pt;}
.y2e{bottom:236.028592pt;}
.yf0{bottom:236.245136pt;}
.y1a6{bottom:237.436395pt;}
.y214{bottom:243.797913pt;}
.y2b3{bottom:244.993040pt;}
.y12a{bottom:245.951190pt;}
.y118{bottom:247.620086pt;}
.y1dc{bottom:247.858383pt;}
.y27e{bottom:250.546384pt;}
.y2d{bottom:252.234602pt;}
.ya6{bottom:252.284338pt;}
.yef{bottom:252.452213pt;}
.y148{bottom:253.546401pt;}
.y1a5{bottom:253.644006pt;}
.y171{bottom:254.095895pt;}
.y24b{bottom:254.939004pt;}
.y129{bottom:258.766938pt;}
.y213{bottom:260.004457pt;}
.y2b2{bottom:261.199050pt;}
.y5b{bottom:263.814207pt;}
.y117{bottom:263.826096pt;}
.y1db{bottom:264.065460pt;}
.y27d{bottom:266.753994pt;}
.y2c{bottom:268.442212pt;}
.yee{bottom:268.658756pt;}
.y147{bottom:269.752411pt;}
.y1a4{bottom:269.850016pt;}
.y170{bottom:270.303505pt;}
.y135{bottom:270.589262pt;}
.y82{bottom:273.483531pt;}
.y212{bottom:276.211001pt;}
.y2b1{bottom:277.406660pt;}
.y5a{bottom:280.021818pt;}
.y1da{bottom:280.271470pt;}
.y158{bottom:281.505808pt;}
.ya5{bottom:282.111296pt;}
.y2b{bottom:284.648222pt;}
.yed{bottom:285.210117pt;}
.y146{bottom:285.960021pt;}
.y1a3{bottom:286.057093pt;}
.y16f{bottom:286.509515pt;}
.y81{bottom:289.691141pt;}
.y24a{bottom:292.068460pt;}
.y211{bottom:292.417544pt;}
.y27c{bottom:292.791296pt;}
.y116{bottom:293.387441pt;}
.y59{bottom:296.228361pt;}
.y1d9{bottom:296.477480pt;}
.ya4{bottom:298.318906pt;}
.y2a{bottom:300.855833pt;}
.y153{bottom:301.073986pt;}
.yec{bottom:301.416127pt;}
.y145{bottom:302.166032pt;}
.y1a2{bottom:302.264170pt;}
.y2b0{bottom:303.854916pt;}
.y80{bottom:305.897151pt;}
.y249{bottom:308.275004pt;}
.y210{bottom:308.624088pt;}
.y27b{bottom:308.998373pt;}
.y115{bottom:309.595051pt;}
.y16e{bottom:311.815981pt;}
.y58{bottom:312.434905pt;}
.y1d8{bottom:312.685091pt;}
.y15f{bottom:313.648615pt;}
.ya3{bottom:314.524916pt;}
.y29{bottom:317.061843pt;}
.yeb{bottom:317.623738pt;}
.y144{bottom:318.373642pt;}
.y1a1{bottom:318.471247pt;}
.y2af{bottom:320.062526pt;}
.y7f{bottom:322.104762pt;}
.y248{bottom:324.481547pt;}
.y20f{bottom:324.830631pt;}
.y27a{bottom:325.204383pt;}
.y114{bottom:325.801061pt;}
.y16d{bottom:328.023591pt;}
.y57{bottom:328.641449pt;}
.y1d7{bottom:328.891101pt;}
.ya2{bottom:330.732526pt;}
.y15c{bottom:333.001049pt;}
.y28{bottom:333.269453pt;}
.yea{bottom:333.829748pt;}
.y143{bottom:334.579652pt;}
.y1a0{bottom:334.678324pt;}
.y2ae{bottom:336.268537pt;}
.y7e{bottom:338.310772pt;}
.y128{bottom:338.384918pt;}
.y247{bottom:340.688091pt;}
.y20e{bottom:341.036642pt;}
.y279{bottom:341.411994pt;}
.y113{bottom:342.007605pt;}
.y16c{bottom:344.229601pt;}
.y56{bottom:344.847992pt;}
.y1d6{bottom:345.098711pt;}
.ya1{bottom:346.938537pt;}
.y27{bottom:349.475464pt;}
.ye9{bottom:350.037358pt;}
.y142{bottom:350.785662pt;}
.y19f{bottom:350.884334pt;}
.y7d{bottom:354.518382pt;}
.y134{bottom:355.492440pt;}
.y246{bottom:356.895701pt;}
.y20d{bottom:357.244252pt;}
.y278{bottom:357.618004pt;}
.y112{bottom:358.214148pt;}
.y16b{bottom:360.436678pt;}
.y55{bottom:361.054536pt;}
.y1d5{bottom:361.304722pt;}
.y2ad{bottom:362.717726pt;}
.ya0{bottom:363.144547pt;}
.y26{bottom:365.681474pt;}
.ye8{bottom:366.243369pt;}
.y141{bottom:366.993273pt;}
.y19e{bottom:367.090344pt;}
.y7c{bottom:370.724393pt;}
.y2d8{bottom:371.174948pt;}
.y245{bottom:373.102245pt;}
.y277{bottom:373.824014pt;}
.y111{bottom:374.420692pt;}
.y20c{bottom:376.534283pt;}
.y16a{bottom:376.643755pt;}
.y54{bottom:377.261079pt;}
.y1d4{bottom:377.512332pt;}
.y2ac{bottom:378.923736pt;}
.y9f{bottom:379.520432pt;}
.y25{bottom:381.889084pt;}
.ye7{bottom:382.449379pt;}
.y140{bottom:383.199283pt;}
.y19d{bottom:383.297955pt;}
.y7b{bottom:386.930403pt;}
.y2d7{bottom:387.382559pt;}
.y157{bottom:389.036651pt;}
.y244{bottom:389.308255pt;}
.y276{bottom:390.031625pt;}
.y110{bottom:390.627236pt;}
.y20b{bottom:392.741893pt;}
.y169{bottom:392.850832pt;}
.y53{bottom:393.467090pt;}
.y1d3{bottom:393.718342pt;}
.y2ab{bottom:395.129746pt;}
.y9e{bottom:395.726443pt;}
.y24{bottom:398.095094pt;}
.ye6{bottom:398.656989pt;}
.y13f{bottom:399.406893pt;}
.y19c{bottom:399.503965pt;}
.y130{bottom:402.484123pt;}
.y7a{bottom:403.138013pt;}
.y243{bottom:405.515865pt;}
.y10f{bottom:406.833779pt;}
.y12e{bottom:408.881430pt;}
.y20a{bottom:408.947904pt;}
.y168{bottom:409.057909pt;}
.y152{bottom:409.932496pt;}
.y52{bottom:409.970582pt;}
.y1d2{bottom:409.976488pt;}
.y2aa{bottom:411.337357pt;}
.y9d{bottom:411.934053pt;}
.y2d6{bottom:414.215634pt;}
.y23{bottom:414.302705pt;}
.y19b{bottom:415.711575pt;}
.y275{bottom:416.069860pt;}
.y79{bottom:419.344023pt;}
.y242{bottom:421.721876pt;}
.y15e{bottom:421.886827pt;}
.ye5{bottom:423.488897pt;}
.y209{bottom:425.155514pt;}
.y13e{bottom:425.156047pt;}
.y167{bottom:425.263919pt;}
.y51{bottom:426.178192pt;}
.y1d1{bottom:426.184099pt;}
.y9c{bottom:428.140063pt;}
.y2d5{bottom:430.423244pt;}
.y10e{bottom:431.044323pt;}
.y19a{bottom:431.917585pt;}
.y274{bottom:432.275870pt;}
.y78{bottom:436.075527pt;}
.y2a9{bottom:437.785612pt;}
.y241{bottom:437.929486pt;}
.y22{bottom:438.881534pt;}
.ye4{bottom:439.694908pt;}
.y208{bottom:441.361524pt;}
.y166{bottom:441.469930pt;}
.y50{bottom:442.384202pt;}
.y1d0{bottom:442.390109pt;}
.y9b{bottom:444.347674pt;}
.y273{bottom:448.482947pt;}
.y77{bottom:452.282070pt;}
.y2a8{bottom:453.993223pt;}
.y240{bottom:454.135496pt;}
.y13d{bottom:454.881534pt;}
.y199{bottom:456.157331pt;}
.y2d4{bottom:457.256319pt;}
.y207{bottom:457.569135pt;}
.y4f{bottom:458.591812pt;}
.y1cf{bottom:458.597719pt;}
.y9a{bottom:460.553684pt;}
.y10d{bottom:462.292285pt;}
.y272{bottom:464.688957pt;}
.y165{bottom:465.647139pt;}
.y76{bottom:468.488614pt;}
.y2a7{bottom:470.199233pt;}
.y23f{bottom:470.343107pt;}
.y13c{bottom:471.088611pt;}
.ye3{bottom:472.740827pt;}
.y2d3{bottom:473.463929pt;}
.y206{bottom:473.775145pt;}
.y4e{bottom:474.797823pt;}
.y1ce{bottom:474.803730pt;}
.y10c{bottom:475.214278pt;}
.y99{bottom:476.761294pt;}
.y21{bottom:477.171448pt;}
.y10b{bottom:478.498296pt;}
.y271{bottom:480.894968pt;}
.y75{bottom:484.695158pt;}
.ye1{bottom:485.650872pt;}
.ye2{bottom:485.663886pt;}
.y2a6{bottom:486.406843pt;}
.y23e{bottom:486.549117pt;}
.y13b{bottom:487.294621pt;}
.y198{bottom:487.491164pt;}
.ye0{bottom:488.948437pt;}
.y2d2{bottom:489.670473pt;}
.y205{bottom:489.981155pt;}
.y164{bottom:490.477580pt;}
.y4d{bottom:491.003833pt;}
.y1cd{bottom:491.009740pt;}
.y98{bottom:492.967304pt;}
.y20{bottom:493.379058pt;}
.y10a{bottom:494.705906pt;}
.y270{bottom:497.102578pt;}
.y74{bottom:500.901701pt;}
.y23d{bottom:502.755127pt;}
.y197{bottom:503.698241pt;}
.ydf{bottom:505.154447pt;}
.y2d1{bottom:505.876483pt;}
.y204{bottom:506.188766pt;}
.y163{bottom:506.683590pt;}
.y4c{bottom:507.211443pt;}
.y1cc{bottom:507.217350pt;}
.y97{bottom:509.173315pt;}
.y1f{bottom:509.585069pt;}
.y2a5{bottom:512.854565pt;}
.y73{bottom:517.108245pt;}
.y23c{bottom:518.962738pt;}
.y196{bottom:519.904251pt;}
.y107{bottom:520.528077pt;}
.y108{bottom:520.946845pt;}
.y109{bottom:520.947365pt;}
.yde{bottom:521.362057pt;}
.y203{bottom:522.394776pt;}
.y162{bottom:522.891201pt;}
.y26f{bottom:523.140813pt;}
.y4b{bottom:523.417454pt;}
.y1cb{bottom:523.423361pt;}
.y106{bottom:524.230868pt;}
.y96{bottom:525.380392pt;}
.y1e{bottom:525.792679pt;}
.y2a4{bottom:529.062176pt;}
.y13a{bottom:531.678573pt;}
.y2d0{bottom:532.711158pt;}
.y72{bottom:533.314788pt;}
.y23b{bottom:535.168748pt;}
.y195{bottom:536.110262pt;}
.ydd{bottom:537.568068pt;}
.y202{bottom:538.601853pt;}
.y26e{bottom:539.347357pt;}
.y4a{bottom:539.625064pt;}
.y1ca{bottom:539.630971pt;}
.y95{bottom:541.586402pt;}
.y1d{bottom:541.998689pt;}
.y2a3{bottom:545.268186pt;}
.y139{bottom:547.885650pt;}
.y2cf{bottom:548.917702pt;}
.y71{bottom:549.522399pt;}
.y23a{bottom:551.376358pt;}
.y194{bottom:552.317872pt;}
.y105{bottom:553.756344pt;}
.ydc{bottom:553.774078pt;}
.y201{bottom:554.808396pt;}
.y26d{bottom:555.553367pt;}
.y49{bottom:555.831074pt;}
.y1c9{bottom:555.836981pt;}
.y94{bottom:557.961754pt;}
.y1c{bottom:558.204700pt;}
.y138{bottom:564.092194pt;}
.y2ce{bottom:565.125312pt;}
.y70{bottom:565.728409pt;}
.y239{bottom:567.582368pt;}
.y193{bottom:568.557217pt;}
.y104{bottom:569.963954pt;}
.ydb{bottom:569.981688pt;}
.y2a2{bottom:571.717375pt;}
.y26c{bottom:571.760977pt;}
.y48{bottom:572.037084pt;}
.y1c8{bottom:572.044591pt;}
.y200{bottom:574.100028pt;}
.y93{bottom:574.168831pt;}
.y1b{bottom:574.412310pt;}
.y6f{bottom:581.934419pt;}
.y238{bottom:583.788379pt;}
.y192{bottom:584.764827pt;}
.y103{bottom:586.169964pt;}
.yda{bottom:586.187699pt;}
.y2a1{bottom:587.923919pt;}
.y26b{bottom:587.966988pt;}
.y47{bottom:588.244695pt;}
.y1c7{bottom:588.250602pt;}
.y1ff{bottom:590.306038pt;}
.y92{bottom:590.375908pt;}
.y1a{bottom:590.618320pt;}
.y2cd{bottom:591.958387pt;}
.y127{bottom:593.583002pt;}
.y6e{bottom:598.142030pt;}
.y237{bottom:599.995989pt;}
.y191{bottom:600.970838pt;}
.y102{bottom:602.377575pt;}
.yd9{bottom:602.395309pt;}
.y2a0{bottom:604.129929pt;}
.y26a{bottom:604.174598pt;}
.y46{bottom:604.450705pt;}
.y1c6{bottom:604.508748pt;}
.y1fe{bottom:606.513648pt;}
.y91{bottom:606.581918pt;}
.y19{bottom:606.825930pt;}
.y2cc{bottom:608.165997pt;}
.y6d{bottom:614.348040pt;}
.y236{bottom:616.202533pt;}
.y190{bottom:617.176848pt;}
.y101{bottom:618.600786pt;}
.yd8{bottom:618.601319pt;}
.y29f{bottom:620.337539pt;}
.y1c5{bottom:620.716358pt;}
.y45{bottom:620.954597pt;}
.y1fd{bottom:622.719658pt;}
.y90{bottom:622.787929pt;}
.y18{bottom:623.031941pt;}
.y2cb{bottom:624.372008pt;}
.y269{bottom:630.211900pt;}
.y6c{bottom:631.079543pt;}
.y235{bottom:632.410143pt;}
.y18f{bottom:633.384458pt;}
.yd7{bottom:634.807329pt;}
.y100{bottom:634.808396pt;}
.y1c4{bottom:636.922369pt;}
.y44{bottom:637.160607pt;}
.y1fc{bottom:638.925669pt;}
.y8f{bottom:638.995539pt;}
.y17{bottom:639.239551pt;}
.y268{bottom:646.419510pt;}
.y29e{bottom:646.785262pt;}
.y6b{bottom:647.285553pt;}
.y234{bottom:648.616153pt;}
.y18e{bottom:649.590469pt;}
.yff{bottom:651.014406pt;}
.yd6{bottom:651.014940pt;}
.y2ca{bottom:651.206683pt;}
.y1c3{bottom:653.129979pt;}
.y43{bottom:653.368217pt;}
.y1fb{bottom:655.133279pt;}
.y16{bottom:655.445561pt;}
.y267{bottom:662.625520pt;}
.y29d{bottom:662.992872pt;}
.y8e{bottom:663.491030pt;}
.y6a{bottom:663.491564pt;}
.y233{bottom:664.823764pt;}
.y18d{bottom:665.798079pt;}
.yfe{bottom:667.220417pt;}
.yd5{bottom:667.220950pt;}
.y2c9{bottom:667.412693pt;}
.y1c2{bottom:669.335989pt;}
.y42{bottom:669.574228pt;}
.y1fa{bottom:671.339289pt;}
.y15{bottom:671.651572pt;}
.y266{bottom:678.833131pt;}
.y29c{bottom:679.198882pt;}
.y8d{bottom:679.698641pt;}
.y69{bottom:679.699174pt;}
.y232{bottom:681.030307pt;}
.y18c{bottom:682.004089pt;}
.yfd{bottom:683.428027pt;}
.yd4{bottom:683.428560pt;}
.y2c8{bottom:683.618703pt;}
.y1c1{bottom:685.542533pt;}
.y41{bottom:685.781838pt;}
.y1f9{bottom:687.546900pt;}
.y14{bottom:687.859182pt;}
.y29b{bottom:695.406493pt;}
.y231{bottom:697.236851pt;}
.y18b{bottom:698.210099pt;}
.y1c0{bottom:701.801612pt;}
.y40{bottom:701.987848pt;}
.y1f8{bottom:703.752910pt;}
.y13{bottom:704.065192pt;}
.y265{bottom:704.871366pt;}
.y2c7{bottom:710.453378pt;}
.y18a{bottom:714.417710pt;}
.y1bf{bottom:718.008156pt;}
.y3f{bottom:718.195459pt;}
.y1f7{bottom:719.958920pt;}
.y12{bottom:720.272803pt;}
.y264{bottom:721.077376pt;}
.y230{bottom:721.414060pt;}
.y29a{bottom:721.854748pt;}
.y68{bottom:722.427844pt;}
.yd3{bottom:726.156163pt;}
.y2c6{bottom:726.659922pt;}
.y1be{bottom:734.214700pt;}
.y3e{bottom:734.401469pt;}
.y1f6{bottom:736.166530pt;}
.y11{bottom:736.479346pt;}
.y263{bottom:737.283386pt;}
.y299{bottom:738.062359pt;}
.y67{bottom:738.634387pt;}
.y189{bottom:738.657455pt;}
.yd2{bottom:742.363774pt;}
.y2c5{bottom:742.867532pt;}
.y1bd{bottom:750.421243pt;}
.y3d{bottom:750.607479pt;}
.y1f5{bottom:752.372541pt;}
.y10{bottom:752.685890pt;}
.y262{bottom:753.490997pt;}
.y298{bottom:754.268369pt;}
.y66{bottom:754.840397pt;}
.y22f{bottom:758.543516pt;}
.y2c4{bottom:759.074076pt;}
.y1bc{bottom:766.628854pt;}
.y3c{bottom:766.815090pt;}
.y1f4{bottom:768.580151pt;}
.yf{bottom:768.893500pt;}
.y261{bottom:769.697007pt;}
.y188{bottom:769.991288pt;}
.y297{bottom:770.474379pt;}
.yc6{bottom:771.854581pt;}
.y22e{bottom:774.750060pt;}
.yc4{bottom:780.971037pt;}
.y1bb{bottom:782.834864pt;}
.y3b{bottom:783.021100pt;}
.ye{bottom:785.099510pt;}
.y260{bottom:785.904617pt;}
.y2c3{bottom:785.908751pt;}
.y187{bottom:786.197299pt;}
.y296{bottom:786.681456pt;}
.y1f3{bottom:787.870716pt;}
.y22d{bottom:790.957670pt;}
.ybc{bottom:791.664905pt;}
.y1ba{bottom:799.040874pt;}
.y3a{bottom:799.228710pt;}
.yd{bottom:801.307121pt;}
.y2c2{bottom:802.114761pt;}
.y295{bottom:802.887466pt;}
.y1f2{bottom:804.078326pt;}
.y22c{bottom:807.163680pt;}
.y186{bottom:810.438644pt;}
.y25f{bottom:811.941919pt;}
.y1b9{bottom:815.248484pt;}
.y39{bottom:815.434720pt;}
.y2c1{bottom:818.322371pt;}
.y1f1{bottom:820.284336pt;}
.y22b{bottom:823.371291pt;}
.y25e{bottom:828.149529pt;}
.y294{bottom:829.336655pt;}
.y1b8{bottom:831.506631pt;}
.y38{bottom:831.641264pt;}
.yc{bottom:831.641971pt;}
.y2c0{bottom:834.528382pt;}
.y1f0{bottom:836.491947pt;}
.y22a{bottom:839.577301pt;}
.y293{bottom:845.543199pt;}
.y1b7{bottom:847.714241pt;}
.y185{bottom:847.749843pt;}
.yc1{bottom:847.925051pt;}
.y2bf{bottom:850.734392pt;}
.y1ef{bottom:852.697957pt;}
.y25d{bottom:854.188298pt;}
.y229{bottom:855.783311pt;}
.y292{bottom:861.750276pt;}
.y1b6{bottom:863.920251pt;}
.y184{bottom:863.955853pt;}
.y25c{bottom:870.394308pt;}
.y1ee{bottom:871.989588pt;}
.y228{bottom:871.990921pt;}
.y2be{bottom:877.569067pt;}
.y291{bottom:877.956820pt;}
.y1b5{bottom:880.126261pt;}
.y183{bottom:880.161863pt;}
.yb2{bottom:882.412109pt;}
.y25b{bottom:886.601919pt;}
.y1ed{bottom:888.195598pt;}
.y227{bottom:888.196932pt;}
.ycc{bottom:889.141779pt;}
.y5{bottom:890.357706pt;}
.y8{bottom:890.357840pt;}
.yb{bottom:890.357973pt;}
.yc8{bottom:890.940535pt;}
.y2bd{bottom:893.775077pt;}
.y290{bottom:894.163897pt;}
.y1b4{bottom:896.333872pt;}
.y182{bottom:896.369474pt;}
.y25a{bottom:902.807929pt;}
.y1ec{bottom:904.403209pt;}
.y226{bottom:904.404542pt;}
.ycd{bottom:906.733325pt;}
.y4{bottom:908.955970pt;}
.y7{bottom:908.956103pt;}
.ya{bottom:908.956236pt;}
.y2bc{bottom:909.982688pt;}
.y28f{bottom:910.370440pt;}
.y1b3{bottom:912.539882pt;}
.y181{bottom:912.575484pt;}
.y259{bottom:919.013939pt;}
.y1eb{bottom:920.609752pt;}
.y225{bottom:920.611086pt;}
.y2bb{bottom:926.189231pt;}
.y3{bottom:927.554233pt;}
.y6{bottom:927.554366pt;}
.y9{bottom:927.554499pt;}
.y1b2{bottom:928.747492pt;}
.y180{bottom:928.783094pt;}
.yd1{bottom:930.113161pt;}
.ybe{bottom:932.806629pt;}
.yb8{bottom:934.284036pt;}
.y1ea{bottom:936.816296pt;}
.y224{bottom:936.817629pt;}
.y28e{bottom:936.819629pt;}
.yb6{bottom:943.923184pt;}
.y1b1{bottom:944.953503pt;}
.y17f{bottom:944.989638pt;}
.y258{bottom:945.052708pt;}
.y1e9{bottom:953.023906pt;}
.y223{bottom:953.024173pt;}
.y28d{bottom:953.025640pt;}
.y1b0{bottom:961.161113pt;}
.y17e{bottom:961.196181pt;}
.y257{bottom:961.260318pt;}
.y1e8{bottom:969.229916pt;}
.y222{bottom:969.230716pt;}
.y28c{bottom:969.231650pt;}
.yba{bottom:974.332705pt;}
.y2{bottom:975.340489pt;}
.y1af{bottom:977.367123pt;}
.y17d{bottom:977.403792pt;}
.y256{bottom:977.466328pt;}
.y221{bottom:985.437260pt;}
.y1e7{bottom:985.437527pt;}
.y28b{bottom:985.439260pt;}
.yb4{bottom:989.632136pt;}
.y1ae{bottom:993.573134pt;}
.y17c{bottom:993.609802pt;}
.y255{bottom:993.672338pt;}
.y1{bottom:996.595151pt;}
.y1e6{bottom:1001.643537pt;}
.y220{bottom:1001.643804pt;}
.y28a{bottom:1001.645270pt;}
.y1ad{bottom:1017.848881pt;}
.y17b{bottom:1017.849547pt;}
.y21f{bottom:1017.851414pt;}
.y289{bottom:1017.852881pt;}
.yb1{bottom:1062.759793pt;}
.h21{height:15.679451pt;}
.h15{height:19.885394pt;}
.h16{height:21.122393pt;}
.h17{height:22.180309pt;}
.hb{height:23.178307pt;}
.h3a{height:24.869574pt;}
.h11{height:26.148408pt;}
.h18{height:26.769605pt;}
.h19{height:27.155727pt;}
.h1d{height:27.534177pt;}
.h39{height:27.799929pt;}
.h36{height:28.259147pt;}
.h1c{height:29.446272pt;}
.h9{height:30.904280pt;}
.h1b{height:32.122939pt;}
.h1a{height:33.270463pt;}
.h20{height:33.270997pt;}
.h14{height:34.950048pt;}
.h38{height:36.451655pt;}
.h12{height:36.695168pt;}
.h7{height:36.770474pt;}
.h37{height:37.184297pt;}
.h8{height:38.630252pt;}
.hd{height:39.852393pt;}
.h24{height:40.741891pt;}
.h30{height:40.748185pt;}
.he{height:41.698319pt;}
.h6{height:42.594522pt;}
.h23{height:43.676517pt;}
.h4{height:44.124864pt;}
.ha{height:46.327503pt;}
.h5{height:46.356613pt;}
.hc{height:47.076606pt;}
.h26{height:51.766323pt;}
.h32{height:52.593289pt;}
.h2b{height:52.835123pt;}
.h3{height:52.949689pt;}
.h29{height:52.988463pt;}
.h1e{height:53.156258pt;}
.h2c{height:53.394502pt;}
.h27{height:53.394523pt;}
.h31{height:53.398684pt;}
.h34{height:53.441393pt;}
.h25{height:53.932150pt;}
.h2d{height:56.534360pt;}
.h2f{height:56.536441pt;}
.h2a{height:61.134430pt;}
.h28{height:63.788750pt;}
.h2e{height:66.530594pt;}
.h33{height:67.597314pt;}
.h1f{height:71.877060pt;}
.hf{height:75.800003pt;}
.h10{height:86.933413pt;}
.h13{height:145.701951pt;}
.h22{height:259.279630pt;}
.h35{height:437.553877pt;}
.h2{height:1096.094793pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:89.486207pt;}
.wb{width:90.633198pt;}
.w3{width:99.428971pt;}
.w7{width:104.018267pt;}
.w6{width:108.607030pt;}
.w9{width:108.989316pt;}
.w4{width:148.760771pt;}
.w8{width:172.471290pt;}
.wa{width:265.781288pt;}
.wd{width:309.934163pt;}
.w2{width:385.096587pt;}
.wc{width:650.112504pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:3.266830pt;}
.x26{left:5.105455pt;}
.x25{left:6.736337pt;}
.x2c{left:8.104405pt;}
.x32{left:9.159125pt;}
.x4a{left:10.378119pt;}
.x27{left:13.320666pt;}
.x4b{left:15.936210pt;}
.x23{left:16.894578pt;}
.x2f{left:18.931613pt;}
.x4c{left:26.995096pt;}
.x2a{left:28.029401pt;}
.x2e{left:29.482807pt;}
.x28{left:33.630481pt;}
.x31{left:39.367702pt;}
.x21{left:46.230311pt;}
.x5f{left:64.459224pt;}
.x59{left:70.071354pt;}
.x5e{left:71.101023pt;}
.xe{left:73.306773pt;}
.x57{left:78.989533pt;}
.xd{left:89.247170pt;}
.x56{left:90.567192pt;}
.x22{left:93.466407pt;}
.x5{left:97.346295pt;}
.x1d{left:99.890328pt;}
.x1{left:101.115723pt;}
.x58{left:102.947531pt;}
.x4{left:104.178410pt;}
.x3{left:121.378203pt;}
.x4f{left:124.469957pt;}
.x4d{left:126.392719pt;}
.x10{left:130.002634pt;}
.x4e{left:144.490958pt;}
.x34{left:146.118707pt;}
.x37{left:148.739358pt;}
.x50{left:161.761154pt;}
.xf{left:166.371292pt;}
.x5d{left:174.654067pt;}
.x52{left:175.594646pt;}
.x5a{left:177.688232pt;}
.x35{left:190.981363pt;}
.xc{left:192.473664pt;}
.x38{left:194.453603pt;}
.x16{left:203.804457pt;}
.x51{left:206.595129pt;}
.x24{left:212.897312pt;}
.x2{left:222.595264pt;}
.x39{left:224.074898pt;}
.x3a{left:247.536284pt;}
.x53{left:255.529560pt;}
.x54{left:260.218341pt;}
.x55{left:261.779352pt;}
.x8{left:280.000627pt;}
.x36{left:294.704829pt;}
.x2d{left:311.804924pt;}
.x20{left:312.807641pt;}
.x7{left:320.123966pt;}
.x1e{left:337.548878pt;}
.x29{left:341.847759pt;}
.x6{left:357.529970pt;}
.x3b{left:361.952858pt;}
.x15{left:382.649333pt;}
.x1c{left:397.768000pt;}
.x60{left:404.633432pt;}
.x12{left:413.481341pt;}
.x14{left:425.967965pt;}
.x11{left:429.421738pt;}
.x61{left:433.406737pt;}
.x44{left:435.399877pt;}
.x45{left:446.691068pt;}
.x5b{left:450.261846pt;}
.x30{left:452.867977pt;}
.x17{left:456.131580pt;}
.x3c{left:465.726406pt;}
.x18{left:486.502538pt;}
.x3d{left:495.348741pt;}
.x13{left:504.639232pt;}
.x48{left:510.850876pt;}
.x5c{left:514.462656pt;}
.x33{left:540.682766pt;}
.x19{left:547.639382pt;}
.x49{left:553.747820pt;}
.xb{left:558.299955pt;}
.xa{left:560.347977pt;}
.x46{left:562.498925pt;}
.x3e{left:569.842052pt;}
.x1a{left:576.134566pt;}
.x2b{left:594.363051pt;}
.x9{left:596.183102pt;}
.x1b{left:609.474767pt;}
.x3f{left:621.768528pt;}
.x40{left:652.459622pt;}
.x41{left:682.082517pt;}
.x43{left:688.350457pt;}
.x47{left:690.802686pt;}
.x42{left:723.990745pt;}
}




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