
    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_0eefe2f4e20f61b444693e43.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_d99d65fcd86812e7f7a90a85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_7de5c7b079fb8dfaa134ba51.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9abe5c63e808c6d480bfe727.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_887365538071462f00578fa3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f9de13bcecb7aa412e28511a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_c612921ee1391caf2d54b289.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_d7924f8b6070f62eec4a1baa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;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_2ffa2025ba7c4ea2dc229033.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_261d6a4f251467a6eb465cab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_506a17a796f7f63ad40e9f36.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2ffe2c79f27865475b4d2b61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9e3eec17899b553d96547b0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3bc9ab7968729fc731039e6d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.518000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a4d226663aa76e55501271a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c559c00e48ebfb7cb05e379b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.680000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_421e47c20436e9abe13c8da3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.236000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_27c8deb808ff5eb74a29e5fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.857000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_855f68a090f1dfc0e951df94.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5d047b044793b8293910bcfa.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_39c9eb968b6befb429b2eed6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_958aa91120e25121b5d073b3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_0162125690db1f8525da91e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1bbf99db105e9f0a322922a9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_32e3bd280e666e7f258581ff.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.vd{vertical-align:-14.946000px;}
.v8{vertical-align:-8.970000px;}
.v7{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.296000px;}
.v10{vertical-align:12.624000px;}
.va{vertical-align:15.774000px;}
.vf{vertical-align:16.872000px;}
.v6{vertical-align:17.934000px;}
.v1{vertical-align:21.690000px;}
.v11{vertical-align:22.854000px;}
.ve{vertical-align:25.494000px;}
.v5{vertical-align:30.054000px;}
.vc{vertical-align:31.476000px;}
.v9{vertical-align:40.440000px;}
.vb{vertical-align:42.474000px;}
.v4{vertical-align:44.832000px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000300px;}
.ls8a{letter-spacing:0.000499px;}
.ls6b{letter-spacing:0.000509px;}
.lsf{letter-spacing:0.000564px;}
.ls46{letter-spacing:0.000993px;}
.ls49{letter-spacing:0.001519px;}
.ls37{letter-spacing:0.001698px;}
.ls58{letter-spacing:0.002338px;}
.ls14{letter-spacing:0.002367px;}
.ls84{letter-spacing:0.002525px;}
.lsb{letter-spacing:0.002877px;}
.ls16{letter-spacing:0.002915px;}
.ls31{letter-spacing:0.003269px;}
.ls43{letter-spacing:0.003414px;}
.ls50{letter-spacing:0.003427px;}
.ls57{letter-spacing:0.004200px;}
.ls22{letter-spacing:0.004648px;}
.ls1c{letter-spacing:0.004896px;}
.ls19{letter-spacing:0.006993px;}
.ls41{letter-spacing:1.612648px;}
.ls7e{letter-spacing:1.795536px;}
.ls2b{letter-spacing:2.140172px;}
.ls2a{letter-spacing:2.146172px;}
.ls33{letter-spacing:2.265723px;}
.ls6d{letter-spacing:2.674328px;}
.ls10{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.985193px;}
.ls6{letter-spacing:2.988532px;}
.ls2{letter-spacing:2.989870px;}
.ls0{letter-spacing:2.990525px;}
.ls3{letter-spacing:2.992767px;}
.ls7{letter-spacing:3.156921px;}
.ls30{letter-spacing:3.441652px;}
.ls73{letter-spacing:3.443602px;}
.ls32{letter-spacing:4.396648px;}
.ls35{letter-spacing:4.402648px;}
.ls24{letter-spacing:4.491110px;}
.ls6c{letter-spacing:7.060631px;}
.ls2c{letter-spacing:7.848993px;}
.ls6e{letter-spacing:8.305923px;}
.ls51{letter-spacing:8.466141px;}
.ls4f{letter-spacing:8.472141px;}
.ls12{letter-spacing:9.956338px;}
.ls11{letter-spacing:9.962338px;}
.ls3f{letter-spacing:12.534538px;}
.ls3e{letter-spacing:12.542245px;}
.lsc{letter-spacing:12.944525px;}
.ls4d{letter-spacing:13.270183px;}
.ls1d{letter-spacing:13.278538px;}
.ls21{letter-spacing:13.284538px;}
.ls88{letter-spacing:14.996685px;}
.ls36{letter-spacing:15.257306px;}
.ls17{letter-spacing:15.328726px;}
.ls2f{letter-spacing:15.481923px;}
.ls23{letter-spacing:16.272775px;}
.ls78{letter-spacing:16.599223px;}
.ls1a{letter-spacing:16.600896px;}
.ls1b{letter-spacing:16.602538px;}
.ls4e{letter-spacing:16.603698px;}
.lse{letter-spacing:16.605223px;}
.ls1f{letter-spacing:16.606896px;}
.ls5a{letter-spacing:16.608538px;}
.ls2d{letter-spacing:16.609698px;}
.ls3d{letter-spacing:16.682245px;}
.ls3b{letter-spacing:16.685306px;}
.ls70{letter-spacing:17.425698px;}
.ls67{letter-spacing:17.655223px;}
.ls5f{letter-spacing:17.806896px;}
.ls79{letter-spacing:18.464525px;}
.ls81{letter-spacing:18.602525px;}
.ls87{letter-spacing:18.675723px;}
.ls6a{letter-spacing:19.141698px;}
.ls8{letter-spacing:19.226338px;}
.ls85{letter-spacing:19.226525px;}
.ls34{letter-spacing:19.243698px;}
.ls7a{letter-spacing:19.517602px;}
.ls40{letter-spacing:19.556685px;}
.ls61{letter-spacing:19.557223px;}
.ls5e{letter-spacing:19.572538px;}
.ls5d{letter-spacing:19.582896px;}
.ls1e{letter-spacing:19.590648px;}
.ls3c{letter-spacing:19.591140px;}
.ls82{letter-spacing:19.893223px;}
.ls80{letter-spacing:19.923223px;}
.ls29{letter-spacing:19.924896px;}
.ls4c{letter-spacing:19.927698px;}
.ls56{letter-spacing:20.250538px;}
.ls54{letter-spacing:20.253223px;}
.ls55{letter-spacing:20.260896px;}
.ls62{letter-spacing:21.218338px;}
.ls15{letter-spacing:21.612532px;}
.ls89{letter-spacing:22.191723px;}
.ls18{letter-spacing:22.210726px;}
.ls4a{letter-spacing:22.280338px;}
.ls4b{letter-spacing:22.286338px;}
.ls66{letter-spacing:22.335223px;}
.ls63{letter-spacing:22.419223px;}
.ls72{letter-spacing:22.441698px;}
.ls8c{letter-spacing:22.483698px;}
.ls77{letter-spacing:22.699698px;}
.ls45{letter-spacing:22.910525px;}
.ls44{letter-spacing:22.926532px;}
.ls48{letter-spacing:22.956653px;}
.ls74{letter-spacing:23.457223px;}
.ls68{letter-spacing:23.546525px;}
.ls20{letter-spacing:23.772538px;}
.ls28{letter-spacing:23.846525px;}
.ls8b{letter-spacing:23.856557px;}
.ls7d{letter-spacing:23.877723px;}
.ls75{letter-spacing:23.911698px;}
.ls76{letter-spacing:23.917698px;}
.ls42{letter-spacing:24.006532px;}
.ls7f{letter-spacing:24.307698px;}
.ls60{letter-spacing:24.687223px;}
.ls83{letter-spacing:24.890525px;}
.ls71{letter-spacing:25.729923px;}
.ls6f{letter-spacing:25.735923px;}
.ls86{letter-spacing:26.307223px;}
.ls3a{letter-spacing:26.396245px;}
.ls64{letter-spacing:26.402525px;}
.ls27{letter-spacing:26.582525px;}
.ls7b{letter-spacing:26.895223px;}
.ls7c{letter-spacing:26.899698px;}
.ls39{letter-spacing:27.384538px;}
.ls5b{letter-spacing:27.801223px;}
.ls5c{letter-spacing:27.808896px;}
.ls53{letter-spacing:27.981223px;}
.ls59{letter-spacing:28.035223px;}
.lsd{letter-spacing:28.190338px;}
.ls52{letter-spacing:28.641223px;}
.lsa{letter-spacing:29.036338px;}
.ls9{letter-spacing:29.042338px;}
.ls69{letter-spacing:29.215923px;}
.ls13{letter-spacing:30.062525px;}
.ls38{letter-spacing:30.373140px;}
.ls65{letter-spacing:34.597923px;}
.ls5{letter-spacing:35.798525px;}
.ls2e{letter-spacing:41.208538px;}
.ls25{letter-spacing:616.810648px;}
.ls47{letter-spacing:776.962648px;}
.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;}
}
.ws145{word-spacing:-47.654765px;}
.wscc{word-spacing:-38.937826px;}
.wse4{word-spacing:-36.071827px;}
.ws19c{word-spacing:-33.211407px;}
.ws93{word-spacing:-32.189916px;}
.ws12c{word-spacing:-29.875845px;}
.wscd{word-spacing:-28.955301px;}
.ws91{word-spacing:-24.747160px;}
.wsb4{word-spacing:-22.346009px;}
.ws154{word-spacing:-22.038887px;}
.ws153{word-spacing:-21.901780px;}
.wsb6{word-spacing:-20.786174px;}
.wsb{word-spacing:-16.605662px;}
.ws61{word-spacing:-15.278643px;}
.ws140{word-spacing:-14.111859px;}
.ws1f{word-spacing:-13.117191px;}
.ws74{word-spacing:-5.937891px;}
.wsce{word-spacing:-3.335478px;}
.wsb0{word-spacing:-3.326193px;}
.ws105{word-spacing:-3.320193px;}
.wsc3{word-spacing:-3.275703px;}
.ws1c1{word-spacing:-3.215927px;}
.ws1eb{word-spacing:-3.036600px;}
.ws7a{word-spacing:-2.976825px;}
.ws84{word-spacing:-2.797498px;}
.ws1f3{word-spacing:-2.737722px;}
.wsb9{word-spacing:-2.558396px;}
.ws1e9{word-spacing:-2.498620px;}
.ws1df{word-spacing:-2.379069px;}
.ws1c3{word-spacing:-2.259518px;}
.ws180{word-spacing:-2.226430px;}
.ws181{word-spacing:-2.199742px;}
.ws1d1{word-spacing:-2.080191px;}
.wsd4{word-spacing:-2.020415px;}
.ws86{word-spacing:-1.960640px;}
.wsc8{word-spacing:-1.900864px;}
.ws1b4{word-spacing:-1.781313px;}
.ws17f{word-spacing:-1.721537px;}
.ws1f5{word-spacing:-1.661762px;}
.ws1ab{word-spacing:-1.601986px;}
.ws72{word-spacing:-1.542210px;}
.ws1f8{word-spacing:-1.482435px;}
.ws41{word-spacing:-1.362884px;}
.ws1e0{word-spacing:-1.303108px;}
.wsb3{word-spacing:-1.243332px;}
.ws80{word-spacing:-1.232108px;}
.wsb2{word-spacing:-1.213985px;}
.ws7e{word-spacing:-1.183557px;}
.ws190{word-spacing:-1.130108px;}
.ws168{word-spacing:-1.123781px;}
.ws1a6{word-spacing:-1.064006px;}
.ws1a2{word-spacing:-1.004230px;}
.ws1a0{word-spacing:-0.987995px;}
.ws1a1{word-spacing:-0.986193px;}
.ws12f{word-spacing:-0.884679px;}
.ws1fa{word-spacing:-0.765128px;}
.wsde{word-spacing:-0.705352px;}
.ws90{word-spacing:-0.674270px;}
.ws187{word-spacing:-0.645576px;}
.ws1c8{word-spacing:-0.618682px;}
.ws18b{word-spacing:-0.585801px;}
.ws191{word-spacing:-0.526025px;}
.ws158{word-spacing:-0.466250px;}
.ws18{word-spacing:-0.406474px;}
.ws1a3{word-spacing:-0.346698px;}
.ws83{word-spacing:-0.286923px;}
.ws1ed{word-spacing:-0.227147px;}
.ws68{word-spacing:-0.167372px;}
.ws3f{word-spacing:-0.107596px;}
.ws11e{word-spacing:-0.080698px;}
.ws7{word-spacing:-0.059776px;}
.wse6{word-spacing:-0.053798px;}
.ws82{word-spacing:-0.047820px;}
.wsae{word-spacing:-0.041843px;}
.ws13f{word-spacing:-0.035866px;}
.wse2{word-spacing:-0.026899px;}
.wsfa{word-spacing:-0.015993px;}
.wse1{word-spacing:-0.004782px;}
.ws20{word-spacing:0.000000px;}
.ws7d{word-spacing:0.011955px;}
.wsd8{word-spacing:0.071731px;}
.wsd7{word-spacing:0.075538px;}
.ws176{word-spacing:0.131506px;}
.wsa0{word-spacing:0.138680px;}
.ws18a{word-spacing:0.212877px;}
.wsda{word-spacing:0.251058px;}
.ws19d{word-spacing:0.282142px;}
.ws40{word-spacing:0.310833px;}
.wsfc{word-spacing:0.332696px;}
.wsfe{word-spacing:0.351892px;}
.ws100{word-spacing:0.370609px;}
.ws57{word-spacing:0.430384px;}
.wsc7{word-spacing:0.490160px;}
.ws1b6{word-spacing:0.521245px;}
.ws132{word-spacing:0.549936px;}
.ws195{word-spacing:0.609711px;}
.ws1dc{word-spacing:0.640436px;}
.ws1de{word-spacing:0.669487px;}
.ws13{word-spacing:0.729262px;}
.ws182{word-spacing:0.789038px;}
.ws1c9{word-spacing:0.833875px;}
.ws184{word-spacing:0.848814px;}
.ws88{word-spacing:0.908589px;}
.ws175{word-spacing:1.028140px;}
.ws1af{word-spacing:1.087916px;}
.ws1ca{word-spacing:1.102867px;}
.ws1d{word-spacing:1.147692px;}
.ws161{word-spacing:1.191892px;}
.ws163{word-spacing:1.204995px;}
.ws3c{word-spacing:1.207467px;}
.wsa4{word-spacing:1.218056px;}
.ws146{word-spacing:1.235439px;}
.wsa2{word-spacing:1.238554px;}
.ws147{word-spacing:1.267243px;}
.ws85{word-spacing:1.327018px;}
.ws1bb{word-spacing:1.386794px;}
.ws189{word-spacing:1.446570px;}
.wsac{word-spacing:1.506345px;}
.ws8d{word-spacing:1.525477px;}
.ws4a{word-spacing:1.566121px;}
.ws9e{word-spacing:1.621118px;}
.ws197{word-spacing:1.625896px;}
.ws5f{word-spacing:1.685672px;}
.ws1b1{word-spacing:1.745448px;}
.ws2a{word-spacing:1.805223px;}
.wsdd{word-spacing:1.864999px;}
.ws44{word-spacing:1.908042px;}
.ws127{word-spacing:1.912436px;}
.ws9{word-spacing:1.924774px;}
.wsad{word-spacing:1.984550px;}
.ws28{word-spacing:2.044326px;}
.ws37{word-spacing:2.104101px;}
.ws142{word-spacing:2.147145px;}
.ws50{word-spacing:2.163877px;}
.ws13c{word-spacing:2.223652px;}
.ws198{word-spacing:2.283428px;}
.ws121{word-spacing:2.286432px;}
.ws1ef{word-spacing:2.343204px;}
.ws1ba{word-spacing:2.402979px;}
.ws8b{word-spacing:2.434069px;}
.wsf8{word-spacing:2.462755px;}
.wse0{word-spacing:2.522530px;}
.ws12a{word-spacing:2.582306px;}
.ws10c{word-spacing:2.609222px;}
.ws62{word-spacing:2.642082px;}
.ws15{word-spacing:2.701857px;}
.ws1b2{word-spacing:2.761633px;}
.ws47{word-spacing:2.816633px;}
.ws128{word-spacing:2.821408px;}
.ws19{word-spacing:2.881184px;}
.ws17d{word-spacing:2.912275px;}
.wsd9{word-spacing:2.940960px;}
.ws109{word-spacing:3.000735px;}
.wseb{word-spacing:3.039610px;}
.ws23{word-spacing:3.060511px;}
.ws123{word-spacing:3.068673px;}
.ws125{word-spacing:3.093408px;}
.ws1d4{word-spacing:3.120286px;}
.ws51{word-spacing:3.180062px;}
.ws1b7{word-spacing:3.239838px;}
.ws199{word-spacing:3.294839px;}
.ws3{word-spacing:3.299613px;}
.ws11a{word-spacing:3.308602px;}
.ws14d{word-spacing:3.315892px;}
.wsbd{word-spacing:3.319705px;}
.ws1bc{word-spacing:3.322436px;}
.ws1e3{word-spacing:3.326118px;}
.ws138{word-spacing:3.339892px;}
.ws29{word-spacing:3.359389px;}
.ws3b{word-spacing:3.419164px;}
.wsa9{word-spacing:3.438301px;}
.wsb7{word-spacing:3.478940px;}
.ws19b{word-spacing:3.486122px;}
.wsbf{word-spacing:3.538716px;}
.ws152{word-spacing:3.588408px;}
.ws14f{word-spacing:3.588601px;}
.ws151{word-spacing:3.591892px;}
.ws11{word-spacing:3.598491px;}
.ws96{word-spacing:3.629584px;}
.ws38{word-spacing:3.658267px;}
.wsdf{word-spacing:3.718042px;}
.ws43{word-spacing:3.725225px;}
.ws52{word-spacing:3.777818px;}
.ws183{word-spacing:3.786752px;}
.ws185{word-spacing:3.790952px;}
.ws1e{word-spacing:3.837594px;}
.wsaa{word-spacing:3.868687px;}
.ws171{word-spacing:3.897369px;}
.wsab{word-spacing:3.916507px;}
.ws71{word-spacing:3.957145px;}
.wsdb{word-spacing:4.016920px;}
.ws1ac{word-spacing:4.076696px;}
.ws17c{word-spacing:4.107790px;}
.ws39{word-spacing:4.136472px;}
.ws63{word-spacing:4.196247px;}
.ws31{word-spacing:4.256023px;}
.ws8a{word-spacing:4.315798px;}
.ws16a{word-spacing:4.347892px;}
.ws4c{word-spacing:4.375574px;}
.ws6{word-spacing:4.385149px;}
.ws186{word-spacing:4.435350px;}
.ws1c7{word-spacing:4.438368px;}
.ws9c{word-spacing:4.442534px;}
.ws87{word-spacing:4.495125px;}
.ws16{word-spacing:4.554901px;}
.wse9{word-spacing:4.558032px;}
.wse8{word-spacing:4.558748px;}
.wsf1{word-spacing:4.589139px;}
.ws114{word-spacing:4.590152px;}
.wsea{word-spacing:4.599763px;}
.wsc5{word-spacing:4.614676px;}
.ws19a{word-spacing:4.633816px;}
.ws7b{word-spacing:4.674452px;}
.ws9b{word-spacing:4.729457px;}
.ws99{word-spacing:4.730228px;}
.ws6a{word-spacing:4.734228px;}
.ws97{word-spacing:4.765976px;}
.ws95{word-spacing:4.777278px;}
.ws73{word-spacing:4.794003px;}
.wsa{word-spacing:4.805958px;}
.ws69{word-spacing:4.853779px;}
.ws3a{word-spacing:4.913554px;}
.ws10e{word-spacing:4.922554px;}
.ws10a{word-spacing:4.968560px;}
.ws1c{word-spacing:4.973330px;}
.ws120{word-spacing:4.976352px;}
.ws103{word-spacing:5.033106px;}
.ws15d{word-spacing:5.092881px;}
.ws2e{word-spacing:5.152657px;}
.wsf3{word-spacing:5.172928px;}
.ws5{word-spacing:5.198099px;}
.ws5d{word-spacing:5.212432px;}
.ws1cb{word-spacing:5.245344px;}
.ws4{word-spacing:5.245920px;}
.ws141{word-spacing:5.255484px;}
.wsba{word-spacing:5.272208px;}
.ws1d3{word-spacing:5.331984px;}
.ws7f{word-spacing:5.374426px;}
.ws21{word-spacing:5.391759px;}
.ws10b{word-spacing:5.406739px;}
.ws24{word-spacing:5.451535px;}
.ws92{word-spacing:5.494587px;}
.ws36{word-spacing:5.511310px;}
.ws14e{word-spacing:5.525624px;}
.ws94{word-spacing:5.542408px;}
.ws129{word-spacing:5.571086px;}
.ws188{word-spacing:5.601531px;}
.wse7{word-spacing:5.621933px;}
.ws8{word-spacing:5.630862px;}
.wse5{word-spacing:5.636064px;}
.wse3{word-spacing:5.675731px;}
.ws15e{word-spacing:5.690637px;}
.ws14{word-spacing:5.750413px;}
.ws65{word-spacing:5.766067px;}
.ws5a{word-spacing:5.787892px;}
.ws16f{word-spacing:5.810188px;}
.wsa1{word-spacing:5.857200px;}
.ws156{word-spacing:5.859892px;}
.wsbc{word-spacing:5.869964px;}
.wsb1{word-spacing:5.929740px;}
.ws107{word-spacing:5.942839px;}
.wsdc{word-spacing:5.989515px;}
.ws4b{word-spacing:6.049291px;}
.ws55{word-spacing:6.061246px;}
.ws46{word-spacing:6.068434px;}
.ws148{word-spacing:6.109066px;}
.wsbe{word-spacing:6.121021px;}
.wsa5{word-spacing:6.158818px;}
.wsa3{word-spacing:6.168043px;}
.ws14a{word-spacing:6.168842px;}
.ws18e{word-spacing:6.228618px;}
.wsff{word-spacing:6.260406px;}
.ws81{word-spacing:6.265362px;}
.ws101{word-spacing:6.269016px;}
.ws58{word-spacing:6.288393px;}
.ws5e{word-spacing:6.348169px;}
.ws9d{word-spacing:6.403178px;}
.wsd{word-spacing:6.407944px;}
.ws1dd{word-spacing:6.453533px;}
.ws8e{word-spacing:6.462533px;}
.wsd5{word-spacing:6.467720px;}
.ws133{word-spacing:6.470406px;}
.ws1ae{word-spacing:6.527496px;}
.ws19e{word-spacing:6.587271px;}
.ws3e{word-spacing:6.647047px;}
.ws10d{word-spacing:6.697901px;}
.ws1b5{word-spacing:6.706822px;}
.ws16c{word-spacing:6.766598px;}
.ws16e{word-spacing:6.813807px;}
.ws17e{word-spacing:6.826374px;}
.wsc0{word-spacing:6.886149px;}
.wsb5{word-spacing:6.945925px;}
.ws18d{word-spacing:6.972684px;}
.wsc{word-spacing:7.005700px;}
.ws17{word-spacing:7.065476px;}
.ws53{word-spacing:7.125252px;}
.ws33{word-spacing:7.185027px;}
.wsc4{word-spacing:7.244803px;}
.ws10{word-spacing:7.304578px;}
.ws116{word-spacing:7.343482px;}
.ws2b{word-spacing:7.364354px;}
.ws1cc{word-spacing:7.393284px;}
.ws1cf{word-spacing:7.397280px;}
.ws5c{word-spacing:7.424130px;}
.ws1cd{word-spacing:7.431652px;}
.wsfb{word-spacing:7.471776px;}
.ws6f{word-spacing:7.543681px;}
.ws6d{word-spacing:7.557892px;}
.ws1a7{word-spacing:7.603456px;}
.ws10f{word-spacing:7.612474px;}
.ws8c{word-spacing:7.639910px;}
.ws45{word-spacing:7.646514px;}
.ws70{word-spacing:7.663232px;}
.ws111{word-spacing:7.666272px;}
.ws12b{word-spacing:7.723008px;}
.ws9f{word-spacing:7.742155px;}
.ws27{word-spacing:7.782783px;}
.wsfd{word-spacing:7.837456px;}
.wsd3{word-spacing:7.902334px;}
.ws1c2{word-spacing:7.962110px;}
.ws1ea{word-spacing:8.021886px;}
.wsa7{word-spacing:8.076899px;}
.ws30{word-spacing:8.081661px;}
.ws196{word-spacing:8.101776px;}
.wsa6{word-spacing:8.124720px;}
.ws130{word-spacing:8.141437px;}
.ws167{word-spacing:8.201212px;}
.ws1c5{word-spacing:8.220361px;}
.ws2f{word-spacing:8.260988px;}
.ws60{word-spacing:8.290426px;}
.ws1aa{word-spacing:8.320764px;}
.ws1e8{word-spacing:8.380539px;}
.ws1db{word-spacing:8.398141px;}
.ws12{word-spacing:8.440315px;}
.ws18f{word-spacing:8.500090px;}
.ws7c{word-spacing:8.517443px;}
.ws42{word-spacing:8.555105px;}
.ws35{word-spacing:8.559866px;}
.ws164{word-spacing:8.604133px;}
.ws13b{word-spacing:8.619642px;}
.ws108{word-spacing:8.679417px;}
.ws1e2{word-spacing:8.739193px;}
.ws1be{word-spacing:8.798875px;}
.ws18c{word-spacing:8.798877px;}
.ws1c0{word-spacing:8.798968px;}
.ws1f9{word-spacing:8.858744px;}
.ws15f{word-spacing:8.912233px;}
.wsd2{word-spacing:8.918520px;}
.ws1c6{word-spacing:8.957434px;}
.ws178{word-spacing:8.978295px;}
.ws166{word-spacing:9.038071px;}
.ws8f{word-spacing:9.081132px;}
.ws1d6{word-spacing:9.097846px;}
.ws1d8{word-spacing:9.105892px;}
.ws1a5{word-spacing:9.116177px;}
.ws13a{word-spacing:9.157622px;}
.ws22{word-spacing:9.217398px;}
.ws137{word-spacing:9.257016px;}
.ws1a8{word-spacing:9.277173px;}
.ws159{word-spacing:9.320944px;}
.ws134{word-spacing:9.383016px;}
.ws25{word-spacing:9.396724px;}
.ws2d{word-spacing:9.456500px;}
.ws193{word-spacing:9.472656px;}
.ws12d{word-spacing:9.481456px;}
.ws192{word-spacing:9.501807px;}
.ws194{word-spacing:9.516276px;}
.ws54{word-spacing:9.556956px;}
.ws4d{word-spacing:9.576051px;}
.ws173{word-spacing:9.635827px;}
.ws162{word-spacing:9.686529px;}
.ws174{word-spacing:9.695602px;}
.ws1f2{word-spacing:9.755378px;}
.wsd6{word-spacing:9.815154px;}
.ws49{word-spacing:9.874929px;}
.ws76{word-spacing:9.910147px;}
.ws75{word-spacing:9.913114px;}
.ws98{word-spacing:9.929319px;}
.ws78{word-spacing:9.934705px;}
.ws1d0{word-spacing:9.994480px;}
.ws15c{word-spacing:10.054256px;}
.ws15a{word-spacing:10.055624px;}
.ws1ad{word-spacing:10.114032px;}
.ws56{word-spacing:10.173807px;}
.wsd0{word-spacing:10.233583px;}
.wsc2{word-spacing:10.293358px;}
.wsf6{word-spacing:10.379654px;}
.wsf7{word-spacing:10.412910px;}
.ws89{word-spacing:10.472685px;}
.ws9a{word-spacing:10.474124px;}
.ws136{word-spacing:10.478976px;}
.wsf2{word-spacing:10.508406px;}
.ws34{word-spacing:10.532461px;}
.ws12e{word-spacing:10.561776px;}
.ws6c{word-spacing:10.592236px;}
.ws160{word-spacing:10.631529px;}
.ws1a9{word-spacing:10.652012px;}
.ws1e1{word-spacing:10.711788px;}
.wsca{word-spacing:10.771563px;}
.wsc6{word-spacing:10.831339px;}
.wsbb{word-spacing:10.891114px;}
.ws1d5{word-spacing:10.950890px;}
.wsf9{word-spacing:10.952529px;}
.ws135{word-spacing:10.957776px;}
.ws4f{word-spacing:11.010666px;}
.ws1d2{word-spacing:11.070441px;}
.wsf4{word-spacing:11.111016px;}
.ws170{word-spacing:11.130217px;}
.ws1bf{word-spacing:11.142172px;}
.ws15b{word-spacing:11.189992px;}
.wse{word-spacing:11.249768px;}
.ws172{word-spacing:11.307990px;}
.ws32{word-spacing:11.309544px;}
.ws14b{word-spacing:11.369319px;}
.ws1b9{word-spacing:11.424296px;}
.ws3d{word-spacing:11.429095px;}
.wsc1{word-spacing:11.488870px;}
.ws1bd{word-spacing:11.608422px;}
.ws1ec{word-spacing:11.668197px;}
.ws26{word-spacing:11.787748px;}
.ws19f{word-spacing:11.847524px;}
.ws1b0{word-spacing:11.907300px;}
.wsd1{word-spacing:11.967075px;}
.ws144{word-spacing:12.026851px;}
.ws6b{word-spacing:12.086626px;}
.ws1f7{word-spacing:12.206178px;}
.wsf{word-spacing:12.265953px;}
.ws1b8{word-spacing:12.304010px;}
.wsc9{word-spacing:12.325729px;}
.ws59{word-spacing:12.382426px;}
.ws48{word-spacing:12.445280px;}
.ws1b3{word-spacing:12.624607px;}
.ws79{word-spacing:12.637776px;}
.wsb8{word-spacing:12.684382px;}
.ws1e5{word-spacing:12.803934px;}
.ws1da{word-spacing:12.923485px;}
.wscb{word-spacing:12.983260px;}
.wsee{word-spacing:13.067049px;}
.wsf0{word-spacing:13.088529px;}
.wsec{word-spacing:13.102812px;}
.ws139{word-spacing:13.117776px;}
.ws5b{word-spacing:13.273362px;}
.ws2c{word-spacing:13.282138px;}
.ws14c{word-spacing:13.328944px;}
.ws66{word-spacing:13.448529px;}
.ws150{word-spacing:13.604944px;}
.ws4e{word-spacing:13.640792px;}
.ws16b{word-spacing:13.787529px;}
.wsa8{word-spacing:13.822972px;}
.ws64{word-spacing:14.210944px;}
.ws143{word-spacing:14.298324px;}
.ws155{word-spacing:14.354529px;}
.ws169{word-spacing:14.360944px;}
.ws67{word-spacing:14.387529px;}
.wsf5{word-spacing:14.621529px;}
.ws149{word-spacing:14.624529px;}
.ws131{word-spacing:14.779456px;}
.ws1f6{word-spacing:14.896080px;}
.ws6e{word-spacing:15.055776px;}
.ws1f1{word-spacing:15.075406px;}
.ws177{word-spacing:15.177531px;}
.ws1e4{word-spacing:15.374284px;}
.ws1d7{word-spacing:15.700426px;}
.ws77{word-spacing:15.845016px;}
.ws157{word-spacing:15.872944px;}
.wsaf{word-spacing:16.232547px;}
.ws1d9{word-spacing:16.597362px;}
.ws16d{word-spacing:16.814944px;}
.ws102{word-spacing:16.945776px;}
.ws1f0{word-spacing:17.227328px;}
.ws165{word-spacing:17.546944px;}
.ws1a4{word-spacing:18.890529px;}
.ws1e7{word-spacing:18.901045px;}
.wsef{word-spacing:18.992406px;}
.ws106{word-spacing:19.232839px;}
.ws104{word-spacing:19.547208px;}
.ws1ee{word-spacing:19.618352px;}
.ws1e6{word-spacing:20.754088px;}
.ws122{word-spacing:21.818734px;}
.ws11f{word-spacing:22.474030px;}
.ws124{word-spacing:22.636322px;}
.ws11c{word-spacing:22.966105px;}
.wsed{word-spacing:23.090944px;}
.ws126{word-spacing:23.875100px;}
.ws115{word-spacing:24.268105px;}
.ws11d{word-spacing:25.870030px;}
.ws11b{word-spacing:26.385892px;}
.ws118{word-spacing:27.022105px;}
.ws112{word-spacing:27.351903px;}
.ws2{word-spacing:27.975090px;}
.ws0{word-spacing:28.061167px;}
.ws1ce{word-spacing:28.266899px;}
.ws119{word-spacing:29.926030px;}
.ws113{word-spacing:30.202030px;}
.ws117{word-spacing:30.441892px;}
.ws110{word-spacing:30.717892px;}
.ws1{word-spacing:33.278363px;}
.ws1b{word-spacing:34.311194px;}
.ws1a{word-spacing:36.146329px;}
.ws1f4{word-spacing:43.468816px;}
.wscf{word-spacing:559.750674px;}
.ws1c4{word-spacing:628.997215px;}
.ws13d{word-spacing:959.579215px;}
.ws13e{word-spacing:959.890738px;}
.ws179{word-spacing:1071.739431px;}
.ws17a{word-spacing:1073.032947px;}
.ws17b{word-spacing:1077.148947px;}
._1f{margin-left:-2170.456826px;}
._21{margin-left:-2169.312710px;}
._13{margin-left:-2153.782222px;}
._47{margin-left:-2106.274549px;}
._3a{margin-left:-2068.924415px;}
._31{margin-left:-1993.969254px;}
._4{margin-left:-1987.865916px;}
._35{margin-left:-1871.187922px;}
._4a{margin-left:-1705.073185px;}
._48{margin-left:-1673.724443px;}
._51{margin-left:-1602.605343px;}
._37{margin-left:-1538.705227px;}
._30{margin-left:-1440.795180px;}
._4d{margin-left:-1291.698583px;}
._46{margin-left:-1176.958132px;}
._44{margin-left:-1171.502993px;}
._49{margin-left:-1064.580027px;}
._29{margin-left:-967.105843px;}
._4e{margin-left:-950.827038px;}
._3d{margin-left:-831.632796px;}
._45{margin-left:-818.017609px;}
._3b{margin-left:-788.985341px;}
._3e{margin-left:-743.794970px;}
._39{margin-left:-591.564450px;}
._3f{margin-left:-476.523330px;}
._1d{margin-left:-447.506823px;}
._50{margin-left:-412.936323px;}
._43{margin-left:-366.436862px;}
._5{margin-left:-354.542640px;}
._42{margin-left:-336.549062px;}
._38{margin-left:-260.168523px;}
._25{margin-left:-42.127800px;}
._40{margin-left:-29.134673px;}
._4f{margin-left:-27.929533px;}
._2d{margin-left:-12.698589px;}
._24{margin-left:-8.156370px;}
._10{margin-left:-5.924948px;}
._2{margin-left:-4.303860px;}
._0{margin-left:-2.324084px;}
._6{margin-left:-1.075961px;}
._b{width:1.016202px;}
._3{width:2.324084px;}
._28{width:3.347434px;}
._2e{width:4.662497px;}
._2b{width:6.132718px;}
._34{width:7.147962px;}
._1e{width:8.661716px;}
._32{width:14.212265px;}
._22{width:15.534492px;}
._11{width:16.722840px;}
._2f{width:17.909881px;}
._12{width:19.128209px;}
._20{width:20.316540px;}
._7{width:21.562205px;}
._1a{width:23.018435px;}
._d{width:24.919278px;}
._e{width:26.817736px;}
._15{width:28.235592px;}
._26{width:29.349820px;}
._9{width:30.538168px;}
._1b{width:32.032558px;}
._f{width:33.804334px;}
._8{width:35.140906px;}
._2c{width:36.163278px;}
._1{width:37.271428px;}
._c{width:38.495486px;}
._36{width:39.571447px;}
._18{width:41.364715px;}
._27{width:42.380900px;}
._4c{width:43.703144px;}
._17{width:44.891476px;}
._33{width:45.981895px;}
._41{width:46.990769px;}
._23{width:47.993870px;}
._a{width:49.367482px;}
._19{width:51.220508px;}
._16{width:52.655140px;}
._2a{width:54.096901px;}
._3c{width:55.285266px;}
._1c{width:58.274046px;}
._4b{width:69.997228px;}
._14{width:559.110373px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y25{bottom:131.473500px;}
.y23{bottom:134.047500px;}
.y24{bottom:136.137000px;}
.y154{bottom:178.879500px;}
.y92{bottom:179.401500px;}
.y120{bottom:181.735500px;}
.yeb{bottom:183.099000px;}
.y50{bottom:183.825000px;}
.y1f0{bottom:184.857000px;}
.y192{bottom:185.335500px;}
.y134{bottom:185.601000px;}
.y102{bottom:185.968500px;}
.y176{bottom:187.521000px;}
.y61{bottom:187.845000px;}
.y75{bottom:190.573500px;}
.y171{bottom:191.871000px;}
.y144{bottom:192.328500px;}
.ya5{bottom:195.316500px;}
.y153{bottom:196.812000px;}
.y91{bottom:197.334000px;}
.y4f{bottom:198.022500px;}
.y11f{bottom:199.668000px;}
.yd0{bottom:200.634000px;}
.y1ef{bottom:202.789500px;}
.y191{bottom:203.269500px;}
.y133{bottom:203.533500px;}
.y101{bottom:203.901000px;}
.y74{bottom:204.771000px;}
.y175{bottom:205.453500px;}
.y60{bottom:205.777500px;}
.y1e0{bottom:208.767000px;}
.y170{bottom:209.803500px;}
.y143{bottom:210.261000px;}
.y4e{bottom:212.218500px;}
.ya4{bottom:213.250500px;}
.y152{bottom:214.744500px;}
.y90{bottom:215.266500px;}
.y22{bottom:215.376000px;}
.y11e{bottom:217.600500px;}
.y73{bottom:218.967000px;}
.y190{bottom:221.202000px;}
.y132{bottom:221.467500px;}
.y100{bottom:221.835000px;}
.y5f{bottom:223.710000px;}
.y4d{bottom:226.416000px;}
.y1d3{bottom:226.699500px;}
.yea{bottom:227.647500px;}
.y16f{bottom:227.736000px;}
.y142{bottom:228.193500px;}
.ya3{bottom:231.183000px;}
.y151{bottom:232.677000px;}
.y72{bottom:233.164500px;}
.y8f{bottom:233.199000px;}
.y21{bottom:233.308500px;}
.y11d{bottom:235.533000px;}
.y1bb{bottom:237.160500px;}
.y18f{bottom:239.134500px;}
.y131{bottom:239.400000px;}
.yff{bottom:239.767500px;}
.y4c{bottom:240.612000px;}
.y5e{bottom:241.644000px;}
.y174{bottom:242.671500px;}
.y211{bottom:243.712500px;}
.y1d2{bottom:244.632000px;}
.ycf{bottom:245.182500px;}
.ye9{bottom:245.580000px;}
.y16e{bottom:245.668500px;}
.y141{bottom:246.126000px;}
.y71{bottom:247.360500px;}
.ya2{bottom:249.115500px;}
.y150{bottom:250.609500px;}
.y8e{bottom:251.131500px;}
.y20{bottom:251.241000px;}
.y11c{bottom:253.465500px;}
.y1ba{bottom:255.093000px;}
.y173{bottom:256.869000px;}
.y130{bottom:257.332500px;}
.yfe{bottom:257.700000px;}
.y4b{bottom:259.029000px;}
.y5d{bottom:259.576500px;}
.y230{bottom:261.369000px;}
.y210{bottom:261.645000px;}
.yce{bottom:263.115000px;}
.ye8{bottom:263.514000px;}
.y16d{bottom:263.601000px;}
.y140{bottom:264.060000px;}
.y70{bottom:265.776000px;}
.ya1{bottom:267.048000px;}
.y14f{bottom:268.542000px;}
.y1f{bottom:269.173500px;}
.y11b{bottom:271.398000px;}
.y1b9{bottom:273.025500px;}
.y1d1{bottom:274.521000px;}
.y14d{bottom:275.158500px;}
.y12f{bottom:275.265000px;}
.yfd{bottom:275.632500px;}
.y6f{bottom:275.814000px;}
.y18e{bottom:276.195000px;}
.y5c{bottom:277.509000px;}
.y8d{bottom:277.948500px;}
.y22f{bottom:279.303000px;}
.y20f{bottom:279.579000px;}
.y1ee{bottom:280.498500px;}
.ycd{bottom:281.049000px;}
.y16c{bottom:281.533500px;}
.y13f{bottom:281.992500px;}
.ya0{bottom:284.980500px;}
.y14e{bottom:286.476000px;}
.y8c{bottom:288.199500px;}
.ye7{bottom:288.339000px;}
.y14c{bottom:289.356000px;}
.y1b8{bottom:290.958000px;}
.y1d0{bottom:292.453500px;}
.y18d{bottom:292.633500px;}
.y12e{bottom:293.197500px;}
.yfc{bottom:293.565000px;}
.y11a{bottom:293.814000px;}
.y6e{bottom:294.229500px;}
.y5b{bottom:295.441500px;}
.y22e{bottom:297.235500px;}
.y20e{bottom:297.511500px;}
.y1ed{bottom:298.431000px;}
.ye6{bottom:298.588500px;}
.ycc{bottom:298.981500px;}
.y16b{bottom:299.467500px;}
.y13e{bottom:299.925000px;}
.y1e{bottom:300.556500px;}
.y9f{bottom:302.913000px;}
.y14b{bottom:303.553500px;}
.y4a{bottom:304.408500px;}
.y1b7{bottom:308.892000px;}
.y18c{bottom:309.072000px;}
.y1cf{bottom:310.386000px;}
.y12d{bottom:311.131500px;}
.yfb{bottom:311.497500px;}
.y5a{bottom:313.374000px;}
.y22d{bottom:315.168000px;}
.y1ec{bottom:316.363500px;}
.ycb{bottom:316.914000px;}
.y16a{bottom:317.400000px;}
.y14a{bottom:317.749500px;}
.y13d{bottom:317.857500px;}
.y9e{bottom:320.847000px;}
.y49{bottom:322.341000px;}
.y18b{bottom:325.510500px;}
.y20d{bottom:326.479500px;}
.y1b6{bottom:326.824500px;}
.y12c{bottom:329.064000px;}
.y119{bottom:329.680500px;}
.y8b{bottom:329.691000px;}
.y59{bottom:331.308000px;}
.y149{bottom:331.947000px;}
.yca{bottom:334.846500px;}
.y169{bottom:335.332500px;}
.y13c{bottom:335.790000px;}
.y6d{bottom:338.779500px;}
.y48{bottom:340.273500px;}
.y18a{bottom:341.949000px;}
.y22c{bottom:343.860000px;}
.y20c{bottom:344.412000px;}
.y1b5{bottom:344.757000px;}
.y1eb{bottom:346.251000px;}
.y12b{bottom:346.996500px;}
.y118{bottom:347.613000px;}
.y8a{bottom:347.623500px;}
.y58{bottom:349.240500px;}
.ye5{bottom:352.287000px;}
.yc9{bottom:352.779000px;}
.y168{bottom:353.265000px;}
.y13b{bottom:353.722500px;}
.y1d{bottom:356.280000px;}
.y6c{bottom:356.712000px;}
.y47{bottom:358.206000px;}
.y189{bottom:358.387500px;}
.y148{bottom:360.474000px;}
.yfa{bottom:361.261500px;}
.y22b{bottom:361.792500px;}
.y20b{bottom:362.344500px;}
.y1b4{bottom:362.689500px;}
.y1ea{bottom:364.183500px;}
.y12a{bottom:364.929000px;}
.y117{bottom:365.545500px;}
.y89{bottom:365.556000px;}
.y57{bottom:367.173000px;}
.ye4{bottom:370.219500px;}
.yc8{bottom:370.711500px;}
.y167{bottom:371.197500px;}
.y13a{bottom:371.656500px;}
.y1c{bottom:374.212500px;}
.y6b{bottom:374.644500px;}
.y188{bottom:374.826000px;}
.y46{bottom:376.138500px;}
.y1ce{bottom:376.140000px;}
.yf9{bottom:377.700000px;}
.y1b3{bottom:380.622000px;}
.y129{bottom:382.861500px;}
.y116{bottom:383.478000px;}
.y88{bottom:383.490000px;}
.y56{bottom:385.105500px;}
.y214{bottom:388.095000px;}
.ye3{bottom:388.152000px;}
.y166{bottom:389.130000px;}
.y139{bottom:389.589000px;}
.yc7{bottom:390.139500px;}
.y22a{bottom:390.486000px;}
.y187{bottom:391.264500px;}
.y20a{bottom:391.312500px;}
.y6a{bottom:392.577000px;}
.y45{bottom:394.072500px;}
.yf8{bottom:394.138500px;}
.y1b2{bottom:398.554500px;}
.y128{bottom:400.794000px;}
.y115{bottom:401.410500px;}
.y87{bottom:401.422500px;}
.y1b{bottom:402.441000px;}
.y55{bottom:403.038000px;}
.y1cd{bottom:406.027500px;}
.ye2{bottom:406.084500px;}
.y165{bottom:407.064000px;}
.y138{bottom:407.521500px;}
.y229{bottom:408.418500px;}
.y209{bottom:409.246500px;}
.y69{bottom:410.511000px;}
.yf7{bottom:410.577000px;}
.y44{bottom:412.005000px;}
.y1b1{bottom:416.488500px;}
.y114{bottom:419.344500px;}
.y1a{bottom:420.373500px;}
.y54{bottom:420.970500px;}
.y186{bottom:421.435500px;}
.y1cc{bottom:423.960000px;}
.ye1{bottom:424.017000px;}
.y164{bottom:424.996500px;}
.y137{bottom:425.454000px;}
.yc6{bottom:426.004500px;}
.yf6{bottom:427.015500px;}
.y68{bottom:428.443500px;}
.y43{bottom:429.937500px;}
.y1b0{bottom:434.421000px;}
.y228{bottom:437.110500px;}
.y113{bottom:437.277000px;}
.y208{bottom:438.214500px;}
.y19{bottom:438.306000px;}
.y53{bottom:438.904500px;}
.y1df{bottom:441.892500px;}
.ye0{bottom:441.949500px;}
.y163{bottom:442.929000px;}
.y136{bottom:443.386500px;}
.yf5{bottom:443.454000px;}
.yc5{bottom:443.937000px;}
.y67{bottom:446.376000px;}
.y42{bottom:447.870000px;}
.y127{bottom:449.886000px;}
.y86{bottom:450.513000px;}
.y1af{bottom:452.353500px;}
.y1cb{bottom:453.847500px;}
.y227{bottom:455.043000px;}
.y112{bottom:455.209500px;}
.y207{bottom:456.147000px;}
.y18{bottom:456.238500px;}
.y1de{bottom:459.825000px;}
.ydf{bottom:459.883500px;}
.yf4{bottom:459.891000px;}
.y162{bottom:460.861500px;}
.y52{bottom:461.320500px;}
.yc4{bottom:461.871000px;}
.y126{bottom:464.082000px;}
.y66{bottom:464.308500px;}
.y85{bottom:464.710500px;}
.y41{bottom:465.802500px;}
.y1ae{bottom:470.286000px;}
.y1ca{bottom:471.780000px;}
.y111{bottom:473.142000px;}
.y206{bottom:474.079500px;}
.y17{bottom:474.171000px;}
.yf3{bottom:476.329500px;}
.yde{bottom:477.816000px;}
.y125{bottom:478.279500px;}
.y161{bottom:478.794000px;}
.y84{bottom:478.906500px;}
.y135{bottom:479.253000px;}
.yc3{bottom:479.803500px;}
.y65{bottom:482.241000px;}
.y40{bottom:483.735000px;}
.y226{bottom:483.736500px;}
.y1ad{bottom:488.218500px;}
.y1dd{bottom:489.714000px;}
.y110{bottom:491.074500px;}
.y205{bottom:492.012000px;}
.y16{bottom:492.105000px;}
.y51{bottom:492.702000px;}
.yf2{bottom:492.768000px;}
.y83{bottom:493.104000px;}
.y172{bottom:494.943000px;}
.ydd{bottom:495.748500px;}
.y160{bottom:496.728000px;}
.y185{bottom:497.185500px;}
.yc2{bottom:497.736000px;}
.y147{bottom:498.820500px;}
.y64{bottom:500.173500px;}
.y3f{bottom:501.669000px;}
.y1ac{bottom:506.151000px;}
.y124{bottom:506.956500px;}
.y82{bottom:507.300000px;}
.y1dc{bottom:507.646500px;}
.y10f{bottom:509.007000px;}
.yf1{bottom:509.206500px;}
.y15{bottom:510.037500px;}
.ydc{bottom:513.681000px;}
.y15f{bottom:514.660500px;}
.y184{bottom:515.118000px;}
.yc1{bottom:515.668500px;}
.y63{bottom:518.107500px;}
.y3e{bottom:519.601500px;}
.y204{bottom:520.981500px;}
.y81{bottom:521.497500px;}
.y1ab{bottom:524.085000px;}
.yf0{bottom:525.645000px;}
.y10e{bottom:526.941000px;}
.y14{bottom:527.970000px;}
.y225{bottom:530.361000px;}
.ydb{bottom:531.613500px;}
.y15e{bottom:532.593000px;}
.y183{bottom:533.050500px;}
.yc0{bottom:533.601000px;}
.y80{bottom:535.693500px;}
.y9d{bottom:536.040000px;}
.y3d{bottom:537.534000px;}
.y203{bottom:538.914000px;}
.y1aa{bottom:542.017500px;}
.yef{bottom:542.083500px;}
.y10d{bottom:544.873500px;}
.y13{bottom:545.902500px;}
.y224{bottom:548.293500px;}
.yda{bottom:549.547500px;}
.y7f{bottom:549.891000px;}
.y15d{bottom:550.525500px;}
.y182{bottom:550.983000px;}
.ybf{bottom:551.533500px;}
.y9c{bottom:553.972500px;}
.y3c{bottom:555.466500px;}
.y202{bottom:556.846500px;}
.yee{bottom:558.522000px;}
.y1a9{bottom:559.950000px;}
.y12{bottom:563.835000px;}
.y7e{bottom:564.087000px;}
.y1c9{bottom:567.421500px;}
.yd9{bottom:567.480000px;}
.y15c{bottom:568.458000px;}
.y181{bottom:568.917000px;}
.ybe{bottom:569.467500px;}
.y9b{bottom:571.905000px;}
.y3b{bottom:573.399000px;}
.y10c{bottom:576.255000px;}
.y223{bottom:576.985500px;}
.y1a8{bottom:577.882500px;}
.y7d{bottom:578.284500px;}
.y11{bottom:581.769000px;}
.y1c8{bottom:585.355500px;}
.yd8{bottom:585.412500px;}
.y201{bottom:585.814500px;}
.y15b{bottom:586.390500px;}
.y180{bottom:586.849500px;}
.yed{bottom:587.289000px;}
.ybd{bottom:587.400000px;}
.y9a{bottom:589.837500px;}
.y3a{bottom:591.333000px;}
.y7c{bottom:592.480500px;}
.y222{bottom:594.919500px;}
.y1a7{bottom:595.815000px;}
.y10{bottom:599.701500px;}
.ybc{bottom:601.443000px;}
.y1c7{bottom:603.288000px;}
.yd7{bottom:603.345000px;}
.y200{bottom:603.747000px;}
.y15a{bottom:604.324500px;}
.y17f{bottom:604.782000px;}
.ybb{bottom:605.332500px;}
.y7b{bottom:606.678000px;}
.y99{bottom:607.770000px;}
.y39{bottom:609.265500px;}
.y1a6{bottom:613.749000px;}
.y1e9{bottom:615.243000px;}
.yf{bottom:617.634000px;}
.yba{bottom:619.375500px;}
.y7a{bottom:620.874000px;}
.y10b{bottom:621.087000px;}
.y1c6{bottom:621.220500px;}
.yd6{bottom:621.277500px;}
.y17e{bottom:622.714500px;}
.yb9{bottom:623.265000px;}
.y221{bottom:623.611500px;}
.y98{bottom:625.704000px;}
.y38{bottom:627.198000px;}
.y1a5{bottom:631.681500px;}
.y123{bottom:631.723500px;}
.y1ff{bottom:632.715000px;}
.y1e8{bottom:633.175500px;}
.y79{bottom:635.071500px;}
.ye{bottom:635.566500px;}
.y146{bottom:637.165500px;}
.y10a{bottom:639.019500px;}
.y1c5{bottom:639.153000px;}
.yd5{bottom:639.210000px;}
.y17d{bottom:640.647000px;}
.yb8{bottom:641.197500px;}
.y220{bottom:641.544000px;}
.y97{bottom:643.636500px;}
.y37{bottom:645.130500px;}
.y1a4{bottom:649.614000px;}
.y1fe{bottom:650.649000px;}
.y1db{bottom:651.108000px;}
.y159{bottom:653.415000px;}
.yd{bottom:653.499000px;}
.y109{bottom:656.953500px;}
.y17c{bottom:658.579500px;}
.yb7{bottom:659.130000px;}
.y96{bottom:661.569000px;}
.y36{bottom:663.063000px;}
.y78{bottom:663.688500px;}
.y1a3{bottom:667.546500px;}
.y158{bottom:667.611000px;}
.y1fd{bottom:668.581500px;}
.y1c4{bottom:669.040500px;}
.y21f{bottom:670.236000px;}
.yc{bottom:671.431500px;}
.y108{bottom:674.886000px;}
.y17b{bottom:676.513500px;}
.yb6{bottom:677.064000px;}
.y95{bottom:679.501500px;}
.y35{bottom:680.995500px;}
.y157{bottom:681.808500px;}
.y1a2{bottom:685.479000px;}
.y213{bottom:686.973000px;}
.y1c3{bottom:686.974500px;}
.yd4{bottom:687.381000px;}
.y21e{bottom:688.170000px;}
.yb{bottom:689.365500px;}
.y107{bottom:692.818500px;}
.y17a{bottom:694.446000px;}
.yb5{bottom:694.996500px;}
.y156{bottom:696.004500px;}
.y94{bottom:697.434000px;}
.y1fc{bottom:697.549500px;}
.y34{bottom:698.929500px;}
.y1a1{bottom:703.411500px;}
.yd3{bottom:703.819500px;}
.y1da{bottom:704.907000px;}
.y155{bottom:710.202000px;}
.y237{bottom:710.884500px;}
.y62{bottom:712.378500px;}
.yb4{bottom:712.929000px;}
.y93{bottom:715.366500px;}
.y1fb{bottom:715.482000px;}
.ya{bottom:716.263500px;}
.y33{bottom:716.862000px;}
.yd2{bottom:720.258000px;}
.y1a0{bottom:721.345500px;}
.y1e7{bottom:728.817000px;}
.y179{bottom:730.311000px;}
.yb3{bottom:730.861500px;}
.y32{bottom:734.794500px;}
.yd1{bottom:736.696500px;}
.y19f{bottom:739.278000px;}
.y236{bottom:740.772000px;}
.y1fa{bottom:744.450000px;}
.y106{bottom:745.720500px;}
.y1e6{bottom:746.749500px;}
.y178{bottom:748.243500px;}
.yb2{bottom:748.794000px;}
.yec{bottom:749.709000px;}
.y31{bottom:752.727000px;}
.y122{bottom:756.492000px;}
.y19e{bottom:757.210500px;}
.y235{bottom:758.704500px;}
.y1f9{bottom:762.384000px;}
.y103{bottom:763.171500px;}
.y21d{bottom:763.486500px;}
.y1c2{bottom:764.682000px;}
.y177{bottom:766.176000px;}
.yb1{bottom:766.726500px;}
.y30{bottom:770.659500px;}
.y19d{bottom:775.143000px;}
.y145{bottom:775.512000px;}
.y1e5{bottom:776.637000px;}
.y105{bottom:777.367500px;}
.y77{bottom:778.426500px;}
.y21c{bottom:781.419000px;}
.y104{bottom:781.851000px;}
.y1c1{bottom:782.614500px;}
.yb0{bottom:784.660500px;}
.y2f{bottom:788.592000px;}
.y1f8{bottom:791.352000px;}
.y19c{bottom:793.075500px;}
.y1e4{bottom:794.571000px;}
.y1d9{bottom:800.548500px;}
.y9{bottom:801.295500px;}
.yaf{bottom:802.593000px;}
.y2e{bottom:806.526000px;}
.y1f7{bottom:809.284500px;}
.y21b{bottom:810.112500px;}
.y19b{bottom:811.008000px;}
.y1c0{bottom:813.997500px;}
.y1d8{bottom:818.481000px;}
.y8{bottom:819.711000px;}
.yae{bottom:820.525500px;}
.y2d{bottom:824.458500px;}
.y1f6{bottom:827.217000px;}
.y21a{bottom:828.045000px;}
.y19a{bottom:828.942000px;}
.y7{bottom:829.689000px;}
.y1d7{bottom:836.413500px;}
.yad{bottom:838.458000px;}
.y2c{bottom:842.391000px;}
.y199{bottom:846.874500px;}
.y6{bottom:848.104500px;}
.y212{bottom:848.368500px;}
.y234{bottom:854.346000px;}
.y1f5{bottom:856.185000px;}
.yac{bottom:856.390500px;}
.y219{bottom:856.737000px;}
.y1bf{bottom:858.829500px;}
.y2b{bottom:860.323500px;}
.y5{bottom:862.302000px;}
.y198{bottom:864.807000px;}
.y1d6{bottom:866.301000px;}
.y1e3{bottom:872.278500px;}
.y1f4{bottom:874.117500px;}
.yab{bottom:874.324500px;}
.y218{bottom:874.669500px;}
.y76{bottom:876.760500px;}
.y2a{bottom:878.256000px;}
.y121{bottom:881.259000px;}
.y197{bottom:882.739500px;}
.y1d5{bottom:884.233500px;}
.y4{bottom:887.223000px;}
.y1be{bottom:888.717000px;}
.y233{bottom:890.211000px;}
.y1f3{bottom:892.051500px;}
.yaa{bottom:892.257000px;}
.y217{bottom:892.602000px;}
.y29{bottom:896.188500px;}
.y196{bottom:900.672000px;}
.y1d4{bottom:902.167500px;}
.y1bd{bottom:906.649500px;}
.y232{bottom:908.145000px;}
.ya9{bottom:910.189500px;}
.y28{bottom:914.122500px;}
.y195{bottom:918.604500px;}
.y1e2{bottom:920.100000px;}
.y1f2{bottom:921.019500px;}
.y216{bottom:921.295500px;}
.y1bc{bottom:924.583500px;}
.y3{bottom:932.055000px;}
.y194{bottom:936.538500px;}
.y1e1{bottom:938.032500px;}
.y1f1{bottom:938.952000px;}
.ya8{bottom:939.055500px;}
.y215{bottom:939.228000px;}
.ya7{bottom:942.834000px;}
.ya6{bottom:949.674000px;}
.y27{bottom:949.987500px;}
.y193{bottom:954.471000px;}
.y231{bottom:955.965000px;}
.y2{bottom:958.954500px;}
.y26{bottom:967.920000px;}
.y1{bottom:985.852500px;}
.h18{height:0.000000px;}
.h9{height:24.209280px;}
.h3{height:25.572173px;}
.h17{height:31.382100px;}
.h4{height:34.143908px;}
.ha{height:35.865450px;}
.h15{height:40.348800px;}
.h19{height:41.081280px;}
.h1c{height:41.087280px;}
.h1e{height:41.484266px;}
.h5{height:41.842920px;}
.hb{height:42.799330px;}
.h7{height:44.439908px;}
.h6{height:44.831700px;}
.h13{height:45.080125px;}
.h1d{height:47.063280px;}
.h1b{height:48.483450px;}
.h1a{height:48.489450px;}
.h2{height:53.072100px;}
.h8{height:53.078100px;}
.h14{height:60.389700px;}
.h1{height:60.598349px;}
.h10{height:60.605700px;}
.h12{height:60.611700px;}
.hc{height:61.436100px;}
.hd{height:62.765700px;}
.he{height:85.271700px;}
.h16{height:85.829700px;}
.hf{height:85.835700px;}
.h11{height:103.079700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x36{left:208.125000px;}
.x1{left:215.058000px;}
.xd{left:217.290000px;}
.x9{left:223.068000px;}
.x37{left:231.370500px;}
.x5{left:238.320000px;}
.x2{left:242.199000px;}
.x33{left:260.416500px;}
.x31{left:275.221500px;}
.x4{left:282.667500px;}
.x2f{left:289.855500px;}
.x1d{left:297.153000px;}
.x19{left:301.639500px;}
.x2e{left:309.006000px;}
.x21{left:312.954000px;}
.xf{left:315.496500px;}
.x13{left:318.709500px;}
.x3{left:342.928500px;}
.x23{left:347.595000px;}
.x8{left:354.385500px;}
.x22{left:355.410000px;}
.x15{left:363.831000px;}
.x1a{left:366.996000px;}
.x24{left:371.671500px;}
.x16{left:376.284000px;}
.xa{left:390.415500px;}
.xb{left:396.213000px;}
.xc{left:403.207500px;}
.x18{left:406.906500px;}
.x32{left:408.396000px;}
.x17{left:411.265500px;}
.x30{left:412.827000px;}
.x7{left:419.404500px;}
.x26{left:436.186500px;}
.x35{left:438.496500px;}
.x2c{left:439.794000px;}
.x2d{left:441.457500px;}
.x25{left:444.001500px;}
.x34{left:449.374500px;}
.x2b{left:450.963000px;}
.xe{left:454.699500px;}
.x27{left:460.263000px;}
.x1b{left:479.052000px;}
.x1e{left:495.244500px;}
.x12{left:505.660500px;}
.x1f{left:526.608000px;}
.x14{left:535.282500px;}
.x29{left:536.607000px;}
.x28{left:544.422000px;}
.x2a{left:560.683500px;}
.x1c{left:565.701000px;}
.x10{left:575.076000px;}
.x11{left:642.364500px;}
.x20{left:652.488000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.vd{vertical-align:-13.285333pt;}
.v8{vertical-align:-7.973333pt;}
.v7{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.152000pt;}
.v10{vertical-align:11.221333pt;}
.va{vertical-align:14.021333pt;}
.vf{vertical-align:14.997333pt;}
.v6{vertical-align:15.941333pt;}
.v1{vertical-align:19.280000pt;}
.v11{vertical-align:20.314667pt;}
.ve{vertical-align:22.661333pt;}
.v5{vertical-align:26.714667pt;}
.vc{vertical-align:27.978667pt;}
.v9{vertical-align:35.946667pt;}
.vb{vertical-align:37.754667pt;}
.v4{vertical-align:39.850667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000267pt;}
.ls8a{letter-spacing:0.000444pt;}
.ls6b{letter-spacing:0.000452pt;}
.lsf{letter-spacing:0.000501pt;}
.ls46{letter-spacing:0.000882pt;}
.ls49{letter-spacing:0.001350pt;}
.ls37{letter-spacing:0.001509pt;}
.ls58{letter-spacing:0.002079pt;}
.ls14{letter-spacing:0.002104pt;}
.ls84{letter-spacing:0.002245pt;}
.lsb{letter-spacing:0.002557pt;}
.ls16{letter-spacing:0.002591pt;}
.ls31{letter-spacing:0.002906pt;}
.ls43{letter-spacing:0.003034pt;}
.ls50{letter-spacing:0.003046pt;}
.ls57{letter-spacing:0.003733pt;}
.ls22{letter-spacing:0.004132pt;}
.ls1c{letter-spacing:0.004352pt;}
.ls19{letter-spacing:0.006216pt;}
.ls41{letter-spacing:1.433465pt;}
.ls7e{letter-spacing:1.596032pt;}
.ls2b{letter-spacing:1.902375pt;}
.ls2a{letter-spacing:1.907709pt;}
.ls33{letter-spacing:2.013976pt;}
.ls6d{letter-spacing:2.377181pt;}
.ls10{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653505pt;}
.ls6{letter-spacing:2.656473pt;}
.ls2{letter-spacing:2.657662pt;}
.ls0{letter-spacing:2.658245pt;}
.ls3{letter-spacing:2.660238pt;}
.ls7{letter-spacing:2.806152pt;}
.ls30{letter-spacing:3.059246pt;}
.ls73{letter-spacing:3.060980pt;}
.ls32{letter-spacing:3.908132pt;}
.ls35{letter-spacing:3.913465pt;}
.ls24{letter-spacing:3.992098pt;}
.ls6c{letter-spacing:6.276116pt;}
.ls2c{letter-spacing:6.976882pt;}
.ls6e{letter-spacing:7.383043pt;}
.ls51{letter-spacing:7.525459pt;}
.ls4f{letter-spacing:7.530792pt;}
.ls12{letter-spacing:8.850079pt;}
.ls11{letter-spacing:8.855412pt;}
.ls3f{letter-spacing:11.141812pt;}
.ls3e{letter-spacing:11.148662pt;}
.lsc{letter-spacing:11.506245pt;}
.ls4d{letter-spacing:11.795718pt;}
.ls1d{letter-spacing:11.803145pt;}
.ls21{letter-spacing:11.808479pt;}
.ls88{letter-spacing:13.330387pt;}
.ls36{letter-spacing:13.562050pt;}
.ls17{letter-spacing:13.625534pt;}
.ls2f{letter-spacing:13.761710pt;}
.ls23{letter-spacing:14.464689pt;}
.ls78{letter-spacing:14.754865pt;}
.ls1a{letter-spacing:14.756352pt;}
.ls1b{letter-spacing:14.757812pt;}
.ls4e{letter-spacing:14.758842pt;}
.lse{letter-spacing:14.760199pt;}
.ls1f{letter-spacing:14.761685pt;}
.ls5a{letter-spacing:14.763145pt;}
.ls2d{letter-spacing:14.764176pt;}
.ls3d{letter-spacing:14.828662pt;}
.ls3b{letter-spacing:14.831383pt;}
.ls70{letter-spacing:15.489509pt;}
.ls67{letter-spacing:15.693532pt;}
.ls5f{letter-spacing:15.828352pt;}
.ls79{letter-spacing:16.412911pt;}
.ls81{letter-spacing:16.535578pt;}
.ls87{letter-spacing:16.600643pt;}
.ls6a{letter-spacing:17.014842pt;}
.ls8{letter-spacing:17.090079pt;}
.ls85{letter-spacing:17.090245pt;}
.ls34{letter-spacing:17.105509pt;}
.ls7a{letter-spacing:17.348980pt;}
.ls40{letter-spacing:17.383720pt;}
.ls61{letter-spacing:17.384199pt;}
.ls5e{letter-spacing:17.397812pt;}
.ls5d{letter-spacing:17.407018pt;}
.ls1e{letter-spacing:17.413909pt;}
.ls3c{letter-spacing:17.414347pt;}
.ls82{letter-spacing:17.682865pt;}
.ls80{letter-spacing:17.709532pt;}
.ls29{letter-spacing:17.711018pt;}
.ls4c{letter-spacing:17.713509pt;}
.ls56{letter-spacing:18.000479pt;}
.ls54{letter-spacing:18.002865pt;}
.ls55{letter-spacing:18.009685pt;}
.ls62{letter-spacing:18.860745pt;}
.ls15{letter-spacing:19.211139pt;}
.ls89{letter-spacing:19.725976pt;}
.ls18{letter-spacing:19.742867pt;}
.ls4a{letter-spacing:19.804745pt;}
.ls4b{letter-spacing:19.810079pt;}
.ls66{letter-spacing:19.853532pt;}
.ls63{letter-spacing:19.928199pt;}
.ls72{letter-spacing:19.948176pt;}
.ls8c{letter-spacing:19.985509pt;}
.ls77{letter-spacing:20.177509pt;}
.ls45{letter-spacing:20.364911pt;}
.ls44{letter-spacing:20.379139pt;}
.ls48{letter-spacing:20.405914pt;}
.ls74{letter-spacing:20.850865pt;}
.ls68{letter-spacing:20.930245pt;}
.ls20{letter-spacing:21.131145pt;}
.ls28{letter-spacing:21.196911pt;}
.ls8b{letter-spacing:21.205828pt;}
.ls7d{letter-spacing:21.224643pt;}
.ls75{letter-spacing:21.254842pt;}
.ls76{letter-spacing:21.260176pt;}
.ls42{letter-spacing:21.339139pt;}
.ls7f{letter-spacing:21.606842pt;}
.ls60{letter-spacing:21.944199pt;}
.ls83{letter-spacing:22.124911pt;}
.ls71{letter-spacing:22.871043pt;}
.ls6f{letter-spacing:22.876376pt;}
.ls86{letter-spacing:23.384199pt;}
.ls3a{letter-spacing:23.463329pt;}
.ls64{letter-spacing:23.468911pt;}
.ls27{letter-spacing:23.628911pt;}
.ls7b{letter-spacing:23.906865pt;}
.ls7c{letter-spacing:23.910842pt;}
.ls39{letter-spacing:24.341812pt;}
.ls5b{letter-spacing:24.712199pt;}
.ls5c{letter-spacing:24.719018pt;}
.ls53{letter-spacing:24.872199pt;}
.ls59{letter-spacing:24.920199pt;}
.lsd{letter-spacing:25.058079pt;}
.ls52{letter-spacing:25.458865pt;}
.lsa{letter-spacing:25.810079pt;}
.ls9{letter-spacing:25.815412pt;}
.ls69{letter-spacing:25.969710pt;}
.ls13{letter-spacing:26.722245pt;}
.ls38{letter-spacing:26.998347pt;}
.ls65{letter-spacing:30.753710pt;}
.ls5{letter-spacing:31.820911pt;}
.ls2e{letter-spacing:36.629812pt;}
.ls25{letter-spacing:548.276132pt;}
.ls47{letter-spacing:690.633465pt;}
.ws145{word-spacing:-42.359791pt;}
.wscc{word-spacing:-34.611401pt;}
.wse4{word-spacing:-32.063846pt;}
.ws19c{word-spacing:-29.521250pt;}
.ws93{word-spacing:-28.613259pt;}
.ws12c{word-spacing:-26.556307pt;}
.wscd{word-spacing:-25.738045pt;}
.ws91{word-spacing:-21.997476pt;}
.wsb4{word-spacing:-19.863119pt;}
.ws154{word-spacing:-19.590121pt;}
.ws153{word-spacing:-19.468249pt;}
.wsb6{word-spacing:-18.476599pt;}
.wsb{word-spacing:-14.760588pt;}
.ws61{word-spacing:-13.581016pt;}
.ws140{word-spacing:-12.543875pt;}
.ws1f{word-spacing:-11.659725pt;}
.ws74{word-spacing:-5.278125pt;}
.wsce{word-spacing:-2.964870pt;}
.wsb0{word-spacing:-2.956616pt;}
.ws105{word-spacing:-2.951282pt;}
.wsc3{word-spacing:-2.911736pt;}
.ws1c1{word-spacing:-2.858602pt;}
.ws1eb{word-spacing:-2.699200pt;}
.ws7a{word-spacing:-2.646067pt;}
.ws84{word-spacing:-2.486665pt;}
.ws1f3{word-spacing:-2.433531pt;}
.wsb9{word-spacing:-2.274129pt;}
.ws1e9{word-spacing:-2.220996pt;}
.ws1df{word-spacing:-2.114728pt;}
.ws1c3{word-spacing:-2.008460pt;}
.ws180{word-spacing:-1.979049pt;}
.ws181{word-spacing:-1.955326pt;}
.ws1d1{word-spacing:-1.849059pt;}
.wsd4{word-spacing:-1.795925pt;}
.ws86{word-spacing:-1.742791pt;}
.wsc8{word-spacing:-1.689657pt;}
.ws1b4{word-spacing:-1.583389pt;}
.ws17f{word-spacing:-1.530255pt;}
.ws1f5{word-spacing:-1.477121pt;}
.ws1ab{word-spacing:-1.423988pt;}
.ws72{word-spacing:-1.370854pt;}
.ws1f8{word-spacing:-1.317720pt;}
.ws41{word-spacing:-1.211452pt;}
.ws1e0{word-spacing:-1.158318pt;}
.wsb3{word-spacing:-1.105184pt;}
.ws80{word-spacing:-1.095207pt;}
.wsb2{word-spacing:-1.079098pt;}
.ws7e{word-spacing:-1.052051pt;}
.ws190{word-spacing:-1.004541pt;}
.ws168{word-spacing:-0.998917pt;}
.ws1a6{word-spacing:-0.945783pt;}
.ws1a2{word-spacing:-0.892649pt;}
.ws1a0{word-spacing:-0.878218pt;}
.ws1a1{word-spacing:-0.876616pt;}
.ws12f{word-spacing:-0.786381pt;}
.ws1fa{word-spacing:-0.680113pt;}
.wsde{word-spacing:-0.626980pt;}
.ws90{word-spacing:-0.599352pt;}
.ws187{word-spacing:-0.573846pt;}
.ws1c8{word-spacing:-0.549939pt;}
.ws18b{word-spacing:-0.520712pt;}
.ws191{word-spacing:-0.467578pt;}
.ws158{word-spacing:-0.414444pt;}
.ws18{word-spacing:-0.361310pt;}
.ws1a3{word-spacing:-0.308176pt;}
.ws83{word-spacing:-0.255043pt;}
.ws1ed{word-spacing:-0.201909pt;}
.ws68{word-spacing:-0.148775pt;}
.ws3f{word-spacing:-0.095641pt;}
.ws11e{word-spacing:-0.071731pt;}
.ws7{word-spacing:-0.053134pt;}
.wse6{word-spacing:-0.047821pt;}
.ws82{word-spacing:-0.042507pt;}
.wsae{word-spacing:-0.037194pt;}
.ws13f{word-spacing:-0.031881pt;}
.wse2{word-spacing:-0.023910pt;}
.wsfa{word-spacing:-0.014216pt;}
.wse1{word-spacing:-0.004251pt;}
.ws20{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.010627pt;}
.wsd8{word-spacing:0.063761pt;}
.wsd7{word-spacing:0.067145pt;}
.ws176{word-spacing:0.116895pt;}
.wsa0{word-spacing:0.123271pt;}
.ws18a{word-spacing:0.189224pt;}
.wsda{word-spacing:0.223162pt;}
.ws19d{word-spacing:0.250792pt;}
.ws40{word-spacing:0.276296pt;}
.wsfc{word-spacing:0.295730pt;}
.wsfe{word-spacing:0.312793pt;}
.ws100{word-spacing:0.329430pt;}
.ws57{word-spacing:0.382564pt;}
.wsc7{word-spacing:0.435698pt;}
.ws1b6{word-spacing:0.463328pt;}
.ws132{word-spacing:0.488832pt;}
.ws195{word-spacing:0.541965pt;}
.ws1dc{word-spacing:0.569276pt;}
.ws1de{word-spacing:0.595099pt;}
.ws13{word-spacing:0.648233pt;}
.ws182{word-spacing:0.701367pt;}
.ws1c9{word-spacing:0.741222pt;}
.ws184{word-spacing:0.754501pt;}
.ws88{word-spacing:0.807635pt;}
.ws175{word-spacing:0.913903pt;}
.ws1af{word-spacing:0.967036pt;}
.ws1ca{word-spacing:0.980326pt;}
.ws1d{word-spacing:1.020170pt;}
.ws161{word-spacing:1.059459pt;}
.ws163{word-spacing:1.071107pt;}
.ws3c{word-spacing:1.073304pt;}
.wsa4{word-spacing:1.082716pt;}
.ws146{word-spacing:1.098168pt;}
.wsa2{word-spacing:1.100936pt;}
.ws147{word-spacing:1.126438pt;}
.ws85{word-spacing:1.179572pt;}
.ws1bb{word-spacing:1.232706pt;}
.ws189{word-spacing:1.285840pt;}
.wsac{word-spacing:1.338973pt;}
.ws8d{word-spacing:1.355980pt;}
.ws4a{word-spacing:1.392107pt;}
.ws9e{word-spacing:1.440994pt;}
.ws197{word-spacing:1.445241pt;}
.ws5f{word-spacing:1.498375pt;}
.ws1b1{word-spacing:1.551509pt;}
.ws2a{word-spacing:1.604643pt;}
.wsdd{word-spacing:1.657777pt;}
.ws44{word-spacing:1.696037pt;}
.ws127{word-spacing:1.699943pt;}
.ws9{word-spacing:1.710911pt;}
.wsad{word-spacing:1.764044pt;}
.ws28{word-spacing:1.817178pt;}
.ws37{word-spacing:1.870312pt;}
.ws142{word-spacing:1.908573pt;}
.ws50{word-spacing:1.923446pt;}
.ws13c{word-spacing:1.976580pt;}
.ws198{word-spacing:2.029714pt;}
.ws121{word-spacing:2.032384pt;}
.ws1ef{word-spacing:2.082848pt;}
.ws1ba{word-spacing:2.135981pt;}
.ws8b{word-spacing:2.163616pt;}
.wsf8{word-spacing:2.189115pt;}
.wse0{word-spacing:2.242249pt;}
.ws12a{word-spacing:2.295383pt;}
.ws10c{word-spacing:2.319309pt;}
.ws62{word-spacing:2.348517pt;}
.ws15{word-spacing:2.401651pt;}
.ws1b2{word-spacing:2.454785pt;}
.ws47{word-spacing:2.503674pt;}
.ws128{word-spacing:2.507919pt;}
.ws19{word-spacing:2.561052pt;}
.ws17d{word-spacing:2.588688pt;}
.wsd9{word-spacing:2.614186pt;}
.ws109{word-spacing:2.667320pt;}
.wseb{word-spacing:2.701875pt;}
.ws23{word-spacing:2.720454pt;}
.ws123{word-spacing:2.727709pt;}
.ws125{word-spacing:2.749696pt;}
.ws1d4{word-spacing:2.773588pt;}
.ws51{word-spacing:2.826722pt;}
.ws1b7{word-spacing:2.879856pt;}
.ws199{word-spacing:2.928746pt;}
.ws3{word-spacing:2.932989pt;}
.ws11a{word-spacing:2.940979pt;}
.ws14d{word-spacing:2.947459pt;}
.wsbd{word-spacing:2.950849pt;}
.ws1bc{word-spacing:2.953276pt;}
.ws1e3{word-spacing:2.956549pt;}
.ws138{word-spacing:2.968793pt;}
.ws29{word-spacing:2.986123pt;}
.ws3b{word-spacing:3.039257pt;}
.wsa9{word-spacing:3.056268pt;}
.wsb7{word-spacing:3.092391pt;}
.ws19b{word-spacing:3.098775pt;}
.wsbf{word-spacing:3.145525pt;}
.ws152{word-spacing:3.189696pt;}
.ws14f{word-spacing:3.189868pt;}
.ws151{word-spacing:3.192793pt;}
.ws11{word-spacing:3.198659pt;}
.ws96{word-spacing:3.226296pt;}
.ws38{word-spacing:3.251793pt;}
.wsdf{word-spacing:3.304927pt;}
.ws43{word-spacing:3.311311pt;}
.ws52{word-spacing:3.358060pt;}
.ws183{word-spacing:3.366002pt;}
.ws185{word-spacing:3.369735pt;}
.ws1e{word-spacing:3.411194pt;}
.wsaa{word-spacing:3.438832pt;}
.ws171{word-spacing:3.464328pt;}
.wsab{word-spacing:3.481340pt;}
.ws71{word-spacing:3.517462pt;}
.wsdb{word-spacing:3.570596pt;}
.ws1ac{word-spacing:3.623730pt;}
.ws17c{word-spacing:3.651368pt;}
.ws39{word-spacing:3.676864pt;}
.ws63{word-spacing:3.729997pt;}
.ws31{word-spacing:3.783131pt;}
.ws8a{word-spacing:3.836265pt;}
.ws16a{word-spacing:3.864793pt;}
.ws4c{word-spacing:3.889399pt;}
.ws6{word-spacing:3.897910pt;}
.ws186{word-spacing:3.942533pt;}
.ws1c7{word-spacing:3.945216pt;}
.ws9c{word-spacing:3.948919pt;}
.ws87{word-spacing:3.995667pt;}
.ws16{word-spacing:4.048801pt;}
.wse9{word-spacing:4.051584pt;}
.wse8{word-spacing:4.052221pt;}
.wsf1{word-spacing:4.079234pt;}
.ws114{word-spacing:4.080135pt;}
.wsea{word-spacing:4.088678pt;}
.wsc5{word-spacing:4.101935pt;}
.ws19a{word-spacing:4.118948pt;}
.ws7b{word-spacing:4.155068pt;}
.ws9b{word-spacing:4.203962pt;}
.ws99{word-spacing:4.204647pt;}
.ws6a{word-spacing:4.208202pt;}
.ws97{word-spacing:4.236423pt;}
.ws95{word-spacing:4.246469pt;}
.ws73{word-spacing:4.261336pt;}
.wsa{word-spacing:4.271963pt;}
.ws69{word-spacing:4.314470pt;}
.ws3a{word-spacing:4.367604pt;}
.ws10e{word-spacing:4.375603pt;}
.ws10a{word-spacing:4.416498pt;}
.ws1c{word-spacing:4.420738pt;}
.ws120{word-spacing:4.423424pt;}
.ws103{word-spacing:4.473872pt;}
.ws15d{word-spacing:4.527005pt;}
.ws2e{word-spacing:4.580139pt;}
.wsf3{word-spacing:4.598159pt;}
.ws5{word-spacing:4.620533pt;}
.ws5d{word-spacing:4.633273pt;}
.ws1cb{word-spacing:4.662528pt;}
.ws4{word-spacing:4.663040pt;}
.ws141{word-spacing:4.671541pt;}
.wsba{word-spacing:4.686407pt;}
.ws1d3{word-spacing:4.739541pt;}
.ws7f{word-spacing:4.777268pt;}
.ws21{word-spacing:4.792675pt;}
.ws10b{word-spacing:4.805990pt;}
.ws24{word-spacing:4.845809pt;}
.ws92{word-spacing:4.884077pt;}
.ws36{word-spacing:4.898943pt;}
.ws14e{word-spacing:4.911666pt;}
.ws94{word-spacing:4.926584pt;}
.ws129{word-spacing:4.952076pt;}
.ws188{word-spacing:4.979139pt;}
.wse7{word-spacing:4.997274pt;}
.ws8{word-spacing:5.005210pt;}
.wse5{word-spacing:5.009835pt;}
.wse3{word-spacing:5.045094pt;}
.ws15e{word-spacing:5.058344pt;}
.ws14{word-spacing:5.111478pt;}
.ws65{word-spacing:5.125393pt;}
.ws5a{word-spacing:5.144793pt;}
.ws16f{word-spacing:5.164612pt;}
.wsa1{word-spacing:5.206400pt;}
.ws156{word-spacing:5.208793pt;}
.wsbc{word-spacing:5.217746pt;}
.wsb1{word-spacing:5.270880pt;}
.ws107{word-spacing:5.282523pt;}
.wsdc{word-spacing:5.324013pt;}
.ws4b{word-spacing:5.377147pt;}
.ws55{word-spacing:5.387774pt;}
.ws46{word-spacing:5.394164pt;}
.ws148{word-spacing:5.430281pt;}
.wsbe{word-spacing:5.440908pt;}
.wsa5{word-spacing:5.474505pt;}
.wsa3{word-spacing:5.482705pt;}
.ws14a{word-spacing:5.483415pt;}
.ws18e{word-spacing:5.536549pt;}
.wsff{word-spacing:5.564806pt;}
.ws81{word-spacing:5.569211pt;}
.ws101{word-spacing:5.572459pt;}
.ws58{word-spacing:5.589683pt;}
.ws5e{word-spacing:5.642817pt;}
.ws9d{word-spacing:5.691714pt;}
.wsd{word-spacing:5.695951pt;}
.ws1dd{word-spacing:5.736473pt;}
.ws8e{word-spacing:5.744474pt;}
.wsd5{word-spacing:5.749084pt;}
.ws133{word-spacing:5.751472pt;}
.ws1ae{word-spacing:5.802218pt;}
.ws19e{word-spacing:5.855352pt;}
.ws3e{word-spacing:5.908486pt;}
.ws10d{word-spacing:5.953690pt;}
.ws1b5{word-spacing:5.961620pt;}
.ws16c{word-spacing:6.014754pt;}
.ws16e{word-spacing:6.056718pt;}
.ws17e{word-spacing:6.067888pt;}
.wsc0{word-spacing:6.121021pt;}
.wsb5{word-spacing:6.174155pt;}
.ws18d{word-spacing:6.197941pt;}
.wsc{word-spacing:6.227289pt;}
.ws17{word-spacing:6.280423pt;}
.ws53{word-spacing:6.333557pt;}
.ws33{word-spacing:6.386691pt;}
.wsc4{word-spacing:6.439825pt;}
.ws10{word-spacing:6.492959pt;}
.ws116{word-spacing:6.527539pt;}
.ws2b{word-spacing:6.546092pt;}
.ws1cc{word-spacing:6.571808pt;}
.ws1cf{word-spacing:6.575360pt;}
.ws5c{word-spacing:6.599226pt;}
.ws1cd{word-spacing:6.605913pt;}
.wsfb{word-spacing:6.641578pt;}
.ws6f{word-spacing:6.705494pt;}
.ws6d{word-spacing:6.718126pt;}
.ws1a7{word-spacing:6.758628pt;}
.ws10f{word-spacing:6.766643pt;}
.ws8c{word-spacing:6.791031pt;}
.ws45{word-spacing:6.796901pt;}
.ws70{word-spacing:6.811762pt;}
.ws111{word-spacing:6.814464pt;}
.ws12b{word-spacing:6.864896pt;}
.ws9f{word-spacing:6.881916pt;}
.ws27{word-spacing:6.918029pt;}
.wsfd{word-spacing:6.966628pt;}
.wsd3{word-spacing:7.024297pt;}
.ws1c2{word-spacing:7.077431pt;}
.ws1ea{word-spacing:7.130565pt;}
.wsa7{word-spacing:7.179466pt;}
.ws30{word-spacing:7.183699pt;}
.ws196{word-spacing:7.201578pt;}
.wsa6{word-spacing:7.221973pt;}
.ws130{word-spacing:7.236833pt;}
.ws167{word-spacing:7.289967pt;}
.ws1c5{word-spacing:7.306988pt;}
.ws2f{word-spacing:7.343100pt;}
.ws60{word-spacing:7.369268pt;}
.ws1aa{word-spacing:7.396234pt;}
.ws1e8{word-spacing:7.449368pt;}
.ws1db{word-spacing:7.465014pt;}
.ws12{word-spacing:7.502502pt;}
.ws18f{word-spacing:7.555636pt;}
.ws7c{word-spacing:7.571061pt;}
.ws42{word-spacing:7.604538pt;}
.ws35{word-spacing:7.608770pt;}
.ws164{word-spacing:7.648118pt;}
.ws13b{word-spacing:7.661904pt;}
.ws108{word-spacing:7.715037pt;}
.ws1e2{word-spacing:7.768171pt;}
.ws1be{word-spacing:7.821222pt;}
.ws18c{word-spacing:7.821224pt;}
.ws1c0{word-spacing:7.821305pt;}
.ws1f9{word-spacing:7.874439pt;}
.ws15f{word-spacing:7.921985pt;}
.wsd2{word-spacing:7.927573pt;}
.ws1c6{word-spacing:7.962163pt;}
.ws178{word-spacing:7.980707pt;}
.ws166{word-spacing:8.033841pt;}
.ws8f{word-spacing:8.072117pt;}
.ws1d6{word-spacing:8.086975pt;}
.ws1d8{word-spacing:8.094126pt;}
.ws1a5{word-spacing:8.103269pt;}
.ws13a{word-spacing:8.140108pt;}
.ws22{word-spacing:8.193242pt;}
.ws137{word-spacing:8.228459pt;}
.ws1a8{word-spacing:8.246376pt;}
.ws159{word-spacing:8.285284pt;}
.ws134{word-spacing:8.340459pt;}
.ws25{word-spacing:8.352644pt;}
.ws2d{word-spacing:8.405778pt;}
.ws193{word-spacing:8.420139pt;}
.ws12d{word-spacing:8.427961pt;}
.ws192{word-spacing:8.446051pt;}
.ws194{word-spacing:8.458912pt;}
.ws54{word-spacing:8.495072pt;}
.ws4d{word-spacing:8.512045pt;}
.ws173{word-spacing:8.565179pt;}
.ws162{word-spacing:8.610248pt;}
.ws174{word-spacing:8.618313pt;}
.ws1f2{word-spacing:8.671447pt;}
.wsd6{word-spacing:8.724581pt;}
.ws49{word-spacing:8.777715pt;}
.ws76{word-spacing:8.809019pt;}
.ws75{word-spacing:8.811657pt;}
.ws98{word-spacing:8.826061pt;}
.ws78{word-spacing:8.830849pt;}
.ws1d0{word-spacing:8.883983pt;}
.ws15c{word-spacing:8.937116pt;}
.ws15a{word-spacing:8.938333pt;}
.ws1ad{word-spacing:8.990250pt;}
.ws56{word-spacing:9.043384pt;}
.wsd0{word-spacing:9.096518pt;}
.wsc2{word-spacing:9.149652pt;}
.wsf6{word-spacing:9.226359pt;}
.wsf7{word-spacing:9.255920pt;}
.ws89{word-spacing:9.309053pt;}
.ws9a{word-spacing:9.310332pt;}
.ws136{word-spacing:9.314645pt;}
.wsf2{word-spacing:9.340806pt;}
.ws34{word-spacing:9.362187pt;}
.ws12e{word-spacing:9.388245pt;}
.ws6c{word-spacing:9.415321pt;}
.ws160{word-spacing:9.450248pt;}
.ws1a9{word-spacing:9.468455pt;}
.ws1e1{word-spacing:9.521589pt;}
.wsca{word-spacing:9.574723pt;}
.wsc6{word-spacing:9.627857pt;}
.wsbb{word-spacing:9.680991pt;}
.ws1d5{word-spacing:9.734124pt;}
.wsf9{word-spacing:9.735582pt;}
.ws135{word-spacing:9.740245pt;}
.ws4f{word-spacing:9.787258pt;}
.ws1d2{word-spacing:9.840392pt;}
.wsf4{word-spacing:9.876459pt;}
.ws170{word-spacing:9.893526pt;}
.ws1bf{word-spacing:9.904153pt;}
.ws15b{word-spacing:9.946660pt;}
.wse{word-spacing:9.999794pt;}
.ws172{word-spacing:10.051547pt;}
.ws32{word-spacing:10.052928pt;}
.ws14b{word-spacing:10.106061pt;}
.ws1b9{word-spacing:10.154930pt;}
.ws3d{word-spacing:10.159195pt;}
.wsc1{word-spacing:10.212329pt;}
.ws1bd{word-spacing:10.318597pt;}
.ws1ec{word-spacing:10.371731pt;}
.ws26{word-spacing:10.477999pt;}
.ws19f{word-spacing:10.531132pt;}
.ws1b0{word-spacing:10.584266pt;}
.wsd1{word-spacing:10.637400pt;}
.ws144{word-spacing:10.690534pt;}
.ws6b{word-spacing:10.743668pt;}
.ws1f7{word-spacing:10.849936pt;}
.wsf{word-spacing:10.903069pt;}
.ws1b8{word-spacing:10.936898pt;}
.wsc9{word-spacing:10.956203pt;}
.ws59{word-spacing:11.006601pt;}
.ws48{word-spacing:11.062471pt;}
.ws1b3{word-spacing:11.221873pt;}
.ws79{word-spacing:11.233578pt;}
.wsb8{word-spacing:11.275007pt;}
.ws1e5{word-spacing:11.381274pt;}
.ws1da{word-spacing:11.487542pt;}
.wscb{word-spacing:11.540676pt;}
.wsee{word-spacing:11.615155pt;}
.wsf0{word-spacing:11.634248pt;}
.wsec{word-spacing:11.646944pt;}
.ws139{word-spacing:11.660245pt;}
.ws5b{word-spacing:11.798544pt;}
.ws2c{word-spacing:11.806345pt;}
.ws14c{word-spacing:11.847951pt;}
.ws66{word-spacing:11.954248pt;}
.ws150{word-spacing:12.093284pt;}
.ws4e{word-spacing:12.125148pt;}
.ws16b{word-spacing:12.255582pt;}
.wsa8{word-spacing:12.287086pt;}
.ws64{word-spacing:12.631951pt;}
.ws143{word-spacing:12.709621pt;}
.ws155{word-spacing:12.759582pt;}
.ws169{word-spacing:12.765284pt;}
.ws67{word-spacing:12.788915pt;}
.wsf5{word-spacing:12.996915pt;}
.ws149{word-spacing:12.999582pt;}
.ws131{word-spacing:13.137294pt;}
.ws1f6{word-spacing:13.240960pt;}
.ws6e{word-spacing:13.382912pt;}
.ws1f1{word-spacing:13.400361pt;}
.ws177{word-spacing:13.491139pt;}
.ws1e4{word-spacing:13.666031pt;}
.ws1d7{word-spacing:13.955934pt;}
.ws77{word-spacing:14.084459pt;}
.ws157{word-spacing:14.109284pt;}
.wsaf{word-spacing:14.428931pt;}
.ws1d9{word-spacing:14.753211pt;}
.ws16d{word-spacing:14.946617pt;}
.ws102{word-spacing:15.062912pt;}
.ws1f0{word-spacing:15.313180pt;}
.ws165{word-spacing:15.597284pt;}
.ws1a4{word-spacing:16.791582pt;}
.ws1e7{word-spacing:16.800929pt;}
.wsef{word-spacing:16.882139pt;}
.ws106{word-spacing:17.095857pt;}
.ws104{word-spacing:17.375296pt;}
.ws1ee{word-spacing:17.438535pt;}
.ws1e6{word-spacing:18.448079pt;}
.ws122{word-spacing:19.394430pt;}
.ws11f{word-spacing:19.976916pt;}
.ws124{word-spacing:20.121175pt;}
.ws11c{word-spacing:20.414316pt;}
.wsed{word-spacing:20.525284pt;}
.ws126{word-spacing:21.222311pt;}
.ws115{word-spacing:21.571649pt;}
.ws11d{word-spacing:22.995582pt;}
.ws11b{word-spacing:23.454126pt;}
.ws118{word-spacing:24.019649pt;}
.ws112{word-spacing:24.312803pt;}
.ws2{word-spacing:24.866747pt;}
.ws0{word-spacing:24.943260pt;}
.ws1ce{word-spacing:25.126132pt;}
.ws119{word-spacing:26.600916pt;}
.ws113{word-spacing:26.846249pt;}
.ws117{word-spacing:27.059459pt;}
.ws110{word-spacing:27.304793pt;}
.ws1{word-spacing:29.580767pt;}
.ws1b{word-spacing:30.498839pt;}
.ws1a{word-spacing:32.130070pt;}
.ws1f4{word-spacing:38.638948pt;}
.wscf{word-spacing:497.556154pt;}
.ws1c4{word-spacing:559.108636pt;}
.ws13d{word-spacing:852.959302pt;}
.ws13e{word-spacing:853.236212pt;}
.ws179{word-spacing:952.657272pt;}
.ws17a{word-spacing:953.807064pt;}
.ws17b{word-spacing:957.465731pt;}
._1f{margin-left:-1929.294956pt;}
._21{margin-left:-1928.277965pt;}
._13{margin-left:-1914.473087pt;}
._47{margin-left:-1872.244044pt;}
._3a{margin-left:-1839.043924pt;}
._31{margin-left:-1772.417114pt;}
._4{margin-left:-1766.991926pt;}
._35{margin-left:-1663.278153pt;}
._4a{margin-left:-1515.620609pt;}
._48{margin-left:-1487.755060pt;}
._51{margin-left:-1424.538083pt;}
._37{margin-left:-1367.737980pt;}
._30{margin-left:-1280.706827pt;}
._4d{margin-left:-1148.176518pt;}
._46{margin-left:-1046.185007pt;}
._44{margin-left:-1041.335994pt;}
._49{margin-left:-946.293357pt;}
._29{margin-left:-859.649638pt;}
._4e{margin-left:-845.179589pt;}
._3d{margin-left:-739.229152pt;}
._45{margin-left:-727.126764pt;}
._3b{margin-left:-701.320303pt;}
._3e{margin-left:-661.151085pt;}
._39{margin-left:-525.835066pt;}
._3f{margin-left:-423.576293pt;}
._1d{margin-left:-397.783842pt;}
._50{margin-left:-367.054510pt;}
._43{margin-left:-325.721655pt;}
._5{margin-left:-315.149013pt;}
._42{margin-left:-299.154721pt;}
._38{margin-left:-231.260910pt;}
._25{margin-left:-37.446933pt;}
._40{margin-left:-25.897487pt;}
._4f{margin-left:-24.826252pt;}
._2d{margin-left:-11.287635pt;}
._24{margin-left:-7.250107pt;}
._10{margin-left:-5.266621pt;}
._2{margin-left:-3.825653pt;}
._0{margin-left:-2.065853pt;}
._6{margin-left:-0.956410pt;}
._b{width:0.903291pt;}
._3{width:2.065853pt;}
._28{width:2.975497pt;}
._2e{width:4.144442pt;}
._2b{width:5.451305pt;}
._34{width:6.353744pt;}
._1e{width:7.699303pt;}
._32{width:12.633124pt;}
._22{width:13.808437pt;}
._11{width:14.864747pt;}
._2f{width:15.919894pt;}
._12{width:17.002852pt;}
._20{width:18.059147pt;}
._7{width:19.166404pt;}
._1a{width:20.460831pt;}
._d{width:22.150469pt;}
._e{width:23.837987pt;}
._15{width:25.098304pt;}
._26{width:26.088729pt;}
._9{width:27.145038pt;}
._1b{width:28.473385pt;}
._f{width:30.048297pt;}
._8{width:31.236361pt;}
._2c{width:32.145136pt;}
._1{width:33.130158pt;}
._c{width:34.218210pt;}
._36{width:35.174620pt;}
._18{width:36.768636pt;}
._27{width:37.671911pt;}
._4c{width:38.847239pt;}
._17{width:39.903534pt;}
._33{width:40.872795pt;}
._41{width:41.769572pt;}
._23{width:42.661218pt;}
._a{width:43.882206pt;}
._19{width:45.529341pt;}
._16{width:46.804569pt;}
._2a{width:48.086134pt;}
._3c{width:49.142459pt;}
._1c{width:51.799152pt;}
._4b{width:62.219758pt;}
._14{width:496.986998pt;}
.fs5{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:116.865333pt;}
.y23{bottom:119.153333pt;}
.y24{bottom:121.010667pt;}
.y154{bottom:159.004000pt;}
.y92{bottom:159.468000pt;}
.y120{bottom:161.542667pt;}
.yeb{bottom:162.754667pt;}
.y50{bottom:163.400000pt;}
.y1f0{bottom:164.317333pt;}
.y192{bottom:164.742667pt;}
.y134{bottom:164.978667pt;}
.y102{bottom:165.305333pt;}
.y176{bottom:166.685333pt;}
.y61{bottom:166.973333pt;}
.y75{bottom:169.398667pt;}
.y171{bottom:170.552000pt;}
.y144{bottom:170.958667pt;}
.ya5{bottom:173.614667pt;}
.y153{bottom:174.944000pt;}
.y91{bottom:175.408000pt;}
.y4f{bottom:176.020000pt;}
.y11f{bottom:177.482667pt;}
.yd0{bottom:178.341333pt;}
.y1ef{bottom:180.257333pt;}
.y191{bottom:180.684000pt;}
.y133{bottom:180.918667pt;}
.y101{bottom:181.245333pt;}
.y74{bottom:182.018667pt;}
.y175{bottom:182.625333pt;}
.y60{bottom:182.913333pt;}
.y1e0{bottom:185.570667pt;}
.y170{bottom:186.492000pt;}
.y143{bottom:186.898667pt;}
.y4e{bottom:188.638667pt;}
.ya4{bottom:189.556000pt;}
.y152{bottom:190.884000pt;}
.y90{bottom:191.348000pt;}
.y22{bottom:191.445333pt;}
.y11e{bottom:193.422667pt;}
.y73{bottom:194.637333pt;}
.y190{bottom:196.624000pt;}
.y132{bottom:196.860000pt;}
.y100{bottom:197.186667pt;}
.y5f{bottom:198.853333pt;}
.y4d{bottom:201.258667pt;}
.y1d3{bottom:201.510667pt;}
.yea{bottom:202.353333pt;}
.y16f{bottom:202.432000pt;}
.y142{bottom:202.838667pt;}
.ya3{bottom:205.496000pt;}
.y151{bottom:206.824000pt;}
.y72{bottom:207.257333pt;}
.y8f{bottom:207.288000pt;}
.y21{bottom:207.385333pt;}
.y11d{bottom:209.362667pt;}
.y1bb{bottom:210.809333pt;}
.y18f{bottom:212.564000pt;}
.y131{bottom:212.800000pt;}
.yff{bottom:213.126667pt;}
.y4c{bottom:213.877333pt;}
.y5e{bottom:214.794667pt;}
.y174{bottom:215.708000pt;}
.y211{bottom:216.633333pt;}
.y1d2{bottom:217.450667pt;}
.ycf{bottom:217.940000pt;}
.ye9{bottom:218.293333pt;}
.y16e{bottom:218.372000pt;}
.y141{bottom:218.778667pt;}
.y71{bottom:219.876000pt;}
.ya2{bottom:221.436000pt;}
.y150{bottom:222.764000pt;}
.y8e{bottom:223.228000pt;}
.y20{bottom:223.325333pt;}
.y11c{bottom:225.302667pt;}
.y1ba{bottom:226.749333pt;}
.y173{bottom:228.328000pt;}
.y130{bottom:228.740000pt;}
.yfe{bottom:229.066667pt;}
.y4b{bottom:230.248000pt;}
.y5d{bottom:230.734667pt;}
.y230{bottom:232.328000pt;}
.y210{bottom:232.573333pt;}
.yce{bottom:233.880000pt;}
.ye8{bottom:234.234667pt;}
.y16d{bottom:234.312000pt;}
.y140{bottom:234.720000pt;}
.y70{bottom:236.245333pt;}
.ya1{bottom:237.376000pt;}
.y14f{bottom:238.704000pt;}
.y1f{bottom:239.265333pt;}
.y11b{bottom:241.242667pt;}
.y1b9{bottom:242.689333pt;}
.y1d1{bottom:244.018667pt;}
.y14d{bottom:244.585333pt;}
.y12f{bottom:244.680000pt;}
.yfd{bottom:245.006667pt;}
.y6f{bottom:245.168000pt;}
.y18e{bottom:245.506667pt;}
.y5c{bottom:246.674667pt;}
.y8d{bottom:247.065333pt;}
.y22f{bottom:248.269333pt;}
.y20f{bottom:248.514667pt;}
.y1ee{bottom:249.332000pt;}
.ycd{bottom:249.821333pt;}
.y16c{bottom:250.252000pt;}
.y13f{bottom:250.660000pt;}
.ya0{bottom:253.316000pt;}
.y14e{bottom:254.645333pt;}
.y8c{bottom:256.177333pt;}
.ye7{bottom:256.301333pt;}
.y14c{bottom:257.205333pt;}
.y1b8{bottom:258.629333pt;}
.y1d0{bottom:259.958667pt;}
.y18d{bottom:260.118667pt;}
.y12e{bottom:260.620000pt;}
.yfc{bottom:260.946667pt;}
.y11a{bottom:261.168000pt;}
.y6e{bottom:261.537333pt;}
.y5b{bottom:262.614667pt;}
.y22e{bottom:264.209333pt;}
.y20e{bottom:264.454667pt;}
.y1ed{bottom:265.272000pt;}
.ye6{bottom:265.412000pt;}
.ycc{bottom:265.761333pt;}
.y16b{bottom:266.193333pt;}
.y13e{bottom:266.600000pt;}
.y1e{bottom:267.161333pt;}
.y9f{bottom:269.256000pt;}
.y14b{bottom:269.825333pt;}
.y4a{bottom:270.585333pt;}
.y1b7{bottom:274.570667pt;}
.y18c{bottom:274.730667pt;}
.y1cf{bottom:275.898667pt;}
.y12d{bottom:276.561333pt;}
.yfb{bottom:276.886667pt;}
.y5a{bottom:278.554667pt;}
.y22d{bottom:280.149333pt;}
.y1ec{bottom:281.212000pt;}
.ycb{bottom:281.701333pt;}
.y16a{bottom:282.133333pt;}
.y14a{bottom:282.444000pt;}
.y13d{bottom:282.540000pt;}
.y9e{bottom:285.197333pt;}
.y49{bottom:286.525333pt;}
.y18b{bottom:289.342667pt;}
.y20d{bottom:290.204000pt;}
.y1b6{bottom:290.510667pt;}
.y12c{bottom:292.501333pt;}
.y119{bottom:293.049333pt;}
.y8b{bottom:293.058667pt;}
.y59{bottom:294.496000pt;}
.y149{bottom:295.064000pt;}
.yca{bottom:297.641333pt;}
.y169{bottom:298.073333pt;}
.y13c{bottom:298.480000pt;}
.y6d{bottom:301.137333pt;}
.y48{bottom:302.465333pt;}
.y18a{bottom:303.954667pt;}
.y22c{bottom:305.653333pt;}
.y20c{bottom:306.144000pt;}
.y1b5{bottom:306.450667pt;}
.y1eb{bottom:307.778667pt;}
.y12b{bottom:308.441333pt;}
.y118{bottom:308.989333pt;}
.y8a{bottom:308.998667pt;}
.y58{bottom:310.436000pt;}
.ye5{bottom:313.144000pt;}
.yc9{bottom:313.581333pt;}
.y168{bottom:314.013333pt;}
.y13b{bottom:314.420000pt;}
.y1d{bottom:316.693333pt;}
.y6c{bottom:317.077333pt;}
.y47{bottom:318.405333pt;}
.y189{bottom:318.566667pt;}
.y148{bottom:320.421333pt;}
.yfa{bottom:321.121333pt;}
.y22b{bottom:321.593333pt;}
.y20b{bottom:322.084000pt;}
.y1b4{bottom:322.390667pt;}
.y1ea{bottom:323.718667pt;}
.y12a{bottom:324.381333pt;}
.y117{bottom:324.929333pt;}
.y89{bottom:324.938667pt;}
.y57{bottom:326.376000pt;}
.ye4{bottom:329.084000pt;}
.yc8{bottom:329.521333pt;}
.y167{bottom:329.953333pt;}
.y13a{bottom:330.361333pt;}
.y1c{bottom:332.633333pt;}
.y6b{bottom:333.017333pt;}
.y188{bottom:333.178667pt;}
.y46{bottom:334.345333pt;}
.y1ce{bottom:334.346667pt;}
.yf9{bottom:335.733333pt;}
.y1b3{bottom:338.330667pt;}
.y129{bottom:340.321333pt;}
.y116{bottom:340.869333pt;}
.y88{bottom:340.880000pt;}
.y56{bottom:342.316000pt;}
.y214{bottom:344.973333pt;}
.ye3{bottom:345.024000pt;}
.y166{bottom:345.893333pt;}
.y139{bottom:346.301333pt;}
.yc7{bottom:346.790667pt;}
.y22a{bottom:347.098667pt;}
.y187{bottom:347.790667pt;}
.y20a{bottom:347.833333pt;}
.y6a{bottom:348.957333pt;}
.y45{bottom:350.286667pt;}
.yf8{bottom:350.345333pt;}
.y1b2{bottom:354.270667pt;}
.y128{bottom:356.261333pt;}
.y115{bottom:356.809333pt;}
.y87{bottom:356.820000pt;}
.y1b{bottom:357.725333pt;}
.y55{bottom:358.256000pt;}
.y1cd{bottom:360.913333pt;}
.ye2{bottom:360.964000pt;}
.y165{bottom:361.834667pt;}
.y138{bottom:362.241333pt;}
.y229{bottom:363.038667pt;}
.y209{bottom:363.774667pt;}
.y69{bottom:364.898667pt;}
.yf7{bottom:364.957333pt;}
.y44{bottom:366.226667pt;}
.y1b1{bottom:370.212000pt;}
.y114{bottom:372.750667pt;}
.y1a{bottom:373.665333pt;}
.y54{bottom:374.196000pt;}
.y186{bottom:374.609333pt;}
.y1cc{bottom:376.853333pt;}
.ye1{bottom:376.904000pt;}
.y164{bottom:377.774667pt;}
.y137{bottom:378.181333pt;}
.yc6{bottom:378.670667pt;}
.yf6{bottom:379.569333pt;}
.y68{bottom:380.838667pt;}
.y43{bottom:382.166667pt;}
.y1b0{bottom:386.152000pt;}
.y228{bottom:388.542667pt;}
.y113{bottom:388.690667pt;}
.y208{bottom:389.524000pt;}
.y19{bottom:389.605333pt;}
.y53{bottom:390.137333pt;}
.y1df{bottom:392.793333pt;}
.ye0{bottom:392.844000pt;}
.y163{bottom:393.714667pt;}
.y136{bottom:394.121333pt;}
.yf5{bottom:394.181333pt;}
.yc5{bottom:394.610667pt;}
.y67{bottom:396.778667pt;}
.y42{bottom:398.106667pt;}
.y127{bottom:399.898667pt;}
.y86{bottom:400.456000pt;}
.y1af{bottom:402.092000pt;}
.y1cb{bottom:403.420000pt;}
.y227{bottom:404.482667pt;}
.y112{bottom:404.630667pt;}
.y207{bottom:405.464000pt;}
.y18{bottom:405.545333pt;}
.y1de{bottom:408.733333pt;}
.ydf{bottom:408.785333pt;}
.yf4{bottom:408.792000pt;}
.y162{bottom:409.654667pt;}
.y52{bottom:410.062667pt;}
.yc4{bottom:410.552000pt;}
.y126{bottom:412.517333pt;}
.y66{bottom:412.718667pt;}
.y85{bottom:413.076000pt;}
.y41{bottom:414.046667pt;}
.y1ae{bottom:418.032000pt;}
.y1ca{bottom:419.360000pt;}
.y111{bottom:420.570667pt;}
.y206{bottom:421.404000pt;}
.y17{bottom:421.485333pt;}
.yf3{bottom:423.404000pt;}
.yde{bottom:424.725333pt;}
.y125{bottom:425.137333pt;}
.y161{bottom:425.594667pt;}
.y84{bottom:425.694667pt;}
.y135{bottom:426.002667pt;}
.yc3{bottom:426.492000pt;}
.y65{bottom:428.658667pt;}
.y40{bottom:429.986667pt;}
.y226{bottom:429.988000pt;}
.y1ad{bottom:433.972000pt;}
.y1dd{bottom:435.301333pt;}
.y110{bottom:436.510667pt;}
.y205{bottom:437.344000pt;}
.y16{bottom:437.426667pt;}
.y51{bottom:437.957333pt;}
.yf2{bottom:438.016000pt;}
.y83{bottom:438.314667pt;}
.y172{bottom:439.949333pt;}
.ydd{bottom:440.665333pt;}
.y160{bottom:441.536000pt;}
.y185{bottom:441.942667pt;}
.yc2{bottom:442.432000pt;}
.y147{bottom:443.396000pt;}
.y64{bottom:444.598667pt;}
.y3f{bottom:445.928000pt;}
.y1ac{bottom:449.912000pt;}
.y124{bottom:450.628000pt;}
.y82{bottom:450.933333pt;}
.y1dc{bottom:451.241333pt;}
.y10f{bottom:452.450667pt;}
.yf1{bottom:452.628000pt;}
.y15{bottom:453.366667pt;}
.ydc{bottom:456.605333pt;}
.y15f{bottom:457.476000pt;}
.y184{bottom:457.882667pt;}
.yc1{bottom:458.372000pt;}
.y63{bottom:460.540000pt;}
.y3e{bottom:461.868000pt;}
.y204{bottom:463.094667pt;}
.y81{bottom:463.553333pt;}
.y1ab{bottom:465.853333pt;}
.yf0{bottom:467.240000pt;}
.y10e{bottom:468.392000pt;}
.y14{bottom:469.306667pt;}
.y225{bottom:471.432000pt;}
.ydb{bottom:472.545333pt;}
.y15e{bottom:473.416000pt;}
.y183{bottom:473.822667pt;}
.yc0{bottom:474.312000pt;}
.y80{bottom:476.172000pt;}
.y9d{bottom:476.480000pt;}
.y3d{bottom:477.808000pt;}
.y203{bottom:479.034667pt;}
.y1aa{bottom:481.793333pt;}
.yef{bottom:481.852000pt;}
.y10d{bottom:484.332000pt;}
.y13{bottom:485.246667pt;}
.y224{bottom:487.372000pt;}
.yda{bottom:488.486667pt;}
.y7f{bottom:488.792000pt;}
.y15d{bottom:489.356000pt;}
.y182{bottom:489.762667pt;}
.ybf{bottom:490.252000pt;}
.y9c{bottom:492.420000pt;}
.y3c{bottom:493.748000pt;}
.y202{bottom:494.974667pt;}
.yee{bottom:496.464000pt;}
.y1a9{bottom:497.733333pt;}
.y12{bottom:501.186667pt;}
.y7e{bottom:501.410667pt;}
.y1c9{bottom:504.374667pt;}
.yd9{bottom:504.426667pt;}
.y15c{bottom:505.296000pt;}
.y181{bottom:505.704000pt;}
.ybe{bottom:506.193333pt;}
.y9b{bottom:508.360000pt;}
.y3b{bottom:509.688000pt;}
.y10c{bottom:512.226667pt;}
.y223{bottom:512.876000pt;}
.y1a8{bottom:513.673333pt;}
.y7d{bottom:514.030667pt;}
.y11{bottom:517.128000pt;}
.y1c8{bottom:520.316000pt;}
.yd8{bottom:520.366667pt;}
.y201{bottom:520.724000pt;}
.y15b{bottom:521.236000pt;}
.y180{bottom:521.644000pt;}
.yed{bottom:522.034667pt;}
.ybd{bottom:522.133333pt;}
.y9a{bottom:524.300000pt;}
.y3a{bottom:525.629333pt;}
.y7c{bottom:526.649333pt;}
.y222{bottom:528.817333pt;}
.y1a7{bottom:529.613333pt;}
.y10{bottom:533.068000pt;}
.ybc{bottom:534.616000pt;}
.y1c7{bottom:536.256000pt;}
.yd7{bottom:536.306667pt;}
.y200{bottom:536.664000pt;}
.y15a{bottom:537.177333pt;}
.y17f{bottom:537.584000pt;}
.ybb{bottom:538.073333pt;}
.y7b{bottom:539.269333pt;}
.y99{bottom:540.240000pt;}
.y39{bottom:541.569333pt;}
.y1a6{bottom:545.554667pt;}
.y1e9{bottom:546.882667pt;}
.yf{bottom:549.008000pt;}
.yba{bottom:550.556000pt;}
.y7a{bottom:551.888000pt;}
.y10b{bottom:552.077333pt;}
.y1c6{bottom:552.196000pt;}
.yd6{bottom:552.246667pt;}
.y17e{bottom:553.524000pt;}
.yb9{bottom:554.013333pt;}
.y221{bottom:554.321333pt;}
.y98{bottom:556.181333pt;}
.y38{bottom:557.509333pt;}
.y1a5{bottom:561.494667pt;}
.y123{bottom:561.532000pt;}
.y1ff{bottom:562.413333pt;}
.y1e8{bottom:562.822667pt;}
.y79{bottom:564.508000pt;}
.ye{bottom:564.948000pt;}
.y146{bottom:566.369333pt;}
.y10a{bottom:568.017333pt;}
.y1c5{bottom:568.136000pt;}
.yd5{bottom:568.186667pt;}
.y17d{bottom:569.464000pt;}
.yb8{bottom:569.953333pt;}
.y220{bottom:570.261333pt;}
.y97{bottom:572.121333pt;}
.y37{bottom:573.449333pt;}
.y1a4{bottom:577.434667pt;}
.y1fe{bottom:578.354667pt;}
.y1db{bottom:578.762667pt;}
.y159{bottom:580.813333pt;}
.yd{bottom:580.888000pt;}
.y109{bottom:583.958667pt;}
.y17c{bottom:585.404000pt;}
.yb7{bottom:585.893333pt;}
.y96{bottom:588.061333pt;}
.y36{bottom:589.389333pt;}
.y78{bottom:589.945333pt;}
.y1a3{bottom:593.374667pt;}
.y158{bottom:593.432000pt;}
.y1fd{bottom:594.294667pt;}
.y1c4{bottom:594.702667pt;}
.y21f{bottom:595.765333pt;}
.yc{bottom:596.828000pt;}
.y108{bottom:599.898667pt;}
.y17b{bottom:601.345333pt;}
.yb6{bottom:601.834667pt;}
.y95{bottom:604.001333pt;}
.y35{bottom:605.329333pt;}
.y157{bottom:606.052000pt;}
.y1a2{bottom:609.314667pt;}
.y213{bottom:610.642667pt;}
.y1c3{bottom:610.644000pt;}
.yd4{bottom:611.005333pt;}
.y21e{bottom:611.706667pt;}
.yb{bottom:612.769333pt;}
.y107{bottom:615.838667pt;}
.y17a{bottom:617.285333pt;}
.yb5{bottom:617.774667pt;}
.y156{bottom:618.670667pt;}
.y94{bottom:619.941333pt;}
.y1fc{bottom:620.044000pt;}
.y34{bottom:621.270667pt;}
.y1a1{bottom:625.254667pt;}
.yd3{bottom:625.617333pt;}
.y1da{bottom:626.584000pt;}
.y155{bottom:631.290667pt;}
.y237{bottom:631.897333pt;}
.y62{bottom:633.225333pt;}
.yb4{bottom:633.714667pt;}
.y93{bottom:635.881333pt;}
.y1fb{bottom:635.984000pt;}
.ya{bottom:636.678667pt;}
.y33{bottom:637.210667pt;}
.yd2{bottom:640.229333pt;}
.y1a0{bottom:641.196000pt;}
.y1e7{bottom:647.837333pt;}
.y179{bottom:649.165333pt;}
.yb3{bottom:649.654667pt;}
.y32{bottom:653.150667pt;}
.yd1{bottom:654.841333pt;}
.y19f{bottom:657.136000pt;}
.y236{bottom:658.464000pt;}
.y1fa{bottom:661.733333pt;}
.y106{bottom:662.862667pt;}
.y1e6{bottom:663.777333pt;}
.y178{bottom:665.105333pt;}
.yb2{bottom:665.594667pt;}
.yec{bottom:666.408000pt;}
.y31{bottom:669.090667pt;}
.y122{bottom:672.437333pt;}
.y19e{bottom:673.076000pt;}
.y235{bottom:674.404000pt;}
.y1f9{bottom:677.674667pt;}
.y103{bottom:678.374667pt;}
.y21d{bottom:678.654667pt;}
.y1c2{bottom:679.717333pt;}
.y177{bottom:681.045333pt;}
.yb1{bottom:681.534667pt;}
.y30{bottom:685.030667pt;}
.y19d{bottom:689.016000pt;}
.y145{bottom:689.344000pt;}
.y1e5{bottom:690.344000pt;}
.y105{bottom:690.993333pt;}
.y77{bottom:691.934667pt;}
.y21c{bottom:694.594667pt;}
.y104{bottom:694.978667pt;}
.y1c1{bottom:695.657333pt;}
.yb0{bottom:697.476000pt;}
.y2f{bottom:700.970667pt;}
.y1f8{bottom:703.424000pt;}
.y19c{bottom:704.956000pt;}
.y1e4{bottom:706.285333pt;}
.y1d9{bottom:711.598667pt;}
.y9{bottom:712.262667pt;}
.yaf{bottom:713.416000pt;}
.y2e{bottom:716.912000pt;}
.y1f7{bottom:719.364000pt;}
.y21b{bottom:720.100000pt;}
.y19b{bottom:720.896000pt;}
.y1c0{bottom:723.553333pt;}
.y1d8{bottom:727.538667pt;}
.y8{bottom:728.632000pt;}
.yae{bottom:729.356000pt;}
.y2d{bottom:732.852000pt;}
.y1f6{bottom:735.304000pt;}
.y21a{bottom:736.040000pt;}
.y19a{bottom:736.837333pt;}
.y7{bottom:737.501333pt;}
.y1d7{bottom:743.478667pt;}
.yad{bottom:745.296000pt;}
.y2c{bottom:748.792000pt;}
.y199{bottom:752.777333pt;}
.y6{bottom:753.870667pt;}
.y212{bottom:754.105333pt;}
.y234{bottom:759.418667pt;}
.y1f5{bottom:761.053333pt;}
.yac{bottom:761.236000pt;}
.y219{bottom:761.544000pt;}
.y1bf{bottom:763.404000pt;}
.y2b{bottom:764.732000pt;}
.y5{bottom:766.490667pt;}
.y198{bottom:768.717333pt;}
.y1d6{bottom:770.045333pt;}
.y1e3{bottom:775.358667pt;}
.y1f4{bottom:776.993333pt;}
.yab{bottom:777.177333pt;}
.y218{bottom:777.484000pt;}
.y76{bottom:779.342667pt;}
.y2a{bottom:780.672000pt;}
.y121{bottom:783.341333pt;}
.y197{bottom:784.657333pt;}
.y1d5{bottom:785.985333pt;}
.y4{bottom:788.642667pt;}
.y1be{bottom:789.970667pt;}
.y233{bottom:791.298667pt;}
.y1f3{bottom:792.934667pt;}
.yaa{bottom:793.117333pt;}
.y217{bottom:793.424000pt;}
.y29{bottom:796.612000pt;}
.y196{bottom:800.597333pt;}
.y1d4{bottom:801.926667pt;}
.y1bd{bottom:805.910667pt;}
.y232{bottom:807.240000pt;}
.ya9{bottom:809.057333pt;}
.y28{bottom:812.553333pt;}
.y195{bottom:816.537333pt;}
.y1e2{bottom:817.866667pt;}
.y1f2{bottom:818.684000pt;}
.y216{bottom:818.929333pt;}
.y1bc{bottom:821.852000pt;}
.y3{bottom:828.493333pt;}
.y194{bottom:832.478667pt;}
.y1e1{bottom:833.806667pt;}
.y1f1{bottom:834.624000pt;}
.ya8{bottom:834.716000pt;}
.y215{bottom:834.869333pt;}
.ya7{bottom:838.074667pt;}
.ya6{bottom:844.154667pt;}
.y27{bottom:844.433333pt;}
.y193{bottom:848.418667pt;}
.y231{bottom:849.746667pt;}
.y2{bottom:852.404000pt;}
.y26{bottom:860.373333pt;}
.y1{bottom:876.313333pt;}
.h18{height:0.000000pt;}
.h9{height:21.519360pt;}
.h3{height:22.730820pt;}
.h17{height:27.895200pt;}
.h4{height:30.350141pt;}
.ha{height:31.880400pt;}
.h15{height:35.865600pt;}
.h19{height:36.516693pt;}
.h1c{height:36.522027pt;}
.h1e{height:36.874903pt;}
.h5{height:37.193707pt;}
.hb{height:38.043849pt;}
.h7{height:39.502141pt;}
.h6{height:39.850400pt;}
.h13{height:40.071222pt;}
.h1d{height:41.834027pt;}
.h1b{height:43.096400pt;}
.h1a{height:43.101733pt;}
.h2{height:47.175200pt;}
.h8{height:47.180533pt;}
.h14{height:53.679733pt;}
.h1{height:53.865199pt;}
.h10{height:53.871733pt;}
.h12{height:53.877067pt;}
.hc{height:54.609867pt;}
.hd{height:55.791733pt;}
.he{height:75.797067pt;}
.h16{height:76.293067pt;}
.hf{height:76.298400pt;}
.h11{height:91.626400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x36{left:185.000000pt;}
.x1{left:191.162667pt;}
.xd{left:193.146667pt;}
.x9{left:198.282667pt;}
.x37{left:205.662667pt;}
.x5{left:211.840000pt;}
.x2{left:215.288000pt;}
.x33{left:231.481333pt;}
.x31{left:244.641333pt;}
.x4{left:251.260000pt;}
.x2f{left:257.649333pt;}
.x1d{left:264.136000pt;}
.x19{left:268.124000pt;}
.x2e{left:274.672000pt;}
.x21{left:278.181333pt;}
.xf{left:280.441333pt;}
.x13{left:283.297333pt;}
.x3{left:304.825333pt;}
.x23{left:308.973333pt;}
.x8{left:315.009333pt;}
.x22{left:315.920000pt;}
.x15{left:323.405333pt;}
.x1a{left:326.218667pt;}
.x24{left:330.374667pt;}
.x16{left:334.474667pt;}
.xa{left:347.036000pt;}
.xb{left:352.189333pt;}
.xc{left:358.406667pt;}
.x18{left:361.694667pt;}
.x32{left:363.018667pt;}
.x17{left:365.569333pt;}
.x30{left:366.957333pt;}
.x7{left:372.804000pt;}
.x26{left:387.721333pt;}
.x35{left:389.774667pt;}
.x2c{left:390.928000pt;}
.x2d{left:392.406667pt;}
.x25{left:394.668000pt;}
.x34{left:399.444000pt;}
.x2b{left:400.856000pt;}
.xe{left:404.177333pt;}
.x27{left:409.122667pt;}
.x1b{left:425.824000pt;}
.x1e{left:440.217333pt;}
.x12{left:449.476000pt;}
.x1f{left:468.096000pt;}
.x14{left:475.806667pt;}
.x29{left:476.984000pt;}
.x28{left:483.930667pt;}
.x2a{left:498.385333pt;}
.x1c{left:502.845333pt;}
.x10{left:511.178667pt;}
.x11{left:570.990667pt;}
.x20{left:579.989333pt;}
}




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