
    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_d7966435edd547d62ef8e64e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_202ebd91d4c89ff2870224bc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ee8a4e2c74d37e34d8ef50da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_0aa7550a27bdaef061c242ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_829705473346318a86fb72bf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7bd0f7a5c823278097f640f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.022000;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_8d53bbc69bd4284f63d61d82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_80c18e8997d7c22fe98c997c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b7392c069e1a60bd90aa1cf5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905000;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_64a14b281df94d97552dd817.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a6e18687827587647f95c43.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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_c00609d5fbe48c7bc16202fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.851000;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_feedad51f05f4346483ca172.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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_e1a7031b792fb19be363cbaf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8c58866cfb2e90217d1d5daf.woff2')format("woff");}.fff{font-family:fff;line-height:1.022000;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_d88cb167ce243b31c1f9bcf4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;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_e2684a544c6ef38fcabad172.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908000;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_d82d8e2f0ece165277440fa5.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.399000;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:ff13;src:url('chunks/assets/font_71fb2347238fe9be6a347e35.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cdbf2caadadeaba4680b1981.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f99166a1359afc4c4f50fc64.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.795000;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:ff16;src:url('chunks/assets/font_9cd565f46936a031cd01ba9d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861000;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:ff17;src:url('chunks/assets/font_b9987d46b9e302b1590e7e6e.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_13de2b2b372febf96e43c657.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.711000;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:ff19;src:url('chunks/assets/font_a8b05bfabed3e534c3a19050.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.656000;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);}
.va{vertical-align:-62.760000px;}
.vb{vertical-align:-44.832000px;}
.v2{vertical-align:-22.854000px;}
.v6{vertical-align:-17.934000px;}
.v4{vertical-align:-8.970000px;}
.v7{vertical-align:-5.976000px;}
.vd{vertical-align:-3.828000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:5.982000px;}
.v12{vertical-align:13.596000px;}
.v3{vertical-align:15.114000px;}
.ve{vertical-align:17.334000px;}
.v1{vertical-align:21.690000px;}
.v10{vertical-align:36.462000px;}
.vc{vertical-align:41.004000px;}
.v5{vertical-align:44.832000px;}
.v11{vertical-align:56.790000px;}
.v9{vertical-align:63.246000px;}
.vf{vertical-align:84.282000px;}
.v8{vertical-align:107.910000px;}
.ls5{letter-spacing:0.000000px;}
.ls7d{letter-spacing:0.000300px;}
.ls32{letter-spacing:0.000388px;}
.ls76{letter-spacing:0.000421px;}
.ls42{letter-spacing:0.000767px;}
.ls2e{letter-spacing:0.000775px;}
.ls69{letter-spacing:0.000780px;}
.ls33{letter-spacing:0.000973px;}
.ls3{letter-spacing:0.001002px;}
.ls4d{letter-spacing:0.001120px;}
.ls71{letter-spacing:0.001559px;}
.ls73{letter-spacing:0.001715px;}
.ls15{letter-spacing:0.001866px;}
.ls38{letter-spacing:0.002245px;}
.ls79{letter-spacing:0.002525px;}
.ls72{letter-spacing:0.002959px;}
.ls7c{letter-spacing:0.003093px;}
.ls13{letter-spacing:0.003269px;}
.ls2f{letter-spacing:0.003413px;}
.ls10{letter-spacing:0.004200px;}
.ls77{letter-spacing:0.004363px;}
.ls5c{letter-spacing:0.004648px;}
.ls78{letter-spacing:0.006421px;}
.ls7b{letter-spacing:1.534985px;}
.ls6c{letter-spacing:2.322365px;}
.ls49{letter-spacing:2.420908px;}
.ls0{letter-spacing:2.984525px;}
.ls23{letter-spacing:2.989140px;}
.ls18{letter-spacing:2.990525px;}
.ls82{letter-spacing:2.996207px;}
.ls74{letter-spacing:3.768691px;}
.ls55{letter-spacing:3.994868px;}
.ls53{letter-spacing:4.000868px;}
.ls22{letter-spacing:5.408908px;}
.ls68{letter-spacing:5.853358px;}
.ls51{letter-spacing:6.433866px;}
.ls34{letter-spacing:6.443791px;}
.ls5b{letter-spacing:6.513220px;}
.ls7e{letter-spacing:6.517690px;}
.ls7a{letter-spacing:8.158738px;}
.ls75{letter-spacing:8.164738px;}
.ls30{letter-spacing:8.308808px;}
.ls44{letter-spacing:8.370300px;}
.ls3a{letter-spacing:9.956338px;}
.ls19{letter-spacing:9.962338px;}
.ls29{letter-spacing:10.901607px;}
.ls6a{letter-spacing:12.289559px;}
.ls4a{letter-spacing:13.278538px;}
.ls52{letter-spacing:13.284538px;}
.ls6e{letter-spacing:14.900685px;}
.ls62{letter-spacing:15.356004px;}
.ls64{letter-spacing:15.361559px;}
.lse{letter-spacing:15.971607px;}
.ls17{letter-spacing:16.252438px;}
.ls1c{letter-spacing:16.601607px;}
.ls2b{letter-spacing:16.602538px;}
.ls2a{letter-spacing:16.604338px;}
.ls4b{letter-spacing:16.605269px;}
.ls66{letter-spacing:17.688365px;}
.ls1b{letter-spacing:18.214648px;}
.ls65{letter-spacing:18.427002px;}
.ls6f{letter-spacing:18.427559px;}
.ls67{letter-spacing:18.428004px;}
.ls2d{letter-spacing:18.570062px;}
.ls57{letter-spacing:18.692908px;}
.ls1a{letter-spacing:18.894969px;}
.ls16{letter-spacing:19.244525px;}
.ls14{letter-spacing:19.269269px;}
.ls25{letter-spacing:19.619607px;}
.ls36{letter-spacing:19.622338px;}
.ls41{letter-spacing:19.922469px;}
.ls40{letter-spacing:19.924438px;}
.ls9{letter-spacing:19.930200px;}
.ls8{letter-spacing:20.752438px;}
.ls46{letter-spacing:20.846469px;}
.ls47{letter-spacing:20.848438px;}
.ls63{letter-spacing:21.165539px;}
.ls6b{letter-spacing:21.171539px;}
.ls2c{letter-spacing:21.384969px;}
.ls7{letter-spacing:21.420532px;}
.ls4e{letter-spacing:21.644338px;}
.ls4f{letter-spacing:21.646200px;}
.lsa{letter-spacing:21.687269px;}
.ls43{letter-spacing:22.010908px;}
.ls3f{letter-spacing:22.074767px;}
.ls50{letter-spacing:22.099120px;}
.ls12{letter-spacing:22.242969px;}
.ls6{letter-spacing:22.616525px;}
.ls1{letter-spacing:22.910525px;}
.ls48{letter-spacing:22.992767px;}
.lsf{letter-spacing:23.322538px;}
.lsc{letter-spacing:23.328538px;}
.ls45{letter-spacing:23.348408px;}
.ls3b{letter-spacing:23.572200px;}
.ls1e{letter-spacing:23.622969px;}
.ls5f{letter-spacing:23.740438px;}
.ls70{letter-spacing:23.908438px;}
.ls61{letter-spacing:24.237539px;}
.ls5a{letter-spacing:24.673120px;}
.lsd{letter-spacing:25.094823px;}
.ls11{letter-spacing:25.096896px;}
.ls6d{letter-spacing:25.473220px;}
.ls60{letter-spacing:25.622823px;}
.ls21{letter-spacing:26.005140px;}
.ls3c{letter-spacing:26.102408px;}
.ls80{letter-spacing:26.250300px;}
.ls1d{letter-spacing:26.617140px;}
.ls5e{letter-spacing:27.164408px;}
.ls24{letter-spacing:28.041269px;}
.ls39{letter-spacing:28.094908px;}
.ls3d{letter-spacing:28.280408px;}
.ls20{letter-spacing:28.418908px;}
.ls1f{letter-spacing:29.036908px;}
.lsb{letter-spacing:29.598969px;}
.ls28{letter-spacing:30.130200px;}
.ls27{letter-spacing:30.134823px;}
.ls3e{letter-spacing:30.236908px;}
.ls2{letter-spacing:30.630532px;}
.ls4{letter-spacing:30.636532px;}
.ls26{letter-spacing:32.448538px;}
.ls81{letter-spacing:32.767690px;}
.ls37{letter-spacing:36.067866px;}
.ls7f{letter-spacing:44.300338px;}
.ls31{letter-spacing:155.582877px;}
.ls35{letter-spacing:388.358338px;}
.ls4c{letter-spacing:494.798338px;}
.ls54{letter-spacing:592.976338px;}
.ls5d{letter-spacing:672.938338px;}
.ls56{letter-spacing:742.418338px;}
.ls58{letter-spacing:744.992338px;}
.ls59{letter-spacing:894.428338px;}
.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:-59.775600px;}
.ws10d{word-spacing:-55.293996px;}
.wscd{word-spacing:-47.324343px;}
.wsec{word-spacing:-37.120648px;}
.wse1{word-spacing:-22.416000px;}
.ws79{word-spacing:-16.605662px;}
.ws5{word-spacing:-15.359443px;}
.ws1d{word-spacing:-15.278643px;}
.wsd2{word-spacing:-8.368584px;}
.ws146{word-spacing:-6.623136px;}
.ws19a{word-spacing:-6.159917px;}
.ws10f{word-spacing:-6.142376px;}
.ws65{word-spacing:-3.335478px;}
.wsf3{word-spacing:-3.320193px;}
.ws147{word-spacing:-3.156152px;}
.ws112{word-spacing:-2.917049px;}
.ws56{word-spacing:-2.857274px;}
.ws41{word-spacing:-2.677947px;}
.ws1b7{word-spacing:-2.663021px;}
.ws143{word-spacing:-2.618171px;}
.ws1b8{word-spacing:-2.609222px;}
.ws1a6{word-spacing:-2.379069px;}
.ws117{word-spacing:-2.319293px;}
.ws92{word-spacing:-2.259518px;}
.ws90{word-spacing:-2.199742px;}
.ws11c{word-spacing:-2.139966px;}
.wsa{word-spacing:-2.071238px;}
.wse4{word-spacing:-2.020415px;}
.ws2b{word-spacing:-1.960640px;}
.ws1b5{word-spacing:-1.856045px;}
.ws3a{word-spacing:-1.781313px;}
.ws93{word-spacing:-1.721537px;}
.ws115{word-spacing:-1.661762px;}
.ws42{word-spacing:-1.542210px;}
.ws2c{word-spacing:-1.303108px;}
.ws96{word-spacing:-1.243332px;}
.ws1a9{word-spacing:-1.156666px;}
.ws5f{word-spacing:-1.004230px;}
.ws55{word-spacing:-0.944454px;}
.wsd3{word-spacing:-0.884679px;}
.ws160{word-spacing:-0.824903px;}
.ws46{word-spacing:-0.765128px;}
.ws1ab{word-spacing:-0.726278px;}
.wse3{word-spacing:-0.585801px;}
.ws1aa{word-spacing:-0.564883px;}
.ws98{word-spacing:-0.346698px;}
.ws97{word-spacing:-0.344152px;}
.ws18e{word-spacing:-0.286923px;}
.ws67{word-spacing:-0.227147px;}
.wsf5{word-spacing:-0.107596px;}
.ws57{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.wsda{word-spacing:-0.041843px;}
.ws64{word-spacing:-0.035865px;}
.wsd6{word-spacing:-0.029888px;}
.ws176{word-spacing:-0.026899px;}
.ws24{word-spacing:0.000000px;}
.wsb1{word-spacing:0.011955px;}
.ws18{word-spacing:0.026899px;}
.wsfb{word-spacing:0.028774px;}
.ws145{word-spacing:0.071731px;}
.wsf2{word-spacing:0.131506px;}
.ws11f{word-spacing:0.191282px;}
.ws161{word-spacing:0.251058px;}
.wsbf{word-spacing:0.322788px;}
.ws1b3{word-spacing:0.457286px;}
.ws15d{word-spacing:0.490160px;}
.ws18d{word-spacing:0.549936px;}
.wsf{word-spacing:0.564883px;}
.ws127{word-spacing:0.609711px;}
.ws144{word-spacing:0.621666px;}
.ws61{word-spacing:0.669487px;}
.wse7{word-spacing:0.729262px;}
.ws40{word-spacing:0.789038px;}
.ws1ae{word-spacing:0.833875px;}
.wse5{word-spacing:0.848814px;}
.ws9c{word-spacing:0.908589px;}
.ws9d{word-spacing:0.968365px;}
.ws91{word-spacing:0.980320px;}
.ws119{word-spacing:1.028140px;}
.ws123{word-spacing:1.052051px;}
.ws19d{word-spacing:1.087916px;}
.wse{word-spacing:1.156666px;}
.ws43{word-spacing:1.207467px;}
.ws25{word-spacing:1.267243px;}
.ws11d{word-spacing:1.327018px;}
.ws1b9{word-spacing:1.371859px;}
.wsfa{word-spacing:1.386794px;}
.ws11e{word-spacing:1.458525px;}
.ws32{word-spacing:1.506345px;}
.ws116{word-spacing:1.518300px;}
.ws9{word-spacing:1.533254px;}
.ws1a1{word-spacing:1.566121px;}
.ws129{word-spacing:1.618715px;}
.ws12b{word-spacing:1.625896px;}
.ws26{word-spacing:1.685672px;}
.ws1a{word-spacing:1.745448px;}
.ws8{word-spacing:1.748448px;}
.ws6e{word-spacing:1.805223px;}
.ws52{word-spacing:1.864999px;}
.ws131{word-spacing:1.924774px;}
.ws1ad{word-spacing:1.963642px;}
.ws73{word-spacing:1.984550px;}
.ws19{word-spacing:2.008460px;}
.wsf1{word-spacing:2.044326px;}
.wse8{word-spacing:2.163877px;}
.ws53{word-spacing:2.223652px;}
.ws1a2{word-spacing:2.283428px;}
.ws1c{word-spacing:2.343204px;}
.wse2{word-spacing:2.402979px;}
.ws45{word-spacing:2.462755px;}
.ws15b{word-spacing:2.522530px;}
.ws23{word-spacing:2.582306px;}
.ws1f{word-spacing:2.642082px;}
.ws20{word-spacing:2.701857px;}
.ws19f{word-spacing:2.761633px;}
.ws1b2{word-spacing:2.878214px;}
.ws177{word-spacing:2.881184px;}
.wsdb{word-spacing:2.934829px;}
.ws104{word-spacing:2.940960px;}
.ws2e{word-spacing:3.000735px;}
.ws4{word-spacing:3.039610px;}
.ws159{word-spacing:3.067117px;}
.ws152{word-spacing:3.069229px;}
.ws15a{word-spacing:3.091505px;}
.ws3{word-spacing:3.093408px;}
.ws9e{word-spacing:3.192017px;}
.wsbc{word-spacing:3.294811px;}
.ws62{word-spacing:3.298049px;}
.ws5b{word-spacing:3.298283px;}
.wsd4{word-spacing:3.299358px;}
.ws2{word-spacing:3.299613px;}
.wsbe{word-spacing:3.311568px;}
.ws1{word-spacing:3.359389px;}
.ws15{word-spacing:3.362400px;}
.wsde{word-spacing:3.419164px;}
.wsf9{word-spacing:3.478940px;}
.ws195{word-spacing:3.538716px;}
.ws1ac{word-spacing:3.577594px;}
.ws6a{word-spacing:3.598491px;}
.wsa1{word-spacing:3.610446px;}
.ws1a4{word-spacing:3.658267px;}
.wsf4{word-spacing:3.718042px;}
.ws13f{word-spacing:3.760566px;}
.ws13a{word-spacing:3.761568px;}
.ws19b{word-spacing:3.762125px;}
.ws13c{word-spacing:3.765564px;}
.ws118{word-spacing:3.777818px;}
.ws75{word-spacing:3.801728px;}
.ws6b{word-spacing:3.837594px;}
.ws114{word-spacing:3.861504px;}
.ws120{word-spacing:3.897369px;}
.ws95{word-spacing:3.957145px;}
.ws8c{word-spacing:3.959870px;}
.ws8b{word-spacing:3.963056px;}
.ws8e{word-spacing:3.969100px;}
.ws197{word-spacing:4.016920px;}
.ws182{word-spacing:4.076696px;}
.ws66{word-spacing:4.196247px;}
.ws44{word-spacing:4.256023px;}
.ws1e{word-spacing:4.315798px;}
.wsc3{word-spacing:4.327753px;}
.ws102{word-spacing:4.375574px;}
.wsc6{word-spacing:4.385294px;}
.wsc5{word-spacing:4.387529px;}
.ws4d{word-spacing:4.483200px;}
.ws132{word-spacing:4.495125px;}
.ws3b{word-spacing:4.554901px;}
.ws68{word-spacing:4.614676px;}
.ws2a{word-spacing:4.641690px;}
.ws21{word-spacing:4.674452px;}
.wsb{word-spacing:4.707360px;}
.ws12d{word-spacing:4.937465px;}
.ws59{word-spacing:4.973330px;}
.wsb2{word-spacing:4.985285px;}
.wsf8{word-spacing:5.033106px;}
.wsf6{word-spacing:5.036938px;}
.ws135{word-spacing:5.045061px;}
.ws39{word-spacing:5.092881px;}
.wsd7{word-spacing:5.140702px;}
.wse6{word-spacing:5.152657px;}
.ws1b6{word-spacing:5.191546px;}
.ws12e{word-spacing:5.212432px;}
.wsc{word-spacing:5.245344px;}
.ws183{word-spacing:5.272208px;}
.ws94{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.ws48{word-spacing:5.391759px;}
.ws30{word-spacing:5.451535px;}
.ws12{word-spacing:5.460538px;}
.ws50{word-spacing:5.511310px;}
.ws17{word-spacing:5.514336px;}
.ws2f{word-spacing:5.571086px;}
.ws122{word-spacing:5.750413px;}
.wsdd{word-spacing:5.989515px;}
.wsf0{word-spacing:6.049291px;}
.ws77{word-spacing:6.061246px;}
.wsc7{word-spacing:6.076644px;}
.wscc{word-spacing:6.091038px;}
.wscb{word-spacing:6.096649px;}
.wsa5{word-spacing:6.107271px;}
.wsb5{word-spacing:6.109246px;}
.ws88{word-spacing:6.121021px;}
.ws99{word-spacing:6.168842px;}
.ws27{word-spacing:6.228618px;}
.wsd{word-spacing:6.267514px;}
.ws54{word-spacing:6.288393px;}
.ws7e{word-spacing:6.300348px;}
.ws1af{word-spacing:6.321312px;}
.ws33{word-spacing:6.348169px;}
.ws16{word-spacing:6.375110px;}
.wsce{word-spacing:6.401948px;}
.ws7b{word-spacing:6.408811px;}
.ws78{word-spacing:6.419899px;}
.ws72{word-spacing:6.467720px;}
.ws51{word-spacing:6.527496px;}
.ws100{word-spacing:6.587271px;}
.ws1a8{word-spacing:6.644102px;}
.ws89{word-spacing:6.659002px;}
.wsd1{word-spacing:6.706822px;}
.ws5e{word-spacing:6.766598px;}
.ws113{word-spacing:6.826374px;}
.ws7{word-spacing:6.859296px;}
.ws22{word-spacing:6.886149px;}
.wseb{word-spacing:6.945925px;}
.ws87{word-spacing:6.957880px;}
.wsed{word-spacing:6.968938px;}
.ws2d{word-spacing:7.005700px;}
.ws121{word-spacing:7.065476px;}
.ws1a7{word-spacing:7.074490px;}
.ws34{word-spacing:7.125252px;}
.ws47{word-spacing:7.185027px;}
.ws28{word-spacing:7.244803px;}
.ws149{word-spacing:7.304578px;}
.ws3f{word-spacing:7.364354px;}
.ws31{word-spacing:7.424130px;}
.ws11{word-spacing:7.451078px;}
.ws1a5{word-spacing:7.543681px;}
.ws38{word-spacing:7.603456px;}
.ws58{word-spacing:7.615411px;}
.ws156{word-spacing:7.688227px;}
.ws6f{word-spacing:7.711104px;}
.ws18b{word-spacing:7.723008px;}
.wsa4{word-spacing:7.734963px;}
.ws12a{word-spacing:7.861798px;}
.ws1a3{word-spacing:7.902334px;}
.ws6c{word-spacing:7.954284px;}
.ws4b{word-spacing:7.962110px;}
.ws15c{word-spacing:8.021886px;}
.ws60{word-spacing:8.081661px;}
.ws163{word-spacing:8.117503px;}
.wsef{word-spacing:8.201212px;}
.wse0{word-spacing:8.213222px;}
.wsc2{word-spacing:8.239546px;}
.wsc0{word-spacing:8.249033px;}
.wsee{word-spacing:8.260988px;}
.wsa3{word-spacing:8.332719px;}
.ws5a{word-spacing:8.440315px;}
.ws49{word-spacing:8.500090px;}
.ws14b{word-spacing:8.679417px;}
.ws9b{word-spacing:8.739193px;}
.ws198{word-spacing:8.918520px;}
.ws184{word-spacing:9.038071px;}
.ws136{word-spacing:9.163987px;}
.ws128{word-spacing:9.217398px;}
.ws5d{word-spacing:9.289128px;}
.ws126{word-spacing:9.336949px;}
.ws134{word-spacing:9.456500px;}
.ws11b{word-spacing:9.516276px;}
.ws1b0{word-spacing:9.549216px;}
.ws192{word-spacing:9.635827px;}
.ws35{word-spacing:9.647782px;}
.ws15f{word-spacing:9.695602px;}
.ws29{word-spacing:9.707557px;}
.ws148{word-spacing:9.767333px;}
.ws82{word-spacing:9.803397px;}
.ws83{word-spacing:9.811409px;}
.ws4e{word-spacing:9.815154px;}
.ws84{word-spacing:9.827109px;}
.ws103{word-spacing:9.862974px;}
.ws7a{word-spacing:9.877691px;}
.ws12c{word-spacing:9.901844px;}
.ws9a{word-spacing:9.902563px;}
.ws8d{word-spacing:9.922750px;}
.ws15e{word-spacing:9.934705px;}
.ws106{word-spacing:9.973743px;}
.ws36{word-spacing:9.994480px;}
.ws14c{word-spacing:10.114032px;}
.ws1a0{word-spacing:10.173807px;}
.ws194{word-spacing:10.353134px;}
.ws6d{word-spacing:10.365089px;}
.ws1b4{word-spacing:10.409990px;}
.ws37{word-spacing:10.412910px;}
.ws74{word-spacing:10.544486px;}
.ws12f{word-spacing:10.711788px;}
.ws133{word-spacing:10.855249px;}
.ws101{word-spacing:10.891114px;}
.ws4c{word-spacing:11.130217px;}
.ws3c{word-spacing:11.353284px;}
.ws3e{word-spacing:11.369319px;}
.ws4a{word-spacing:11.668197px;}
.ws130{word-spacing:11.787748px;}
.ws11a{word-spacing:11.847524px;}
.ws190{word-spacing:11.907300px;}
.wsb0{word-spacing:12.009219px;}
.ws4f{word-spacing:12.098581px;}
.ws14a{word-spacing:12.206178px;}
.ws110{word-spacing:12.244393px;}
.ws10a{word-spacing:12.284116px;}
.ws124{word-spacing:12.684382px;}
.wsa7{word-spacing:12.756113px;}
.ws199{word-spacing:12.863709px;}
.wsa9{word-spacing:12.875664px;}
.ws19e{word-spacing:12.978125px;}
.wse9{word-spacing:13.028938px;}
.wsea{word-spacing:13.043036px;}
.ws14d{word-spacing:13.222363px;}
.ws125{word-spacing:13.341914px;}
.ws3d{word-spacing:13.473420px;}
.wsbb{word-spacing:13.592971px;}
.wsb9{word-spacing:13.652747px;}
.ws13d{word-spacing:13.911564px;}
.wsd9{word-spacing:14.085322px;}
.wsd8{word-spacing:14.086879px;}
.ws7d{word-spacing:14.310279px;}
.wsaa{word-spacing:14.826538px;}
.wsab{word-spacing:14.848259px;}
.ws76{word-spacing:15.147137px;}
.ws175{word-spacing:15.300576px;}
.ws10b{word-spacing:15.316393px;}
.wsd5{word-spacing:15.624851px;}
.wscf{word-spacing:15.914969px;}
.wsa6{word-spacing:16.498066px;}
.wsc9{word-spacing:16.546016px;}
.wsfc{word-spacing:16.557841px;}
.ws80{word-spacing:17.088865px;}
.ws10{word-spacing:17.430682px;}
.wsb6{word-spacing:17.715219px;}
.wsb8{word-spacing:17.718865px;}
.ws142{word-spacing:18.368083px;}
.ws10c{word-spacing:18.375421px;}
.ws109{word-spacing:18.388393px;}
.ws105{word-spacing:18.390760px;}
.ws111{word-spacing:18.399053px;}
.wsa0{word-spacing:18.422465px;}
.ws9f{word-spacing:18.430016px;}
.wsbd{word-spacing:18.510240px;}
.wsdf{word-spacing:18.560659px;}
.wsa2{word-spacing:18.811349px;}
.ws8f{word-spacing:19.202465px;}
.wsc1{word-spacing:19.548183px;}
.wsc8{word-spacing:19.554183px;}
.ws179{word-spacing:19.688839px;}
.ws173{word-spacing:19.691565px;}
.ws18a{word-spacing:19.691795px;}
.ws16c{word-spacing:19.694839px;}
.ws174{word-spacing:19.695929px;}
.ws181{word-spacing:19.697795px;}
.ws5c{word-spacing:19.863464px;}
.ws63{word-spacing:19.864514px;}
.ws69{word-spacing:19.865084px;}
.ws139{word-spacing:20.054561px;}
.ws13b{word-spacing:20.055564px;}
.wsb3{word-spacing:20.232240px;}
.wsfe{word-spacing:20.553789px;}
.wsfd{word-spacing:20.561025px;}
.wsff{word-spacing:20.574042px;}
.wsae{word-spacing:20.727219px;}
.wsac{word-spacing:20.733219px;}
.wsb4{word-spacing:21.320465px;}
.wsca{word-spacing:21.326595px;}
.ws19c{word-spacing:21.385198px;}
.ws13{word-spacing:21.895949px;}
.ws8a{word-spacing:21.902465px;}
.wsd0{word-spacing:22.080851px;}
.ws18c{word-spacing:22.180852px;}
.wsb7{word-spacing:22.493444px;}
.wsc4{word-spacing:22.584183px;}
.ws18f{word-spacing:23.009208px;}
.ws85{word-spacing:23.360099px;}
.ws86{word-spacing:23.364865px;}
.ws196{word-spacing:24.125208px;}
.ws7f{word-spacing:24.438865px;}
.ws81{word-spacing:24.444865px;}
.wsf7{word-spacing:25.593789px;}
.ws108{word-spacing:27.589784px;}
.ws107{word-spacing:27.602719px;}
.ws169{word-spacing:27.746839px;}
.ws165{word-spacing:27.752839px;}
.wsa8{word-spacing:27.984240px;}
.wsba{word-spacing:28.846947px;}
.ws71{word-spacing:29.624986px;}
.ws6{word-spacing:29.830266px;}
.ws193{word-spacing:29.879208px;}
.ws7c{word-spacing:30.720865px;}
.ws138{word-spacing:31.408566px;}
.ws140{word-spacing:31.412561px;}
.ws141{word-spacing:31.413564px;}
.ws191{word-spacing:31.475208px;}
.ws70{word-spacing:32.709427px;}
.wsad{word-spacing:33.558865px;}
.ws185{word-spacing:35.137260px;}
.ws162{word-spacing:35.143260px;}
.ws16b{word-spacing:35.798839px;}
.ws164{word-spacing:35.804839px;}
.ws1b1{word-spacing:38.169965px;}
.ws180{word-spacing:43.418558px;}
.ws187{word-spacing:43.850839px;}
.ws178{word-spacing:43.856839px;}
.ws137{word-spacing:47.702561px;}
.ws189{word-spacing:48.812839px;}
.ws171{word-spacing:48.818839px;}
.ws167{word-spacing:49.886839px;}
.ws16a{word-spacing:57.944839px;}
.ws1b{word-spacing:58.281600px;}
.ws13e{word-spacing:59.056566px;}
.ws172{word-spacing:59.522558px;}
.ws16e{word-spacing:63.914839px;}
.ws17e{word-spacing:65.288839px;}
.ws16d{word-spacing:65.996839px;}
.ws154{word-spacing:66.725234px;}
.ws16f{word-spacing:69.206839px;}
.ws168{word-spacing:71.972839px;}
.ws10e{word-spacing:72.056116px;}
.ws151{word-spacing:73.629853px;}
.ws14f{word-spacing:75.902805px;}
.ws170{word-spacing:80.024839px;}
.ws153{word-spacing:80.050848px;}
.ws186{word-spacing:81.116839px;}
.ws166{word-spacing:81.122839px;}
.ws155{word-spacing:89.467325px;}
.ws17f{word-spacing:97.172839px;}
.ws17a{word-spacing:99.284839px;}
.ws17c{word-spacing:107.336839px;}
.ws188{word-spacing:107.342839px;}
.ws14e{word-spacing:109.048556px;}
.ws158{word-spacing:112.803564px;}
.ws157{word-spacing:117.206868px;}
.ws17d{word-spacing:123.110839px;}
.ws150{word-spacing:126.627564px;}
.ws17b{word-spacing:131.162839px;}
.wsdc{word-spacing:148.247933px;}
._3{margin-left:-51.129857px;}
._0{margin-left:-48.461464px;}
._13{margin-left:-40.384666px;}
._5{margin-left:-37.701814px;}
._22{margin-left:-34.370970px;}
._1e{margin-left:-32.221715px;}
._14{margin-left:-30.777863px;}
._d{margin-left:-29.051136px;}
._8{margin-left:-27.652378px;}
._f{margin-left:-25.904644px;}
._11{margin-left:-23.770109px;}
._1a{margin-left:-22.573668px;}
._b{margin-left:-21.519360px;}
._4{margin-left:-10.759650px;}
._15{margin-left:-7.373908px;}
._a{margin-left:-6.133018px;}
._20{margin-left:-5.119193px;}
._6{margin-left:-4.026474px;}
._1{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._9{width:1.506355px;}
._2{width:2.668393px;}
._24{width:3.819488px;}
._e{width:4.958546px;}
._23{width:6.755572px;}
._45{width:9.770826px;}
._c{width:10.974874px;}
._16{width:14.279797px;}
._25{width:15.639698px;}
._1f{width:17.445176px;}
._19{width:18.867581px;}
._26{width:19.905275px;}
._12{width:20.959727px;}
._1c{width:23.007035px;}
._1b{width:24.800303px;}
._21{width:27.142875px;}
._46{width:28.660320px;}
._10{width:29.946013px;}
._17{width:31.615526px;}
._18{width:34.238510px;}
._59{width:35.977259px;}
._5e{width:37.286127px;}
._29{width:38.403660px;}
._5b{width:40.653508px;}
._5a{width:41.983484px;}
._4b{width:45.237994px;}
._38{width:46.773007px;}
._51{width:49.756303px;}
._27{width:56.845311px;}
._5c{width:61.231290px;}
._33{width:63.063007px;}
._28{width:68.741940px;}
._5d{width:71.366148px;}
._2f{width:74.420004px;}
._3a{width:76.346033px;}
._2a{width:78.140981px;}
._1d{width:80.697600px;}
._41{width:83.431816px;}
._55{width:87.846056px;}
._32{width:90.542004px;}
._54{width:91.878237px;}
._3d{width:96.699907px;}
._52{width:98.163209px;}
._43{width:102.240674px;}
._31{width:103.994033px;}
._36{width:105.317942px;}
._53{width:106.992040px;}
._2b{width:108.181620px;}
._4c{width:114.340677px;}
._57{width:116.101951px;}
._37{width:118.189002px;}
._58{width:119.569692px;}
._3b{width:120.951757px;}
._47{width:129.250355px;}
._2d{width:131.636033px;}
._2e{width:145.837002px;}
._4d{width:148.522677px;}
._4e{width:160.400396px;}
._48{width:161.500355px;}
._56{width:166.062488px;}
._30{width:172.738097px;}
._4f{width:174.243007px;}
._49{width:188.066004px;}
._50{width:194.600004px;}
._2c{width:202.119757px;}
._4a{width:208.424004px;}
._44{width:250.607219px;}
._42{width:252.498668px;}
._35{width:262.134899px;}
._3c{width:267.121073px;}
._34{width:274.390174px;}
._39{width:283.605840px;}
._40{width:291.669283px;}
._3f{width:310.116755px;}
._3e{width:314.598161px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y25{bottom:266.956500px;}
.y17e{bottom:269.572500px;}
.y50{bottom:272.670000px;}
.y1b9{bottom:278.308500px;}
.y24{bottom:284.889000px;}
.y4f{bottom:289.108500px;}
.y1b8{bottom:294.747000px;}
.y17d{bottom:302.785500px;}
.y23{bottom:302.821500px;}
.y156{bottom:302.823000px;}
.y105{bottom:303.003000px;}
.y1b7{bottom:309.795000px;}
.y4e{bottom:311.605500px;}
.y17c{bottom:319.224000px;}
.y22{bottom:320.755500px;}
.y13a{bottom:320.802000px;}
.y104{bottom:320.935500px;}
.y1b6{bottom:326.233500px;}
.y4d{bottom:329.538000px;}
.y72{bottom:333.336000px;}
.y17b{bottom:335.661000px;}
.y21{bottom:338.688000px;}
.y139{bottom:338.736000px;}
.y103{bottom:338.868000px;}
.y1b5{bottom:342.670500px;}
.y4c{bottom:347.472000px;}
.ye8{bottom:350.286000px;}
.y17a{bottom:352.698000px;}
.y71{bottom:354.256500px;}
.y20{bottom:356.620500px;}
.y138{bottom:356.668500px;}
.y1b4{bottom:357.718500px;}
.y4b{bottom:365.404500px;}
.y8c{bottom:372.891000px;}
.y1b3{bottom:374.157000px;}
.y1f{bottom:374.553000px;}
.y137{bottom:374.601000px;}
.y4a{bottom:383.337000px;}
.y102{bottom:384.601500px;}
.yc7{bottom:386.577000px;}
.y1b2{bottom:389.205000px;}
.y179{bottom:390.633000px;}
.y8b{bottom:390.825000px;}
.yaa{bottom:392.485500px;}
.y136{bottom:392.533500px;}
.ye7{bottom:394.759500px;}
.y70{bottom:396.726000px;}
.y101{bottom:402.534000px;}
.y49{bottom:404.982000px;}
.yc6{bottom:405.132000px;}
.y1b1{bottom:405.643500px;}
.y155{bottom:408.162000px;}
.y178{bottom:408.567000px;}
.y8a{bottom:408.757500px;}
.ya9{bottom:410.418000px;}
.y11e{bottom:410.419500px;}
.y135{bottom:410.466000px;}
.y1e{bottom:411.231000px;}
.ye6{bottom:412.693500px;}
.y6f{bottom:414.658500px;}
.y100{bottom:420.466500px;}
.y1b0{bottom:422.080500px;}
.y48{bottom:423.003000px;}
.y154{bottom:424.600500px;}
.y177{bottom:426.499500px;}
.y89{bottom:426.690000px;}
.ya8{bottom:428.352000px;}
.ye5{bottom:430.626000px;}
.y6e{bottom:432.591000px;}
.y1af{bottom:437.128500px;}
.yff{bottom:438.400500px;}
.yc5{bottom:439.198500px;}
.y134{bottom:440.593500px;}
.y176{bottom:444.432000px;}
.y88{bottom:444.622500px;}
.y47{bottom:444.735000px;}
.ya7{bottom:446.284500px;}
.ye4{bottom:448.558500px;}
.y6d{bottom:450.523500px;}
.y153{bottom:453.069000px;}
.y1ae{bottom:453.567000px;}
.yfe{bottom:456.333000px;}
.yc4{bottom:457.131000px;}
.y1d{bottom:459.864000px;}
.y175{bottom:462.364500px;}
.y87{bottom:462.555000px;}
.y46{bottom:462.667500px;}
.ya6{bottom:464.217000px;}
.y152{bottom:465.024000px;}
.ye3{bottom:466.491000px;}
.y6c{bottom:468.456000px;}
.y1ad{bottom:470.005500px;}
.yfd{bottom:474.265500px;}
.yc3{bottom:475.063500px;}
.y151{bottom:476.979000px;}
.y1c{bottom:477.796500px;}
.y174{bottom:480.297000px;}
.y86{bottom:480.487500px;}
.y45{bottom:480.600000px;}
.ya5{bottom:482.149500px;}
.ye2{bottom:484.423500px;}
.y1ac{bottom:485.053500px;}
.y133{bottom:485.664000px;}
.y150{bottom:488.934000px;}
.yfc{bottom:492.198000px;}
.yc2{bottom:492.997500px;}
.y6b{bottom:494.643000px;}
.y173{bottom:498.231000px;}
.y85{bottom:498.421500px;}
.y44{bottom:498.532500px;}
.ya4{bottom:500.082000px;}
.y14f{bottom:500.890500px;}
.y1ab{bottom:501.490500px;}
.ye1{bottom:502.356000px;}
.y132{bottom:503.596500px;}
.yfb{bottom:510.130500px;}
.yc1{bottom:510.930000px;}
.y6a{bottom:512.575500px;}
.y14e{bottom:512.845500px;}
.y84{bottom:516.354000px;}
.y43{bottom:516.466500px;}
.y1aa{bottom:516.538500px;}
.ya3{bottom:518.016000px;}
.y172{bottom:518.449500px;}
.ye0{bottom:520.290000px;}
.y14d{bottom:525.397500px;}
.y1b{bottom:526.204500px;}
.yfa{bottom:528.064500px;}
.y69{bottom:530.508000px;}
.y1a9{bottom:532.977000px;}
.y190{bottom:533.653500px;}
.y83{bottom:534.286500px;}
.y42{bottom:534.399000px;}
.y11d{bottom:535.948500px;}
.y171{bottom:536.382000px;}
.ydf{bottom:538.222500px;}
.y131{bottom:539.700000px;}
.y1a{bottom:542.643000px;}
.yc0{bottom:542.836500px;}
.y1a8{bottom:548.025000px;}
.y68{bottom:548.440500px;}
.y82{bottom:552.219000px;}
.y41{bottom:552.331500px;}
.ya2{bottom:552.808500px;}
.y170{bottom:554.314500px;}
.yde{bottom:556.155000px;}
.y19{bottom:559.081500px;}
.y1a7{bottom:564.463500px;}
.ybf{bottom:565.252500px;}
.y67{bottom:566.374500px;}
.y81{bottom:570.151500px;}
.y40{bottom:570.351000px;}
.y14c{bottom:571.170000px;}
.y16f{bottom:572.247000px;}
.ya1{bottom:573.730500px;}
.yf9{bottom:573.798000px;}
.ydd{bottom:574.087500px;}
.y18{bottom:575.520000px;}
.y18f{bottom:579.180000px;}
.y1a6{bottom:580.900500px;}
.y66{bottom:582.969000px;}
.y11c{bottom:583.380000px;}
.ybe{bottom:587.668500px;}
.y130{bottom:587.760000px;}
.y80{bottom:588.084000px;}
.y3f{bottom:588.283500px;}
.y14b{bottom:589.102500px;}
.y16e{bottom:590.179500px;}
.yf8{bottom:591.730500px;}
.y17{bottom:591.958500px;}
.ydc{bottom:592.020000px;}
.y1a5{bottom:595.948500px;}
.y18e{bottom:597.112500px;}
.y65{bottom:600.901500px;}
.y12f{bottom:605.692500px;}
.y7f{bottom:606.018000px;}
.y3e{bottom:606.217500px;}
.y14a{bottom:607.035000px;}
.y16{bottom:608.397000px;}
.yf7{bottom:609.663000px;}
.ydb{bottom:609.952500px;}
.ybd{bottom:610.084500px;}
.y16d{bottom:610.398000px;}
.y1a4{bottom:612.387000px;}
.y18d{bottom:615.046500px;}
.y64{bottom:618.834000px;}
.ya0{bottom:620.478000px;}
.y12e{bottom:623.625000px;}
.y3d{bottom:624.150000px;}
.y15{bottom:624.835500px;}
.y149{bottom:624.967500px;}
.yf6{bottom:627.595500px;}
.yda{bottom:627.886500px;}
.y16c{bottom:628.332000px;}
.y1a3{bottom:628.825500px;}
.y18c{bottom:632.979000px;}
.y63{bottom:636.766500px;}
.y9f{bottom:638.410500px;}
.y7e{bottom:639.657000px;}
.y14{bottom:641.274000px;}
.y12d{bottom:641.557500px;}
.ybc{bottom:641.992500px;}
.y3c{bottom:642.082500px;}
.y148{bottom:642.900000px;}
.y1a2{bottom:643.873500px;}
.yf5{bottom:645.528000px;}
.y11b{bottom:645.756000px;}
.y16b{bottom:646.264500px;}
.y18b{bottom:650.911500px;}
.y62{bottom:654.699000px;}
.y9e{bottom:656.343000px;}
.yd9{bottom:657.417000px;}
.y7d{bottom:657.589500px;}
.y13{bottom:657.712500px;}
.y12c{bottom:659.490000px;}
.ybb{bottom:659.925000px;}
.y3b{bottom:660.015000px;}
.y1a1{bottom:660.310500px;}
.y147{bottom:660.834000px;}
.yf4{bottom:663.462000px;}
.y11a{bottom:663.690000px;}
.y16a{bottom:664.197000px;}
.y18a{bottom:668.844000px;}
.y61{bottom:671.293500px;}
.y12{bottom:674.151000px;}
.y9d{bottom:674.277000px;}
.y7c{bottom:675.522000px;}
.y1a0{bottom:676.749000px;}
.y12b{bottom:677.470500px;}
.yba{bottom:677.857500px;}
.y3a{bottom:677.947500px;}
.y146{bottom:678.766500px;}
.yf3{bottom:681.394500px;}
.y119{bottom:681.622500px;}
.y169{bottom:682.129500px;}
.y189{bottom:686.776500px;}
.y60{bottom:689.227500px;}
.y11{bottom:690.588000px;}
.y19f{bottom:691.797000px;}
.y9c{bottom:692.209500px;}
.y12a{bottom:695.404500px;}
.yb9{bottom:695.790000px;}
.y39{bottom:695.880000px;}
.y145{bottom:696.699000px;}
.yf2{bottom:699.327000px;}
.y118{bottom:699.555000px;}
.y168{bottom:700.062000px;}
.yd8{bottom:701.890500px;}
.y188{bottom:704.709000px;}
.y10{bottom:707.026500px;}
.y5f{bottom:707.160000px;}
.y19e{bottom:708.235500px;}
.y7b{bottom:709.162500px;}
.y9b{bottom:710.142000px;}
.y129{bottom:713.337000px;}
.yb8{bottom:713.724000px;}
.y38{bottom:713.901000px;}
.y144{bottom:714.631500px;}
.yf1{bottom:717.259500px;}
.y167{bottom:717.996000px;}
.yd7{bottom:719.824500px;}
.y187{bottom:722.643000px;}
.y19d{bottom:723.283500px;}
.yf{bottom:723.465000px;}
.y5e{bottom:723.754500px;}
.y7a{bottom:727.095000px;}
.y128{bottom:731.269500px;}
.yb7{bottom:731.656500px;}
.y37{bottom:731.833500px;}
.yf0{bottom:735.192000px;}
.y166{bottom:735.928500px;}
.yd6{bottom:737.757000px;}
.y19c{bottom:739.720500px;}
.ye{bottom:739.903500px;}
.y186{bottom:740.575500px;}
.y5d{bottom:741.687000px;}
.y79{bottom:745.027500px;}
.y127{bottom:749.202000px;}
.yb6{bottom:749.589000px;}
.y36{bottom:749.766000px;}
.y97{bottom:752.385000px;}
.yef{bottom:753.124500px;}
.y9a{bottom:753.342000px;}
.yd5{bottom:755.689500px;}
.y19b{bottom:756.159000px;}
.yd{bottom:756.342000px;}
.y117{bottom:758.148000px;}
.y185{bottom:758.508000px;}
.y5c{bottom:759.619500px;}
.y98{bottom:759.666000px;}
.y78{bottom:762.960000px;}
.y143{bottom:766.173000px;}
.y126{bottom:767.134500px;}
.yb5{bottom:767.521500px;}
.y35{bottom:767.698500px;}
.y99{bottom:768.154500px;}
.yee{bottom:771.058500px;}
.y19a{bottom:772.597500px;}
.yc{bottom:772.780500px;}
.y165{bottom:777.246000px;}
.y77{bottom:780.892500px;}
.y142{bottom:782.611500px;}
.y5b{bottom:784.468500px;}
.y125{bottom:785.067000px;}
.y34{bottom:785.631000px;}
.y199{bottom:787.645500px;}
.y116{bottom:787.960500px;}
.yed{bottom:788.991000px;}
.yb{bottom:789.219000px;}
.yd4{bottom:791.197500px;}
.y184{bottom:792.079500px;}
.yb3{bottom:796.897500px;}
.y96{bottom:797.367000px;}
.y76{bottom:798.826500px;}
.y5a{bottom:802.401000px;}
.y124{bottom:803.001000px;}
.y33{bottom:803.565000px;}
.y198{bottom:804.084000px;}
.y115{bottom:804.996000px;}
.yec{bottom:806.923500px;}
.y141{bottom:811.080000px;}
.yb4{bottom:814.528500px;}
.y95{bottom:815.299500px;}
.y197{bottom:819.130500px;}
.y59{bottom:820.333500px;}
.y32{bottom:821.497500px;}
.y114{bottom:822.033000px;}
.y140{bottom:823.035000px;}
.yeb{bottom:824.856000px;}
.yb2{bottom:828.726000px;}
.y75{bottom:832.465500px;}
.y123{bottom:833.127000px;}
.y94{bottom:833.232000px;}
.y164{bottom:833.508000px;}
.yb1{bottom:833.914500px;}
.y183{bottom:834.042000px;}
.y13f{bottom:834.990000px;}
.y196{bottom:835.569000px;}
.y58{bottom:838.266000px;}
.yd3{bottom:838.660500px;}
.y113{bottom:839.068500px;}
.y31{bottom:839.430000px;}
.y13e{bottom:846.946500px;}
.y74{bottom:850.398000px;}
.y93{bottom:851.164500px;}
.y163{bottom:851.440500px;}
.ya{bottom:851.727000px;}
.y112{bottom:856.105500px;}
.y57{bottom:856.198500px;}
.yd2{bottom:856.593000px;}
.y30{bottom:857.362500px;}
.y13d{bottom:858.901500px;}
.yb0{bottom:861.048000px;}
.y195{bottom:862.986000px;}
.y182{bottom:867.255000px;}
.y9{bottom:868.165500px;}
.y92{bottom:869.097000px;}
.y162{bottom:869.373000px;}
.yea{bottom:870.589500px;}
.y13c{bottom:870.856500px;}
.y111{bottom:873.141000px;}
.y56{bottom:874.132500px;}
.yd1{bottom:874.527000px;}
.y2f{bottom:875.295000px;}
.yaf{bottom:878.980500px;}
.y122{bottom:882.181500px;}
.y13b{bottom:883.408500px;}
.y181{bottom:883.693500px;}
.y161{bottom:887.305500px;}
.y110{bottom:890.178000px;}
.y8{bottom:890.317500px;}
.y55{bottom:892.065000px;}
.y2e{bottom:893.314500px;}
.y91{bottom:899.139000px;}
.y180{bottom:900.132000px;}
.y7{bottom:901.042500px;}
.ye9{bottom:901.380000px;}
.y73{bottom:903.102000px;}
.y160{bottom:905.238000px;}
.y194{bottom:905.244000px;}
.y10f{bottom:907.213500px;}
.y121{bottom:909.081000px;}
.y54{bottom:909.997500px;}
.yae{bottom:910.207500px;}
.y2d{bottom:911.248500px;}
.y90{bottom:917.071500px;}
.y17f{bottom:917.167500px;}
.yad{bottom:919.024500px;}
.y193{bottom:923.176500px;}
.y6{bottom:923.193000px;}
.y10e{bottom:924.249000px;}
.y120{bottom:925.519500px;}
.y53{bottom:927.930000px;}
.y2c{bottom:929.181000px;}
.yd0{bottom:930.973500px;}
.y8f{bottom:935.004000px;}
.y192{bottom:941.109000px;}
.y10d{bottom:941.286000px;}
.y11f{bottom:941.958000px;}
.y52{bottom:945.862500px;}
.y2b{bottom:947.113500px;}
.ycf{bottom:947.412000px;}
.y5{bottom:948.801000px;}
.yac{bottom:952.051500px;}
.y8e{bottom:952.938000px;}
.y10c{bottom:958.321500px;}
.yab{bottom:960.868500px;}
.y15f{bottom:961.384500px;}
.yce{bottom:963.850500px;}
.y2a{bottom:965.046000px;}
.y4{bottom:966.733500px;}
.y8d{bottom:970.870500px;}
.y191{bottom:971.410500px;}
.y10b{bottom:975.358500px;}
.y51{bottom:976.375500px;}
.y15e{bottom:977.823000px;}
.ycd{bottom:980.289000px;}
.y29{bottom:982.978500px;}
.y10a{bottom:992.394000px;}
.ycc{bottom:996.727500px;}
.y28{bottom:1000.912500px;}
.y15d{bottom:1006.291500px;}
.y109{bottom:1009.429500px;}
.ycb{bottom:1013.166000px;}
.y15c{bottom:1018.246500px;}
.y3{bottom:1018.845000px;}
.y108{bottom:1026.466500px;}
.yca{bottom:1029.604500px;}
.y15b{bottom:1030.201500px;}
.y27{bottom:1036.777500px;}
.y15a{bottom:1042.158000px;}
.y107{bottom:1043.502000px;}
.y2{bottom:1045.743000px;}
.yc9{bottom:1046.043000px;}
.y159{bottom:1054.113000px;}
.y26{bottom:1054.710000px;}
.y106{bottom:1060.539000px;}
.y158{bottom:1066.068000px;}
.yc8{bottom:1068.832500px;}
.y1{bottom:1072.642500px;}
.y157{bottom:1078.620000px;}
.h15{height:2.391024px;}
.he{height:21.399665px;}
.h4{height:24.209280px;}
.h14{height:29.457331px;}
.h16{height:31.382100px;}
.h1a{height:37.658880px;}
.h6{height:40.348800px;}
.h10{height:41.003700px;}
.h5{height:41.532365px;}
.h19{height:42.082022px;}
.h1c{height:42.500452px;}
.hf{height:42.799330px;}
.h7{height:44.831700px;}
.hb{height:46.146763px;}
.hc{height:47.223024px;}
.ha{height:50.427034px;}
.h8{height:50.498765px;}
.h3{height:53.072100px;}
.h18{height:53.944800px;}
.h1b{height:56.524022px;}
.h17{height:59.181024px;}
.h1d{height:59.939700px;}
.h9{height:59.945700px;}
.h2{height:60.598349px;}
.h11{height:67.832765px;}
.h12{height:86.673024px;}
.h13{height:86.679024px;}
.hd{height:110.301024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:202.147500px;}
.x32{left:204.576000px;}
.x10{left:206.256000px;}
.x21{left:207.984000px;}
.x37{left:209.058000px;}
.x2{left:211.645500px;}
.x33{left:214.000500px;}
.x35{left:215.680500px;}
.x20{left:217.536000px;}
.x2a{left:220.275000px;}
.x3{left:221.746500px;}
.xd{left:224.563500px;}
.xf{left:227.551500px;}
.x2d{left:236.527500px;}
.x11{left:238.012500px;}
.x1{left:239.574000px;}
.xb{left:244.666500px;}
.x29{left:249.469500px;}
.x23{left:251.848500px;}
.x2c{left:259.255500px;}
.x17{left:267.477000px;}
.x5{left:313.384500px;}
.x18{left:315.553500px;}
.x12{left:317.052000px;}
.x13{left:318.333000px;}
.x22{left:319.575000px;}
.x25{left:320.595000px;}
.x27{left:325.807500px;}
.x26{left:327.705000px;}
.x2b{left:329.752500px;}
.x28{left:330.919500px;}
.x9{left:334.638000px;}
.x6{left:337.972500px;}
.x8{left:340.329000px;}
.x1a{left:344.941500px;}
.x4{left:346.842000px;}
.x19{left:352.234500px;}
.x7{left:361.972500px;}
.x1b{left:369.018000px;}
.x1c{left:375.364500px;}
.x24{left:377.238000px;}
.x1d{left:389.476500px;}
.xa{left:398.893500px;}
.x14{left:427.360500px;}
.x34{left:429.567000px;}
.x36{left:431.245500px;}
.x1e{left:436.417500px;}
.x16{left:444.675000px;}
.x1f{left:480.624000px;}
.x2e{left:510.781500px;}
.xe{left:513.187500px;}
.x2f{left:550.216500px;}
.x15{left:558.418500px;}
.x31{left:575.211000px;}
.x30{left:650.341500px;}
@media print{
.va{vertical-align:-55.786667pt;}
.vb{vertical-align:-39.850667pt;}
.v2{vertical-align:-20.314667pt;}
.v6{vertical-align:-15.941333pt;}
.v4{vertical-align:-7.973333pt;}
.v7{vertical-align:-5.312000pt;}
.vd{vertical-align:-3.402667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.317333pt;}
.v12{vertical-align:12.085333pt;}
.v3{vertical-align:13.434667pt;}
.ve{vertical-align:15.408000pt;}
.v1{vertical-align:19.280000pt;}
.v10{vertical-align:32.410667pt;}
.vc{vertical-align:36.448000pt;}
.v5{vertical-align:39.850667pt;}
.v11{vertical-align:50.480000pt;}
.v9{vertical-align:56.218667pt;}
.vf{vertical-align:74.917333pt;}
.v8{vertical-align:95.920000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7d{letter-spacing:0.000267pt;}
.ls32{letter-spacing:0.000345pt;}
.ls76{letter-spacing:0.000374pt;}
.ls42{letter-spacing:0.000681pt;}
.ls2e{letter-spacing:0.000689pt;}
.ls69{letter-spacing:0.000693pt;}
.ls33{letter-spacing:0.000865pt;}
.ls3{letter-spacing:0.000891pt;}
.ls4d{letter-spacing:0.000996pt;}
.ls71{letter-spacing:0.001386pt;}
.ls73{letter-spacing:0.001524pt;}
.ls15{letter-spacing:0.001659pt;}
.ls38{letter-spacing:0.001995pt;}
.ls79{letter-spacing:0.002245pt;}
.ls72{letter-spacing:0.002630pt;}
.ls7c{letter-spacing:0.002750pt;}
.ls13{letter-spacing:0.002906pt;}
.ls2f{letter-spacing:0.003033pt;}
.ls10{letter-spacing:0.003733pt;}
.ls77{letter-spacing:0.003879pt;}
.ls5c{letter-spacing:0.004132pt;}
.ls78{letter-spacing:0.005708pt;}
.ls7b{letter-spacing:1.364431pt;}
.ls6c{letter-spacing:2.064324pt;}
.ls49{letter-spacing:2.151919pt;}
.ls0{letter-spacing:2.652911pt;}
.ls23{letter-spacing:2.657014pt;}
.ls18{letter-spacing:2.658245pt;}
.ls82{letter-spacing:2.663295pt;}
.ls74{letter-spacing:3.349947pt;}
.ls55{letter-spacing:3.550993pt;}
.ls53{letter-spacing:3.556327pt;}
.ls22{letter-spacing:4.807919pt;}
.ls68{letter-spacing:5.202985pt;}
.ls51{letter-spacing:5.718992pt;}
.ls34{letter-spacing:5.727814pt;}
.ls5b{letter-spacing:5.789529pt;}
.ls7e{letter-spacing:5.793503pt;}
.ls7a{letter-spacing:7.252212pt;}
.ls75{letter-spacing:7.257545pt;}
.ls30{letter-spacing:7.385607pt;}
.ls44{letter-spacing:7.440267pt;}
.ls3a{letter-spacing:8.850079pt;}
.ls19{letter-spacing:8.855412pt;}
.ls29{letter-spacing:9.690318pt;}
.ls6a{letter-spacing:10.924052pt;}
.ls4a{letter-spacing:11.803145pt;}
.ls52{letter-spacing:11.808479pt;}
.ls6e{letter-spacing:13.245053pt;}
.ls62{letter-spacing:13.649782pt;}
.ls64{letter-spacing:13.654719pt;}
.lse{letter-spacing:14.196984pt;}
.ls17{letter-spacing:14.446612pt;}
.ls1c{letter-spacing:14.756984pt;}
.ls2b{letter-spacing:14.757812pt;}
.ls2a{letter-spacing:14.759412pt;}
.ls4b{letter-spacing:14.760239pt;}
.ls66{letter-spacing:15.722991pt;}
.ls1b{letter-spacing:16.190798pt;}
.ls65{letter-spacing:16.379558pt;}
.ls6f{letter-spacing:16.380052pt;}
.ls67{letter-spacing:16.380448pt;}
.ls2d{letter-spacing:16.506721pt;}
.ls57{letter-spacing:16.615919pt;}
.ls1a{letter-spacing:16.795528pt;}
.ls16{letter-spacing:17.106245pt;}
.ls14{letter-spacing:17.128239pt;}
.ls25{letter-spacing:17.439651pt;}
.ls36{letter-spacing:17.442079pt;}
.ls41{letter-spacing:17.708861pt;}
.ls40{letter-spacing:17.710612pt;}
.ls9{letter-spacing:17.715733pt;}
.ls8{letter-spacing:18.446612pt;}
.ls46{letter-spacing:18.530195pt;}
.ls47{letter-spacing:18.531945pt;}
.ls63{letter-spacing:18.813812pt;}
.ls6b{letter-spacing:18.819145pt;}
.ls2c{letter-spacing:19.008861pt;}
.ls7{letter-spacing:19.040473pt;}
.ls4e{letter-spacing:19.239412pt;}
.ls4f{letter-spacing:19.241067pt;}
.lsa{letter-spacing:19.277573pt;}
.ls43{letter-spacing:19.565252pt;}
.ls3f{letter-spacing:19.622015pt;}
.ls50{letter-spacing:19.643663pt;}
.ls12{letter-spacing:19.771528pt;}
.ls6{letter-spacing:20.103578pt;}
.ls1{letter-spacing:20.364911pt;}
.ls48{letter-spacing:20.438015pt;}
.lsf{letter-spacing:20.731145pt;}
.lsc{letter-spacing:20.736479pt;}
.ls45{letter-spacing:20.754140pt;}
.ls3b{letter-spacing:20.953067pt;}
.ls1e{letter-spacing:20.998194pt;}
.ls5f{letter-spacing:21.102612pt;}
.ls70{letter-spacing:21.251945pt;}
.ls61{letter-spacing:21.544479pt;}
.ls5a{letter-spacing:21.931663pt;}
.lsd{letter-spacing:22.306510pt;}
.ls11{letter-spacing:22.308352pt;}
.ls6d{letter-spacing:22.642863pt;}
.ls60{letter-spacing:22.775842pt;}
.ls21{letter-spacing:23.115680pt;}
.ls3c{letter-spacing:23.202140pt;}
.ls80{letter-spacing:23.333600pt;}
.ls1d{letter-spacing:23.659680pt;}
.ls5e{letter-spacing:24.146140pt;}
.ls24{letter-spacing:24.925573pt;}
.ls39{letter-spacing:24.973252pt;}
.ls3d{letter-spacing:25.138140pt;}
.ls20{letter-spacing:25.261252pt;}
.ls1f{letter-spacing:25.810585pt;}
.lsb{letter-spacing:26.310194pt;}
.ls28{letter-spacing:26.782400pt;}
.ls27{letter-spacing:26.786510pt;}
.ls3e{letter-spacing:26.877252pt;}
.ls2{letter-spacing:27.227139pt;}
.ls4{letter-spacing:27.232473pt;}
.ls26{letter-spacing:28.843145pt;}
.ls81{letter-spacing:29.126836pt;}
.ls37{letter-spacing:32.060326pt;}
.ls7f{letter-spacing:39.378079pt;}
.ls31{letter-spacing:138.295890pt;}
.ls35{letter-spacing:345.207412pt;}
.ls4c{letter-spacing:439.820745pt;}
.ls54{letter-spacing:527.090079pt;}
.ls5d{letter-spacing:598.167412pt;}
.ls56{letter-spacing:659.927412pt;}
.ls58{letter-spacing:662.215412pt;}
.ls59{letter-spacing:795.047412pt;}
.wsaf{word-spacing:-53.133867pt;}
.ws10d{word-spacing:-49.150218pt;}
.wscd{word-spacing:-42.066082pt;}
.wsec{word-spacing:-32.996131pt;}
.wse1{word-spacing:-19.925333pt;}
.ws79{word-spacing:-14.760588pt;}
.ws5{word-spacing:-13.652838pt;}
.ws1d{word-spacing:-13.581016pt;}
.wsd2{word-spacing:-7.438741pt;}
.ws146{word-spacing:-5.887232pt;}
.ws19a{word-spacing:-5.475482pt;}
.ws10f{word-spacing:-5.459889pt;}
.ws65{word-spacing:-2.964870pt;}
.wsf3{word-spacing:-2.951282pt;}
.ws147{word-spacing:-2.805468pt;}
.ws112{word-spacing:-2.592933pt;}
.ws56{word-spacing:-2.539799pt;}
.ws41{word-spacing:-2.380397pt;}
.ws1b7{word-spacing:-2.367130pt;}
.ws143{word-spacing:-2.327263pt;}
.ws1b8{word-spacing:-2.319309pt;}
.ws1a6{word-spacing:-2.114728pt;}
.ws117{word-spacing:-2.061594pt;}
.ws92{word-spacing:-2.008460pt;}
.ws90{word-spacing:-1.955326pt;}
.ws11c{word-spacing:-1.902192pt;}
.wsa{word-spacing:-1.841101pt;}
.wse4{word-spacing:-1.795925pt;}
.ws2b{word-spacing:-1.742791pt;}
.ws1b5{word-spacing:-1.649818pt;}
.ws3a{word-spacing:-1.583389pt;}
.ws93{word-spacing:-1.530255pt;}
.ws115{word-spacing:-1.477121pt;}
.ws42{word-spacing:-1.370854pt;}
.ws2c{word-spacing:-1.158318pt;}
.ws96{word-spacing:-1.105184pt;}
.ws1a9{word-spacing:-1.028147pt;}
.ws5f{word-spacing:-0.892649pt;}
.ws55{word-spacing:-0.839515pt;}
.wsd3{word-spacing:-0.786381pt;}
.ws160{word-spacing:-0.733247pt;}
.ws46{word-spacing:-0.680113pt;}
.ws1ab{word-spacing:-0.645581pt;}
.wse3{word-spacing:-0.520712pt;}
.ws1aa{word-spacing:-0.502118pt;}
.ws98{word-spacing:-0.308176pt;}
.ws97{word-spacing:-0.305913pt;}
.ws18e{word-spacing:-0.255043pt;}
.ws67{word-spacing:-0.201909pt;}
.wsf5{word-spacing:-0.095641pt;}
.ws57{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.wsda{word-spacing:-0.037194pt;}
.ws64{word-spacing:-0.031880pt;}
.wsd6{word-spacing:-0.026567pt;}
.ws176{word-spacing:-0.023910pt;}
.ws24{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.010627pt;}
.ws18{word-spacing:0.023910pt;}
.wsfb{word-spacing:0.025577pt;}
.ws145{word-spacing:0.063761pt;}
.wsf2{word-spacing:0.116895pt;}
.ws11f{word-spacing:0.170028pt;}
.ws161{word-spacing:0.223162pt;}
.wsbf{word-spacing:0.286923pt;}
.ws1b3{word-spacing:0.406477pt;}
.ws15d{word-spacing:0.435698pt;}
.ws18d{word-spacing:0.488832pt;}
.wsf{word-spacing:0.502118pt;}
.ws127{word-spacing:0.541965pt;}
.ws144{word-spacing:0.552592pt;}
.ws61{word-spacing:0.595099pt;}
.wse7{word-spacing:0.648233pt;}
.ws40{word-spacing:0.701367pt;}
.ws1ae{word-spacing:0.741222pt;}
.wse5{word-spacing:0.754501pt;}
.ws9c{word-spacing:0.807635pt;}
.ws9d{word-spacing:0.860769pt;}
.ws91{word-spacing:0.871395pt;}
.ws119{word-spacing:0.913903pt;}
.ws123{word-spacing:0.935156pt;}
.ws19d{word-spacing:0.967036pt;}
.wse{word-spacing:1.028147pt;}
.ws43{word-spacing:1.073304pt;}
.ws25{word-spacing:1.126438pt;}
.ws11d{word-spacing:1.179572pt;}
.ws1b9{word-spacing:1.219430pt;}
.wsfa{word-spacing:1.232706pt;}
.ws11e{word-spacing:1.296466pt;}
.ws32{word-spacing:1.338973pt;}
.ws116{word-spacing:1.349600pt;}
.ws9{word-spacing:1.362893pt;}
.ws1a1{word-spacing:1.392107pt;}
.ws129{word-spacing:1.438858pt;}
.ws12b{word-spacing:1.445241pt;}
.ws26{word-spacing:1.498375pt;}
.ws1a{word-spacing:1.551509pt;}
.ws8{word-spacing:1.554176pt;}
.ws6e{word-spacing:1.604643pt;}
.ws52{word-spacing:1.657777pt;}
.ws131{word-spacing:1.710911pt;}
.ws1ad{word-spacing:1.745459pt;}
.ws73{word-spacing:1.764044pt;}
.ws19{word-spacing:1.785298pt;}
.wsf1{word-spacing:1.817178pt;}
.wse8{word-spacing:1.923446pt;}
.ws53{word-spacing:1.976580pt;}
.ws1a2{word-spacing:2.029714pt;}
.ws1c{word-spacing:2.082848pt;}
.wse2{word-spacing:2.135981pt;}
.ws45{word-spacing:2.189115pt;}
.ws15b{word-spacing:2.242249pt;}
.ws23{word-spacing:2.295383pt;}
.ws1f{word-spacing:2.348517pt;}
.ws20{word-spacing:2.401651pt;}
.ws19f{word-spacing:2.454785pt;}
.ws1b2{word-spacing:2.558413pt;}
.ws177{word-spacing:2.561052pt;}
.wsdb{word-spacing:2.608737pt;}
.ws104{word-spacing:2.614186pt;}
.ws2e{word-spacing:2.667320pt;}
.ws4{word-spacing:2.701875pt;}
.ws159{word-spacing:2.726327pt;}
.ws152{word-spacing:2.728204pt;}
.ws15a{word-spacing:2.748005pt;}
.ws3{word-spacing:2.749696pt;}
.ws9e{word-spacing:2.837348pt;}
.wsbc{word-spacing:2.928721pt;}
.ws62{word-spacing:2.931599pt;}
.ws5b{word-spacing:2.931807pt;}
.wsd4{word-spacing:2.932762pt;}
.ws2{word-spacing:2.932989pt;}
.wsbe{word-spacing:2.943616pt;}
.ws1{word-spacing:2.986123pt;}
.ws15{word-spacing:2.988800pt;}
.wsde{word-spacing:3.039257pt;}
.wsf9{word-spacing:3.092391pt;}
.ws195{word-spacing:3.145525pt;}
.ws1ac{word-spacing:3.180083pt;}
.ws6a{word-spacing:3.198659pt;}
.wsa1{word-spacing:3.209286pt;}
.ws1a4{word-spacing:3.251793pt;}
.wsf4{word-spacing:3.304927pt;}
.ws13f{word-spacing:3.342725pt;}
.ws13a{word-spacing:3.343616pt;}
.ws19b{word-spacing:3.344111pt;}
.ws13c{word-spacing:3.347168pt;}
.ws118{word-spacing:3.358060pt;}
.ws75{word-spacing:3.379314pt;}
.ws6b{word-spacing:3.411194pt;}
.ws114{word-spacing:3.432448pt;}
.ws120{word-spacing:3.464328pt;}
.ws95{word-spacing:3.517462pt;}
.ws8c{word-spacing:3.519885pt;}
.ws8b{word-spacing:3.522716pt;}
.ws8e{word-spacing:3.528089pt;}
.ws197{word-spacing:3.570596pt;}
.ws182{word-spacing:3.623730pt;}
.ws66{word-spacing:3.729997pt;}
.ws44{word-spacing:3.783131pt;}
.ws1e{word-spacing:3.836265pt;}
.wsc3{word-spacing:3.846892pt;}
.ws102{word-spacing:3.889399pt;}
.wsc6{word-spacing:3.898039pt;}
.wsc5{word-spacing:3.900026pt;}
.ws4d{word-spacing:3.985067pt;}
.ws132{word-spacing:3.995667pt;}
.ws3b{word-spacing:4.048801pt;}
.ws68{word-spacing:4.101935pt;}
.ws2a{word-spacing:4.125947pt;}
.ws21{word-spacing:4.155068pt;}
.wsb{word-spacing:4.184320pt;}
.ws12d{word-spacing:4.388857pt;}
.ws59{word-spacing:4.420738pt;}
.wsb2{word-spacing:4.431364pt;}
.wsf8{word-spacing:4.473872pt;}
.wsf6{word-spacing:4.477279pt;}
.ws135{word-spacing:4.484498pt;}
.ws39{word-spacing:4.527005pt;}
.wsd7{word-spacing:4.569513pt;}
.wse6{word-spacing:4.580139pt;}
.ws1b6{word-spacing:4.614707pt;}
.ws12e{word-spacing:4.633273pt;}
.wsc{word-spacing:4.662528pt;}
.ws183{word-spacing:4.686407pt;}
.ws94{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.ws48{word-spacing:4.792675pt;}
.ws30{word-spacing:4.845809pt;}
.ws12{word-spacing:4.853811pt;}
.ws50{word-spacing:4.898943pt;}
.ws17{word-spacing:4.901632pt;}
.ws2f{word-spacing:4.952076pt;}
.ws122{word-spacing:5.111478pt;}
.wsdd{word-spacing:5.324013pt;}
.wsf0{word-spacing:5.377147pt;}
.ws77{word-spacing:5.387774pt;}
.wsc7{word-spacing:5.401461pt;}
.wscc{word-spacing:5.414256pt;}
.wscb{word-spacing:5.419244pt;}
.wsa5{word-spacing:5.428686pt;}
.wsb5{word-spacing:5.430441pt;}
.ws88{word-spacing:5.440908pt;}
.ws99{word-spacing:5.483415pt;}
.ws27{word-spacing:5.536549pt;}
.wsd{word-spacing:5.571123pt;}
.ws54{word-spacing:5.589683pt;}
.ws7e{word-spacing:5.600310pt;}
.ws1af{word-spacing:5.618944pt;}
.ws33{word-spacing:5.642817pt;}
.ws16{word-spacing:5.666765pt;}
.wsce{word-spacing:5.690621pt;}
.ws7b{word-spacing:5.696721pt;}
.ws78{word-spacing:5.706577pt;}
.ws72{word-spacing:5.749084pt;}
.ws51{word-spacing:5.802218pt;}
.ws100{word-spacing:5.855352pt;}
.ws1a8{word-spacing:5.905869pt;}
.ws89{word-spacing:5.919113pt;}
.wsd1{word-spacing:5.961620pt;}
.ws5e{word-spacing:6.014754pt;}
.ws113{word-spacing:6.067888pt;}
.ws7{word-spacing:6.097152pt;}
.ws22{word-spacing:6.121021pt;}
.wseb{word-spacing:6.174155pt;}
.ws87{word-spacing:6.184782pt;}
.wsed{word-spacing:6.194612pt;}
.ws2d{word-spacing:6.227289pt;}
.ws121{word-spacing:6.280423pt;}
.ws1a7{word-spacing:6.288435pt;}
.ws34{word-spacing:6.333557pt;}
.ws47{word-spacing:6.386691pt;}
.ws28{word-spacing:6.439825pt;}
.ws149{word-spacing:6.492959pt;}
.ws3f{word-spacing:6.546092pt;}
.ws31{word-spacing:6.599226pt;}
.ws11{word-spacing:6.623181pt;}
.ws1a5{word-spacing:6.705494pt;}
.ws38{word-spacing:6.758628pt;}
.ws58{word-spacing:6.769255pt;}
.ws156{word-spacing:6.833980pt;}
.ws6f{word-spacing:6.854315pt;}
.ws18b{word-spacing:6.864896pt;}
.wsa4{word-spacing:6.875522pt;}
.ws12a{word-spacing:6.988265pt;}
.ws1a3{word-spacing:7.024297pt;}
.ws6c{word-spacing:7.070475pt;}
.ws4b{word-spacing:7.077431pt;}
.ws15c{word-spacing:7.130565pt;}
.ws60{word-spacing:7.183699pt;}
.ws163{word-spacing:7.215558pt;}
.wsef{word-spacing:7.289967pt;}
.wse0{word-spacing:7.300642pt;}
.wsc2{word-spacing:7.324041pt;}
.wsc0{word-spacing:7.332474pt;}
.wsee{word-spacing:7.343100pt;}
.wsa3{word-spacing:7.406861pt;}
.ws5a{word-spacing:7.502502pt;}
.ws49{word-spacing:7.555636pt;}
.ws14b{word-spacing:7.715037pt;}
.ws9b{word-spacing:7.768171pt;}
.ws198{word-spacing:7.927573pt;}
.ws184{word-spacing:8.033841pt;}
.ws136{word-spacing:8.145766pt;}
.ws128{word-spacing:8.193242pt;}
.ws5d{word-spacing:8.257003pt;}
.ws126{word-spacing:8.299510pt;}
.ws134{word-spacing:8.405778pt;}
.ws11b{word-spacing:8.458912pt;}
.ws1b0{word-spacing:8.488192pt;}
.ws192{word-spacing:8.565179pt;}
.ws35{word-spacing:8.575806pt;}
.ws15f{word-spacing:8.618313pt;}
.ws29{word-spacing:8.628940pt;}
.ws148{word-spacing:8.682074pt;}
.ws82{word-spacing:8.714130pt;}
.ws83{word-spacing:8.721253pt;}
.ws4e{word-spacing:8.724581pt;}
.ws84{word-spacing:8.735208pt;}
.ws103{word-spacing:8.767088pt;}
.ws7a{word-spacing:8.780170pt;}
.ws12c{word-spacing:8.801639pt;}
.ws9a{word-spacing:8.802278pt;}
.ws8d{word-spacing:8.820222pt;}
.ws15e{word-spacing:8.830849pt;}
.ws106{word-spacing:8.865550pt;}
.ws36{word-spacing:8.883983pt;}
.ws14c{word-spacing:8.990250pt;}
.ws1a0{word-spacing:9.043384pt;}
.ws194{word-spacing:9.202786pt;}
.ws6d{word-spacing:9.213412pt;}
.ws1b4{word-spacing:9.253325pt;}
.ws37{word-spacing:9.255920pt;}
.ws74{word-spacing:9.372877pt;}
.ws12f{word-spacing:9.521589pt;}
.ws133{word-spacing:9.649110pt;}
.ws101{word-spacing:9.680991pt;}
.ws4c{word-spacing:9.893526pt;}
.ws3c{word-spacing:10.091808pt;}
.ws3e{word-spacing:10.106061pt;}
.ws4a{word-spacing:10.371731pt;}
.ws130{word-spacing:10.477999pt;}
.ws11a{word-spacing:10.531132pt;}
.ws190{word-spacing:10.584266pt;}
.wsb0{word-spacing:10.674861pt;}
.ws4f{word-spacing:10.754295pt;}
.ws14a{word-spacing:10.849936pt;}
.ws110{word-spacing:10.883905pt;}
.ws10a{word-spacing:10.919214pt;}
.ws124{word-spacing:11.275007pt;}
.wsa7{word-spacing:11.338767pt;}
.ws199{word-spacing:11.434408pt;}
.wsa9{word-spacing:11.445035pt;}
.ws19e{word-spacing:11.536111pt;}
.wse9{word-spacing:11.581279pt;}
.wsea{word-spacing:11.593810pt;}
.ws14d{word-spacing:11.753211pt;}
.ws125{word-spacing:11.859479pt;}
.ws3d{word-spacing:11.976374pt;}
.wsbb{word-spacing:12.082641pt;}
.wsb9{word-spacing:12.135775pt;}
.ws13d{word-spacing:12.365834pt;}
.wsd9{word-spacing:12.520286pt;}
.wsd8{word-spacing:12.521670pt;}
.ws7d{word-spacing:12.720248pt;}
.wsaa{word-spacing:13.179145pt;}
.wsab{word-spacing:13.198452pt;}
.ws76{word-spacing:13.464122pt;}
.ws175{word-spacing:13.600512pt;}
.ws10b{word-spacing:13.614572pt;}
.wsd5{word-spacing:13.888757pt;}
.wscf{word-spacing:14.146639pt;}
.wsa6{word-spacing:14.664947pt;}
.wsc9{word-spacing:14.707569pt;}
.wsfc{word-spacing:14.718081pt;}
.ws80{word-spacing:15.190102pt;}
.ws10{word-spacing:15.493939pt;}
.wsb6{word-spacing:15.746861pt;}
.wsb8{word-spacing:15.750102pt;}
.ws142{word-spacing:16.327185pt;}
.ws10c{word-spacing:16.333708pt;}
.ws109{word-spacing:16.345238pt;}
.ws105{word-spacing:16.347343pt;}
.ws111{word-spacing:16.354714pt;}
.wsa0{word-spacing:16.375524pt;}
.ws9f{word-spacing:16.382236pt;}
.wsbd{word-spacing:16.453547pt;}
.wsdf{word-spacing:16.498364pt;}
.wsa2{word-spacing:16.721199pt;}
.ws8f{word-spacing:17.068858pt;}
.wsc1{word-spacing:17.376163pt;}
.wsc8{word-spacing:17.381496pt;}
.ws179{word-spacing:17.501190pt;}
.ws173{word-spacing:17.503614pt;}
.ws18a{word-spacing:17.503817pt;}
.ws16c{word-spacing:17.506523pt;}
.ws174{word-spacing:17.507492pt;}
.ws181{word-spacing:17.509151pt;}
.ws5c{word-spacing:17.656413pt;}
.ws63{word-spacing:17.657346pt;}
.ws69{word-spacing:17.657853pt;}
.ws139{word-spacing:17.826277pt;}
.ws13b{word-spacing:17.827168pt;}
.wsb3{word-spacing:17.984214pt;}
.wsfe{word-spacing:18.270034pt;}
.wsfd{word-spacing:18.276466pt;}
.wsff{word-spacing:18.288038pt;}
.wsae{word-spacing:18.424195pt;}
.wsac{word-spacing:18.429528pt;}
.wsb4{word-spacing:18.951524pt;}
.wsca{word-spacing:18.956973pt;}
.ws19c{word-spacing:19.009065pt;}
.ws13{word-spacing:19.463066pt;}
.ws8a{word-spacing:19.468858pt;}
.wsd0{word-spacing:19.627423pt;}
.ws18c{word-spacing:19.716313pt;}
.wsb7{word-spacing:19.994172pt;}
.wsc4{word-spacing:20.074829pt;}
.ws18f{word-spacing:20.452629pt;}
.ws85{word-spacing:20.764532pt;}
.ws86{word-spacing:20.768769pt;}
.ws196{word-spacing:21.444629pt;}
.ws7f{word-spacing:21.723435pt;}
.ws81{word-spacing:21.728769pt;}
.wsf7{word-spacing:22.750034pt;}
.ws108{word-spacing:24.524252pt;}
.ws107{word-spacing:24.535750pt;}
.ws169{word-spacing:24.663857pt;}
.ws165{word-spacing:24.669190pt;}
.wsa8{word-spacing:24.874880pt;}
.wsba{word-spacing:25.641731pt;}
.ws71{word-spacing:26.333321pt;}
.ws6{word-spacing:26.515792pt;}
.ws193{word-spacing:26.559296pt;}
.ws7c{word-spacing:27.307435pt;}
.ws138{word-spacing:27.918725pt;}
.ws140{word-spacing:27.922277pt;}
.ws141{word-spacing:27.923168pt;}
.ws191{word-spacing:27.977963pt;}
.ws70{word-spacing:29.075046pt;}
.wsad{word-spacing:29.830102pt;}
.ws185{word-spacing:31.233120pt;}
.ws162{word-spacing:31.238454pt;}
.ws16b{word-spacing:31.821190pt;}
.ws164{word-spacing:31.826523pt;}
.ws1b1{word-spacing:33.928858pt;}
.ws180{word-spacing:38.594274pt;}
.ws187{word-spacing:38.978523pt;}
.ws178{word-spacing:38.983857pt;}
.ws137{word-spacing:42.402277pt;}
.ws189{word-spacing:43.389190pt;}
.ws171{word-spacing:43.394523pt;}
.ws167{word-spacing:44.343857pt;}
.ws16a{word-spacing:51.506523pt;}
.ws1b{word-spacing:51.805867pt;}
.ws13e{word-spacing:52.494725pt;}
.ws172{word-spacing:52.908941pt;}
.ws16e{word-spacing:56.813190pt;}
.ws17e{word-spacing:58.034523pt;}
.ws16d{word-spacing:58.663857pt;}
.ws154{word-spacing:59.311319pt;}
.ws16f{word-spacing:61.517190pt;}
.ws168{word-spacing:63.975857pt;}
.ws10e{word-spacing:64.049881pt;}
.ws151{word-spacing:65.448759pt;}
.ws14f{word-spacing:67.469160pt;}
.ws170{word-spacing:71.133190pt;}
.ws153{word-spacing:71.156309pt;}
.ws186{word-spacing:72.103857pt;}
.ws166{word-spacing:72.109190pt;}
.ws155{word-spacing:79.526511pt;}
.ws17f{word-spacing:86.375857pt;}
.ws17a{word-spacing:88.253190pt;}
.ws17c{word-spacing:95.410523pt;}
.ws188{word-spacing:95.415857pt;}
.ws14e{word-spacing:96.932050pt;}
.ws158{word-spacing:100.269834pt;}
.ws157{word-spacing:104.183883pt;}
.ws17d{word-spacing:109.431857pt;}
.ws150{word-spacing:112.557834pt;}
.ws17b{word-spacing:116.589190pt;}
.wsdc{word-spacing:131.775941pt;}
._3{margin-left:-45.448762pt;}
._0{margin-left:-43.076857pt;}
._13{margin-left:-35.897481pt;}
._5{margin-left:-33.512723pt;}
._22{margin-left:-30.551973pt;}
._1e{margin-left:-28.641524pt;}
._14{margin-left:-27.358100pt;}
._d{margin-left:-25.823232pt;}
._8{margin-left:-24.579891pt;}
._f{margin-left:-23.026350pt;}
._11{margin-left:-21.128986pt;}
._1a{margin-left:-20.065483pt;}
._b{margin-left:-19.128320pt;}
._4{margin-left:-9.564133pt;}
._15{margin-left:-6.554585pt;}
._a{margin-left:-5.451571pt;}
._20{margin-left:-4.550394pt;}
._6{margin-left:-3.579088pt;}
._1{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._9{width:1.338982pt;}
._2{width:2.371905pt;}
._24{width:3.395100pt;}
._e{width:4.407597pt;}
._23{width:6.004953pt;}
._45{width:8.685179pt;}
._c{width:9.755443pt;}
._16{width:12.693153pt;}
._25{width:13.901954pt;}
._1f{width:15.506823pt;}
._19{width:16.771183pt;}
._26{width:17.693578pt;}
._12{width:18.630868pt;}
._1c{width:20.450698pt;}
._1b{width:22.044714pt;}
._21{width:24.127000pt;}
._46{width:25.475840pt;}
._10{width:26.618678pt;}
._17{width:28.102689pt;}
._18{width:30.434231pt;}
._59{width:31.979786pt;}
._5e{width:33.143224pt;}
._29{width:34.136586pt;}
._5b{width:36.136451pt;}
._5a{width:37.318653pt;}
._4b{width:40.211550pt;}
._38{width:41.576006pt;}
._51{width:44.227825pt;}
._27{width:50.529165pt;}
._5c{width:54.427814pt;}
._33{width:56.056006pt;}
._28{width:61.103947pt;}
._5d{width:63.436576pt;}
._2f{width:66.151115pt;}
._3a{width:67.863141pt;}
._2a{width:69.458650pt;}
._1d{width:71.731200pt;}
._41{width:74.161615pt;}
._55{width:78.085383pt;}
._32{width:80.481782pt;}
._54{width:81.669544pt;}
._3d{width:85.955473pt;}
._52{width:87.256186pt;}
._43{width:90.880599pt;}
._31{width:92.439141pt;}
._36{width:93.615949pt;}
._53{width:95.104035pt;}
._2b{width:96.161440pt;}
._4c{width:101.636157pt;}
._57{width:103.201734pt;}
._37{width:105.056891pt;}
._58{width:106.284171pt;}
._3b{width:107.512673pt;}
._47{width:114.889204pt;}
._2d{width:117.009807pt;}
._2e{width:129.632891pt;}
._4d{width:132.020157pt;}
._4e{width:142.578130pt;}
._48{width:143.555871pt;}
._56{width:147.611100pt;}
._30{width:153.544975pt;}
._4f{width:154.882673pt;}
._49{width:167.169782pt;}
._50{width:172.977782pt;}
._2c{width:179.662006pt;}
._4a{width:185.265782pt;}
._44{width:222.761972pt;}
._42{width:224.443261pt;}
._35{width:233.008799pt;}
._3c{width:237.440954pt;}
._34{width:243.902377pt;}
._39{width:252.094080pt;}
._40{width:259.261585pt;}
._3f{width:275.659337pt;}
._3e{width:279.642810pt;}
.fs6{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:237.294667pt;}
.y17e{bottom:239.620000pt;}
.y50{bottom:242.373333pt;}
.y1b9{bottom:247.385333pt;}
.y24{bottom:253.234667pt;}
.y4f{bottom:256.985333pt;}
.y1b8{bottom:261.997333pt;}
.y17d{bottom:269.142667pt;}
.y23{bottom:269.174667pt;}
.y156{bottom:269.176000pt;}
.y105{bottom:269.336000pt;}
.y1b7{bottom:275.373333pt;}
.y4e{bottom:276.982667pt;}
.y17c{bottom:283.754667pt;}
.y22{bottom:285.116000pt;}
.y13a{bottom:285.157333pt;}
.y104{bottom:285.276000pt;}
.y1b6{bottom:289.985333pt;}
.y4d{bottom:292.922667pt;}
.y72{bottom:296.298667pt;}
.y17b{bottom:298.365333pt;}
.y21{bottom:301.056000pt;}
.y139{bottom:301.098667pt;}
.y103{bottom:301.216000pt;}
.y1b5{bottom:304.596000pt;}
.y4c{bottom:308.864000pt;}
.ye8{bottom:311.365333pt;}
.y17a{bottom:313.509333pt;}
.y71{bottom:314.894667pt;}
.y20{bottom:316.996000pt;}
.y138{bottom:317.038667pt;}
.y1b4{bottom:317.972000pt;}
.y4b{bottom:324.804000pt;}
.y8c{bottom:331.458667pt;}
.y1b3{bottom:332.584000pt;}
.y1f{bottom:332.936000pt;}
.y137{bottom:332.978667pt;}
.y4a{bottom:340.744000pt;}
.y102{bottom:341.868000pt;}
.yc7{bottom:343.624000pt;}
.y1b2{bottom:345.960000pt;}
.y179{bottom:347.229333pt;}
.y8b{bottom:347.400000pt;}
.yaa{bottom:348.876000pt;}
.y136{bottom:348.918667pt;}
.ye7{bottom:350.897333pt;}
.y70{bottom:352.645333pt;}
.y101{bottom:357.808000pt;}
.y49{bottom:359.984000pt;}
.yc6{bottom:360.117333pt;}
.y1b1{bottom:360.572000pt;}
.y155{bottom:362.810667pt;}
.y178{bottom:363.170667pt;}
.y8a{bottom:363.340000pt;}
.ya9{bottom:364.816000pt;}
.y11e{bottom:364.817333pt;}
.y135{bottom:364.858667pt;}
.y1e{bottom:365.538667pt;}
.ye6{bottom:366.838667pt;}
.y6f{bottom:368.585333pt;}
.y100{bottom:373.748000pt;}
.y1b0{bottom:375.182667pt;}
.y48{bottom:376.002667pt;}
.y154{bottom:377.422667pt;}
.y177{bottom:379.110667pt;}
.y89{bottom:379.280000pt;}
.ya8{bottom:380.757333pt;}
.ye5{bottom:382.778667pt;}
.y6e{bottom:384.525333pt;}
.y1af{bottom:388.558667pt;}
.yff{bottom:389.689333pt;}
.yc5{bottom:390.398667pt;}
.y134{bottom:391.638667pt;}
.y176{bottom:395.050667pt;}
.y88{bottom:395.220000pt;}
.y47{bottom:395.320000pt;}
.ya7{bottom:396.697333pt;}
.ye4{bottom:398.718667pt;}
.y6d{bottom:400.465333pt;}
.y153{bottom:402.728000pt;}
.y1ae{bottom:403.170667pt;}
.yfe{bottom:405.629333pt;}
.yc4{bottom:406.338667pt;}
.y1d{bottom:408.768000pt;}
.y175{bottom:410.990667pt;}
.y87{bottom:411.160000pt;}
.y46{bottom:411.260000pt;}
.ya6{bottom:412.637333pt;}
.y152{bottom:413.354667pt;}
.ye3{bottom:414.658667pt;}
.y6c{bottom:416.405333pt;}
.y1ad{bottom:417.782667pt;}
.yfd{bottom:421.569333pt;}
.yc3{bottom:422.278667pt;}
.y151{bottom:423.981333pt;}
.y1c{bottom:424.708000pt;}
.y174{bottom:426.930667pt;}
.y86{bottom:427.100000pt;}
.y45{bottom:427.200000pt;}
.ya5{bottom:428.577333pt;}
.ye2{bottom:430.598667pt;}
.y1ac{bottom:431.158667pt;}
.y133{bottom:431.701333pt;}
.y150{bottom:434.608000pt;}
.yfc{bottom:437.509333pt;}
.yc2{bottom:438.220000pt;}
.y6b{bottom:439.682667pt;}
.y173{bottom:442.872000pt;}
.y85{bottom:443.041333pt;}
.y44{bottom:443.140000pt;}
.ya4{bottom:444.517333pt;}
.y14f{bottom:445.236000pt;}
.y1ab{bottom:445.769333pt;}
.ye1{bottom:446.538667pt;}
.y132{bottom:447.641333pt;}
.yfb{bottom:453.449333pt;}
.yc1{bottom:454.160000pt;}
.y6a{bottom:455.622667pt;}
.y14e{bottom:455.862667pt;}
.y84{bottom:458.981333pt;}
.y43{bottom:459.081333pt;}
.y1aa{bottom:459.145333pt;}
.ya3{bottom:460.458667pt;}
.y172{bottom:460.844000pt;}
.ye0{bottom:462.480000pt;}
.y14d{bottom:467.020000pt;}
.y1b{bottom:467.737333pt;}
.yfa{bottom:469.390667pt;}
.y69{bottom:471.562667pt;}
.y1a9{bottom:473.757333pt;}
.y190{bottom:474.358667pt;}
.y83{bottom:474.921333pt;}
.y42{bottom:475.021333pt;}
.y11d{bottom:476.398667pt;}
.y171{bottom:476.784000pt;}
.ydf{bottom:478.420000pt;}
.y131{bottom:479.733333pt;}
.y1a{bottom:482.349333pt;}
.yc0{bottom:482.521333pt;}
.y1a8{bottom:487.133333pt;}
.y68{bottom:487.502667pt;}
.y82{bottom:490.861333pt;}
.y41{bottom:490.961333pt;}
.ya2{bottom:491.385333pt;}
.y170{bottom:492.724000pt;}
.yde{bottom:494.360000pt;}
.y19{bottom:496.961333pt;}
.y1a7{bottom:501.745333pt;}
.ybf{bottom:502.446667pt;}
.y67{bottom:503.444000pt;}
.y81{bottom:506.801333pt;}
.y40{bottom:506.978667pt;}
.y14c{bottom:507.706667pt;}
.y16f{bottom:508.664000pt;}
.ya1{bottom:509.982667pt;}
.yf9{bottom:510.042667pt;}
.ydd{bottom:510.300000pt;}
.y18{bottom:511.573333pt;}
.y18f{bottom:514.826667pt;}
.y1a6{bottom:516.356000pt;}
.y66{bottom:518.194667pt;}
.y11c{bottom:518.560000pt;}
.ybe{bottom:522.372000pt;}
.y130{bottom:522.453333pt;}
.y80{bottom:522.741333pt;}
.y3f{bottom:522.918667pt;}
.y14b{bottom:523.646667pt;}
.y16e{bottom:524.604000pt;}
.yf8{bottom:525.982667pt;}
.y17{bottom:526.185333pt;}
.ydc{bottom:526.240000pt;}
.y1a5{bottom:529.732000pt;}
.y18e{bottom:530.766667pt;}
.y65{bottom:534.134667pt;}
.y12f{bottom:538.393333pt;}
.y7f{bottom:538.682667pt;}
.y3e{bottom:538.860000pt;}
.y14a{bottom:539.586667pt;}
.y16{bottom:540.797333pt;}
.yf7{bottom:541.922667pt;}
.ydb{bottom:542.180000pt;}
.ybd{bottom:542.297333pt;}
.y16d{bottom:542.576000pt;}
.y1a4{bottom:544.344000pt;}
.y18d{bottom:546.708000pt;}
.y64{bottom:550.074667pt;}
.ya0{bottom:551.536000pt;}
.y12e{bottom:554.333333pt;}
.y3d{bottom:554.800000pt;}
.y15{bottom:555.409333pt;}
.y149{bottom:555.526667pt;}
.yf6{bottom:557.862667pt;}
.yda{bottom:558.121333pt;}
.y16c{bottom:558.517333pt;}
.y1a3{bottom:558.956000pt;}
.y18c{bottom:562.648000pt;}
.y63{bottom:566.014667pt;}
.y9f{bottom:567.476000pt;}
.y7e{bottom:568.584000pt;}
.y14{bottom:570.021333pt;}
.y12d{bottom:570.273333pt;}
.ybc{bottom:570.660000pt;}
.y3c{bottom:570.740000pt;}
.y148{bottom:571.466667pt;}
.y1a2{bottom:572.332000pt;}
.yf5{bottom:573.802667pt;}
.y11b{bottom:574.005333pt;}
.y16b{bottom:574.457333pt;}
.y18b{bottom:578.588000pt;}
.y62{bottom:581.954667pt;}
.y9e{bottom:583.416000pt;}
.yd9{bottom:584.370667pt;}
.y7d{bottom:584.524000pt;}
.y13{bottom:584.633333pt;}
.y12c{bottom:586.213333pt;}
.ybb{bottom:586.600000pt;}
.y3b{bottom:586.680000pt;}
.y1a1{bottom:586.942667pt;}
.y147{bottom:587.408000pt;}
.yf4{bottom:589.744000pt;}
.y11a{bottom:589.946667pt;}
.y16a{bottom:590.397333pt;}
.y18a{bottom:594.528000pt;}
.y61{bottom:596.705333pt;}
.y12{bottom:599.245333pt;}
.y9d{bottom:599.357333pt;}
.y7c{bottom:600.464000pt;}
.y1a0{bottom:601.554667pt;}
.y12b{bottom:602.196000pt;}
.yba{bottom:602.540000pt;}
.y3a{bottom:602.620000pt;}
.y146{bottom:603.348000pt;}
.yf3{bottom:605.684000pt;}
.y119{bottom:605.886667pt;}
.y169{bottom:606.337333pt;}
.y189{bottom:610.468000pt;}
.y60{bottom:612.646667pt;}
.y11{bottom:613.856000pt;}
.y19f{bottom:614.930667pt;}
.y9c{bottom:615.297333pt;}
.y12a{bottom:618.137333pt;}
.yb9{bottom:618.480000pt;}
.y39{bottom:618.560000pt;}
.y145{bottom:619.288000pt;}
.yf2{bottom:621.624000pt;}
.y118{bottom:621.826667pt;}
.y168{bottom:622.277333pt;}
.yd8{bottom:623.902667pt;}
.y188{bottom:626.408000pt;}
.y10{bottom:628.468000pt;}
.y5f{bottom:628.586667pt;}
.y19e{bottom:629.542667pt;}
.y7b{bottom:630.366667pt;}
.y9b{bottom:631.237333pt;}
.y129{bottom:634.077333pt;}
.yb8{bottom:634.421333pt;}
.y38{bottom:634.578667pt;}
.y144{bottom:635.228000pt;}
.yf1{bottom:637.564000pt;}
.y167{bottom:638.218667pt;}
.yd7{bottom:639.844000pt;}
.y187{bottom:642.349333pt;}
.y19d{bottom:642.918667pt;}
.yf{bottom:643.080000pt;}
.y5e{bottom:643.337333pt;}
.y7a{bottom:646.306667pt;}
.y128{bottom:650.017333pt;}
.yb7{bottom:650.361333pt;}
.y37{bottom:650.518667pt;}
.yf0{bottom:653.504000pt;}
.y166{bottom:654.158667pt;}
.yd6{bottom:655.784000pt;}
.y19c{bottom:657.529333pt;}
.ye{bottom:657.692000pt;}
.y186{bottom:658.289333pt;}
.y5d{bottom:659.277333pt;}
.y79{bottom:662.246667pt;}
.y127{bottom:665.957333pt;}
.yb6{bottom:666.301333pt;}
.y36{bottom:666.458667pt;}
.y97{bottom:668.786667pt;}
.yef{bottom:669.444000pt;}
.y9a{bottom:669.637333pt;}
.yd5{bottom:671.724000pt;}
.y19b{bottom:672.141333pt;}
.yd{bottom:672.304000pt;}
.y117{bottom:673.909333pt;}
.y185{bottom:674.229333pt;}
.y5c{bottom:675.217333pt;}
.y98{bottom:675.258667pt;}
.y78{bottom:678.186667pt;}
.y143{bottom:681.042667pt;}
.y126{bottom:681.897333pt;}
.yb5{bottom:682.241333pt;}
.y35{bottom:682.398667pt;}
.y99{bottom:682.804000pt;}
.yee{bottom:685.385333pt;}
.y19a{bottom:686.753333pt;}
.yc{bottom:686.916000pt;}
.y165{bottom:690.885333pt;}
.y77{bottom:694.126667pt;}
.y142{bottom:695.654667pt;}
.y5b{bottom:697.305333pt;}
.y125{bottom:697.837333pt;}
.y34{bottom:698.338667pt;}
.y199{bottom:700.129333pt;}
.y116{bottom:700.409333pt;}
.yed{bottom:701.325333pt;}
.yb{bottom:701.528000pt;}
.yd4{bottom:703.286667pt;}
.y184{bottom:704.070667pt;}
.yb3{bottom:708.353333pt;}
.y96{bottom:708.770667pt;}
.y76{bottom:710.068000pt;}
.y5a{bottom:713.245333pt;}
.y124{bottom:713.778667pt;}
.y33{bottom:714.280000pt;}
.y198{bottom:714.741333pt;}
.y115{bottom:715.552000pt;}
.yec{bottom:717.265333pt;}
.y141{bottom:720.960000pt;}
.yb4{bottom:724.025333pt;}
.y95{bottom:724.710667pt;}
.y197{bottom:728.116000pt;}
.y59{bottom:729.185333pt;}
.y32{bottom:730.220000pt;}
.y114{bottom:730.696000pt;}
.y140{bottom:731.586667pt;}
.yeb{bottom:733.205333pt;}
.yb2{bottom:736.645333pt;}
.y75{bottom:739.969333pt;}
.y123{bottom:740.557333pt;}
.y94{bottom:740.650667pt;}
.y164{bottom:740.896000pt;}
.yb1{bottom:741.257333pt;}
.y183{bottom:741.370667pt;}
.y13f{bottom:742.213333pt;}
.y196{bottom:742.728000pt;}
.y58{bottom:745.125333pt;}
.yd3{bottom:745.476000pt;}
.y113{bottom:745.838667pt;}
.y31{bottom:746.160000pt;}
.y13e{bottom:752.841333pt;}
.y74{bottom:755.909333pt;}
.y93{bottom:756.590667pt;}
.y163{bottom:756.836000pt;}
.ya{bottom:757.090667pt;}
.y112{bottom:760.982667pt;}
.y57{bottom:761.065333pt;}
.yd2{bottom:761.416000pt;}
.y30{bottom:762.100000pt;}
.y13d{bottom:763.468000pt;}
.yb0{bottom:765.376000pt;}
.y195{bottom:767.098667pt;}
.y182{bottom:770.893333pt;}
.y9{bottom:771.702667pt;}
.y92{bottom:772.530667pt;}
.y162{bottom:772.776000pt;}
.yea{bottom:773.857333pt;}
.y13c{bottom:774.094667pt;}
.y111{bottom:776.125333pt;}
.y56{bottom:777.006667pt;}
.yd1{bottom:777.357333pt;}
.y2f{bottom:778.040000pt;}
.yaf{bottom:781.316000pt;}
.y122{bottom:784.161333pt;}
.y13b{bottom:785.252000pt;}
.y181{bottom:785.505333pt;}
.y161{bottom:788.716000pt;}
.y110{bottom:791.269333pt;}
.y8{bottom:791.393333pt;}
.y55{bottom:792.946667pt;}
.y2e{bottom:794.057333pt;}
.y91{bottom:799.234667pt;}
.y180{bottom:800.117333pt;}
.y7{bottom:800.926667pt;}
.ye9{bottom:801.226667pt;}
.y73{bottom:802.757333pt;}
.y160{bottom:804.656000pt;}
.y194{bottom:804.661333pt;}
.y10f{bottom:806.412000pt;}
.y121{bottom:808.072000pt;}
.y54{bottom:808.886667pt;}
.yae{bottom:809.073333pt;}
.y2d{bottom:809.998667pt;}
.y90{bottom:815.174667pt;}
.y17f{bottom:815.260000pt;}
.yad{bottom:816.910667pt;}
.y193{bottom:820.601333pt;}
.y6{bottom:820.616000pt;}
.y10e{bottom:821.554667pt;}
.y120{bottom:822.684000pt;}
.y53{bottom:824.826667pt;}
.y2c{bottom:825.938667pt;}
.yd0{bottom:827.532000pt;}
.y8f{bottom:831.114667pt;}
.y192{bottom:836.541333pt;}
.y10d{bottom:836.698667pt;}
.y11f{bottom:837.296000pt;}
.y52{bottom:840.766667pt;}
.y2b{bottom:841.878667pt;}
.ycf{bottom:842.144000pt;}
.y5{bottom:843.378667pt;}
.yac{bottom:846.268000pt;}
.y8e{bottom:847.056000pt;}
.y10c{bottom:851.841333pt;}
.yab{bottom:854.105333pt;}
.y15f{bottom:854.564000pt;}
.yce{bottom:856.756000pt;}
.y2a{bottom:857.818667pt;}
.y4{bottom:859.318667pt;}
.y8d{bottom:862.996000pt;}
.y191{bottom:863.476000pt;}
.y10b{bottom:866.985333pt;}
.y51{bottom:867.889333pt;}
.y15e{bottom:869.176000pt;}
.ycd{bottom:871.368000pt;}
.y29{bottom:873.758667pt;}
.y10a{bottom:882.128000pt;}
.ycc{bottom:885.980000pt;}
.y28{bottom:889.700000pt;}
.y15d{bottom:894.481333pt;}
.y109{bottom:897.270667pt;}
.ycb{bottom:900.592000pt;}
.y15c{bottom:905.108000pt;}
.y3{bottom:905.640000pt;}
.y108{bottom:912.414667pt;}
.yca{bottom:915.204000pt;}
.y15b{bottom:915.734667pt;}
.y27{bottom:921.580000pt;}
.y15a{bottom:926.362667pt;}
.y107{bottom:927.557333pt;}
.y2{bottom:929.549333pt;}
.yc9{bottom:929.816000pt;}
.y159{bottom:936.989333pt;}
.y26{bottom:937.520000pt;}
.y106{bottom:942.701333pt;}
.y158{bottom:947.616000pt;}
.yc8{bottom:950.073333pt;}
.y1{bottom:953.460000pt;}
.y157{bottom:958.773333pt;}
.h15{height:2.125355pt;}
.he{height:19.021924pt;}
.h4{height:21.519360pt;}
.h14{height:26.184294pt;}
.h16{height:27.895200pt;}
.h1a{height:33.474560pt;}
.h6{height:35.865600pt;}
.h10{height:36.447733pt;}
.h5{height:36.917658pt;}
.h19{height:37.406242pt;}
.h1c{height:37.778179pt;}
.hf{height:38.043849pt;}
.h7{height:39.850400pt;}
.hb{height:41.019345pt;}
.hc{height:41.976021pt;}
.ha{height:44.824030pt;}
.h8{height:44.887791pt;}
.h3{height:47.175200pt;}
.h18{height:47.950933pt;}
.h1b{height:50.243575pt;}
.h17{height:52.605355pt;}
.h1d{height:53.279733pt;}
.h9{height:53.285067pt;}
.h2{height:53.865199pt;}
.h11{height:60.295791pt;}
.h12{height:77.042688pt;}
.h13{height:77.048021pt;}
.hd{height:98.045355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:179.686667pt;}
.x32{left:181.845333pt;}
.x10{left:183.338667pt;}
.x21{left:184.874667pt;}
.x37{left:185.829333pt;}
.x2{left:188.129333pt;}
.x33{left:190.222667pt;}
.x35{left:191.716000pt;}
.x20{left:193.365333pt;}
.x2a{left:195.800000pt;}
.x3{left:197.108000pt;}
.xd{left:199.612000pt;}
.xf{left:202.268000pt;}
.x2d{left:210.246667pt;}
.x11{left:211.566667pt;}
.x1{left:212.954667pt;}
.xb{left:217.481333pt;}
.x29{left:221.750667pt;}
.x23{left:223.865333pt;}
.x2c{left:230.449333pt;}
.x17{left:237.757333pt;}
.x5{left:278.564000pt;}
.x18{left:280.492000pt;}
.x12{left:281.824000pt;}
.x13{left:282.962667pt;}
.x22{left:284.066667pt;}
.x25{left:284.973333pt;}
.x27{left:289.606667pt;}
.x26{left:291.293333pt;}
.x2b{left:293.113333pt;}
.x28{left:294.150667pt;}
.x9{left:297.456000pt;}
.x6{left:300.420000pt;}
.x8{left:302.514667pt;}
.x1a{left:306.614667pt;}
.x4{left:308.304000pt;}
.x19{left:313.097333pt;}
.x7{left:321.753333pt;}
.x1b{left:328.016000pt;}
.x1c{left:333.657333pt;}
.x24{left:335.322667pt;}
.x1d{left:346.201333pt;}
.xa{left:354.572000pt;}
.x14{left:379.876000pt;}
.x34{left:381.837333pt;}
.x36{left:383.329333pt;}
.x1e{left:387.926667pt;}
.x16{left:395.266667pt;}
.x1f{left:427.221333pt;}
.x2e{left:454.028000pt;}
.xe{left:456.166667pt;}
.x2f{left:489.081333pt;}
.x15{left:496.372000pt;}
.x31{left:511.298667pt;}
.x30{left:578.081333pt;}
}




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