
    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_3ec1930b039b1c459eca91f8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_95ddd64940262571dde43159.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.025000;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_50604e3234c10dda5beea952.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_38a46b869e6fca7c0fdd05f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_e3327914d20f8716119a6739.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_d96500f30f4d2c5944a3d56c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.497000;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_bd5b247e503830e0b333773d.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_27c25bde97c8fc995a8673b4.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_4ce387c52d5c63dfc4283632.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0238820ec71eeeef909f9381.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_94ced2b1c9fbd8f83cba3db2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_47c535202ed5b6340d9bd0f3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.576000;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_1ad9cb73e7913f782899ee35.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.730000;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_209615568310af9d2d01f393.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fc3eda66f148592e449cd455.woff2')format("woff");}.fff{font-family:fff;line-height:2.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:ff10;src:url('chunks/assets/font_cdbe98b3562826f6a0a0bde3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.431000;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_e726098e971d16c391cd6c75.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;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_1057a1ed258307564ba5773e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_1e416f891faa072cef1f21f8.woff2')format("woff");}.ff13{font-family:ff13;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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_59115f04182a4604d6840bc3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.686000;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_b3835d7dabffef774a06f8f5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.514000;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_af0e1af2367e8b72ded0b56b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e31ca6413f824a13ddb54b04.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.882324;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_525602f42829e882e667f10d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_68970c63720b392988fc45f3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.686000;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;}
.ma{transform:matrix(0.001823,-0.303435,0.249995,0.001502,0,0);-ms-transform:matrix(0.001823,-0.303435,0.249995,0.001502,0,0);-webkit-transform:matrix(0.001823,-0.303435,0.249995,0.001502,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.303274,-0.010031,0.008264,0.249863,0,0);-ms-transform:matrix(0.303274,-0.010031,0.008264,0.249863,0,0);-webkit-transform:matrix(0.303274,-0.010031,0.008264,0.249863,0,0);}
.m7{transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);-ms-transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);-webkit-transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);}
.me{transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);-ms-transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);-webkit-transform:matrix(0.303393,-0.005350,0.004408,0.249961,0,0);}
.m5{transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);-ms-transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);-webkit-transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);}
.mc{transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);-ms-transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);-webkit-transform:matrix(0.303420,-0.003471,0.002859,0.249984,0,0);}
.m3{transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);-ms-transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);-webkit-transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);}
.mb{transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);-ms-transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);-webkit-transform:matrix(0.303428,-0.002708,0.002231,0.249990,0,0);}
.m6{transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);-ms-transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);-webkit-transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);}
.md{transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);-ms-transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);-webkit-transform:matrix(0.303430,-0.002508,0.002066,0.249991,0,0);}
.m4{transform:matrix(0.303432,0.002214,-0.001824,0.249993,0,0);-ms-transform:matrix(0.303432,0.002214,-0.001824,0.249993,0,0);-webkit-transform:matrix(0.303432,0.002214,-0.001824,0.249993,0,0);}
.m8{transform:matrix(0.303435,-0.001836,0.001513,0.249995,0,0);-ms-transform:matrix(0.303435,-0.001836,0.001513,0.249995,0,0);-webkit-transform:matrix(0.303435,-0.001836,0.001513,0.249995,0,0);}
.m1{transform:matrix(0.303440,0.000315,-0.000259,0.250000,0,0);-ms-transform:matrix(0.303440,0.000315,-0.000259,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000315,-0.000259,0.250000,0,0);}
.m2{transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);}
.v18{vertical-align:-66.348000px;}
.v1d{vertical-align:-25.824000px;}
.v11{vertical-align:-10.794000px;}
.v1{vertical-align:-8.964000px;}
.v4{vertical-align:-1.776000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.188000px;}
.v1c{vertical-align:9.666000px;}
.v14{vertical-align:11.958000px;}
.ve{vertical-align:14.677800px;}
.v1b{vertical-align:15.774000px;}
.v10{vertical-align:17.268000px;}
.v15{vertical-align:20.616000px;}
.v5{vertical-align:21.696000px;}
.v12{vertical-align:23.532000px;}
.v9{vertical-align:24.684000px;}
.v3{vertical-align:31.476000px;}
.va{vertical-align:34.853400px;}
.v2{vertical-align:40.440000px;}
.v13{vertical-align:41.574000px;}
.v1a{vertical-align:42.894000px;}
.v16{vertical-align:44.148000px;}
.vc{vertical-align:55.834800px;}
.v17{vertical-align:62.190000px;}
.v7{vertical-align:65.688000px;}
.vb{vertical-align:69.227400px;}
.vf{vertical-align:72.474000px;}
.v6{vertical-align:81.444000px;}
.vd{vertical-align:87.663900px;}
.v19{vertical-align:102.222000px;}
.ls3{letter-spacing:0.000000px;}
.ls81{letter-spacing:0.000062px;}
.lscc{letter-spacing:0.000141px;}
.ls6b{letter-spacing:0.000300px;}
.ls8b{letter-spacing:0.000527px;}
.ls52{letter-spacing:0.000532px;}
.ls4e{letter-spacing:0.000538px;}
.ls9{letter-spacing:0.000564px;}
.ls9e{letter-spacing:0.000615px;}
.ls69{letter-spacing:0.000767px;}
.ls85{letter-spacing:0.000775px;}
.ls1d{letter-spacing:0.000993px;}
.ls5d{letter-spacing:0.001140px;}
.ls8{letter-spacing:0.001202px;}
.ls1{letter-spacing:0.001559px;}
.ls6e{letter-spacing:0.001859px;}
.ls67{letter-spacing:0.001861px;}
.lsbb{letter-spacing:0.002222px;}
.ls53{letter-spacing:0.002234px;}
.ls2d{letter-spacing:0.002245px;}
.lsc7{letter-spacing:0.002338px;}
.ls89{letter-spacing:0.002685px;}
.lsa0{letter-spacing:0.002725px;}
.ls3f{letter-spacing:0.002779px;}
.lscb{letter-spacing:0.002915px;}
.ls49{letter-spacing:0.003031px;}
.ls4a{letter-spacing:0.003093px;}
.ls1f{letter-spacing:0.003269px;}
.ls33{letter-spacing:0.003634px;}
.ls7{letter-spacing:0.003652px;}
.ls0{letter-spacing:0.004200px;}
.ls18{letter-spacing:0.004276px;}
.ls4c{letter-spacing:0.005374px;}
.ls25{letter-spacing:0.005781px;}
.ls7c{letter-spacing:0.006062px;}
.ls46{letter-spacing:0.006993px;}
.lsc1{letter-spacing:0.671660px;}
.lsa4{letter-spacing:0.957093px;}
.ls51{letter-spacing:1.282641px;}
.ls7d{letter-spacing:1.284579px;}
.ls56{letter-spacing:1.288641px;}
.ls82{letter-spacing:1.290579px;}
.ls37{letter-spacing:1.412514px;}
.lsb3{letter-spacing:1.497110px;}
.ls57{letter-spacing:1.502282px;}
.ls98{letter-spacing:1.661249px;}
.ls1b{letter-spacing:1.661781px;}
.ls59{letter-spacing:1.714200px;}
.ls62{letter-spacing:1.720200px;}
.ls8f{letter-spacing:1.725093px;}
.lsa3{letter-spacing:1.880823px;}
.ls32{letter-spacing:1.940704px;}
.ls2f{letter-spacing:2.144023px;}
.ls17{letter-spacing:2.283182px;}
.lsc2{letter-spacing:2.371909px;}
.lsc3{letter-spacing:2.387740px;}
.ls3e{letter-spacing:2.536847px;}
.ls38{letter-spacing:2.540998px;}
.ls3b{letter-spacing:2.541947px;}
.ls30{letter-spacing:2.624368px;}
.ls3a{letter-spacing:2.819564px;}
.ls31{letter-spacing:2.824664px;}
.ls2{letter-spacing:2.964877px;}
.ls72{letter-spacing:2.983140px;}
.ls1e{letter-spacing:2.984525px;}
.ls83{letter-spacing:2.985954px;}
.lsb8{letter-spacing:2.986033px;}
.ls70{letter-spacing:2.986982px;}
.lsbc{letter-spacing:2.987675px;}
.lsc4{letter-spacing:2.988532px;}
.ls24{letter-spacing:2.988615px;}
.ls26{letter-spacing:2.988775px;}
.ls75{letter-spacing:2.988780px;}
.ls97{letter-spacing:2.989140px;}
.ls1c{letter-spacing:2.989409px;}
.lsbf{letter-spacing:2.990234px;}
.lsd{letter-spacing:2.990525px;}
.ls16{letter-spacing:3.323134px;}
.lsa8{letter-spacing:3.994868px;}
.ls7e{letter-spacing:4.272579px;}
.ls15{letter-spacing:4.276379px;}
.lsb0{letter-spacing:4.278579px;}
.ls68{letter-spacing:5.279276px;}
.ls39{letter-spacing:6.097279px;}
.ls44{letter-spacing:7.170538px;}
.ls42{letter-spacing:7.173269px;}
.ls45{letter-spacing:7.176538px;}
.ls9b{letter-spacing:7.176775px;}
.ls10{letter-spacing:9.322172px;}
.lsaa{letter-spacing:9.420479px;}
.lsb4{letter-spacing:9.956338px;}
.ls4f{letter-spacing:9.958200px;}
.lsa6{letter-spacing:9.962338px;}
.lsa7{letter-spacing:9.982525px;}
.ls5a{letter-spacing:10.162363px;}
.ls14{letter-spacing:13.278538px;}
.ls5b{letter-spacing:13.280012px;}
.ls73{letter-spacing:13.280338px;}
.ls94{letter-spacing:13.281199px;}
.ls43{letter-spacing:13.284538px;}
.ls8d{letter-spacing:13.285861px;}
.ls48{letter-spacing:13.287269px;}
.ls13{letter-spacing:13.288200px;}
.ls36{letter-spacing:14.112158px;}
.ls96{letter-spacing:14.696100px;}
.ls95{letter-spacing:14.702100px;}
.ls93{letter-spacing:16.268525px;}
.ls27{letter-spacing:16.272615px;}
.lse{letter-spacing:16.598727px;}
.lsac{letter-spacing:16.599582px;}
.lsae{letter-spacing:16.601217px;}
.lsaf{letter-spacing:16.601607px;}
.lsf{letter-spacing:16.602538px;}
.lsa5{letter-spacing:16.604725px;}
.lsa9{letter-spacing:16.605093px;}
.lsb2{letter-spacing:16.607607px;}
.lsc{letter-spacing:16.608538px;}
.ls8c{letter-spacing:16.617617px;}
.ls34{letter-spacing:17.386358px;}
.ls92{letter-spacing:17.815861px;}
.lsc8{letter-spacing:17.925031px;}
.lsc6{letter-spacing:17.931031px;}
.lsb7{letter-spacing:17.936338px;}
.ls99{letter-spacing:18.488823px;}
.ls78{letter-spacing:18.653217px;}
.lsca{letter-spacing:18.793059px;}
.lsbe{letter-spacing:19.284538px;}
.ls50{letter-spacing:19.352012px;}
.ls5e{letter-spacing:19.589374px;}
.ls5{letter-spacing:19.592525px;}
.ls4d{letter-spacing:19.595374px;}
.ls23{letter-spacing:19.597409px;}
.ls2e{letter-spacing:19.802100px;}
.lsb6{letter-spacing:19.841607px;}
.ls2a{letter-spacing:20.142775px;}
.ls29{letter-spacing:20.148615px;}
.ls19{letter-spacing:20.454538px;}
.lsb5{letter-spacing:20.799093px;}
.lsc9{letter-spacing:20.916538px;}
.lsb{letter-spacing:20.918727px;}
.ls41{letter-spacing:20.919269px;}
.ls65{letter-spacing:21.093269px;}
.ls2c{letter-spacing:21.298276px;}
.ls5c{letter-spacing:21.984538px;}
.lsa{letter-spacing:22.457535px;}
.lsa2{letter-spacing:22.490400px;}
.ls9d{letter-spacing:22.493607px;}
.ls12{letter-spacing:23.068172px;}
.ls76{letter-spacing:23.115093px;}
.lsb1{letter-spacing:23.390100px;}
.ls6d{letter-spacing:23.391269px;}
.ls54{letter-spacing:23.440363px;}
.ls9c{letter-spacing:23.445093px;}
.ls2b{letter-spacing:23.613031px;}
.ls6{letter-spacing:23.772538px;}
.lsbd{letter-spacing:24.049409px;}
.lsa1{letter-spacing:24.149249px;}
.ls9a{letter-spacing:24.354538px;}
.lsc0{letter-spacing:25.426200px;}
.ls6f{letter-spacing:26.560677px;}
.ls4{letter-spacing:27.536525px;}
.ls8a{letter-spacing:28.223217px;}
.ls9f{letter-spacing:28.374579px;}
.ls6c{letter-spacing:28.931276px;}
.ls91{letter-spacing:29.547269px;}
.ls88{letter-spacing:30.134400px;}
.ls64{letter-spacing:31.233582px;}
.ls58{letter-spacing:31.356538px;}
.ls87{letter-spacing:31.793249px;}
.lsba{letter-spacing:31.810033px;}
.ls55{letter-spacing:31.944538px;}
.ls22{letter-spacing:32.245409px;}
.ls61{letter-spacing:34.674538px;}
.ls60{letter-spacing:35.268538px;}
.ls5f{letter-spacing:35.946538px;}
.ls21{letter-spacing:36.020108px;}
.ls86{letter-spacing:37.644579px;}
.ls84{letter-spacing:39.647217px;}
.ls7b{letter-spacing:39.647607px;}
.ls80{letter-spacing:39.651582px;}
.ls7a{letter-spacing:39.657093px;}
.ls7f{letter-spacing:40.634100px;}
.ls8e{letter-spacing:69.734338px;}
.ls77{letter-spacing:71.174338px;}
.lsad{letter-spacing:73.226338px;}
.lsab{letter-spacing:77.000338px;}
.ls40{letter-spacing:78.424847px;}
.lsc5{letter-spacing:80.523056px;}
.ls3c{letter-spacing:88.135247px;}
.ls3d{letter-spacing:89.282747px;}
.ls35{letter-spacing:94.703692px;}
.ls1a{letter-spacing:111.410108px;}
.ls90{letter-spacing:138.699269px;}
.ls79{letter-spacing:139.467269px;}
.ls20{letter-spacing:205.623269px;}
.ls74{letter-spacing:293.713140px;}
.ls11{letter-spacing:297.938727px;}
.ls71{letter-spacing:303.100982px;}
.ls6a{letter-spacing:319.155269px;}
.ls47{letter-spacing:344.060525px;}
.ls28{letter-spacing:355.503269px;}
.ls63{letter-spacing:361.545269px;}
.lsb9{letter-spacing:417.225269px;}
.ls66{letter-spacing:420.466200px;}
.ls4b{letter-spacing:477.873269px;}
.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;}
}
.ws3{word-spacing:-59.775600px;}
.wsc0{word-spacing:-48.920351px;}
.ws65{word-spacing:-47.654765px;}
.ws94{word-spacing:-47.324343px;}
.ws8d{word-spacing:-45.327837px;}
.wsd7{word-spacing:-43.157983px;}
.ws21{word-spacing:-38.937826px;}
.wsb5{word-spacing:-33.223278px;}
.wsf7{word-spacing:-33.211407px;}
.ws80{word-spacing:-33.097152px;}
.ws22{word-spacing:-31.633157px;}
.wsba{word-spacing:-29.015076px;}
.ws73{word-spacing:-28.955301px;}
.ws6a{word-spacing:-25.652453px;}
.ws7e{word-spacing:-24.612006px;}
.ws96{word-spacing:-22.339779px;}
.ws95{word-spacing:-22.334057px;}
.ws72{word-spacing:-19.092327px;}
.ws6f{word-spacing:-16.605662px;}
.ws110{word-spacing:-16.470134px;}
.ws7c{word-spacing:-16.228478px;}
.ws56{word-spacing:-14.943900px;}
.ws16{word-spacing:-14.920027px;}
.ws87{word-spacing:-14.349551px;}
.ws85{word-spacing:-14.342534px;}
.ws86{word-spacing:-14.341393px;}
.ws7d{word-spacing:-14.114812px;}
.ws70{word-spacing:-13.531962px;}
.ws67{word-spacing:-13.355532px;}
.wsac{word-spacing:-11.955150px;}
.ws6d{word-spacing:-11.806803px;}
.ws98{word-spacing:-10.460700px;}
.wsf6{word-spacing:-9.564150px;}
.ws6c{word-spacing:-9.412803px;}
.ws10b{word-spacing:-8.352175px;}
.ws10c{word-spacing:-7.067234px;}
.ws8e{word-spacing:-3.335478px;}
.ws8c{word-spacing:-0.896634px;}
.ws109{word-spacing:-0.584327px;}
.ws23{word-spacing:-0.478205px;}
.wsbb{word-spacing:-0.247691px;}
.wsbc{word-spacing:-0.239102px;}
.ws9{word-spacing:-0.215194px;}
.ws4d{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws108{word-spacing:-0.047821px;}
.wsb9{word-spacing:-0.021471px;}
.wsf4{word-spacing:-0.016001px;}
.ws8a{word-spacing:-0.015471px;}
.ws38{word-spacing:0.000000px;}
.ws77{word-spacing:0.011955px;}
.ws25{word-spacing:0.059776px;}
.wsd9{word-spacing:0.179327px;}
.wscd{word-spacing:0.239102px;}
.ws66{word-spacing:0.358309px;}
.ws68{word-spacing:0.358654px;}
.wsf2{word-spacing:0.478205px;}
.ws81{word-spacing:0.717307px;}
.ws9e{word-spacing:0.777083px;}
.wsec{word-spacing:0.986938px;}
.ws61{word-spacing:1.016185px;}
.wsa9{word-spacing:1.075961px;}
.ws12c{word-spacing:1.099874px;}
.wsc4{word-spacing:1.135736px;}
.wsc3{word-spacing:1.195512px;}
.ws117{word-spacing:1.243336px;}
.ws31{word-spacing:1.315063px;}
.ws100{word-spacing:1.327018px;}
.ws8{word-spacing:1.398758px;}
.wsa4{word-spacing:1.494390px;}
.wsca{word-spacing:1.554166px;}
.ws60{word-spacing:1.613941px;}
.wsbe{word-spacing:2.092146px;}
.ws83{word-spacing:2.151922px;}
.ws78{word-spacing:2.206309px;}
.ws79{word-spacing:2.211697px;}
.ws76{word-spacing:2.331248px;}
.wsda{word-spacing:2.391024px;}
.wsf5{word-spacing:2.391047px;}
.wsa6{word-spacing:2.510575px;}
.ws8b{word-spacing:2.630126px;}
.wseb{word-spacing:2.642683px;}
.wse5{word-spacing:2.680738px;}
.wse8{word-spacing:2.689902px;}
.ws88{word-spacing:2.736428px;}
.ws5a{word-spacing:2.749678px;}
.ws126{word-spacing:2.821415px;}
.ws7{word-spacing:2.851315px;}
.ws113{word-spacing:2.964877px;}
.ws48{word-spacing:2.988780px;}
.ws47{word-spacing:3.048556px;}
.wsf0{word-spacing:3.168107px;}
.wse3{word-spacing:3.207135px;}
.wsde{word-spacing:3.227882px;}
.wsb8{word-spacing:3.706087px;}
.wse1{word-spacing:3.945190px;}
.ws6b{word-spacing:4.064741px;}
.ws24{word-spacing:4.124516px;}
.ws1c{word-spacing:4.184292px;}
.ws59{word-spacing:4.244068px;}
.ws20{word-spacing:4.363619px;}
.wse0{word-spacing:4.435350px;}
.ws69{word-spacing:4.507362px;}
.ws35{word-spacing:4.542946px;}
.wsce{word-spacing:4.602721px;}
.ws42{word-spacing:4.722272px;}
.ws43{word-spacing:4.782048px;}
.wsf3{word-spacing:4.782060px;}
.ws7b{word-spacing:4.841824px;}
.ws34{word-spacing:5.021150px;}
.ws14{word-spacing:5.057050px;}
.wsa8{word-spacing:5.080926px;}
.wsa2{word-spacing:5.140702px;}
.ws64{word-spacing:5.200477px;}
.ws103{word-spacing:5.320028px;}
.ws114{word-spacing:5.482423px;}
.ws10f{word-spacing:5.499369px;}
.ws123{word-spacing:5.524290px;}
.wsa1{word-spacing:5.559131px;}
.wsfd{word-spacing:5.618906px;}
.wsd4{word-spacing:5.678682px;}
.wsdb{word-spacing:5.910702px;}
.wsab{word-spacing:5.918343px;}
.ws57{word-spacing:5.928452px;}
.wsb4{word-spacing:5.977276px;}
.wsbf{word-spacing:5.977474px;}
.ws2{word-spacing:5.977560px;}
.ws6e{word-spacing:5.980309px;}
.wsc5{word-spacing:6.037336px;}
.wse{word-spacing:6.079219px;}
.ws10d{word-spacing:6.121037px;}
.ws91{word-spacing:6.143784px;}
.ws92{word-spacing:6.156887px;}
.ws12b{word-spacing:6.216678px;}
.ws4e{word-spacing:6.336214px;}
.ws11b{word-spacing:6.360140px;}
.ws1b{word-spacing:6.395989px;}
.ws1d{word-spacing:6.455765px;}
.wsa{word-spacing:6.455808px;}
.wsfc{word-spacing:6.515540px;}
.wsc7{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws119{word-spacing:6.599243px;}
.wsff{word-spacing:6.681794px;}
.ws101{word-spacing:6.690858px;}
.ws102{word-spacing:6.694867px;}
.ws12{word-spacing:6.724800px;}
.wsad{word-spacing:6.814418px;}
.ws106{word-spacing:6.838346px;}
.ws3b{word-spacing:6.874194px;}
.wsa3{word-spacing:7.053521px;}
.ws63{word-spacing:7.113296px;}
.wsf1{word-spacing:7.412174px;}
.ws104{word-spacing:7.471950px;}
.wsc9{word-spacing:7.531726px;}
.ws5{word-spacing:7.531776px;}
.ws12a{word-spacing:7.699117px;}
.ws40{word-spacing:7.711052px;}
.wscb{word-spacing:7.770828px;}
.wsa5{word-spacing:7.950155px;}
.ws111{word-spacing:7.986040px;}
.ws2c{word-spacing:8.069706px;}
.ws4b{word-spacing:8.308808px;}
.ws46{word-spacing:8.368584px;}
.ws9d{word-spacing:8.428360px;}
.ws107{word-spacing:8.488135px;}
.ws19{word-spacing:8.547911px;}
.ws33{word-spacing:8.607708px;}
.ws18{word-spacing:8.667462px;}
.ws99{word-spacing:8.692798px;}
.ws9a{word-spacing:8.727238px;}
.ws11f{word-spacing:8.751170px;}
.ws71{word-spacing:8.846789px;}
.ws89{word-spacing:8.966340px;}
.wsd1{word-spacing:9.026116px;}
.wsd6{word-spacing:9.134297px;}
.ws2d{word-spacing:9.145667px;}
.ws9f{word-spacing:9.265218px;}
.wsa0{word-spacing:9.324994px;}
.wsed{word-spacing:9.564096px;}
.ws62{word-spacing:9.623872px;}
.ws11a{word-spacing:9.659761px;}
.ws125{word-spacing:9.803223px;}
.wsc2{word-spacing:9.976309px;}
.wsdf{word-spacing:10.102076px;}
.ws3e{word-spacing:10.221628px;}
.ws17{word-spacing:10.281403px;}
.ws39{word-spacing:10.341179px;}
.wsea{word-spacing:10.460730px;}
.wsbd{word-spacing:10.520506px;}
.wsd2{word-spacing:10.580281px;}
.wsc{word-spacing:10.652083px;}
.ws122{word-spacing:10.663994px;}
.ws7a{word-spacing:10.699832px;}
.wsd5{word-spacing:10.759608px;}
.wsb3{word-spacing:10.771563px;}
.ws44{word-spacing:10.879159px;}
.ws5f{word-spacing:11.118262px;}
.wsb7{word-spacing:11.309544px;}
.ws10a{word-spacing:11.333482px;}
.ws5c{word-spacing:11.357364px;}
.ws51{word-spacing:11.417140px;}
.ws5e{word-spacing:11.716018px;}
.wsb2{word-spacing:11.775793px;}
.ws55{word-spacing:11.835569px;}
.wsf{word-spacing:11.835648px;}
.wsd0{word-spacing:11.895344px;}
.wsaa{word-spacing:11.955120px;}
.ws121{word-spacing:11.955150px;}
.ws9c{word-spacing:12.074671px;}
.ws128{word-spacing:12.194253px;}
.wsa7{word-spacing:12.493100px;}
.ws53{word-spacing:12.612652px;}
.ws3d{word-spacing:12.791978px;}
.ws29{word-spacing:12.911530px;}
.ws4c{word-spacing:12.971305px;}
.ws36{word-spacing:13.090856px;}
.ws2e{word-spacing:13.150632px;}
.wsb{word-spacing:13.180608px;}
.wsb0{word-spacing:13.270183px;}
.wscc{word-spacing:13.329959px;}
.ws3c{word-spacing:13.449510px;}
.wse9{word-spacing:13.509286px;}
.wsdc{word-spacing:13.569061px;}
.ws28{word-spacing:13.867939px;}
.wsd8{word-spacing:13.882309px;}
.ws49{word-spacing:13.927715px;}
.ws11d{word-spacing:13.963615px;}
.wse6{word-spacing:14.047266px;}
.wse2{word-spacing:14.107042px;}
.ws30{word-spacing:14.166817px;}
.ws1f{word-spacing:14.286368px;}
.ws75{word-spacing:14.308309px;}
.ws0{word-spacing:14.346180px;}
.ws12e{word-spacing:14.441821px;}
.ws54{word-spacing:14.465695px;}
.wsb6{word-spacing:14.585246px;}
.ws4f{word-spacing:14.645022px;}
.ws127{word-spacing:14.728745px;}
.ws11e{word-spacing:14.967848px;}
.wse4{word-spacing:15.015631px;}
.wsfa{word-spacing:15.183002px;}
.ws3a{word-spacing:15.242778px;}
.ws5d{word-spacing:15.422105px;}
.ws41{word-spacing:15.481880px;}
.ws10{word-spacing:15.709133px;}
.ws3f{word-spacing:15.840534px;}
.ws1e{word-spacing:16.019861px;}
.wsee{word-spacing:16.079636px;}
.ws93{word-spacing:16.139412px;}
.ws9b{word-spacing:16.185398px;}
.wsd3{word-spacing:16.199188px;}
.ws12d{word-spacing:16.211183px;}
.ws90{word-spacing:16.258963px;}
.ws8f{word-spacing:16.288309px;}
.ws5b{word-spacing:16.318739px;}
.ws37{word-spacing:16.498066px;}
.wsf9{word-spacing:16.617617px;}
.ws116{word-spacing:16.689389px;}
.ws10e{word-spacing:16.737210px;}
.wsc8{word-spacing:16.856719px;}
.ws32{word-spacing:16.928492px;}
.wsef{word-spacing:17.095822px;}
.ws2b{word-spacing:17.275148px;}
.wsdd{word-spacing:17.394700px;}
.ws115{word-spacing:17.406698px;}
.ws124{word-spacing:17.454519px;}
.wse7{word-spacing:17.574026px;}
.ws112{word-spacing:17.645801px;}
.wsd{word-spacing:17.699674px;}
.ws15{word-spacing:17.932680px;}
.ws2a{word-spacing:18.052231px;}
.ws11c{word-spacing:18.267469px;}
.ws6{word-spacing:18.345254px;}
.wsaf{word-spacing:18.410885px;}
.ws13{word-spacing:18.452851px;}
.ws118{word-spacing:18.506572px;}
.wscf{word-spacing:18.590212px;}
.ws50{word-spacing:18.649987px;}
.ws97{word-spacing:18.829314px;}
.wsfe{word-spacing:18.948865px;}
.wsfb{word-spacing:19.367294px;}
.ws2f{word-spacing:19.785724px;}
.ws26{word-spacing:20.323704px;}
.ws120{word-spacing:20.658499px;}
.ws58{word-spacing:20.861684px;}
.ws27{word-spacing:21.818094px;}
.ws52{word-spacing:21.877870px;}
.ws82{word-spacing:22.116972px;}
.wsb1{word-spacing:22.654952px;}
.ws1a{word-spacing:22.774504px;}
.ws45{word-spacing:23.238115px;}
.wsc6{word-spacing:24.029791px;}
.ws129{word-spacing:24.101582px;}
.ws11{word-spacing:24.155482px;}
.ws12f{word-spacing:26.349151px;}
.wsae{word-spacing:27.220309px;}
.ws4a{word-spacing:28.814066px;}
.ws84{word-spacing:53.570005px;}
.ws7f{word-spacing:57.817770px;}
.ws74{word-spacing:68.026905px;}
.wsf8{word-spacing:76.752063px;}
.wsc1{word-spacing:151.485261px;}
.ws105{word-spacing:202.213946px;}
._11{margin-left:-35.808634px;}
._13{margin-left:-16.652375px;}
._3{margin-left:-7.675162px;}
._5{margin-left:-5.469505px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.582312px;}
._2{margin-left:-1.362892px;}
._7{width:1.657212px;}
._6{width:2.988780px;}
._c{width:4.451588px;}
._16{width:8.788452px;}
._4{width:13.826189px;}
._33{width:16.689379px;}
._9{width:18.709763px;}
._a{width:20.262728px;}
._8{width:21.638767px;}
._15{width:24.223648px;}
._10{width:25.382829px;}
._f{width:28.034771px;}
._b{width:29.887800px;}
._17{width:31.023536px;}
._34{width:32.757029px;}
._12{width:36.871349px;}
._35{width:47.985229px;}
._d{width:60.405637px;}
._1f{width:71.730900px;}
._1b{width:75.605698px;}
._1e{width:83.682320px;}
._31{width:86.365090px;}
._22{width:98.274146px;}
._1d{width:99.658130px;}
._20{width:107.593407px;}
._21{width:110.274304px;}
._1c{width:111.618824px;}
._14{width:115.690408px;}
._e{width:121.402444px;}
._30{width:133.897680px;}
._2e{width:134.966306px;}
._23{width:137.771149px;}
._1a{width:139.469011px;}
._28{width:142.687700px;}
._2d{width:145.072380px;}
._32{width:149.724401px;}
._27{width:153.791050px;}
._2b{width:157.807980px;}
._2f{width:160.900999px;}
._29{width:162.463151px;}
._2c{width:165.749050px;}
._25{width:169.763130px;}
._2a{width:173.634701px;}
._26{width:177.697320px;}
._24{width:185.592401px;}
._19{width:227.147230px;}
._18{width:288.187604px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:28.268938px;}
.fs8{font-size:29.887800px;}
.fs11{font-size:30.838780px;}
.fs14{font-size:30.838781px;}
.fs10{font-size:33.408699px;}
.fsf{font-size:33.408701px;}
.fs7{font-size:35.566380px;}
.fsa{font-size:35.865600px;}
.fsc{font-size:36.861573px;}
.fsd{font-size:36.861576px;}
.fs9{font-size:38.256600px;}
.fs13{font-size:38.548533px;}
.fs5{font-size:41.842800px;}
.fsb{font-size:42.957897px;}
.fse{font-size:45.368069px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:50.809260px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y19c{bottom:0.066438px;}
.y19d{bottom:0.231081px;}
.y19b{bottom:0.233421px;}
.y1a0{bottom:0.331312px;}
.y19a{bottom:0.510258px;}
.y19f{bottom:0.585541px;}
.y19e{bottom:0.840054px;}
.y1ab{bottom:1.081028px;}
.y1ae{bottom:1.245514px;}
.y1a8{bottom:1.248003px;}
.y1b1{bottom:1.345828px;}
.y1a5{bottom:1.524801px;}
.y1b0{bottom:1.599998px;}
.y1af{bottom:1.854487px;}
.y142{bottom:2.348697px;}
.y195{bottom:7.904216px;}
.y1a6{bottom:8.667329px;}
.y15d{bottom:14.319321px;}
.y159{bottom:14.330120px;}
.y15c{bottom:14.457698px;}
.y14f{bottom:14.464512px;}
.y15a{bottom:14.483509px;}
.y15b{bottom:14.580482px;}
.y158{bottom:20.015555px;}
.y14e{bottom:21.131811px;}
.y1b2{bottom:25.457406px;}
.y194{bottom:30.599070px;}
.y1a4{bottom:31.362174px;}
.y149{bottom:42.069331px;}
.y153{bottom:42.339744px;}
.y1a2{bottom:42.747920px;}
.y15e{bottom:52.993797px;}
.y193{bottom:53.193783px;}
.y1a3{bottom:53.956779px;}
.y1b3{bottom:57.608733px;}
.y148{bottom:64.218066px;}
.y152{bottom:64.488479px;}
.y150{bottom:69.498115px;}
.y196{bottom:75.979628px;}
.y1a7{bottom:76.742768px;}
.y147{bottom:86.266101px;}
.y151{bottom:86.536514px;}
.y1b4{bottom:89.869619px;}
.y197{bottom:98.509334px;}
.y1a9{bottom:99.272443px;}
.y95{bottom:104.367000px;}
.y14a{bottom:108.270286px;}
.y154{bottom:108.540707px;}
.y35{bottom:113.332500px;}
.y62{bottom:113.334000px;}
.y94{bottom:114.618000px;}
.y198{bottom:121.394313px;}
.y1aa{bottom:122.157399px;}
.y1b5{bottom:122.183676px;}
.y145{bottom:123.913126px;}
.y34{bottom:126.244500px;}
.y14b{bottom:130.307391px;}
.y61{bottom:130.549500px;}
.y155{bottom:130.577789px;}
.y1b6{bottom:130.592370px;}
.y1a1{bottom:130.615880px;}
.y144{bottom:135.621541px;}
.y1ad{bottom:137.197967px;}
.y1d7{bottom:138.466500px;}
.y33{bottom:139.156500px;}
.y93{bottom:142.494000px;}
.y199{bottom:143.826099px;}
.y1ac{bottom:144.589219px;}
.y146{bottom:147.493566px;}
.y60{bottom:147.765000px;}
.yc8{bottom:147.907500px;}
.y1d6{bottom:151.378500px;}
.y14c{bottom:152.265206px;}
.y156{bottom:152.535644px;}
.y96{bottom:152.674500px;}
.y92{bottom:152.745000px;}
.y176{bottom:156.366090px;}
.y177{bottom:156.530674px;}
.y175{bottom:156.533011px;}
.y17a{bottom:156.630862px;}
.y174{bottom:156.809907px;}
.y179{bottom:156.885204px;}
.y178{bottom:157.139647px;}
.y187{bottom:157.380629px;}
.y18a{bottom:157.545163px;}
.y184{bottom:157.547596px;}
.y18d{bottom:157.645435px;}
.y181{bottom:157.824395px;}
.y18c{bottom:157.899605px;}
.y18b{bottom:158.154136px;}
.y143{bottom:159.492654px;}
.y16e{bottom:164.203868px;}
.y1d5{bottom:164.290500px;}
.y182{bottom:164.966922px;}
.y5f{bottom:164.980500px;}
.yc7{bottom:165.123000px;}
.y16a{bottom:165.694500px;}
.y32{bottom:170.967000px;}
.y14d{bottom:174.333550px;}
.y157{bottom:174.603961px;}
.y1d4{bottom:177.202500px;}
.y91{bottom:177.715500px;}
.y18e{bottom:181.757000px;}
.y122{bottom:182.094000px;}
.y5e{bottom:182.196000px;}
.yc6{bottom:182.338500px;}
.y16d{bottom:186.898722px;}
.y180{bottom:187.661768px;}
.y31{bottom:188.182500px;}
.y1d3{bottom:190.113000px;}
.y90{bottom:198.076500px;}
.y17e{bottom:199.047576px;}
.y121{bottom:199.309500px;}
.y5d{bottom:199.411500px;}
.yc5{bottom:199.554000px;}
.y169{bottom:200.193000px;}
.y1d2{bottom:203.025000px;}
.y30{bottom:205.398000px;}
.y16c{bottom:209.493376px;}
.y17f{bottom:210.256372px;}
.y18f{bottom:213.908326px;}
.y1d1{bottom:215.937000px;}
.y120{bottom:216.525000px;}
.y5c{bottom:216.627000px;}
.yc4{bottom:216.769500px;}
.y168{bottom:217.408500px;}
.y2f{bottom:222.613500px;}
.y1d0{bottom:228.849000px;}
.y16f{bottom:232.279218px;}
.y183{bottom:233.042303px;}
.y11f{bottom:233.740500px;}
.y5b{bottom:233.842500px;}
.y173{bottom:233.912964px;}
.yc3{bottom:233.986500px;}
.y167{bottom:234.624000px;}
.y8f{bottom:234.888000px;}
.y2e{bottom:239.829000px;}
.y1cf{bottom:241.761000px;}
.y190{bottom:246.169213px;}
.y11e{bottom:250.956000px;}
.y5a{bottom:251.058000px;}
.yc2{bottom:251.202000px;}
.y166{bottom:251.839500px;}
.y8e{bottom:252.103500px;}
.y1ce{bottom:254.671500px;}
.y170{bottom:254.808940px;}
.y185{bottom:255.571993px;}
.y2d{bottom:257.044500px;}
.y17c{bottom:259.512880px;}
.y1cd{bottom:267.583500px;}
.y11d{bottom:268.171500px;}
.yf0{bottom:268.273500px;}
.yc1{bottom:268.417500px;}
.y165{bottom:269.055000px;}
.y17d{bottom:269.064898px;}
.y8d{bottom:269.319000px;}
.y2c{bottom:274.260000px;}
.y59{bottom:275.284500px;}
.y171{bottom:277.693964px;}
.y186{bottom:278.457051px;}
.y191{bottom:278.483270px;}
.y1cc{bottom:280.495500px;}
.y11c{bottom:285.387000px;}
.yc0{bottom:285.633000px;}
.y164{bottom:286.270500px;}
.y8c{bottom:286.534500px;}
.y192{bottom:286.891967px;}
.y17b{bottom:286.915477px;}
.y2b{bottom:291.475500px;}
.y1cb{bottom:293.407500px;}
.y189{bottom:293.497574px;}
.yef{bottom:296.668500px;}
.y172{bottom:300.125707px;}
.yee{bottom:300.280500px;}
.y188{bottom:300.888827px;}
.y11b{bottom:302.602500px;}
.y163{bottom:303.486000px;}
.y8b{bottom:303.589500px;}
.y58{bottom:305.850000px;}
.y1ca{bottom:306.318000px;}
.ybf{bottom:308.187000px;}
.y2a{bottom:308.691000px;}
.y8a{bottom:316.251150px;}
.y1c9{bottom:319.230000px;}
.y11a{bottom:319.818000px;}
.y162{bottom:320.701500px;}
.y57{bottom:323.065500px;}
.ybc{bottom:325.819500px;}
.y29{bottom:325.906500px;}
.y1c8{bottom:332.142000px;}
.yed{bottom:332.193000px;}
.y89{bottom:333.558000px;}
.y119{bottom:337.035000px;}
.ybe{bottom:340.015500px;}
.y56{bottom:340.281000px;}
.y28{bottom:343.122000px;}
.ybd{bottom:344.499000px;}
.y1c7{bottom:345.054000px;}
.y161{bottom:347.703000px;}
.y118{bottom:354.250500px;}
.y55{bottom:357.496500px;}
.y1c6{bottom:357.966000px;}
.yec{bottom:360.189000px;}
.y27{bottom:360.337500px;}
.y88{bottom:370.332000px;}
.y1c5{bottom:370.876500px;}
.ybb{bottom:371.139000px;}
.y117{bottom:371.466000px;}
.y54{bottom:374.712000px;}
.y26{bottom:377.553000px;}
.y1c4{bottom:383.788500px;}
.y87{bottom:387.547500px;}
.yba{bottom:388.354500px;}
.y116{bottom:388.681500px;}
.y53{bottom:391.927500px;}
.y25{bottom:395.083500px;}
.y160{bottom:395.757000px;}
.yeb{bottom:396.112500px;}
.y1c3{bottom:396.700500px;}
.y86{bottom:404.763000px;}
.yb9{bottom:405.570000px;}
.y115{bottom:405.897000px;}
.y15f{bottom:408.669000px;}
.y52{bottom:409.143000px;}
.y1c2{bottom:409.612500px;}
.y24{bottom:412.299000px;}
.yea{bottom:413.328000px;}
.y85{bottom:421.978500px;}
.y1c1{bottom:422.523000px;}
.y114{bottom:423.112500px;}
.yb8{bottom:426.630000px;}
.y51{bottom:426.742500px;}
.ye9{bottom:427.260000px;}
.y23{bottom:429.514500px;}
.ye8{bottom:432.414000px;}
.y1c0{bottom:435.435000px;}
.yb7{bottom:440.245500px;}
.y113{bottom:440.328000px;}
.y84{bottom:443.740500px;}
.y141{bottom:443.817000px;}
.y50{bottom:443.958000px;}
.y22{bottom:446.730000px;}
.y1bf{bottom:448.347000px;}
.ye7{bottom:449.629500px;}
.y112{bottom:457.543500px;}
.y4f{bottom:461.173500px;}
.y1be{bottom:461.259000px;}
.y21{bottom:463.945500px;}
.ye6{bottom:466.845000px;}
.y83{bottom:470.086500px;}
.y1bd{bottom:474.171000px;}
.y111{bottom:474.759000px;}
.y4e{bottom:478.389000px;}
.y20{bottom:481.161000px;}
.yb6{bottom:481.323000px;}
.ye5{bottom:484.060500px;}
.y1bc{bottom:487.081500px;}
.y82{bottom:487.302000px;}
.y110{bottom:491.974500px;}
.y4d{bottom:495.604500px;}
.y1f{bottom:498.376500px;}
.yb5{bottom:498.538500px;}
.y1bb{bottom:499.993500px;}
.y81{bottom:504.517500px;}
.ye4{bottom:506.685000px;}
.y10f{bottom:509.190000px;}
.y4c{bottom:512.820000px;}
.y1ba{bottom:512.905500px;}
.y1e{bottom:515.592000px;}
.yb4{bottom:515.754000px;}
.y80{bottom:521.733000px;}
.y4b{bottom:530.037000px;}
.y10e{bottom:531.010500px;}
.y1d{bottom:532.807500px;}
.yb3{bottom:532.969500px;}
.ye3{bottom:535.695000px;}
.y7f{bottom:538.948500px;}
.y4a{bottom:547.252500px;}
.y1c{bottom:550.023000px;}
.ye2{bottom:552.910500px;}
.y10d{bottom:557.703000px;}
.yb2{bottom:560.911500px;}
.y1b9{bottom:561.222000px;}
.y49{bottom:564.468000px;}
.y7e{bottom:565.674000px;}
.y1b{bottom:567.238500px;}
.ye1{bottom:570.126000px;}
.y1b8{bottom:574.134000px;}
.y10c{bottom:574.918500px;}
.y48{bottom:581.683500px;}
.y1a{bottom:584.454000px;}
.y1b7{bottom:587.046000px;}
.ye0{bottom:587.341500px;}
.yb1{bottom:588.852000px;}
.y10b{bottom:592.134000px;}
.y47{bottom:598.899000px;}
.y7d{bottom:599.653500px;}
.y19{bottom:601.669500px;}
.ydf{bottom:604.756500px;}
.yb0{bottom:606.067500px;}
.y46{bottom:616.114500px;}
.y7c{bottom:616.869000px;}
.y18{bottom:618.885000px;}
.y10a{bottom:619.176000px;}
.yde{bottom:621.973500px;}
.y16b{bottom:622.194000px;}
.yaf{bottom:628.492500px;}
.y45{bottom:633.714000px;}
.y7b{bottom:634.084500px;}
.y17{bottom:636.100500px;}
.y109{bottom:645.732000px;}
.ydd{bottom:650.368500px;}
.y44{bottom:650.929500px;}
.y7a{bottom:653.592000px;}
.yae{bottom:657.546000px;}
.y140{bottom:658.155000px;}
.y16{bottom:659.910000px;}
.y108{bottom:662.949000px;}
.y43{bottom:668.145000px;}
.yad{bottom:668.269500px;}
.y79{bottom:673.953000px;}
.y13f{bottom:675.370500px;}
.y107{bottom:680.164500px;}
.y42{bottom:685.360500px;}
.ydc{bottom:685.891500px;}
.y13e{bottom:692.586000px;}
.y15{bottom:694.036500px;}
.y106{bottom:697.380000px;}
.y78{bottom:702.217500px;}
.y41{bottom:702.576000px;}
.ydb{bottom:703.107000px;}
.y14{bottom:708.384000px;}
.y13d{bottom:709.801500px;}
.yac{bottom:712.419000px;}
.y105{bottom:714.595500px;}
.y77{bottom:719.433000px;}
.y40{bottom:719.791500px;}
.yda{bottom:720.322500px;}
.y13{bottom:723.043500px;}
.y13c{bottom:727.017000px;}
.yab{bottom:729.634500px;}
.y104{bottom:731.811000px;}
.y76{bottom:736.648500px;}
.y3f{bottom:737.007000px;}
.y12{bottom:737.391000px;}
.y13b{bottom:744.232500px;}
.yaa{bottom:746.850000px;}
.yd9{bottom:749.011500px;}
.y103{bottom:749.026500px;}
.y11{bottom:751.737000px;}
.y75{bottom:753.703500px;}
.y3e{bottom:754.222500px;}
.y13a{bottom:761.448000px;}
.ya9{bottom:764.065500px;}
.y10{bottom:766.083000px;}
.y102{bottom:766.140000px;}
.y3d{bottom:771.438000px;}
.y74{bottom:778.573500px;}
.y139{bottom:778.663500px;}
.yf{bottom:780.429000px;}
.y101{bottom:783.355500px;}
.yd8{bottom:784.242000px;}
.y3c{bottom:788.653500px;}
.y73{bottom:788.824500px;}
.ya8{bottom:792.007500px;}
.ye{bottom:794.775000px;}
.y138{bottom:795.879000px;}
.ya7{bottom:795.951000px;}
.y100{bottom:800.571000px;}
.yd7{bottom:801.457500px;}
.y3b{bottom:805.869000px;}
.yd{bottom:809.122500px;}
.y137{bottom:813.094500px;}
.yff{bottom:817.786500px;}
.yd6{bottom:818.673000px;}
.ya6{bottom:819.948000px;}
.y3a{bottom:823.084500px;}
.yc{bottom:823.468500px;}
.y72{bottom:826.201500px;}
.y136{bottom:830.310000px;}
.yfe{bottom:835.002000px;}
.yd5{bottom:836.089500px;}
.ya5{bottom:837.163500px;}
.yb{bottom:837.814500px;}
.y39{bottom:840.684000px;}
.y71{bottom:843.417000px;}
.y135{bottom:847.525500px;}
.ya{bottom:852.160500px;}
.yfd{bottom:852.217500px;}
.yd4{bottom:853.305000px;}
.ya4{bottom:854.379000px;}
.y38{bottom:857.899500px;}
.y70{bottom:860.473500px;}
.y134{bottom:864.741000px;}
.y9{bottom:866.506500px;}
.yfc{bottom:869.433000px;}
.yd3{bottom:870.520500px;}
.y37{bottom:875.115000px;}
.y6f{bottom:877.689000px;}
.y8{bottom:880.854000px;}
.y133{bottom:881.956500px;}
.ya3{bottom:883.800000px;}
.yfb{bottom:886.648500px;}
.ya2{bottom:888.954000px;}
.y36{bottom:892.330500px;}
.y6e{bottom:894.904500px;}
.y7{bottom:895.200000px;}
.y132{bottom:899.172000px;}
.yd2{bottom:900.855000px;}
.yfa{bottom:903.864000px;}
.yd1{bottom:904.798500px;}
.ya1{bottom:904.857000px;}
.yd0{bottom:908.344500px;}
.y6{bottom:909.546000px;}
.ya0{bottom:910.011000px;}
.y131{bottom:916.387500px;}
.y6c{bottom:917.820000px;}
.yf9{bottom:921.079500px;}
.y9f{bottom:924.040500px;}
.y6d{bottom:927.627000px;}
.y6b{bottom:928.071000px;}
.y9e{bottom:929.194500px;}
.ycf{bottom:938.796000px;}
.yf8{bottom:942.901500px;}
.y9d{bottom:946.410000px;}
.yce{bottom:956.011500px;}
.y5{bottom:959.982000px;}
.y6a{bottom:965.448000px;}
.y130{bottom:966.588000px;}
.yf7{bottom:969.592500px;}
.y9c{bottom:975.831000px;}
.y4{bottom:977.736000px;}
.ycd{bottom:978.636000px;}
.y12f{bottom:979.500000px;}
.y9b{bottom:980.985000px;}
.y69{bottom:982.665000px;}
.yf6{bottom:986.808000px;}
.y12e{bottom:992.410500px;}
.y3{bottom:995.701500px;}
.y68{bottom:999.880500px;}
.ycc{bottom:1001.763000px;}
.y9a{bottom:1002.049500px;}
.yf5{bottom:1004.023500px;}
.y12d{bottom:1005.322500px;}
.y67{bottom:1017.096000px;}
.y12c{bottom:1018.234500px;}
.y99{bottom:1019.265000px;}
.yf4{bottom:1021.239000px;}
.ycb{bottom:1030.773000px;}
.y66{bottom:1034.311500px;}
.y12b{bottom:1034.733000px;}
.y12a{bottom:1035.691500px;}
.yf3{bottom:1038.454500px;}
.y2{bottom:1041.340500px;}
.y127{bottom:1041.667500px;}
.y125{bottom:1042.147500px;}
.y98{bottom:1047.207000px;}
.yca{bottom:1047.988500px;}
.y129{bottom:1048.603500px;}
.y97{bottom:1051.150500px;}
.y124{bottom:1055.059500px;}
.y126{bottom:1055.539500px;}
.yf2{bottom:1055.569500px;}
.y65{bottom:1056.073500px;}
.y128{bottom:1061.515500px;}
.yc9{bottom:1065.204000px;}
.yf1{bottom:1072.095000px;}
.y1{bottom:1081.510500px;}
.y64{bottom:1082.419500px;}
.y123{bottom:1086.723000px;}
.y63{bottom:1099.635000px;}
.h21{height:2.391024px;}
.h39{height:21.229975px;}
.h35{height:21.412473px;}
.h34{height:23.196861px;}
.h33{height:23.196862px;}
.h2f{height:25.594315px;}
.h30{height:25.594317px;}
.h37{height:26.765632px;}
.h36{height:29.753952px;}
.h2e{height:29.827211px;}
.h1b{height:31.382100px;}
.h31{height:31.500681px;}
.h38{height:31.829678px;}
.h1d{height:31.863275px;}
.h8{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h11{height:38.106945px;}
.h2c{height:40.728624px;}
.h9{height:41.006062px;}
.h3{height:41.125613px;}
.h10{height:41.723369px;}
.h7{height:44.831700px;}
.he{height:45.080125px;}
.h2{height:45.238339px;}
.h4{height:46.326090px;}
.hf{height:48.074125px;}
.h16{height:48.650100px;}
.h25{height:50.791613px;}
.h2a{height:53.072100px;}
.hb{height:53.078100px;}
.h28{height:54.914100px;}
.h1c{height:55.471827px;}
.h26{height:56.060100px;}
.h2b{height:56.066100px;}
.h27{height:56.165369px;}
.h22{height:56.171369px;}
.h24{height:56.669369px;}
.h23{height:60.605700px;}
.h29{height:61.741613px;}
.h18{height:68.739024px;}
.h14{height:72.960345px;}
.h19{height:76.087827px;}
.h1f{height:84.019613px;}
.ha{height:85.271700px;}
.h17{height:86.766090px;}
.h1a{height:89.355024px;}
.hd{height:97.070100px;}
.h20{height:97.970100px;}
.h1{height:98.701718px;}
.h1e{height:104.613024px;}
.h12{height:107.334345px;}
.h13{height:114.338685px;}
.hc{height:126.275700px;}
.h15{height:127.770090px;}
.h2d{height:188.224119px;}
.h32{height:306.749230px;}
.h0{height:1188.000000px;}
.w2{width:357.758854px;}
.w1{width:357.768595px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x70{left:1.630427px;}
.x58{left:7.678185px;}
.x66{left:13.176961px;}
.x59{left:14.737534px;}
.x5a{left:19.834417px;}
.x67{left:22.649319px;}
.x68{left:27.166120px;}
.x63{left:35.514492px;}
.x71{left:37.122328px;}
.x65{left:56.723412px;}
.x73{left:58.331247px;}
.x5c{left:61.300313px;}
.x7{left:73.446000px;}
.x64{left:78.189705px;}
.x60{left:79.423500px;}
.x15{left:83.739900px;}
.x1{left:85.624500px;}
.x6{left:88.390500px;}
.x5b{left:95.284539px;}
.x61{left:100.834500px;}
.x16{left:102.127950px;}
.x3{left:106.047000px;}
.x52{left:108.529500px;}
.x1b{left:116.620500px;}
.x4c{left:122.403000px;}
.x72{left:124.511636px;}
.x3e{left:127.245000px;}
.x45{left:128.929500px;}
.x1f{left:132.300000px;}
.x1c{left:133.804500px;}
.x4b{left:136.441500px;}
.x35{left:138.433500px;}
.x36{left:140.094000px;}
.x42{left:142.945500px;}
.x12{left:144.070500px;}
.x41{left:147.490500px;}
.x53{left:151.176646px;}
.xf{left:165.355500px;}
.x6a{left:167.271927px;}
.x17{left:168.310650px;}
.x57{left:170.870864px;}
.x4{left:175.710000px;}
.x6d{left:178.643880px;}
.x14{left:179.745000px;}
.x2{left:180.955500px;}
.x4e{left:183.513000px;}
.x37{left:188.076000px;}
.x4d{left:189.753000px;}
.x6f{left:192.884636px;}
.x78{left:194.492447px;}
.x1e{left:198.439500px;}
.x38{left:201.067500px;}
.x8{left:203.428500px;}
.x5f{left:208.122000px;}
.xc{left:211.600500px;}
.x3c{left:220.719000px;}
.x6c{left:222.190332px;}
.x75{left:223.798167px;}
.x54{left:226.078280px;}
.x20{left:229.192500px;}
.x4f{left:238.900500px;}
.x43{left:242.209500px;}
.x13{left:243.565500px;}
.x5d{left:245.450826px;}
.x18{left:251.171625px;}
.x39{left:255.381000px;}
.x5{left:263.967000px;}
.xd{left:266.250000px;}
.x77{left:267.496861px;}
.x5e{left:282.229610px;}
.x3f{left:286.312500px;}
.x51{left:289.017000px;}
.x1d{left:296.151000px;}
.x46{left:297.351000px;}
.x10{left:302.325000px;}
.x6e{left:310.406778px;}
.x76{left:312.014533px;}
.x50{left:317.254500px;}
.x19{left:324.542775px;}
.x55{left:326.386882px;}
.x56{left:327.877069px;}
.x44{left:330.816000px;}
.x6b{left:334.194109px;}
.x74{left:335.801863px;}
.x3d{left:342.087000px;}
.x3a{left:344.994000px;}
.x11{left:347.953500px;}
.x69{left:353.651953px;}
.x3b{left:355.329000px;}
.x21{left:382.864500px;}
.x1a{left:397.735425px;}
.xe{left:432.609000px;}
.x4a{left:436.213500px;}
.x40{left:438.343500px;}
.x9{left:467.967000px;}
.x79{left:473.944500px;}
.x62{left:477.381000px;}
.xa{left:482.910000px;}
.x7a{left:495.355500px;}
.xb{left:537.151500px;}
.x49{left:561.568500px;}
.x31{left:565.545000px;}
.x2e{left:567.891000px;}
.x2d{left:572.650500px;}
.x2a{left:575.778000px;}
.x29{left:582.663000px;}
.x2b{left:588.714000px;}
.x48{left:597.169500px;}
.x23{left:604.860000px;}
.x22{left:611.745000px;}
.x24{left:616.785000px;}
.x33{left:644.944500px;}
.x34{left:646.057500px;}
.x2c{left:647.244000px;}
.x32{left:650.443500px;}
.x2f{left:655.594500px;}
.x25{left:661.062000px;}
.x30{left:669.987000px;}
.x28{left:703.329000px;}
.x26{left:705.000000px;}
.x27{left:757.564500px;}
.x47{left:819.657000px;}
@media print{
.v18{vertical-align:-58.976000pt;}
.v1d{vertical-align:-22.954667pt;}
.v11{vertical-align:-9.594667pt;}
.v1{vertical-align:-7.968000pt;}
.v4{vertical-align:-1.578667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.389333pt;}
.v1c{vertical-align:8.592000pt;}
.v14{vertical-align:10.629333pt;}
.ve{vertical-align:13.046933pt;}
.v1b{vertical-align:14.021333pt;}
.v10{vertical-align:15.349333pt;}
.v15{vertical-align:18.325333pt;}
.v5{vertical-align:19.285333pt;}
.v12{vertical-align:20.917333pt;}
.v9{vertical-align:21.941333pt;}
.v3{vertical-align:27.978667pt;}
.va{vertical-align:30.980800pt;}
.v2{vertical-align:35.946667pt;}
.v13{vertical-align:36.954667pt;}
.v1a{vertical-align:38.128000pt;}
.v16{vertical-align:39.242667pt;}
.vc{vertical-align:49.630933pt;}
.v17{vertical-align:55.280000pt;}
.v7{vertical-align:58.389333pt;}
.vb{vertical-align:61.535467pt;}
.vf{vertical-align:64.421333pt;}
.v6{vertical-align:72.394667pt;}
.vd{vertical-align:77.923467pt;}
.v19{vertical-align:90.864000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls81{letter-spacing:0.000055pt;}
.lscc{letter-spacing:0.000125pt;}
.ls6b{letter-spacing:0.000267pt;}
.ls8b{letter-spacing:0.000468pt;}
.ls52{letter-spacing:0.000473pt;}
.ls4e{letter-spacing:0.000479pt;}
.ls9{letter-spacing:0.000501pt;}
.ls9e{letter-spacing:0.000546pt;}
.ls69{letter-spacing:0.000681pt;}
.ls85{letter-spacing:0.000689pt;}
.ls1d{letter-spacing:0.000882pt;}
.ls5d{letter-spacing:0.001014pt;}
.ls8{letter-spacing:0.001069pt;}
.ls1{letter-spacing:0.001386pt;}
.ls6e{letter-spacing:0.001653pt;}
.ls67{letter-spacing:0.001654pt;}
.lsbb{letter-spacing:0.001975pt;}
.ls53{letter-spacing:0.001986pt;}
.ls2d{letter-spacing:0.001995pt;}
.lsc7{letter-spacing:0.002079pt;}
.ls89{letter-spacing:0.002387pt;}
.lsa0{letter-spacing:0.002422pt;}
.ls3f{letter-spacing:0.002470pt;}
.lscb{letter-spacing:0.002591pt;}
.ls49{letter-spacing:0.002694pt;}
.ls4a{letter-spacing:0.002750pt;}
.ls1f{letter-spacing:0.002906pt;}
.ls33{letter-spacing:0.003231pt;}
.ls7{letter-spacing:0.003246pt;}
.ls0{letter-spacing:0.003733pt;}
.ls18{letter-spacing:0.003801pt;}
.ls4c{letter-spacing:0.004777pt;}
.ls25{letter-spacing:0.005138pt;}
.ls7c{letter-spacing:0.005388pt;}
.ls46{letter-spacing:0.006216pt;}
.lsc1{letter-spacing:0.597031pt;}
.lsa4{letter-spacing:0.850750pt;}
.ls51{letter-spacing:1.140125pt;}
.ls7d{letter-spacing:1.141848pt;}
.ls56{letter-spacing:1.145458pt;}
.ls82{letter-spacing:1.147181pt;}
.ls37{letter-spacing:1.255568pt;}
.lsb3{letter-spacing:1.330764pt;}
.ls57{letter-spacing:1.335361pt;}
.ls98{letter-spacing:1.476666pt;}
.ls1b{letter-spacing:1.477138pt;}
.ls59{letter-spacing:1.523733pt;}
.ls62{letter-spacing:1.529066pt;}
.ls8f{letter-spacing:1.533416pt;}
.lsa3{letter-spacing:1.671842pt;}
.ls32{letter-spacing:1.725071pt;}
.ls2f{letter-spacing:1.905799pt;}
.ls17{letter-spacing:2.029495pt;}
.lsc2{letter-spacing:2.108364pt;}
.lsc3{letter-spacing:2.122436pt;}
.ls3e{letter-spacing:2.254975pt;}
.ls38{letter-spacing:2.258665pt;}
.ls3b{letter-spacing:2.259508pt;}
.ls30{letter-spacing:2.332772pt;}
.ls3a{letter-spacing:2.506279pt;}
.ls31{letter-spacing:2.510812pt;}
.ls2{letter-spacing:2.635446pt;}
.ls72{letter-spacing:2.651680pt;}
.ls1e{letter-spacing:2.652911pt;}
.ls83{letter-spacing:2.654181pt;}
.lsb8{letter-spacing:2.654251pt;}
.ls70{letter-spacing:2.655095pt;}
.lsbc{letter-spacing:2.655711pt;}
.lsc4{letter-spacing:2.656473pt;}
.ls24{letter-spacing:2.656546pt;}
.ls26{letter-spacing:2.656689pt;}
.ls75{letter-spacing:2.656693pt;}
.ls97{letter-spacing:2.657014pt;}
.ls1c{letter-spacing:2.657253pt;}
.lsbf{letter-spacing:2.657986pt;}
.lsd{letter-spacing:2.658245pt;}
.ls16{letter-spacing:2.953897pt;}
.lsa8{letter-spacing:3.550993pt;}
.ls7e{letter-spacing:3.797848pt;}
.ls15{letter-spacing:3.801225pt;}
.lsb0{letter-spacing:3.803181pt;}
.ls68{letter-spacing:4.692690pt;}
.ls39{letter-spacing:5.419803pt;}
.ls44{letter-spacing:6.373812pt;}
.ls42{letter-spacing:6.376239pt;}
.ls45{letter-spacing:6.379145pt;}
.ls9b{letter-spacing:6.379356pt;}
.ls10{letter-spacing:8.286375pt;}
.lsaa{letter-spacing:8.373759pt;}
.lsb4{letter-spacing:8.850079pt;}
.ls4f{letter-spacing:8.851733pt;}
.lsa6{letter-spacing:8.855412pt;}
.lsa7{letter-spacing:8.873356pt;}
.ls5a{letter-spacing:9.033212pt;}
.ls14{letter-spacing:11.803145pt;}
.ls5b{letter-spacing:11.804455pt;}
.ls73{letter-spacing:11.804745pt;}
.ls94{letter-spacing:11.805510pt;}
.ls43{letter-spacing:11.808479pt;}
.ls8d{letter-spacing:11.809654pt;}
.ls48{letter-spacing:11.810906pt;}
.ls13{letter-spacing:11.811733pt;}
.ls36{letter-spacing:12.544140pt;}
.ls96{letter-spacing:13.063200pt;}
.ls95{letter-spacing:13.068533pt;}
.ls93{letter-spacing:14.460911pt;}
.ls27{letter-spacing:14.464546pt;}
.lse{letter-spacing:14.754424pt;}
.lsac{letter-spacing:14.755184pt;}
.lsae{letter-spacing:14.756638pt;}
.lsaf{letter-spacing:14.756984pt;}
.lsf{letter-spacing:14.757812pt;}
.lsa5{letter-spacing:14.759756pt;}
.lsa9{letter-spacing:14.760083pt;}
.lsb2{letter-spacing:14.762318pt;}
.lsc{letter-spacing:14.763145pt;}
.ls8c{letter-spacing:14.771215pt;}
.ls34{letter-spacing:15.454540pt;}
.ls92{letter-spacing:15.836321pt;}
.lsc8{letter-spacing:15.933361pt;}
.lsc6{letter-spacing:15.938694pt;}
.lsb7{letter-spacing:15.943412pt;}
.ls99{letter-spacing:16.434509pt;}
.ls78{letter-spacing:16.580638pt;}
.lsca{letter-spacing:16.704942pt;}
.lsbe{letter-spacing:17.141812pt;}
.ls50{letter-spacing:17.201788pt;}
.ls5e{letter-spacing:17.412777pt;}
.ls5{letter-spacing:17.415578pt;}
.ls4d{letter-spacing:17.418110pt;}
.ls23{letter-spacing:17.419919pt;}
.ls2e{letter-spacing:17.601867pt;}
.lsb6{letter-spacing:17.636984pt;}
.ls2a{letter-spacing:17.904689pt;}
.ls29{letter-spacing:17.909880pt;}
.ls19{letter-spacing:18.181812pt;}
.lsb5{letter-spacing:18.488083pt;}
.lsc9{letter-spacing:18.592479pt;}
.lsb{letter-spacing:18.594424pt;}
.ls41{letter-spacing:18.594906pt;}
.ls65{letter-spacing:18.749573pt;}
.ls2c{letter-spacing:18.931801pt;}
.ls5c{letter-spacing:19.541812pt;}
.lsa{letter-spacing:19.962254pt;}
.lsa2{letter-spacing:19.991467pt;}
.ls9d{letter-spacing:19.994318pt;}
.ls12{letter-spacing:20.505042pt;}
.ls76{letter-spacing:20.546750pt;}
.lsb1{letter-spacing:20.791200pt;}
.ls6d{letter-spacing:20.792239pt;}
.ls54{letter-spacing:20.835879pt;}
.ls9c{letter-spacing:20.840083pt;}
.ls2b{letter-spacing:20.989361pt;}
.ls6{letter-spacing:21.131145pt;}
.lsbd{letter-spacing:21.377253pt;}
.lsa1{letter-spacing:21.465999pt;}
.ls9a{letter-spacing:21.648479pt;}
.lsc0{letter-spacing:22.601067pt;}
.ls6f{letter-spacing:23.609490pt;}
.ls4{letter-spacing:24.476911pt;}
.ls8a{letter-spacing:25.087304pt;}
.ls9f{letter-spacing:25.221848pt;}
.ls6c{letter-spacing:25.716690pt;}
.ls91{letter-spacing:26.264239pt;}
.ls88{letter-spacing:26.786133pt;}
.ls64{letter-spacing:27.763184pt;}
.ls58{letter-spacing:27.872479pt;}
.ls87{letter-spacing:28.260666pt;}
.lsba{letter-spacing:28.275585pt;}
.ls55{letter-spacing:28.395145pt;}
.ls22{letter-spacing:28.662586pt;}
.ls61{letter-spacing:30.821812pt;}
.ls60{letter-spacing:31.349812pt;}
.ls5f{letter-spacing:31.952479pt;}
.ls21{letter-spacing:32.017873pt;}
.ls86{letter-spacing:33.461848pt;}
.ls84{letter-spacing:35.241971pt;}
.ls7b{letter-spacing:35.242318pt;}
.ls80{letter-spacing:35.245850pt;}
.ls7a{letter-spacing:35.250750pt;}
.ls7f{letter-spacing:36.119200pt;}
.ls8e{letter-spacing:61.986079pt;}
.ls77{letter-spacing:63.266079pt;}
.lsad{letter-spacing:65.090079pt;}
.lsab{letter-spacing:68.444745pt;}
.ls40{letter-spacing:69.710975pt;}
.lsc5{letter-spacing:71.576050pt;}
.ls3c{letter-spacing:78.342441pt;}
.ls3d{letter-spacing:79.362441pt;}
.ls35{letter-spacing:84.181059pt;}
.ls1a{letter-spacing:99.031207pt;}
.ls90{letter-spacing:123.288239pt;}
.ls79{letter-spacing:123.970906pt;}
.ls20{letter-spacing:182.776239pt;}
.ls74{letter-spacing:261.078347pt;}
.ls11{letter-spacing:264.834424pt;}
.ls71{letter-spacing:269.423095pt;}
.ls6a{letter-spacing:283.693573pt;}
.ls47{letter-spacing:305.831578pt;}
.ls28{letter-spacing:316.002906pt;}
.ls63{letter-spacing:321.373573pt;}
.lsb9{letter-spacing:370.866906pt;}
.ls66{letter-spacing:373.747733pt;}
.ls4b{letter-spacing:424.776239pt;}
.ws3{word-spacing:-53.133867pt;}
.wsc0{word-spacing:-43.484756pt;}
.ws65{word-spacing:-42.359791pt;}
.ws94{word-spacing:-42.066082pt;}
.ws8d{word-spacing:-40.291411pt;}
.wsd7{word-spacing:-38.362652pt;}
.ws21{word-spacing:-34.611401pt;}
.wsb5{word-spacing:-29.531803pt;}
.wsf7{word-spacing:-29.521250pt;}
.ws80{word-spacing:-29.419691pt;}
.ws22{word-spacing:-28.118362pt;}
.wsba{word-spacing:-25.791179pt;}
.ws73{word-spacing:-25.738045pt;}
.ws6a{word-spacing:-22.802180pt;}
.ws7e{word-spacing:-21.877338pt;}
.ws96{word-spacing:-19.857581pt;}
.ws95{word-spacing:-19.852495pt;}
.ws72{word-spacing:-16.970957pt;}
.ws6f{word-spacing:-14.760588pt;}
.ws110{word-spacing:-14.640119pt;}
.ws7c{word-spacing:-14.425313pt;}
.ws56{word-spacing:-13.283467pt;}
.ws16{word-spacing:-13.262246pt;}
.ws87{word-spacing:-12.755157pt;}
.ws85{word-spacing:-12.748919pt;}
.ws86{word-spacing:-12.747905pt;}
.ws7d{word-spacing:-12.546500pt;}
.ws70{word-spacing:-12.028410pt;}
.ws67{word-spacing:-11.871584pt;}
.wsac{word-spacing:-10.626800pt;}
.ws6d{word-spacing:-10.494936pt;}
.ws98{word-spacing:-9.298400pt;}
.wsf6{word-spacing:-8.501467pt;}
.ws6c{word-spacing:-8.366936pt;}
.ws10b{word-spacing:-7.424155pt;}
.ws10c{word-spacing:-6.281986pt;}
.ws8e{word-spacing:-2.964870pt;}
.ws8c{word-spacing:-0.797008pt;}
.ws109{word-spacing:-0.519402pt;}
.ws23{word-spacing:-0.425071pt;}
.wsbb{word-spacing:-0.220170pt;}
.wsbc{word-spacing:-0.212535pt;}
.ws9{word-spacing:-0.191283pt;}
.ws4d{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws108{word-spacing:-0.042507pt;}
.wsb9{word-spacing:-0.019085pt;}
.wsf4{word-spacing:-0.014223pt;}
.ws8a{word-spacing:-0.013752pt;}
.ws38{word-spacing:0.000000pt;}
.ws77{word-spacing:0.010627pt;}
.ws25{word-spacing:0.053134pt;}
.wsd9{word-spacing:0.159402pt;}
.wscd{word-spacing:0.212535pt;}
.ws66{word-spacing:0.318497pt;}
.ws68{word-spacing:0.318803pt;}
.wsf2{word-spacing:0.425071pt;}
.ws81{word-spacing:0.637606pt;}
.ws9e{word-spacing:0.690740pt;}
.wsec{word-spacing:0.877279pt;}
.ws61{word-spacing:0.903276pt;}
.wsa9{word-spacing:0.956410pt;}
.ws12c{word-spacing:0.977666pt;}
.wsc4{word-spacing:1.009543pt;}
.wsc3{word-spacing:1.062677pt;}
.ws117{word-spacing:1.105187pt;}
.ws31{word-spacing:1.168945pt;}
.ws100{word-spacing:1.179572pt;}
.ws8{word-spacing:1.243341pt;}
.wsa4{word-spacing:1.328347pt;}
.wsca{word-spacing:1.381481pt;}
.ws60{word-spacing:1.434614pt;}
.wsbe{word-spacing:1.859685pt;}
.ws83{word-spacing:1.912819pt;}
.ws78{word-spacing:1.961164pt;}
.ws79{word-spacing:1.965953pt;}
.ws76{word-spacing:2.072221pt;}
.wsda{word-spacing:2.125355pt;}
.wsf5{word-spacing:2.125375pt;}
.wsa6{word-spacing:2.231622pt;}
.ws8b{word-spacing:2.337890pt;}
.wseb{word-spacing:2.349052pt;}
.wse5{word-spacing:2.382879pt;}
.wse8{word-spacing:2.391024pt;}
.ws88{word-spacing:2.432381pt;}
.ws5a{word-spacing:2.444158pt;}
.ws126{word-spacing:2.507925pt;}
.ws7{word-spacing:2.534502pt;}
.ws113{word-spacing:2.635446pt;}
.ws48{word-spacing:2.656693pt;}
.ws47{word-spacing:2.709827pt;}
.wsf0{word-spacing:2.816095pt;}
.wse3{word-spacing:2.850787pt;}
.wsde{word-spacing:2.869229pt;}
.wsb8{word-spacing:3.294300pt;}
.wse1{word-spacing:3.506835pt;}
.ws6b{word-spacing:3.613103pt;}
.ws24{word-spacing:3.666237pt;}
.ws1c{word-spacing:3.719371pt;}
.ws59{word-spacing:3.772505pt;}
.ws20{word-spacing:3.878772pt;}
.wse0{word-spacing:3.942533pt;}
.ws69{word-spacing:4.006544pt;}
.ws35{word-spacing:4.038174pt;}
.wsce{word-spacing:4.091308pt;}
.ws42{word-spacing:4.197575pt;}
.ws43{word-spacing:4.250709pt;}
.wsf3{word-spacing:4.250720pt;}
.ws7b{word-spacing:4.303843pt;}
.ws34{word-spacing:4.463245pt;}
.ws14{word-spacing:4.495155pt;}
.wsa8{word-spacing:4.516379pt;}
.wsa2{word-spacing:4.569513pt;}
.ws64{word-spacing:4.622646pt;}
.ws103{word-spacing:4.728914pt;}
.ws114{word-spacing:4.873265pt;}
.ws10f{word-spacing:4.888328pt;}
.ws123{word-spacing:4.910480pt;}
.wsa1{word-spacing:4.941450pt;}
.wsfd{word-spacing:4.994583pt;}
.wsd4{word-spacing:5.047717pt;}
.wsdb{word-spacing:5.253957pt;}
.wsab{word-spacing:5.260749pt;}
.ws57{word-spacing:5.269735pt;}
.wsb4{word-spacing:5.313134pt;}
.wsbf{word-spacing:5.313310pt;}
.ws2{word-spacing:5.313387pt;}
.ws6e{word-spacing:5.315830pt;}
.wsc5{word-spacing:5.366521pt;}
.wse{word-spacing:5.403750pt;}
.ws10d{word-spacing:5.440922pt;}
.ws91{word-spacing:5.461141pt;}
.ws92{word-spacing:5.472788pt;}
.ws12b{word-spacing:5.525936pt;}
.ws4e{word-spacing:5.632190pt;}
.ws11b{word-spacing:5.653458pt;}
.ws1b{word-spacing:5.685324pt;}
.ws1d{word-spacing:5.738458pt;}
.wsa{word-spacing:5.738496pt;}
.wsfc{word-spacing:5.791591pt;}
.wsc7{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws119{word-spacing:5.865994pt;}
.wsff{word-spacing:5.939373pt;}
.ws101{word-spacing:5.947429pt;}
.ws102{word-spacing:5.950993pt;}
.ws12{word-spacing:5.977600pt;}
.wsad{word-spacing:6.057261pt;}
.ws106{word-spacing:6.078530pt;}
.ws3b{word-spacing:6.110395pt;}
.wsa3{word-spacing:6.269796pt;}
.ws63{word-spacing:6.322930pt;}
.wsf1{word-spacing:6.588599pt;}
.ws104{word-spacing:6.641733pt;}
.wsc9{word-spacing:6.694867pt;}
.ws5{word-spacing:6.694912pt;}
.ws12a{word-spacing:6.843659pt;}
.ws40{word-spacing:6.854269pt;}
.wscb{word-spacing:6.907403pt;}
.wsa5{word-spacing:7.066804pt;}
.ws111{word-spacing:7.098702pt;}
.ws2c{word-spacing:7.173072pt;}
.ws4b{word-spacing:7.385607pt;}
.ws46{word-spacing:7.438741pt;}
.ws9d{word-spacing:7.491875pt;}
.ws107{word-spacing:7.545009pt;}
.ws19{word-spacing:7.598143pt;}
.ws33{word-spacing:7.651296pt;}
.ws18{word-spacing:7.704411pt;}
.ws99{word-spacing:7.726931pt;}
.ws9a{word-spacing:7.757545pt;}
.ws11f{word-spacing:7.778818pt;}
.ws71{word-spacing:7.863812pt;}
.ws89{word-spacing:7.970080pt;}
.wsd1{word-spacing:8.023214pt;}
.wsd6{word-spacing:8.119375pt;}
.ws2d{word-spacing:8.129482pt;}
.ws9f{word-spacing:8.235749pt;}
.wsa0{word-spacing:8.288883pt;}
.wsed{word-spacing:8.501419pt;}
.ws62{word-spacing:8.554553pt;}
.ws11a{word-spacing:8.586454pt;}
.ws125{word-spacing:8.713976pt;}
.wsc2{word-spacing:8.867830pt;}
.wsdf{word-spacing:8.979623pt;}
.ws3e{word-spacing:9.085891pt;}
.ws17{word-spacing:9.139025pt;}
.ws39{word-spacing:9.192159pt;}
.wsea{word-spacing:9.298427pt;}
.wsbd{word-spacing:9.351561pt;}
.wsd2{word-spacing:9.404694pt;}
.wsc{word-spacing:9.468518pt;}
.ws122{word-spacing:9.479106pt;}
.ws7a{word-spacing:9.510962pt;}
.wsd5{word-spacing:9.564096pt;}
.wsb3{word-spacing:9.574723pt;}
.ws44{word-spacing:9.670364pt;}
.ws5f{word-spacing:9.882899pt;}
.wsb7{word-spacing:10.052928pt;}
.ws10a{word-spacing:10.074206pt;}
.ws5c{word-spacing:10.095435pt;}
.ws51{word-spacing:10.148569pt;}
.ws5e{word-spacing:10.414238pt;}
.wsb2{word-spacing:10.467372pt;}
.ws55{word-spacing:10.520506pt;}
.wsf{word-spacing:10.520576pt;}
.wsd0{word-spacing:10.573639pt;}
.wsaa{word-spacing:10.626773pt;}
.ws121{word-spacing:10.626800pt;}
.ws9c{word-spacing:10.733041pt;}
.ws128{word-spacing:10.839336pt;}
.wsa7{word-spacing:11.104978pt;}
.ws53{word-spacing:11.211246pt;}
.ws3d{word-spacing:11.370647pt;}
.ws29{word-spacing:11.476915pt;}
.ws4c{word-spacing:11.530049pt;}
.ws36{word-spacing:11.636317pt;}
.ws2e{word-spacing:11.689451pt;}
.wsb{word-spacing:11.716096pt;}
.wsb0{word-spacing:11.795718pt;}
.wscc{word-spacing:11.848852pt;}
.ws3c{word-spacing:11.955120pt;}
.wse9{word-spacing:12.008254pt;}
.wsdc{word-spacing:12.061388pt;}
.ws28{word-spacing:12.327057pt;}
.wsd8{word-spacing:12.339830pt;}
.ws49{word-spacing:12.380191pt;}
.ws11d{word-spacing:12.412102pt;}
.wse6{word-spacing:12.486459pt;}
.wse2{word-spacing:12.539593pt;}
.ws30{word-spacing:12.592726pt;}
.ws1f{word-spacing:12.698994pt;}
.ws75{word-spacing:12.718497pt;}
.ws0{word-spacing:12.752160pt;}
.ws12e{word-spacing:12.837174pt;}
.ws54{word-spacing:12.858396pt;}
.wsb6{word-spacing:12.964663pt;}
.ws4f{word-spacing:13.017797pt;}
.ws127{word-spacing:13.092218pt;}
.ws11e{word-spacing:13.304754pt;}
.wse4{word-spacing:13.347227pt;}
.wsfa{word-spacing:13.496002pt;}
.ws3a{word-spacing:13.549136pt;}
.ws5d{word-spacing:13.708538pt;}
.ws41{word-spacing:13.761671pt;}
.ws10{word-spacing:13.963674pt;}
.ws3f{word-spacing:14.080475pt;}
.ws1e{word-spacing:14.239876pt;}
.wsee{word-spacing:14.293010pt;}
.ws93{word-spacing:14.346144pt;}
.ws9b{word-spacing:14.387021pt;}
.wsd3{word-spacing:14.399278pt;}
.ws12d{word-spacing:14.409941pt;}
.ws90{word-spacing:14.452412pt;}
.ws8f{word-spacing:14.478497pt;}
.ws5b{word-spacing:14.505546pt;}
.ws37{word-spacing:14.664947pt;}
.wsf9{word-spacing:14.771215pt;}
.ws116{word-spacing:14.835013pt;}
.ws10e{word-spacing:14.877520pt;}
.wsc8{word-spacing:14.983750pt;}
.ws32{word-spacing:15.047549pt;}
.wsef{word-spacing:15.196286pt;}
.ws2b{word-spacing:15.355687pt;}
.wsdd{word-spacing:15.461955pt;}
.ws115{word-spacing:15.472621pt;}
.ws124{word-spacing:15.515128pt;}
.wse7{word-spacing:15.621357pt;}
.ws112{word-spacing:15.685157pt;}
.wsd{word-spacing:15.733043pt;}
.ws15{word-spacing:15.940160pt;}
.ws2a{word-spacing:16.046428pt;}
.ws11c{word-spacing:16.237750pt;}
.ws6{word-spacing:16.306893pt;}
.wsaf{word-spacing:16.365231pt;}
.ws13{word-spacing:16.402534pt;}
.ws118{word-spacing:16.450286pt;}
.wscf{word-spacing:16.524633pt;}
.ws50{word-spacing:16.577766pt;}
.ws97{word-spacing:16.737168pt;}
.wsfe{word-spacing:16.843436pt;}
.wsfb{word-spacing:17.215373pt;}
.ws2f{word-spacing:17.587310pt;}
.ws26{word-spacing:18.065515pt;}
.ws120{word-spacing:18.363110pt;}
.ws58{word-spacing:18.543719pt;}
.ws27{word-spacing:19.393861pt;}
.ws52{word-spacing:19.446995pt;}
.ws82{word-spacing:19.659531pt;}
.wsb1{word-spacing:20.137735pt;}
.ws1a{word-spacing:20.244003pt;}
.ws45{word-spacing:20.656102pt;}
.wsc6{word-spacing:21.359814pt;}
.ws129{word-spacing:21.423629pt;}
.ws11{word-spacing:21.471539pt;}
.ws12f{word-spacing:23.421467pt;}
.wsae{word-spacing:24.195830pt;}
.ws4a{word-spacing:25.612503pt;}
.ws84{word-spacing:47.617782pt;}
.ws7f{word-spacing:51.393573pt;}
.ws74{word-spacing:60.468360pt;}
.wsf8{word-spacing:68.224056pt;}
.wsc1{word-spacing:134.653565pt;}
.ws105{word-spacing:179.745729pt;}
._11{margin-left:-31.829897pt;}
._13{margin-left:-14.802111pt;}
._3{margin-left:-6.822366pt;}
._5{margin-left:-4.861782pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-2.295389pt;}
._2{margin-left:-1.211459pt;}
._7{width:1.473078pt;}
._6{width:2.656693pt;}
._c{width:3.956967pt;}
._16{width:7.811958pt;}
._4{width:12.289946pt;}
._33{width:14.835004pt;}
._9{width:16.630900pt;}
._a{width:18.011314pt;}
._8{width:19.234460pt;}
._15{width:21.532131pt;}
._10{width:22.562515pt;}
._f{width:24.919796pt;}
._b{width:26.566933pt;}
._17{width:27.576477pt;}
._34{width:29.117359pt;}
._12{width:32.774532pt;}
._35{width:42.653537pt;}
._d{width:53.693900pt;}
._1f{width:63.760800pt;}
._1b{width:67.205065pt;}
._1e{width:74.384285pt;}
._31{width:76.768969pt;}
._22{width:87.354797pt;}
._1d{width:88.585005pt;}
._20{width:95.638584pt;}
._21{width:98.021603pt;}
._1c{width:99.216733pt;}
._14{width:102.835918pt;}
._e{width:107.913283pt;}
._30{width:119.020160pt;}
._2e{width:119.970050pt;}
._23{width:122.463243pt;}
._1a{width:123.972454pt;}
._28{width:126.833511pt;}
._2d{width:128.953227pt;}
._32{width:133.088357pt;}
._27{width:136.703155pt;}
._2b{width:140.273760pt;}
._2f{width:143.023110pt;}
._29{width:144.411690pt;}
._2c{width:147.332489pt;}
._25{width:150.900560pt;}
._2a{width:154.341957pt;}
._26{width:157.953173pt;}
._24{width:164.971023pt;}
._19{width:201.908649pt;}
._18{width:256.166759pt;}
.fs12{font-size:25.127945pt;}
.fs8{font-size:26.566933pt;}
.fs11{font-size:27.412249pt;}
.fs14{font-size:27.412250pt;}
.fs10{font-size:29.696622pt;}
.fsf{font-size:29.696623pt;}
.fs7{font-size:31.614560pt;}
.fsa{font-size:31.880533pt;}
.fsc{font-size:32.765843pt;}
.fsd{font-size:32.765845pt;}
.fs9{font-size:34.005867pt;}
.fs13{font-size:34.265363pt;}
.fs5{font-size:37.193600pt;}
.fsb{font-size:38.184797pt;}
.fse{font-size:40.327172pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:45.163787pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:0.059056pt;}
.y19d{bottom:0.205406pt;}
.y19b{bottom:0.207485pt;}
.y1a0{bottom:0.294500pt;}
.y19a{bottom:0.453562pt;}
.y19f{bottom:0.520480pt;}
.y19e{bottom:0.746715pt;}
.y1ab{bottom:0.960914pt;}
.y1ae{bottom:1.107124pt;}
.y1a8{bottom:1.109336pt;}
.y1b1{bottom:1.196292pt;}
.y1a5{bottom:1.355379pt;}
.y1b0{bottom:1.422221pt;}
.y1af{bottom:1.648433pt;}
.y142{bottom:2.087731pt;}
.y195{bottom:7.025970pt;}
.y1a6{bottom:7.704292pt;}
.y15d{bottom:12.728285pt;}
.y159{bottom:12.737884pt;}
.y15c{bottom:12.851287pt;}
.y14f{bottom:12.857344pt;}
.y15a{bottom:12.874230pt;}
.y15b{bottom:12.960429pt;}
.y158{bottom:17.791605pt;}
.y14e{bottom:18.783832pt;}
.y1b2{bottom:22.628805pt;}
.y194{bottom:27.199173pt;}
.y1a4{bottom:27.877488pt;}
.y149{bottom:37.394961pt;}
.y153{bottom:37.635328pt;}
.y1a2{bottom:37.998151pt;}
.y15e{bottom:47.105598pt;}
.y193{bottom:47.283363pt;}
.y1a3{bottom:47.961581pt;}
.y1b3{bottom:51.207762pt;}
.y148{bottom:57.082725pt;}
.y152{bottom:57.323093pt;}
.y150{bottom:61.776102pt;}
.y196{bottom:67.537447pt;}
.y1a7{bottom:68.215794pt;}
.y147{bottom:76.680979pt;}
.y151{bottom:76.921346pt;}
.y1b4{bottom:79.884106pt;}
.y197{bottom:87.563853pt;}
.y1a9{bottom:88.242172pt;}
.y95{bottom:92.770667pt;}
.y14a{bottom:96.240254pt;}
.y154{bottom:96.480628pt;}
.y35{bottom:100.740000pt;}
.y62{bottom:100.741333pt;}
.y94{bottom:101.882667pt;}
.y198{bottom:107.906056pt;}
.y1aa{bottom:108.584355pt;}
.y1b5{bottom:108.607712pt;}
.y145{bottom:110.145001pt;}
.y34{bottom:112.217333pt;}
.y14b{bottom:115.828792pt;}
.y61{bottom:116.044000pt;}
.y155{bottom:116.069146pt;}
.y1b6{bottom:116.082107pt;}
.y1a1{bottom:116.103004pt;}
.y144{bottom:120.552481pt;}
.y1ad{bottom:121.953748pt;}
.y1d7{bottom:123.081333pt;}
.y33{bottom:123.694667pt;}
.y93{bottom:126.661333pt;}
.y199{bottom:127.845422pt;}
.y1ac{bottom:128.523750pt;}
.y146{bottom:131.105392pt;}
.y60{bottom:131.346667pt;}
.yc8{bottom:131.473333pt;}
.y1d6{bottom:134.558667pt;}
.y14c{bottom:135.346850pt;}
.y156{bottom:135.587239pt;}
.y96{bottom:135.710667pt;}
.y92{bottom:135.773333pt;}
.y176{bottom:138.992080pt;}
.y177{bottom:139.138377pt;}
.y175{bottom:139.140454pt;}
.y17a{bottom:139.227433pt;}
.y174{bottom:139.386584pt;}
.y179{bottom:139.453515pt;}
.y178{bottom:139.679687pt;}
.y187{bottom:139.893893pt;}
.y18a{bottom:140.040145pt;}
.y184{bottom:140.042308pt;}
.y18d{bottom:140.129275pt;}
.y181{bottom:140.288351pt;}
.y18c{bottom:140.355205pt;}
.y18b{bottom:140.581454pt;}
.y143{bottom:141.771248pt;}
.y16e{bottom:145.958994pt;}
.y1d5{bottom:146.036000pt;}
.y182{bottom:146.637264pt;}
.y5f{bottom:146.649333pt;}
.yc7{bottom:146.776000pt;}
.y16a{bottom:147.284000pt;}
.y32{bottom:151.970667pt;}
.y14d{bottom:154.963156pt;}
.y157{bottom:155.203521pt;}
.y1d4{bottom:157.513333pt;}
.y91{bottom:157.969333pt;}
.y18e{bottom:161.561777pt;}
.y122{bottom:161.861333pt;}
.y5e{bottom:161.952000pt;}
.yc6{bottom:162.078667pt;}
.y16d{bottom:166.132197pt;}
.y180{bottom:166.810460pt;}
.y31{bottom:167.273333pt;}
.y1d3{bottom:168.989333pt;}
.y90{bottom:176.068000pt;}
.y17e{bottom:176.931178pt;}
.y121{bottom:177.164000pt;}
.y5d{bottom:177.254667pt;}
.yc5{bottom:177.381333pt;}
.y169{bottom:177.949333pt;}
.y1d2{bottom:180.466667pt;}
.y30{bottom:182.576000pt;}
.y16c{bottom:186.216335pt;}
.y17f{bottom:186.894553pt;}
.y18f{bottom:190.140734pt;}
.y1d1{bottom:191.944000pt;}
.y120{bottom:192.466667pt;}
.y5c{bottom:192.557333pt;}
.yc4{bottom:192.684000pt;}
.y168{bottom:193.252000pt;}
.y2f{bottom:197.878667pt;}
.y1d0{bottom:203.421333pt;}
.y16f{bottom:206.470416pt;}
.y183{bottom:207.148714pt;}
.y11f{bottom:207.769333pt;}
.y5b{bottom:207.860000pt;}
.y173{bottom:207.922635pt;}
.yc3{bottom:207.988000pt;}
.y167{bottom:208.554667pt;}
.y8f{bottom:208.789333pt;}
.y2e{bottom:213.181333pt;}
.y1cf{bottom:214.898667pt;}
.y190{bottom:218.817078pt;}
.y11e{bottom:223.072000pt;}
.y5a{bottom:223.162667pt;}
.yc2{bottom:223.290667pt;}
.y166{bottom:223.857333pt;}
.y8e{bottom:224.092000pt;}
.y1ce{bottom:226.374667pt;}
.y170{bottom:226.496836pt;}
.y185{bottom:227.175105pt;}
.y2d{bottom:228.484000pt;}
.y17c{bottom:230.678115pt;}
.y1cd{bottom:237.852000pt;}
.y11d{bottom:238.374667pt;}
.yf0{bottom:238.465333pt;}
.yc1{bottom:238.593333pt;}
.y165{bottom:239.160000pt;}
.y17d{bottom:239.168798pt;}
.y8d{bottom:239.394667pt;}
.y2c{bottom:243.786667pt;}
.y59{bottom:244.697333pt;}
.y171{bottom:246.839079pt;}
.y186{bottom:247.517378pt;}
.y191{bottom:247.540684pt;}
.y1cc{bottom:249.329333pt;}
.y11c{bottom:253.677333pt;}
.yc0{bottom:253.896000pt;}
.y164{bottom:254.462667pt;}
.y8c{bottom:254.697333pt;}
.y192{bottom:255.015082pt;}
.y17b{bottom:255.035979pt;}
.y2b{bottom:259.089333pt;}
.y1cb{bottom:260.806667pt;}
.y189{bottom:260.886732pt;}
.yef{bottom:263.705333pt;}
.y172{bottom:266.778406pt;}
.yee{bottom:266.916000pt;}
.y188{bottom:267.456735pt;}
.y11b{bottom:268.980000pt;}
.y163{bottom:269.765333pt;}
.y8b{bottom:269.857333pt;}
.y58{bottom:271.866667pt;}
.y1ca{bottom:272.282667pt;}
.ybf{bottom:273.944000pt;}
.y2a{bottom:274.392000pt;}
.y8a{bottom:281.112133pt;}
.y1c9{bottom:283.760000pt;}
.y11a{bottom:284.282667pt;}
.y162{bottom:285.068000pt;}
.y57{bottom:287.169333pt;}
.ybc{bottom:289.617333pt;}
.y29{bottom:289.694667pt;}
.y1c8{bottom:295.237333pt;}
.yed{bottom:295.282667pt;}
.y89{bottom:296.496000pt;}
.y119{bottom:299.586667pt;}
.ybe{bottom:302.236000pt;}
.y56{bottom:302.472000pt;}
.y28{bottom:304.997333pt;}
.ybd{bottom:306.221333pt;}
.y1c7{bottom:306.714667pt;}
.y161{bottom:309.069333pt;}
.y118{bottom:314.889333pt;}
.y55{bottom:317.774667pt;}
.y1c6{bottom:318.192000pt;}
.yec{bottom:320.168000pt;}
.y27{bottom:320.300000pt;}
.y88{bottom:329.184000pt;}
.y1c5{bottom:329.668000pt;}
.ybb{bottom:329.901333pt;}
.y117{bottom:330.192000pt;}
.y54{bottom:333.077333pt;}
.y26{bottom:335.602667pt;}
.y1c4{bottom:341.145333pt;}
.y87{bottom:344.486667pt;}
.yba{bottom:345.204000pt;}
.y116{bottom:345.494667pt;}
.y53{bottom:348.380000pt;}
.y25{bottom:351.185333pt;}
.y160{bottom:351.784000pt;}
.yeb{bottom:352.100000pt;}
.y1c3{bottom:352.622667pt;}
.y86{bottom:359.789333pt;}
.yb9{bottom:360.506667pt;}
.y115{bottom:360.797333pt;}
.y15f{bottom:363.261333pt;}
.y52{bottom:363.682667pt;}
.y1c2{bottom:364.100000pt;}
.y24{bottom:366.488000pt;}
.yea{bottom:367.402667pt;}
.y85{bottom:375.092000pt;}
.y1c1{bottom:375.576000pt;}
.y114{bottom:376.100000pt;}
.yb8{bottom:379.226667pt;}
.y51{bottom:379.326667pt;}
.ye9{bottom:379.786667pt;}
.y23{bottom:381.790667pt;}
.ye8{bottom:384.368000pt;}
.y1c0{bottom:387.053333pt;}
.yb7{bottom:391.329333pt;}
.y113{bottom:391.402667pt;}
.y84{bottom:394.436000pt;}
.y141{bottom:394.504000pt;}
.y50{bottom:394.629333pt;}
.y22{bottom:397.093333pt;}
.y1bf{bottom:398.530667pt;}
.ye7{bottom:399.670667pt;}
.y112{bottom:406.705333pt;}
.y4f{bottom:409.932000pt;}
.y1be{bottom:410.008000pt;}
.y21{bottom:412.396000pt;}
.ye6{bottom:414.973333pt;}
.y83{bottom:417.854667pt;}
.y1bd{bottom:421.485333pt;}
.y111{bottom:422.008000pt;}
.y4e{bottom:425.234667pt;}
.y20{bottom:427.698667pt;}
.yb6{bottom:427.842667pt;}
.ye5{bottom:430.276000pt;}
.y1bc{bottom:432.961333pt;}
.y82{bottom:433.157333pt;}
.y110{bottom:437.310667pt;}
.y4d{bottom:440.537333pt;}
.y1f{bottom:443.001333pt;}
.yb5{bottom:443.145333pt;}
.y1bb{bottom:444.438667pt;}
.y81{bottom:448.460000pt;}
.ye4{bottom:450.386667pt;}
.y10f{bottom:452.613333pt;}
.y4c{bottom:455.840000pt;}
.y1ba{bottom:455.916000pt;}
.y1e{bottom:458.304000pt;}
.yb4{bottom:458.448000pt;}
.y80{bottom:463.762667pt;}
.y4b{bottom:471.144000pt;}
.y10e{bottom:472.009333pt;}
.y1d{bottom:473.606667pt;}
.yb3{bottom:473.750667pt;}
.ye3{bottom:476.173333pt;}
.y7f{bottom:479.065333pt;}
.y4a{bottom:486.446667pt;}
.y1c{bottom:488.909333pt;}
.ye2{bottom:491.476000pt;}
.y10d{bottom:495.736000pt;}
.yb2{bottom:498.588000pt;}
.y1b9{bottom:498.864000pt;}
.y49{bottom:501.749333pt;}
.y7e{bottom:502.821333pt;}
.y1b{bottom:504.212000pt;}
.ye1{bottom:506.778667pt;}
.y1b8{bottom:510.341333pt;}
.y10c{bottom:511.038667pt;}
.y48{bottom:517.052000pt;}
.y1a{bottom:519.514667pt;}
.y1b7{bottom:521.818667pt;}
.ye0{bottom:522.081333pt;}
.yb1{bottom:523.424000pt;}
.y10b{bottom:526.341333pt;}
.y47{bottom:532.354667pt;}
.y7d{bottom:533.025333pt;}
.y19{bottom:534.817333pt;}
.ydf{bottom:537.561333pt;}
.yb0{bottom:538.726667pt;}
.y46{bottom:547.657333pt;}
.y7c{bottom:548.328000pt;}
.y18{bottom:550.120000pt;}
.y10a{bottom:550.378667pt;}
.yde{bottom:552.865333pt;}
.y16b{bottom:553.061333pt;}
.yaf{bottom:558.660000pt;}
.y45{bottom:563.301333pt;}
.y7b{bottom:563.630667pt;}
.y17{bottom:565.422667pt;}
.y109{bottom:573.984000pt;}
.ydd{bottom:578.105333pt;}
.y44{bottom:578.604000pt;}
.y7a{bottom:580.970667pt;}
.yae{bottom:584.485333pt;}
.y140{bottom:585.026667pt;}
.y16{bottom:586.586667pt;}
.y108{bottom:589.288000pt;}
.y43{bottom:593.906667pt;}
.yad{bottom:594.017333pt;}
.y79{bottom:599.069333pt;}
.y13f{bottom:600.329333pt;}
.y107{bottom:604.590667pt;}
.y42{bottom:609.209333pt;}
.ydc{bottom:609.681333pt;}
.y13e{bottom:615.632000pt;}
.y15{bottom:616.921333pt;}
.y106{bottom:619.893333pt;}
.y78{bottom:624.193333pt;}
.y41{bottom:624.512000pt;}
.ydb{bottom:624.984000pt;}
.y14{bottom:629.674667pt;}
.y13d{bottom:630.934667pt;}
.yac{bottom:633.261333pt;}
.y105{bottom:635.196000pt;}
.y77{bottom:639.496000pt;}
.y40{bottom:639.814667pt;}
.yda{bottom:640.286667pt;}
.y13{bottom:642.705333pt;}
.y13c{bottom:646.237333pt;}
.yab{bottom:648.564000pt;}
.y104{bottom:650.498667pt;}
.y76{bottom:654.798667pt;}
.y3f{bottom:655.117333pt;}
.y12{bottom:655.458667pt;}
.y13b{bottom:661.540000pt;}
.yaa{bottom:663.866667pt;}
.yd9{bottom:665.788000pt;}
.y103{bottom:665.801333pt;}
.y11{bottom:668.210667pt;}
.y75{bottom:669.958667pt;}
.y3e{bottom:670.420000pt;}
.y13a{bottom:676.842667pt;}
.ya9{bottom:679.169333pt;}
.y10{bottom:680.962667pt;}
.y102{bottom:681.013333pt;}
.y3d{bottom:685.722667pt;}
.y74{bottom:692.065333pt;}
.y139{bottom:692.145333pt;}
.yf{bottom:693.714667pt;}
.y101{bottom:696.316000pt;}
.yd8{bottom:697.104000pt;}
.y3c{bottom:701.025333pt;}
.y73{bottom:701.177333pt;}
.ya8{bottom:704.006667pt;}
.ye{bottom:706.466667pt;}
.y138{bottom:707.448000pt;}
.ya7{bottom:707.512000pt;}
.y100{bottom:711.618667pt;}
.yd7{bottom:712.406667pt;}
.y3b{bottom:716.328000pt;}
.yd{bottom:719.220000pt;}
.y137{bottom:722.750667pt;}
.yff{bottom:726.921333pt;}
.yd6{bottom:727.709333pt;}
.ya6{bottom:728.842667pt;}
.y3a{bottom:731.630667pt;}
.yc{bottom:731.972000pt;}
.y72{bottom:734.401333pt;}
.y136{bottom:738.053333pt;}
.yfe{bottom:742.224000pt;}
.yd5{bottom:743.190667pt;}
.ya5{bottom:744.145333pt;}
.yb{bottom:744.724000pt;}
.y39{bottom:747.274667pt;}
.y71{bottom:749.704000pt;}
.y135{bottom:753.356000pt;}
.ya{bottom:757.476000pt;}
.yfd{bottom:757.526667pt;}
.yd4{bottom:758.493333pt;}
.ya4{bottom:759.448000pt;}
.y38{bottom:762.577333pt;}
.y70{bottom:764.865333pt;}
.y134{bottom:768.658667pt;}
.y9{bottom:770.228000pt;}
.yfc{bottom:772.829333pt;}
.yd3{bottom:773.796000pt;}
.y37{bottom:777.880000pt;}
.y6f{bottom:780.168000pt;}
.y8{bottom:782.981333pt;}
.y133{bottom:783.961333pt;}
.ya3{bottom:785.600000pt;}
.yfb{bottom:788.132000pt;}
.ya2{bottom:790.181333pt;}
.y36{bottom:793.182667pt;}
.y6e{bottom:795.470667pt;}
.y7{bottom:795.733333pt;}
.y132{bottom:799.264000pt;}
.yd2{bottom:800.760000pt;}
.yfa{bottom:803.434667pt;}
.yd1{bottom:804.265333pt;}
.ya1{bottom:804.317333pt;}
.yd0{bottom:807.417333pt;}
.y6{bottom:808.485333pt;}
.ya0{bottom:808.898667pt;}
.y131{bottom:814.566667pt;}
.y6c{bottom:815.840000pt;}
.yf9{bottom:818.737333pt;}
.y9f{bottom:821.369333pt;}
.y6d{bottom:824.557333pt;}
.y6b{bottom:824.952000pt;}
.y9e{bottom:825.950667pt;}
.ycf{bottom:834.485333pt;}
.yf8{bottom:838.134667pt;}
.y9d{bottom:841.253333pt;}
.yce{bottom:849.788000pt;}
.y5{bottom:853.317333pt;}
.y6a{bottom:858.176000pt;}
.y130{bottom:859.189333pt;}
.yf7{bottom:861.860000pt;}
.y9c{bottom:867.405333pt;}
.y4{bottom:869.098667pt;}
.ycd{bottom:869.898667pt;}
.y12f{bottom:870.666667pt;}
.y9b{bottom:871.986667pt;}
.y69{bottom:873.480000pt;}
.yf6{bottom:877.162667pt;}
.y12e{bottom:882.142667pt;}
.y3{bottom:885.068000pt;}
.y68{bottom:888.782667pt;}
.ycc{bottom:890.456000pt;}
.y9a{bottom:890.710667pt;}
.yf5{bottom:892.465333pt;}
.y12d{bottom:893.620000pt;}
.y67{bottom:904.085333pt;}
.y12c{bottom:905.097333pt;}
.y99{bottom:906.013333pt;}
.yf4{bottom:907.768000pt;}
.ycb{bottom:916.242667pt;}
.y66{bottom:919.388000pt;}
.y12b{bottom:919.762667pt;}
.y12a{bottom:920.614667pt;}
.yf3{bottom:923.070667pt;}
.y2{bottom:925.636000pt;}
.y127{bottom:925.926667pt;}
.y125{bottom:926.353333pt;}
.y98{bottom:930.850667pt;}
.yca{bottom:931.545333pt;}
.y129{bottom:932.092000pt;}
.y97{bottom:934.356000pt;}
.y124{bottom:937.830667pt;}
.y126{bottom:938.257333pt;}
.yf2{bottom:938.284000pt;}
.y65{bottom:938.732000pt;}
.y128{bottom:943.569333pt;}
.yc9{bottom:946.848000pt;}
.yf1{bottom:952.973333pt;}
.y1{bottom:961.342667pt;}
.y64{bottom:962.150667pt;}
.y123{bottom:965.976000pt;}
.y63{bottom:977.453333pt;}
.h21{height:2.125355pt;}
.h39{height:18.871089pt;}
.h35{height:19.033310pt;}
.h34{height:20.619432pt;}
.h33{height:20.619433pt;}
.h2f{height:22.750502pt;}
.h30{height:22.750504pt;}
.h37{height:23.791673pt;}
.h36{height:26.447957pt;}
.h2e{height:26.513077pt;}
.h1b{height:27.895200pt;}
.h31{height:28.000605pt;}
.h38{height:28.293047pt;}
.h1d{height:28.322911pt;}
.h8{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h11{height:33.872840pt;}
.h2c{height:36.203221pt;}
.h9{height:36.449833pt;}
.h3{height:36.556100pt;}
.h10{height:37.087439pt;}
.h7{height:39.850400pt;}
.he{height:40.071222pt;}
.h2{height:40.211857pt;}
.h4{height:41.178747pt;}
.hf{height:42.732556pt;}
.h16{height:43.244533pt;}
.h25{height:45.148100pt;}
.h2a{height:47.175200pt;}
.hb{height:47.180533pt;}
.h28{height:48.812533pt;}
.h1c{height:49.308291pt;}
.h26{height:49.831200pt;}
.h2b{height:49.836533pt;}
.h27{height:49.924772pt;}
.h22{height:49.930106pt;}
.h24{height:50.372772pt;}
.h23{height:53.871733pt;}
.h29{height:54.881434pt;}
.h18{height:61.101355pt;}
.h14{height:64.853640pt;}
.h19{height:67.633624pt;}
.h1f{height:74.684100pt;}
.ha{height:75.797067pt;}
.h17{height:77.125413pt;}
.h1a{height:79.426688pt;}
.hd{height:86.284533pt;}
.h20{height:87.084533pt;}
.h1{height:87.734861pt;}
.h1e{height:92.989355pt;}
.h12{height:95.408307pt;}
.h13{height:101.634387pt;}
.hc{height:112.245067pt;}
.h15{height:113.573413pt;}
.h2d{height:167.310328pt;}
.h32{height:272.665982pt;}
.h0{height:1056.000000pt;}
.w2{width:318.007870pt;}
.w1{width:318.016529pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x70{left:1.449268pt;}
.x58{left:6.825053pt;}
.x66{left:11.712854pt;}
.x59{left:13.100030pt;}
.x5a{left:17.630593pt;}
.x67{left:20.132728pt;}
.x68{left:24.147662pt;}
.x63{left:31.568437pt;}
.x71{left:32.997625pt;}
.x65{left:50.420811pt;}
.x73{left:51.849998pt;}
.x5c{left:54.489167pt;}
.x7{left:65.285333pt;}
.x64{left:69.501960pt;}
.x60{left:70.598667pt;}
.x15{left:74.435467pt;}
.x1{left:76.110667pt;}
.x6{left:78.569333pt;}
.x5b{left:84.697368pt;}
.x61{left:89.630667pt;}
.x16{left:90.780400pt;}
.x3{left:94.264000pt;}
.x52{left:96.470667pt;}
.x1b{left:103.662667pt;}
.x4c{left:108.802667pt;}
.x72{left:110.677010pt;}
.x3e{left:113.106667pt;}
.x45{left:114.604000pt;}
.x1f{left:117.600000pt;}
.x1c{left:118.937333pt;}
.x4b{left:121.281333pt;}
.x35{left:123.052000pt;}
.x36{left:124.528000pt;}
.x42{left:127.062667pt;}
.x12{left:128.062667pt;}
.x41{left:131.102667pt;}
.x53{left:134.379241pt;}
.xf{left:146.982667pt;}
.x6a{left:148.686157pt;}
.x17{left:149.609467pt;}
.x57{left:151.885212pt;}
.x4{left:156.186667pt;}
.x6d{left:158.794560pt;}
.x14{left:159.773333pt;}
.x2{left:160.849333pt;}
.x4e{left:163.122667pt;}
.x37{left:167.178667pt;}
.x4d{left:168.669333pt;}
.x6f{left:171.453009pt;}
.x78{left:172.882175pt;}
.x1e{left:176.390667pt;}
.x38{left:178.726667pt;}
.x8{left:180.825333pt;}
.x5f{left:184.997333pt;}
.xc{left:188.089333pt;}
.x3c{left:196.194667pt;}
.x6c{left:197.502517pt;}
.x75{left:198.931704pt;}
.x54{left:200.958471pt;}
.x20{left:203.726667pt;}
.x4f{left:212.356000pt;}
.x43{left:215.297333pt;}
.x13{left:216.502667pt;}
.x5d{left:218.178512pt;}
.x18{left:223.263667pt;}
.x39{left:227.005333pt;}
.x5{left:234.637333pt;}
.xd{left:236.666667pt;}
.x77{left:237.774987pt;}
.x5e{left:250.870764pt;}
.x3f{left:254.500000pt;}
.x51{left:256.904000pt;}
.x1d{left:263.245333pt;}
.x46{left:264.312000pt;}
.x10{left:268.733333pt;}
.x6e{left:275.917136pt;}
.x76{left:277.346252pt;}
.x50{left:282.004000pt;}
.x19{left:288.482467pt;}
.x55{left:290.121673pt;}
.x56{left:291.446284pt;}
.x44{left:294.058667pt;}
.x6b{left:297.061430pt;}
.x74{left:298.490545pt;}
.x3d{left:304.077333pt;}
.x3a{left:306.661333pt;}
.x11{left:309.292000pt;}
.x69{left:314.357291pt;}
.x3b{left:315.848000pt;}
.x21{left:340.324000pt;}
.x1a{left:353.542600pt;}
.xe{left:384.541333pt;}
.x4a{left:387.745333pt;}
.x40{left:389.638667pt;}
.x9{left:415.970667pt;}
.x79{left:421.284000pt;}
.x62{left:424.338667pt;}
.xa{left:429.253333pt;}
.x7a{left:440.316000pt;}
.xb{left:477.468000pt;}
.x49{left:499.172000pt;}
.x31{left:502.706667pt;}
.x2e{left:504.792000pt;}
.x2d{left:509.022667pt;}
.x2a{left:511.802667pt;}
.x29{left:517.922667pt;}
.x2b{left:523.301333pt;}
.x48{left:530.817333pt;}
.x23{left:537.653333pt;}
.x22{left:543.773333pt;}
.x24{left:548.253333pt;}
.x33{left:573.284000pt;}
.x34{left:574.273333pt;}
.x2c{left:575.328000pt;}
.x32{left:578.172000pt;}
.x2f{left:582.750667pt;}
.x25{left:587.610667pt;}
.x30{left:595.544000pt;}
.x28{left:625.181333pt;}
.x26{left:626.666667pt;}
.x27{left:673.390667pt;}
.x47{left:728.584000pt;}
}




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