
    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_d96b0d0239e796bf937a7143.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d6a1453f159c9eec183741d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_55e48db630df86149479e130.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5f72a6762709a1ea9d952ca7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_8ede1f24c4836addfaa1b302.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_f8050bfaed95240458ee3f19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911621;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_5143df55761aed554d4a34b5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca645e207cb0a79159efcc93.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_7c1d619f652078dcbe4072f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_e661b6dd7b98bfa7ad5d8765.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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_c210170036b9b991d71462ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.575000;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;}
.m3{transform:matrix(0.000000,0.249432,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249432,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249432,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250564,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250569,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.086000px;}
.v6{vertical-align:2.664000px;}
.v5{vertical-align:32.094000px;}
.v2{vertical-align:35.106934px;}
.v4{vertical-align:36.690934px;}
.v3{vertical-align:38.046934px;}
.v1{vertical-align:42.566248px;}
.ls37{letter-spacing:-6.450000px;}
.ls9e{letter-spacing:-2.902176px;}
.ls84{letter-spacing:-2.572647px;}
.ls83{letter-spacing:-2.372161px;}
.ls7b{letter-spacing:-2.292944px;}
.ls81{letter-spacing:-2.289197px;}
.ls87{letter-spacing:-2.277957px;}
.ls90{letter-spacing:-1.567094px;}
.ls2b{letter-spacing:-1.451088px;}
.ls30{letter-spacing:-1.445042px;}
.ls1c{letter-spacing:-1.444180px;}
.ls2a{letter-spacing:-1.438996px;}
.lsf{letter-spacing:-1.433240px;}
.ls13{letter-spacing:-1.427769px;}
.lsa1{letter-spacing:-1.426903px;}
.ls1b{letter-spacing:-1.422299px;}
.ls17{letter-spacing:-1.405888px;}
.ls12{letter-spacing:-1.400417px;}
.ls16{letter-spacing:-1.389477px;}
.ls11{letter-spacing:-1.362125px;}
.ls10{letter-spacing:-1.334773px;}
.ls52{letter-spacing:-1.197141px;}
.ls97{letter-spacing:-1.058464px;}
.ls96{letter-spacing:-0.983396px;}
.ls3e{letter-spacing:-0.955300px;}
.ls85{letter-spacing:-0.940257px;}
.ls6b{letter-spacing:-0.939291px;}
.lsb6{letter-spacing:-0.931115px;}
.ls2d{letter-spacing:-0.919022px;}
.ls1f{letter-spacing:-0.912976px;}
.ls31{letter-spacing:-0.906930px;}
.ls29{letter-spacing:-0.900884px;}
.ls2f{letter-spacing:-0.894838px;}
.lsb5{letter-spacing:-0.888791px;}
.ls3b{letter-spacing:-0.882745px;}
.lsab{letter-spacing:-0.876699px;}
.lsa0{letter-spacing:-0.864607px;}
.lsc3{letter-spacing:-0.852514px;}
.lsa8{letter-spacing:-0.802845px;}
.lsd7{letter-spacing:-0.779092px;}
.ls56{letter-spacing:-0.717501px;}
.lscb{letter-spacing:-0.712584px;}
.ls88{letter-spacing:-0.692133px;}
.ls7c{letter-spacing:-0.668109px;}
.lsb2{letter-spacing:-0.646076px;}
.ls7e{letter-spacing:-0.629436px;}
.lsca{letter-spacing:-0.627074px;}
.ls92{letter-spacing:-0.593040px;}
.lsaf{letter-spacing:-0.562297px;}
.ls8f{letter-spacing:-0.532986px;}
.ls9a{letter-spacing:-0.532066px;}
.lsd9{letter-spacing:-0.532063px;}
.ls76{letter-spacing:-0.519566px;}
.ls5a{letter-spacing:-0.504654px;}
.ls3c{letter-spacing:-0.495788px;}
.ls5e{letter-spacing:-0.494355px;}
.lsc{letter-spacing:-0.492334px;}
.lsa{letter-spacing:-0.483696px;}
.lsad{letter-spacing:-0.477650px;}
.ls6f{letter-spacing:-0.472527px;}
.ls68{letter-spacing:-0.469645px;}
.ls71{letter-spacing:-0.426426px;}
.ls70{letter-spacing:-0.420664px;}
.ls64{letter-spacing:-0.417783px;}
.ls72{letter-spacing:-0.414901px;}
.ls8b{letter-spacing:-0.388509px;}
.lsd2{letter-spacing:-0.370544px;}
.ls99{letter-spacing:-0.367835px;}
.ls94{letter-spacing:-0.329704px;}
.ls41{letter-spacing:-0.303670px;}
.ls35{letter-spacing:-0.260289px;}
.lsa3{letter-spacing:-0.256530px;}
.ls8c{letter-spacing:-0.235064px;}
.lsdd{letter-spacing:-0.228027px;}
.lsce{letter-spacing:-0.209025px;}
.lsdf{letter-spacing:-0.194773px;}
.lsc5{letter-spacing:-0.152018px;}
.lsd{letter-spacing:-0.114878px;}
.lsc6{letter-spacing:-0.099762px;}
.ls73{letter-spacing:-0.077794px;}
.ls67{letter-spacing:-0.074913px;}
.lsa9{letter-spacing:-0.060462px;}
.lsa4{letter-spacing:-0.057007px;}
.ls5c{letter-spacing:-0.054928px;}
.ls75{letter-spacing:-0.043219px;}
.lsb{letter-spacing:-0.036277px;}
.ls6a{letter-spacing:-0.034575px;}
.lsae{letter-spacing:-0.030231px;}
.ls9f{letter-spacing:-0.024185px;}
.lsc0{letter-spacing:-0.018139px;}
.ls8a{letter-spacing:-0.016324px;}
.ls53{letter-spacing:-0.012092px;}
.ls9b{letter-spacing:-0.006046px;}
.ls1e{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.002881px;}
.ls5{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.003924px;}
.ls9{letter-spacing:0.006046px;}
.ls65{letter-spacing:0.008644px;}
.ls54{letter-spacing:0.012092px;}
.lsd3{letter-spacing:0.014252px;}
.ls1{letter-spacing:0.016411px;}
.ls1d{letter-spacing:0.018139px;}
.ls8{letter-spacing:0.019866px;}
.ls5d{letter-spacing:0.024031px;}
.ls7{letter-spacing:0.025152px;}
.ls62{letter-spacing:0.034346px;}
.ls6e{letter-spacing:0.040338px;}
.lsaa{letter-spacing:0.042323px;}
.ls0{letter-spacing:0.043187px;}
.ls6c{letter-spacing:0.057625px;}
.ls4c{letter-spacing:0.069150px;}
.lsc8{letter-spacing:0.076009px;}
.ls36{letter-spacing:0.086763px;}
.ls14{letter-spacing:0.092996px;}
.lsc4{letter-spacing:0.104512px;}
.ls4d{letter-spacing:0.104906px;}
.ls2{letter-spacing:0.109263px;}
.lsa6{letter-spacing:0.118764px;}
.ls1a{letter-spacing:0.125819px;}
.lsd0{letter-spacing:0.128265px;}
.ls45{letter-spacing:0.130218px;}
.ls4a{letter-spacing:0.135665px;}
.ls91{letter-spacing:0.157644px;}
.lsc1{letter-spacing:0.161519px;}
.ls55{letter-spacing:0.175084px;}
.ls48{letter-spacing:0.175757px;}
.ls3a{letter-spacing:0.180521px;}
.lsbf{letter-spacing:0.190022px;}
.ls49{letter-spacing:0.190163px;}
.ls20{letter-spacing:0.217663px;}
.lsb4{letter-spacing:0.235802px;}
.ls66{letter-spacing:0.244907px;}
.ls82{letter-spacing:0.255233px;}
.ls59{letter-spacing:0.257009px;}
.ls77{letter-spacing:0.282363px;}
.ls86{letter-spacing:0.290565px;}
.ls5b{letter-spacing:0.291807px;}
.ls63{letter-spacing:0.298808px;}
.ls57{letter-spacing:0.305539px;}
.ls78{letter-spacing:0.320399px;}
.ls8e{letter-spacing:0.330301px;}
.ls46{letter-spacing:0.336436px;}
.ls98{letter-spacing:0.337808px;}
.ls4b{letter-spacing:0.351514px;}
.ls74{letter-spacing:0.372356px;}
.ls9c{letter-spacing:0.399049px;}
.ls61{letter-spacing:0.408715px;}
.ls47{letter-spacing:0.409139px;}
.ls40{letter-spacing:0.417188px;}
.ls58{letter-spacing:0.421494px;}
.ls25{letter-spacing:0.423234px;}
.ls2c{letter-spacing:0.429280px;}
.ls4{letter-spacing:0.435326px;}
.ls34{letter-spacing:0.441373px;}
.ls32{letter-spacing:0.447419px;}
.ls28{letter-spacing:0.453465px;}
.ls24{letter-spacing:0.459511px;}
.ls3d{letter-spacing:0.465557px;}
.ls21{letter-spacing:0.471604px;}
.lsbe{letter-spacing:0.475056px;}
.ls33{letter-spacing:0.477650px;}
.lsda{letter-spacing:0.479807px;}
.ls2e{letter-spacing:0.483696px;}
.lscc{letter-spacing:0.484557px;}
.ls43{letter-spacing:0.485718px;}
.lsb7{letter-spacing:0.486318px;}
.ls7d{letter-spacing:0.487945px;}
.ls89{letter-spacing:0.489717px;}
.lsb0{letter-spacing:0.489742px;}
.ls6d{letter-spacing:0.495577px;}
.lsac{letter-spacing:0.495788px;}
.lse{letter-spacing:0.497805px;}
.ls3f{letter-spacing:0.501835px;}
.ls23{letter-spacing:0.507881px;}
.lscf{letter-spacing:0.513060px;}
.ls22{letter-spacing:0.513927px;}
.lsb1{letter-spacing:0.519973px;}
.ls8d{letter-spacing:0.521725px;}
.lsbb{letter-spacing:0.522562px;}
.ls26{letter-spacing:0.526019px;}
.ls18{letter-spacing:0.541568px;}
.lsd6{letter-spacing:0.551065px;}
.ls19{letter-spacing:0.552508px;}
.ls15{letter-spacing:0.557979px;}
.ls93{letter-spacing:0.563013px;}
.lsb3{letter-spacing:0.565317px;}
.ls42{letter-spacing:0.574818px;}
.ls50{letter-spacing:0.584319px;}
.lsd8{letter-spacing:0.593820px;}
.lsd4{letter-spacing:0.598571px;}
.ls60{letter-spacing:0.601052px;}
.ls9d{letter-spacing:0.603321px;}
.ls38{letter-spacing:0.608072px;}
.lsa5{letter-spacing:0.612822px;}
.lsdb{letter-spacing:0.622323px;}
.lsc7{letter-spacing:0.631824px;}
.lsc9{letter-spacing:0.636575px;}
.ls5f{letter-spacing:0.637381px;}
.lsde{letter-spacing:0.641326px;}
.lsa7{letter-spacing:0.646076px;}
.lsa2{letter-spacing:0.650827px;}
.lscd{letter-spacing:0.655577px;}
.lse0{letter-spacing:0.660328px;}
.ls4f{letter-spacing:0.665078px;}
.lse1{letter-spacing:0.669829px;}
.lsbc{letter-spacing:0.684081px;}
.lsd1{letter-spacing:0.693582px;}
.ls4e{letter-spacing:0.750684px;}
.ls7a{letter-spacing:0.786794px;}
.ls79{letter-spacing:0.825752px;}
.ls7f{letter-spacing:0.852026px;}
.ls80{letter-spacing:0.861727px;}
.lsb8{letter-spacing:0.931128px;}
.lsbd{letter-spacing:1.045123px;}
.lsdc{letter-spacing:1.097379px;}
.ls51{letter-spacing:1.149636px;}
.ls95{letter-spacing:1.208601px;}
.lsc2{letter-spacing:1.377662px;}
.ls27{letter-spacing:1.390626px;}
.lsd5{letter-spacing:1.425168px;}
.ls44{letter-spacing:1.460154px;}
.lsba{letter-spacing:11.669166px;}
.lsb9{letter-spacing:14.389956px;}
.ls39{letter-spacing:57.124498px;}
.ls3{letter-spacing:57.136590px;}
.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;}
}
.ws7{word-spacing:-48.288363px;}
.ws6{word-spacing:-47.941311px;}
.ws5f{word-spacing:-47.897930px;}
.ws5a{word-spacing:-16.506126px;}
.ws3{word-spacing:-15.629427px;}
.ws149{word-spacing:-15.593150px;}
.ws171{word-spacing:-15.581057px;}
.ws4{word-spacing:-15.550826px;}
.ws5b{word-spacing:-15.133639px;}
.ws58{word-spacing:-15.115500px;}
.ws123{word-spacing:-15.109454px;}
.ws148{word-spacing:-14.214616px;}
.ws16f{word-spacing:-14.184385px;}
.ws18f{word-spacing:-13.664412px;}
.ws8{word-spacing:-13.443000px;}
.ws197{word-spacing:-13.301568px;}
.ws0{word-spacing:-13.183616px;}
.ws195{word-spacing:-13.026036px;}
.wsbd{word-spacing:-12.699647px;}
.wsbe{word-spacing:-12.690773px;}
.wsbf{word-spacing:-12.498437px;}
.ws198{word-spacing:-12.479721px;}
.wsb9{word-spacing:-12.420666px;}
.wsb5{word-spacing:-12.389769px;}
.wsc1{word-spacing:-12.388530px;}
.ws194{word-spacing:-12.360957px;}
.wsb3{word-spacing:-12.259314px;}
.ws124{word-spacing:-12.213324px;}
.wsc0{word-spacing:-12.124067px;}
.wsbb{word-spacing:-12.108262px;}
.ws5c{word-spacing:-12.056921px;}
.wsba{word-spacing:-12.029302px;}
.ws14b{word-spacing:-11.995164px;}
.ws2{word-spacing:-11.985663px;}
.ws191{word-spacing:-11.980912px;}
.ws59{word-spacing:-11.876400px;}
.ws192{word-spacing:-11.724382px;}
.wsb7{word-spacing:-11.579576px;}
.wsb4{word-spacing:-11.366729px;}
.ws193{word-spacing:-11.163816px;}
.wsae{word-spacing:-10.679259px;}
.wsc9{word-spacing:-10.332198px;}
.wsc7{word-spacing:-10.317792px;}
.wscb{word-spacing:-10.296074px;}
.wsd4{word-spacing:-10.209302px;}
.wsd5{word-spacing:-10.153394px;}
.wsd6{word-spacing:-10.134234px;}
.wsc3{word-spacing:-10.107460px;}
.wsc2{word-spacing:-10.067122px;}
.wsef{word-spacing:-9.946563px;}
.wsc4{word-spacing:-9.911534px;}
.wsda{word-spacing:-9.871495px;}
.wscd{word-spacing:-9.776115px;}
.wscc{word-spacing:-9.727134px;}
.wscf{word-spacing:-9.724252px;}
.wsf2{word-spacing:-9.721358px;}
.wsea{word-spacing:-9.713851px;}
.wsd1{word-spacing:-9.640843px;}
.wsdf{word-spacing:-9.638783px;}
.wsed{word-spacing:-9.541194px;}
.wse6{word-spacing:-9.471506px;}
.wseb{word-spacing:-8.850564px;}
.wsee{word-spacing:-8.790510px;}
.wsdb{word-spacing:-8.737164px;}
.wsd8{word-spacing:-8.715441px;}
.wse7{word-spacing:-8.651667px;}
.wse4{word-spacing:-8.452515px;}
.wse5{word-spacing:-8.161950px;}
.wse0{word-spacing:-7.011389px;}
.wsec{word-spacing:-6.594856px;}
.wse1{word-spacing:-5.589303px;}
.ws183{word-spacing:-5.018346px;}
.ws1ca{word-spacing:-4.318259px;}
.ws1ab{word-spacing:-4.105370px;}
.ws13f{word-spacing:-4.063046px;}
.ws1c6{word-spacing:-3.824201px;}
.ws121{word-spacing:-3.644571px;}
.ws29{word-spacing:-3.627720px;}
.ws8a{word-spacing:-3.567258px;}
.ws1c7{word-spacing:-2.698318px;}
.ws19{word-spacing:-2.691427px;}
.ws13e{word-spacing:-2.636143px;}
.ws6c{word-spacing:-2.611958px;}
.ws16b{word-spacing:-2.599866px;}
.ws16d{word-spacing:-2.569635px;}
.ws35{word-spacing:-2.539404px;}
.ws1b4{word-spacing:-2.460790px;}
.ws1c5{word-spacing:-2.451289px;}
.ws186{word-spacing:-2.406388px;}
.wsad{word-spacing:-2.377929px;}
.ws1b3{word-spacing:-2.289770px;}
.ws10b{word-spacing:-2.188724px;}
.ws1ac{word-spacing:-2.182678px;}
.ws24{word-spacing:-2.176632px;}
.ws3d{word-spacing:-2.164540px;}
.ws1a2{word-spacing:-2.158493px;}
.ws176{word-spacing:-2.152447px;}
.ws4e{word-spacing:-2.116170px;}
.ws6f{word-spacing:-2.110124px;}
.ws180{word-spacing:-1.281794px;}
.ws1e{word-spacing:-1.263658px;}
.ws9f{word-spacing:-1.221332px;}
.ws106{word-spacing:-1.197148px;}
.ws10d{word-spacing:-1.191101px;}
.ws14e{word-spacing:-1.185055px;}
.ws152{word-spacing:-1.179009px;}
.ws66{word-spacing:-1.172963px;}
.ws96{word-spacing:-1.166917px;}
.ws62{word-spacing:-1.160870px;}
.ws154{word-spacing:-1.148778px;}
.wsfa{word-spacing:-1.130639px;}
.ws133{word-spacing:-1.124593px;}
.ws1bc{word-spacing:-1.073627px;}
.ws1b5{word-spacing:-1.064125px;}
.ws1d0{word-spacing:-1.049874px;}
.wsf6{word-spacing:-1.045123px;}
.ws143{word-spacing:-1.030872px;}
.ws14c{word-spacing:-1.026121px;}
.ws1b0{word-spacing:-1.016620px;}
.ws1b2{word-spacing:-1.011869px;}
.ws1c4{word-spacing:-1.002368px;}
.ws146{word-spacing:-0.992867px;}
.ws60{word-spacing:-0.988116px;}
.ws137{word-spacing:-0.983366px;}
.wsf7{word-spacing:-0.964364px;}
.wsf5{word-spacing:-0.935860px;}
.wsd3{word-spacing:-0.799555px;}
.ws187{word-spacing:-0.737636px;}
.ws2c{word-spacing:-0.725544px;}
.ws13c{word-spacing:-0.701359px;}
.ws16e{word-spacing:-0.671128px;}
.wsb{word-spacing:-0.655580px;}
.ws11e{word-spacing:-0.604301px;}
.ws11f{word-spacing:-0.569489px;}
.ws7e{word-spacing:-0.560566px;}
.ws1a3{word-spacing:-0.541564px;}
.ws112{word-spacing:-0.418067px;}
.ws119{word-spacing:-0.322701px;}
.wse{word-spacing:-0.223709px;}
.ws144{word-spacing:-0.123515px;}
.wsc6{word-spacing:-0.112369px;}
.wsa{word-spacing:-0.043187px;}
.wsf{word-spacing:-0.024185px;}
.wsd{word-spacing:0.000000px;}
.ws1a7{word-spacing:0.126970px;}
.ws36{word-spacing:0.139063px;}
.ws17e{word-spacing:0.151155px;}
.ws2f{word-spacing:0.157201px;}
.ws9{word-spacing:0.158352px;}
.ws162{word-spacing:0.169294px;}
.ws48{word-spacing:0.181386px;}
.ws15c{word-spacing:0.187432px;}
.ws136{word-spacing:0.193478px;}
.ws71{word-spacing:0.199525px;}
.ws43{word-spacing:0.205571px;}
.ws3b{word-spacing:0.211617px;}
.ws19f{word-spacing:0.217663px;}
.ws17b{word-spacing:0.223709px;}
.ws95{word-spacing:0.229756px;}
.ws120{word-spacing:0.235064px;}
.ws44{word-spacing:0.235802px;}
.ws184{word-spacing:0.266031px;}
.ws1ce{word-spacing:0.384795px;}
.ws1c9{word-spacing:0.422800px;}
.ws1b9{word-spacing:0.441802px;}
.ws185{word-spacing:0.479807px;}
.ws1f{word-spacing:0.530627px;}
.ws1b8{word-spacing:0.532063px;}
.ws15f{word-spacing:0.622759px;}
.ws25{word-spacing:0.665082px;}
.ws157{word-spacing:0.677174px;}
.ws178{word-spacing:0.695313px;}
.ws140{word-spacing:0.701359px;}
.ws18c{word-spacing:0.713452px;}
.ws67{word-spacing:0.725544px;}
.ws115{word-spacing:0.809634px;}
.wsd9{word-spacing:0.829506px;}
.wsb8{word-spacing:0.834224px;}
.wse8{word-spacing:0.917403px;}
.ws1af{word-spacing:0.969114px;}
.wsc{word-spacing:1.064131px;}
.ws145{word-spacing:1.102130px;}
.ws114{word-spacing:1.112166px;}
.ws113{word-spacing:1.117929px;}
.ws116{word-spacing:1.123691px;}
.ws69{word-spacing:1.160870px;}
.ws111{word-spacing:1.219934px;}
.ws11b{word-spacing:1.319617px;}
.wsdc{word-spacing:1.382510px;}
.ws49{word-spacing:1.559920px;}
.ws3e{word-spacing:1.565966px;}
.ws4d{word-spacing:1.572012px;}
.ws17f{word-spacing:1.626428px;}
.ws110{word-spacing:1.638520px;}
.ws126{word-spacing:1.650613px;}
.ws103{word-spacing:1.656659px;}
.ws38{word-spacing:1.662705px;}
.ws12f{word-spacing:1.668751px;}
.ws168{word-spacing:1.674797px;}
.ws32{word-spacing:1.680844px;}
.ws14d{word-spacing:1.847968px;}
.ws118{word-spacing:1.849769px;}
.ws1c3{word-spacing:1.919226px;}
.ws22{word-spacing:2.100626px;}
.ws41{word-spacing:2.116170px;}
.ws11c{word-spacing:2.123489px;}
.ws101{word-spacing:2.128262px;}
.ws47{word-spacing:2.140355px;}
.wsf4{word-spacing:2.218271px;}
.ws147{word-spacing:2.237094px;}
.ws1cf{word-spacing:2.242264px;}
.ws1bb{word-spacing:2.342026px;}
.ws5{word-spacing:2.587774px;}
.ws128{word-spacing:2.611958px;}
.wsdd{word-spacing:2.619887px;}
.ws55{word-spacing:2.742000px;}
.ws56{word-spacing:2.748000px;}
.ws11a{word-spacing:2.757366px;}
.ws117{word-spacing:2.910073px;}
.ws76{word-spacing:3.011008px;}
.ws153{word-spacing:3.023100px;}
.ws151{word-spacing:3.029146px;}
.ws6e{word-spacing:3.101701px;}
.ws9c{word-spacing:3.107747px;}
.ws1c0{word-spacing:3.116367px;}
.ws50{word-spacing:3.119839px;}
.ws65{word-spacing:3.131932px;}
.ws1c1{word-spacing:3.296889px;}
.ws15{word-spacing:3.479162px;}
.ws174{word-spacing:3.543073px;}
.ws4f{word-spacing:3.567258px;}
.ws5d{word-spacing:3.579350px;}
.ws1a0{word-spacing:3.585397px;}
.wsb0{word-spacing:3.766783px;}
.wsbc{word-spacing:3.872447px;}
.ws190{word-spacing:3.917938px;}
.ws7b{word-spacing:4.456049px;}
.ws75{word-spacing:4.462096px;}
.wsd7{word-spacing:4.462816px;}
.ws12c{word-spacing:4.474188px;}
.ws1a6{word-spacing:4.486280px;}
.ws7c{word-spacing:4.504419px;}
.ws89{word-spacing:4.522558px;}
.wsa5{word-spacing:4.540696px;}
.wsb2{word-spacing:4.589066px;}
.ws27{word-spacing:4.740221px;}
.ws1c2{word-spacing:4.764812px;}
.ws9b{word-spacing:4.957884px;}
.wsf8{word-spacing:4.963930px;}
.wsfc{word-spacing:4.969976px;}
.ws46{word-spacing:5.006254px;}
.ws142{word-spacing:5.018346px;}
.ws97{word-spacing:5.066716px;}
.wsf3{word-spacing:5.217254px;}
.ws26{word-spacing:5.888999px;}
.ws10f{word-spacing:5.925276px;}
.wsa4{word-spacing:5.949461px;}
.ws9d{word-spacing:5.973646px;}
.ws1ba{word-spacing:6.156726px;}
.ws1b{word-spacing:6.367522px;}
.ws16{word-spacing:6.383933px;}
.ws53{word-spacing:6.408972px;}
.ws1a4{word-spacing:6.445249px;}
.ws7a{word-spacing:7.303810px;}
.ws45{word-spacing:7.327994px;}
.ws15e{word-spacing:7.400549px;}
.wsa7{word-spacing:7.406595px;}
.ws99{word-spacing:7.424734px;}
.ws17d{word-spacing:7.430780px;}
.ws1ae{word-spacing:7.586644px;}
.ws11d{word-spacing:7.654386px;}
.ws51{word-spacing:7.860060px;}
.wsfe{word-spacing:7.872152px;}
.ws10{word-spacing:7.975814px;}
.ws1ad{word-spacing:8.318231px;}
.ws156{word-spacing:8.355848px;}
.ws1cd{word-spacing:8.413242px;}
.ws199{word-spacing:8.742805px;}
.ws127{word-spacing:8.845591px;}
.ws150{word-spacing:8.857683px;}
.ws2e{word-spacing:8.875822px;}
.ws108{word-spacing:8.881868px;}
.ws1d{word-spacing:9.305116px;}
.ws2d{word-spacing:9.311148px;}
.ws1be{word-spacing:9.966675px;}
.ws18a{word-spacing:10.199939px;}
.ws125{word-spacing:10.326910px;}
.ws1cc{word-spacing:10.474985px;}
.ws13{word-spacing:10.634419px;}
.ws5e{word-spacing:10.738051px;}
.ws13a{word-spacing:10.756190px;}
.ws33{word-spacing:10.762236px;}
.ws12b{word-spacing:10.774328px;}
.ws130{word-spacing:10.877114px;}
.ws17a{word-spacing:11.324533px;}
.ws10c{word-spacing:11.372902px;}
.ws1bf{word-spacing:11.496355px;}
.ws122{word-spacing:11.547317px;}
.ws1bd{word-spacing:11.581865px;}
.ws2b{word-spacing:11.681258px;}
.ws84{word-spacing:11.711489px;}
.ws3a{word-spacing:11.717536px;}
.ws135{word-spacing:11.729628px;}
.ws1b1{word-spacing:11.843146px;}
.ws1a{word-spacing:12.111421px;}
.wsa0{word-spacing:12.152862px;}
.ws12{word-spacing:12.155184px;}
.ws175{word-spacing:12.201232px;}
.ws107{word-spacing:12.213324px;}
.ws14a{word-spacing:12.594235px;}
.ws163{word-spacing:12.672835px;}
.ws1cb{word-spacing:12.769505px;}
.ws9e{word-spacing:13.144439px;}
.ws23{word-spacing:13.168624px;}
.ws19e{word-spacing:13.174670px;}
.ws1aa{word-spacing:13.180716px;}
.ws19d{word-spacing:13.271409px;}
.ws1c8{word-spacing:13.325321px;}
.ws18e{word-spacing:13.513303px;}
.ws2a{word-spacing:13.603950px;}
.ws141{word-spacing:13.616042px;}
.ws12e{word-spacing:14.208570px;}
.ws57{word-spacing:14.359725px;}
.ws160{word-spacing:14.480649px;}
.ws64{word-spacing:14.486695px;}
.ws139{word-spacing:14.504834px;}
.wsa6{word-spacing:14.510880px;}
.ws1a5{word-spacing:14.553203px;}
.wsac{word-spacing:14.589481px;}
.ws63{word-spacing:14.613665px;}
.ws100{word-spacing:14.619712px;}
.ws8e{word-spacing:14.631804px;}
.ws14{word-spacing:14.983371px;}
.wsff{word-spacing:15.048992px;}
.ws68{word-spacing:15.055038px;}
.ws161{word-spacing:15.061084px;}
.ws85{word-spacing:15.073177px;}
.ws167{word-spacing:15.968014px;}
.ws98{word-spacing:16.058707px;}
.ws3c{word-spacing:16.070800px;}
.ws18{word-spacing:16.427551px;}
.ws19a{word-spacing:16.500080px;}
.ws8c{word-spacing:16.506126px;}
.ws170{word-spacing:16.543280px;}
.wse3{word-spacing:16.614465px;}
.wsaf{word-spacing:17.352502px;}
.ws82{word-spacing:17.400964px;}
.ws134{word-spacing:17.491657px;}
.ws155{word-spacing:17.497703px;}
.ws78{word-spacing:17.509795px;}
.ws18b{word-spacing:17.515841px;}
.wsa9{word-spacing:17.521888px;}
.ws172{word-spacing:17.600488px;}
.ws18d{word-spacing:17.715366px;}
.ws73{word-spacing:17.957214px;}
.ws102{word-spacing:18.066046px;}
.ws91{word-spacing:18.882283px;}
.ws79{word-spacing:18.900421px;}
.ws7d{word-spacing:18.906467px;}
.ws109{word-spacing:18.912514px;}
.ws14f{word-spacing:18.918560px;}
.ws1b6{word-spacing:19.168510px;}
.ws12a{word-spacing:19.347840px;}
.ws9a{word-spacing:19.353886px;}
.ws131{word-spacing:19.408302px;}
.ws129{word-spacing:19.843628px;}
.ws1a8{word-spacing:20.254770px;}
.ws13d{word-spacing:20.351509px;}
.ws54{word-spacing:20.357555px;}
.ws31{word-spacing:20.363602px;}
.ws42{word-spacing:20.369648px;}
.ws8b{word-spacing:20.786836px;}
.ws93{word-spacing:20.798928px;}
.wsa3{word-spacing:20.804974px;}
.ws164{word-spacing:21.699812px;}
.ws28{word-spacing:21.778412px;}
.ws189{word-spacing:21.790505px;}
.ws70{word-spacing:21.814690px;}
.ws8f{word-spacing:22.250016px;}
.ws1b7{word-spacing:22.821690px;}
.ws1c{word-spacing:23.145178px;}
.ws10a{word-spacing:23.235547px;}
.ws4c{word-spacing:23.265778px;}
.ws4b{word-spacing:23.701104px;}
.ws11{word-spacing:24.665943px;}
.ws138{word-spacing:24.686635px;}
.wsa1{word-spacing:24.692681px;}
.ws30{word-spacing:24.716866px;}
.ws6b{word-spacing:25.152192px;}
.wsa2{word-spacing:26.059122px;}
.ws88{word-spacing:26.107492px;}
.ws159{word-spacing:26.542818px;}
.ws165{word-spacing:26.554910px;}
.ws61{word-spacing:26.591188px;}
.ws39{word-spacing:27.558580px;}
.ws1a1{word-spacing:27.570672px;}
.ws1a9{word-spacing:27.582764px;}
.wsf9{word-spacing:27.993906px;}
.ws15d{word-spacing:28.005998px;}
.ws179{word-spacing:28.054368px;}
.ws74{word-spacing:28.906882px;}
.ws19c{word-spacing:28.937113px;}
.ws87{word-spacing:29.009668px;}
.ws83{word-spacing:29.027806px;}
.ws181{word-spacing:29.070130px;}
.ws182{word-spacing:29.324070px;}
.ws92{word-spacing:29.438948px;}
.ws16c{word-spacing:29.444994px;}
.ws173{word-spacing:29.451040px;}
.ws81{word-spacing:30.418432px;}
.ws132{word-spacing:30.436571px;}
.wsfb{word-spacing:30.460756px;}
.ws17{word-spacing:30.858414px;}
.ws77{word-spacing:30.896082px;}
.wsfd{word-spacing:31.911844px;}
.ws17c{word-spacing:32.347170px;}
.ws21{word-spacing:33.194266px;}
.ws8d{word-spacing:33.362932px;}
.ws158{word-spacing:33.798258px;}
.ws1{word-spacing:34.632634px;}
.ws12d{word-spacing:34.705188px;}
.ws7f{word-spacing:34.723327px;}
.ws20{word-spacing:35.174543px;}
.ws15b{word-spacing:35.249346px;}
.ws104{word-spacing:35.267485px;}
.ws13b{word-spacing:35.273531px;}
.ws94{word-spacing:36.204646px;}
.ws166{word-spacing:37.625503px;}
.ws169{word-spacing:37.655734px;}
.ws19b{word-spacing:38.091060px;}
.ws37{word-spacing:38.151522px;}
.ws80{word-spacing:39.542148px;}
.ws196{word-spacing:39.947459px;}
.ws52{word-spacing:40.515586px;}
.ws15a{word-spacing:40.527679px;}
.ws40{word-spacing:40.981144px;}
.ws6a{word-spacing:41.948536px;}
.ws16a{word-spacing:42.395954px;}
.wsaa{word-spacing:43.828904px;}
.ws188{word-spacing:43.834950px;}
.wsab{word-spacing:44.747926px;}
.ws105{word-spacing:44.850712px;}
.ws177{word-spacing:46.737126px;}
.wsb1{word-spacing:47.474762px;}
.ws6d{word-spacing:48.188214px;}
.ws34{word-spacing:49.119329px;}
.ws90{word-spacing:49.578840px;}
.ws72{word-spacing:50.594602px;}
.ws10e{word-spacing:51.930812px;}
.ws4a{word-spacing:53.926058px;}
.ws3f{word-spacing:54.947866px;}
.wse2{word-spacing:55.135605px;}
.ws86{word-spacing:56.773818px;}
.wsce{word-spacing:61.261482px;}
.wsf1{word-spacing:70.087707px;}
.wsa8{word-spacing:72.179536px;}
.wsf0{word-spacing:73.852486px;}
.wsca{word-spacing:109.266867px;}
.wsd0{word-spacing:110.102438px;}
.wsd2{word-spacing:113.212977px;}
.wsb6{word-spacing:118.735404px;}
.wsc8{word-spacing:132.329371px;}
.wsde{word-spacing:206.221640px;}
.wsc5{word-spacing:209.873837px;}
.wse9{word-spacing:1414.465935px;}
._1c{margin-left:-18.001752px;}
._2c{margin-left:-13.200912px;}
._26{margin-left:-9.920325px;}
._e{margin-left:-4.345406px;}
._5{margin-left:-3.183771px;}
._0{margin-left:-1.741870px;}
._1{width:1.151650px;}
._3{width:2.285458px;}
._b{width:3.305024px;}
._24{width:4.597479px;}
._1b{width:6.028061px;}
._8{width:9.370499px;}
._2b{width:10.620839px;}
._a{width:11.841892px;}
._23{width:13.107264px;}
._c{width:14.403504px;}
._4{width:15.786634px;}
._27{width:16.808690px;}
._2{width:17.828478px;}
._6{width:18.909900px;}
._14{width:19.963475px;}
._11{width:21.405526px;}
._9{width:23.372878px;}
._f{width:24.705700px;}
._10{width:26.143715px;}
._1e{width:27.538437px;}
._7{width:29.014755px;}
._16{width:30.440067px;}
._13{width:32.945718px;}
._18{width:35.517014px;}
._15{width:36.766255px;}
._17{width:39.656094px;}
._29{width:41.341044px;}
._1a{width:44.235223px;}
._19{width:47.729832px;}
._1d{width:50.480378px;}
._2d{width:52.773971px;}
._28{width:54.639718px;}
._12{width:59.226230px;}
._2a{width:63.109057px;}
._1f{width:66.393927px;}
._d{width:69.119849px;}
._21{width:88.201122px;}
._20{width:93.442876px;}
._22{width:140.248140px;}
._25{width:409.280707px;}
.fc4{color:rgb(71,71,71);}
.fc3{color:rgb(37,37,37);}
.fc2{color:rgb(37,37,37);}
.fc1{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:28.812600px;}
.fsb{font-size:28.864800px;}
.fsf{font-size:32.579400px;}
.fse{font-size:32.647800px;}
.fs8{font-size:34.267800px;}
.fs7{font-size:34.330200px;}
.fs9{font-size:34.345800px;}
.fsd{font-size:37.466400px;}
.fsc{font-size:37.534200px;}
.fs4{font-size:47.505600px;}
.fs5{font-size:48.201600px;}
.fs6{font-size:53.772000px;}
.fs3{font-size:54.703800px;}
.fs2{font-size:60.462000px;}
.fs1{font-size:66.220200px;}
.fs0{font-size:143.956200px;}
.y0{bottom:0.000000px;}
.y122{bottom:6.666000px;}
.y167{bottom:9.860850px;}
.y12b{bottom:10.382100px;}
.y121{bottom:17.107500px;}
.y166{bottom:19.633200px;}
.y175{bottom:34.069050px;}
.y238{bottom:38.567700px;}
.yd9{bottom:40.067550px;}
.y2f2{bottom:43.067700px;}
.y1c8{bottom:44.566050px;}
.y28f{bottom:49.064550px;}
.y120{bottom:49.792187px;}
.y11e{bottom:50.257187px;}
.y5a{bottom:50.564550px;}
.y13c{bottom:50.631750px;}
.y124{bottom:53.854650px;}
.y11f{bottom:60.237150px;}
.y11d{bottom:60.702150px;}
.y163{bottom:71.917350px;}
.y134{bottom:84.899250px;}
.y125{bottom:87.858000px;}
.y126{bottom:91.885950px;}
.y119{bottom:95.321837px;}
.y11b{bottom:95.899838px;}
.y11c{bottom:96.118350px;}
.y118{bottom:105.766800px;}
.y123{bottom:106.045500px;}
.y11a{bottom:106.342950px;}
.y116{bottom:110.154238px;}
.y1a5{bottom:114.475200px;}
.y1fb{bottom:117.355060px;}
.y59{bottom:118.030267px;}
.y9c{bottom:119.154884px;}
.y237{bottom:122.389982px;}
.yd8{bottom:122.394348px;}
.y28e{bottom:129.945447px;}
.y159{bottom:131.220000px;}
.y12e{bottom:131.582400px;}
.y30{bottom:133.523655px;}
.y1fa{bottom:134.629053px;}
.y58{bottom:135.307284px;}
.y9b{bottom:136.430389px;}
.y174{bottom:138.637200px;}
.y173{bottom:139.094850px;}
.y236{bottom:139.663976px;}
.yd7{bottom:139.668342px;}
.y15e{bottom:139.727672px;}
.y161{bottom:140.315332px;}
.y160{bottom:140.780563px;}
.y266{bottom:142.547850px;}
.y28d{bottom:147.222464px;}
.y15d{bottom:149.513850px;}
.y15f{bottom:150.566742px;}
.y2f{bottom:150.800672px;}
.y1f9{bottom:151.898512px;}
.y57{bottom:153.657501px;}
.y9a{bottom:153.698336px;}
.y235{bottom:156.933435px;}
.yd6{bottom:156.937800px;}
.y2b5{bottom:159.074407px;}
.y169{bottom:159.830570px;}
.y15c{bottom:160.222315px;}
.y165{bottom:161.188070px;}
.y28c{bottom:164.484365px;}
.y2e{bottom:168.077688px;}
.y1f8{bottom:169.172505px;}
.y1c7{bottom:170.612581px;}
.y56{bottom:170.934517px;}
.y99{bottom:170.973841px;}
.y168{bottom:171.250350px;}
.y15b{bottom:171.640200px;}
.y164{bottom:172.607850px;}
.y234{bottom:174.252774px;}
.yd5{bottom:174.257140px;}
.y2b4{bottom:176.396770px;}
.y28b{bottom:181.806728px;}
.y1c6{bottom:184.329823px;}
.y2d{bottom:185.400051px;}
.y1f7{bottom:186.493357px;}
.y55{bottom:188.256880px;}
.y98{bottom:188.293181px;}
.y233{bottom:191.528279px;}
.yd4{bottom:191.532645px;}
.y2b3{bottom:193.673787px;}
.y2f1{bottom:198.726492px;}
.y2c{bottom:202.677067px;}
.y162{bottom:203.137350px;}
.y28a{bottom:203.346315px;}
.y1f6{bottom:203.767350px;}
.y54{bottom:205.533897px;}
.y97{bottom:205.567175px;}
.y232{bottom:208.802273px;}
.yd3{bottom:208.806639px;}
.y2b2{bottom:210.950804px;}
.y2f0{bottom:212.764397px;}
.y2b{bottom:219.954084px;}
.y1f5{bottom:221.045398px;}
.y53{bottom:222.810913px;}
.y96{bottom:222.841168px;}
.y231{bottom:226.076266px;}
.yd2{bottom:226.080632px;}
.y16f{bottom:226.125939px;}
.y172{bottom:226.247925px;}
.y2ef{bottom:226.446010px;}
.y2b1{bottom:228.227820px;}
.y289{bottom:231.053026px;}
.y2a{bottom:237.231100px;}
.y16e{bottom:237.545720px;}
.y171{bottom:237.667706px;}
.y1f4{bottom:237.959643px;}
.y52{bottom:240.087930px;}
.y95{bottom:240.116673px;}
.y2ee{bottom:240.117000px;}
.y16b{bottom:241.057500px;}
.y230{bottom:243.350260px;}
.yd1{bottom:243.354625px;}
.y2b0{bottom:245.504837px;}
.y288{bottom:248.330043px;}
.y16d{bottom:248.965500px;}
.y170{bottom:249.087486px;}
.y2ed{bottom:254.153651px;}
.y29{bottom:254.508117px;}
.y1f3{bottom:255.235148px;}
.y94{bottom:257.392178px;}
.y51{bottom:258.438147px;}
.y22f{bottom:260.625765px;}
.yd0{bottom:260.630130px;}
.y2af{bottom:262.781853px;}
.y16c{bottom:265.492500px;}
.y287{bottom:265.607059px;}
.y2ec{bottom:267.823387px;}
.y28{bottom:271.785134px;}
.y1f2{bottom:272.509141px;}
.y93{bottom:274.666171px;}
.y50{bottom:275.352391px;}
.y15a{bottom:276.061800px;}
.y22e{bottom:277.899758px;}
.ycf{bottom:277.904124px;}
.y2ae{bottom:280.058870px;}
.y2eb{bottom:281.505000px;}
.y286{bottom:282.884076px;}
.y27{bottom:289.062150px;}
.y1f1{bottom:289.784646px;}
.y92{bottom:291.581927px;}
.y4f{bottom:292.629408px;}
.y22d{bottom:294.815514px;}
.yce{bottom:294.819880px;}
.y14e{bottom:294.969265px;}
.y148{bottom:295.510370px;}
.y2ea{bottom:295.546980px;}
.y156{bottom:297.286733px;}
.y2ad{bottom:297.335886px;}
.y155{bottom:297.449972px;}
.y285{bottom:300.161092px;}
.y26{bottom:306.347710px;}
.y14d{bottom:306.387150px;}
.y147{bottom:306.930150px;}
.y1f0{bottom:307.088871px;}
.y154{bottom:307.236150px;}
.y91{bottom:308.886152px;}
.y2e9{bottom:309.252346px;}
.y4e{bottom:311.009856px;}
.y22c{bottom:312.119738px;}
.ycd{bottom:312.124104px;}
.y2ac{bottom:314.643133px;}
.y284{bottom:317.468340px;}
.y2e8{bottom:322.920900px;}
.y25{bottom:323.624727px;}
.y1ef{bottom:324.364376px;}
.y90{bottom:326.161657px;}
.y4d{bottom:328.286872px;}
.y22b{bottom:329.395243px;}
.ycc{bottom:329.399609px;}
.y150{bottom:331.109870px;}
.y14a{bottom:331.775870px;}
.y2ab{bottom:331.920150px;}
.y146{bottom:332.742150px;}
.y283{bottom:334.745357px;}
.y2e7{bottom:336.959987px;}
.y24{bottom:340.538971px;}
.y1a4{bottom:340.907989px;}
.y1ee{bottom:341.639880px;}
.y14f{bottom:342.529650px;}
.y149{bottom:343.195650px;}
.y8f{bottom:343.435650px;}
.y145{bottom:344.145300px;}
.y4c{bottom:345.563889px;}
.y22a{bottom:346.669237px;}
.ycb{bottom:346.673602px;}
.y16a{bottom:347.451150px;}
.y2e6{bottom:350.641600px;}
.y282{bottom:352.022373px;}
.y2aa{bottom:354.900099px;}
.y23{bottom:357.815988px;}
.y1a3{bottom:357.822234px;}
.y1ed{bottom:358.913874px;}
.y4b{bottom:362.840905px;}
.y229{bottom:363.944742px;}
.yca{bottom:363.949107px;}
.y2e5{bottom:364.311336px;}
.y8e{bottom:366.820182px;}
.y281{bottom:369.299390px;}
.y14c{bottom:369.676548px;}
.y144{bottom:370.359150px;}
.y153{bottom:370.918520px;}
.y152{bottom:371.700415px;}
.y22{bottom:375.093004px;}
.y1a2{bottom:375.099251px;}
.y1ec{bottom:376.187867px;}
.y2e4{bottom:378.349241px;}
.y14b{bottom:381.103800px;}
.y4a{bottom:381.191122px;}
.y228{bottom:381.220247px;}
.yc9{bottom:381.224612px;}
.y143{bottom:381.781650px;}
.y151{bottom:383.118300px;}
.y265{bottom:383.302123px;}
.y280{bottom:386.576406px;}
.y2a9{bottom:390.164560px;}
.y2e3{bottom:392.018977px;}
.y21{bottom:392.370021px;}
.y1a1{bottom:392.376267px;}
.y1eb{bottom:393.461861px;}
.y49{bottom:398.468139px;}
.y227{bottom:398.495752px;}
.yc8{bottom:398.498606px;}
.y264{bottom:400.579140px;}
.y8d{bottom:402.089178px;}
.y27f{bottom:403.490651px;}
.y2e2{bottom:405.700590px;}
.y157{bottom:406.806300px;}
.y158{bottom:407.281800px;}
.y2a8{bottom:407.441577px;}
.y1c5{bottom:408.936300px;}
.y20{bottom:409.647037px;}
.y1a0{bottom:409.653284px;}
.y1ea{bottom:410.735854px;}
.y48{bottom:415.745155px;}
.y226{bottom:415.771257px;}
.yc7{bottom:415.774111px;}
.y263{bottom:417.856156px;}
.y8c{bottom:419.364683px;}
.y2e1{bottom:419.732550px;}
.y27e{bottom:420.767667px;}
.y2a7{bottom:424.718593px;}
.y1f{bottom:426.924054px;}
.y19f{bottom:426.930300px;}
.y1e9{bottom:428.009847px;}
.yfa{bottom:432.376094px;}
.y47{bottom:433.067518px;}
.y225{bottom:433.090596px;}
.yc6{bottom:433.093451px;}
.y2e0{bottom:433.455737px;}
.y262{bottom:435.178519px;}
.y8b{bottom:436.684023px;}
.y27d{bottom:438.090030px;}
.y2a6{bottom:442.040956px;}
.y19e{bottom:444.210284px;}
.y1e{bottom:444.246417px;}
.y1e8{bottom:444.970950px;}
.y2df{bottom:447.125473px;}
.yf9{bottom:449.653110px;}
.y46{bottom:450.344535px;}
.y224{bottom:450.366101px;}
.yc5{bottom:450.368956px;}
.y261{bottom:452.455536px;}
.y8a{bottom:453.599779px;}
.y27c{bottom:455.367047px;}
.y2a5{bottom:459.317973px;}
.y2de{bottom:461.163378px;}
.y19d{bottom:461.487300px;}
.y1d{bottom:461.523433px;}
.y1e7{bottom:462.243937px;}
.yf8{bottom:466.930127px;}
.y223{bottom:467.640095px;}
.yc4{bottom:467.642949px;}
.y45{bottom:468.331980px;}
.y260{bottom:469.732552px;}
.y89{bottom:470.875284px;}
.y27b{bottom:472.644063px;}
.y2dd{bottom:474.844991px;}
.y2a4{bottom:476.594989px;}
.y19c{bottom:478.764317px;}
.y1c{bottom:478.800450px;}
.y1e6{bottom:479.519442px;}
.yf7{bottom:484.207143px;}
.y222{bottom:484.555851px;}
.yc3{bottom:484.558705px;}
.y44{bottom:485.608996px;}
.y25f{bottom:487.009569px;}
.y88{bottom:488.150789px;}
.y2dc{bottom:488.514727px;}
.y27a{bottom:489.921080px;}
.y2a3{bottom:493.509234px;}
.y19b{bottom:496.041333px;}
.y1e5{bottom:496.793435px;}
.yf6{bottom:501.121387px;}
.y221{bottom:501.831356px;}
.y1b{bottom:501.832950px;}
.yc2{bottom:501.834210px;}
.y2db{bottom:502.552632px;}
.y43{bottom:502.886013px;}
.y25e{bottom:504.286585px;}
.y87{bottom:505.426294px;}
.y279{bottom:507.198096px;}
.y2a2{bottom:510.786250px;}
.y19a{bottom:513.318350px;}
.y1e4{bottom:514.068940px;}
.y2da{bottom:516.222368px;}
.yf5{bottom:518.398404px;}
.y220{bottom:519.106861px;}
.yc1{bottom:519.109715px;}
.y42{bottom:521.236230px;}
.y25d{bottom:521.563602px;}
.y86{bottom:522.701799px;}
.y278{bottom:524.475113px;}
.y2a1{bottom:528.063267px;}
.y2d9{bottom:529.903981px;}
.y199{bottom:530.595366px;}
.y1e3{bottom:531.344445px;}
.y115{bottom:533.144100px;}
.yf4{bottom:535.675421px;}
.y21f{bottom:536.382366px;}
.yc0{bottom:536.385220px;}
.y1a{bottom:536.420170px;}
.y25c{bottom:538.477846px;}
.y41{bottom:538.513246px;}
.y85{bottom:539.977304px;}
.y277{bottom:541.752129px;}
.y2d8{bottom:543.941886px;}
.y2a0{bottom:545.340283px;}
.y198{bottom:547.509611px;}
.y1e2{bottom:548.619950px;}
.y19{bottom:551.532095px;}
.yf3{bottom:552.952437px;}
.y21e{bottom:553.657871px;}
.ybf{bottom:553.660725px;}
.y12a{bottom:554.139000px;}
.y25b{bottom:555.754863px;}
.y40{bottom:556.863463px;}
.y84{bottom:557.252809px;}
.y2d7{bottom:557.616300px;}
.y276{bottom:559.059377px;}
.y29f{bottom:562.647531px;}
.y142{bottom:563.583600px;}
.y140{bottom:563.699460px;}
.y141{bottom:564.078600px;}
.y13f{bottom:564.456600px;}
.y197{bottom:564.816858px;}
.y1e1{bottom:565.924175px;}
.yf2{bottom:570.259685px;}
.y21d{bottom:570.962095px;}
.ybe{bottom:570.964949px;}
.y2d6{bottom:571.316988px;}
.y25a{bottom:573.062110px;}
.y13e{bottom:573.222093px;}
.y129{bottom:573.300600px;}
.y3f{bottom:574.170711px;}
.y83{bottom:574.558545px;}
.y275{bottom:576.336393px;}
.y29e{bottom:579.924548px;}
.y18{bottom:581.427722px;}
.y196{bottom:582.093875px;}
.y1e0{bottom:583.198168px;}
.y2d5{bottom:585.354893px;}
.y21c{bottom:588.237600px;}
.ybd{bottom:588.238943px;}
.y259{bottom:590.339127px;}
.y82{bottom:591.832538px;}
.yf1{bottom:592.162044px;}
.y3e{bottom:592.520928px;}
.y274{bottom:593.250638px;}
.y13d{bottom:595.991250px;}
.y17{bottom:596.539647px;}
.y29d{bottom:597.201564px;}
.y2d4{bottom:599.036506px;}
.y195{bottom:599.370891px;}
.y138{bottom:600.339516px;}
.y1df{bottom:600.472161px;}
.y137{bottom:600.549750px;}
.y139{bottom:600.731610px;}
.y13a{bottom:601.136100px;}
.ybc{bottom:605.512936px;}
.y258{bottom:607.616143px;}
.y81{bottom:609.108043px;}
.y136{bottom:609.329250px;}
.y3d{bottom:609.797944px;}
.y273{bottom:610.527654px;}
.y21b{bottom:611.270250px;}
.y16{bottom:611.651571px;}
.y2d3{bottom:612.706242px;}
.y13b{bottom:613.532721px;}
.y29c{bottom:614.478580px;}
.y194{bottom:616.647908px;}
.y1de{bottom:618.826913px;}
.yf0{bottom:619.868755px;}
.ybb{bottom:622.786929px;}
.y257{bottom:624.893160px;}
.y80{bottom:626.382037px;}
.y15{bottom:626.407921px;}
.y3c{bottom:627.074961px;}
.y272{bottom:627.804671px;}
.y1c4{bottom:629.605926px;}
.y29b{bottom:631.755597px;}
.y193{bottom:633.924924px;}
.y2d2{bottom:636.097125px;}
.y1dd{bottom:636.820404px;}
.yef{bottom:637.145772px;}
.y132{bottom:638.295516px;}
.y133{bottom:639.041016px;}
.yba{bottom:640.060923px;}
.y14{bottom:641.519846px;}
.y256{bottom:642.170176px;}
.y7f{bottom:643.297793px;}
.y271{bottom:645.081687px;}
.y3b{bottom:645.425178px;}
.y1c3{bottom:646.520171px;}
.y21a{bottom:646.539745px;}
.y131{bottom:647.061750px;}
.y135{bottom:647.807250px;}
.y29a{bottom:649.032614px;}
.y192{bottom:651.201941px;}
.yee{bottom:654.060016px;}
.y1dc{bottom:654.094398px;}
.y13{bottom:656.631771px;}
.yb9{bottom:657.336428px;}
.y255{bottom:659.447193px;}
.y7e{bottom:660.573298px;}
.y3a{bottom:662.339422px;}
.y270{bottom:662.358704px;}
.y1c2{bottom:663.797187px;}
.y219{bottom:663.815250px;}
.y299{bottom:666.309630px;}
.y191{bottom:668.478957px;}
.yed{bottom:671.337033px;}
.y2d1{bottom:671.361587px;}
.y12{bottom:671.388121px;}
.y1db{bottom:672.450661px;}
.yb8{bottom:674.610421px;}
.y128{bottom:676.199166px;}
.y254{bottom:676.724209px;}
.y12d{bottom:676.944666px;}
.y12f{bottom:676.958250px;}
.y7d{bottom:677.848803px;}
.y39{bottom:679.616439px;}
.y26f{bottom:679.635720px;}
.y1c1{bottom:681.074204px;}
.y218{bottom:681.090395px;}
.y298{bottom:683.586646px;}
.y127{bottom:684.965400px;}
.y12c{bottom:685.710900px;}
.y130{bottom:685.724484px;}
.y190{bottom:685.755974px;}
.y11{bottom:686.500046px;}
.yec{bottom:688.644280px;}
.y2d0{bottom:688.668834px;}
.y1da{bottom:689.754885px;}
.yb7{bottom:691.556408px;}
.y253{bottom:694.031457px;}
.y7c{bottom:695.153027px;}
.y26e{bottom:696.942968px;}
.y38{bottom:697.996887px;}
.y1c0{bottom:698.381451px;}
.y217{bottom:698.396130px;}
.y297{bottom:700.531122px;}
.y10{bottom:701.639322px;}
.y18f{bottom:703.063221px;}
.yeb{bottom:705.921297px;}
.y2cf{bottom:705.945851px;}
.y1d9{bottom:707.030390px;}
.yb6{bottom:708.830402px;}
.y252{bottom:711.308473px;}
.y7b{bottom:712.427020px;}
.y26d{bottom:714.219984px;}
.y37{bottom:715.273903px;}
.y1bf{bottom:715.658468px;}
.y216{bottom:715.671635px;}
.yf{bottom:716.395672px;}
.y114{bottom:717.802080px;}
.y296{bottom:717.808138px;}
.yea{bottom:723.198314px;}
.y2ce{bottom:723.222867px;}
.y1d8{bottom:724.305895px;}
.y18e{bottom:724.633039px;}
.yb5{bottom:726.105907px;}
.y251{bottom:728.585490px;}
.y7a{bottom:729.701014px;}
.y26c{bottom:731.497001px;}
.ye{bottom:731.507597px;}
.y36{bottom:732.550920px;}
.y1be{bottom:732.935484px;}
.y215{bottom:732.947140px;}
.y113{bottom:735.079096px;}
.y295{bottom:735.085155px;}
.ye9{bottom:740.475330px;}
.y2cd{bottom:740.499884px;}
.y1d7{bottom:741.581400px;}
.yb4{bottom:743.379900px;}
.y250{bottom:745.499734px;}
.yd{bottom:746.619522px;}
.y79{bottom:746.975007px;}
.y26b{bottom:748.774017px;}
.y1bd{bottom:750.212501px;}
.y214{bottom:750.221134px;}
.y35{bottom:750.901137px;}
.y18d{bottom:752.339751px;}
.y112{bottom:752.356113px;}
.y294{bottom:752.362171px;}
.ye8{bottom:757.752346px;}
.y2cc{bottom:757.776900px;}
.y1d6{bottom:758.850714px;}
.yc{bottom:761.375872px;}
.y24f{bottom:762.776751px;}
.y78{bottom:764.249001px;}
.y26a{bottom:766.051034px;}
.yb3{bottom:766.770924px;}
.y1bc{bottom:767.489517px;}
.y213{bottom:767.495127px;}
.y34{bottom:768.178153px;}
.y18c{bottom:769.616768px;}
.y111{bottom:769.633129px;}
.y293{bottom:769.639188px;}
.ye7{bottom:775.029363px;}
.y1d5{bottom:776.126219px;}
.yb{bottom:776.487797px;}
.y24e{bottom:780.053767px;}
.y77{bottom:781.522994px;}
.y269{bottom:783.328050px;}
.y2cb{bottom:783.994524px;}
.y1bb{bottom:784.766534px;}
.y212{bottom:784.769121px;}
.y33{bottom:785.455170px;}
.y18b{bottom:786.893784px;}
.y110{bottom:786.910146px;}
.y292{bottom:786.916205px;}
.ya{bottom:791.599721px;}
.ye6{bottom:792.306380px;}
.y1d4{bottom:793.401724px;}
.y24d{bottom:797.330784px;}
.y76{bottom:798.796987px;}
.yb2{bottom:802.039920px;}
.y1ba{bottom:802.043550px;}
.y211{bottom:802.044625px;}
.y32{bottom:802.732186px;}
.y18a{bottom:804.170801px;}
.y10f{bottom:804.187162px;}
.y291{bottom:804.193221px;}
.y9{bottom:806.356071px;}
.ye5{bottom:809.583396px;}
.y1d3{bottom:810.677229px;}
.y24c{bottom:814.607800px;}
.y75{bottom:817.197086px;}
.y2ca{bottom:819.304332px;}
.yb1{bottom:819.359260px;}
.y1b9{bottom:819.362550px;}
.y210{bottom:819.363965px;}
.y31{bottom:820.054550px;}
.y189{bottom:821.493164px;}
.y10e{bottom:821.509525px;}
.y8{bottom:821.522700px;}
.y290{bottom:825.808386px;}
.y268{bottom:826.201050px;}
.ye4{bottom:826.905759px;}
.y1d2{bottom:827.636820px;}
.y24b{bottom:831.930163px;}
.y74{bottom:834.471079px;}
.y2c9{bottom:836.218576px;}
.y1b8{bottom:836.238081px;}
.yb0{bottom:836.275016px;}
.y20f{bottom:836.279721px;}
.y188{bottom:838.770180px;}
.y10d{bottom:838.786542px;}
.ye3{bottom:843.820004px;}
.y1d1{bottom:844.912325px;}
.y24a{bottom:849.207180px;}
.y73{bottom:851.386835px;}
.y2c8{bottom:853.495593px;}
.y1b7{bottom:853.515097px;}
.yaf{bottom:853.549009px;}
.y20e{bottom:853.553715px;}
.y7{bottom:854.497444px;}
.y187{bottom:856.047197px;}
.y10c{bottom:856.063558px;}
.ye2{bottom:861.097020px;}
.y1d0{bottom:862.187830px;}
.y249{bottom:866.484196px;}
.y72{bottom:868.662340px;}
.y2c7{bottom:870.772609px;}
.y1b6{bottom:870.792114px;}
.yae{bottom:870.824514px;}
.y20d{bottom:870.827708px;}
.y186{bottom:873.324213px;}
.y10b{bottom:873.340575px;}
.ye1{bottom:878.374037px;}
.y6{bottom:879.090363px;}
.y1cf{bottom:879.463335px;}
.y248{bottom:883.761213px;}
.y71{bottom:885.937845px;}
.y2c6{bottom:888.049626px;}
.y1b5{bottom:888.069130px;}
.yad{bottom:888.100019px;}
.y20c{bottom:888.101702px;}
.y185{bottom:890.238458px;}
.y10a{bottom:890.254819px;}
.ye0{bottom:895.651053px;}
.y1ce{bottom:896.738840px;}
.y247{bottom:901.038229px;}
.y70{bottom:903.213350px;}
.y5{bottom:903.683282px;}
.y2c5{bottom:905.326643px;}
.y1b4{bottom:905.346147px;}
.yac{bottom:905.375524px;}
.y20b{bottom:905.377207px;}
.y184{bottom:907.515474px;}
.y109{bottom:912.202525px;}
.ydf{bottom:912.928069px;}
.y1cd{bottom:914.014345px;}
.y246{bottom:918.315246px;}
.y6f{bottom:920.488855px;}
.y2c4{bottom:922.603659px;}
.y1b3{bottom:922.623163px;}
.yab{bottom:922.649518px;}
.y20a{bottom:922.651200px;}
.y183{bottom:924.792491px;}
.y4{bottom:928.276200px;}
.yde{bottom:930.205086px;}
.y1cc{bottom:931.289850px;}
.y245{bottom:935.229490px;}
.y6e{bottom:937.762848px;}
.y2c3{bottom:939.880676px;}
.y1b2{bottom:939.900180px;}
.y108{bottom:939.909237px;}
.y209{bottom:939.922431px;}
.yaa{bottom:939.925023px;}
.y182{bottom:942.069507px;}
.ydd{bottom:947.512334px;}
.y244{bottom:952.536738px;}
.y3{bottom:953.476350px;}
.y6d{bottom:955.068584px;}
.y1cb{bottom:956.871326px;}
.y2c2{bottom:957.187923px;}
.y1b1{bottom:957.207427px;}
.y107{bottom:957.216484px;}
.y208{bottom:957.226655px;}
.ya9{bottom:957.229247px;}
.y181{bottom:959.376755px;}
.ydc{bottom:964.789350px;}
.y243{bottom:969.813754px;}
.y267{bottom:970.187850px;}
.y1ca{bottom:970.908043px;}
.y6c{bottom:973.421824px;}
.y2c1{bottom:974.464940px;}
.y1b0{bottom:974.484444px;}
.y106{bottom:974.493501px;}
.y207{bottom:974.502160px;}
.ya8{bottom:974.503240px;}
.y180{bottom:976.653771px;}
.y242{bottom:987.090771px;}
.ydb{bottom:987.822000px;}
.y6b{bottom:990.697329px;}
.y2c0{bottom:991.741956px;}
.y1af{bottom:991.761460px;}
.y105{bottom:991.770517px;}
.y206{bottom:991.776154px;}
.ya7{bottom:991.777234px;}
.y2{bottom:993.405603px;}
.y17f{bottom:993.930788px;}
.y241{bottom:1004.367787px;}
.y6a{bottom:1007.972834px;}
.y2bf{bottom:1009.018973px;}
.y1ae{bottom:1009.038477px;}
.y104{bottom:1009.047534px;}
.y205{bottom:1009.050147px;}
.ya6{bottom:1009.051227px;}
.y17e{bottom:1011.207804px;}
.y240{bottom:1021.644804px;}
.yda{bottom:1022.729527px;}
.y69{bottom:1025.248339px;}
.y2be{bottom:1026.295989px;}
.y1ad{bottom:1026.315494px;}
.y204{bottom:1026.324141px;}
.y103{bottom:1026.324550px;}
.ya5{bottom:1026.325221px;}
.y17d{bottom:1028.484821px;}
.y1{bottom:1034.829000px;}
.y23f{bottom:1038.921820px;}
.y68{bottom:1042.162584px;}
.y117{bottom:1042.600500px;}
.y2bd{bottom:1043.210233px;}
.y1ac{bottom:1043.229738px;}
.y102{bottom:1043.238795px;}
.y203{bottom:1043.239897px;}
.ya4{bottom:1043.240977px;}
.y17c{bottom:1045.761837px;}
.y23e{bottom:1056.198837px;}
.y67{bottom:1059.438089px;}
.y2bc{bottom:1060.487250px;}
.y1ab{bottom:1060.506754px;}
.y202{bottom:1060.513890px;}
.ya3{bottom:1060.514970px;}
.y101{bottom:1060.515811px;}
.y17b{bottom:1063.038854px;}
.y23d{bottom:1073.475854px;}
.y66{bottom:1076.757429px;}
.y2bb{bottom:1077.809613px;}
.y1aa{bottom:1077.829117px;}
.y201{bottom:1077.834741px;}
.ya2{bottom:1077.835821px;}
.y100{bottom:1077.838174px;}
.y17a{bottom:1080.361217px;}
.y23c{bottom:1090.798216px;}
.y2ba{bottom:1095.086630px;}
.y1a9{bottom:1095.106134px;}
.y200{bottom:1095.110246px;}
.ya1{bottom:1095.111326px;}
.y65{bottom:1095.112180px;}
.yff{bottom:1095.115191px;}
.y179{bottom:1097.275461px;}
.y23b{bottom:1108.075233px;}
.y2b9{bottom:1112.363646px;}
.y1a8{bottom:1112.383150px;}
.y1ff{bottom:1112.385751px;}
.ya0{bottom:1112.386831px;}
.y64{bottom:1112.387685px;}
.yfe{bottom:1112.392208px;}
.y178{bottom:1114.552478px;}
.y5f{bottom:1124.388150px;}
.y23a{bottom:1125.352249px;}
.y2b8{bottom:1129.640662px;}
.y1a7{bottom:1129.660167px;}
.y1fe{bottom:1129.661256px;}
.y9f{bottom:1129.662336px;}
.y63{bottom:1129.663190px;}
.yfd{bottom:1129.669224px;}
.y177{bottom:1131.829494px;}
.y239{bottom:1142.266494px;}
.y2b7{bottom:1146.917679px;}
.y1fd{bottom:1146.936761px;}
.y1a6{bottom:1146.937183px;}
.y9e{bottom:1146.937841px;}
.y62{bottom:1146.938695px;}
.yfc{bottom:1146.946240px;}
.y176{bottom:1153.777200px;}
.y5e{bottom:1154.265150px;}
.y2b6{bottom:1164.194696px;}
.y1fc{bottom:1164.212266px;}
.y9d{bottom:1164.213346px;}
.y61{bottom:1164.214200px;}
.yfb{bottom:1164.223257px;}
.y5d{bottom:1169.203650px;}
.y5c{bottom:1184.142150px;}
.y5b{bottom:1199.080650px;}
.y1c9{bottom:1216.188600px;}
.y60{bottom:1231.184100px;}
.h11{height:30.743044px;}
.h16{height:30.798742px;}
.h26{height:31.974899px;}
.h20{height:32.042030px;}
.h5{height:32.126555px;}
.he{height:36.563743px;}
.hd{height:36.630323px;}
.h10{height:36.646969px;}
.h1e{height:36.771223px;}
.h1d{height:36.837765px;}
.h6{height:37.335832px;}
.h22{height:37.759106px;}
.h28{height:37.776120px;}
.h25{height:37.827436px;}
.h27{height:39.435223px;}
.h7{height:46.600952px;}
.h9{height:46.624148px;}
.h2f{height:46.628876px;}
.h2d{height:46.643396px;}
.h2e{height:46.647928px;}
.h4{height:55.131173px;}
.hb{height:59.310624px;}
.h3{height:59.340146px;}
.h8{height:59.372017px;}
.h2b{height:59.437680px;}
.h29{height:59.455866px;}
.ha{height:59.492010px;}
.h2c{height:59.550350px;}
.h2a{height:59.558364px;}
.h1a{height:62.837044px;}
.h1c{height:63.827044px;}
.h17{height:64.967044px;}
.h2{height:64.991505px;}
.h14{height:65.807978px;}
.h13{height:65.849978px;}
.h1b{height:67.433301px;}
.h18{height:67.433978px;}
.h19{height:67.523301px;}
.h15{height:68.789978px;}
.h24{height:69.358466px;}
.h21{height:70.566434px;}
.hf{height:79.129991px;}
.h1f{height:79.389306px;}
.hc{height:132.412500px;}
.h1{height:145.080858px;}
.h12{height:145.366500px;}
.h23{height:282.403500px;}
.h0{height:1263.000000px;}
.w4{width:369.561000px;}
.w2{width:370.039500px;}
.w3{width:372.274500px;}
.w6{width:469.761000px;}
.w5{width:470.167500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1e{left:6.956250px;}
.x20{left:23.752641px;}
.x1f{left:26.737500px;}
.x15{left:51.139996px;}
.x70{left:63.017100px;}
.x14{left:72.374250px;}
.x9{left:76.685750px;}
.x6c{left:84.611308px;}
.x8{left:87.489750px;}
.x6f{left:93.615255px;}
.x50{left:95.539050px;}
.xb{left:97.926450px;}
.x22{left:103.903498px;}
.x21{left:107.260800px;}
.x26{left:111.049683px;}
.x1b{left:115.922249px;}
.x25{left:117.010800px;}
.x6d{left:119.880653px;}
.x1{left:141.149550px;}
.x73{left:142.940409px;}
.x27{left:164.088450px;}
.x16{left:171.382287px;}
.x68{left:185.779800px;}
.xa{left:206.652450px;}
.x24{left:208.403100px;}
.x23{left:209.694600px;}
.x7{left:221.442942px;}
.x77{left:226.701450px;}
.x4f{left:231.498000px;}
.x3{left:232.954950px;}
.xe{left:234.199950px;}
.x55{left:240.842502px;}
.x56{left:244.917037px;}
.x4e{left:260.950950px;}
.x40{left:269.219100px;}
.x3f{left:271.441950px;}
.x3e{left:274.701600px;}
.x6{left:283.340914px;}
.x1d{left:295.976856px;}
.x52{left:297.110100px;}
.x53{left:298.740619px;}
.x2{left:301.012910px;}
.x2a{left:305.769750px;}
.x6b{left:313.793100px;}
.x1a{left:316.134600px;}
.x35{left:323.860500px;}
.x67{left:326.108100px;}
.x2e{left:327.709650px;}
.x51{left:329.089350px;}
.x28{left:331.562250px;}
.x60{left:335.900100px;}
.x62{left:338.753976px;}
.x41{left:340.640100px;}
.x61{left:342.011525px;}
.x42{left:352.468665px;}
.x5d{left:353.487600px;}
.x29{left:358.703250px;}
.x5e{left:360.838208px;}
.x4{left:377.676750px;}
.x5{left:392.096937px;}
.x58{left:408.497700px;}
.x66{left:415.130250px;}
.x5b{left:424.027200px;}
.x63{left:428.791886px;}
.x4d{left:430.062900px;}
.x65{left:432.866170px;}
.x64{left:434.499638px;}
.x17{left:442.486337px;}
.x4a{left:448.790400px;}
.x48{left:450.453881px;}
.x47{left:452.084400px;}
.x4b{left:455.306389px;}
.x5c{left:459.520786px;}
.x18{left:463.749311px;}
.xd{left:468.063426px;}
.x71{left:469.148400px;}
.x32{left:471.422820px;}
.x36{left:476.754416px;}
.x31{left:480.048623px;}
.x3b{left:483.168004px;}
.x72{left:484.987178px;}
.xc{left:489.300703px;}
.x1c{left:491.462400px;}
.x76{left:495.068968px;}
.x69{left:506.578050px;}
.x59{left:521.563050px;}
.x5f{left:527.572050px;}
.x5a{left:528.913658px;}
.x49{left:532.877786px;}
.x4c{left:538.307680px;}
.x2b{left:552.574050px;}
.x2c{left:554.494984px;}
.x37{left:558.227550px;}
.x33{left:568.135050px;}
.x19{left:572.840897px;}
.x6a{left:578.596540px;}
.x54{left:590.893200px;}
.x10{left:593.575350px;}
.x74{left:596.224023px;}
.x57{left:605.342700px;}
.x75{left:613.506463px;}
.x6e{left:618.548700px;}
.x45{left:622.712700px;}
.x3c{left:625.922700px;}
.xf{left:630.122400px;}
.x46{left:631.687389px;}
.x38{left:632.720487px;}
.x43{left:635.030700px;}
.x44{left:641.965092px;}
.x12{left:647.297850px;}
.x13{left:650.035200px;}
.x2f{left:654.175200px;}
.x34{left:665.563780px;}
.x11{left:683.297850px;}
.x3d{left:687.730350px;}
.x39{left:728.575669px;}
.x30{left:752.571000px;}
.x3a{left:792.615000px;}
.x2d{left:804.807000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.965333pt;}
.v6{vertical-align:2.368000pt;}
.v5{vertical-align:28.528000pt;}
.v2{vertical-align:31.206164pt;}
.v4{vertical-align:32.614164pt;}
.v3{vertical-align:33.819497pt;}
.v1{vertical-align:37.836665pt;}
.ls37{letter-spacing:-5.733333pt;}
.ls9e{letter-spacing:-2.579712pt;}
.ls84{letter-spacing:-2.286797pt;}
.ls83{letter-spacing:-2.108588pt;}
.ls7b{letter-spacing:-2.038172pt;}
.ls81{letter-spacing:-2.034842pt;}
.ls87{letter-spacing:-2.024851pt;}
.ls90{letter-spacing:-1.392973pt;}
.ls2b{letter-spacing:-1.289856pt;}
.ls30{letter-spacing:-1.284482pt;}
.ls1c{letter-spacing:-1.283716pt;}
.ls2a{letter-spacing:-1.279107pt;}
.lsf{letter-spacing:-1.273991pt;}
.ls13{letter-spacing:-1.269128pt;}
.lsa1{letter-spacing:-1.268358pt;}
.ls1b{letter-spacing:-1.264266pt;}
.ls17{letter-spacing:-1.249678pt;}
.ls12{letter-spacing:-1.244815pt;}
.ls16{letter-spacing:-1.235090pt;}
.ls11{letter-spacing:-1.210777pt;}
.ls10{letter-spacing:-1.186465pt;}
.ls52{letter-spacing:-1.064125pt;}
.ls97{letter-spacing:-0.940857pt;}
.ls96{letter-spacing:-0.874130pt;}
.ls3e{letter-spacing:-0.849155pt;}
.ls85{letter-spacing:-0.835784pt;}
.ls6b{letter-spacing:-0.834925pt;}
.lsb6{letter-spacing:-0.827658pt;}
.ls2d{letter-spacing:-0.816909pt;}
.ls1f{letter-spacing:-0.811534pt;}
.ls31{letter-spacing:-0.806160pt;}
.ls29{letter-spacing:-0.800786pt;}
.ls2f{letter-spacing:-0.795411pt;}
.lsb5{letter-spacing:-0.790037pt;}
.ls3b{letter-spacing:-0.784662pt;}
.lsab{letter-spacing:-0.779288pt;}
.lsa0{letter-spacing:-0.768539pt;}
.lsc3{letter-spacing:-0.757790pt;}
.lsa8{letter-spacing:-0.713640pt;}
.lsd7{letter-spacing:-0.692526pt;}
.ls56{letter-spacing:-0.637779pt;}
.lscb{letter-spacing:-0.633408pt;}
.ls88{letter-spacing:-0.615230pt;}
.ls7c{letter-spacing:-0.593874pt;}
.lsb2{letter-spacing:-0.574290pt;}
.ls7e{letter-spacing:-0.559498pt;}
.lsca{letter-spacing:-0.557399pt;}
.ls92{letter-spacing:-0.527147pt;}
.lsaf{letter-spacing:-0.499819pt;}
.ls8f{letter-spacing:-0.473765pt;}
.ls9a{letter-spacing:-0.472947pt;}
.lsd9{letter-spacing:-0.472945pt;}
.ls76{letter-spacing:-0.461837pt;}
.ls5a{letter-spacing:-0.448581pt;}
.ls3c{letter-spacing:-0.440701pt;}
.ls5e{letter-spacing:-0.439427pt;}
.lsc{letter-spacing:-0.437630pt;}
.lsa{letter-spacing:-0.429952pt;}
.lsad{letter-spacing:-0.424578pt;}
.ls6f{letter-spacing:-0.420024pt;}
.ls68{letter-spacing:-0.417463pt;}
.ls71{letter-spacing:-0.379046pt;}
.ls70{letter-spacing:-0.373924pt;}
.ls64{letter-spacing:-0.371362pt;}
.ls72{letter-spacing:-0.368801pt;}
.ls8b{letter-spacing:-0.345341pt;}
.lsd2{letter-spacing:-0.329372pt;}
.ls99{letter-spacing:-0.326965pt;}
.ls94{letter-spacing:-0.293071pt;}
.ls41{letter-spacing:-0.269929pt;}
.ls35{letter-spacing:-0.231368pt;}
.lsa3{letter-spacing:-0.228027pt;}
.ls8c{letter-spacing:-0.208946pt;}
.lsdd{letter-spacing:-0.202691pt;}
.lsce{letter-spacing:-0.185800pt;}
.lsdf{letter-spacing:-0.173132pt;}
.lsc5{letter-spacing:-0.135127pt;}
.lsd{letter-spacing:-0.102114pt;}
.lsc6{letter-spacing:-0.088677pt;}
.ls73{letter-spacing:-0.069150pt;}
.ls67{letter-spacing:-0.066589pt;}
.lsa9{letter-spacing:-0.053744pt;}
.lsa4{letter-spacing:-0.050673pt;}
.ls5c{letter-spacing:-0.048825pt;}
.ls75{letter-spacing:-0.038417pt;}
.lsb{letter-spacing:-0.032246pt;}
.ls6a{letter-spacing:-0.030733pt;}
.lsae{letter-spacing:-0.026872pt;}
.ls9f{letter-spacing:-0.021498pt;}
.lsc0{letter-spacing:-0.016123pt;}
.ls8a{letter-spacing:-0.014510pt;}
.ls53{letter-spacing:-0.010749pt;}
.ls9b{letter-spacing:-0.005374pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.002561pt;}
.ls5{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.003488pt;}
.ls9{letter-spacing:0.005374pt;}
.ls65{letter-spacing:0.007683pt;}
.ls54{letter-spacing:0.010749pt;}
.lsd3{letter-spacing:0.012668pt;}
.ls1{letter-spacing:0.014588pt;}
.ls1d{letter-spacing:0.016123pt;}
.ls8{letter-spacing:0.017659pt;}
.ls5d{letter-spacing:0.021361pt;}
.ls7{letter-spacing:0.022357pt;}
.ls62{letter-spacing:0.030530pt;}
.ls6e{letter-spacing:0.035856pt;}
.lsaa{letter-spacing:0.037621pt;}
.ls0{letter-spacing:0.038388pt;}
.ls6c{letter-spacing:0.051222pt;}
.ls4c{letter-spacing:0.061467pt;}
.lsc8{letter-spacing:0.067564pt;}
.ls36{letter-spacing:0.077123pt;}
.ls14{letter-spacing:0.082664pt;}
.lsc4{letter-spacing:0.092900pt;}
.ls4d{letter-spacing:0.093250pt;}
.ls2{letter-spacing:0.097123pt;}
.lsa6{letter-spacing:0.105568pt;}
.ls1a{letter-spacing:0.111839pt;}
.lsd0{letter-spacing:0.114013pt;}
.ls45{letter-spacing:0.115749pt;}
.ls4a{letter-spacing:0.120591pt;}
.ls91{letter-spacing:0.140128pt;}
.lsc1{letter-spacing:0.143572pt;}
.ls55{letter-spacing:0.155630pt;}
.ls48{letter-spacing:0.156228pt;}
.ls3a{letter-spacing:0.160463pt;}
.lsbf{letter-spacing:0.168909pt;}
.ls49{letter-spacing:0.169034pt;}
.ls20{letter-spacing:0.193478pt;}
.lsb4{letter-spacing:0.209602pt;}
.ls66{letter-spacing:0.217695pt;}
.ls82{letter-spacing:0.226873pt;}
.ls59{letter-spacing:0.228452pt;}
.ls77{letter-spacing:0.250990pt;}
.ls86{letter-spacing:0.258280pt;}
.ls5b{letter-spacing:0.259384pt;}
.ls63{letter-spacing:0.265608pt;}
.ls57{letter-spacing:0.271590pt;}
.ls78{letter-spacing:0.284799pt;}
.ls8e{letter-spacing:0.293601pt;}
.ls46{letter-spacing:0.299054pt;}
.ls98{letter-spacing:0.300274pt;}
.ls4b{letter-spacing:0.312457pt;}
.ls74{letter-spacing:0.330983pt;}
.ls9c{letter-spacing:0.354710pt;}
.ls61{letter-spacing:0.363302pt;}
.ls47{letter-spacing:0.363679pt;}
.ls40{letter-spacing:0.370834pt;}
.ls58{letter-spacing:0.374661pt;}
.ls25{letter-spacing:0.376208pt;}
.ls2c{letter-spacing:0.381582pt;}
.ls4{letter-spacing:0.386957pt;}
.ls34{letter-spacing:0.392331pt;}
.ls32{letter-spacing:0.397706pt;}
.ls28{letter-spacing:0.403080pt;}
.ls24{letter-spacing:0.408454pt;}
.ls3d{letter-spacing:0.413829pt;}
.ls21{letter-spacing:0.419203pt;}
.lsbe{letter-spacing:0.422272pt;}
.ls33{letter-spacing:0.424578pt;}
.lsda{letter-spacing:0.426495pt;}
.ls2e{letter-spacing:0.429952pt;}
.lscc{letter-spacing:0.430717pt;}
.ls43{letter-spacing:0.431749pt;}
.lsb7{letter-spacing:0.432283pt;}
.ls7d{letter-spacing:0.433729pt;}
.ls89{letter-spacing:0.435304pt;}
.lsb0{letter-spacing:0.435326pt;}
.ls6d{letter-spacing:0.440513pt;}
.lsac{letter-spacing:0.440701pt;}
.lse{letter-spacing:0.442493pt;}
.ls3f{letter-spacing:0.446075pt;}
.ls23{letter-spacing:0.451450pt;}
.lscf{letter-spacing:0.456054pt;}
.ls22{letter-spacing:0.456824pt;}
.lsb1{letter-spacing:0.462198pt;}
.ls8d{letter-spacing:0.463756pt;}
.lsbb{letter-spacing:0.464499pt;}
.ls26{letter-spacing:0.467573pt;}
.ls18{letter-spacing:0.481393pt;}
.lsd6{letter-spacing:0.489836pt;}
.ls19{letter-spacing:0.491119pt;}
.ls15{letter-spacing:0.495981pt;}
.ls93{letter-spacing:0.500456pt;}
.lsb3{letter-spacing:0.502504pt;}
.ls42{letter-spacing:0.510949pt;}
.ls50{letter-spacing:0.519395pt;}
.lsd8{letter-spacing:0.527840pt;}
.lsd4{letter-spacing:0.532063pt;}
.ls60{letter-spacing:0.534268pt;}
.ls9d{letter-spacing:0.536285pt;}
.ls38{letter-spacing:0.540508pt;}
.lsa5{letter-spacing:0.544731pt;}
.lsdb{letter-spacing:0.553176pt;}
.lsc7{letter-spacing:0.561622pt;}
.lsc9{letter-spacing:0.565844pt;}
.ls5f{letter-spacing:0.566561pt;}
.lsde{letter-spacing:0.570067pt;}
.lsa7{letter-spacing:0.574290pt;}
.lsa2{letter-spacing:0.578513pt;}
.lscd{letter-spacing:0.582735pt;}
.lse0{letter-spacing:0.586958pt;}
.ls4f{letter-spacing:0.591181pt;}
.lse1{letter-spacing:0.595404pt;}
.lsbc{letter-spacing:0.608072pt;}
.lsd1{letter-spacing:0.616517pt;}
.ls4e{letter-spacing:0.667275pt;}
.ls7a{letter-spacing:0.699373pt;}
.ls79{letter-spacing:0.734002pt;}
.ls7f{letter-spacing:0.757357pt;}
.ls80{letter-spacing:0.765980pt;}
.lsb8{letter-spacing:0.827669pt;}
.lsbd{letter-spacing:0.928998pt;}
.lsdc{letter-spacing:0.975448pt;}
.ls51{letter-spacing:1.021898pt;}
.ls95{letter-spacing:1.074312pt;}
.lsc2{letter-spacing:1.224589pt;}
.ls27{letter-spacing:1.236112pt;}
.lsd5{letter-spacing:1.266816pt;}
.ls44{letter-spacing:1.297915pt;}
.lsba{letter-spacing:10.372592pt;}
.lsb9{letter-spacing:12.791072pt;}
.ls39{letter-spacing:50.777331pt;}
.ls3{letter-spacing:50.788080pt;}
.ws7{word-spacing:-42.922989pt;}
.ws6{word-spacing:-42.614499pt;}
.ws5f{word-spacing:-42.575938pt;}
.ws5a{word-spacing:-14.672112pt;}
.ws3{word-spacing:-13.892824pt;}
.ws149{word-spacing:-13.860578pt;}
.ws171{word-spacing:-13.849829pt;}
.ws4{word-spacing:-13.822957pt;}
.ws5b{word-spacing:-13.452123pt;}
.ws58{word-spacing:-13.436000pt;}
.ws123{word-spacing:-13.430626pt;}
.ws148{word-spacing:-12.635214pt;}
.ws16f{word-spacing:-12.608342pt;}
.ws18f{word-spacing:-12.146144pt;}
.ws8{word-spacing:-11.949333pt;}
.ws197{word-spacing:-11.823616pt;}
.ws0{word-spacing:-11.718770pt;}
.ws195{word-spacing:-11.578698pt;}
.wsbd{word-spacing:-11.288575pt;}
.wsbe{word-spacing:-11.280687pt;}
.wsbf{word-spacing:-11.109721pt;}
.ws198{word-spacing:-11.093085pt;}
.wsb9{word-spacing:-11.040592pt;}
.wsb5{word-spacing:-11.013128pt;}
.wsc1{word-spacing:-11.012027pt;}
.ws194{word-spacing:-10.987517pt;}
.wsb3{word-spacing:-10.897168pt;}
.ws124{word-spacing:-10.856288pt;}
.wsc0{word-spacing:-10.776949pt;}
.wsbb{word-spacing:-10.762899pt;}
.ws5c{word-spacing:-10.717263pt;}
.wsba{word-spacing:-10.692713pt;}
.ws14b{word-spacing:-10.662368pt;}
.ws2{word-spacing:-10.653923pt;}
.ws191{word-spacing:-10.649700pt;}
.ws59{word-spacing:-10.556800pt;}
.ws192{word-spacing:-10.421673pt;}
.wsb7{word-spacing:-10.292957pt;}
.wsb4{word-spacing:-10.103759pt;}
.ws193{word-spacing:-9.923392pt;}
.wsae{word-spacing:-9.492675pt;}
.wsc9{word-spacing:-9.184176pt;}
.wsc7{word-spacing:-9.171371pt;}
.wscb{word-spacing:-9.152066pt;}
.wsd4{word-spacing:-9.074935pt;}
.wsd5{word-spacing:-9.025239pt;}
.wsd6{word-spacing:-9.008208pt;}
.wsc3{word-spacing:-8.984409pt;}
.wsc2{word-spacing:-8.948553pt;}
.wsef{word-spacing:-8.841389pt;}
.wsc4{word-spacing:-8.810253pt;}
.wsda{word-spacing:-8.774662pt;}
.wscd{word-spacing:-8.689880pt;}
.wscc{word-spacing:-8.646341pt;}
.wscf{word-spacing:-8.643780pt;}
.wsf2{word-spacing:-8.641207pt;}
.wsea{word-spacing:-8.634534pt;}
.wsd1{word-spacing:-8.569638pt;}
.wsdf{word-spacing:-8.567807pt;}
.wsed{word-spacing:-8.481061pt;}
.wse6{word-spacing:-8.419116pt;}
.wseb{word-spacing:-7.867168pt;}
.wsee{word-spacing:-7.813786pt;}
.wsdb{word-spacing:-7.766368pt;}
.wsd8{word-spacing:-7.747059pt;}
.wse7{word-spacing:-7.690371pt;}
.wse4{word-spacing:-7.513347pt;}
.wse5{word-spacing:-7.255067pt;}
.wse0{word-spacing:-6.232345pt;}
.wsec{word-spacing:-5.862094pt;}
.wse1{word-spacing:-4.968270pt;}
.ws183{word-spacing:-4.460752pt;}
.ws1ca{word-spacing:-3.838452pt;}
.ws1ab{word-spacing:-3.649218pt;}
.ws13f{word-spacing:-3.611597pt;}
.ws1c6{word-spacing:-3.399290pt;}
.ws121{word-spacing:-3.239619pt;}
.ws29{word-spacing:-3.224640pt;}
.ws8a{word-spacing:-3.170896pt;}
.ws1c7{word-spacing:-2.398505pt;}
.ws19{word-spacing:-2.392380pt;}
.ws13e{word-spacing:-2.343238pt;}
.ws6c{word-spacing:-2.321741pt;}
.ws16b{word-spacing:-2.310992pt;}
.ws16d{word-spacing:-2.284120pt;}
.ws35{word-spacing:-2.257248pt;}
.ws1b4{word-spacing:-2.187369pt;}
.ws1c5{word-spacing:-2.178924pt;}
.ws186{word-spacing:-2.139011pt;}
.wsad{word-spacing:-2.113715pt;}
.ws1b3{word-spacing:-2.035351pt;}
.ws10b{word-spacing:-1.945533pt;}
.ws1ac{word-spacing:-1.940158pt;}
.ws24{word-spacing:-1.934784pt;}
.ws3d{word-spacing:-1.924035pt;}
.ws1a2{word-spacing:-1.918661pt;}
.ws176{word-spacing:-1.913286pt;}
.ws4e{word-spacing:-1.881040pt;}
.ws6f{word-spacing:-1.875666pt;}
.ws180{word-spacing:-1.139373pt;}
.ws1e{word-spacing:-1.123251pt;}
.ws9f{word-spacing:-1.085629pt;}
.ws106{word-spacing:-1.064131pt;}
.ws10d{word-spacing:-1.058757pt;}
.ws14e{word-spacing:-1.053382pt;}
.ws152{word-spacing:-1.048008pt;}
.ws66{word-spacing:-1.042634pt;}
.ws96{word-spacing:-1.037259pt;}
.ws62{word-spacing:-1.031885pt;}
.ws154{word-spacing:-1.021136pt;}
.wsfa{word-spacing:-1.005013pt;}
.ws133{word-spacing:-0.999638pt;}
.ws1bc{word-spacing:-0.954335pt;}
.ws1b5{word-spacing:-0.945889pt;}
.ws1d0{word-spacing:-0.933221pt;}
.wsf6{word-spacing:-0.928998pt;}
.ws143{word-spacing:-0.916330pt;}
.ws14c{word-spacing:-0.912108pt;}
.ws1b0{word-spacing:-0.903662pt;}
.ws1b2{word-spacing:-0.899439pt;}
.ws1c4{word-spacing:-0.890994pt;}
.ws146{word-spacing:-0.882548pt;}
.ws60{word-spacing:-0.878326pt;}
.ws137{word-spacing:-0.874103pt;}
.wsf7{word-spacing:-0.857212pt;}
.wsf5{word-spacing:-0.831876pt;}
.wsd3{word-spacing:-0.710716pt;}
.ws187{word-spacing:-0.655677pt;}
.ws2c{word-spacing:-0.644928pt;}
.ws13c{word-spacing:-0.623430pt;}
.ws16e{word-spacing:-0.596558pt;}
.wsb{word-spacing:-0.582738pt;}
.ws11e{word-spacing:-0.537156pt;}
.ws11f{word-spacing:-0.506213pt;}
.ws7e{word-spacing:-0.498281pt;}
.ws1a3{word-spacing:-0.481390pt;}
.ws112{word-spacing:-0.371615pt;}
.ws119{word-spacing:-0.286845pt;}
.wse{word-spacing:-0.198853pt;}
.ws144{word-spacing:-0.109791pt;}
.wsc6{word-spacing:-0.099884pt;}
.wsa{word-spacing:-0.038388pt;}
.wsf{word-spacing:-0.021498pt;}
.wsd{word-spacing:0.000000pt;}
.ws1a7{word-spacing:0.112862pt;}
.ws36{word-spacing:0.123611pt;}
.ws17e{word-spacing:0.134360pt;}
.ws2f{word-spacing:0.139734pt;}
.ws9{word-spacing:0.140757pt;}
.ws162{word-spacing:0.150483pt;}
.ws48{word-spacing:0.161232pt;}
.ws15c{word-spacing:0.166606pt;}
.ws136{word-spacing:0.171981pt;}
.ws71{word-spacing:0.177355pt;}
.ws43{word-spacing:0.182730pt;}
.ws3b{word-spacing:0.188104pt;}
.ws19f{word-spacing:0.193478pt;}
.ws17b{word-spacing:0.198853pt;}
.ws95{word-spacing:0.204227pt;}
.ws120{word-spacing:0.208946pt;}
.ws44{word-spacing:0.209602pt;}
.ws184{word-spacing:0.236472pt;}
.ws1ce{word-spacing:0.342040pt;}
.ws1c9{word-spacing:0.375822pt;}
.ws1b9{word-spacing:0.392713pt;}
.ws185{word-spacing:0.426495pt;}
.ws1f{word-spacing:0.471668pt;}
.ws1b8{word-spacing:0.472945pt;}
.ws15f{word-spacing:0.553563pt;}
.ws25{word-spacing:0.591184pt;}
.ws157{word-spacing:0.601933pt;}
.ws178{word-spacing:0.618056pt;}
.ws140{word-spacing:0.623430pt;}
.ws18c{word-spacing:0.634179pt;}
.ws67{word-spacing:0.644928pt;}
.ws115{word-spacing:0.719675pt;}
.wsd9{word-spacing:0.737339pt;}
.wsb8{word-spacing:0.741532pt;}
.wse8{word-spacing:0.815469pt;}
.ws1af{word-spacing:0.861435pt;}
.wsc{word-spacing:0.945894pt;}
.ws145{word-spacing:0.979671pt;}
.ws114{word-spacing:0.988592pt;}
.ws113{word-spacing:0.993715pt;}
.ws116{word-spacing:0.998837pt;}
.ws69{word-spacing:1.031885pt;}
.ws111{word-spacing:1.084385pt;}
.ws11b{word-spacing:1.172993pt;}
.wsdc{word-spacing:1.228898pt;}
.ws49{word-spacing:1.386595pt;}
.ws3e{word-spacing:1.391970pt;}
.ws4d{word-spacing:1.397344pt;}
.ws17f{word-spacing:1.445714pt;}
.ws110{word-spacing:1.456462pt;}
.ws126{word-spacing:1.467211pt;}
.ws103{word-spacing:1.472586pt;}
.ws38{word-spacing:1.477960pt;}
.ws12f{word-spacing:1.483334pt;}
.ws168{word-spacing:1.488709pt;}
.ws32{word-spacing:1.494083pt;}
.ws14d{word-spacing:1.642638pt;}
.ws118{word-spacing:1.644239pt;}
.ws1c3{word-spacing:1.705979pt;}
.ws22{word-spacing:1.867223pt;}
.ws41{word-spacing:1.881040pt;}
.ws11c{word-spacing:1.887545pt;}
.ws101{word-spacing:1.891789pt;}
.ws47{word-spacing:1.902538pt;}
.wsf4{word-spacing:1.971797pt;}
.ws147{word-spacing:1.988528pt;}
.ws1cf{word-spacing:1.993124pt;}
.ws1bb{word-spacing:2.081801pt;}
.ws5{word-spacing:2.300243pt;}
.ws128{word-spacing:2.321741pt;}
.wsdd{word-spacing:2.328789pt;}
.ws55{word-spacing:2.437333pt;}
.ws56{word-spacing:2.442667pt;}
.ws11a{word-spacing:2.450992pt;}
.ws117{word-spacing:2.586731pt;}
.ws76{word-spacing:2.676451pt;}
.ws153{word-spacing:2.687200pt;}
.ws151{word-spacing:2.692574pt;}
.ws6e{word-spacing:2.757067pt;}
.ws9c{word-spacing:2.762442pt;}
.ws1c0{word-spacing:2.770104pt;}
.ws50{word-spacing:2.773190pt;}
.ws65{word-spacing:2.783939pt;}
.ws1c1{word-spacing:2.930568pt;}
.ws15{word-spacing:3.092588pt;}
.ws174{word-spacing:3.149398pt;}
.ws4f{word-spacing:3.170896pt;}
.ws5d{word-spacing:3.181645pt;}
.ws1a0{word-spacing:3.187019pt;}
.wsb0{word-spacing:3.348251pt;}
.wsbc{word-spacing:3.442175pt;}
.ws190{word-spacing:3.482611pt;}
.ws7b{word-spacing:3.960933pt;}
.ws75{word-spacing:3.966307pt;}
.wsd7{word-spacing:3.966948pt;}
.ws12c{word-spacing:3.977056pt;}
.ws1a6{word-spacing:3.987805pt;}
.ws7c{word-spacing:4.003928pt;}
.ws89{word-spacing:4.020051pt;}
.wsa5{word-spacing:4.036174pt;}
.wsb2{word-spacing:4.079170pt;}
.ws27{word-spacing:4.213530pt;}
.ws1c2{word-spacing:4.235388pt;}
.ws9b{word-spacing:4.407008pt;}
.wsf8{word-spacing:4.412382pt;}
.wsfc{word-spacing:4.417757pt;}
.ws46{word-spacing:4.450003pt;}
.ws142{word-spacing:4.460752pt;}
.ws97{word-spacing:4.503747pt;}
.wsf3{word-spacing:4.637559pt;}
.ws26{word-spacing:5.234666pt;}
.ws10f{word-spacing:5.266912pt;}
.wsa4{word-spacing:5.288410pt;}
.ws9d{word-spacing:5.309907pt;}
.ws1ba{word-spacing:5.472645pt;}
.ws1b{word-spacing:5.660020pt;}
.ws16{word-spacing:5.674608pt;}
.ws53{word-spacing:5.696864pt;}
.ws1a4{word-spacing:5.729110pt;}
.ws7a{word-spacing:6.492275pt;}
.ws45{word-spacing:6.513773pt;}
.ws15e{word-spacing:6.578266pt;}
.wsa7{word-spacing:6.583640pt;}
.ws99{word-spacing:6.599763pt;}
.ws17d{word-spacing:6.605138pt;}
.ws1ae{word-spacing:6.743684pt;}
.ws11d{word-spacing:6.803898pt;}
.ws51{word-spacing:6.986720pt;}
.wsfe{word-spacing:6.997469pt;}
.ws10{word-spacing:7.089612pt;}
.ws1ad{word-spacing:7.393983pt;}
.ws156{word-spacing:7.427421pt;}
.ws1cd{word-spacing:7.478437pt;}
.ws199{word-spacing:7.771382pt;}
.ws127{word-spacing:7.862747pt;}
.ws150{word-spacing:7.873496pt;}
.ws2e{word-spacing:7.889619pt;}
.ws108{word-spacing:7.894994pt;}
.ws1d{word-spacing:8.271215pt;}
.ws2d{word-spacing:8.276576pt;}
.ws1be{word-spacing:8.859267pt;}
.ws18a{word-spacing:9.066613pt;}
.ws125{word-spacing:9.179475pt;}
.ws1cc{word-spacing:9.311098pt;}
.ws13{word-spacing:9.452817pt;}
.ws5e{word-spacing:9.544934pt;}
.ws13a{word-spacing:9.561058pt;}
.ws33{word-spacing:9.566432pt;}
.ws12b{word-spacing:9.577181pt;}
.ws130{word-spacing:9.668546pt;}
.ws17a{word-spacing:10.066251pt;}
.ws10c{word-spacing:10.109246pt;}
.ws1bf{word-spacing:10.218982pt;}
.ws122{word-spacing:10.264282pt;}
.ws1bd{word-spacing:10.294991pt;}
.ws2b{word-spacing:10.383341pt;}
.ws84{word-spacing:10.410213pt;}
.ws3a{word-spacing:10.415587pt;}
.ws135{word-spacing:10.426336pt;}
.ws1b1{word-spacing:10.527241pt;}
.ws1a{word-spacing:10.765708pt;}
.wsa0{word-spacing:10.802544pt;}
.ws12{word-spacing:10.804608pt;}
.ws175{word-spacing:10.845539pt;}
.ws107{word-spacing:10.856288pt;}
.ws14a{word-spacing:11.194875pt;}
.ws163{word-spacing:11.264742pt;}
.ws1cb{word-spacing:11.350671pt;}
.ws9e{word-spacing:11.683946pt;}
.ws23{word-spacing:11.705443pt;}
.ws19e{word-spacing:11.710818pt;}
.ws1aa{word-spacing:11.716192pt;}
.ws19d{word-spacing:11.796808pt;}
.ws1c8{word-spacing:11.844730pt;}
.ws18e{word-spacing:12.011825pt;}
.ws2a{word-spacing:12.092400pt;}
.ws141{word-spacing:12.103149pt;}
.ws12e{word-spacing:12.629840pt;}
.ws57{word-spacing:12.764200pt;}
.ws160{word-spacing:12.871688pt;}
.ws64{word-spacing:12.877062pt;}
.ws139{word-spacing:12.893186pt;}
.wsa6{word-spacing:12.898560pt;}
.ws1a5{word-spacing:12.936181pt;}
.wsac{word-spacing:12.968427pt;}
.ws63{word-spacing:12.989925pt;}
.ws100{word-spacing:12.995299pt;}
.ws8e{word-spacing:13.006048pt;}
.ws14{word-spacing:13.318552pt;}
.wsff{word-spacing:13.376882pt;}
.ws68{word-spacing:13.382256pt;}
.ws161{word-spacing:13.387630pt;}
.ws85{word-spacing:13.398379pt;}
.ws167{word-spacing:14.193790pt;}
.ws98{word-spacing:14.274406pt;}
.ws3c{word-spacing:14.285155pt;}
.ws18{word-spacing:14.602268pt;}
.ws19a{word-spacing:14.666738pt;}
.ws8c{word-spacing:14.672112pt;}
.ws170{word-spacing:14.705138pt;}
.wse3{word-spacing:14.768414pt;}
.wsaf{word-spacing:15.424446pt;}
.ws82{word-spacing:15.467523pt;}
.ws134{word-spacing:15.548139pt;}
.ws155{word-spacing:15.553514pt;}
.ws78{word-spacing:15.564262pt;}
.ws18b{word-spacing:15.569637pt;}
.wsa9{word-spacing:15.575011pt;}
.ws172{word-spacing:15.644878pt;}
.ws18d{word-spacing:15.746992pt;}
.ws73{word-spacing:15.961968pt;}
.ws102{word-spacing:16.058707pt;}
.ws91{word-spacing:16.784251pt;}
.ws79{word-spacing:16.800374pt;}
.ws7d{word-spacing:16.805749pt;}
.ws109{word-spacing:16.811123pt;}
.ws14f{word-spacing:16.816498pt;}
.ws1b6{word-spacing:17.038675pt;}
.ws12a{word-spacing:17.198080pt;}
.ws9a{word-spacing:17.203454pt;}
.ws131{word-spacing:17.251824pt;}
.ws129{word-spacing:17.638781pt;}
.ws1a8{word-spacing:18.004240pt;}
.ws13d{word-spacing:18.090230pt;}
.ws54{word-spacing:18.095605pt;}
.ws31{word-spacing:18.100979pt;}
.ws42{word-spacing:18.106354pt;}
.ws8b{word-spacing:18.477187pt;}
.ws93{word-spacing:18.487936pt;}
.wsa3{word-spacing:18.493310pt;}
.ws164{word-spacing:19.288722pt;}
.ws28{word-spacing:19.358589pt;}
.ws189{word-spacing:19.369338pt;}
.ws70{word-spacing:19.390835pt;}
.ws8f{word-spacing:19.777792pt;}
.ws1b7{word-spacing:20.285947pt;}
.ws1c{word-spacing:20.573491pt;}
.ws10a{word-spacing:20.653819pt;}
.ws4c{word-spacing:20.680691pt;}
.ws4b{word-spacing:21.067648pt;}
.ws11{word-spacing:21.925283pt;}
.ws138{word-spacing:21.943675pt;}
.wsa1{word-spacing:21.949050pt;}
.ws30{word-spacing:21.970547pt;}
.ws6b{word-spacing:22.357504pt;}
.wsa2{word-spacing:23.163664pt;}
.ws88{word-spacing:23.206659pt;}
.ws159{word-spacing:23.593616pt;}
.ws165{word-spacing:23.604365pt;}
.ws61{word-spacing:23.636611pt;}
.ws39{word-spacing:24.496515pt;}
.ws1a1{word-spacing:24.507264pt;}
.ws1a9{word-spacing:24.518013pt;}
.wsf9{word-spacing:24.883472pt;}
.ws15d{word-spacing:24.894221pt;}
.ws179{word-spacing:24.937216pt;}
.ws74{word-spacing:25.695006pt;}
.ws19c{word-spacing:25.721878pt;}
.ws87{word-spacing:25.786371pt;}
.ws83{word-spacing:25.802494pt;}
.ws181{word-spacing:25.840115pt;}
.ws182{word-spacing:26.065840pt;}
.ws92{word-spacing:26.167954pt;}
.ws16c{word-spacing:26.173328pt;}
.ws173{word-spacing:26.178702pt;}
.ws81{word-spacing:27.038606pt;}
.ws132{word-spacing:27.054730pt;}
.wsfb{word-spacing:27.076227pt;}
.ws17{word-spacing:27.429701pt;}
.ws77{word-spacing:27.463184pt;}
.wsfd{word-spacing:28.366083pt;}
.ws17c{word-spacing:28.753040pt;}
.ws21{word-spacing:29.506014pt;}
.ws8d{word-spacing:29.655939pt;}
.ws158{word-spacing:30.042896pt;}
.ws1{word-spacing:30.784563pt;}
.ws12d{word-spacing:30.849056pt;}
.ws7f{word-spacing:30.865179pt;}
.ws20{word-spacing:31.266261pt;}
.ws15b{word-spacing:31.332752pt;}
.ws104{word-spacing:31.348875pt;}
.ws13b{word-spacing:31.354250pt;}
.ws94{word-spacing:32.181907pt;}
.ws166{word-spacing:33.444891pt;}
.ws169{word-spacing:33.471763pt;}
.ws19b{word-spacing:33.858720pt;}
.ws37{word-spacing:33.912464pt;}
.ws80{word-spacing:35.148576pt;}
.ws196{word-spacing:35.508852pt;}
.ws52{word-spacing:36.013854pt;}
.ws15a{word-spacing:36.024603pt;}
.ws40{word-spacing:36.427683pt;}
.ws6a{word-spacing:37.287587pt;}
.ws16a{word-spacing:37.685293pt;}
.wsaa{word-spacing:38.959026pt;}
.ws188{word-spacing:38.964400pt;}
.wsab{word-spacing:39.775934pt;}
.ws105{word-spacing:39.867299pt;}
.ws177{word-spacing:41.544112pt;}
.wsb1{word-spacing:42.199789pt;}
.ws6d{word-spacing:42.833968pt;}
.ws34{word-spacing:43.661626pt;}
.ws90{word-spacing:44.070080pt;}
.ws72{word-spacing:44.972979pt;}
.ws10e{word-spacing:46.160722pt;}
.ws4a{word-spacing:47.934274pt;}
.ws3f{word-spacing:48.842547pt;}
.wse2{word-spacing:49.009426pt;}
.ws86{word-spacing:50.465616pt;}
.wsce{word-spacing:54.454651pt;}
.wsf1{word-spacing:62.300184pt;}
.wsa8{word-spacing:64.159587pt;}
.wsf0{word-spacing:65.646654pt;}
.wsca{word-spacing:97.126104pt;}
.wsd0{word-spacing:97.868834pt;}
.wsd2{word-spacing:100.633757pt;}
.wsb6{word-spacing:105.542582pt;}
.wsc8{word-spacing:117.626107pt;}
.wsde{word-spacing:183.308124pt;}
.wsc5{word-spacing:186.554521pt;}
.wse9{word-spacing:1257.303053pt;}
._1c{margin-left:-16.001557pt;}
._2c{margin-left:-11.734144pt;}
._26{margin-left:-8.818066pt;}
._e{margin-left:-3.862583pt;}
._5{margin-left:-2.830019pt;}
._0{margin-left:-1.548329pt;}
._1{width:1.023689pt;}
._3{width:2.031518pt;}
._b{width:2.937799pt;}
._24{width:4.086648pt;}
._1b{width:5.358277pt;}
._8{width:8.329332pt;}
._2b{width:9.440746pt;}
._a{width:10.526126pt;}
._23{width:11.650902pt;}
._c{width:12.803114pt;}
._4{width:14.032564pt;}
._27{width:14.941057pt;}
._2{width:15.847536pt;}
._6{width:16.808800pt;}
._14{width:17.745311pt;}
._11{width:19.027134pt;}
._9{width:20.775892pt;}
._f{width:21.960623pt;}
._10{width:23.238858pt;}
._1e{width:24.478611pt;}
._7{width:25.790893pt;}
._16{width:27.057837pt;}
._13{width:29.285082pt;}
._18{width:31.570679pt;}
._15{width:32.681116pt;}
._17{width:35.249861pt;}
._29{width:36.747595pt;}
._1a{width:39.320199pt;}
._19{width:42.426517pt;}
._1d{width:44.871447pt;}
._2d{width:46.910196pt;}
._28{width:48.568638pt;}
._12{width:52.645538pt;}
._2a{width:56.096940pt;}
._1f{width:59.016824pt;}
._d{width:61.439866pt;}
._21{width:78.400997pt;}
._20{width:83.060334pt;}
._22{width:124.665013pt;}
._25{width:363.805073pt;}
.fsa{font-size:25.611200pt;}
.fsb{font-size:25.657600pt;}
.fsf{font-size:28.959467pt;}
.fse{font-size:29.020267pt;}
.fs8{font-size:30.460267pt;}
.fs7{font-size:30.515733pt;}
.fs9{font-size:30.529600pt;}
.fsd{font-size:33.303467pt;}
.fsc{font-size:33.363733pt;}
.fs4{font-size:42.227200pt;}
.fs5{font-size:42.845867pt;}
.fs6{font-size:47.797333pt;}
.fs3{font-size:48.625600pt;}
.fs2{font-size:53.744000pt;}
.fs1{font-size:58.862400pt;}
.fs0{font-size:127.961067pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:5.925333pt;}
.y167{bottom:8.765200pt;}
.y12b{bottom:9.228533pt;}
.y121{bottom:15.206667pt;}
.y166{bottom:17.451733pt;}
.y175{bottom:30.283600pt;}
.y238{bottom:34.282400pt;}
.yd9{bottom:35.615600pt;}
.y2f2{bottom:38.282400pt;}
.y1c8{bottom:39.614267pt;}
.y28f{bottom:43.612933pt;}
.y120{bottom:44.259721pt;}
.y11e{bottom:44.673055pt;}
.y5a{bottom:44.946267pt;}
.y13c{bottom:45.006000pt;}
.y124{bottom:47.870800pt;}
.y11f{bottom:53.544133pt;}
.y11d{bottom:53.957467pt;}
.y163{bottom:63.926533pt;}
.y134{bottom:75.466000pt;}
.y125{bottom:78.096000pt;}
.y126{bottom:81.676400pt;}
.y119{bottom:84.730521pt;}
.y11b{bottom:85.244300pt;}
.y11c{bottom:85.438533pt;}
.y118{bottom:94.014933pt;}
.y123{bottom:94.262667pt;}
.y11a{bottom:94.527067pt;}
.y116{bottom:97.914878pt;}
.y1a5{bottom:101.755733pt;}
.y1fb{bottom:104.315609pt;}
.y59{bottom:104.915793pt;}
.y9c{bottom:105.915453pt;}
.y237{bottom:108.791095pt;}
.yd8{bottom:108.794976pt;}
.y28e{bottom:115.507064pt;}
.y159{bottom:116.640000pt;}
.y12e{bottom:116.962133pt;}
.y30{bottom:118.687693pt;}
.y1fa{bottom:119.670269pt;}
.y58{bottom:120.273141pt;}
.y9b{bottom:121.271457pt;}
.y174{bottom:123.233067pt;}
.y173{bottom:123.639867pt;}
.y236{bottom:124.145756pt;}
.yd7{bottom:124.149637pt;}
.y15e{bottom:124.202375pt;}
.y161{bottom:124.724740pt;}
.y160{bottom:125.138279pt;}
.y266{bottom:126.709200pt;}
.y28d{bottom:130.864412pt;}
.y15d{bottom:132.901200pt;}
.y15f{bottom:133.837104pt;}
.y2f{bottom:134.045041pt;}
.y1f9{bottom:135.020899pt;}
.y57{bottom:136.584445pt;}
.y9a{bottom:136.620743pt;}
.y235{bottom:139.496386pt;}
.yd6{bottom:139.500267pt;}
.y2b5{bottom:141.399473pt;}
.y169{bottom:142.071617pt;}
.y15c{bottom:142.419835pt;}
.y165{bottom:143.278284pt;}
.y28c{bottom:146.208324pt;}
.y2e{bottom:149.402389pt;}
.y1f8{bottom:150.375560pt;}
.y1c7{bottom:151.655628pt;}
.y56{bottom:151.941793pt;}
.y99{bottom:151.976748pt;}
.y168{bottom:152.222533pt;}
.y15b{bottom:152.569067pt;}
.y164{bottom:153.429200pt;}
.y234{bottom:154.891355pt;}
.yd5{bottom:154.895236pt;}
.y2b4{bottom:156.797129pt;}
.y28b{bottom:161.605980pt;}
.y1c6{bottom:163.848732pt;}
.y2d{bottom:164.800045pt;}
.y1f7{bottom:165.771873pt;}
.y55{bottom:167.339449pt;}
.y98{bottom:167.371717pt;}
.y233{bottom:170.247359pt;}
.yd4{bottom:170.251240pt;}
.y2b3{bottom:172.154477pt;}
.y2f1{bottom:176.645771pt;}
.y2c{bottom:180.157393pt;}
.y162{bottom:180.566533pt;}
.y28a{bottom:180.752280pt;}
.y1f6{bottom:181.126533pt;}
.y54{bottom:182.696797pt;}
.y97{bottom:182.726377pt;}
.y232{bottom:185.602020pt;}
.yd3{bottom:185.605901pt;}
.y2b2{bottom:187.511825pt;}
.y2f0{bottom:189.123908pt;}
.y2b{bottom:195.514741pt;}
.y1f5{bottom:196.484799pt;}
.y53{bottom:198.054145pt;}
.y96{bottom:198.081038pt;}
.y231{bottom:200.956681pt;}
.yd2{bottom:200.960562pt;}
.y16f{bottom:201.000835pt;}
.y172{bottom:201.109267pt;}
.y2ef{bottom:201.285342pt;}
.y2b1{bottom:202.869173pt;}
.y289{bottom:205.380468pt;}
.y2a{bottom:210.872089pt;}
.y16e{bottom:211.151751pt;}
.y171{bottom:211.260183pt;}
.y1f4{bottom:211.519683pt;}
.y52{bottom:213.411493pt;}
.y95{bottom:213.437043pt;}
.y2ee{bottom:213.437333pt;}
.y16b{bottom:214.273333pt;}
.y230{bottom:216.311342pt;}
.yd1{bottom:216.315223pt;}
.y2b0{bottom:218.226521pt;}
.y288{bottom:220.737816pt;}
.y16d{bottom:221.302667pt;}
.y170{bottom:221.411099pt;}
.y2ed{bottom:225.914356pt;}
.y29{bottom:226.229437pt;}
.y1f3{bottom:226.875687pt;}
.y94{bottom:228.793047pt;}
.y51{bottom:229.722797pt;}
.y22f{bottom:231.667346pt;}
.yd0{bottom:231.671227pt;}
.y2af{bottom:233.583869pt;}
.y16c{bottom:235.993333pt;}
.y287{bottom:236.095164pt;}
.y2ec{bottom:238.065233pt;}
.y28{bottom:241.586785pt;}
.y1f2{bottom:242.230348pt;}
.y93{bottom:244.147708pt;}
.y50{bottom:244.757681pt;}
.y15a{bottom:245.388267pt;}
.y22e{bottom:247.022007pt;}
.ycf{bottom:247.025888pt;}
.y2ae{bottom:248.941217pt;}
.y2eb{bottom:250.226667pt;}
.y286{bottom:251.452512pt;}
.y27{bottom:256.944133pt;}
.y1f1{bottom:257.586352pt;}
.y92{bottom:259.183935pt;}
.y4f{bottom:260.115029pt;}
.y22d{bottom:262.058235pt;}
.yce{bottom:262.062115pt;}
.y14e{bottom:262.194902pt;}
.y148{bottom:262.675884pt;}
.y2ea{bottom:262.708427pt;}
.y156{bottom:264.254874pt;}
.y2ad{bottom:264.298565pt;}
.y155{bottom:264.399975pt;}
.y285{bottom:266.809860pt;}
.y26{bottom:272.309076pt;}
.y14d{bottom:272.344133pt;}
.y147{bottom:272.826800pt;}
.y1f0{bottom:272.967885pt;}
.y154{bottom:273.098800pt;}
.y91{bottom:274.565468pt;}
.y2e9{bottom:274.890974pt;}
.y4e{bottom:276.453205pt;}
.y22c{bottom:277.439767pt;}
.ycd{bottom:277.443648pt;}
.y2ac{bottom:279.682785pt;}
.y284{bottom:282.194080pt;}
.y2e8{bottom:287.040800pt;}
.y25{bottom:287.666424pt;}
.y1ef{bottom:288.323889pt;}
.y90{bottom:289.921473pt;}
.y4d{bottom:291.810553pt;}
.y22b{bottom:292.795772pt;}
.ycc{bottom:292.799653pt;}
.y150{bottom:294.319884pt;}
.y14a{bottom:294.911884pt;}
.y2ab{bottom:295.040133pt;}
.y146{bottom:295.770800pt;}
.y283{bottom:297.551428pt;}
.y2e7{bottom:299.519988pt;}
.y24{bottom:302.701308pt;}
.y1a4{bottom:303.029324pt;}
.y1ee{bottom:303.679894pt;}
.y14f{bottom:304.470800pt;}
.y149{bottom:305.062800pt;}
.y8f{bottom:305.276133pt;}
.y145{bottom:305.906933pt;}
.y4c{bottom:307.167901pt;}
.y22a{bottom:308.150433pt;}
.ycb{bottom:308.154313pt;}
.y16a{bottom:308.845467pt;}
.y2e6{bottom:311.681422pt;}
.y282{bottom:312.908776pt;}
.y2aa{bottom:315.466755pt;}
.y23{bottom:318.058656pt;}
.y1a3{bottom:318.064208pt;}
.y1ed{bottom:319.034555pt;}
.y4b{bottom:322.525249pt;}
.y229{bottom:323.506437pt;}
.yca{bottom:323.510318pt;}
.y2e5{bottom:323.832299pt;}
.y8e{bottom:326.062384pt;}
.y281{bottom:328.266124pt;}
.y14c{bottom:328.601376pt;}
.y144{bottom:329.208133pt;}
.y153{bottom:329.705351pt;}
.y152{bottom:330.400369pt;}
.y22{bottom:333.416004pt;}
.y1a2{bottom:333.421556pt;}
.y1ec{bottom:334.389215pt;}
.y2e4{bottom:336.310436pt;}
.y14b{bottom:338.758933pt;}
.y4a{bottom:338.836553pt;}
.y228{bottom:338.862441pt;}
.yc9{bottom:338.866322pt;}
.y143{bottom:339.361467pt;}
.y151{bottom:340.549600pt;}
.y265{bottom:340.712999pt;}
.y280{bottom:343.623472pt;}
.y2a9{bottom:346.812943pt;}
.y2e3{bottom:348.461313pt;}
.y21{bottom:348.773352pt;}
.y1a1{bottom:348.778904pt;}
.y1eb{bottom:349.743876pt;}
.y49{bottom:354.193901pt;}
.y227{bottom:354.218446pt;}
.yc8{bottom:354.220983pt;}
.y264{bottom:356.070347pt;}
.y8d{bottom:357.412603pt;}
.y27f{bottom:358.658356pt;}
.y2e2{bottom:360.622747pt;}
.y157{bottom:361.605600pt;}
.y158{bottom:362.028267pt;}
.y2a8{bottom:362.170291pt;}
.y1c5{bottom:363.498933pt;}
.y20{bottom:364.130700pt;}
.y1a0{bottom:364.136252pt;}
.y1ea{bottom:365.098537pt;}
.y48{bottom:369.551249pt;}
.y226{bottom:369.574450pt;}
.yc7{bottom:369.576987pt;}
.y263{bottom:371.427695pt;}
.y8c{bottom:372.768607pt;}
.y2e1{bottom:373.095600pt;}
.y27e{bottom:374.015704pt;}
.y2a7{bottom:377.527639pt;}
.y1f{bottom:379.488048pt;}
.y19f{bottom:379.493600pt;}
.y1e9{bottom:380.453198pt;}
.yfa{bottom:384.334305pt;}
.y47{bottom:384.948905pt;}
.y225{bottom:384.969419pt;}
.yc6{bottom:384.971956pt;}
.y2e0{bottom:385.293988pt;}
.y262{bottom:386.825351pt;}
.y8b{bottom:388.163576pt;}
.y27d{bottom:389.413360pt;}
.y2a6{bottom:392.925295pt;}
.y19e{bottom:394.853585pt;}
.y1e{bottom:394.885704pt;}
.y1e8{bottom:395.529733pt;}
.y2df{bottom:397.444865pt;}
.yf9{bottom:399.691653pt;}
.y46{bottom:400.306253pt;}
.y224{bottom:400.325423pt;}
.yc5{bottom:400.327961pt;}
.y261{bottom:402.182699pt;}
.y8a{bottom:403.199804pt;}
.y27c{bottom:404.770708pt;}
.y2a5{bottom:408.282643pt;}
.y2de{bottom:409.923003pt;}
.y19d{bottom:410.210933pt;}
.y1d{bottom:410.243052pt;}
.y1e7{bottom:410.883499pt;}
.yf8{bottom:415.049001pt;}
.y223{bottom:415.680084pt;}
.yc4{bottom:415.682621pt;}
.y45{bottom:416.295093pt;}
.y260{bottom:417.540047pt;}
.y89{bottom:418.555808pt;}
.y27b{bottom:420.128056pt;}
.y2dd{bottom:422.084436pt;}
.y2a4{bottom:423.639991pt;}
.y19c{bottom:425.568281pt;}
.y1c{bottom:425.600400pt;}
.y1e6{bottom:426.239504pt;}
.yf7{bottom:430.406349pt;}
.y222{bottom:430.716312pt;}
.yc3{bottom:430.718849pt;}
.y44{bottom:431.652441pt;}
.y25f{bottom:432.897395pt;}
.y88{bottom:433.911813pt;}
.y2dc{bottom:434.235313pt;}
.y27a{bottom:435.485404pt;}
.y2a3{bottom:438.674875pt;}
.y19b{bottom:440.925629pt;}
.y1e5{bottom:441.594165pt;}
.yf6{bottom:445.441233pt;}
.y221{bottom:446.072316pt;}
.y1b{bottom:446.073733pt;}
.yc2{bottom:446.074853pt;}
.y2db{bottom:446.713451pt;}
.y43{bottom:447.009789pt;}
.y25e{bottom:448.254743pt;}
.y87{bottom:449.267817pt;}
.y279{bottom:450.842752pt;}
.y2a2{bottom:454.032223pt;}
.y19a{bottom:456.282977pt;}
.y1e4{bottom:456.950169pt;}
.y2da{bottom:458.864327pt;}
.yf5{bottom:460.798581pt;}
.y220{bottom:461.428321pt;}
.yc1{bottom:461.430858pt;}
.y42{bottom:463.321093pt;}
.y25d{bottom:463.612091pt;}
.y86{bottom:464.623821pt;}
.y278{bottom:466.200100pt;}
.y2a1{bottom:469.389571pt;}
.y2d9{bottom:471.025761pt;}
.y199{bottom:471.640325pt;}
.y1e3{bottom:472.306173pt;}
.y115{bottom:473.905867pt;}
.yf4{bottom:476.155929pt;}
.y21f{bottom:476.784325pt;}
.yc0{bottom:476.786862pt;}
.y1a{bottom:476.817929pt;}
.y25c{bottom:478.646975pt;}
.y41{bottom:478.678441pt;}
.y85{bottom:479.979826pt;}
.y277{bottom:481.557448pt;}
.y2d8{bottom:483.503899pt;}
.y2a0{bottom:484.746919pt;}
.y198{bottom:486.675209pt;}
.y1e2{bottom:487.662178pt;}
.y19{bottom:490.250751pt;}
.yf3{bottom:491.513277pt;}
.y21e{bottom:492.140329pt;}
.ybf{bottom:492.142867pt;}
.y12a{bottom:492.568000pt;}
.y25b{bottom:494.004323pt;}
.y40{bottom:494.989745pt;}
.y84{bottom:495.335830pt;}
.y2d7{bottom:495.658933pt;}
.y276{bottom:496.941668pt;}
.y29f{bottom:500.131139pt;}
.y142{bottom:500.963200pt;}
.y140{bottom:501.066187pt;}
.y141{bottom:501.403200pt;}
.y13f{bottom:501.739200pt;}
.y197{bottom:502.059429pt;}
.y1e1{bottom:503.043711pt;}
.yf2{bottom:506.897497pt;}
.y21d{bottom:507.521862pt;}
.ybe{bottom:507.524399pt;}
.y2d6{bottom:507.837323pt;}
.y25a{bottom:509.388543pt;}
.y13e{bottom:509.530749pt;}
.y129{bottom:509.600533pt;}
.y3f{bottom:510.373965pt;}
.y83{bottom:510.718707pt;}
.y275{bottom:512.299016pt;}
.y29e{bottom:515.488487pt;}
.y18{bottom:516.824642pt;}
.y196{bottom:517.416777pt;}
.y1e0{bottom:518.398371pt;}
.y2d5{bottom:520.315460pt;}
.y21c{bottom:522.877867pt;}
.ybd{bottom:522.879060pt;}
.y259{bottom:524.745891pt;}
.y82{bottom:526.073367pt;}
.yf1{bottom:526.366261pt;}
.y3e{bottom:526.685269pt;}
.y274{bottom:527.333900pt;}
.y13d{bottom:529.770000pt;}
.y17{bottom:530.257464pt;}
.y29d{bottom:530.845835pt;}
.y2d4{bottom:532.476894pt;}
.y195{bottom:532.774125pt;}
.y138{bottom:533.635126pt;}
.y1df{bottom:533.753032pt;}
.y137{bottom:533.822000pt;}
.y139{bottom:533.983653pt;}
.y13a{bottom:534.343200pt;}
.ybc{bottom:538.233721pt;}
.y258{bottom:540.103239pt;}
.y81{bottom:541.429372pt;}
.y136{bottom:541.626000pt;}
.y3d{bottom:542.042617pt;}
.y273{bottom:542.691248pt;}
.y21b{bottom:543.351333pt;}
.y16{bottom:543.690286pt;}
.y2d3{bottom:544.627771pt;}
.y13b{bottom:545.362419pt;}
.y29c{bottom:546.203183pt;}
.y194{bottom:548.131473pt;}
.y1de{bottom:550.068367pt;}
.yf0{bottom:550.994449pt;}
.ybb{bottom:553.588382pt;}
.y257{bottom:555.460587pt;}
.y80{bottom:556.784033pt;}
.y15{bottom:556.807041pt;}
.y3c{bottom:557.399965pt;}
.y272{bottom:558.048596pt;}
.y1c4{bottom:559.649712pt;}
.y29b{bottom:561.560531pt;}
.y193{bottom:563.488821pt;}
.y2d2{bottom:565.419667pt;}
.y1dd{bottom:566.062581pt;}
.yef{bottom:566.351797pt;}
.y132{bottom:567.373792pt;}
.y133{bottom:568.036459pt;}
.yba{bottom:568.943043pt;}
.y14{bottom:570.239863pt;}
.y256{bottom:570.817935pt;}
.y7f{bottom:571.820260pt;}
.y271{bottom:573.405944pt;}
.y3b{bottom:573.711269pt;}
.y1c3{bottom:574.684596pt;}
.y21a{bottom:574.701996pt;}
.y131{bottom:575.166000pt;}
.y135{bottom:575.828667pt;}
.y29a{bottom:576.917879pt;}
.y192{bottom:578.846169pt;}
.yee{bottom:581.386681pt;}
.y1dc{bottom:581.417242pt;}
.y13{bottom:583.672685pt;}
.yb9{bottom:584.299047pt;}
.y255{bottom:586.175283pt;}
.y7e{bottom:587.176265pt;}
.y3a{bottom:588.746153pt;}
.y270{bottom:588.763292pt;}
.y1c2{bottom:590.041944pt;}
.y219{bottom:590.058000pt;}
.y299{bottom:592.275227pt;}
.y191{bottom:594.203517pt;}
.yed{bottom:596.744029pt;}
.y2d1{bottom:596.765855pt;}
.y12{bottom:596.789441pt;}
.y1db{bottom:597.733921pt;}
.yb8{bottom:599.653708pt;}
.y128{bottom:601.065926pt;}
.y254{bottom:601.532631pt;}
.y12d{bottom:601.728592pt;}
.y12f{bottom:601.740667pt;}
.y7d{bottom:602.532269pt;}
.y39{bottom:604.103501pt;}
.y26f{bottom:604.120640pt;}
.y1c1{bottom:605.399292pt;}
.y218{bottom:605.413684pt;}
.y298{bottom:607.632575pt;}
.y127{bottom:608.858133pt;}
.y12c{bottom:609.520800pt;}
.y130{bottom:609.532874pt;}
.y190{bottom:609.560865pt;}
.y11{bottom:610.222263pt;}
.yec{bottom:612.128249pt;}
.y2d0{bottom:612.150075pt;}
.y1da{bottom:613.115453pt;}
.yb7{bottom:614.716807pt;}
.y253{bottom:616.916851pt;}
.y7c{bottom:617.913802pt;}
.y26e{bottom:619.504860pt;}
.y38{bottom:620.441677pt;}
.y1c0{bottom:620.783512pt;}
.y217{bottom:620.796560pt;}
.y297{bottom:622.694331pt;}
.y10{bottom:623.679398pt;}
.y18f{bottom:624.945085pt;}
.yeb{bottom:627.485597pt;}
.y2cf{bottom:627.507423pt;}
.y1d9{bottom:628.471458pt;}
.yb6{bottom:630.071468pt;}
.y252{bottom:632.274199pt;}
.y7b{bottom:633.268463pt;}
.y26d{bottom:634.862208pt;}
.y37{bottom:635.799025pt;}
.y1bf{bottom:636.140860pt;}
.y216{bottom:636.152565pt;}
.yf{bottom:636.796153pt;}
.y114{bottom:638.046293pt;}
.y296{bottom:638.051679pt;}
.yea{bottom:642.842945pt;}
.y2ce{bottom:642.864771pt;}
.y1d8{bottom:643.827462pt;}
.y18e{bottom:644.118257pt;}
.yb5{bottom:645.427473pt;}
.y251{bottom:647.631547pt;}
.y7a{bottom:648.623123pt;}
.y26c{bottom:650.219556pt;}
.ye{bottom:650.228975pt;}
.y36{bottom:651.156373pt;}
.y1be{bottom:651.498208pt;}
.y215{bottom:651.508569pt;}
.y113{bottom:653.403641pt;}
.y295{bottom:653.409027pt;}
.ye9{bottom:658.200293pt;}
.y2cd{bottom:658.222119pt;}
.y1d7{bottom:659.183467pt;}
.yb4{bottom:660.782133pt;}
.y250{bottom:662.666431pt;}
.yd{bottom:663.661797pt;}
.y79{bottom:663.977784pt;}
.y26b{bottom:665.576904pt;}
.y1bd{bottom:666.855556pt;}
.y214{bottom:666.863230pt;}
.y35{bottom:667.467677pt;}
.y18d{bottom:668.746445pt;}
.y112{bottom:668.760989pt;}
.y294{bottom:668.766375pt;}
.ye8{bottom:673.557641pt;}
.y2cc{bottom:673.579467pt;}
.y1d6{bottom:674.533968pt;}
.yc{bottom:676.778553pt;}
.y24f{bottom:678.023779pt;}
.y78{bottom:679.332445pt;}
.y26a{bottom:680.934252pt;}
.yb3{bottom:681.574155pt;}
.y1bc{bottom:682.212904pt;}
.y213{bottom:682.217891pt;}
.y34{bottom:682.825025pt;}
.y18c{bottom:684.103793pt;}
.y111{bottom:684.118337pt;}
.y293{bottom:684.123723pt;}
.ye7{bottom:688.914989pt;}
.y1d5{bottom:689.889973pt;}
.yb{bottom:690.211375pt;}
.y24e{bottom:693.381127pt;}
.y77{bottom:694.687106pt;}
.y269{bottom:696.291600pt;}
.y2cb{bottom:696.884021pt;}
.y1bb{bottom:697.570252pt;}
.y212{bottom:697.572552pt;}
.y33{bottom:698.182373pt;}
.y18b{bottom:699.461141pt;}
.y110{bottom:699.475685pt;}
.y292{bottom:699.481071pt;}
.ya{bottom:703.644197pt;}
.ye6{bottom:704.272337pt;}
.y1d4{bottom:705.245977pt;}
.y24d{bottom:708.738475pt;}
.y76{bottom:710.041767pt;}
.yb2{bottom:712.924373pt;}
.y1ba{bottom:712.927600pt;}
.y211{bottom:712.928556pt;}
.y32{bottom:713.539721pt;}
.y18a{bottom:714.818489pt;}
.y10f{bottom:714.833033pt;}
.y291{bottom:714.838419pt;}
.y9{bottom:716.760952pt;}
.ye5{bottom:719.629685pt;}
.y1d3{bottom:720.601982pt;}
.y24c{bottom:724.095823pt;}
.y75{bottom:726.397409pt;}
.y2ca{bottom:728.270517pt;}
.yb1{bottom:728.319342pt;}
.y1b9{bottom:728.322267pt;}
.y210{bottom:728.323525pt;}
.y31{bottom:728.937377pt;}
.y189{bottom:730.216145pt;}
.y10e{bottom:730.230689pt;}
.y8{bottom:730.242400pt;}
.y290{bottom:734.051899pt;}
.y268{bottom:734.400933pt;}
.ye4{bottom:735.027341pt;}
.y1d2{bottom:735.677174pt;}
.y24b{bottom:739.493479pt;}
.y74{bottom:741.752070pt;}
.y2c9{bottom:743.305401pt;}
.y1b8{bottom:743.322739pt;}
.yb0{bottom:743.355570pt;}
.y20f{bottom:743.359752pt;}
.y188{bottom:745.573493pt;}
.y10d{bottom:745.588037pt;}
.ye3{bottom:750.062225pt;}
.y1d1{bottom:751.033178pt;}
.y24a{bottom:754.850827pt;}
.y73{bottom:756.788298pt;}
.y2c8{bottom:758.662749pt;}
.y1b7{bottom:758.680087pt;}
.yaf{bottom:758.710231pt;}
.y20e{bottom:758.714413pt;}
.y7{bottom:759.553284pt;}
.y187{bottom:760.930841pt;}
.y10c{bottom:760.945385pt;}
.ye2{bottom:765.419573pt;}
.y1d0{bottom:766.389182pt;}
.y249{bottom:770.208175pt;}
.y72{bottom:772.144302pt;}
.y2c7{bottom:774.020097pt;}
.y1b6{bottom:774.037435pt;}
.yae{bottom:774.066235pt;}
.y20d{bottom:774.069074pt;}
.y186{bottom:776.288189pt;}
.y10b{bottom:776.302733pt;}
.ye1{bottom:780.776921pt;}
.y6{bottom:781.413656pt;}
.y1cf{bottom:781.745187pt;}
.y248{bottom:785.565523pt;}
.y71{bottom:787.500307pt;}
.y2c6{bottom:789.377445pt;}
.y1b5{bottom:789.394783pt;}
.yad{bottom:789.422239pt;}
.y20c{bottom:789.423735pt;}
.y185{bottom:791.323073pt;}
.y10a{bottom:791.337617pt;}
.ye0{bottom:796.134269pt;}
.y1ce{bottom:797.101191pt;}
.y247{bottom:800.922871pt;}
.y70{bottom:802.856311pt;}
.y5{bottom:803.274028pt;}
.y2c5{bottom:804.734793pt;}
.y1b4{bottom:804.752131pt;}
.yac{bottom:804.778244pt;}
.y20b{bottom:804.779739pt;}
.y184{bottom:806.680421pt;}
.y109{bottom:810.846689pt;}
.ydf{bottom:811.491617pt;}
.y1cd{bottom:812.457196pt;}
.y246{bottom:816.280219pt;}
.y6f{bottom:818.212315pt;}
.y2c4{bottom:820.092141pt;}
.y1b3{bottom:820.109479pt;}
.yab{bottom:820.132905pt;}
.y20a{bottom:820.134400pt;}
.y183{bottom:822.037769pt;}
.y4{bottom:825.134400pt;}
.yde{bottom:826.848965pt;}
.y1cc{bottom:827.813200pt;}
.y245{bottom:831.315103pt;}
.y6e{bottom:833.566976pt;}
.y2c3{bottom:835.449489pt;}
.y1b2{bottom:835.466827pt;}
.y108{bottom:835.474877pt;}
.y209{bottom:835.486605pt;}
.yaa{bottom:835.488909pt;}
.y182{bottom:837.395117pt;}
.ydd{bottom:842.233185pt;}
.y244{bottom:846.699323pt;}
.y3{bottom:847.534533pt;}
.y6d{bottom:848.949853pt;}
.y1cb{bottom:850.552290pt;}
.y2c2{bottom:850.833709pt;}
.y1b1{bottom:850.851047pt;}
.y107{bottom:850.859097pt;}
.y208{bottom:850.868138pt;}
.ya9{bottom:850.870442pt;}
.y181{bottom:852.779337pt;}
.ydc{bottom:857.590533pt;}
.y243{bottom:862.056671pt;}
.y267{bottom:862.389200pt;}
.y1ca{bottom:863.029372pt;}
.y6c{bottom:865.263844pt;}
.y2c1{bottom:866.191057pt;}
.y1b0{bottom:866.208395pt;}
.y106{bottom:866.216445pt;}
.y207{bottom:866.224143pt;}
.ya8{bottom:866.225103pt;}
.y180{bottom:868.136685pt;}
.y242{bottom:877.414019pt;}
.ydb{bottom:878.064000pt;}
.y6b{bottom:880.619848pt;}
.y2c0{bottom:881.548405pt;}
.y1af{bottom:881.565743pt;}
.y105{bottom:881.573793pt;}
.y206{bottom:881.578803pt;}
.ya7{bottom:881.579763pt;}
.y2{bottom:883.027203pt;}
.y17f{bottom:883.494033pt;}
.y241{bottom:892.771367pt;}
.y6a{bottom:895.975853pt;}
.y2bf{bottom:896.905753pt;}
.y1ae{bottom:896.923091pt;}
.y104{bottom:896.931141pt;}
.y205{bottom:896.933464pt;}
.ya6{bottom:896.934424pt;}
.y17e{bottom:898.851381pt;}
.y240{bottom:908.128715pt;}
.yda{bottom:909.092913pt;}
.y69{bottom:911.331857pt;}
.y2be{bottom:912.263101pt;}
.y1ad{bottom:912.280439pt;}
.y204{bottom:912.288125pt;}
.y103{bottom:912.288489pt;}
.ya5{bottom:912.289085pt;}
.y17d{bottom:914.208729pt;}
.y1{bottom:919.848000pt;}
.y23f{bottom:923.486063pt;}
.y68{bottom:926.366741pt;}
.y117{bottom:926.756000pt;}
.y2bd{bottom:927.297985pt;}
.y1ac{bottom:927.315323pt;}
.y102{bottom:927.323373pt;}
.y203{bottom:927.324353pt;}
.ya4{bottom:927.325313pt;}
.y17c{bottom:929.566077pt;}
.y23e{bottom:938.843411pt;}
.y67{bottom:941.722745pt;}
.y2bc{bottom:942.655333pt;}
.y1ab{bottom:942.672671pt;}
.y202{bottom:942.679013pt;}
.ya3{bottom:942.679973pt;}
.y101{bottom:942.680721pt;}
.y17b{bottom:944.923425pt;}
.y23d{bottom:954.200759pt;}
.y66{bottom:957.117714pt;}
.y2bb{bottom:958.052989pt;}
.y1aa{bottom:958.070327pt;}
.y201{bottom:958.075326pt;}
.ya2{bottom:958.076286pt;}
.y100{bottom:958.078377pt;}
.y17a{bottom:960.321081pt;}
.y23c{bottom:969.598415pt;}
.y2ba{bottom:973.410337pt;}
.y1a9{bottom:973.427675pt;}
.y200{bottom:973.431330pt;}
.ya1{bottom:973.432290pt;}
.y65{bottom:973.433049pt;}
.yff{bottom:973.435725pt;}
.y179{bottom:975.355965pt;}
.y23b{bottom:984.955763pt;}
.y2b9{bottom:988.767685pt;}
.y1a8{bottom:988.785023pt;}
.y1ff{bottom:988.787335pt;}
.ya0{bottom:988.788295pt;}
.y64{bottom:988.789053pt;}
.yfe{bottom:988.793073pt;}
.y178{bottom:990.713313pt;}
.y5f{bottom:999.456133pt;}
.y23a{bottom:1000.313111pt;}
.y2b8{bottom:1004.125033pt;}
.y1a7{bottom:1004.142371pt;}
.y1fe{bottom:1004.143339pt;}
.y9f{bottom:1004.144299pt;}
.y63{bottom:1004.145058pt;}
.yfd{bottom:1004.150421pt;}
.y177{bottom:1006.070661pt;}
.y239{bottom:1015.347995pt;}
.y2b7{bottom:1019.482381pt;}
.y1fd{bottom:1019.499343pt;}
.y1a6{bottom:1019.499719pt;}
.y9e{bottom:1019.500303pt;}
.y62{bottom:1019.501062pt;}
.yfc{bottom:1019.507769pt;}
.y176{bottom:1025.579733pt;}
.y5e{bottom:1026.013467pt;}
.y2b6{bottom:1034.839729pt;}
.y1fc{bottom:1034.855348pt;}
.y9d{bottom:1034.856308pt;}
.y61{bottom:1034.857067pt;}
.yfb{bottom:1034.865117pt;}
.y5d{bottom:1039.292133pt;}
.y5c{bottom:1052.570800pt;}
.y5b{bottom:1065.849467pt;}
.y1c9{bottom:1081.056533pt;}
.y60{bottom:1094.385867pt;}
.h11{height:27.327150pt;}
.h16{height:27.376659pt;}
.h26{height:28.422133pt;}
.h20{height:28.481805pt;}
.h5{height:28.556937pt;}
.he{height:32.501105pt;}
.hd{height:32.560287pt;}
.h10{height:32.575083pt;}
.h1e{height:32.685531pt;}
.h1d{height:32.744680pt;}
.h6{height:33.187406pt;}
.h22{height:33.563650pt;}
.h28{height:33.578773pt;}
.h25{height:33.624387pt;}
.h27{height:35.053531pt;}
.h7{height:41.423069pt;}
.h9{height:41.443688pt;}
.h2f{height:41.447890pt;}
.h2d{height:41.460797pt;}
.h2e{height:41.464825pt;}
.h4{height:49.005487pt;}
.hb{height:52.720555pt;}
.h3{height:52.746797pt;}
.h8{height:52.775126pt;}
.h2b{height:52.833493pt;}
.h29{height:52.849659pt;}
.ha{height:52.881787pt;}
.h2c{height:52.933645pt;}
.h2a{height:52.940768pt;}
.h1a{height:55.855150pt;}
.h1c{height:56.735150pt;}
.h17{height:57.748484pt;}
.h2{height:57.770227pt;}
.h14{height:58.495981pt;}
.h13{height:58.533314pt;}
.h1b{height:59.940712pt;}
.h18{height:59.941314pt;}
.h19{height:60.020712pt;}
.h15{height:61.146647pt;}
.h24{height:61.651969pt;}
.h21{height:62.725719pt;}
.hf{height:70.337770pt;}
.h1f{height:70.568272pt;}
.hc{height:117.700000pt;}
.h1{height:128.960762pt;}
.h12{height:129.214667pt;}
.h23{height:251.025333pt;}
.h0{height:1122.666667pt;}
.w4{width:328.498667pt;}
.w2{width:328.924000pt;}
.w3{width:330.910667pt;}
.w6{width:417.565333pt;}
.w5{width:417.926667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1e{left:6.183333pt;}
.x20{left:21.113458pt;}
.x1f{left:23.766667pt;}
.x15{left:45.457774pt;}
.x70{left:56.015200pt;}
.x14{left:64.332667pt;}
.x9{left:68.165111pt;}
.x6c{left:75.210051pt;}
.x8{left:77.768667pt;}
.x6f{left:83.213560pt;}
.x50{left:84.923600pt;}
.xb{left:87.045733pt;}
.x22{left:92.358665pt;}
.x21{left:95.342933pt;}
.x26{left:98.710830pt;}
.x1b{left:103.041999pt;}
.x25{left:104.009600pt;}
.x6d{left:106.560580pt;}
.x1{left:125.466267pt;}
.x73{left:127.058141pt;}
.x27{left:145.856400pt;}
.x16{left:152.339810pt;}
.x68{left:165.137600pt;}
.xa{left:183.691067pt;}
.x24{left:185.247200pt;}
.x23{left:186.395200pt;}
.x7{left:196.838171pt;}
.x77{left:201.512400pt;}
.x4f{left:205.776000pt;}
.x3{left:207.071067pt;}
.xe{left:208.177733pt;}
.x55{left:214.082224pt;}
.x56{left:217.704033pt;}
.x4e{left:231.956400pt;}
.x40{left:239.305867pt;}
.x3f{left:241.281733pt;}
.x3e{left:244.179200pt;}
.x6{left:251.858591pt;}
.x1d{left:263.090539pt;}
.x52{left:264.097867pt;}
.x53{left:265.547217pt;}
.x2{left:267.567031pt;}
.x2a{left:271.795333pt;}
.x6b{left:278.927200pt;}
.x1a{left:281.008533pt;}
.x35{left:287.876000pt;}
.x67{left:289.873867pt;}
.x2e{left:291.297467pt;}
.x51{left:292.523867pt;}
.x28{left:294.722000pt;}
.x60{left:298.577867pt;}
.x62{left:301.114645pt;}
.x41{left:302.791200pt;}
.x61{left:304.010245pt;}
.x42{left:313.305480pt;}
.x5d{left:314.211200pt;}
.x29{left:318.847333pt;}
.x5e{left:320.745074pt;}
.x4{left:335.712667pt;}
.x5{left:348.530611pt;}
.x58{left:363.109067pt;}
.x66{left:369.004667pt;}
.x5b{left:376.913067pt;}
.x63{left:381.148343pt;}
.x4d{left:382.278133pt;}
.x65{left:384.769929pt;}
.x64{left:386.221901pt;}
.x17{left:393.321188pt;}
.x4a{left:398.924800pt;}
.x48{left:400.403450pt;}
.x47{left:401.852800pt;}
.x4b{left:404.716790pt;}
.x5c{left:408.462921pt;}
.x18{left:412.221609pt;}
.xd{left:416.056379pt;}
.x71{left:417.020800pt;}
.x32{left:419.042507pt;}
.x36{left:423.781703pt;}
.x31{left:426.709887pt;}
.x3b{left:429.482671pt;}
.x72{left:431.099713pt;}
.xc{left:434.933959pt;}
.x1c{left:436.855467pt;}
.x76{left:440.061305pt;}
.x69{left:450.291600pt;}
.x59{left:463.611600pt;}
.x5f{left:468.952933pt;}
.x5a{left:470.145474pt;}
.x49{left:473.669143pt;}
.x4c{left:478.495716pt;}
.x2b{left:491.176933pt;}
.x2c{left:492.884430pt;}
.x37{left:496.202267pt;}
.x33{left:505.008933pt;}
.x19{left:509.191909pt;}
.x6a{left:514.308035pt;}
.x54{left:525.238400pt;}
.x10{left:527.622533pt;}
.x74{left:529.976909pt;}
.x57{left:538.082400pt;}
.x75{left:545.339079pt;}
.x6e{left:549.821067pt;}
.x45{left:553.522400pt;}
.x3c{left:556.375733pt;}
.xf{left:560.108800pt;}
.x46{left:561.499901pt;}
.x38{left:562.418211pt;}
.x43{left:564.471733pt;}
.x44{left:570.635637pt;}
.x12{left:575.375867pt;}
.x13{left:577.809067pt;}
.x2f{left:581.489067pt;}
.x34{left:591.612249pt;}
.x11{left:607.375867pt;}
.x3d{left:611.315867pt;}
.x39{left:647.622817pt;}
.x30{left:668.952000pt;}
.x3a{left:704.546667pt;}
.x2d{left:715.384000pt;}
}




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