
    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_01a61db944b31d1e746470a4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1d84bfca12ac7af6b077386.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_82a9ef6f163d075d8e161eb4.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_b909af95a4a1fb88fdf3374f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ddbdef9d4b09935d5febd6f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2b9337207572101f3768f453.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91d456ba1288a3992a691ca9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_04a77dfb5ee7d3965b99fa6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8929cc72b3d8b5bd32ddeed5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_11e66a12e96b56b1f9e9587a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.115000;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_84d92f551234df2e4fc57ec5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_f270fb478a92b40dea58cc6d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_2a13842130c5608986684529.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.902000;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_4c5a66a5636329b74dbedcb2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_9bc268e3acdaf6b8303e632c.woff2')format("woff");}.fff{font-family:fff;line-height:3.293000;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_0751813fa6b352a0646bab99.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e467ad22a80c6552f1a4fc60.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_27c7d1fe1d41c954934525e3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.705000;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_12225aa4e04f5a4bca9c0c7b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d157339e34d4001e53eda101.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_d92493387a72eaba20478b06.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.115000;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_5520c2c80a6ae85d0f04727a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.444000;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_6266177ae1f0e1a20e5637ad.woff2')format("woff");}.ff17{font-family:ff17;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;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7848390ca179e23e2f574140.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c1bb287742d2958afbe8ce66.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.658000;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:ff1a;src:url('chunks/assets/font_0a513aeaaa5c569a4af70c63.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_b988efe81d7d6417ff12d974.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.726000;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:ff1c;src:url('chunks/assets/font_73683e5c8b58399972c71768.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.702000;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:ff1d;src:url('chunks/assets/font_b78279593448d8e863f055f3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.659000;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:ff1e;src:url('chunks/assets/font_d4fefe9e0bcf8a260b0c8fce.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_fa3e260045c4612a4b20170d.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.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);}
.v19{vertical-align:-111.930000px;}
.v13{vertical-align:-64.746000px;}
.v4{vertical-align:-59.352000px;}
.ve{vertical-align:-39.270000px;}
.v2{vertical-align:-22.854000px;}
.v11{vertical-align:-13.320000px;}
.vc{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v1b{vertical-align:6.834000px;}
.v10{vertical-align:9.816000px;}
.v15{vertical-align:12.750000px;}
.vf{vertical-align:16.182000px;}
.vb{vertical-align:18.912000px;}
.v14{vertical-align:22.566000px;}
.va{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v17{vertical-align:27.030000px;}
.v12{vertical-align:30.150000px;}
.v7{vertical-align:35.082000px;}
.v1c{vertical-align:39.936000px;}
.v1a{vertical-align:43.206000px;}
.v6{vertical-align:44.280000px;}
.v9{vertical-align:68.034000px;}
.v8{vertical-align:71.922000px;}
.v3{vertical-align:89.094000px;}
.v5{vertical-align:92.292000px;}
.vd{vertical-align:94.908000px;}
.v18{vertical-align:111.930000px;}
.v16{vertical-align:133.992000px;}
.ls5{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.000565px;}
.ls58{letter-spacing:0.000818px;}
.ls46{letter-spacing:0.000855px;}
.ls7c{letter-spacing:0.001022px;}
.ls17{letter-spacing:0.001580px;}
.lsbe{letter-spacing:0.001814px;}
.ls19{letter-spacing:0.002149px;}
.lse4{letter-spacing:0.002153px;}
.ls50{letter-spacing:0.002422px;}
.ls34{letter-spacing:0.002530px;}
.ls5e{letter-spacing:0.002712px;}
.ls33{letter-spacing:0.004338px;}
.ls23{letter-spacing:0.004855px;}
.ls21{letter-spacing:0.004861px;}
.ls4b{letter-spacing:0.005299px;}
.lsda{letter-spacing:0.006153px;}
.ls88{letter-spacing:0.007461px;}
.ls22{letter-spacing:0.007965px;}
.lsc7{letter-spacing:0.008315px;}
.ls5d{letter-spacing:0.008358px;}
.lsde{letter-spacing:0.008688px;}
.lsf9{letter-spacing:0.008846px;}
.lsac{letter-spacing:0.009521px;}
.ls3b{letter-spacing:0.010082px;}
.ls83{letter-spacing:0.010345px;}
.ls1b{letter-spacing:0.010823px;}
.ls114{letter-spacing:0.010923px;}
.lsad{letter-spacing:0.013551px;}
.lsdc{letter-spacing:0.014638px;}
.ls24{letter-spacing:0.014640px;}
.ls81{letter-spacing:0.015046px;}
.lsed{letter-spacing:0.016150px;}
.lsa8{letter-spacing:0.016447px;}
.ls2f{letter-spacing:0.016903px;}
.ls60{letter-spacing:0.017461px;}
.lsa7{letter-spacing:0.018141px;}
.lsab{letter-spacing:0.018311px;}
.lsbb{letter-spacing:0.018464px;}
.ls8f{letter-spacing:0.019270px;}
.ls32{letter-spacing:0.020020px;}
.lsef{letter-spacing:0.020037px;}
.lse2{letter-spacing:0.020223px;}
.lsc8{letter-spacing:0.021446px;}
.lsff{letter-spacing:0.023232px;}
.ls7b{letter-spacing:0.023246px;}
.ls66{letter-spacing:0.024174px;}
.ls7d{letter-spacing:0.024727px;}
.lscf{letter-spacing:0.025541px;}
.ls3d{letter-spacing:0.025556px;}
.ls10b{letter-spacing:0.026028px;}
.lsa1{letter-spacing:0.026207px;}
.ls10e{letter-spacing:0.027131px;}
.ls108{letter-spacing:0.027335px;}
.ls36{letter-spacing:0.027387px;}
.lsa3{letter-spacing:0.027517px;}
.ls111{letter-spacing:0.027607px;}
.ls92{letter-spacing:0.029069px;}
.ls105{letter-spacing:0.029321px;}
.ls29{letter-spacing:0.029323px;}
.ls49{letter-spacing:0.033826px;}
.ls77{letter-spacing:1.243637px;}
.lsb8{letter-spacing:1.832729px;}
.ls99{letter-spacing:1.936742px;}
.ls70{letter-spacing:1.956004px;}
.ls2{letter-spacing:2.151922px;}
.ls9b{letter-spacing:2.290911px;}
.lse8{letter-spacing:2.348132px;}
.lsd0{letter-spacing:2.356366px;}
.ls4d{letter-spacing:2.359002px;}
.ls61{letter-spacing:2.373131px;}
.lsfa{letter-spacing:2.968068px;}
.lsa2{letter-spacing:2.982960px;}
.ls10{letter-spacing:2.984915px;}
.ls2b{letter-spacing:2.985072px;}
.ls4{letter-spacing:2.986118px;}
.lsb6{letter-spacing:2.987971px;}
.ls71{letter-spacing:2.988532px;}
.ls42{letter-spacing:2.988960px;}
.ls2d{letter-spacing:2.990915px;}
.ls14{letter-spacing:2.991072px;}
.ls6a{letter-spacing:2.991427px;}
.ls47{letter-spacing:3.207275px;}
.lsf4{letter-spacing:3.289956px;}
.lse7{letter-spacing:3.534548px;}
.ls10c{letter-spacing:3.631565px;}
.ls106{letter-spacing:3.632153px;}
.ls2a{letter-spacing:3.638153px;}
.ls10d{letter-spacing:3.650644px;}
.lsd{letter-spacing:3.730912px;}
.ls8c{letter-spacing:3.750402px;}
.lsf{letter-spacing:3.796367px;}
.lsfd{letter-spacing:3.861821px;}
.lscc{letter-spacing:4.712731px;}
.lsbd{letter-spacing:5.301823px;}
.ls100{letter-spacing:6.265438px;}
.ls109{letter-spacing:6.293424px;}
.ls102{letter-spacing:6.299424px;}
.ls26{letter-spacing:6.310319px;}
.ls113{letter-spacing:6.320137px;}
.lsbc{letter-spacing:6.670180px;}
.lsbf{letter-spacing:6.676180px;}
.lsca{letter-spacing:7.166915px;}
.ls13{letter-spacing:7.172700px;}
.lsd3{letter-spacing:7.174332px;}
.ls12{letter-spacing:7.177062px;}
.ls6{letter-spacing:7.396370px;}
.lsc{letter-spacing:7.461824px;}
.ls4e{letter-spacing:8.736960px;}
.ls89{letter-spacing:10.046044px;}
.ls104{letter-spacing:10.865464px;}
.ls11{letter-spacing:10.910696px;}
.lsd6{letter-spacing:10.926931px;}
.ls4f{letter-spacing:10.930918px;}
.ls1e{letter-spacing:10.946015px;}
.lsce{letter-spacing:13.221829px;}
.lscb{letter-spacing:13.680011px;}
.ls4a{letter-spacing:13.892915px;}
.ls9e{letter-spacing:13.898915px;}
.ls15{letter-spacing:14.530921px;}
.ls7{letter-spacing:14.661830px;}
.ls3c{letter-spacing:14.858194px;}
.ls6c{letter-spacing:15.332544px;}
.ls74{letter-spacing:15.386342px;}
.ls2c{letter-spacing:15.447286px;}
.ls7f{letter-spacing:15.774559px;}
.lsd9{letter-spacing:15.840013px;}
.ls95{letter-spacing:16.167286px;}
.lsc5{letter-spacing:16.625468px;}
.lsf7{letter-spacing:16.690923px;}
.ls97{letter-spacing:17.410924px;}
.lsd5{letter-spacing:17.528915px;}
.ls1a{letter-spacing:17.534915px;}
.ls64{letter-spacing:17.934560px;}
.ls20{letter-spacing:18.080700px;}
.ls5c{letter-spacing:18.130924px;}
.lsd2{letter-spacing:18.179412px;}
.ls37{letter-spacing:18.196379px;}
.lsc1{letter-spacing:18.204447px;}
.ls43{letter-spacing:18.261833px;}
.ls44{letter-spacing:18.327288px;}
.ls6e{letter-spacing:18.452851px;}
.lsb4{letter-spacing:18.589106px;}
.ls78{letter-spacing:18.720016px;}
.ls3a{letter-spacing:18.981834px;}
.ls39{letter-spacing:19.047289px;}
.ls52{letter-spacing:19.112743px;}
.ls9{letter-spacing:19.309107px;}
.ls3{letter-spacing:19.725948px;}
.lsf6{letter-spacing:19.832744px;}
.ls68{letter-spacing:19.898198px;}
.ls10f{letter-spacing:20.094562px;}
.ls28{letter-spacing:20.421835px;}
.ls51{letter-spacing:20.552744px;}
.ls5f{letter-spacing:20.880017px;}
.lsaa{letter-spacing:20.945472px;}
.ls3f{letter-spacing:21.010927px;}
.ls8{letter-spacing:21.141836px;}
.ls110{letter-spacing:21.164915px;}
.ls103{letter-spacing:21.165072px;}
.lse9{letter-spacing:21.166834px;}
.ls5a{letter-spacing:21.168960px;}
.ls7e{letter-spacing:21.170915px;}
.ls10a{letter-spacing:21.171072px;}
.ls93{letter-spacing:21.171226px;}
.lsfb{letter-spacing:21.207290px;}
.lsaf{letter-spacing:21.272745px;}
.lsc4{letter-spacing:21.338200px;}
.ls69{letter-spacing:21.403654px;}
.lse5{letter-spacing:21.463956px;}
.lsf1{letter-spacing:21.469956px;}
.ls82{letter-spacing:21.665473px;}
.ls1f{letter-spacing:21.708886px;}
.lsd4{letter-spacing:21.713412px;}
.lse{letter-spacing:21.730927px;}
.ls16{letter-spacing:21.734640px;}
.lsd7{letter-spacing:21.736748px;}
.lscd{letter-spacing:21.739297px;}
.ls8e{letter-spacing:21.796382px;}
.ls30{letter-spacing:21.861836px;}
.ls45{letter-spacing:21.927291px;}
.lsa0{letter-spacing:21.992746px;}
.ls87{letter-spacing:22.058200px;}
.lse0{letter-spacing:22.254564px;}
.ls90{letter-spacing:22.450928px;}
.lsa4{letter-spacing:22.516382px;}
.ls6f{letter-spacing:22.541530px;}
.lsc0{letter-spacing:22.843655px;}
.ls67{letter-spacing:22.850915px;}
.ls8d{letter-spacing:22.909110px;}
.ls2e{letter-spacing:23.040019px;}
.lsf2{letter-spacing:23.170928px;}
.ls0{letter-spacing:23.432035px;}
.ls27{letter-spacing:23.439072px;}
.ls75{letter-spacing:23.509901px;}
.lsa6{letter-spacing:23.825474px;}
.ls7a{letter-spacing:23.904960px;}
.ls96{letter-spacing:24.087293px;}
.ls62{letter-spacing:24.152747px;}
.lsfc{letter-spacing:24.200915px;}
.ls76{letter-spacing:24.283657px;}
.lsa{letter-spacing:24.545475px;}
.ls94{letter-spacing:24.686915px;}
.ls3e{letter-spacing:25.190915px;}
.ls53{letter-spacing:25.242960px;}
.ls54{letter-spacing:25.337908px;}
.lsdb{letter-spacing:25.349412px;}
.lsc9{letter-spacing:25.354516px;}
.lsa5{letter-spacing:25.556746px;}
.ls86{letter-spacing:25.854567px;}
.lsb1{letter-spacing:25.985476px;}
.lsf5{letter-spacing:26.050931px;}
.ls91{letter-spacing:26.312749px;}
.lsec{letter-spacing:26.378204px;}
.lseb{letter-spacing:26.443658px;}
.ls63{letter-spacing:26.640022px;}
.ls9c{letter-spacing:26.770931px;}
.lsba{letter-spacing:26.910960px;}
.lsb0{letter-spacing:26.918915px;}
.lsb2{letter-spacing:26.920200px;}
.ls1{letter-spacing:27.197898px;}
.lsae{letter-spacing:27.294568px;}
.ls9d{letter-spacing:27.396960px;}
.lsa9{letter-spacing:27.818205px;}
.lsf8{letter-spacing:28.014569px;}
.ls59{letter-spacing:28.016915px;}
.lsf3{letter-spacing:28.354834px;}
.lsb3{letter-spacing:28.472751px;}
.lse1{letter-spacing:28.642834px;}
.ls80{letter-spacing:28.800024px;}
.ls101{letter-spacing:28.827072px;}
.ls1d{letter-spacing:28.930933px;}
.lse3{letter-spacing:28.939956px;}
.ls79{letter-spacing:28.976915px;}
.ls84{letter-spacing:29.389115px;}
.ls85{letter-spacing:29.454570px;}
.ls65{letter-spacing:29.520025px;}
.ls5b{letter-spacing:29.585479px;}
.lsee{letter-spacing:29.596834px;}
.lsb{letter-spacing:29.716388px;}
.ls48{letter-spacing:29.781843px;}
.ls9f{letter-spacing:29.847298px;}
.lsf0{letter-spacing:29.893956px;}
.ls40{letter-spacing:31.156390px;}
.ls41{letter-spacing:31.221844px;}
.ls8b{letter-spacing:31.287299px;}
.lsb9{letter-spacing:31.326960px;}
.lsb7{letter-spacing:31.876390px;}
.ls98{letter-spacing:32.530936px;}
.lsdf{letter-spacing:32.574960px;}
.ls35{letter-spacing:32.727300px;}
.ls18{letter-spacing:33.206915px;}
.ls8a{letter-spacing:33.643664px;}
.ls57{letter-spacing:35.149120px;}
.ls4c{letter-spacing:35.378915px;}
.ls9a{letter-spacing:35.410939px;}
.ls38{letter-spacing:36.458212px;}
.ls56{letter-spacing:38.945487px;}
.lsc2{letter-spacing:39.995424px;}
.ls31{letter-spacing:93.796442px;}
.ls73{letter-spacing:179.471462px;}
.ls6b{letter-spacing:202.228186px;}
.lsd8{letter-spacing:247.840332px;}
.ls6d{letter-spacing:266.893862px;}
.ls72{letter-spacing:313.806067px;}
.lsd1{letter-spacing:504.720421px;}
.ls1c{letter-spacing:618.901062px;}
.ls112{letter-spacing:829.767964px;}
.lsc6{letter-spacing:897.644384px;}
.ls107{letter-spacing:953.346249px;}
.lsfe{letter-spacing:957.600798px;}
.ls25{letter-spacing:977.826269px;}
.lsdd{letter-spacing:984.502639px;}
.lsea{letter-spacing:1052.929956px;}
.lse6{letter-spacing:1056.640834px;}
.lsc3{letter-spacing:1069.199900px;}
.ls55{letter-spacing:1240.370700px;}
.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;}
}
.wsf1{word-spacing:-65.454600px;}
.ws1a5{word-spacing:-53.751318px;}
.ws3d{word-spacing:-51.820407px;}
.ws5e{word-spacing:-47.258221px;}
.ws193{word-spacing:-44.181855px;}
.ws3e{word-spacing:-42.637126px;}
.wse1{word-spacing:-37.387668px;}
.wsa{word-spacing:-36.343565px;}
.ws3f{word-spacing:-33.211407px;}
.ws83{word-spacing:-32.714209px;}
.wsc{word-spacing:-32.577702px;}
.ws32{word-spacing:-32.544027px;}
.wsbe{word-spacing:-31.771663px;}
.ws43{word-spacing:-31.706208px;}
.wsb1{word-spacing:-27.641618px;}
.ws45{word-spacing:-24.440748px;}
.ws6a{word-spacing:-23.655292px;}
.ws6c{word-spacing:-23.589838px;}
.ws93{word-spacing:-22.084382px;}
.wsea{word-spacing:-21.547654px;}
.ws10a{word-spacing:-21.102563px;}
.wsf5{word-spacing:-21.089472px;}
.ws16c{word-spacing:-20.775290px;}
.wsfe{word-spacing:-20.565835px;}
.ws149{word-spacing:-20.500381px;}
.ws60{word-spacing:-19.387653px;}
.ws13c{word-spacing:-18.942561px;}
.ws101{word-spacing:-18.929470px;}
.wsf6{word-spacing:-18.733107px;}
.ws94{word-spacing:-18.615288px;}
.ws167{word-spacing:-18.340379px;}
.ws19b{word-spacing:-18.288015px;}
.wsbf{word-spacing:-18.274924px;}
.ws100{word-spacing:-18.209470px;}
.ws40{word-spacing:-18.183288px;}
.wsfd{word-spacing:-18.078561px;}
.ws1f{word-spacing:-17.947651px;}
.ws20{word-spacing:-17.882197px;}
.ws12f{word-spacing:-17.816742px;}
.ws11b{word-spacing:-17.685833px;}
.ws56{word-spacing:-17.620378px;}
.ws11d{word-spacing:-17.554924px;}
.ws99{word-spacing:-17.489469px;}
.wsa8{word-spacing:-17.358560px;}
.ws137{word-spacing:-17.227651px;}
.ws6d{word-spacing:-17.162196px;}
.ws184{word-spacing:-17.096742px;}
.ws133{word-spacing:-17.031287px;}
.ws18e{word-spacing:-16.965832px;}
.ws25{word-spacing:-16.769469px;}
.wsc7{word-spacing:-16.704014px;}
.ws30{word-spacing:-16.638559px;}
.ws117{word-spacing:-16.573105px;}
.ws196{word-spacing:-16.545720px;}
.wsd9{word-spacing:-16.507650px;}
.ws7e{word-spacing:-16.442196px;}
.wsf8{word-spacing:-16.376741px;}
.wsd5{word-spacing:-16.311286px;}
.wsc5{word-spacing:-16.245832px;}
.ws8b{word-spacing:-16.180377px;}
.ws152{word-spacing:-16.049468px;}
.ws12c{word-spacing:-15.984013px;}
.ws7c{word-spacing:-15.918559px;}
.ws164{word-spacing:-15.853104px;}
.wsdd{word-spacing:-15.722195px;}
.ws19a{word-spacing:-15.699540px;}
.ws46{word-spacing:-15.657720px;}
.ws5d{word-spacing:-15.656740px;}
.ws141{word-spacing:-15.591286px;}
.ws166{word-spacing:-15.525831px;}
.ws155{word-spacing:-15.394922px;}
.ws68{word-spacing:-15.350438px;}
.ws14d{word-spacing:-15.264013px;}
.ws13f{word-spacing:-15.198558px;}
.wsa9{word-spacing:-15.133104px;}
.ws11f{word-spacing:-15.067649px;}
.ws138{word-spacing:-15.002194px;}
.wsc4{word-spacing:-14.936740px;}
.ws17b{word-spacing:-14.871285px;}
.ws73{word-spacing:-14.805831px;}
.ws2d{word-spacing:-14.740376px;}
.ws1a{word-spacing:-14.674921px;}
.wse8{word-spacing:-14.609467px;}
.wsd3{word-spacing:-14.544012px;}
.ws5f{word-spacing:-14.478558px;}
.ws156{word-spacing:-14.413103px;}
.ws119{word-spacing:-14.347648px;}
.ws189{word-spacing:-14.282194px;}
.ws128{word-spacing:-14.216739px;}
.ws38{word-spacing:-14.151285px;}
.ws2e{word-spacing:-14.085830px;}
.wsba{word-spacing:-14.020375px;}
.wsf4{word-spacing:-13.954921px;}
.ws12b{word-spacing:-13.889466px;}
.wsfc{word-spacing:-13.824012px;}
.wseb{word-spacing:-13.758557px;}
.ws124{word-spacing:-13.693102px;}
.wse2{word-spacing:-13.627648px;}
.ws13e{word-spacing:-13.562193px;}
.ws8d{word-spacing:-13.514158px;}
.ws14e{word-spacing:-13.496739px;}
.ws1d{word-spacing:-13.442427px;}
.ws135{word-spacing:-13.431284px;}
.wse5{word-spacing:-13.365829px;}
.ws14c{word-spacing:-13.300375px;}
.ws1e{word-spacing:-13.234920px;}
.ws160{word-spacing:-13.104011px;}
.wsce{word-spacing:-13.038556px;}
.wscf{word-spacing:-12.973102px;}
.ws116{word-spacing:-12.907647px;}
.ws71{word-spacing:-12.842193px;}
.ws125{word-spacing:-12.776738px;}
.ws11e{word-spacing:-12.711283px;}
.ws57{word-spacing:-12.645829px;}
.wsd1{word-spacing:-12.580374px;}
.wsee{word-spacing:-12.514920px;}
.ws4b{word-spacing:-12.449465px;}
.wsf7{word-spacing:-12.384010px;}
.ws162{word-spacing:-12.318556px;}
.ws53{word-spacing:-12.253101px;}
.ws8f{word-spacing:-12.187647px;}
.ws102{word-spacing:-12.122192px;}
.ws7f{word-spacing:-12.064518px;}
.wsfa{word-spacing:-12.056737px;}
.wsf3{word-spacing:-12.042188px;}
.ws163{word-spacing:-12.037605px;}
.ws19d{word-spacing:-12.036813px;}
.ws1ab{word-spacing:-12.021720px;}
.ws199{word-spacing:-12.016960px;}
.ws66{word-spacing:-11.991283px;}
.ws161{word-spacing:-11.925828px;}
.wsef{word-spacing:-11.860374px;}
.ws98{word-spacing:-11.794919px;}
.ws24{word-spacing:-11.729464px;}
.ws9d{word-spacing:-11.664010px;}
.ws27{word-spacing:-11.598555px;}
.ws50{word-spacing:-11.533101px;}
.wsf9{word-spacing:-11.467646px;}
.ws194{word-spacing:-11.451540px;}
.ws2a{word-spacing:-11.402191px;}
.ws1c{word-spacing:-11.336737px;}
.ws29{word-spacing:-11.271282px;}
.ws70{word-spacing:-11.140373px;}
.ws7d{word-spacing:-11.074918px;}
.ws136{word-spacing:-11.074518px;}
.ws7b{word-spacing:-11.009464px;}
.ws58{word-spacing:-10.944009px;}
.ws16{word-spacing:-10.878555px;}
.ws2f{word-spacing:-10.813100px;}
.ws21{word-spacing:-10.747645px;}
.ws55{word-spacing:-10.682191px;}
.ws190{word-spacing:-10.603011px;}
.ws59{word-spacing:-10.551282px;}
.wsf0{word-spacing:-10.485827px;}
.wsbd{word-spacing:-10.420372px;}
.ws67{word-spacing:-10.354918px;}
.ws1ae{word-spacing:-10.329254px;}
.ws1aa{word-spacing:-10.323254px;}
.ws84{word-spacing:-10.289463px;}
.wsd0{word-spacing:-10.224009px;}
.wse9{word-spacing:-10.158554px;}
.wsc3{word-spacing:-10.093099px;}
.ws52{word-spacing:-10.027645px;}
.ws140{word-spacing:-9.962190px;}
.ws6e{word-spacing:-9.896736px;}
.wsa6{word-spacing:-9.831281px;}
.ws165{word-spacing:-9.765826px;}
.wsda{word-spacing:-9.700372px;}
.wsdb{word-spacing:-9.634917px;}
.wscd{word-spacing:-9.569463px;}
.ws47{word-spacing:-9.504008px;}
.ws14f{word-spacing:-9.438553px;}
.ws15{word-spacing:-9.373099px;}
.ws15c{word-spacing:-9.307644px;}
.wsae{word-spacing:-9.242565px;}
.wsff{word-spacing:-9.242190px;}
.ws10d{word-spacing:-9.188767px;}
.ws8e{word-spacing:-9.176735px;}
.wsc1{word-spacing:-9.111280px;}
.ws143{word-spacing:-9.045826px;}
.ws2b{word-spacing:-8.980371px;}
.wse3{word-spacing:-8.914917px;}
.ws144{word-spacing:-8.849462px;}
.ws109{word-spacing:-8.784007px;}
.ws5a{word-spacing:-8.718553px;}
.ws1a2{word-spacing:-8.655254px;}
.ws48{word-spacing:-8.653098px;}
.ws16d{word-spacing:-8.587644px;}
.ws139{word-spacing:-8.525569px;}
.wsd2{word-spacing:-8.522189px;}
.ws19e{word-spacing:-8.499720px;}
.wsa1{word-spacing:-8.456734px;}
.ws9f{word-spacing:-8.391280px;}
.ws92{word-spacing:-8.325825px;}
.ws8c{word-spacing:-8.260371px;}
.wse7{word-spacing:-8.194916px;}
.wsd4{word-spacing:-8.129461px;}
.ws54{word-spacing:-8.064007px;}
.ws34{word-spacing:-7.998552px;}
.ws33{word-spacing:-7.933098px;}
.ws1b{word-spacing:-7.867643px;}
.ws15b{word-spacing:-7.802188px;}
.ws14b{word-spacing:-7.736734px;}
.ws39{word-spacing:-7.540370px;}
.ws1a3{word-spacing:-7.503720px;}
.ws6b{word-spacing:-7.474915px;}
.ws121{word-spacing:-7.409461px;}
.ws1ac{word-spacing:-7.317824px;}
.ws16f{word-spacing:-7.278552px;}
.ws198{word-spacing:-7.252370px;}
.wsb9{word-spacing:-7.213097px;}
.ws79{word-spacing:-7.147642px;}
.wsed{word-spacing:-7.016733px;}
.ws26{word-spacing:-6.951279px;}
.ws51{word-spacing:-6.885824px;}
.ws127{word-spacing:-6.820369px;}
.ws195{word-spacing:-6.807254px;}
.wse4{word-spacing:-6.754915px;}
.ws106{word-spacing:-6.689460px;}
.ws49{word-spacing:-6.645254px;}
.ws104{word-spacing:-6.624006px;}
.ws2c{word-spacing:-6.558551px;}
.ws13b{word-spacing:-6.497891px;}
.ws177{word-spacing:-6.493096px;}
.ws142{word-spacing:-6.362187px;}
.ws4a{word-spacing:-6.303720px;}
.ws74{word-spacing:-6.296733px;}
.ws7a{word-spacing:-6.231278px;}
.ws19f{word-spacing:-6.165823px;}
.ws14{word-spacing:-6.100369px;}
.wsa0{word-spacing:-6.073109px;}
.ws148{word-spacing:-6.034914px;}
.ws6f{word-spacing:-5.969460px;}
.ws41{word-spacing:-5.904005px;}
.ws130{word-spacing:-5.838550px;}
.wsa2{word-spacing:-5.773096px;}
.ws11a{word-spacing:-5.707641px;}
.ws15a{word-spacing:-5.642187px;}
.ws16e{word-spacing:-5.576732px;}
.ws81{word-spacing:-5.511277px;}
.ws28{word-spacing:-5.445823px;}
.ws191{word-spacing:-5.314914px;}
.ws103{word-spacing:-5.249459px;}
.wsc8{word-spacing:-5.184004px;}
.wsb4{word-spacing:-5.153887px;}
.ws82{word-spacing:-5.118550px;}
.ws1a1{word-spacing:-5.053095px;}
.ws87{word-spacing:-5.048499px;}
.ws44{word-spacing:-4.987641px;}
.ws17a{word-spacing:-4.922186px;}
.ws97{word-spacing:-4.856731px;}
.wsab{word-spacing:-4.791277px;}
.wsf2{word-spacing:-4.725822px;}
.wsde{word-spacing:-4.660368px;}
.ws12d{word-spacing:-4.594913px;}
.ws118{word-spacing:-4.529458px;}
.wscb{word-spacing:-4.464004px;}
.ws5c{word-spacing:-4.398549px;}
.wsb8{word-spacing:-4.346911px;}
.ws85{word-spacing:-4.333095px;}
.wsdf{word-spacing:-4.267640px;}
.ws168{word-spacing:-4.202185px;}
.ws3b{word-spacing:-4.136731px;}
.ws9c{word-spacing:-4.071276px;}
.wse6{word-spacing:-4.005822px;}
.ws1b0{word-spacing:-3.940367px;}
.ws96{word-spacing:-3.874912px;}
.ws5b{word-spacing:-3.809458px;}
.ws11c{word-spacing:-3.744003px;}
.wsc2{word-spacing:-3.678549px;}
.ws197{word-spacing:-3.652367px;}
.wsb5{word-spacing:-3.647532px;}
.ws37{word-spacing:-3.613094px;}
.wsa3{word-spacing:-3.532697px;}
.ws91{word-spacing:-3.351276px;}
.wse0{word-spacing:-3.285821px;}
.ws108{word-spacing:-3.220366px;}
.ws107{word-spacing:-3.154912px;}
.ws78{word-spacing:-3.089457px;}
.ws31{word-spacing:-3.024003px;}
.ws76{word-spacing:-2.958548px;}
.wsa5{word-spacing:-2.893093px;}
.ws35{word-spacing:-2.827639px;}
.ws36{word-spacing:-2.762184px;}
.ws123{word-spacing:-2.696730px;}
.ws122{word-spacing:-2.631275px;}
.ws77{word-spacing:-2.565820px;}
.ws150{word-spacing:-2.500366px;}
.ws174{word-spacing:-2.434911px;}
.ws1a4{word-spacing:-2.304002px;}
.ws4f{word-spacing:-2.238547px;}
.ws153{word-spacing:-2.173093px;}
.ws69{word-spacing:-2.107638px;}
.ws182{word-spacing:-2.042184px;}
.wsdc{word-spacing:-1.976729px;}
.wsc6{word-spacing:-1.950547px;}
.ws154{word-spacing:-1.911274px;}
.ws42{word-spacing:-1.867011px;}
.wsfb{word-spacing:-1.780365px;}
.ws15f{word-spacing:-1.649456px;}
.wsb3{word-spacing:-1.603192px;}
.ws12a{word-spacing:-1.584001px;}
.ws1b2{word-spacing:-1.569720px;}
.wsbb{word-spacing:-1.518547px;}
.wsc0{word-spacing:-1.492365px;}
.ws75{word-spacing:-1.453092px;}
.ws12e{word-spacing:-1.387638px;}
.ws18a{word-spacing:-1.322183px;}
.ws115{word-spacing:-1.256728px;}
.ws22{word-spacing:-1.191274px;}
.ws159{word-spacing:-1.125819px;}
.ws158{word-spacing:-1.060365px;}
.wsaa{word-spacing:-0.772364px;}
.ws86{word-spacing:-0.733092px;}
.ws178{word-spacing:-0.602182px;}
.ws129{word-spacing:-0.379637px;}
.ws1a8{word-spacing:-0.248727px;}
.wsd6{word-spacing:-0.144000px;}
.ws170{word-spacing:-0.086077px;}
.ws131{word-spacing:-0.078546px;}
.ws17d{word-spacing:-0.065455px;}
.ws3c{word-spacing:-0.052364px;}
.wsb6{word-spacing:-0.026899px;}
.ws18{word-spacing:0.000000px;}
.ws72{word-spacing:0.013091px;}
.wsaf{word-spacing:0.026899px;}
.ws63{word-spacing:0.052364px;}
.ws1b1{word-spacing:0.122746px;}
.ws8a{word-spacing:0.183273px;}
.ws146{word-spacing:0.248727px;}
.ws145{word-spacing:0.314182px;}
.wsb7{word-spacing:1.032929px;}
.ws16b{word-spacing:1.034183px;}
.ws18b{word-spacing:1.099637px;}
.ws192{word-spacing:1.125819px;}
.ws16a{word-spacing:1.165092px;}
.ws169{word-spacing:1.649456px;}
.wsd7{word-spacing:2.539638px;}
.ws14a{word-spacing:2.762184px;}
.ws64{word-spacing:3.194184px;}
.ws90{word-spacing:3.482185px;}
.ws62{word-spacing:3.521457px;}
.ws126{word-spacing:3.547639px;}
.ws61{word-spacing:4.045094px;}
.wsca{word-spacing:4.176003px;}
.wsa7{word-spacing:4.464004px;}
.ws80{word-spacing:4.943971px;}
.ws95{word-spacing:5.485095px;}
.ws88{word-spacing:5.576732px;}
.wsbc{word-spacing:5.642187px;}
.ws15d{word-spacing:5.773096px;}
.ws180{word-spacing:6.074187px;}
.ws13a{word-spacing:6.100369px;}
.ws19c{word-spacing:6.231278px;}
.ws13d{word-spacing:6.270551px;}
.ws120{word-spacing:6.317971px;}
.ws15e{word-spacing:6.663278px;}
.ws157{word-spacing:7.019971px;}
.ws1a0{word-spacing:7.867643px;}
.ws9b{word-spacing:7.972370px;}
.wsec{word-spacing:8.391280px;}
.ws1a7{word-spacing:8.587644px;}
.ws9e{word-spacing:8.809833px;}
.ws147{word-spacing:9.634917px;}
.ws1af{word-spacing:10.376280px;}
.wscc{word-spacing:10.571971px;}
.ws9a{word-spacing:10.575028px;}
.wsc9{word-spacing:10.682191px;}
.wsb0{word-spacing:12.707182px;}
.ws23{word-spacing:13.169466px;}
.ws65{word-spacing:13.339647px;}
.wsa4{word-spacing:15.629971px;}
.ws4d{word-spacing:16.880672px;}
.ws188{word-spacing:17.214560px;}
.ws12{word-spacing:17.514251px;}
.ws10c{word-spacing:18.345254px;}
.ws10e{word-spacing:18.399053px;}
.ws179{word-spacing:18.458197px;}
.ws111{word-spacing:19.206029px;}
.ws113{word-spacing:19.259827px;}
.ws176{word-spacing:19.309107px;}
.ws17c{word-spacing:19.440016px;}
.ws13{word-spacing:19.845499px;}
.wsf{word-spacing:20.263928px;}
.ws173{word-spacing:20.552744px;}
.ws132{word-spacing:20.880017px;}
.ws10{word-spacing:21.100787px;}
.wsac{word-spacing:21.142771px;}
.ws10b{word-spacing:21.196570px;}
.ws7{word-spacing:21.220338px;}
.ws187{word-spacing:21.469109px;}
.ws18c{word-spacing:21.992746px;}
.ws185{word-spacing:22.123655px;}
.ws151{word-spacing:22.189109px;}
.ws186{word-spacing:22.254564px;}
.ws1a6{word-spacing:22.712746px;}
.ws172{word-spacing:23.170928px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.432035px;}
.ws183{word-spacing:23.498201px;}
.wse{word-spacing:23.551586px;}
.ws9{word-spacing:23.970016px;}
.ws134{word-spacing:24.087293px;}
.wsd8{word-spacing:24.218202px;}
.ws11{word-spacing:24.268894px;}
.ws175{word-spacing:24.414566px;}
.ws8{word-spacing:24.448220px;}
.ws4{word-spacing:24.567772px;}
.ws6{word-spacing:24.627547px;}
.ws171{word-spacing:24.741839px;}
.ws17{word-spacing:24.758024px;}
.ws5{word-spacing:25.524181px;}
.ws3{word-spacing:26.181713px;}
.wsb{word-spacing:26.241488px;}
.ws17e{word-spacing:26.247295px;}
.ws18f{word-spacing:26.770931px;}
.ws18d{word-spacing:27.098204px;}
.wsd{word-spacing:27.496776px;}
.ws181{word-spacing:29.585479px;}
.ws105{word-spacing:30.829117px;}
.ws3a{word-spacing:31.418178px;}
.ws89{word-spacing:31.504255px;}
.ws0{word-spacing:32.227229px;}
.ws4c{word-spacing:32.707023px;}
.ws17f{word-spacing:33.054573px;}
.ws4e{word-spacing:66.666453px;}
.ws19{word-spacing:94.598843px;}
.ws112{word-spacing:119.916634px;}
.wsb2{word-spacing:153.336200px;}
.wsad{word-spacing:153.389998px;}
.ws10f{word-spacing:192.598272px;}
.ws110{word-spacing:228.804595px;}
.ws1a9{word-spacing:248.151480px;}
.ws114{word-spacing:279.913075px;}
.ws1ad{word-spacing:859.824717px;}
._4a{margin-left:-36.261848px;}
._1c{margin-left:-21.752232px;}
._27{margin-left:-14.530921px;}
._2{margin-left:-8.056807px;}
._23{margin-left:-6.660868px;}
._0{margin-left:-5.371205px;}
._c{margin-left:-4.312442px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.613941px;}
._8{width:1.673717px;}
._3{width:2.685602px;}
._22{width:3.986302px;}
._1a{width:5.272243px;}
._1d{width:7.948109px;}
._41{width:14.925613px;}
._43{width:16.431068px;}
._25{width:17.482270px;}
._10{width:19.184089px;}
._42{width:20.261217px;}
._d{width:21.326990px;}
._12{width:22.714710px;}
._45{width:24.154711px;}
._1e{width:25.380883px;}
._7{width:26.604442px;}
._5{width:28.504362px;}
._b{width:30.246454px;}
._15{width:31.459487px;}
._35{width:32.538768px;}
._2a{width:33.692254px;}
._13{width:35.068885px;}
._21{width:36.267674px;}
._16{width:37.537516px;}
._a{width:39.622624px;}
._6{width:41.057238px;}
._34{width:43.097230px;}
._33{width:44.297263px;}
._9{width:45.608783px;}
._2b{width:47.061857px;}
._29{width:48.586167px;}
._18{width:50.438608px;}
._1b{width:51.580189px;}
._14{width:52.588147px;}
._17{width:53.702089px;}
._32{width:55.412352px;}
._26{width:56.818520px;}
._47{width:58.085690px;}
._f{width:60.953587px;}
._46{width:63.954823px;}
._20{width:65.783837px;}
._24{width:72.259915px;}
._44{width:74.814608px;}
._11{width:80.697600px;}
._1f{width:82.729289px;}
._e{width:92.473483px;}
._19{width:94.684920px;}
._2d{width:96.648292px;}
._36{width:145.686067px;}
._40{width:149.766100px;}
._39{width:166.398451px;}
._31{width:169.626355px;}
._30{width:179.573093px;}
._3e{width:183.717218px;}
._3a{width:212.449871px;}
._38{width:238.044917px;}
._2c{width:246.499951px;}
._3c{width:250.685942px;}
._37{width:296.859571px;}
._3f{width:298.998554px;}
._3d{width:346.134588px;}
._3b{width:352.267606px;}
._2e{width:397.085990px;}
._2f{width:469.821427px;}
._48{width:531.036463px;}
._28{width:872.575273px;}
._49{width:1183.680986px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs7{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y19{bottom:63.168000px;}
.y64{bottom:108.000000px;}
.y18{bottom:108.025500px;}
.y196{bottom:110.973000px;}
.ydf{bottom:114.960000px;}
.y91{bottom:128.323500px;}
.y257{bottom:130.161000px;}
.y17{bottom:130.176000px;}
.y195{bottom:131.296500px;}
.y108{bottom:133.881000px;}
.y12d{bottom:134.362500px;}
.yee{bottom:134.458500px;}
.y15e{bottom:136.005000px;}
.y63{bottom:141.594000px;}
.y1a0{bottom:142.758000px;}
.y90{bottom:148.647000px;}
.y1f4{bottom:148.648500px;}
.yde{bottom:148.732500px;}
.y256{bottom:150.486000px;}
.y194{bottom:151.620000px;}
.y219{bottom:153.706500px;}
.y107{bottom:154.204500px;}
.y12c{bottom:154.687500px;}
.yed{bottom:154.783500px;}
.y15d{bottom:156.328500px;}
.y236{bottom:161.041500px;}
.y19f{bottom:163.081500px;}
.y13d{bottom:165.910500px;}
.y1ce{bottom:167.652000px;}
.y1b5{bottom:168.376500px;}
.y1f3{bottom:168.972000px;}
.y193{bottom:171.943500px;}
.y218{bottom:174.030000px;}
.y106{bottom:174.529500px;}
.y62{bottom:174.921000px;}
.y12b{bottom:175.011000px;}
.y15c{bottom:176.652000px;}
.y8f{bottom:178.810500px;}
.yd3{bottom:180.313500px;}
.y235{bottom:181.365000px;}
.ydd{bottom:182.506500px;}
.y28a{bottom:182.814000px;}
.y19e{bottom:183.405000px;}
.y255{bottom:184.258500px;}
.yec{bottom:185.673000px;}
.y13c{bottom:186.235500px;}
.y1cd{bottom:187.975500px;}
.y1b4{bottom:188.701500px;}
.y1f2{bottom:189.295500px;}
.y192{bottom:192.268500px;}
.yb0{bottom:193.171500px;}
.y289{bottom:194.038500px;}
.y6d{bottom:194.049000px;}
.y217{bottom:194.353500px;}
.y105{bottom:194.853000px;}
.y61{bottom:195.244500px;}
.y12a{bottom:195.334500px;}
.y15b{bottom:196.975500px;}
.yd2{bottom:200.638500px;}
.ydc{bottom:202.830000px;}
.y19d{bottom:203.730000px;}
.y254{bottom:204.582000px;}
.y1cc{bottom:208.299000px;}
.y1b3{bottom:209.025000px;}
.y1f1{bottom:209.619000px;}
.y8e{bottom:211.140000px;}
.y191{bottom:212.592000px;}
.y28b{bottom:213.034500px;}
.y234{bottom:214.083000px;}
.y6c{bottom:214.372500px;}
.y104{bottom:215.176500px;}
.y60{bottom:215.568000px;}
.y13b{bottom:217.123500px;}
.y15a{bottom:217.299000px;}
.y1bd{bottom:218.827500px;}
.yd1{bottom:220.962000px;}
.y19c{bottom:224.053500px;}
.y253{bottom:224.907000px;}
.yaf{bottom:226.944000px;}
.y216{bottom:228.127500px;}
.y1cb{bottom:228.622500px;}
.y129{bottom:229.108500px;}
.yeb{bottom:229.486500px;}
.y1f0{bottom:229.942500px;}
.y2a8{bottom:231.268500px;}
.y3d{bottom:233.862000px;}
.y233{bottom:234.406500px;}
.y6b{bottom:234.696000px;}
.y103{bottom:235.500000px;}
.y5f{bottom:235.891500px;}
.ydb{bottom:236.602500px;}
.y159{bottom:237.624000px;}
.y265{bottom:238.356000px;}
.y1bc{bottom:239.152500px;}
.yd0{bottom:241.285500px;}
.y288{bottom:243.301500px;}
.y8d{bottom:243.469500px;}
.y190{bottom:243.481500px;}
.y19b{bottom:244.377000px;}
.y17d{bottom:244.384500px;}
.y215{bottom:248.451000px;}
.y1ca{bottom:248.947500px;}
.y128{bottom:249.432000px;}
.yea{bottom:249.810000px;}
.y1ef{bottom:250.266000px;}
.y2a7{bottom:251.592000px;}
.y3c{bottom:254.187000px;}
.y6a{bottom:255.021000px;}
.y102{bottom:255.823500px;}
.y5e{bottom:256.216500px;}
.y158{bottom:257.947500px;}
.y252{bottom:258.679500px;}
.y1bb{bottom:259.476000px;}
.yae{bottom:260.718000px;}
.ycf{bottom:261.609000px;}
.y287{bottom:263.625000px;}
.y19a{bottom:264.700500px;}
.y17c{bottom:264.708000px;}
.y232{bottom:267.124500px;}
.yda{bottom:267.492000px;}
.y214{bottom:268.774500px;}
.y1c9{bottom:269.271000px;}
.y127{bottom:269.755500px;}
.ye9{bottom:270.133500px;}
.y1ee{bottom:270.591000px;}
.y2a6{bottom:271.915500px;}
.y3b{bottom:274.510500px;}
.y69{bottom:275.344500px;}
.y8c{bottom:275.797500px;}
.y101{bottom:276.148500px;}
.y5d{bottom:276.540000px;}
.y157{bottom:278.271000px;}
.y251{bottom:279.003000px;}
.y1ba{bottom:279.799500px;}
.y13a{bottom:280.549500px;}
.yce{bottom:281.932500px;}
.y286{bottom:283.950000px;}
.y199{bottom:285.024000px;}
.y17b{bottom:285.031500px;}
.y18f{bottom:286.696500px;}
.y231{bottom:287.449500px;}
.y1c8{bottom:289.594500px;}
.y126{bottom:290.079000px;}
.ye8{bottom:290.457000px;}
.y1ed{bottom:290.914500px;}
.y2a5{bottom:292.239000px;}
.yad{bottom:294.492000px;}
.y3a{bottom:294.834000px;}
.y68{bottom:295.668000px;}
.y100{bottom:296.472000px;}
.y156{bottom:298.594500px;}
.y250{bottom:299.328000px;}
.y1b9{bottom:300.123000px;}
.y139{bottom:300.873000px;}
.ycd{bottom:302.257500px;}
.y213{bottom:302.548500px;}
.y198{bottom:305.349000px;}
.y8b{bottom:305.961000px;}
.y18e{bottom:307.020000px;}
.y230{bottom:307.773000px;}
.y1c7{bottom:309.918000px;}
.y1ec{bottom:311.238000px;}
.y2a4{bottom:312.562500px;}
.y264{bottom:312.777000px;}
.y39{bottom:315.157500px;}
.y67{bottom:315.991500px;}
.yff{bottom:316.795500px;}
.yd9{bottom:317.403000px;}
.y17a{bottom:318.805500px;}
.y155{bottom:318.918000px;}
.y5c{bottom:319.671000px;}
.y1b8{bottom:320.446500px;}
.y138{bottom:321.196500px;}
.ye7{bottom:321.346500px;}
.ycc{bottom:322.581000px;}
.y212{bottom:322.872000px;}
.y284{bottom:323.022000px;}
.y2c4{bottom:323.553000px;}
.y125{bottom:323.853000px;}
.y197{bottom:325.672500px;}
.y18d{bottom:327.345000px;}
.yac{bottom:328.264500px;}
.y1c6{bottom:330.241500px;}
.y1eb{bottom:331.561500px;}
.y1fb{bottom:331.954500px;}
.y2a3{bottom:332.886000px;}
.y24f{bottom:333.100500px;}
.y283{bottom:334.246500px;}
.y38{bottom:335.481000px;}
.y66{bottom:336.315000px;}
.yfe{bottom:337.119000px;}
.yd8{bottom:337.726500px;}
.y179{bottom:339.129000px;}
.y154{bottom:339.241500px;}
.y5b{bottom:339.994500px;}
.y22f{bottom:340.491000px;}
.y1b7{bottom:340.771500px;}
.y137{bottom:341.521500px;}
.y8a{bottom:342.486000px;}
.ycb{bottom:342.904500px;}
.y211{bottom:343.195500px;}
.y2c3{bottom:343.876500px;}
.y124{bottom:344.176500px;}
.y18c{bottom:347.668500px;}
.yab{bottom:348.588000px;}
.y1c5{bottom:350.566500px;}
.y1ea{bottom:351.885000px;}
.y1fa{bottom:352.279500px;}
.y2a2{bottom:353.211000px;}
.y285{bottom:353.242500px;}
.y24e{bottom:353.424000px;}
.y37{bottom:355.806000px;}
.y65{bottom:356.638500px;}
.yd7{bottom:358.051500px;}
.y153{bottom:359.566500px;}
.y22e{bottom:360.814500px;}
.y1b6{bottom:361.095000px;}
.y136{bottom:361.845000px;}
.y210{bottom:363.519000px;}
.y2c2{bottom:364.201500px;}
.y123{bottom:364.500000px;}
.y263{bottom:366.874500px;}
.y18b{bottom:367.992000px;}
.ye6{bottom:371.257500px;}
.y1e9{bottom:372.210000px;}
.y1f9{bottom:372.603000px;}
.y178{bottom:372.903000px;}
.y5a{bottom:373.321500px;}
.yfd{bottom:375.181500px;}
.y36{bottom:376.129500px;}
.yd6{bottom:378.375000px;}
.yaa{bottom:379.477500px;}
.y152{bottom:379.890000px;}
.y135{bottom:382.168500px;}
.y2c1{bottom:384.525000px;}
.y282{bottom:384.547500px;}
.y122{bottom:384.823500px;}
.y24d{bottom:387.198000px;}
.y18a{bottom:388.315500px;}
.ye5{bottom:391.581000px;}
.yca{bottom:392.217000px;}
.y1e8{bottom:392.533500px;}
.y1f8{bottom:392.926500px;}
.y89{bottom:393.357000px;}
.y22d{bottom:393.532500px;}
.y59{bottom:393.645000px;}
.y2a1{bottom:395.182500px;}
.yfc{bottom:395.505000px;}
.y20f{bottom:397.293000px;}
.yd5{bottom:398.698500px;}
.y16{bottom:401.575500px;}
.y177{bottom:403.792500px;}
.y2c0{bottom:404.848500px;}
.y121{bottom:405.147000px;}
.y35{bottom:407.019000px;}
.y24c{bottom:407.521500px;}
.y189{bottom:408.639000px;}
.y151{bottom:410.779500px;}
.ye4{bottom:411.904500px;}
.yc9{bottom:412.540500px;}
.y1e7{bottom:412.857000px;}
.y1f7{bottom:413.250000px;}
.y88{bottom:413.680500px;}
.y22c{bottom:413.856000px;}
.y281{bottom:417.259500px;}
.y20e{bottom:417.616500px;}
.yd4{bottom:419.022000px;}
.y262{bottom:420.970500px;}
.y15{bottom:421.899000px;}
.ya9{bottom:423.291000px;}
.y2bf{bottom:425.172000px;}
.y2a0{bottom:426.319500px;}
.y58{bottom:427.239000px;}
.y280{bottom:428.484000px;}
.y188{bottom:428.964000px;}
.yc8{bottom:432.865500px;}
.y1e6{bottom:433.180500px;}
.y1f6{bottom:433.573500px;}
.y87{bottom:434.004000px;}
.y120{bottom:438.921000px;}
.y24b{bottom:441.295500px;}
.ya8{bottom:443.614500px;}
.y2be{bottom:445.495500px;}
.y22b{bottom:446.574000px;}
.y176{bottom:447.007500px;}
.y57{bottom:447.562500px;}
.y20d{bottom:448.506000px;}
.y187{bottom:449.287500px;}
.y34{bottom:450.832500px;}
.yc7{bottom:453.189000px;}
.y29f{bottom:453.498000px;}
.y1f5{bottom:453.898500px;}
.y86{bottom:454.327500px;}
.y11f{bottom:459.244500px;}
.y150{bottom:460.690500px;}
.y24a{bottom:461.619000px;}
.y2bd{bottom:463.341000px;}
.ya7{bottom:463.939500px;}
.y1e5{bottom:464.070000px;}
.y22a{bottom:466.897500px;}
.y175{bottom:467.331000px;}
.y2bc{bottom:467.386500px;}
.y186{bottom:469.611000px;}
.y27f{bottom:470.784000px;}
.y33{bottom:471.156000px;}
.y14{bottom:473.605500px;}
.y29e{bottom:473.821500px;}
.y261{bottom:475.068000px;}
.y85{bottom:479.199000px;}
.y56{bottom:480.889500px;}
.y14f{bottom:481.014000px;}
.y27e{bottom:485.466000px;}
.y174{bottom:487.654500px;}
.y185{bottom:489.934500px;}
.y84{bottom:490.423500px;}
.y27d{bottom:491.109000px;}
.y32{bottom:491.479500px;}
.y13{bottom:491.538000px;}
.y20c{bottom:492.319500px;}
.yc6{bottom:492.889500px;}
.ya6{bottom:493.666500px;}
.y29d{bottom:494.146500px;}
.y249{bottom:495.391500px;}
.ya5{bottom:497.712000px;}
.y229{bottom:499.615500px;}
.y55{bottom:501.213000px;}
.y14e{bottom:501.337500px;}
.y11e{bottom:502.461000px;}
.y2bb{bottom:506.811000px;}
.y1e4{bottom:507.363000px;}
.y173{bottom:507.979500px;}
.yc5{bottom:509.328000px;}
.y12{bottom:509.472000px;}
.y184{bottom:510.258000px;}
.y31{bottom:511.803000px;}
.y20b{bottom:512.643000px;}
.y248{bottom:515.716500px;}
.y228{bottom:519.939000px;}
.y27c{bottom:521.997000px;}
.y11d{bottom:522.784500px;}
.yc4{bottom:525.766500px;}
.y11{bottom:527.404500px;}
.y1e3{bottom:527.686500px;}
.y172{bottom:528.303000px;}
.y260{bottom:529.165500px;}
.y83{bottom:529.638000px;}
.y183{bottom:530.581500px;}
.ya4{bottom:531.486000px;}
.y30{bottom:532.126500px;}
.y20a{bottom:532.966500px;}
.y54{bottom:535.503000px;}
.y247{bottom:536.040000px;}
.y29c{bottom:536.118000px;}
.y14d{bottom:542.025000px;}
.y11c{bottom:543.108000px;}
.y2ba{bottom:543.573000px;}
.y10{bottom:545.337000px;}
.yc3{bottom:547.734000px;}
.y1e2{bottom:548.010000px;}
.y171{bottom:548.626500px;}
.y25f{bottom:549.489000px;}
.y82{bottom:549.961500px;}
.y53{bottom:551.677500px;}
.ya3{bottom:551.809500px;}
.y2f{bottom:552.451500px;}
.y227{bottom:552.657000px;}
.y209{bottom:553.290000px;}
.y52{bottom:558.124500px;}
.y29b{bottom:560.925000px;}
.y182{bottom:561.471000px;}
.yf{bottom:563.269500px;}
.yc2{bottom:564.172500px;}
.y27b{bottom:565.755000px;}
.y14c{bottom:567.279000px;}
.y1e1{bottom:568.333500px;}
.y170{bottom:568.950000px;}
.y246{bottom:569.812500px;}
.y2e{bottom:572.775000px;}
.y226{bottom:572.982000px;}
.y80{bottom:575.835000px;}
.y2b9{bottom:576.289500px;}
.y2b8{bottom:580.335000px;}
.ye{bottom:581.202000px;}
.y11b{bottom:581.364000px;}
.ya2{bottom:582.699000px;}
.y81{bottom:583.014000px;}
.y25e{bottom:583.263000px;}
.y27a{bottom:586.078500px;}
.yc1{bottom:586.140000px;}
.y208{bottom:587.064000px;}
.y1e0{bottom:588.657000px;}
.y16f{bottom:589.273500px;}
.y245{bottom:590.137500px;}
.y14b{bottom:592.534500px;}
.y2d{bottom:593.098500px;}
.y225{bottom:593.305500px;}
.y51{bottom:594.349500px;}
.y7f{bottom:598.129500px;}
.yd{bottom:599.134500px;}
.y11a{bottom:601.689000px;}
.yc0{bottom:602.578500px;}
.y25d{bottom:603.586500px;}
.y16e{bottom:609.598500px;}
.y29a{bottom:610.099500px;}
.y50{bottom:610.629000px;}
.y181{bottom:610.785000px;}
.y2b7{bottom:613.051500px;}
.y2c{bottom:613.422000px;}
.y224{bottom:613.629000px;}
.y4f{bottom:614.674500px;}
.y279{bottom:615.936000px;}
.yc{bottom:617.068500px;}
.y2b6{bottom:617.097000px;}
.y14a{bottom:617.790000px;}
.ybe{bottom:619.017000px;}
.y207{bottom:620.836500px;}
.y1df{bottom:621.325500px;}
.y119{bottom:622.012500px;}
.y244{bottom:623.910000px;}
.ybf{bottom:624.730500px;}
.ya1{bottom:626.512500px;}
.y7e{bottom:629.463000px;}
.y16d{bottom:629.922000px;}
.y299{bottom:630.423000px;}
.y180{bottom:631.108500px;}
.y2b{bottom:633.745500px;}
.y223{bottom:633.952500px;}
.y4e{bottom:634.998000px;}
.yb{bottom:635.001000px;}
.y278{bottom:636.259500px;}
.y25c{bottom:637.360500px;}
.y2b5{bottom:637.420500px;}
.y1b2{bottom:640.786500px;}
.ybd{bottom:640.984500px;}
.y1de{bottom:641.649000px;}
.y118{bottom:642.336000px;}
.y149{bottom:643.045500px;}
.y243{bottom:644.233500px;}
.ya0{bottom:646.836000px;}
.y7d{bottom:649.786500px;}
.y16c{bottom:650.245500px;}
.y298{bottom:650.746500px;}
.y17f{bottom:651.432000px;}
.ya{bottom:652.933500px;}
.y2a{bottom:654.070500px;}
.y206{bottom:654.610500px;}
.y277{bottom:656.583000px;}
.ybb{bottom:657.423000px;}
.y25b{bottom:657.684000px;}
.y2b4{bottom:657.744000px;}
.y1b1{bottom:661.110000px;}
.y1dd{bottom:661.972500px;}
.y117{bottom:662.659500px;}
.ybc{bottom:663.136500px;}
.y4d{bottom:665.887500px;}
.y9f{bottom:667.159500px;}
.y148{bottom:668.301000px;}
.y7c{bottom:670.111500px;}
.y222{bottom:670.477500px;}
.y9{bottom:670.866000px;}
.y297{bottom:671.070000px;}
.y17e{bottom:671.755500px;}
.y29{bottom:674.394000px;}
.y276{bottom:676.908000px;}
.y242{bottom:678.007500px;}
.y16b{bottom:681.135000px;}
.y1b0{bottom:681.433500px;}
.y1dc{bottom:682.296000px;}
.yba{bottom:687.001500px;}
.y205{bottom:688.384500px;}
.y8{bottom:688.798500px;}
.y2b3{bottom:690.343500px;}
.y2b2{bottom:690.462000px;}
.y25a{bottom:691.456500px;}
.y147{bottom:693.556500px;}
.y2b1{bottom:694.506000px;}
.y28{bottom:694.717500px;}
.y116{bottom:696.433500px;}
.y241{bottom:698.331000px;}
.y9e{bottom:700.933500px;}
.y7b{bottom:701.001000px;}
.y1af{bottom:701.757000px;}
.y4c{bottom:702.564000px;}
.y1db{bottom:702.621000px;}
.y7{bottom:706.731000px;}
.y296{bottom:707.595000px;}
.y259{bottom:711.780000px;}
.y275{bottom:713.319000px;}
.y4b{bottom:713.788500px;}
.y27{bottom:715.041000px;}
.y115{bottom:716.757000px;}
.yfb{bottom:718.057500px;}
.y9d{bottom:721.257000px;}
.y221{bottom:721.531500px;}
.y1ae{bottom:722.082000px;}
.y204{bottom:724.908000px;}
.y16a{bottom:724.948500px;}
.y146{bottom:726.423000px;}
.y2b0{bottom:731.269500px;}
.yb9{bottom:731.358000px;}
.y240{bottom:732.105000px;}
.y1da{bottom:733.629000px;}
.y6{bottom:734.007000px;}
.y26{bottom:735.364500px;}
.y114{bottom:737.080500px;}
.yfa{bottom:738.381000px;}
.y274{bottom:739.620000px;}
.y220{bottom:741.855000px;}
.y1ad{bottom:742.405500px;}
.y7a{bottom:744.133500px;}
.y169{bottom:745.272000px;}
.yb8{bottom:751.681500px;}
.y23f{bottom:752.428500px;}
.y1d9{bottom:753.952500px;}
.y9c{bottom:755.031000px;}
.y4a{bottom:756.891000px;}
.y113{bottom:757.404000px;}
.y295{bottom:757.903500px;}
.yf9{bottom:758.704500px;}
.y273{bottom:759.943500px;}
.y21f{bottom:762.178500px;}
.y1ac{bottom:762.729000px;}
.y79{bottom:764.457000px;}
.y258{bottom:765.877500px;}
.y25{bottom:766.254000px;}
.y2af{bottom:768.031500px;}
.yb7{bottom:772.005000px;}
.y145{bottom:772.171500px;}
.y26a{bottom:772.752000px;}
.y1d8{bottom:774.276000px;}
.y9b{bottom:775.354500px;}
.y203{bottom:776.460000px;}
.y294{bottom:778.227000px;}
.yf8{bottom:779.028000px;}
.y168{bottom:779.046000px;}
.y272{bottom:780.267000px;}
.y21e{bottom:782.503500px;}
.y134{bottom:782.992500px;}
.y1ab{bottom:783.052500px;}
.y48{bottom:784.425000px;}
.y78{bottom:784.780500px;}
.y23e{bottom:786.201000px;}
.y112{bottom:791.178000px;}
.y144{bottom:792.495000px;}
.y269{bottom:793.075500px;}
.y47{bottom:795.649500px;}
.y202{bottom:796.783500px;}
.y293{bottom:798.550500px;}
.yf7{bottom:799.353000px;}
.y167{bottom:799.369500px;}
.y271{bottom:800.590500px;}
.y21d{bottom:802.827000px;}
.yb6{bottom:802.894500px;}
.y133{bottom:803.316000px;}
.y1aa{bottom:803.376000px;}
.y2ae{bottom:804.793500px;}
.y77{bottom:805.104000px;}
.y9a{bottom:806.244000px;}
.y23d{bottom:806.526000px;}
.y1c4{bottom:808.992000px;}
.y24{bottom:810.067500px;}
.y111{bottom:811.501500px;}
.y49{bottom:814.645500px;}
.y1d7{bottom:816.972000px;}
.y201{bottom:817.108500px;}
.yf6{bottom:819.676500px;}
.y21c{bottom:823.150500px;}
.y143{bottom:823.384500px;}
.y132{bottom:823.639500px;}
.y1a9{bottom:823.701000px;}
.y46{bottom:823.843500px;}
.y2ad{bottom:825.117000px;}
.y292{bottom:825.730500px;}
.y268{bottom:826.849500px;}
.y1c3{bottom:829.315500px;}
.y23{bottom:830.391000px;}
.y270{bottom:830.448000px;}
.y110{bottom:831.825000px;}
.y166{bottom:833.142000px;}
.y1d6{bottom:837.295500px;}
.y200{bottom:837.432000px;}
.y76{bottom:837.433500px;}
.yf5{bottom:840.000000px;}
.y23c{bottom:840.298500px;}
.y131{bottom:843.963000px;}
.y1a8{bottom:844.024500px;}
.y45{bottom:844.167000px;}
.y2ac{bottom:845.440500px;}
.yb5{bottom:846.708000px;}
.y267{bottom:847.173000px;}
.y1c2{bottom:849.640500px;}
.y99{bottom:850.057500px;}
.y5{bottom:850.467000px;}
.y22{bottom:850.716000px;}
.y26f{bottom:850.771500px;}
.y10f{bottom:852.148500px;}
.y165{bottom:853.467000px;}
.y291{bottom:856.866000px;}
.y1d5{bottom:857.619000px;}
.y1ff{bottom:857.755500px;}
.y75{bottom:857.757000px;}
.y21b{bottom:859.675500px;}
.yf4{bottom:860.323500px;}
.y23b{bottom:860.622000px;}
.y44{bottom:864.490500px;}
.yb4{bottom:867.031500px;}
.y142{bottom:867.198000px;}
.y1c1{bottom:869.964000px;}
.y98{bottom:870.381000px;}
.y21{bottom:871.039500px;}
.y26e{bottom:871.096500px;}
.y10e{bottom:872.473500px;}
.y1fe{bottom:873.229500px;}
.y1a7{bottom:874.914000px;}
.y130{bottom:877.513500px;}
.y1d4{bottom:877.942500px;}
.y1fd{bottom:878.079000px;}
.y74{bottom:878.082000px;}
.yf3{bottom:880.647000px;}
.y23a{bottom:880.947000px;}
.y290{bottom:884.046000px;}
.y43{bottom:884.815500px;}
.y4{bottom:887.062500px;}
.y164{bottom:887.239500px;}
.yb3{bottom:887.356500px;}
.y141{bottom:887.521500px;}
.y2ab{bottom:888.657000px;}
.y20{bottom:891.363000px;}
.y26d{bottom:891.420000px;}
.y10d{bottom:892.797000px;}
.y12f{bottom:897.837000px;}
.y1d3{bottom:898.266000px;}
.y1fc{bottom:898.402500px;}
.yf2{bottom:900.972000px;}
.y266{bottom:901.270500px;}
.y1c0{bottom:901.891500px;}
.y97{bottom:904.153500px;}
.y28f{bottom:904.369500px;}
.y163{bottom:907.563000px;}
.y140{bottom:907.845000px;}
.y73{bottom:908.244000px;}
.y21a{bottom:910.729500px;}
.y26c{bottom:911.743500px;}
.y239{bottom:914.719500px;}
.y42{bottom:917.802000px;}
.y12e{bottom:918.162000px;}
.y1a6{bottom:918.727500px;}
.yb2{bottom:921.129000px;}
.yf1{bottom:921.295500px;}
.y1bf{bottom:922.216500px;}
.y1f{bottom:922.252500px;}
.y96{bottom:924.478500px;}
.y28e{bottom:924.693000px;}
.y2aa{bottom:925.419000px;}
.y162{bottom:927.888000px;}
.y13f{bottom:928.170000px;}
.y41{bottom:929.026500px;}
.y1d2{bottom:929.275500px;}
.y10c{bottom:931.053000px;}
.y3{bottom:932.389500px;}
.y238{bottom:935.043000px;}
.y1a5{bottom:939.051000px;}
.y72{bottom:939.133500px;}
.yb1{bottom:941.452500px;}
.yf0{bottom:941.619000px;}
.y1be{bottom:942.540000px;}
.y26b{bottom:942.633000px;}
.y2a9{bottom:945.742500px;}
.y28d{bottom:945.984000px;}
.y161{bottom:948.211500px;}
.y13e{bottom:948.493500px;}
.y1d1{bottom:949.599000px;}
.y10b{bottom:951.376500px;}
.y237{bottom:955.368000px;}
.y28c{bottom:957.208500px;}
.y95{bottom:958.251000px;}
.y1a4{bottom:959.374500px;}
.yef{bottom:961.942500px;}
.y2{bottom:965.266500px;}
.y1e{bottom:966.066000px;}
.y160{bottom:968.535000px;}
.ye3{bottom:968.817000px;}
.y1d0{bottom:969.922500px;}
.y10a{bottom:971.701500px;}
.y40{bottom:975.226500px;}
.y94{bottom:978.574500px;}
.y1a3{bottom:979.698000px;}
.y71{bottom:982.266000px;}
.y1d{bottom:986.389500px;}
.ye2{bottom:989.140500px;}
.y1cf{bottom:990.246000px;}
.y109{bottom:992.025000px;}
.y3f{bottom:995.550000px;}
.y1{bottom:998.143500px;}
.y15f{bottom:999.424500px;}
.y1a2{bottom:1000.021500px;}
.y70{bottom:1002.591000px;}
.y1c{bottom:1006.713000px;}
.ye1{bottom:1009.464000px;}
.y93{bottom:1012.348500px;}
.y1a1{bottom:1020.346500px;}
.y6f{bottom:1022.914500px;}
.y3e{bottom:1026.439500px;}
.y1b{bottom:1027.038000px;}
.ye0{bottom:1029.789000px;}
.y92{bottom:1032.672000px;}
.y6e{bottom:1043.238000px;}
.y1a{bottom:1063.561500px;}
.h7{height:17.548598px;}
.h17{height:21.861836px;}
.h11{height:35.865450px;}
.h18{height:35.913271px;}
.h8{height:40.402598px;}
.h4{height:42.500452px;}
.h5{height:44.891476px;}
.h1d{height:46.704624px;}
.h1e{height:49.156405px;}
.h2d{height:49.260579px;}
.h3{height:50.642227px;}
.ha{height:53.870131px;}
.h6{height:56.618229px;}
.h27{height:57.807836px;}
.h19{height:59.613450px;}
.h14{height:59.619450px;}
.h9{height:60.426194px;}
.h21{height:61.635450px;}
.h2{height:61.941271px;}
.h16{height:62.889450px;}
.h28{height:62.895450px;}
.h29{height:65.442579px;}
.h1c{height:65.638950px;}
.h1f{height:66.015450px;}
.h15{height:72.800229px;}
.h1{height:73.131019px;}
.h2c{height:73.268229px;}
.h2e{height:75.801450px;}
.h2b{height:79.071450px;}
.h22{height:79.184229px;}
.h2a{height:79.545450px;}
.h20{height:85.413450px;}
.h1b{height:93.370950px;}
.h12{height:93.376950px;}
.h13{height:101.516229px;}
.h1a{height:107.787450px;}
.hb{height:110.955836px;}
.hc{height:114.153836px;}
.hf{height:116.769836px;}
.h24{height:133.791836px;}
.h25{height:138.268950px;}
.hd{height:148.797450px;}
.h23{height:155.853836px;}
.he{height:159.051836px;}
.h10{height:161.667836px;}
.h26{height:161.673836px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x29{left:116.136000px;}
.x2{left:120.426000px;}
.xa{left:126.651000px;}
.x22{left:128.070000px;}
.xc{left:133.404000px;}
.x2a{left:141.496500px;}
.x8{left:148.909500px;}
.x26{left:168.535500px;}
.x7{left:171.319500px;}
.x3{left:173.704500px;}
.x25{left:184.698000px;}
.x2f{left:198.889500px;}
.x38{left:203.508000px;}
.x23{left:235.140000px;}
.x2d{left:263.104500px;}
.x39{left:273.385500px;}
.x24{left:277.599000px;}
.x11{left:279.558000px;}
.xd{left:283.518000px;}
.x18{left:285.105000px;}
.x1{left:315.495000px;}
.x40{left:319.215000px;}
.x3a{left:320.448000px;}
.x28{left:326.469000px;}
.x3e{left:344.385000px;}
.x1d{left:348.715500px;}
.x1e{left:351.384000px;}
.x2c{left:353.217000px;}
.xe{left:356.893500px;}
.x3f{left:365.541000px;}
.x2e{left:370.252500px;}
.x15{left:373.246500px;}
.x37{left:375.261000px;}
.x36{left:376.339500px;}
.x1a{left:381.024000px;}
.x34{left:383.050500px;}
.x5{left:390.855000px;}
.xf{left:395.019000px;}
.x19{left:396.933000px;}
.x4{left:400.119000px;}
.x1f{left:407.556000px;}
.x2b{left:424.716000px;}
.x6{left:426.130500px;}
.x20{left:428.253000px;}
.x35{left:433.245000px;}
.x30{left:435.135000px;}
.x16{left:441.868500px;}
.x27{left:450.864000px;}
.xb{left:454.932000px;}
.x12{left:456.117000px;}
.x21{left:470.932500px;}
.x10{left:487.110000px;}
.x3d{left:489.924000px;}
.x1c{left:502.743000px;}
.x1b{left:523.470000px;}
.x31{left:596.854500px;}
.x3b{left:617.892000px;}
.x13{left:631.344000px;}
.x17{left:654.805500px;}
.x3c{left:682.939500px;}
.x32{left:702.466500px;}
.x33{left:781.071000px;}
.x14{left:789.207000px;}
@media print{
.v19{vertical-align:-99.493333pt;}
.v13{vertical-align:-57.552000pt;}
.v4{vertical-align:-52.757333pt;}
.ve{vertical-align:-34.906667pt;}
.v2{vertical-align:-20.314667pt;}
.v11{vertical-align:-11.840000pt;}
.vc{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v1b{vertical-align:6.074667pt;}
.v10{vertical-align:8.725333pt;}
.v15{vertical-align:11.333333pt;}
.vf{vertical-align:14.384000pt;}
.vb{vertical-align:16.810667pt;}
.v14{vertical-align:20.058667pt;}
.va{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v17{vertical-align:24.026667pt;}
.v12{vertical-align:26.800000pt;}
.v7{vertical-align:31.184000pt;}
.v1c{vertical-align:35.498667pt;}
.v1a{vertical-align:38.405333pt;}
.v6{vertical-align:39.360000pt;}
.v9{vertical-align:60.474667pt;}
.v8{vertical-align:63.930667pt;}
.v3{vertical-align:79.194667pt;}
.v5{vertical-align:82.037333pt;}
.vd{vertical-align:84.362667pt;}
.v18{vertical-align:99.493333pt;}
.v16{vertical-align:119.104000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.000502pt;}
.ls58{letter-spacing:0.000727pt;}
.ls46{letter-spacing:0.000760pt;}
.ls7c{letter-spacing:0.000908pt;}
.ls17{letter-spacing:0.001404pt;}
.lsbe{letter-spacing:0.001613pt;}
.ls19{letter-spacing:0.001911pt;}
.lse4{letter-spacing:0.001914pt;}
.ls50{letter-spacing:0.002153pt;}
.ls34{letter-spacing:0.002249pt;}
.ls5e{letter-spacing:0.002411pt;}
.ls33{letter-spacing:0.003856pt;}
.ls23{letter-spacing:0.004316pt;}
.ls21{letter-spacing:0.004321pt;}
.ls4b{letter-spacing:0.004710pt;}
.lsda{letter-spacing:0.005470pt;}
.ls88{letter-spacing:0.006632pt;}
.ls22{letter-spacing:0.007080pt;}
.lsc7{letter-spacing:0.007391pt;}
.ls5d{letter-spacing:0.007429pt;}
.lsde{letter-spacing:0.007723pt;}
.lsf9{letter-spacing:0.007863pt;}
.lsac{letter-spacing:0.008463pt;}
.ls3b{letter-spacing:0.008962pt;}
.ls83{letter-spacing:0.009195pt;}
.ls1b{letter-spacing:0.009620pt;}
.ls114{letter-spacing:0.009710pt;}
.lsad{letter-spacing:0.012046pt;}
.lsdc{letter-spacing:0.013011pt;}
.ls24{letter-spacing:0.013014pt;}
.ls81{letter-spacing:0.013374pt;}
.lsed{letter-spacing:0.014356pt;}
.lsa8{letter-spacing:0.014620pt;}
.ls2f{letter-spacing:0.015025pt;}
.ls60{letter-spacing:0.015521pt;}
.lsa7{letter-spacing:0.016125pt;}
.lsab{letter-spacing:0.016276pt;}
.lsbb{letter-spacing:0.016412pt;}
.ls8f{letter-spacing:0.017129pt;}
.ls32{letter-spacing:0.017796pt;}
.lsef{letter-spacing:0.017810pt;}
.lse2{letter-spacing:0.017976pt;}
.lsc8{letter-spacing:0.019064pt;}
.lsff{letter-spacing:0.020651pt;}
.ls7b{letter-spacing:0.020663pt;}
.ls66{letter-spacing:0.021488pt;}
.ls7d{letter-spacing:0.021980pt;}
.lscf{letter-spacing:0.022703pt;}
.ls3d{letter-spacing:0.022717pt;}
.ls10b{letter-spacing:0.023136pt;}
.lsa1{letter-spacing:0.023295pt;}
.ls10e{letter-spacing:0.024117pt;}
.ls108{letter-spacing:0.024298pt;}
.ls36{letter-spacing:0.024344pt;}
.lsa3{letter-spacing:0.024460pt;}
.ls111{letter-spacing:0.024539pt;}
.ls92{letter-spacing:0.025839pt;}
.ls105{letter-spacing:0.026064pt;}
.ls29{letter-spacing:0.026065pt;}
.ls49{letter-spacing:0.030068pt;}
.ls77{letter-spacing:1.105455pt;}
.lsb8{letter-spacing:1.629092pt;}
.ls99{letter-spacing:1.721549pt;}
.ls70{letter-spacing:1.738670pt;}
.ls2{letter-spacing:1.912819pt;}
.ls9b{letter-spacing:2.036365pt;}
.lse8{letter-spacing:2.087228pt;}
.lsd0{letter-spacing:2.094547pt;}
.ls4d{letter-spacing:2.096891pt;}
.ls61{letter-spacing:2.109450pt;}
.lsfa{letter-spacing:2.638283pt;}
.lsa2{letter-spacing:2.651520pt;}
.ls10{letter-spacing:2.653258pt;}
.ls2b{letter-spacing:2.653398pt;}
.ls4{letter-spacing:2.654327pt;}
.lsb6{letter-spacing:2.655975pt;}
.ls71{letter-spacing:2.656473pt;}
.ls42{letter-spacing:2.656853pt;}
.ls2d{letter-spacing:2.658591pt;}
.ls14{letter-spacing:2.658731pt;}
.ls6a{letter-spacing:2.659046pt;}
.ls47{letter-spacing:2.850911pt;}
.lsf4{letter-spacing:2.924405pt;}
.lse7{letter-spacing:3.141821pt;}
.ls10c{letter-spacing:3.228058pt;}
.ls106{letter-spacing:3.228580pt;}
.ls2a{letter-spacing:3.233914pt;}
.ls10d{letter-spacing:3.245017pt;}
.lsd{letter-spacing:3.316366pt;}
.ls8c{letter-spacing:3.333691pt;}
.lsf{letter-spacing:3.374548pt;}
.lsfd{letter-spacing:3.432730pt;}
.lscc{letter-spacing:4.189094pt;}
.lsbd{letter-spacing:4.712731pt;}
.ls100{letter-spacing:5.569278pt;}
.ls109{letter-spacing:5.594155pt;}
.ls102{letter-spacing:5.599488pt;}
.ls26{letter-spacing:5.609172pt;}
.ls113{letter-spacing:5.617899pt;}
.lsbc{letter-spacing:5.929049pt;}
.lsbf{letter-spacing:5.934383pt;}
.lsca{letter-spacing:6.370591pt;}
.ls13{letter-spacing:6.375733pt;}
.lsd3{letter-spacing:6.377184pt;}
.ls12{letter-spacing:6.379611pt;}
.ls6{letter-spacing:6.574551pt;}
.lsc{letter-spacing:6.632733pt;}
.ls4e{letter-spacing:7.766187pt;}
.ls89{letter-spacing:8.929817pt;}
.ls104{letter-spacing:9.658190pt;}
.ls11{letter-spacing:9.698397pt;}
.lsd6{letter-spacing:9.712828pt;}
.ls4f{letter-spacing:9.716372pt;}
.ls1e{letter-spacing:9.729791pt;}
.lsce{letter-spacing:11.752737pt;}
.lscb{letter-spacing:12.160010pt;}
.ls4a{letter-spacing:12.349258pt;}
.ls9e{letter-spacing:12.354591pt;}
.ls15{letter-spacing:12.916374pt;}
.ls7{letter-spacing:13.032738pt;}
.ls3c{letter-spacing:13.207284pt;}
.ls6c{letter-spacing:13.628928pt;}
.ls74{letter-spacing:13.676749pt;}
.ls2c{letter-spacing:13.730921pt;}
.ls7f{letter-spacing:14.021830pt;}
.lsd9{letter-spacing:14.080012pt;}
.ls95{letter-spacing:14.370921pt;}
.lsc5{letter-spacing:14.778194pt;}
.lsf7{letter-spacing:14.836376pt;}
.ls97{letter-spacing:15.476377pt;}
.lsd5{letter-spacing:15.581258pt;}
.ls1a{letter-spacing:15.586591pt;}
.ls64{letter-spacing:15.941831pt;}
.ls20{letter-spacing:16.071733pt;}
.ls5c{letter-spacing:16.116377pt;}
.lsd2{letter-spacing:16.159477pt;}
.ls37{letter-spacing:16.174559pt;}
.lsc1{letter-spacing:16.181730pt;}
.ls43{letter-spacing:16.232741pt;}
.ls44{letter-spacing:16.290923pt;}
.ls6e{letter-spacing:16.402534pt;}
.lsb4{letter-spacing:16.523650pt;}
.ls78{letter-spacing:16.640014pt;}
.ls3a{letter-spacing:16.872741pt;}
.ls39{letter-spacing:16.930923pt;}
.ls52{letter-spacing:16.989105pt;}
.ls9{letter-spacing:17.163651pt;}
.ls3{letter-spacing:17.534176pt;}
.lsf6{letter-spacing:17.629106pt;}
.ls68{letter-spacing:17.687287pt;}
.ls10f{letter-spacing:17.861833pt;}
.ls28{letter-spacing:18.152742pt;}
.ls51{letter-spacing:18.269106pt;}
.ls5f{letter-spacing:18.560015pt;}
.lsaa{letter-spacing:18.618197pt;}
.ls3f{letter-spacing:18.676379pt;}
.ls8{letter-spacing:18.792743pt;}
.ls110{letter-spacing:18.813258pt;}
.ls103{letter-spacing:18.813398pt;}
.lse9{letter-spacing:18.814964pt;}
.ls5a{letter-spacing:18.816853pt;}
.ls7e{letter-spacing:18.818591pt;}
.ls10a{letter-spacing:18.818731pt;}
.ls93{letter-spacing:18.818868pt;}
.lsfb{letter-spacing:18.850925pt;}
.lsaf{letter-spacing:18.909107pt;}
.lsc4{letter-spacing:18.967289pt;}
.ls69{letter-spacing:19.025470pt;}
.lse5{letter-spacing:19.079072pt;}
.lsf1{letter-spacing:19.084405pt;}
.ls82{letter-spacing:19.258198pt;}
.ls1f{letter-spacing:19.296788pt;}
.lsd4{letter-spacing:19.300811pt;}
.lse{letter-spacing:19.316380pt;}
.ls16{letter-spacing:19.319680pt;}
.lsd7{letter-spacing:19.321554pt;}
.lscd{letter-spacing:19.323820pt;}
.ls8e{letter-spacing:19.374562pt;}
.ls30{letter-spacing:19.432743pt;}
.ls45{letter-spacing:19.490925pt;}
.lsa0{letter-spacing:19.549107pt;}
.ls87{letter-spacing:19.607289pt;}
.lse0{letter-spacing:19.781835pt;}
.ls90{letter-spacing:19.956380pt;}
.lsa4{letter-spacing:20.014562pt;}
.ls6f{letter-spacing:20.036915pt;}
.lsc0{letter-spacing:20.305471pt;}
.ls67{letter-spacing:20.311925pt;}
.ls8d{letter-spacing:20.363653pt;}
.ls2e{letter-spacing:20.480017pt;}
.lsf2{letter-spacing:20.596381pt;}
.ls0{letter-spacing:20.828476pt;}
.ls27{letter-spacing:20.834731pt;}
.ls75{letter-spacing:20.897690pt;}
.lsa6{letter-spacing:21.178199pt;}
.ls7a{letter-spacing:21.248853pt;}
.ls96{letter-spacing:21.410927pt;}
.ls62{letter-spacing:21.469109pt;}
.lsfc{letter-spacing:21.511925pt;}
.ls76{letter-spacing:21.585473pt;}
.lsa{letter-spacing:21.818200pt;}
.ls94{letter-spacing:21.943925pt;}
.ls3e{letter-spacing:22.391925pt;}
.ls53{letter-spacing:22.438187pt;}
.ls54{letter-spacing:22.522585pt;}
.lsdb{letter-spacing:22.532811pt;}
.lsc9{letter-spacing:22.537348pt;}
.lsa5{letter-spacing:22.717107pt;}
.ls86{letter-spacing:22.981837pt;}
.lsb1{letter-spacing:23.098201pt;}
.lsf5{letter-spacing:23.156383pt;}
.ls91{letter-spacing:23.389110pt;}
.lsec{letter-spacing:23.447292pt;}
.lseb{letter-spacing:23.505474pt;}
.ls63{letter-spacing:23.680020pt;}
.ls9c{letter-spacing:23.796383pt;}
.lsba{letter-spacing:23.920853pt;}
.lsb0{letter-spacing:23.927925pt;}
.lsb2{letter-spacing:23.929067pt;}
.ls1{letter-spacing:24.175909pt;}
.lsae{letter-spacing:24.261838pt;}
.ls9d{letter-spacing:24.352853pt;}
.lsa9{letter-spacing:24.727293pt;}
.lsf8{letter-spacing:24.901839pt;}
.ls59{letter-spacing:24.903925pt;}
.lsf3{letter-spacing:25.204297pt;}
.lsb3{letter-spacing:25.309112pt;}
.lse1{letter-spacing:25.460297pt;}
.ls80{letter-spacing:25.600021pt;}
.ls101{letter-spacing:25.624064pt;}
.ls1d{letter-spacing:25.716385pt;}
.lse3{letter-spacing:25.724405pt;}
.ls79{letter-spacing:25.757258pt;}
.ls84{letter-spacing:26.123658pt;}
.ls85{letter-spacing:26.181840pt;}
.ls65{letter-spacing:26.240022pt;}
.ls5b{letter-spacing:26.298204pt;}
.lsee{letter-spacing:26.308297pt;}
.lsb{letter-spacing:26.414567pt;}
.ls48{letter-spacing:26.472749pt;}
.ls9f{letter-spacing:26.530931pt;}
.lsf0{letter-spacing:26.572405pt;}
.ls40{letter-spacing:27.694569pt;}
.ls41{letter-spacing:27.752750pt;}
.ls8b{letter-spacing:27.810932pt;}
.lsb9{letter-spacing:27.846187pt;}
.lsb7{letter-spacing:28.334569pt;}
.ls98{letter-spacing:28.916388pt;}
.lsdf{letter-spacing:28.955520pt;}
.ls35{letter-spacing:29.090933pt;}
.ls18{letter-spacing:29.517258pt;}
.ls8a{letter-spacing:29.905479pt;}
.ls57{letter-spacing:31.243662pt;}
.ls4c{letter-spacing:31.447925pt;}
.ls9a{letter-spacing:31.476390pt;}
.ls38{letter-spacing:32.407300pt;}
.ls56{letter-spacing:34.618211pt;}
.lsc2{letter-spacing:35.551488pt;}
.ls31{letter-spacing:83.374615pt;}
.ls73{letter-spacing:159.530189pt;}
.ls6b{letter-spacing:179.758387pt;}
.lsd8{letter-spacing:220.302517pt;}
.ls6d{letter-spacing:237.238989pt;}
.ls72{letter-spacing:278.938726pt;}
.lsd1{letter-spacing:448.640374pt;}
.ls1c{letter-spacing:550.134277pt;}
.ls112{letter-spacing:737.571524pt;}
.lsc6{letter-spacing:797.906119pt;}
.ls107{letter-spacing:847.418888pt;}
.lsfe{letter-spacing:851.200709pt;}
.ls25{letter-spacing:869.178906pt;}
.lsdd{letter-spacing:875.113457pt;}
.lsea{letter-spacing:935.937739pt;}
.lse6{letter-spacing:939.236297pt;}
.lsc3{letter-spacing:950.399911pt;}
.ls55{letter-spacing:1102.551733pt;}
.wsf1{word-spacing:-58.181867pt;}
.ws1a5{word-spacing:-47.778949pt;}
.ws3d{word-spacing:-46.062584pt;}
.ws5e{word-spacing:-42.007308pt;}
.ws193{word-spacing:-39.272760pt;}
.ws3e{word-spacing:-37.899668pt;}
.wse1{word-spacing:-33.233482pt;}
.wsa{word-spacing:-32.305391pt;}
.ws3f{word-spacing:-29.521250pt;}
.ws83{word-spacing:-29.079297pt;}
.wsc{word-spacing:-28.957957pt;}
.ws32{word-spacing:-28.928024pt;}
.wsbe{word-spacing:-28.241478pt;}
.ws43{word-spacing:-28.183296pt;}
.wsb1{word-spacing:-24.570327pt;}
.ws45{word-spacing:-21.725109pt;}
.ws6a{word-spacing:-21.026927pt;}
.ws6c{word-spacing:-20.968745pt;}
.ws93{word-spacing:-19.630562pt;}
.wsea{word-spacing:-19.153471pt;}
.ws10a{word-spacing:-18.757834pt;}
.wsf5{word-spacing:-18.746197pt;}
.ws16c{word-spacing:-18.466924pt;}
.wsfe{word-spacing:-18.280743pt;}
.ws149{word-spacing:-18.222561pt;}
.ws60{word-spacing:-17.233469pt;}
.ws13c{word-spacing:-16.837832pt;}
.ws101{word-spacing:-16.826196pt;}
.wsf6{word-spacing:-16.651650pt;}
.ws94{word-spacing:-16.546923pt;}
.ws167{word-spacing:-16.302559pt;}
.ws19b{word-spacing:-16.256014pt;}
.wsbf{word-spacing:-16.244377pt;}
.ws100{word-spacing:-16.186195pt;}
.ws40{word-spacing:-16.162923pt;}
.wsfd{word-spacing:-16.069832pt;}
.ws1f{word-spacing:-15.953468pt;}
.ws20{word-spacing:-15.895286pt;}
.ws12f{word-spacing:-15.837104pt;}
.ws11b{word-spacing:-15.720740pt;}
.ws56{word-spacing:-15.662559pt;}
.ws11d{word-spacing:-15.604377pt;}
.ws99{word-spacing:-15.546195pt;}
.wsa8{word-spacing:-15.429831pt;}
.ws137{word-spacing:-15.313467pt;}
.ws6d{word-spacing:-15.255285pt;}
.ws184{word-spacing:-15.197104pt;}
.ws133{word-spacing:-15.138922pt;}
.ws18e{word-spacing:-15.080740pt;}
.ws25{word-spacing:-14.906194pt;}
.wsc7{word-spacing:-14.848012pt;}
.ws30{word-spacing:-14.789831pt;}
.ws117{word-spacing:-14.731649pt;}
.ws196{word-spacing:-14.707306pt;}
.wsd9{word-spacing:-14.673467pt;}
.ws7e{word-spacing:-14.615285pt;}
.wsf8{word-spacing:-14.557103pt;}
.wsd5{word-spacing:-14.498921pt;}
.wsc5{word-spacing:-14.440739pt;}
.ws8b{word-spacing:-14.382557pt;}
.ws152{word-spacing:-14.266194pt;}
.ws12c{word-spacing:-14.208012pt;}
.ws7c{word-spacing:-14.149830pt;}
.ws164{word-spacing:-14.091648pt;}
.wsdd{word-spacing:-13.975284pt;}
.ws19a{word-spacing:-13.955147pt;}
.ws46{word-spacing:-13.917973pt;}
.ws5d{word-spacing:-13.917103pt;}
.ws141{word-spacing:-13.858921pt;}
.ws166{word-spacing:-13.800739pt;}
.ws155{word-spacing:-13.684375pt;}
.ws68{word-spacing:-13.644834pt;}
.ws14d{word-spacing:-13.568011pt;}
.ws13f{word-spacing:-13.509829pt;}
.wsa9{word-spacing:-13.451648pt;}
.ws11f{word-spacing:-13.393466pt;}
.ws138{word-spacing:-13.335284pt;}
.wsc4{word-spacing:-13.277102pt;}
.ws17b{word-spacing:-13.218920pt;}
.ws73{word-spacing:-13.160738pt;}
.ws2d{word-spacing:-13.102556pt;}
.ws1a{word-spacing:-13.044375pt;}
.wse8{word-spacing:-12.986193pt;}
.wsd3{word-spacing:-12.928011pt;}
.ws5f{word-spacing:-12.869829pt;}
.ws156{word-spacing:-12.811647pt;}
.ws119{word-spacing:-12.753465pt;}
.ws189{word-spacing:-12.695283pt;}
.ws128{word-spacing:-12.637101pt;}
.ws38{word-spacing:-12.578920pt;}
.ws2e{word-spacing:-12.520738pt;}
.wsba{word-spacing:-12.462556pt;}
.wsf4{word-spacing:-12.404374pt;}
.ws12b{word-spacing:-12.346192pt;}
.wsfc{word-spacing:-12.288010pt;}
.wseb{word-spacing:-12.229828pt;}
.ws124{word-spacing:-12.171647pt;}
.wse2{word-spacing:-12.113465pt;}
.ws13e{word-spacing:-12.055283pt;}
.ws8d{word-spacing:-12.012585pt;}
.ws14e{word-spacing:-11.997101pt;}
.ws1d{word-spacing:-11.948824pt;}
.ws135{word-spacing:-11.938919pt;}
.wse5{word-spacing:-11.880737pt;}
.ws14c{word-spacing:-11.822555pt;}
.ws1e{word-spacing:-11.764373pt;}
.ws160{word-spacing:-11.648010pt;}
.wsce{word-spacing:-11.589828pt;}
.wscf{word-spacing:-11.531646pt;}
.ws116{word-spacing:-11.473464pt;}
.ws71{word-spacing:-11.415282pt;}
.ws125{word-spacing:-11.357100pt;}
.ws11e{word-spacing:-11.298919pt;}
.ws57{word-spacing:-11.240737pt;}
.wsd1{word-spacing:-11.182555pt;}
.wsee{word-spacing:-11.124373pt;}
.ws4b{word-spacing:-11.066191pt;}
.wsf7{word-spacing:-11.008009pt;}
.ws162{word-spacing:-10.949827pt;}
.ws53{word-spacing:-10.891645pt;}
.ws8f{word-spacing:-10.833464pt;}
.ws102{word-spacing:-10.775282pt;}
.ws7f{word-spacing:-10.724016pt;}
.wsfa{word-spacing:-10.717100pt;}
.wsf3{word-spacing:-10.704167pt;}
.ws163{word-spacing:-10.700094pt;}
.ws19d{word-spacing:-10.699390pt;}
.ws1ab{word-spacing:-10.685973pt;}
.ws199{word-spacing:-10.681742pt;}
.ws66{word-spacing:-10.658918pt;}
.ws161{word-spacing:-10.600736pt;}
.wsef{word-spacing:-10.542554pt;}
.ws98{word-spacing:-10.484372pt;}
.ws24{word-spacing:-10.426191pt;}
.ws9d{word-spacing:-10.368009pt;}
.ws27{word-spacing:-10.309827pt;}
.ws50{word-spacing:-10.251645pt;}
.wsf9{word-spacing:-10.193463pt;}
.ws194{word-spacing:-10.179147pt;}
.ws2a{word-spacing:-10.135281pt;}
.ws1c{word-spacing:-10.077099pt;}
.ws29{word-spacing:-10.018917pt;}
.ws70{word-spacing:-9.902554pt;}
.ws7d{word-spacing:-9.844372pt;}
.ws136{word-spacing:-9.844016pt;}
.ws7b{word-spacing:-9.786190pt;}
.ws58{word-spacing:-9.728008pt;}
.ws16{word-spacing:-9.669826pt;}
.ws2f{word-spacing:-9.611644pt;}
.ws21{word-spacing:-9.553463pt;}
.ws55{word-spacing:-9.495281pt;}
.ws190{word-spacing:-9.424899pt;}
.ws59{word-spacing:-9.378917pt;}
.wsf0{word-spacing:-9.320735pt;}
.wsbd{word-spacing:-9.262553pt;}
.ws67{word-spacing:-9.204371pt;}
.ws1ae{word-spacing:-9.181559pt;}
.ws1aa{word-spacing:-9.176226pt;}
.ws84{word-spacing:-9.146189pt;}
.wsd0{word-spacing:-9.088008pt;}
.wse9{word-spacing:-9.029826pt;}
.wsc3{word-spacing:-8.971644pt;}
.ws52{word-spacing:-8.913462pt;}
.ws140{word-spacing:-8.855280pt;}
.ws6e{word-spacing:-8.797098pt;}
.wsa6{word-spacing:-8.738916pt;}
.ws165{word-spacing:-8.680735pt;}
.wsda{word-spacing:-8.622553pt;}
.wsdb{word-spacing:-8.564371pt;}
.wscd{word-spacing:-8.506189pt;}
.ws47{word-spacing:-8.448007pt;}
.ws14f{word-spacing:-8.389825pt;}
.ws15{word-spacing:-8.331643pt;}
.ws15c{word-spacing:-8.273461pt;}
.wsae{word-spacing:-8.215613pt;}
.wsff{word-spacing:-8.215280pt;}
.ws10d{word-spacing:-8.167793pt;}
.ws8e{word-spacing:-8.157098pt;}
.wsc1{word-spacing:-8.098916pt;}
.ws143{word-spacing:-8.040734pt;}
.ws2b{word-spacing:-7.982552pt;}
.wse3{word-spacing:-7.924370pt;}
.ws144{word-spacing:-7.866188pt;}
.ws109{word-spacing:-7.808007pt;}
.ws5a{word-spacing:-7.749825pt;}
.ws1a2{word-spacing:-7.693559pt;}
.ws48{word-spacing:-7.691643pt;}
.ws16d{word-spacing:-7.633461pt;}
.ws139{word-spacing:-7.578284pt;}
.wsd2{word-spacing:-7.575279pt;}
.ws19e{word-spacing:-7.555306pt;}
.wsa1{word-spacing:-7.517097pt;}
.ws9f{word-spacing:-7.458915pt;}
.ws92{word-spacing:-7.400733pt;}
.ws8c{word-spacing:-7.342552pt;}
.wse7{word-spacing:-7.284370pt;}
.wsd4{word-spacing:-7.226188pt;}
.ws54{word-spacing:-7.168006pt;}
.ws34{word-spacing:-7.109824pt;}
.ws33{word-spacing:-7.051642pt;}
.ws1b{word-spacing:-6.993460pt;}
.ws15b{word-spacing:-6.935279pt;}
.ws14b{word-spacing:-6.877097pt;}
.ws39{word-spacing:-6.702551pt;}
.ws1a3{word-spacing:-6.669973pt;}
.ws6b{word-spacing:-6.644369pt;}
.ws121{word-spacing:-6.586187pt;}
.ws1ac{word-spacing:-6.504733pt;}
.ws16f{word-spacing:-6.469824pt;}
.ws198{word-spacing:-6.446551pt;}
.wsb9{word-spacing:-6.411642pt;}
.ws79{word-spacing:-6.353460pt;}
.wsed{word-spacing:-6.237096pt;}
.ws26{word-spacing:-6.178914pt;}
.ws51{word-spacing:-6.120732pt;}
.ws127{word-spacing:-6.062551pt;}
.ws195{word-spacing:-6.050892pt;}
.wse4{word-spacing:-6.004369pt;}
.ws106{word-spacing:-5.946187pt;}
.ws49{word-spacing:-5.906892pt;}
.ws104{word-spacing:-5.888005pt;}
.ws2c{word-spacing:-5.829823pt;}
.ws13b{word-spacing:-5.775903pt;}
.ws177{word-spacing:-5.771641pt;}
.ws142{word-spacing:-5.655277pt;}
.ws4a{word-spacing:-5.603306pt;}
.ws74{word-spacing:-5.597096pt;}
.ws7a{word-spacing:-5.538914pt;}
.ws19f{word-spacing:-5.480732pt;}
.ws14{word-spacing:-5.422550pt;}
.wsa0{word-spacing:-5.398319pt;}
.ws148{word-spacing:-5.364368pt;}
.ws6f{word-spacing:-5.306186pt;}
.ws41{word-spacing:-5.248004pt;}
.ws130{word-spacing:-5.189823pt;}
.wsa2{word-spacing:-5.131641pt;}
.ws11a{word-spacing:-5.073459pt;}
.ws15a{word-spacing:-5.015277pt;}
.ws16e{word-spacing:-4.957095pt;}
.ws81{word-spacing:-4.898913pt;}
.ws28{word-spacing:-4.840731pt;}
.ws191{word-spacing:-4.724368pt;}
.ws103{word-spacing:-4.666186pt;}
.wsc8{word-spacing:-4.608004pt;}
.wsb4{word-spacing:-4.581233pt;}
.ws82{word-spacing:-4.549822pt;}
.ws1a1{word-spacing:-4.491640pt;}
.ws87{word-spacing:-4.487555pt;}
.ws44{word-spacing:-4.433458pt;}
.ws17a{word-spacing:-4.375276pt;}
.ws97{word-spacing:-4.317095pt;}
.wsab{word-spacing:-4.258913pt;}
.wsf2{word-spacing:-4.200731pt;}
.wsde{word-spacing:-4.142549pt;}
.ws12d{word-spacing:-4.084367pt;}
.ws118{word-spacing:-4.026185pt;}
.wscb{word-spacing:-3.968003pt;}
.ws5c{word-spacing:-3.909821pt;}
.wsb8{word-spacing:-3.863921pt;}
.ws85{word-spacing:-3.851640pt;}
.wsdf{word-spacing:-3.793458pt;}
.ws168{word-spacing:-3.735276pt;}
.ws3b{word-spacing:-3.677094pt;}
.ws9c{word-spacing:-3.618912pt;}
.wse6{word-spacing:-3.560730pt;}
.ws1b0{word-spacing:-3.502548pt;}
.ws96{word-spacing:-3.444367pt;}
.ws5b{word-spacing:-3.386185pt;}
.ws11c{word-spacing:-3.328003pt;}
.wsc2{word-spacing:-3.269821pt;}
.ws197{word-spacing:-3.246548pt;}
.wsb5{word-spacing:-3.242250pt;}
.ws37{word-spacing:-3.211639pt;}
.wsa3{word-spacing:-3.140175pt;}
.ws91{word-spacing:-2.978912pt;}
.wse0{word-spacing:-2.920730pt;}
.ws108{word-spacing:-2.862548pt;}
.ws107{word-spacing:-2.804366pt;}
.ws78{word-spacing:-2.746184pt;}
.ws31{word-spacing:-2.688002pt;}
.ws76{word-spacing:-2.629820pt;}
.wsa5{word-spacing:-2.571639pt;}
.ws35{word-spacing:-2.513457pt;}
.ws36{word-spacing:-2.455275pt;}
.ws123{word-spacing:-2.397093pt;}
.ws122{word-spacing:-2.338911pt;}
.ws77{word-spacing:-2.280729pt;}
.ws150{word-spacing:-2.222547pt;}
.ws174{word-spacing:-2.164365pt;}
.ws1a4{word-spacing:-2.048002pt;}
.ws4f{word-spacing:-1.989820pt;}
.ws153{word-spacing:-1.931638pt;}
.ws69{word-spacing:-1.873456pt;}
.ws182{word-spacing:-1.815274pt;}
.wsdc{word-spacing:-1.757092pt;}
.wsc6{word-spacing:-1.733820pt;}
.ws154{word-spacing:-1.698911pt;}
.ws42{word-spacing:-1.659565pt;}
.wsfb{word-spacing:-1.582547pt;}
.ws15f{word-spacing:-1.466183pt;}
.wsb3{word-spacing:-1.425060pt;}
.ws12a{word-spacing:-1.408001pt;}
.ws1b2{word-spacing:-1.395306pt;}
.wsbb{word-spacing:-1.349819pt;}
.wsc0{word-spacing:-1.326547pt;}
.ws75{word-spacing:-1.291637pt;}
.ws12e{word-spacing:-1.233456pt;}
.ws18a{word-spacing:-1.175274pt;}
.ws115{word-spacing:-1.117092pt;}
.ws22{word-spacing:-1.058910pt;}
.ws159{word-spacing:-1.000728pt;}
.ws158{word-spacing:-0.942546pt;}
.wsaa{word-spacing:-0.686546pt;}
.ws86{word-spacing:-0.651637pt;}
.ws178{word-spacing:-0.535273pt;}
.ws129{word-spacing:-0.337455pt;}
.ws1a8{word-spacing:-0.221091pt;}
.wsd6{word-spacing:-0.128000pt;}
.ws170{word-spacing:-0.076513pt;}
.ws131{word-spacing:-0.069818pt;}
.ws17d{word-spacing:-0.058182pt;}
.ws3c{word-spacing:-0.046545pt;}
.wsb6{word-spacing:-0.023910pt;}
.ws18{word-spacing:0.000000pt;}
.ws72{word-spacing:0.011636pt;}
.wsaf{word-spacing:0.023910pt;}
.ws63{word-spacing:0.046545pt;}
.ws1b1{word-spacing:0.109108pt;}
.ws8a{word-spacing:0.162909pt;}
.ws146{word-spacing:0.221091pt;}
.ws145{word-spacing:0.279273pt;}
.wsb7{word-spacing:0.918159pt;}
.ws16b{word-spacing:0.919273pt;}
.ws18b{word-spacing:0.977455pt;}
.ws192{word-spacing:1.000728pt;}
.ws16a{word-spacing:1.035637pt;}
.ws169{word-spacing:1.466183pt;}
.wsd7{word-spacing:2.257456pt;}
.ws14a{word-spacing:2.455275pt;}
.ws64{word-spacing:2.839275pt;}
.ws90{word-spacing:3.095275pt;}
.ws62{word-spacing:3.130184pt;}
.ws126{word-spacing:3.153457pt;}
.ws61{word-spacing:3.595639pt;}
.wsca{word-spacing:3.712003pt;}
.wsa7{word-spacing:3.968003pt;}
.ws80{word-spacing:4.394641pt;}
.ws95{word-spacing:4.875640pt;}
.ws88{word-spacing:4.957095pt;}
.wsbc{word-spacing:5.015277pt;}
.ws15d{word-spacing:5.131641pt;}
.ws180{word-spacing:5.399277pt;}
.ws13a{word-spacing:5.422550pt;}
.ws19c{word-spacing:5.538914pt;}
.ws13d{word-spacing:5.573823pt;}
.ws120{word-spacing:5.615975pt;}
.ws15e{word-spacing:5.922914pt;}
.ws157{word-spacing:6.239975pt;}
.ws1a0{word-spacing:6.993460pt;}
.ws9b{word-spacing:7.086551pt;}
.wsec{word-spacing:7.458915pt;}
.ws1a7{word-spacing:7.633461pt;}
.ws9e{word-spacing:7.830963pt;}
.ws147{word-spacing:8.564371pt;}
.ws1af{word-spacing:9.223360pt;}
.wscc{word-spacing:9.397308pt;}
.ws9a{word-spacing:9.400024pt;}
.wsc9{word-spacing:9.495281pt;}
.wsb0{word-spacing:11.295273pt;}
.ws23{word-spacing:11.706192pt;}
.ws65{word-spacing:11.857464pt;}
.wsa4{word-spacing:13.893308pt;}
.ws4d{word-spacing:15.005042pt;}
.ws188{word-spacing:15.301831pt;}
.ws12{word-spacing:15.568223pt;}
.ws10c{word-spacing:16.306893pt;}
.ws10e{word-spacing:16.354714pt;}
.ws179{word-spacing:16.407286pt;}
.ws111{word-spacing:17.072026pt;}
.ws113{word-spacing:17.119846pt;}
.ws176{word-spacing:17.163651pt;}
.ws17c{word-spacing:17.280014pt;}
.ws13{word-spacing:17.640444pt;}
.wsf{word-spacing:18.012381pt;}
.ws173{word-spacing:18.269106pt;}
.ws132{word-spacing:18.560015pt;}
.ws10{word-spacing:18.756255pt;}
.wsac{word-spacing:18.793574pt;}
.ws10b{word-spacing:18.841395pt;}
.ws7{word-spacing:18.862523pt;}
.ws187{word-spacing:19.083652pt;}
.ws18c{word-spacing:19.549107pt;}
.ws185{word-spacing:19.665471pt;}
.ws151{word-spacing:19.723653pt;}
.ws186{word-spacing:19.781835pt;}
.ws1a6{word-spacing:20.189108pt;}
.ws172{word-spacing:20.596381pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.828476pt;}
.ws183{word-spacing:20.887290pt;}
.wse{word-spacing:20.934743pt;}
.ws9{word-spacing:21.306681pt;}
.ws134{word-spacing:21.410927pt;}
.wsd8{word-spacing:21.527291pt;}
.ws11{word-spacing:21.572350pt;}
.ws175{word-spacing:21.701836pt;}
.ws8{word-spacing:21.731751pt;}
.ws4{word-spacing:21.838019pt;}
.ws6{word-spacing:21.891153pt;}
.ws171{word-spacing:21.992746pt;}
.ws17{word-spacing:22.007132pt;}
.ws5{word-spacing:22.688161pt;}
.ws3{word-spacing:23.272634pt;}
.wsb{word-spacing:23.325767pt;}
.ws17e{word-spacing:23.330929pt;}
.ws18f{word-spacing:23.796383pt;}
.ws18d{word-spacing:24.087293pt;}
.wsd{word-spacing:24.441579pt;}
.ws181{word-spacing:26.298204pt;}
.ws105{word-spacing:27.403659pt;}
.ws3a{word-spacing:27.927269pt;}
.ws89{word-spacing:28.003782pt;}
.ws0{word-spacing:28.646426pt;}
.ws4c{word-spacing:29.072909pt;}
.ws17f{word-spacing:29.381843pt;}
.ws4e{word-spacing:59.259069pt;}
.ws19{word-spacing:84.087860pt;}
.ws112{word-spacing:106.592563pt;}
.wsb2{word-spacing:136.298844pt;}
.wsad{word-spacing:136.346665pt;}
.ws10f{word-spacing:171.198464pt;}
.ws110{word-spacing:203.381862pt;}
.ws1a9{word-spacing:220.579093pt;}
.ws114{word-spacing:248.811622pt;}
.ws1ad{word-spacing:764.288637pt;}
._4a{margin-left:-32.232754pt;}
._1c{margin-left:-19.335317pt;}
._27{margin-left:-12.916374pt;}
._2{margin-left:-7.161606pt;}
._23{margin-left:-5.920771pt;}
._0{margin-left:-4.774404pt;}
._c{margin-left:-3.833282pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.434614pt;}
._8{width:1.487748pt;}
._3{width:2.387202pt;}
._22{width:3.543380pt;}
._1a{width:4.686438pt;}
._1d{width:7.064986pt;}
._41{width:13.267211pt;}
._43{width:14.605394pt;}
._25{width:15.539795pt;}
._10{width:17.052524pt;}
._42{width:18.009971pt;}
._d{width:18.957325pt;}
._12{width:20.190853pt;}
._45{width:21.470854pt;}
._1e{width:22.560785pt;}
._7{width:23.648393pt;}
._5{width:25.337211pt;}
._b{width:26.885737pt;}
._15{width:27.963989pt;}
._35{width:28.923349pt;}
._2a{width:29.948671pt;}
._13{width:31.172342pt;}
._21{width:32.237933pt;}
._16{width:33.366681pt;}
._a{width:35.220110pt;}
._6{width:36.495323pt;}
._34{width:38.308649pt;}
._33{width:39.375345pt;}
._9{width:40.541140pt;}
._2b{width:41.832762pt;}
._29{width:43.187704pt;}
._18{width:44.834318pt;}
._1b{width:45.849057pt;}
._14{width:46.745019pt;}
._17{width:47.735190pt;}
._32{width:49.255424pt;}
._26{width:50.505351pt;}
._47{width:51.631724pt;}
._f{width:54.180966pt;}
._46{width:56.848732pt;}
._20{width:58.474522pt;}
._24{width:64.231035pt;}
._44{width:66.501874pt;}
._11{width:71.731200pt;}
._1f{width:73.537146pt;}
._e{width:82.198652pt;}
._19{width:84.164373pt;}
._2d{width:85.909593pt;}
._36{width:129.498726pt;}
._40{width:133.125422pt;}
._39{width:147.909734pt;}
._31{width:150.778982pt;}
._30{width:159.620527pt;}
._3e{width:163.304194pt;}
._3a{width:188.844330pt;}
._38{width:211.595482pt;}
._2c{width:219.111068pt;}
._3c{width:222.831949pt;}
._37{width:263.875174pt;}
._3f{width:265.776493pt;}
._3d{width:307.675189pt;}
._3b{width:313.126761pt;}
._2e{width:352.965325pt;}
._2f{width:417.619046pt;}
._48{width:472.032412pt;}
._28{width:775.622465pt;}
._49{width:1052.160877pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs7{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:56.149333pt;}
.y64{bottom:96.000000pt;}
.y18{bottom:96.022667pt;}
.y196{bottom:98.642667pt;}
.ydf{bottom:102.186667pt;}
.y91{bottom:114.065333pt;}
.y257{bottom:115.698667pt;}
.y17{bottom:115.712000pt;}
.y195{bottom:116.708000pt;}
.y108{bottom:119.005333pt;}
.y12d{bottom:119.433333pt;}
.yee{bottom:119.518667pt;}
.y15e{bottom:120.893333pt;}
.y63{bottom:125.861333pt;}
.y1a0{bottom:126.896000pt;}
.y90{bottom:132.130667pt;}
.y1f4{bottom:132.132000pt;}
.yde{bottom:132.206667pt;}
.y256{bottom:133.765333pt;}
.y194{bottom:134.773333pt;}
.y219{bottom:136.628000pt;}
.y107{bottom:137.070667pt;}
.y12c{bottom:137.500000pt;}
.yed{bottom:137.585333pt;}
.y15d{bottom:138.958667pt;}
.y236{bottom:143.148000pt;}
.y19f{bottom:144.961333pt;}
.y13d{bottom:147.476000pt;}
.y1ce{bottom:149.024000pt;}
.y1b5{bottom:149.668000pt;}
.y1f3{bottom:150.197333pt;}
.y193{bottom:152.838667pt;}
.y218{bottom:154.693333pt;}
.y106{bottom:155.137333pt;}
.y62{bottom:155.485333pt;}
.y12b{bottom:155.565333pt;}
.y15c{bottom:157.024000pt;}
.y8f{bottom:158.942667pt;}
.yd3{bottom:160.278667pt;}
.y235{bottom:161.213333pt;}
.ydd{bottom:162.228000pt;}
.y28a{bottom:162.501333pt;}
.y19e{bottom:163.026667pt;}
.y255{bottom:163.785333pt;}
.yec{bottom:165.042667pt;}
.y13c{bottom:165.542667pt;}
.y1cd{bottom:167.089333pt;}
.y1b4{bottom:167.734667pt;}
.y1f2{bottom:168.262667pt;}
.y192{bottom:170.905333pt;}
.yb0{bottom:171.708000pt;}
.y289{bottom:172.478667pt;}
.y6d{bottom:172.488000pt;}
.y217{bottom:172.758667pt;}
.y105{bottom:173.202667pt;}
.y61{bottom:173.550667pt;}
.y12a{bottom:173.630667pt;}
.y15b{bottom:175.089333pt;}
.yd2{bottom:178.345333pt;}
.ydc{bottom:180.293333pt;}
.y19d{bottom:181.093333pt;}
.y254{bottom:181.850667pt;}
.y1cc{bottom:185.154667pt;}
.y1b3{bottom:185.800000pt;}
.y1f1{bottom:186.328000pt;}
.y8e{bottom:187.680000pt;}
.y191{bottom:188.970667pt;}
.y28b{bottom:189.364000pt;}
.y234{bottom:190.296000pt;}
.y6c{bottom:190.553333pt;}
.y104{bottom:191.268000pt;}
.y60{bottom:191.616000pt;}
.y13b{bottom:192.998667pt;}
.y15a{bottom:193.154667pt;}
.y1bd{bottom:194.513333pt;}
.yd1{bottom:196.410667pt;}
.y19c{bottom:199.158667pt;}
.y253{bottom:199.917333pt;}
.yaf{bottom:201.728000pt;}
.y216{bottom:202.780000pt;}
.y1cb{bottom:203.220000pt;}
.y129{bottom:203.652000pt;}
.yeb{bottom:203.988000pt;}
.y1f0{bottom:204.393333pt;}
.y2a8{bottom:205.572000pt;}
.y3d{bottom:207.877333pt;}
.y233{bottom:208.361333pt;}
.y6b{bottom:208.618667pt;}
.y103{bottom:209.333333pt;}
.y5f{bottom:209.681333pt;}
.ydb{bottom:210.313333pt;}
.y159{bottom:211.221333pt;}
.y265{bottom:211.872000pt;}
.y1bc{bottom:212.580000pt;}
.yd0{bottom:214.476000pt;}
.y288{bottom:216.268000pt;}
.y8d{bottom:216.417333pt;}
.y190{bottom:216.428000pt;}
.y19b{bottom:217.224000pt;}
.y17d{bottom:217.230667pt;}
.y215{bottom:220.845333pt;}
.y1ca{bottom:221.286667pt;}
.y128{bottom:221.717333pt;}
.yea{bottom:222.053333pt;}
.y1ef{bottom:222.458667pt;}
.y2a7{bottom:223.637333pt;}
.y3c{bottom:225.944000pt;}
.y6a{bottom:226.685333pt;}
.y102{bottom:227.398667pt;}
.y5e{bottom:227.748000pt;}
.y158{bottom:229.286667pt;}
.y252{bottom:229.937333pt;}
.y1bb{bottom:230.645333pt;}
.yae{bottom:231.749333pt;}
.ycf{bottom:232.541333pt;}
.y287{bottom:234.333333pt;}
.y19a{bottom:235.289333pt;}
.y17c{bottom:235.296000pt;}
.y232{bottom:237.444000pt;}
.yda{bottom:237.770667pt;}
.y214{bottom:238.910667pt;}
.y1c9{bottom:239.352000pt;}
.y127{bottom:239.782667pt;}
.ye9{bottom:240.118667pt;}
.y1ee{bottom:240.525333pt;}
.y2a6{bottom:241.702667pt;}
.y3b{bottom:244.009333pt;}
.y69{bottom:244.750667pt;}
.y8c{bottom:245.153333pt;}
.y101{bottom:245.465333pt;}
.y5d{bottom:245.813333pt;}
.y157{bottom:247.352000pt;}
.y251{bottom:248.002667pt;}
.y1ba{bottom:248.710667pt;}
.y13a{bottom:249.377333pt;}
.yce{bottom:250.606667pt;}
.y286{bottom:252.400000pt;}
.y199{bottom:253.354667pt;}
.y17b{bottom:253.361333pt;}
.y18f{bottom:254.841333pt;}
.y231{bottom:255.510667pt;}
.y1c8{bottom:257.417333pt;}
.y126{bottom:257.848000pt;}
.ye8{bottom:258.184000pt;}
.y1ed{bottom:258.590667pt;}
.y2a5{bottom:259.768000pt;}
.yad{bottom:261.770667pt;}
.y3a{bottom:262.074667pt;}
.y68{bottom:262.816000pt;}
.y100{bottom:263.530667pt;}
.y156{bottom:265.417333pt;}
.y250{bottom:266.069333pt;}
.y1b9{bottom:266.776000pt;}
.y139{bottom:267.442667pt;}
.ycd{bottom:268.673333pt;}
.y213{bottom:268.932000pt;}
.y198{bottom:271.421333pt;}
.y8b{bottom:271.965333pt;}
.y18e{bottom:272.906667pt;}
.y230{bottom:273.576000pt;}
.y1c7{bottom:275.482667pt;}
.y1ec{bottom:276.656000pt;}
.y2a4{bottom:277.833333pt;}
.y264{bottom:278.024000pt;}
.y39{bottom:280.140000pt;}
.y67{bottom:280.881333pt;}
.yff{bottom:281.596000pt;}
.yd9{bottom:282.136000pt;}
.y17a{bottom:283.382667pt;}
.y155{bottom:283.482667pt;}
.y5c{bottom:284.152000pt;}
.y1b8{bottom:284.841333pt;}
.y138{bottom:285.508000pt;}
.ye7{bottom:285.641333pt;}
.ycc{bottom:286.738667pt;}
.y212{bottom:286.997333pt;}
.y284{bottom:287.130667pt;}
.y2c4{bottom:287.602667pt;}
.y125{bottom:287.869333pt;}
.y197{bottom:289.486667pt;}
.y18d{bottom:290.973333pt;}
.yac{bottom:291.790667pt;}
.y1c6{bottom:293.548000pt;}
.y1eb{bottom:294.721333pt;}
.y1fb{bottom:295.070667pt;}
.y2a3{bottom:295.898667pt;}
.y24f{bottom:296.089333pt;}
.y283{bottom:297.108000pt;}
.y38{bottom:298.205333pt;}
.y66{bottom:298.946667pt;}
.yfe{bottom:299.661333pt;}
.yd8{bottom:300.201333pt;}
.y179{bottom:301.448000pt;}
.y154{bottom:301.548000pt;}
.y5b{bottom:302.217333pt;}
.y22f{bottom:302.658667pt;}
.y1b7{bottom:302.908000pt;}
.y137{bottom:303.574667pt;}
.y8a{bottom:304.432000pt;}
.ycb{bottom:304.804000pt;}
.y211{bottom:305.062667pt;}
.y2c3{bottom:305.668000pt;}
.y124{bottom:305.934667pt;}
.y18c{bottom:309.038667pt;}
.yab{bottom:309.856000pt;}
.y1c5{bottom:311.614667pt;}
.y1ea{bottom:312.786667pt;}
.y1fa{bottom:313.137333pt;}
.y2a2{bottom:313.965333pt;}
.y285{bottom:313.993333pt;}
.y24e{bottom:314.154667pt;}
.y37{bottom:316.272000pt;}
.y65{bottom:317.012000pt;}
.yd7{bottom:318.268000pt;}
.y153{bottom:319.614667pt;}
.y22e{bottom:320.724000pt;}
.y1b6{bottom:320.973333pt;}
.y136{bottom:321.640000pt;}
.y210{bottom:323.128000pt;}
.y2c2{bottom:323.734667pt;}
.y123{bottom:324.000000pt;}
.y263{bottom:326.110667pt;}
.y18b{bottom:327.104000pt;}
.ye6{bottom:330.006667pt;}
.y1e9{bottom:330.853333pt;}
.y1f9{bottom:331.202667pt;}
.y178{bottom:331.469333pt;}
.y5a{bottom:331.841333pt;}
.yfd{bottom:333.494667pt;}
.y36{bottom:334.337333pt;}
.yd6{bottom:336.333333pt;}
.yaa{bottom:337.313333pt;}
.y152{bottom:337.680000pt;}
.y135{bottom:339.705333pt;}
.y2c1{bottom:341.800000pt;}
.y282{bottom:341.820000pt;}
.y122{bottom:342.065333pt;}
.y24d{bottom:344.176000pt;}
.y18a{bottom:345.169333pt;}
.ye5{bottom:348.072000pt;}
.yca{bottom:348.637333pt;}
.y1e8{bottom:348.918667pt;}
.y1f8{bottom:349.268000pt;}
.y89{bottom:349.650667pt;}
.y22d{bottom:349.806667pt;}
.y59{bottom:349.906667pt;}
.y2a1{bottom:351.273333pt;}
.yfc{bottom:351.560000pt;}
.y20f{bottom:353.149333pt;}
.yd5{bottom:354.398667pt;}
.y16{bottom:356.956000pt;}
.y177{bottom:358.926667pt;}
.y2c0{bottom:359.865333pt;}
.y121{bottom:360.130667pt;}
.y35{bottom:361.794667pt;}
.y24c{bottom:362.241333pt;}
.y189{bottom:363.234667pt;}
.y151{bottom:365.137333pt;}
.ye4{bottom:366.137333pt;}
.yc9{bottom:366.702667pt;}
.y1e7{bottom:366.984000pt;}
.y1f7{bottom:367.333333pt;}
.y88{bottom:367.716000pt;}
.y22c{bottom:367.872000pt;}
.y281{bottom:370.897333pt;}
.y20e{bottom:371.214667pt;}
.yd4{bottom:372.464000pt;}
.y262{bottom:374.196000pt;}
.y15{bottom:375.021333pt;}
.ya9{bottom:376.258667pt;}
.y2bf{bottom:377.930667pt;}
.y2a0{bottom:378.950667pt;}
.y58{bottom:379.768000pt;}
.y280{bottom:380.874667pt;}
.y188{bottom:381.301333pt;}
.yc8{bottom:384.769333pt;}
.y1e6{bottom:385.049333pt;}
.y1f6{bottom:385.398667pt;}
.y87{bottom:385.781333pt;}
.y120{bottom:390.152000pt;}
.y24b{bottom:392.262667pt;}
.ya8{bottom:394.324000pt;}
.y2be{bottom:395.996000pt;}
.y22b{bottom:396.954667pt;}
.y176{bottom:397.340000pt;}
.y57{bottom:397.833333pt;}
.y20d{bottom:398.672000pt;}
.y187{bottom:399.366667pt;}
.y34{bottom:400.740000pt;}
.yc7{bottom:402.834667pt;}
.y29f{bottom:403.109333pt;}
.y1f5{bottom:403.465333pt;}
.y86{bottom:403.846667pt;}
.y11f{bottom:408.217333pt;}
.y150{bottom:409.502667pt;}
.y24a{bottom:410.328000pt;}
.y2bd{bottom:411.858667pt;}
.ya7{bottom:412.390667pt;}
.y1e5{bottom:412.506667pt;}
.y22a{bottom:415.020000pt;}
.y175{bottom:415.405333pt;}
.y2bc{bottom:415.454667pt;}
.y186{bottom:417.432000pt;}
.y27f{bottom:418.474667pt;}
.y33{bottom:418.805333pt;}
.y14{bottom:420.982667pt;}
.y29e{bottom:421.174667pt;}
.y261{bottom:422.282667pt;}
.y85{bottom:425.954667pt;}
.y56{bottom:427.457333pt;}
.y14f{bottom:427.568000pt;}
.y27e{bottom:431.525333pt;}
.y174{bottom:433.470667pt;}
.y185{bottom:435.497333pt;}
.y84{bottom:435.932000pt;}
.y27d{bottom:436.541333pt;}
.y32{bottom:436.870667pt;}
.y13{bottom:436.922667pt;}
.y20c{bottom:437.617333pt;}
.yc6{bottom:438.124000pt;}
.ya6{bottom:438.814667pt;}
.y29d{bottom:439.241333pt;}
.y249{bottom:440.348000pt;}
.ya5{bottom:442.410667pt;}
.y229{bottom:444.102667pt;}
.y55{bottom:445.522667pt;}
.y14e{bottom:445.633333pt;}
.y11e{bottom:446.632000pt;}
.y2bb{bottom:450.498667pt;}
.y1e4{bottom:450.989333pt;}
.y173{bottom:451.537333pt;}
.yc5{bottom:452.736000pt;}
.y12{bottom:452.864000pt;}
.y184{bottom:453.562667pt;}
.y31{bottom:454.936000pt;}
.y20b{bottom:455.682667pt;}
.y248{bottom:458.414667pt;}
.y228{bottom:462.168000pt;}
.y27c{bottom:463.997333pt;}
.y11d{bottom:464.697333pt;}
.yc4{bottom:467.348000pt;}
.y11{bottom:468.804000pt;}
.y1e3{bottom:469.054667pt;}
.y172{bottom:469.602667pt;}
.y260{bottom:470.369333pt;}
.y83{bottom:470.789333pt;}
.y183{bottom:471.628000pt;}
.ya4{bottom:472.432000pt;}
.y30{bottom:473.001333pt;}
.y20a{bottom:473.748000pt;}
.y54{bottom:476.002667pt;}
.y247{bottom:476.480000pt;}
.y29c{bottom:476.549333pt;}
.y14d{bottom:481.800000pt;}
.y11c{bottom:482.762667pt;}
.y2ba{bottom:483.176000pt;}
.y10{bottom:484.744000pt;}
.yc3{bottom:486.874667pt;}
.y1e2{bottom:487.120000pt;}
.y171{bottom:487.668000pt;}
.y25f{bottom:488.434667pt;}
.y82{bottom:488.854667pt;}
.y53{bottom:490.380000pt;}
.ya3{bottom:490.497333pt;}
.y2f{bottom:491.068000pt;}
.y227{bottom:491.250667pt;}
.y209{bottom:491.813333pt;}
.y52{bottom:496.110667pt;}
.y29b{bottom:498.600000pt;}
.y182{bottom:499.085333pt;}
.yf{bottom:500.684000pt;}
.yc2{bottom:501.486667pt;}
.y27b{bottom:502.893333pt;}
.y14c{bottom:504.248000pt;}
.y1e1{bottom:505.185333pt;}
.y170{bottom:505.733333pt;}
.y246{bottom:506.500000pt;}
.y2e{bottom:509.133333pt;}
.y226{bottom:509.317333pt;}
.y80{bottom:511.853333pt;}
.y2b9{bottom:512.257333pt;}
.y2b8{bottom:515.853333pt;}
.ye{bottom:516.624000pt;}
.y11b{bottom:516.768000pt;}
.ya2{bottom:517.954667pt;}
.y81{bottom:518.234667pt;}
.y25e{bottom:518.456000pt;}
.y27a{bottom:520.958667pt;}
.yc1{bottom:521.013333pt;}
.y208{bottom:521.834667pt;}
.y1e0{bottom:523.250667pt;}
.y16f{bottom:523.798667pt;}
.y245{bottom:524.566667pt;}
.y14b{bottom:526.697333pt;}
.y2d{bottom:527.198667pt;}
.y225{bottom:527.382667pt;}
.y51{bottom:528.310667pt;}
.y7f{bottom:531.670667pt;}
.yd{bottom:532.564000pt;}
.y11a{bottom:534.834667pt;}
.yc0{bottom:535.625333pt;}
.y25d{bottom:536.521333pt;}
.y16e{bottom:541.865333pt;}
.y29a{bottom:542.310667pt;}
.y50{bottom:542.781333pt;}
.y181{bottom:542.920000pt;}
.y2b7{bottom:544.934667pt;}
.y2c{bottom:545.264000pt;}
.y224{bottom:545.448000pt;}
.y4f{bottom:546.377333pt;}
.y279{bottom:547.498667pt;}
.yc{bottom:548.505333pt;}
.y2b6{bottom:548.530667pt;}
.y14a{bottom:549.146667pt;}
.ybe{bottom:550.237333pt;}
.y207{bottom:551.854667pt;}
.y1df{bottom:552.289333pt;}
.y119{bottom:552.900000pt;}
.y244{bottom:554.586667pt;}
.ybf{bottom:555.316000pt;}
.ya1{bottom:556.900000pt;}
.y7e{bottom:559.522667pt;}
.y16d{bottom:559.930667pt;}
.y299{bottom:560.376000pt;}
.y180{bottom:560.985333pt;}
.y2b{bottom:563.329333pt;}
.y223{bottom:563.513333pt;}
.y4e{bottom:564.442667pt;}
.yb{bottom:564.445333pt;}
.y278{bottom:565.564000pt;}
.y25c{bottom:566.542667pt;}
.y2b5{bottom:566.596000pt;}
.y1b2{bottom:569.588000pt;}
.ybd{bottom:569.764000pt;}
.y1de{bottom:570.354667pt;}
.y118{bottom:570.965333pt;}
.y149{bottom:571.596000pt;}
.y243{bottom:572.652000pt;}
.ya0{bottom:574.965333pt;}
.y7d{bottom:577.588000pt;}
.y16c{bottom:577.996000pt;}
.y298{bottom:578.441333pt;}
.y17f{bottom:579.050667pt;}
.ya{bottom:580.385333pt;}
.y2a{bottom:581.396000pt;}
.y206{bottom:581.876000pt;}
.y277{bottom:583.629333pt;}
.ybb{bottom:584.376000pt;}
.y25b{bottom:584.608000pt;}
.y2b4{bottom:584.661333pt;}
.y1b1{bottom:587.653333pt;}
.y1dd{bottom:588.420000pt;}
.y117{bottom:589.030667pt;}
.ybc{bottom:589.454667pt;}
.y4d{bottom:591.900000pt;}
.y9f{bottom:593.030667pt;}
.y148{bottom:594.045333pt;}
.y7c{bottom:595.654667pt;}
.y222{bottom:595.980000pt;}
.y9{bottom:596.325333pt;}
.y297{bottom:596.506667pt;}
.y17e{bottom:597.116000pt;}
.y29{bottom:599.461333pt;}
.y276{bottom:601.696000pt;}
.y242{bottom:602.673333pt;}
.y16b{bottom:605.453333pt;}
.y1b0{bottom:605.718667pt;}
.y1dc{bottom:606.485333pt;}
.yba{bottom:610.668000pt;}
.y205{bottom:611.897333pt;}
.y8{bottom:612.265333pt;}
.y2b3{bottom:613.638667pt;}
.y2b2{bottom:613.744000pt;}
.y25a{bottom:614.628000pt;}
.y147{bottom:616.494667pt;}
.y2b1{bottom:617.338667pt;}
.y28{bottom:617.526667pt;}
.y116{bottom:619.052000pt;}
.y241{bottom:620.738667pt;}
.y9e{bottom:623.052000pt;}
.y7b{bottom:623.112000pt;}
.y1af{bottom:623.784000pt;}
.y4c{bottom:624.501333pt;}
.y1db{bottom:624.552000pt;}
.y7{bottom:628.205333pt;}
.y296{bottom:628.973333pt;}
.y259{bottom:632.693333pt;}
.y275{bottom:634.061333pt;}
.y4b{bottom:634.478667pt;}
.y27{bottom:635.592000pt;}
.y115{bottom:637.117333pt;}
.yfb{bottom:638.273333pt;}
.y9d{bottom:641.117333pt;}
.y221{bottom:641.361333pt;}
.y1ae{bottom:641.850667pt;}
.y204{bottom:644.362667pt;}
.y16a{bottom:644.398667pt;}
.y146{bottom:645.709333pt;}
.y2b0{bottom:650.017333pt;}
.yb9{bottom:650.096000pt;}
.y240{bottom:650.760000pt;}
.y1da{bottom:652.114667pt;}
.y6{bottom:652.450667pt;}
.y26{bottom:653.657333pt;}
.y114{bottom:655.182667pt;}
.yfa{bottom:656.338667pt;}
.y274{bottom:657.440000pt;}
.y220{bottom:659.426667pt;}
.y1ad{bottom:659.916000pt;}
.y7a{bottom:661.452000pt;}
.y169{bottom:662.464000pt;}
.yb8{bottom:668.161333pt;}
.y23f{bottom:668.825333pt;}
.y1d9{bottom:670.180000pt;}
.y9c{bottom:671.138667pt;}
.y4a{bottom:672.792000pt;}
.y113{bottom:673.248000pt;}
.y295{bottom:673.692000pt;}
.yf9{bottom:674.404000pt;}
.y273{bottom:675.505333pt;}
.y21f{bottom:677.492000pt;}
.y1ac{bottom:677.981333pt;}
.y79{bottom:679.517333pt;}
.y258{bottom:680.780000pt;}
.y25{bottom:681.114667pt;}
.y2af{bottom:682.694667pt;}
.yb7{bottom:686.226667pt;}
.y145{bottom:686.374667pt;}
.y26a{bottom:686.890667pt;}
.y1d8{bottom:688.245333pt;}
.y9b{bottom:689.204000pt;}
.y203{bottom:690.186667pt;}
.y294{bottom:691.757333pt;}
.yf8{bottom:692.469333pt;}
.y168{bottom:692.485333pt;}
.y272{bottom:693.570667pt;}
.y21e{bottom:695.558667pt;}
.y134{bottom:695.993333pt;}
.y1ab{bottom:696.046667pt;}
.y48{bottom:697.266667pt;}
.y78{bottom:697.582667pt;}
.y23e{bottom:698.845333pt;}
.y112{bottom:703.269333pt;}
.y144{bottom:704.440000pt;}
.y269{bottom:704.956000pt;}
.y47{bottom:707.244000pt;}
.y202{bottom:708.252000pt;}
.y293{bottom:709.822667pt;}
.yf7{bottom:710.536000pt;}
.y167{bottom:710.550667pt;}
.y271{bottom:711.636000pt;}
.y21d{bottom:713.624000pt;}
.yb6{bottom:713.684000pt;}
.y133{bottom:714.058667pt;}
.y1aa{bottom:714.112000pt;}
.y2ae{bottom:715.372000pt;}
.y77{bottom:715.648000pt;}
.y9a{bottom:716.661333pt;}
.y23d{bottom:716.912000pt;}
.y1c4{bottom:719.104000pt;}
.y24{bottom:720.060000pt;}
.y111{bottom:721.334667pt;}
.y49{bottom:724.129333pt;}
.y1d7{bottom:726.197333pt;}
.y201{bottom:726.318667pt;}
.yf6{bottom:728.601333pt;}
.y21c{bottom:731.689333pt;}
.y143{bottom:731.897333pt;}
.y132{bottom:732.124000pt;}
.y1a9{bottom:732.178667pt;}
.y46{bottom:732.305333pt;}
.y2ad{bottom:733.437333pt;}
.y292{bottom:733.982667pt;}
.y268{bottom:734.977333pt;}
.y1c3{bottom:737.169333pt;}
.y23{bottom:738.125333pt;}
.y270{bottom:738.176000pt;}
.y110{bottom:739.400000pt;}
.y166{bottom:740.570667pt;}
.y1d6{bottom:744.262667pt;}
.y200{bottom:744.384000pt;}
.y76{bottom:744.385333pt;}
.yf5{bottom:746.666667pt;}
.y23c{bottom:746.932000pt;}
.y131{bottom:750.189333pt;}
.y1a8{bottom:750.244000pt;}
.y45{bottom:750.370667pt;}
.y2ac{bottom:751.502667pt;}
.yb5{bottom:752.629333pt;}
.y267{bottom:753.042667pt;}
.y1c2{bottom:755.236000pt;}
.y99{bottom:755.606667pt;}
.y5{bottom:755.970667pt;}
.y22{bottom:756.192000pt;}
.y26f{bottom:756.241333pt;}
.y10f{bottom:757.465333pt;}
.y165{bottom:758.637333pt;}
.y291{bottom:761.658667pt;}
.y1d5{bottom:762.328000pt;}
.y1ff{bottom:762.449333pt;}
.y75{bottom:762.450667pt;}
.y21b{bottom:764.156000pt;}
.yf4{bottom:764.732000pt;}
.y23b{bottom:764.997333pt;}
.y44{bottom:768.436000pt;}
.yb4{bottom:770.694667pt;}
.y142{bottom:770.842667pt;}
.y1c1{bottom:773.301333pt;}
.y98{bottom:773.672000pt;}
.y21{bottom:774.257333pt;}
.y26e{bottom:774.308000pt;}
.y10e{bottom:775.532000pt;}
.y1fe{bottom:776.204000pt;}
.y1a7{bottom:777.701333pt;}
.y130{bottom:780.012000pt;}
.y1d4{bottom:780.393333pt;}
.y1fd{bottom:780.514667pt;}
.y74{bottom:780.517333pt;}
.yf3{bottom:782.797333pt;}
.y23a{bottom:783.064000pt;}
.y290{bottom:785.818667pt;}
.y43{bottom:786.502667pt;}
.y4{bottom:788.500000pt;}
.y164{bottom:788.657333pt;}
.yb3{bottom:788.761333pt;}
.y141{bottom:788.908000pt;}
.y2ab{bottom:789.917333pt;}
.y20{bottom:792.322667pt;}
.y26d{bottom:792.373333pt;}
.y10d{bottom:793.597333pt;}
.y12f{bottom:798.077333pt;}
.y1d3{bottom:798.458667pt;}
.y1fc{bottom:798.580000pt;}
.yf2{bottom:800.864000pt;}
.y266{bottom:801.129333pt;}
.y1c0{bottom:801.681333pt;}
.y97{bottom:803.692000pt;}
.y28f{bottom:803.884000pt;}
.y163{bottom:806.722667pt;}
.y140{bottom:806.973333pt;}
.y73{bottom:807.328000pt;}
.y21a{bottom:809.537333pt;}
.y26c{bottom:810.438667pt;}
.y239{bottom:813.084000pt;}
.y42{bottom:815.824000pt;}
.y12e{bottom:816.144000pt;}
.y1a6{bottom:816.646667pt;}
.yb2{bottom:818.781333pt;}
.yf1{bottom:818.929333pt;}
.y1bf{bottom:819.748000pt;}
.y1f{bottom:819.780000pt;}
.y96{bottom:821.758667pt;}
.y28e{bottom:821.949333pt;}
.y2aa{bottom:822.594667pt;}
.y162{bottom:824.789333pt;}
.y13f{bottom:825.040000pt;}
.y41{bottom:825.801333pt;}
.y1d2{bottom:826.022667pt;}
.y10c{bottom:827.602667pt;}
.y3{bottom:828.790667pt;}
.y238{bottom:831.149333pt;}
.y1a5{bottom:834.712000pt;}
.y72{bottom:834.785333pt;}
.yb1{bottom:836.846667pt;}
.yf0{bottom:836.994667pt;}
.y1be{bottom:837.813333pt;}
.y26b{bottom:837.896000pt;}
.y2a9{bottom:840.660000pt;}
.y28d{bottom:840.874667pt;}
.y161{bottom:842.854667pt;}
.y13e{bottom:843.105333pt;}
.y1d1{bottom:844.088000pt;}
.y10b{bottom:845.668000pt;}
.y237{bottom:849.216000pt;}
.y28c{bottom:850.852000pt;}
.y95{bottom:851.778667pt;}
.y1a4{bottom:852.777333pt;}
.yef{bottom:855.060000pt;}
.y2{bottom:858.014667pt;}
.y1e{bottom:858.725333pt;}
.y160{bottom:860.920000pt;}
.ye3{bottom:861.170667pt;}
.y1d0{bottom:862.153333pt;}
.y10a{bottom:863.734667pt;}
.y40{bottom:866.868000pt;}
.y94{bottom:869.844000pt;}
.y1a3{bottom:870.842667pt;}
.y71{bottom:873.125333pt;}
.y1d{bottom:876.790667pt;}
.ye2{bottom:879.236000pt;}
.y1cf{bottom:880.218667pt;}
.y109{bottom:881.800000pt;}
.y3f{bottom:884.933333pt;}
.y1{bottom:887.238667pt;}
.y15f{bottom:888.377333pt;}
.y1a2{bottom:888.908000pt;}
.y70{bottom:891.192000pt;}
.y1c{bottom:894.856000pt;}
.ye1{bottom:897.301333pt;}
.y93{bottom:899.865333pt;}
.y1a1{bottom:906.974667pt;}
.y6f{bottom:909.257333pt;}
.y3e{bottom:912.390667pt;}
.y1b{bottom:912.922667pt;}
.ye0{bottom:915.368000pt;}
.y92{bottom:917.930667pt;}
.y6e{bottom:927.322667pt;}
.y1a{bottom:945.388000pt;}
.h7{height:15.598754pt;}
.h17{height:19.432743pt;}
.h11{height:31.880400pt;}
.h18{height:31.922907pt;}
.h8{height:35.913421pt;}
.h4{height:37.778179pt;}
.h5{height:39.903534pt;}
.h1d{height:41.515221pt;}
.h1e{height:43.694582pt;}
.h2d{height:43.787181pt;}
.h3{height:45.015313pt;}
.ha{height:47.884561pt;}
.h6{height:50.327315pt;}
.h27{height:51.384743pt;}
.h19{height:52.989733pt;}
.h14{height:52.995067pt;}
.h9{height:53.712173pt;}
.h21{height:54.787067pt;}
.h2{height:55.058907pt;}
.h16{height:55.901733pt;}
.h28{height:55.907067pt;}
.h29{height:58.171181pt;}
.h1c{height:58.345733pt;}
.h1f{height:58.680400pt;}
.h15{height:64.711315pt;}
.h1{height:65.005350pt;}
.h2c{height:65.127315pt;}
.h2e{height:67.379067pt;}
.h2b{height:70.285733pt;}
.h22{height:70.385981pt;}
.h2a{height:70.707067pt;}
.h20{height:75.923067pt;}
.h1b{height:82.996400pt;}
.h12{height:83.001733pt;}
.h13{height:90.236648pt;}
.h1a{height:95.811067pt;}
.hb{height:98.627410pt;}
.hc{height:101.470077pt;}
.hf{height:103.795410pt;}
.h24{height:118.926077pt;}
.h25{height:122.905733pt;}
.hd{height:132.264400pt;}
.h23{height:138.536743pt;}
.he{height:141.379410pt;}
.h10{height:143.704743pt;}
.h26{height:143.710077pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x29{left:103.232000pt;}
.x2{left:107.045333pt;}
.xa{left:112.578667pt;}
.x22{left:113.840000pt;}
.xc{left:118.581333pt;}
.x2a{left:125.774667pt;}
.x8{left:132.364000pt;}
.x26{left:149.809333pt;}
.x7{left:152.284000pt;}
.x3{left:154.404000pt;}
.x25{left:164.176000pt;}
.x2f{left:176.790667pt;}
.x38{left:180.896000pt;}
.x23{left:209.013333pt;}
.x2d{left:233.870667pt;}
.x39{left:243.009333pt;}
.x24{left:246.754667pt;}
.x11{left:248.496000pt;}
.xd{left:252.016000pt;}
.x18{left:253.426667pt;}
.x1{left:280.440000pt;}
.x40{left:283.746667pt;}
.x3a{left:284.842667pt;}
.x28{left:290.194667pt;}
.x3e{left:306.120000pt;}
.x1d{left:309.969333pt;}
.x1e{left:312.341333pt;}
.x2c{left:313.970667pt;}
.xe{left:317.238667pt;}
.x3f{left:324.925333pt;}
.x2e{left:329.113333pt;}
.x15{left:331.774667pt;}
.x37{left:333.565333pt;}
.x36{left:334.524000pt;}
.x1a{left:338.688000pt;}
.x34{left:340.489333pt;}
.x5{left:347.426667pt;}
.xf{left:351.128000pt;}
.x19{left:352.829333pt;}
.x4{left:355.661333pt;}
.x1f{left:362.272000pt;}
.x2b{left:377.525333pt;}
.x6{left:378.782667pt;}
.x20{left:380.669333pt;}
.x35{left:385.106667pt;}
.x30{left:386.786667pt;}
.x16{left:392.772000pt;}
.x27{left:400.768000pt;}
.xb{left:404.384000pt;}
.x12{left:405.437333pt;}
.x21{left:418.606667pt;}
.x10{left:432.986667pt;}
.x3d{left:435.488000pt;}
.x1c{left:446.882667pt;}
.x1b{left:465.306667pt;}
.x31{left:530.537333pt;}
.x3b{left:549.237333pt;}
.x13{left:561.194667pt;}
.x17{left:582.049333pt;}
.x3c{left:607.057333pt;}
.x32{left:624.414667pt;}
.x33{left:694.285333pt;}
.x14{left:701.517333pt;}
}




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