
    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_5f781d475efe5bc25299455a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_5f430e1314021d5f9f7ce1ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_39c64e14f5aded50ddb672c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_fb2e23032ef6a76336765862.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_63119df4e8d37b93e8cebae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_7e9081c6adb4f0426b607d8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;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_b709ab107294766789bb895d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_dd8337e6f8751fd551edd0a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_73321319d87df73484bacea4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_9ac63e9947e83d04a62b160a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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_104a16cf57c2d2bc8cb429a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_be15827f104e6e2d76500971.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_8181bfb92b00c221719470a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925000;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_13578118a6869c4eb39e0b93.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.509000;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_1381f79bfeb49bd0808129c6.woff2')format("woff");}.fff{font-family:fff;line-height:0.847000;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_9e6b5594ddc38678f99216ec.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.166000;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_2dd734db580c62fa67684cb0.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_98b2f3ae1474b15c781c6c35.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_448208727a5646c11aa0eed4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.461000;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_36c365f5fcb7920bca5c1970.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.706000;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_0b9a73d99727d5d2ddced09d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.920000;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_a0de5cd80cc8e78e8cd6bacd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c697c963b877d6ff1611eefb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.869000;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_567ba5e353512c483dbc29a5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.712000;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_9dcc1b8a8863fe16705a020f.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e1c6fa445a049a4ffd10887b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.722000;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_d2b4bd5c4da6ab51d59f2f9c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.579000;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_a689c457bfeb3d4dee8bb4e3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.375000;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_98fe3abe9e5fff4e393ba7fc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.858000;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_054d83523f74d2ee4004a5f4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.665000;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_f76e31b974750bd7c4ce75c0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.926000;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:ff20;src:url('chunks/assets/font_e251529113178c8c9f96b7fa.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.073000;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:ff21;src:url('chunks/assets/font_233e91daaeb067235faecf7f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.914000;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:ff22;src:url('chunks/assets/font_817d9d9f50859eb372349f8a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.749000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.769800px;}
.v3{vertical-align:-15.304891px;}
.v5{vertical-align:-4.079949px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.585443px;}
.v4{vertical-align:15.306600px;}
.v1{vertical-align:21.772979px;}
.ls2c{letter-spacing:-0.846008px;}
.ls2d{letter-spacing:-0.822008px;}
.ls30{letter-spacing:-0.774008px;}
.ls2b{letter-spacing:-0.768008px;}
.ls2f{letter-spacing:-0.738007px;}
.ls2e{letter-spacing:-0.708007px;}
.ls8{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.009600px;}
.lsa{letter-spacing:0.012000px;}
.ls32{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.030000px;}
.ls4a{letter-spacing:0.033600px;}
.ls3{letter-spacing:0.034200px;}
.ls3c{letter-spacing:0.036000px;}
.ls48{letter-spacing:0.038400px;}
.ls9{letter-spacing:0.043194px;}
.ls39{letter-spacing:0.057599px;}
.ls15{letter-spacing:0.060001px;}
.ls20{letter-spacing:0.072325px;}
.ls4c{letter-spacing:0.081599px;}
.ls26{letter-spacing:0.081731px;}
.lsc{letter-spacing:0.090001px;}
.ls47{letter-spacing:0.095999px;}
.ls22{letter-spacing:0.097406px;}
.ls49{letter-spacing:0.115199px;}
.ls2a{letter-spacing:0.126001px;}
.ls4b{letter-spacing:0.153598px;}
.ls40{letter-spacing:0.168002px;}
.lsb{letter-spacing:0.174002px;}
.ls35{letter-spacing:0.198002px;}
.ls1c{letter-spacing:0.213975px;}
.ls18{letter-spacing:0.214461px;}
.ls24{letter-spacing:0.215674px;}
.ls34{letter-spacing:0.216002px;}
.lse{letter-spacing:0.354004px;}
.ls33{letter-spacing:0.360004px;}
.ls17{letter-spacing:0.402004px;}
.ls25{letter-spacing:2.750400px;}
.ls3e{letter-spacing:2.811300px;}
.ls14{letter-spacing:2.946762px;}
.ls1f{letter-spacing:3.090600px;}
.ls3d{letter-spacing:3.151500px;}
.ls27{letter-spacing:3.206124px;}
.ls43{letter-spacing:9.412682px;}
.ls45{letter-spacing:9.753478px;}
.ls2{letter-spacing:10.243072px;}
.ls36{letter-spacing:10.511869px;}
.ls7{letter-spacing:10.550268px;}
.ls6{letter-spacing:11.821800px;}
.ls5{letter-spacing:12.500100px;}
.ls28{letter-spacing:12.714127px;}
.ls29{letter-spacing:12.774128px;}
.ls16{letter-spacing:12.780128px;}
.ls4{letter-spacing:12.842100px;}
.ls11{letter-spacing:12.996130px;}
.ls12{letter-spacing:13.098131px;}
.lsd{letter-spacing:13.110131px;}
.ls46{letter-spacing:13.155708px;}
.ls3a{letter-spacing:13.233435px;}
.ls1e{letter-spacing:13.326133px;}
.ls10{letter-spacing:13.338133px;}
.ls31{letter-spacing:13.440134px;}
.lsf{letter-spacing:13.452135px;}
.ls41{letter-spacing:13.472670px;}
.ls3b{letter-spacing:13.511831px;}
.ls38{letter-spacing:13.574230px;}
.ls13{letter-spacing:16.213362px;}
.ls1d{letter-spacing:16.356000px;}
.ls21{letter-spacing:16.472124px;}
.ls23{letter-spacing:16.472724px;}
.ls1a{letter-spacing:16.728167px;}
.ls19{letter-spacing:19.533924px;}
.ls1{letter-spacing:20.783740px;}
.ls0{letter-spacing:21.124536px;}
.ls44{letter-spacing:241.057787px;}
.ls3f{letter-spacing:298.354671px;}
.ls42{letter-spacing:346.162073px;}
.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;}
}
.ws130{word-spacing:-226.293171px;}
.wsd9{word-spacing:-13.158132px;}
.wsc1{word-spacing:-12.834128px;}
.ws30{word-spacing:-10.598268px;}
.ws187{word-spacing:-10.559868px;}
.ws154{word-spacing:-0.071999px;}
.ws54{word-spacing:-0.060001px;}
.ws1b{word-spacing:-0.057000px;}
.ws6{word-spacing:-0.054000px;}
.ws17{word-spacing:-0.047999px;}
.ws4f{word-spacing:0.000000px;}
.wsb8{word-spacing:0.786008px;}
.ws15d{word-spacing:9.244684px;}
.ws16e{word-spacing:9.431882px;}
.ws48{word-spacing:9.595080px;}
.ws49{word-spacing:9.647879px;}
.ws8b{word-spacing:9.700679px;}
.ws4a{word-spacing:9.705479px;}
.ws183{word-spacing:9.710279px;}
.ws38{word-spacing:9.743878px;}
.ws35{word-spacing:9.748678px;}
.ws89{word-spacing:9.753478px;}
.ws165{word-spacing:9.791878px;}
.ws15e{word-spacing:9.820677px;}
.ws32{word-spacing:9.825477px;}
.ws18f{word-spacing:9.830277px;}
.ws18c{word-spacing:9.835077px;}
.ws8a{word-spacing:9.844677px;}
.ws3d{word-spacing:9.849477px;}
.ws4b{word-spacing:9.854277px;}
.ws189{word-spacing:9.859077px;}
.ws16b{word-spacing:9.863877px;}
.ws4c{word-spacing:9.868677px;}
.ws3c{word-spacing:9.873477px;}
.ws10{word-spacing:9.878277px;}
.ws3a{word-spacing:9.883076px;}
.ws15{word-spacing:9.887876px;}
.ws37{word-spacing:9.892676px;}
.ws15f{word-spacing:9.897476px;}
.ws168{word-spacing:9.902276px;}
.ws18d{word-spacing:9.907076px;}
.ws18b{word-spacing:9.911876px;}
.ws44{word-spacing:9.916676px;}
.ws39{word-spacing:9.921476px;}
.ws8e{word-spacing:9.926276px;}
.ws13{word-spacing:9.931076px;}
.ws16c{word-spacing:9.935876px;}
.ws33{word-spacing:9.940676px;}
.ws191{word-spacing:9.945476px;}
.ws185{word-spacing:9.957533px;}
.ws81{word-spacing:9.959875px;}
.ws180{word-spacing:9.964675px;}
.ws164{word-spacing:9.969475px;}
.ws47{word-spacing:9.974275px;}
.ws43{word-spacing:9.979075px;}
.ws173{word-spacing:9.988675px;}
.wsda{word-spacing:10.007875px;}
.wsd{word-spacing:10.012675px;}
.ws17a{word-spacing:10.017475px;}
.ws3b{word-spacing:10.022275px;}
.ws4e{word-spacing:10.031875px;}
.ws8d{word-spacing:10.036675px;}
.ws106{word-spacing:10.041474px;}
.ws40{word-spacing:10.046274px;}
.ws16d{word-spacing:10.051074px;}
.ws34{word-spacing:10.055874px;}
.ws181{word-spacing:10.065474px;}
.ws125{word-spacing:10.070274px;}
.ws42{word-spacing:10.079874px;}
.ws46{word-spacing:10.089474px;}
.ws16a{word-spacing:10.099074px;}
.ws178{word-spacing:10.103874px;}
.ws170{word-spacing:10.108674px;}
.ws8c{word-spacing:10.113474px;}
.ws13a{word-spacing:10.118274px;}
.ws15c{word-spacing:10.123073px;}
.ws162{word-spacing:10.127873px;}
.ws14{word-spacing:10.132673px;}
.ws45{word-spacing:10.137473px;}
.ws186{word-spacing:10.151873px;}
.ws166{word-spacing:10.156673px;}
.wsc{word-spacing:10.161473px;}
.ws17d{word-spacing:10.166273px;}
.ws2f{word-spacing:10.175873px;}
.ws31{word-spacing:10.180673px;}
.ws84{word-spacing:10.185473px;}
.ws160{word-spacing:10.195073px;}
.ws86{word-spacing:10.199872px;}
.wsf{word-spacing:10.214272px;}
.ws182{word-spacing:10.223872px;}
.ws17b{word-spacing:10.228672px;}
.ws161{word-spacing:10.233472px;}
.ws87{word-spacing:10.238272px;}
.ws158{word-spacing:10.247872px;}
.ws193{word-spacing:10.262272px;}
.wse{word-spacing:10.267072px;}
.ws15b{word-spacing:10.271872px;}
.ws15a{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws179{word-spacing:10.286271px;}
.ws17c{word-spacing:10.291071px;}
.ws167{word-spacing:10.305471px;}
.ws16f{word-spacing:10.310271px;}
.ws83{word-spacing:10.315071px;}
.ws11{word-spacing:10.319871px;}
.ws190{word-spacing:10.324671px;}
.ws177{word-spacing:10.329471px;}
.ws163{word-spacing:10.334271px;}
.ws176{word-spacing:10.339071px;}
.ws171{word-spacing:10.343871px;}
.ws188{word-spacing:10.348671px;}
.ws159{word-spacing:10.353471px;}
.ws172{word-spacing:10.387070px;}
.ws36{word-spacing:10.396670px;}
.ws107{word-spacing:10.411070px;}
.wsdb{word-spacing:10.420670px;}
.ws3f{word-spacing:10.425470px;}
.ws18a{word-spacing:10.430270px;}
.ws41{word-spacing:10.444669px;}
.ws82{word-spacing:10.449469px;}
.ws192{word-spacing:10.459069px;}
.ws3e{word-spacing:10.463869px;}
.ws85{word-spacing:10.468669px;}
.ws16{word-spacing:10.497469px;}
.ws12{word-spacing:10.502269px;}
.ws175{word-spacing:10.507069px;}
.ws17f{word-spacing:10.531068px;}
.ws17e{word-spacing:10.535868px;}
.ws184{word-spacing:10.564668px;}
.ws4d{word-spacing:10.574268px;}
.ws88{word-spacing:10.579068px;}
.ws174{word-spacing:10.631867px;}
.ws18e{word-spacing:10.718266px;}
.ws5{word-spacing:11.647800px;}
.wsb9{word-spacing:11.652117px;}
.ws9{word-spacing:11.685600px;}
.wsa{word-spacing:11.718000px;}
.wsae{word-spacing:11.748117px;}
.wsb7{word-spacing:11.766118px;}
.ws8{word-spacing:11.815200px;}
.wsb1{word-spacing:11.832118px;}
.wsb{word-spacing:11.863800px;}
.ws7{word-spacing:11.896200px;}
.wsb6{word-spacing:11.922119px;}
.ws2a{word-spacing:11.935800px;}
.wsc6{word-spacing:11.976120px;}
.wsc0{word-spacing:11.988120px;}
.wsbe{word-spacing:12.090121px;}
.wsb4{word-spacing:12.144121px;}
.wsbf{word-spacing:12.204122px;}
.wsb2{word-spacing:12.258123px;}
.ws1f{word-spacing:12.260700px;}
.ws14d{word-spacing:12.270123px;}
.ws29{word-spacing:12.277800px;}
.ws148{word-spacing:12.282123px;}
.ws14b{word-spacing:12.288123px;}
.ws26{word-spacing:12.340500px;}
.ws25{word-spacing:12.357600px;}
.ws147{word-spacing:12.366124px;}
.wsc4{word-spacing:12.372124px;}
.wsb3{word-spacing:12.396124px;}
.ws145{word-spacing:12.420124px;}
.ws1d{word-spacing:12.431700px;}
.wsb5{word-spacing:12.432124px;}
.ws21{word-spacing:12.437400px;}
.ws1c{word-spacing:12.443100px;}
.ws19{word-spacing:12.448800px;}
.wsb0{word-spacing:12.450125px;}
.wsad{word-spacing:12.456125px;}
.ws18{word-spacing:12.460200px;}
.ws14c{word-spacing:12.504125px;}
.ws14a{word-spacing:12.510125px;}
.ws20{word-spacing:12.517200px;}
.ws1e{word-spacing:12.579900px;}
.wsba{word-spacing:12.600126px;}
.ws22{word-spacing:12.608400px;}
.ws27{word-spacing:12.614100px;}
.wsbb{word-spacing:12.618126px;}
.ws151{word-spacing:12.672127px;}
.ws1a{word-spacing:12.699600px;}
.ws9a{word-spacing:12.720127px;}
.ws146{word-spacing:12.726127px;}
.wsbc{word-spacing:12.738127px;}
.wse7{word-spacing:12.739041px;}
.ws63{word-spacing:12.762128px;}
.ws108{word-spacing:12.767840px;}
.ws7b{word-spacing:12.768128px;}
.ws28{word-spacing:12.779400px;}
.ws24{word-spacing:12.790800px;}
.ws11b{word-spacing:12.820640px;}
.ws11d{word-spacing:12.825440px;}
.ws90{word-spacing:12.834128px;}
.wsdd{word-spacing:12.839840px;}
.wsf5{word-spacing:12.844639px;}
.ws23{word-spacing:12.853500px;}
.wsdf{word-spacing:12.863839px;}
.ws75{word-spacing:12.870129px;}
.ws110{word-spacing:12.873439px;}
.wse9{word-spacing:12.878239px;}
.ws137{word-spacing:12.906129px;}
.wsdc{word-spacing:12.907039px;}
.ws101{word-spacing:12.916639px;}
.ws77{word-spacing:12.936129px;}
.ws10c{word-spacing:12.945438px;}
.ws138{word-spacing:12.948129px;}
.ws10f{word-spacing:12.950238px;}
.ws149{word-spacing:12.954130px;}
.ws105{word-spacing:12.959838px;}
.wsa6{word-spacing:12.960130px;}
.ws93{word-spacing:12.966130px;}
.wsd2{word-spacing:12.972130px;}
.ws99{word-spacing:12.978130px;}
.ws6b{word-spacing:12.984130px;}
.wse4{word-spacing:12.988638px;}
.ws121{word-spacing:12.993438px;}
.wsa5{word-spacing:12.996130px;}
.wsfd{word-spacing:12.998238px;}
.wsa2{word-spacing:13.002130px;}
.ws11f{word-spacing:13.007837px;}
.ws64{word-spacing:13.008130px;}
.ws6e{word-spacing:13.014130px;}
.wsfe{word-spacing:13.017437px;}
.wsa7{word-spacing:13.020130px;}
.ws52{word-spacing:13.026130px;}
.wsf8{word-spacing:13.031837px;}
.ws65{word-spacing:13.038130px;}
.ws9f{word-spacing:13.044130px;}
.ws5a{word-spacing:13.050131px;}
.ws5c{word-spacing:13.056131px;}
.ws6d{word-spacing:13.062131px;}
.wsaa{word-spacing:13.068131px;}
.ws115{word-spacing:13.070237px;}
.ws9c{word-spacing:13.074131px;}
.ws10e{word-spacing:13.079837px;}
.ws5b{word-spacing:13.080131px;}
.wsab{word-spacing:13.086131px;}
.ws2b{word-spacing:13.092131px;}
.ws2d{word-spacing:13.104131px;}
.ws56{word-spacing:13.110131px;}
.ws14e{word-spacing:13.113994px;}
.ws144{word-spacing:13.116131px;}
.ws14f{word-spacing:13.122131px;}
.ws66{word-spacing:13.128131px;}
.ws59{word-spacing:13.134131px;}
.ws100{word-spacing:13.142236px;}
.ws150{word-spacing:13.152132px;}
.wsa0{word-spacing:13.158132px;}
.wsfa{word-spacing:13.161435px;}
.ws10a{word-spacing:13.166235px;}
.ws80{word-spacing:13.170132px;}
.wsa4{word-spacing:13.176132px;}
.ws5f{word-spacing:13.182132px;}
.ws2e{word-spacing:13.188132px;}
.ws139{word-spacing:13.194132px;}
.wse5{word-spacing:13.199835px;}
.wsa9{word-spacing:13.200132px;}
.ws69{word-spacing:13.206132px;}
.wsa3{word-spacing:13.212132px;}
.ws2c{word-spacing:13.218132px;}
.ws55{word-spacing:13.224132px;}
.wsfb{word-spacing:13.228635px;}
.ws7e{word-spacing:13.230132px;}
.wsd8{word-spacing:13.236132px;}
.wsca{word-spacing:13.242132px;}
.wsf0{word-spacing:13.243034px;}
.ws53{word-spacing:13.248132px;}
.ws132{word-spacing:13.254133px;}
.ws104{word-spacing:13.257434px;}
.wsd6{word-spacing:13.260133px;}
.wscf{word-spacing:13.266133px;}
.ws76{word-spacing:13.272133px;}
.ws5d{word-spacing:13.278133px;}
.wsd0{word-spacing:13.284133px;}
.ws51{word-spacing:13.290133px;}
.ws61{word-spacing:13.296133px;}
.ws124{word-spacing:13.302133px;}
.ws70{word-spacing:13.308133px;}
.wsde{word-spacing:13.310234px;}
.ws68{word-spacing:13.314133px;}
.wsa1{word-spacing:13.320133px;}
.ws156{word-spacing:13.326133px;}
.ws9b{word-spacing:13.338133px;}
.ws9e{word-spacing:13.344133px;}
.ws57{word-spacing:13.350134px;}
.ws7a{word-spacing:13.368134px;}
.wsd3{word-spacing:13.374134px;}
.ws7f{word-spacing:13.380134px;}
.wscb{word-spacing:13.386134px;}
.ws94{word-spacing:13.392134px;}
.ws50{word-spacing:13.398134px;}
.wsc5{word-spacing:13.404134px;}
.ws73{word-spacing:13.410134px;}
.ws7d{word-spacing:13.416134px;}
.ws8f{word-spacing:13.422134px;}
.ws6c{word-spacing:13.428134px;}
.ws91{word-spacing:13.434134px;}
.wse2{word-spacing:13.439832px;}
.ws7c{word-spacing:13.440134px;}
.ws5e{word-spacing:13.446134px;}
.ws133{word-spacing:13.452135px;}
.wsa8{word-spacing:13.458135px;}
.ws60{word-spacing:13.464135px;}
.ws74{word-spacing:13.470135px;}
.ws11e{word-spacing:13.473432px;}
.ws136{word-spacing:13.476135px;}
.ws78{word-spacing:13.494135px;}
.ws11c{word-spacing:13.497431px;}
.wsd1{word-spacing:13.500135px;}
.wse1{word-spacing:13.502231px;}
.wscd{word-spacing:13.506135px;}
.ws67{word-spacing:13.512135px;}
.ws6f{word-spacing:13.518135px;}
.wsf6{word-spacing:13.521431px;}
.ws79{word-spacing:13.524135px;}
.ws92{word-spacing:13.530135px;}
.wsd4{word-spacing:13.536135px;}
.ws62{word-spacing:13.542135px;}
.wsc8{word-spacing:13.548135px;}
.ws97{word-spacing:13.566136px;}
.wseb{word-spacing:13.569430px;}
.ws96{word-spacing:13.584136px;}
.ws6a{word-spacing:13.590136px;}
.wsc7{word-spacing:13.596136px;}
.ws152{word-spacing:13.602136px;}
.ws134{word-spacing:13.608136px;}
.wsc2{word-spacing:13.632136px;}
.ws143{word-spacing:13.638136px;}
.ws135{word-spacing:13.644136px;}
.ws95{word-spacing:13.680137px;}
.ws153{word-spacing:13.692137px;}
.wsd5{word-spacing:13.704137px;}
.wsd7{word-spacing:13.740137px;}
.wsce{word-spacing:13.842138px;}
.ws58{word-spacing:13.860139px;}
.wsc3{word-spacing:13.872139px;}
.wscc{word-spacing:14.034140px;}
.wsaf{word-spacing:14.154142px;}
.ws98{word-spacing:15.465471px;}
.ws155{word-spacing:15.523071px;}
.wsac{word-spacing:15.580670px;}
.ws9d{word-spacing:15.602270px;}
.wsc9{word-spacing:15.667069px;}
.ws72{word-spacing:15.688669px;}
.ws71{word-spacing:15.731869px;}
.wsbd{word-spacing:15.854268px;}
.ws123{word-spacing:15.919067px;}
.ws1{word-spacing:26.172131px;}
.ws2{word-spacing:26.220131px;}
.ws3{word-spacing:26.232131px;}
.ws4{word-spacing:26.412132px;}
.ws157{word-spacing:59.821652px;}
.ws169{word-spacing:59.860052px;}
.ws117{word-spacing:194.973563px;}
.ws128{word-spacing:205.859827px;}
.ws109{word-spacing:211.768553px;}
.ws10d{word-spacing:221.469232px;}
.ws126{word-spacing:222.995613px;}
.ws12a{word-spacing:232.355496px;}
.ws13d{word-spacing:237.491431px;}
.ws13b{word-spacing:238.173023px;}
.ws140{word-spacing:252.121648px;}
.ws131{word-spacing:258.851164px;}
.ws122{word-spacing:260.924738px;}
.ws13e{word-spacing:260.963138px;}
.ws141{word-spacing:263.459107px;}
.ws13f{word-spacing:267.246259px;}
.ws12f{word-spacing:271.811002px;}
.ws13c{word-spacing:277.863727px;}
.ws10b{word-spacing:287.420407px;}
.ws127{word-spacing:298.306671px;}
.ws142{word-spacing:337.277384px;}
.wsea{word-spacing:597.506131px;}
.wse8{word-spacing:617.176285px;}
.wsee{word-spacing:824.840889px;}
.wsed{word-spacing:834.344771px;}
.wsec{word-spacing:849.344583px;}
.wsf4{word-spacing:898.327971px;}
.wsf1{word-spacing:900.823940px;}
.wsf3{word-spacing:906.199872px;}
.ws129{word-spacing:932.705141px;}
.ws120{word-spacing:934.490719px;}
.ws111{word-spacing:969.443882px;}
.ws118{word-spacing:1060.690741px;}
.ws12c{word-spacing:1160.236697px;}
.ws12b{word-spacing:1169.740578px;}
.ws114{word-spacing:1196.970638px;}
.ws113{word-spacing:1206.474519px;}
.ws112{word-spacing:1220.922338px;}
.ws12e{word-spacing:1233.723778px;}
.ws12d{word-spacing:1236.219747px;}
.ws11a{word-spacing:1270.457719px;}
.ws116{word-spacing:1272.953688px;}
.ws119{word-spacing:1278.329621px;}
.ws102{word-spacing:1312.063599px;}
.wsf2{word-spacing:1438.345220px;}
.wsf7{word-spacing:1468.560843px;}
.wse6{word-spacing:1485.226234px;}
.ws103{word-spacing:1530.465669px;}
.wse0{word-spacing:1562.442869px;}
.wsfc{word-spacing:1584.210597px;}
.wsef{word-spacing:1592.716091px;}
.wse3{word-spacing:1598.840814px;}
.wsff{word-spacing:1624.688491px;}
.wsf9{word-spacing:1631.154010px;}
._55{margin-left:-298.354671px;}
._54{margin-left:-18.369370px;}
._d{margin-left:-13.673166px;}
._f{margin-left:-12.306123px;}
._6{margin-left:-10.550268px;}
._9{margin-left:-4.867139px;}
._a{margin-left:-3.158361px;}
._0{margin-left:-2.112011px;}
._8{margin-left:-1.084786px;}
._2{width:1.008900px;}
._7{width:9.086323px;}
._5e{width:10.300708px;}
._1{width:11.452694px;}
._e{width:12.516125px;}
._3{width:13.719900px;}
._b{width:14.771258px;}
._c{width:16.811860px;}
._5f{width:19.626955px;}
._10{width:21.124536px;}
._4{width:46.545018px;}
._22{width:194.843964px;}
._46{width:206.071024px;}
._29{width:221.176435px;}
._4c{width:232.403495px;}
._5b{width:252.020850px;}
._5c{width:261.011137px;}
._2c{width:266.795065px;}
._58{width:271.910130px;}
._5a{width:277.455732px;}
._4a{width:279.985300px;}
._2b{width:287.468407px;}
._26{width:293.290734px;}
._4e{width:298.354671px;}
._3f{width:306.250572px;}
._57{width:331.013462px;}
._42{width:332.746241px;}
._50{width:343.440507px;}
._30{width:359.241909px;}
._4b{width:370.464169px;}
._43{width:437.624930px;}
._56{width:440.389695px;}
._23{width:448.213597px;}
._47{width:470.326921px;}
._21{width:477.546031px;}
._45{width:480.949188px;}
._16{width:525.963025px;}
._24{width:599.579705px;}
._48{width:602.978063px;}
._17{width:650.660667px;}
._19{width:696.970488px;}
._18{width:776.035099px;}
._11{width:839.096711px;}
._4d{width:861.392432px;}
._31{width:898.131173px;}
._28{width:916.490944px;}
._3a{width:949.365733px;}
._39{width:952.831326px;}
._4f{width:986.051674px;}
._36{width:1005.539431px;}
._53{width:1007.454607px;}
._32{width:1022.790415px;}
._3d{width:1026.390370px;}
._40{width:1042.268571px;}
._41{width:1044.188547px;}
._49{width:1061.660329px;}
._35{width:1068.773840px;}
._37{width:1090.301571px;}
._2f{width:1098.399070px;}
._2e{width:1107.158960px;}
._51{width:1111.426107px;}
._25{width:1124.232347px;}
._33{width:1148.164848px;}
._2d{width:1151.817602px;}
._44{width:1174.487719px;}
._59{width:1178.044474px;}
._27{width:1184.917988px;}
._3b{width:1206.685716px;}
._3e{width:1210.156073px;}
._20{width:1211.226459px;}
._52{width:1212.925638px;}
._34{width:1215.191210px;}
._2a{width:1221.315933px;}
._3c{width:1247.163610px;}
._38{width:1253.629129px;}
._13{width:1295.551842px;}
._1c{width:1326.881051px;}
._1b{width:1330.068211px;}
._1a{width:1383.088311px;}
._1f{width:1399.580905px;}
._1e{width:1404.294446px;}
._1d{width:1475.045562px;}
._15{width:1476.312746px;}
._12{width:1501.661229px;}
._14{width:1529.390482px;}
._5d{width:1755.875651px;}
._5{width:1782.409720px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fsa{font-size:35.998800px;}
.fs8{font-size:39.996000px;}
.fs9{font-size:41.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.000000px;}
.y110{bottom:124.487145px;}
.y77{bottom:124.491540px;}
.yb3{bottom:124.495530px;}
.ye5{bottom:124.495920px;}
.y1e6{bottom:124.496250px;}
.y27{bottom:124.496955px;}
.y47{bottom:124.504170px;}
.y1d2{bottom:125.086740px;}
.y21f{bottom:130.110787px;}
.y117{bottom:134.190030px;}
.y1e5{bottom:138.783271px;}
.y46{bottom:141.001564px;}
.y10f{bottom:143.961840px;}
.y76{bottom:143.966234px;}
.yb2{bottom:143.970225px;}
.ye4{bottom:143.970615px;}
.y26{bottom:143.971650px;}
.y183{bottom:143.971904px;}
.y1d1{bottom:144.561434px;}
.y21e{bottom:149.584144px;}
.y1e4{bottom:152.985094px;}
.y116{bottom:153.664725px;}
.y45{bottom:157.498958px;}
.y250{bottom:158.598853px;}
.y10e{bottom:163.520535px;}
.y75{bottom:163.524930px;}
.y182{bottom:163.525561px;}
.yb1{bottom:163.528920px;}
.ye3{bottom:163.529311px;}
.y21d{bottom:163.871165px;}
.y1d0{bottom:164.120130px;}
.y25{bottom:169.483500px;}
.y1e3{bottom:172.458450px;}
.y24f{bottom:172.800676px;}
.y115{bottom:173.223420px;}
.y44{bottom:173.996351px;}
.y21c{bottom:178.072988px;}
.y10d{bottom:182.995230px;}
.y74{bottom:182.999625px;}
.y181{bottom:183.000255px;}
.yb0{bottom:183.003615px;}
.ye2{bottom:183.004005px;}
.y1cf{bottom:183.594825px;}
.y1e2{bottom:186.745472px;}
.y170{bottom:191.422874px;}
.y24e{bottom:192.359231px;}
.y114{bottom:192.698115px;}
.y21b{bottom:197.546344px;}
.y43{bottom:199.508033px;}
.ye0{bottom:200.012550px;}
.y10c{bottom:202.469925px;}
.y1a5{bottom:202.470569px;}
.y73{bottom:202.474319px;}
.y180{bottom:202.474950px;}
.ydf{bottom:202.477020px;}
.yaf{bottom:202.478310px;}
.ye1{bottom:202.478700px;}
.y1ce{bottom:203.069519px;}
.y1e1{bottom:206.220028px;}
.y24d{bottom:206.561054px;}
.y21a{bottom:211.833366px;}
.y113{bottom:212.172810px;}
.y16f{bottom:214.638984px;}
.y42{bottom:216.005426px;}
.y1e0{bottom:220.507050px;}
.y10b{bottom:222.028620px;}
.y1a4{bottom:222.029265px;}
.y72{bottom:222.033015px;}
.y17f{bottom:222.033646px;}
.yde{bottom:222.035716px;}
.yae{bottom:222.037005px;}
.y1cd{bottom:222.628215px;}
.y24c{bottom:226.119609px;}
.y219{bottom:226.120387px;}
.y112{bottom:231.731505px;}
.y41{bottom:232.502820px;}
.y16e{bottom:233.347950px;}
.yac{bottom:238.960500px;}
.y1df{bottom:239.980406px;}
.y24b{bottom:240.321432px;}
.y10a{bottom:241.503315px;}
.y1a3{bottom:241.503960px;}
.y71{bottom:241.507710px;}
.yab{bottom:241.507950px;}
.y17e{bottom:241.508340px;}
.ydd{bottom:241.510411px;}
.yad{bottom:241.511700px;}
.y1cc{bottom:242.102910px;}
.y218{bottom:245.593744px;}
.y40{bottom:249.000214px;}
.y111{bottom:251.206200px;}
.y16d{bottom:252.126987px;}
.y1de{bottom:254.267428px;}
.y24a{bottom:259.794788px;}
.y217{bottom:259.795566px;}
.y109{bottom:260.978010px;}
.y1a2{bottom:260.978654px;}
.y70{bottom:260.982404px;}
.yaa{bottom:260.982645px;}
.y17d{bottom:260.983035px;}
.ydc{bottom:260.985105px;}
.y1cb{bottom:261.577604px;}
.y3f{bottom:265.497608px;}
.y1dd{bottom:268.469250px;}
.y24{bottom:269.493900px;}
.y16c{bottom:270.835953px;}
.y249{bottom:274.081810px;}
.y216{bottom:274.082588px;}
.yda{bottom:277.993650px;}
.y108{bottom:280.452704px;}
.y1a1{bottom:280.453349px;}
.y6f{bottom:280.457099px;}
.ya9{bottom:280.457340px;}
.y17c{bottom:280.457730px;}
.ydb{bottom:280.459800px;}
.yd9{bottom:280.460054px;}
.y1ca{bottom:281.136300px;}
.y3e{bottom:281.995001px;}
.y248{bottom:288.368831px;}
.y1dc{bottom:288.708600px;}
.y16b{bottom:289.630118px;}
.y23{bottom:290.498400px;}
.y143{bottom:293.300362px;}
.y215{bottom:293.555944px;}
.yd7{bottom:297.467550px;}
.y3d{bottom:298.492395px;}
.y107{bottom:300.011400px;}
.y1a0{bottom:300.012045px;}
.y6e{bottom:300.015795px;}
.ya8{bottom:300.016035px;}
.y17b{bottom:300.016425px;}
.yd6{bottom:300.018105px;}
.yd8{bottom:300.018750px;}
.y1c9{bottom:300.610995px;}
.y247{bottom:307.842188px;}
.y214{bottom:307.842966px;}
.y16a{bottom:308.339084px;}
.y22{bottom:311.502900px;}
.y3c{bottom:314.989789px;}
.yd4{bottom:317.026650px;}
.y106{bottom:319.486095px;}
.y19f{bottom:319.486740px;}
.y6d{bottom:319.490490px;}
.ya7{bottom:319.490730px;}
.y17a{bottom:319.491120px;}
.yd3{bottom:319.492025px;}
.yd5{bottom:319.492800px;}
.y1c8{bottom:320.085690px;}
.y142{bottom:320.258025px;}
.y246{bottom:322.044010px;}
.y213{bottom:322.044788px;}
.y169{bottom:327.133249px;}
.y21{bottom:332.421900px;}
.y1db{bottom:334.203615px;}
.y141{bottom:338.286600px;}
.y105{bottom:338.960790px;}
.y19e{bottom:338.961434px;}
.y6c{bottom:338.965184px;}
.ya6{bottom:338.965425px;}
.y179{bottom:338.965815px;}
.y1c7{bottom:339.560384px;}
.y3b{bottom:340.501470px;}
.y245{bottom:341.602566px;}
.y212{bottom:341.603344px;}
.y140{bottom:343.558950px;}
.y168{bottom:345.842216px;}
.yd2{bottom:351.977423px;}
.y20{bottom:353.426400px;}
.y1da{bottom:353.678310px;}
.y244{bottom:355.804388px;}
.y211{bottom:355.805166px;}
.y3a{bottom:356.998864px;}
.y104{bottom:358.519485px;}
.y19d{bottom:358.520130px;}
.y6b{bottom:358.523880px;}
.ya5{bottom:358.524120px;}
.y178{bottom:358.524511px;}
.y1c6{bottom:359.119080px;}
.y167{bottom:364.636381px;}
.y13f{bottom:367.103335px;}
.y1d9{bottom:373.237005px;}
.y39{bottom:373.496258px;}
.y1f{bottom:374.430900px;}
.y243{bottom:375.362944px;}
.y210{bottom:375.363722px;}
.yd0{bottom:377.149500px;}
.y103{bottom:377.994180px;}
.y19c{bottom:377.994825px;}
.y6a{bottom:377.998575px;}
.ya4{bottom:377.998815px;}
.y177{bottom:377.999205px;}
.y1c5{bottom:378.593775px;}
.ycf{bottom:379.700055px;}
.yd1{bottom:379.700700px;}
.y166{bottom:383.345347px;}
.y13e{bottom:385.897500px;}
.y242{bottom:389.564766px;}
.y20f{bottom:389.565544px;}
.y38{bottom:389.993651px;}
.y1d8{bottom:392.711700px;}
.y1e{bottom:395.435400px;}
.y102{bottom:397.468875px;}
.y19b{bottom:397.469519px;}
.y69{bottom:397.473269px;}
.ya3{bottom:397.473510px;}
.y176{bottom:397.473900px;}
.y1c4{bottom:398.068469px;}
.yce{bottom:399.174750px;}
.y165{bottom:402.139512px;}
.y20e{bottom:403.852566px;}
.y13d{bottom:404.606466px;}
.y37{bottom:406.491045px;}
.y241{bottom:409.038123px;}
.y1d{bottom:416.439900px;}
.y101{bottom:417.027570px;}
.y19a{bottom:417.028215px;}
.y68{bottom:417.031965px;}
.ya2{bottom:417.032205px;}
.y1c3{bottom:417.627165px;}
.y26e{bottom:418.054660px;}
.y1d7{bottom:418.223550px;}
.y164{bottom:420.848478px;}
.y175{bottom:422.985600px;}
.y36{bottom:422.988439px;}
.y240{bottom:423.325144px;}
.y20d{bottom:423.325922px;}
.y13c{bottom:423.399431px;}
.ycd{bottom:424.686450px;}
.y26d{bottom:432.341681px;}
.y100{bottom:436.502265px;}
.y199{bottom:436.502910px;}
.y67{bottom:436.506660px;}
.ya1{bottom:436.506900px;}
.y1c2{bottom:437.101860px;}
.y1c{bottom:437.444400px;}
.y23f{bottom:437.612165px;}
.y20c{bottom:437.612944px;}
.y163{bottom:439.642643px;}
.y13b{bottom:442.108397px;}
.y35{bottom:448.500120px;}
.y20b{bottom:451.814766px;}
.y26c{bottom:451.815038px;}
.yff{bottom:455.976960px;}
.y198{bottom:455.977604px;}
.y66{bottom:455.981354px;}
.y1c1{bottom:456.576554px;}
.y23e{bottom:457.086722px;}
.y162{bottom:458.351609px;}
.y1b{bottom:458.448900px;}
.y13a{bottom:460.902563px;}
.ya0{bottom:462.018750px;}
.y1d6{bottom:463.634160px;}
.y26b{bottom:466.102059px;}
.ycc{bottom:466.862010px;}
.y20a{bottom:471.288123px;}
.y23d{bottom:471.288544px;}
.y34{bottom:474.011801px;}
.yfe{bottom:475.535655px;}
.y197{bottom:475.536300px;}
.y64{bottom:475.540050px;}
.y1c0{bottom:476.127496px;}
.y161{bottom:477.145774px;}
.y1a{bottom:479.453400px;}
.y139{bottom:479.611529px;}
.y174{bottom:481.151565px;}
.y65{bottom:482.173050px;}
.y1d5{bottom:483.108854px;}
.y209{bottom:485.575144px;}
.y26a{bottom:485.575416px;}
.ycb{bottom:486.420705px;}
.y23c{bottom:490.844803px;}
.yfd{bottom:495.010350px;}
.y196{bottom:495.010995px;}
.y1bf{bottom:495.602190px;}
.y160{bottom:495.854740px;}
.y138{bottom:498.405694px;}
.y33{bottom:499.523482px;}
.y208{bottom:499.862165px;}
.y269{bottom:499.862437px;}
.y19{bottom:500.457900px;}
.y173{bottom:500.626260px;}
.y63{bottom:500.966325px;}
.y1d4{bottom:502.667550px;}
.y9f{bottom:505.044255px;}
.y23b{bottom:505.046625px;}
.yca{bottom:505.895400px;}
.yfc{bottom:514.485045px;}
.y195{bottom:514.485690px;}
.y15f{bottom:514.648905px;}
.y1be{bottom:515.076885px;}
.y137{bottom:517.114660px;}
.y207{bottom:519.335522px;}
.y268{bottom:519.335794px;}
.y172{bottom:520.184955px;}
.y18{bottom:521.462400px;}
.y9e{bottom:524.518950px;}
.y23a{bottom:524.605181px;}
.y32{bottom:525.035163px;}
.yc9{bottom:525.370095px;}
.y62{bottom:528.009300px;}
.y1d3{bottom:528.179400px;}
.y15e{bottom:533.357872px;}
.y206{bottom:533.622543px;}
.y267{bottom:533.622815px;}
.yfb{bottom:533.959740px;}
.y194{bottom:533.960384px;}
.y1bd{bottom:534.635581px;}
.y136{bottom:535.908825px;}
.y239{bottom:538.807003px;}
.y171{bottom:539.659650px;}
.y31{bottom:541.532557px;}
.y17{bottom:542.466900px;}
.y9d{bottom:544.077646px;}
.yc8{bottom:544.928790px;}
.y15d{bottom:552.152037px;}
.y238{bottom:553.094025px;}
.y205{bottom:553.095225px;}
.y266{bottom:553.096172px;}
.yfa{bottom:553.518435px;}
.y193{bottom:553.519080px;}
.y1bc{bottom:554.110275px;}
.y135{bottom:554.617791px;}
.y16{bottom:563.471400px;}
.y9c{bottom:563.552340px;}
.yc7{bottom:564.403485px;}
.y30{bottom:567.044238px;}
.y204{bottom:567.297047px;}
.y265{bottom:567.297994px;}
.y15c{bottom:570.861003px;}
.y237{bottom:572.567381px;}
.yf9{bottom:572.993130px;}
.y192{bottom:572.993775px;}
.y134{bottom:573.411956px;}
.y61{bottom:573.581475px;}
.y1bb{bottom:573.584970px;}
.y9b{bottom:583.027035px;}
.y2f{bottom:583.541632px;}
.yc6{bottom:583.878180px;}
.y15{bottom:584.475900px;}
.y184{bottom:585.148024px;}
.y236{bottom:586.854403px;}
.y203{bottom:586.855603px;}
.y264{bottom:586.856550px;}
.y15b{bottom:589.655168px;}
.y133{bottom:592.120922px;}
.yf8{bottom:592.467825px;}
.y191{bottom:592.468469px;}
.y60{bottom:593.056169px;}
.y1ba{bottom:593.059665px;}
.y2e{bottom:600.039026px;}
.y235{bottom:601.056225px;}
.y202{bottom:601.057425px;}
.y9a{bottom:602.585731px;}
.yc5{bottom:603.352875px;}
.y14{bottom:605.480400px;}
.y15a{bottom:608.364134px;}
.y132{bottom:610.915087px;}
.yf7{bottom:612.026520px;}
.y190{bottom:612.027165px;}
.y5f{bottom:612.614865px;}
.y1b9{bottom:612.618361px;}
.y263{bottom:615.344447px;}
.y2d{bottom:616.536420px;}
.y234{bottom:620.614781px;}
.y201{bottom:620.615981px;}
.y99{bottom:622.060425px;}
.yc4{bottom:622.911570px;}
.y13{bottom:626.484900px;}
.y159{bottom:627.158299px;}
.y131{bottom:629.624053px;}
.yf6{bottom:631.501215px;}
.y18f{bottom:631.501860px;}
.y5e{bottom:632.089560px;}
.y1b8{bottom:632.093055px;}
.y2c{bottom:633.033813px;}
.y233{bottom:634.816603px;}
.y200{bottom:634.817803px;}
.y98{bottom:641.535120px;}
.yc3{bottom:642.386265px;}
.y158{bottom:645.867265px;}
.y130{bottom:648.418219px;}
.y262{bottom:649.104825px;}
.y2b{bottom:649.531207px;}
.yf5{bottom:650.975910px;}
.y18e{bottom:650.976554px;}
.y5d{bottom:651.564254px;}
.y1b7{bottom:651.567750px;}
.y232{bottom:654.291160px;}
.y1ff{bottom:654.292360px;}
.y12{bottom:659.480100px;}
.y97{bottom:661.009815px;}
.yc2{bottom:661.860960px;}
.y261{bottom:663.306647px;}
.y157{bottom:664.661430px;}
.y12f{bottom:667.127185px;}
.y231{bottom:668.578181px;}
.y1fe{bottom:668.579381px;}
.yf4{bottom:670.534605px;}
.y18d{bottom:670.535250px;}
.y5c{bottom:671.122950px;}
.y1b6{bottom:671.126446px;}
.y2a{bottom:674.106900px;}
.y96{bottom:680.568511px;}
.yc1{bottom:681.419655px;}
.y260{bottom:682.865203px;}
.y156{bottom:683.370396px;}
.y12e{bottom:685.836151px;}
.y230{bottom:688.051538px;}
.y1fd{bottom:688.052738px;}
.yf3{bottom:690.009300px;}
.y5b{bottom:690.597645px;}
.y1b5{bottom:690.601140px;}
.y18c{bottom:695.962050px;}
.y25f{bottom:697.067025px;}
.y95{bottom:700.043205px;}
.yc0{bottom:700.893555px;}
.y155{bottom:702.164561px;}
.y22f{bottom:702.338559px;}
.y1fc{bottom:702.339759px;}
.y12d{bottom:704.630316px;}
.y5a{bottom:710.072340px;}
.y1b4{bottom:710.075835px;}
.y25e{bottom:711.354047px;}
.yf2{bottom:715.521000px;}
.y94{bottom:719.517900px;}
.ybf{bottom:720.368250px;}
.y154{bottom:720.873528px;}
.y22e{bottom:721.813116px;}
.y1fb{bottom:721.814316px;}
.y11{bottom:722.497200px;}
.y12c{bottom:723.339282px;}
.y59{bottom:729.631035px;}
.y1b3{bottom:729.634531px;}
.y25d{bottom:730.827403px;}
.y22d{bottom:736.100137px;}
.y1fa{bottom:736.101337px;}
.y153{bottom:739.667693px;}
.y12b{bottom:742.133447px;}
.y18b{bottom:744.772530px;}
.y93{bottom:745.029750px;}
.y25c{bottom:745.114425px;}
.ybe{bottom:745.880100px;}
.y58{bottom:749.105730px;}
.y1b2{bottom:749.109225px;}
.y22c{bottom:750.301960px;}
.y1f9{bottom:750.303160px;}
.y10{bottom:752.430826px;}
.y152{bottom:758.376659px;}
.y12a{bottom:760.842413px;}
.y18a{bottom:764.331225px;}
.yf1{bottom:764.584696px;}
.y25b{bottom:764.587781px;}
.yf{bottom:767.482238px;}
.y57{bottom:768.580425px;}
.y1b1{bottom:768.583920px;}
.y22b{bottom:769.860515px;}
.y1f8{bottom:769.861715px;}
.y151{bottom:777.170824px;}
.y25a{bottom:778.789604px;}
.y129{bottom:779.636578px;}
.ye{bottom:782.448450px;}
.y189{bottom:783.805920px;}
.yf0{bottom:784.059390px;}
.y22a{bottom:784.062338px;}
.y1f7{bottom:784.063538px;}
.y56{bottom:788.055119px;}
.y92{bottom:788.056304px;}
.ybd{bottom:788.057190px;}
.y1b0{bottom:788.058615px;}
.y150{bottom:795.879790px;}
.yd{bottom:797.499862px;}
.y128{bottom:798.345544px;}
.y259{bottom:798.348159px;}
.y229{bottom:798.349359px;}
.y1f6{bottom:798.350559px;}
.y29{bottom:802.091100px;}
.y188{bottom:803.280615px;}
.yef{bottom:803.534085px;}
.y55{bottom:807.613815px;}
.y91{bottom:807.615000px;}
.ybc{bottom:807.615885px;}
.y1af{bottom:807.617311px;}
.yc{bottom:812.466075px;}
.y258{bottom:812.549982px;}
.y14f{bottom:814.588756px;}
.y127{bottom:817.139710px;}
.y228{bottom:817.822716px;}
.y1f5{bottom:817.823916px;}
.y187{bottom:822.839311px;}
.yee{bottom:823.008780px;}
.y54{bottom:827.088510px;}
.y90{bottom:827.089695px;}
.ybb{bottom:827.090580px;}
.y1ae{bottom:827.092005px;}
.yb{bottom:827.433488px;}
.y257{bottom:832.108537px;}
.y227{bottom:832.109737px;}
.y1f4{bottom:832.110937px;}
.y14e{bottom:833.382921px;}
.y126{bottom:835.848676px;}
.y186{bottom:842.314005px;}
.ya{bottom:842.484900px;}
.yed{bottom:842.567475px;}
.y256{bottom:846.310360px;}
.y53{bottom:846.563204px;}
.y8f{bottom:846.564390px;}
.yba{bottom:846.565275px;}
.y226{bottom:851.583094px;}
.y1f3{bottom:851.584294px;}
.y14d{bottom:852.091887px;}
.y125{bottom:854.642841px;}
.y85{bottom:856.093837px;}
.y255{bottom:860.597381px;}
.y185{bottom:861.788700px;}
.yec{bottom:862.042170px;}
.y1f2{bottom:865.871315px;}
.y52{bottom:866.121900px;}
.y8e{bottom:866.123085px;}
.yb9{bottom:866.123970px;}
.y9{bottom:869.442300px;}
.y7{bottom:869.442900px;}
.y14c{bottom:870.886052px;}
.y225{bottom:871.057650px;}
.y84{bottom:872.591231px;}
.y124{bottom:873.351807px;}
.y8{bottom:875.480100px;}
.y254{bottom:880.071938px;}
.yeb{bottom:881.516865px;}
.y1f1{bottom:885.344672px;}
.y51{bottom:885.596595px;}
.y8d{bottom:885.597780px;}
.yb8{bottom:885.598665px;}
.y5{bottom:885.939900px;}
.y14b{bottom:889.595019px;}
.y6{bottom:891.977850px;}
.y123{bottom:892.145972px;}
.y253{bottom:894.358959px;}
.y83{bottom:898.102912px;}
.y1f0{bottom:899.546494px;}
.yea{bottom:901.075561px;}
.y224{bottom:904.818028px;}
.y50{bottom:905.071290px;}
.y8c{bottom:905.072475px;}
.yb7{bottom:905.073360px;}
.y1ad{bottom:907.707592px;}
.y14a{bottom:908.387984px;}
.y122{bottom:910.854938px;}
.y1ef{bottom:913.833516px;}
.y82{bottom:914.600306px;}
.y223{bottom:919.105050px;}
.ye9{bottom:920.550255px;}
.y4{bottom:923.440575px;}
.y4f{bottom:924.629985px;}
.y8b{bottom:924.631170px;}
.yb6{bottom:924.632055px;}
.y149{bottom:927.096950px;}
.y252{bottom:928.120537px;}
.y121{bottom:929.647903px;}
.y1ac{bottom:930.923702px;}
.y81{bottom:931.097700px;}
.y1ee{bottom:933.306872px;}
.y222{bottom:938.578406px;}
.ye8{bottom:940.024950px;}
.y4e{bottom:944.104680px;}
.y8a{bottom:944.105865px;}
.yb5{bottom:944.106750px;}
.y148{bottom:945.891115px;}
.y1ed{bottom:947.593894px;}
.y80{bottom:947.595094px;}
.y120{bottom:948.356869px;}
.y1ab{bottom:949.717867px;}
.yb4{bottom:950.739900px;}
.y221{bottom:952.865428px;}
.y3{bottom:960.943762px;}
.y251{bottom:961.795716px;}
.y4d{bottom:963.579375px;}
.y89{bottom:963.580560px;}
.y7f{bottom:964.092487px;}
.y147{bottom:964.600081px;}
.ye7{bottom:965.536275px;}
.y1ec{bottom:967.067250px;}
.y11f{bottom:967.151034px;}
.y1aa{bottom:968.426833px;}
.y7e{bottom:980.589881px;}
.y1eb{bottom:981.354272px;}
.y4c{bottom:983.138070px;}
.y88{bottom:983.139255px;}
.y11e{bottom:985.860000px;}
.y220{bottom:986.540607px;}
.y146{bottom:987.135799px;}
.y1a9{bottom:987.220998px;}
.ye6{bottom:992.579250px;}
.y7d{bottom:997.087275px;}
.y2{bottom:998.446950px;}
.y1ea{bottom:1000.827628px;}
.y4b{bottom:1002.612765px;}
.y87{bottom:1002.613950px;}
.y11d{bottom:1004.654166px;}
.y86{bottom:1009.246950px;}
.y1a8{bottom:1009.671518px;}
.y1a7{bottom:1010.691505px;}
.y145{bottom:1012.817878px;}
.y1a6{bottom:1013.498270px;}
.y7c{bottom:1013.584669px;}
.y1e9{bottom:1015.114650px;}
.y4a{bottom:1022.087460px;}
.y11c{bottom:1023.363132px;}
.y7b{bottom:1030.082062px;}
.y1e8{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y144{bottom:1038.585156px;}
.y49{bottom:1041.562154px;}
.y119{bottom:1045.898556px;}
.y11b{bottom:1045.898850px;}
.y7a{bottom:1046.579456px;}
.y1e7{bottom:1048.789829px;}
.y11a{bottom:1051.256400px;}
.y48{bottom:1061.120850px;}
.y79{bottom:1063.076850px;}
.y118{bottom:1070.390250px;}
.y78{bottom:1118.692500px;}
.h12{height:23.580315px;}
.h4{height:26.528462px;}
.hd{height:26.917308px;}
.hc{height:28.477152px;}
.h13{height:28.827495px;}
.h17{height:33.503581px;}
.ha{height:34.943563px;}
.h11{height:35.375558px;}
.h9{height:35.615555px;}
.h3{height:39.798000px;}
.h8{height:42.720427px;}
.h1b{height:42.734409px;}
.h1c{height:42.751445px;}
.h16{height:42.752950px;}
.h1{height:43.247459px;}
.h1d{height:43.250160px;}
.h1e{height:43.256647px;}
.h18{height:44.730641px;}
.hf{height:45.000450px;}
.h10{height:45.002159px;}
.h1a{height:47.961000px;}
.h19{height:48.810590px;}
.h6{height:51.357000px;}
.h7{height:53.063558px;}
.h15{height:53.268332px;}
.he{height:53.272529px;}
.h14{height:53.290108px;}
.hb{height:64.871459px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:54.000000px;}
.x13{left:71.433000px;}
.x12{left:84.018900px;}
.x39{left:164.806615px;}
.x3a{left:282.755541px;}
.x1{left:300.018750px;}
.x38{left:301.038512px;}
.x3c{left:306.651900px;}
.x33{left:308.352600px;}
.x14{left:317.963429px;}
.x3d{left:331.483190px;}
.x24{left:345.259800px;}
.x25{left:351.382500px;}
.x26{left:386.333700px;}
.x27{left:392.541600px;}
.xa{left:400.195200px;}
.xb{left:405.807750px;}
.x2{left:412.015650px;}
.x37{left:414.819890px;}
.x35{left:424.003375px;}
.x3{left:425.962050px;}
.x1d{left:430.724250px;}
.x1e{left:433.700700px;}
.x23{left:476.645702px;}
.x28{left:485.404650px;}
.x29{left:491.612400px;}
.x1f{left:498.160500px;}
.x20{left:501.051750px;}
.x1b{left:507.429750px;}
.xc{left:510.066000px;}
.xd{left:515.678550px;}
.x1c{left:522.056550px;}
.x16{left:530.560500px;}
.x4{left:543.996750px;}
.x5{left:549.609300px;}
.x15{left:557.603100px;}
.x21{left:560.239200px;}
.x22{left:566.447100px;}
.x36{left:598.334796px;}
.x34{left:602.925938px;}
.xe{left:603.949500px;}
.xf{left:609.562050px;}
.x31{left:627.760500px;}
.x3b{left:662.113998px;}
.x6{left:668.069100px;}
.x7{left:673.681650px;}
.x2a{left:703.615500px;}
.x2b{left:708.802950px;}
.x19{left:719.943150px;}
.x2c{left:722.409300px;}
.x17{left:725.470650px;}
.x2d{left:727.596750px;}
.x1a{left:728.617200px;}
.x18{left:740.012400px;}
.x10{left:741.968250px;}
.x2e{left:746.390250px;}
.x32{left:764.418750px;}
.x8{left:781.341450px;}
.x2f{left:785.253300px;}
.x9{left:786.954150px;}
.x30{left:793.757250px;}
@media print{
.v2{vertical-align:-19.350933pt;}
.v3{vertical-align:-13.604348pt;}
.v5{vertical-align:-3.626621pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.187060pt;}
.v4{vertical-align:13.605867pt;}
.v1{vertical-align:19.353759pt;}
.ls2c{letter-spacing:-0.752008pt;}
.ls2d{letter-spacing:-0.730674pt;}
.ls30{letter-spacing:-0.688007pt;}
.ls2b{letter-spacing:-0.682673pt;}
.ls2f{letter-spacing:-0.656007pt;}
.ls2e{letter-spacing:-0.629340pt;}
.ls8{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.008533pt;}
.lsa{letter-spacing:0.010667pt;}
.ls32{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.026667pt;}
.ls4a{letter-spacing:0.029866pt;}
.ls3{letter-spacing:0.030400pt;}
.ls3c{letter-spacing:0.032000pt;}
.ls48{letter-spacing:0.034133pt;}
.ls9{letter-spacing:0.038395pt;}
.ls39{letter-spacing:0.051199pt;}
.ls15{letter-spacing:0.053334pt;}
.ls20{letter-spacing:0.064289pt;}
.ls4c{letter-spacing:0.072532pt;}
.ls26{letter-spacing:0.072650pt;}
.lsc{letter-spacing:0.080001pt;}
.ls47{letter-spacing:0.085332pt;}
.ls22{letter-spacing:0.086583pt;}
.ls49{letter-spacing:0.102399pt;}
.ls2a{letter-spacing:0.112001pt;}
.ls4b{letter-spacing:0.136532pt;}
.ls40{letter-spacing:0.149335pt;}
.lsb{letter-spacing:0.154668pt;}
.ls35{letter-spacing:0.176002pt;}
.ls1c{letter-spacing:0.190200pt;}
.ls18{letter-spacing:0.190632pt;}
.ls24{letter-spacing:0.191710pt;}
.ls34{letter-spacing:0.192002pt;}
.lse{letter-spacing:0.314670pt;}
.ls33{letter-spacing:0.320003pt;}
.ls17{letter-spacing:0.357337pt;}
.ls25{letter-spacing:2.444800pt;}
.ls3e{letter-spacing:2.498933pt;}
.ls14{letter-spacing:2.619344pt;}
.ls1f{letter-spacing:2.747200pt;}
.ls3d{letter-spacing:2.801333pt;}
.ls27{letter-spacing:2.849888pt;}
.ls43{letter-spacing:8.366829pt;}
.ls45{letter-spacing:8.669758pt;}
.ls2{letter-spacing:9.104953pt;}
.ls36{letter-spacing:9.343883pt;}
.ls7{letter-spacing:9.378016pt;}
.ls6{letter-spacing:10.508267pt;}
.ls5{letter-spacing:11.111200pt;}
.ls28{letter-spacing:11.301446pt;}
.ls29{letter-spacing:11.354780pt;}
.ls16{letter-spacing:11.360114pt;}
.ls4{letter-spacing:11.415200pt;}
.ls11{letter-spacing:11.552116pt;}
.ls12{letter-spacing:11.642783pt;}
.lsd{letter-spacing:11.653450pt;}
.ls46{letter-spacing:11.693963pt;}
.ls3a{letter-spacing:11.763053pt;}
.ls1e{letter-spacing:11.845452pt;}
.ls10{letter-spacing:11.856119pt;}
.ls31{letter-spacing:11.946786pt;}
.lsf{letter-spacing:11.957453pt;}
.ls41{letter-spacing:11.975707pt;}
.ls3b{letter-spacing:12.010517pt;}
.ls38{letter-spacing:12.065983pt;}
.ls13{letter-spacing:14.411877pt;}
.ls1d{letter-spacing:14.538667pt;}
.ls21{letter-spacing:14.641888pt;}
.ls23{letter-spacing:14.642421pt;}
.ls1a{letter-spacing:14.869482pt;}
.ls19{letter-spacing:17.363488pt;}
.ls1{letter-spacing:18.474436pt;}
.ls0{letter-spacing:18.777365pt;}
.ls44{letter-spacing:214.273588pt;}
.ls3f{letter-spacing:265.204152pt;}
.ls42{letter-spacing:307.699620pt;}
.ws130{word-spacing:-201.149486pt;}
.wsd9{word-spacing:-11.696117pt;}
.wsc1{word-spacing:-11.408114pt;}
.ws30{word-spacing:-9.420682pt;}
.ws187{word-spacing:-9.386549pt;}
.ws154{word-spacing:-0.063999pt;}
.ws54{word-spacing:-0.053334pt;}
.ws1b{word-spacing:-0.050667pt;}
.ws6{word-spacing:-0.048000pt;}
.ws17{word-spacing:-0.042666pt;}
.ws4f{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.698674pt;}
.ws15d{word-spacing:8.217497pt;}
.ws16e{word-spacing:8.383895pt;}
.ws48{word-spacing:8.528960pt;}
.ws49{word-spacing:8.575893pt;}
.ws8b{word-spacing:8.622826pt;}
.ws4a{word-spacing:8.627092pt;}
.ws183{word-spacing:8.631359pt;}
.ws38{word-spacing:8.661225pt;}
.ws35{word-spacing:8.665492pt;}
.ws89{word-spacing:8.669758pt;}
.ws165{word-spacing:8.703891pt;}
.ws15e{word-spacing:8.729491pt;}
.ws32{word-spacing:8.733757pt;}
.ws18f{word-spacing:8.738024pt;}
.ws18c{word-spacing:8.742291pt;}
.ws8a{word-spacing:8.750824pt;}
.ws3d{word-spacing:8.755091pt;}
.ws4b{word-spacing:8.759357pt;}
.ws189{word-spacing:8.763624pt;}
.ws16b{word-spacing:8.767890pt;}
.ws4c{word-spacing:8.772157pt;}
.ws3c{word-spacing:8.776424pt;}
.ws10{word-spacing:8.780690pt;}
.ws3a{word-spacing:8.784957pt;}
.ws15{word-spacing:8.789223pt;}
.ws37{word-spacing:8.793490pt;}
.ws15f{word-spacing:8.797757pt;}
.ws168{word-spacing:8.802023pt;}
.ws18d{word-spacing:8.806290pt;}
.ws18b{word-spacing:8.810557pt;}
.ws44{word-spacing:8.814823pt;}
.ws39{word-spacing:8.819090pt;}
.ws8e{word-spacing:8.823356pt;}
.ws13{word-spacing:8.827623pt;}
.ws16c{word-spacing:8.831890pt;}
.ws33{word-spacing:8.836156pt;}
.ws191{word-spacing:8.840423pt;}
.ws185{word-spacing:8.851141pt;}
.ws81{word-spacing:8.853223pt;}
.ws180{word-spacing:8.857489pt;}
.ws164{word-spacing:8.861756pt;}
.ws47{word-spacing:8.866023pt;}
.ws43{word-spacing:8.870289pt;}
.ws173{word-spacing:8.878822pt;}
.wsda{word-spacing:8.895889pt;}
.wsd{word-spacing:8.900155pt;}
.ws17a{word-spacing:8.904422pt;}
.ws3b{word-spacing:8.908689pt;}
.ws4e{word-spacing:8.917222pt;}
.ws8d{word-spacing:8.921488pt;}
.ws106{word-spacing:8.925755pt;}
.ws40{word-spacing:8.930022pt;}
.ws16d{word-spacing:8.934288pt;}
.ws34{word-spacing:8.938555pt;}
.ws181{word-spacing:8.947088pt;}
.ws125{word-spacing:8.951355pt;}
.ws42{word-spacing:8.959888pt;}
.ws46{word-spacing:8.968421pt;}
.ws16a{word-spacing:8.976954pt;}
.ws178{word-spacing:8.981221pt;}
.ws170{word-spacing:8.985488pt;}
.ws8c{word-spacing:8.989754pt;}
.ws13a{word-spacing:8.994021pt;}
.ws15c{word-spacing:8.998288pt;}
.ws162{word-spacing:9.002554pt;}
.ws14{word-spacing:9.006821pt;}
.ws45{word-spacing:9.011087pt;}
.ws186{word-spacing:9.023887pt;}
.ws166{word-spacing:9.028154pt;}
.wsc{word-spacing:9.032420pt;}
.ws17d{word-spacing:9.036687pt;}
.ws2f{word-spacing:9.045220pt;}
.ws31{word-spacing:9.049487pt;}
.ws84{word-spacing:9.053753pt;}
.ws160{word-spacing:9.062287pt;}
.ws86{word-spacing:9.066553pt;}
.wsf{word-spacing:9.079353pt;}
.ws182{word-spacing:9.087886pt;}
.ws17b{word-spacing:9.092153pt;}
.ws161{word-spacing:9.096420pt;}
.ws87{word-spacing:9.100686pt;}
.ws158{word-spacing:9.109219pt;}
.ws193{word-spacing:9.122019pt;}
.wse{word-spacing:9.126286pt;}
.ws15b{word-spacing:9.130553pt;}
.ws15a{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws179{word-spacing:9.143352pt;}
.ws17c{word-spacing:9.147619pt;}
.ws167{word-spacing:9.160419pt;}
.ws16f{word-spacing:9.164685pt;}
.ws83{word-spacing:9.168952pt;}
.ws11{word-spacing:9.173219pt;}
.ws190{word-spacing:9.177485pt;}
.ws177{word-spacing:9.181752pt;}
.ws163{word-spacing:9.186019pt;}
.ws176{word-spacing:9.190285pt;}
.ws171{word-spacing:9.194552pt;}
.ws188{word-spacing:9.198818pt;}
.ws159{word-spacing:9.203085pt;}
.ws172{word-spacing:9.232951pt;}
.ws36{word-spacing:9.241484pt;}
.ws107{word-spacing:9.254284pt;}
.wsdb{word-spacing:9.262818pt;}
.ws3f{word-spacing:9.267084pt;}
.ws18a{word-spacing:9.271351pt;}
.ws41{word-spacing:9.284151pt;}
.ws82{word-spacing:9.288417pt;}
.ws192{word-spacing:9.296950pt;}
.ws3e{word-spacing:9.301217pt;}
.ws85{word-spacing:9.305484pt;}
.ws16{word-spacing:9.331083pt;}
.ws12{word-spacing:9.335350pt;}
.ws175{word-spacing:9.339617pt;}
.ws17f{word-spacing:9.360950pt;}
.ws17e{word-spacing:9.365216pt;}
.ws184{word-spacing:9.390816pt;}
.ws4d{word-spacing:9.399349pt;}
.ws88{word-spacing:9.403616pt;}
.ws174{word-spacing:9.450549pt;}
.ws18e{word-spacing:9.527348pt;}
.ws5{word-spacing:10.353600pt;}
.wsb9{word-spacing:10.357437pt;}
.ws9{word-spacing:10.387200pt;}
.wsa{word-spacing:10.416000pt;}
.wsae{word-spacing:10.442771pt;}
.wsb7{word-spacing:10.458771pt;}
.ws8{word-spacing:10.502400pt;}
.wsb1{word-spacing:10.517439pt;}
.wsb{word-spacing:10.545600pt;}
.ws7{word-spacing:10.574400pt;}
.wsb6{word-spacing:10.597439pt;}
.ws2a{word-spacing:10.609600pt;}
.wsc6{word-spacing:10.645440pt;}
.wsc0{word-spacing:10.656107pt;}
.wsbe{word-spacing:10.746774pt;}
.wsb4{word-spacing:10.794775pt;}
.wsbf{word-spacing:10.848108pt;}
.wsb2{word-spacing:10.896109pt;}
.ws1f{word-spacing:10.898400pt;}
.ws14d{word-spacing:10.906776pt;}
.ws29{word-spacing:10.913600pt;}
.ws148{word-spacing:10.917443pt;}
.ws14b{word-spacing:10.922776pt;}
.ws26{word-spacing:10.969333pt;}
.ws25{word-spacing:10.984533pt;}
.ws147{word-spacing:10.992110pt;}
.wsc4{word-spacing:10.997443pt;}
.wsb3{word-spacing:11.018777pt;}
.ws145{word-spacing:11.040110pt;}
.ws1d{word-spacing:11.050400pt;}
.wsb5{word-spacing:11.050777pt;}
.ws21{word-spacing:11.055467pt;}
.ws1c{word-spacing:11.060533pt;}
.ws19{word-spacing:11.065600pt;}
.wsb0{word-spacing:11.066777pt;}
.wsad{word-spacing:11.072111pt;}
.ws18{word-spacing:11.075733pt;}
.ws14c{word-spacing:11.114778pt;}
.ws14a{word-spacing:11.120111pt;}
.ws20{word-spacing:11.126400pt;}
.ws1e{word-spacing:11.182133pt;}
.wsba{word-spacing:11.200112pt;}
.ws22{word-spacing:11.207467pt;}
.ws27{word-spacing:11.212533pt;}
.wsbb{word-spacing:11.216112pt;}
.ws151{word-spacing:11.264113pt;}
.ws1a{word-spacing:11.288533pt;}
.ws9a{word-spacing:11.306780pt;}
.ws146{word-spacing:11.312113pt;}
.wsbc{word-spacing:11.322780pt;}
.wse7{word-spacing:11.323592pt;}
.ws63{word-spacing:11.344113pt;}
.ws108{word-spacing:11.349191pt;}
.ws7b{word-spacing:11.349447pt;}
.ws28{word-spacing:11.359467pt;}
.ws24{word-spacing:11.369600pt;}
.ws11b{word-spacing:11.396124pt;}
.ws11d{word-spacing:11.400391pt;}
.ws90{word-spacing:11.408114pt;}
.wsdd{word-spacing:11.413191pt;}
.wsf5{word-spacing:11.417457pt;}
.ws23{word-spacing:11.425333pt;}
.wsdf{word-spacing:11.434524pt;}
.ws75{word-spacing:11.440114pt;}
.ws110{word-spacing:11.443057pt;}
.wse9{word-spacing:11.447324pt;}
.ws137{word-spacing:11.472115pt;}
.wsdc{word-spacing:11.472923pt;}
.ws101{word-spacing:11.481456pt;}
.ws77{word-spacing:11.498782pt;}
.ws10c{word-spacing:11.507056pt;}
.ws138{word-spacing:11.509448pt;}
.ws10f{word-spacing:11.511323pt;}
.ws149{word-spacing:11.514782pt;}
.ws105{word-spacing:11.519856pt;}
.wsa6{word-spacing:11.520115pt;}
.ws93{word-spacing:11.525449pt;}
.wsd2{word-spacing:11.530782pt;}
.ws99{word-spacing:11.536115pt;}
.ws6b{word-spacing:11.541449pt;}
.wse4{word-spacing:11.545456pt;}
.ws121{word-spacing:11.549722pt;}
.wsa5{word-spacing:11.552116pt;}
.wsfd{word-spacing:11.553989pt;}
.wsa2{word-spacing:11.557449pt;}
.ws11f{word-spacing:11.562522pt;}
.ws64{word-spacing:11.562782pt;}
.ws6e{word-spacing:11.568116pt;}
.wsfe{word-spacing:11.571055pt;}
.wsa7{word-spacing:11.573449pt;}
.ws52{word-spacing:11.578782pt;}
.wsf8{word-spacing:11.583855pt;}
.ws65{word-spacing:11.589449pt;}
.ws9f{word-spacing:11.594783pt;}
.ws5a{word-spacing:11.600116pt;}
.ws5c{word-spacing:11.605449pt;}
.ws6d{word-spacing:11.610783pt;}
.wsaa{word-spacing:11.616116pt;}
.ws115{word-spacing:11.617988pt;}
.ws9c{word-spacing:11.621450pt;}
.ws10e{word-spacing:11.626521pt;}
.ws5b{word-spacing:11.626783pt;}
.wsab{word-spacing:11.632116pt;}
.ws2b{word-spacing:11.637450pt;}
.ws2d{word-spacing:11.648116pt;}
.ws56{word-spacing:11.653450pt;}
.ws14e{word-spacing:11.656884pt;}
.ws144{word-spacing:11.658783pt;}
.ws14f{word-spacing:11.664117pt;}
.ws66{word-spacing:11.669450pt;}
.ws59{word-spacing:11.674783pt;}
.ws100{word-spacing:11.681987pt;}
.ws150{word-spacing:11.690784pt;}
.wsa0{word-spacing:11.696117pt;}
.wsfa{word-spacing:11.699054pt;}
.ws10a{word-spacing:11.703320pt;}
.ws80{word-spacing:11.706784pt;}
.wsa4{word-spacing:11.712117pt;}
.ws5f{word-spacing:11.717451pt;}
.ws2e{word-spacing:11.722784pt;}
.ws139{word-spacing:11.728117pt;}
.wse5{word-spacing:11.733187pt;}
.wsa9{word-spacing:11.733451pt;}
.ws69{word-spacing:11.738784pt;}
.wsa3{word-spacing:11.744117pt;}
.ws2c{word-spacing:11.749451pt;}
.ws55{word-spacing:11.754784pt;}
.wsfb{word-spacing:11.758786pt;}
.ws7e{word-spacing:11.760118pt;}
.wsd8{word-spacing:11.765451pt;}
.wsca{word-spacing:11.770784pt;}
.wsf0{word-spacing:11.771586pt;}
.ws53{word-spacing:11.776118pt;}
.ws132{word-spacing:11.781451pt;}
.ws104{word-spacing:11.784386pt;}
.wsd6{word-spacing:11.786785pt;}
.wscf{word-spacing:11.792118pt;}
.ws76{word-spacing:11.797451pt;}
.ws5d{word-spacing:11.802785pt;}
.wsd0{word-spacing:11.808118pt;}
.ws51{word-spacing:11.813451pt;}
.ws61{word-spacing:11.818785pt;}
.ws124{word-spacing:11.824118pt;}
.ws70{word-spacing:11.829452pt;}
.wsde{word-spacing:11.831319pt;}
.ws68{word-spacing:11.834785pt;}
.wsa1{word-spacing:11.840118pt;}
.ws156{word-spacing:11.845452pt;}
.ws9b{word-spacing:11.856119pt;}
.ws9e{word-spacing:11.861452pt;}
.ws57{word-spacing:11.866785pt;}
.ws7a{word-spacing:11.882785pt;}
.wsd3{word-spacing:11.888119pt;}
.ws7f{word-spacing:11.893452pt;}
.wscb{word-spacing:11.898786pt;}
.ws94{word-spacing:11.904119pt;}
.ws50{word-spacing:11.909452pt;}
.wsc5{word-spacing:11.914786pt;}
.ws73{word-spacing:11.920119pt;}
.ws7d{word-spacing:11.925453pt;}
.ws8f{word-spacing:11.930786pt;}
.ws6c{word-spacing:11.936119pt;}
.ws91{word-spacing:11.941453pt;}
.wse2{word-spacing:11.946517pt;}
.ws7c{word-spacing:11.946786pt;}
.ws5e{word-spacing:11.952120pt;}
.ws133{word-spacing:11.957453pt;}
.wsa8{word-spacing:11.962786pt;}
.ws60{word-spacing:11.968120pt;}
.ws74{word-spacing:11.973453pt;}
.ws11e{word-spacing:11.976384pt;}
.ws136{word-spacing:11.978786pt;}
.ws78{word-spacing:11.994787pt;}
.ws11c{word-spacing:11.997717pt;}
.wsd1{word-spacing:12.000120pt;}
.wse1{word-spacing:12.001983pt;}
.wscd{word-spacing:12.005453pt;}
.ws67{word-spacing:12.010787pt;}
.ws6f{word-spacing:12.016120pt;}
.wsf6{word-spacing:12.019050pt;}
.ws79{word-spacing:12.021454pt;}
.ws92{word-spacing:12.026787pt;}
.wsd4{word-spacing:12.032120pt;}
.ws62{word-spacing:12.037454pt;}
.wsc8{word-spacing:12.042787pt;}
.ws97{word-spacing:12.058787pt;}
.wseb{word-spacing:12.061716pt;}
.ws96{word-spacing:12.074787pt;}
.ws6a{word-spacing:12.080121pt;}
.wsc7{word-spacing:12.085454pt;}
.ws152{word-spacing:12.090788pt;}
.ws134{word-spacing:12.096121pt;}
.wsc2{word-spacing:12.117455pt;}
.ws143{word-spacing:12.122788pt;}
.ws135{word-spacing:12.128121pt;}
.ws95{word-spacing:12.160122pt;}
.ws153{word-spacing:12.170788pt;}
.wsd5{word-spacing:12.181455pt;}
.wsd7{word-spacing:12.213455pt;}
.wsce{word-spacing:12.304123pt;}
.ws58{word-spacing:12.320123pt;}
.wsc3{word-spacing:12.330790pt;}
.wscc{word-spacing:12.474791pt;}
.wsaf{word-spacing:12.581459pt;}
.ws98{word-spacing:13.747085pt;}
.ws155{word-spacing:13.798285pt;}
.wsac{word-spacing:13.849485pt;}
.ws9d{word-spacing:13.868684pt;}
.wsc9{word-spacing:13.926284pt;}
.ws72{word-spacing:13.945484pt;}
.ws71{word-spacing:13.983883pt;}
.wsbd{word-spacing:14.092683pt;}
.ws123{word-spacing:14.150282pt;}
.ws1{word-spacing:23.264116pt;}
.ws2{word-spacing:23.306783pt;}
.ws3{word-spacing:23.317450pt;}
.ws4{word-spacing:23.477451pt;}
.ws157{word-spacing:53.174802pt;}
.ws169{word-spacing:53.208935pt;}
.ws117{word-spacing:173.309834pt;}
.ws128{word-spacing:182.986513pt;}
.ws109{word-spacing:188.238714pt;}
.ws10d{word-spacing:196.861539pt;}
.ws126{word-spacing:198.218322pt;}
.ws12a{word-spacing:206.538218pt;}
.ws13d{word-spacing:211.103495pt;}
.ws13b{word-spacing:211.709354pt;}
.ws140{word-spacing:224.108132pt;}
.ws131{word-spacing:230.089924pt;}
.ws122{word-spacing:231.933101pt;}
.ws13e{word-spacing:231.967234pt;}
.ws141{word-spacing:234.185873pt;}
.ws13f{word-spacing:237.552231pt;}
.ws12f{word-spacing:241.609780pt;}
.ws13c{word-spacing:246.989979pt;}
.ws10b{word-spacing:255.484806pt;}
.ws127{word-spacing:265.161485pt;}
.ws142{word-spacing:299.802119pt;}
.wsea{word-spacing:531.116561pt;}
.wse8{word-spacing:548.601142pt;}
.wsee{word-spacing:733.191902pt;}
.wsed{word-spacing:741.639796pt;}
.wsec{word-spacing:754.972963pt;}
.wsf4{word-spacing:798.513752pt;}
.wsf1{word-spacing:800.732391pt;}
.wsf3{word-spacing:805.510998pt;}
.ws129{word-spacing:829.071236pt;}
.ws120{word-spacing:830.658417pt;}
.ws111{word-spacing:861.727895pt;}
.ws118{word-spacing:942.836214pt;}
.ws12c{word-spacing:1031.321508pt;}
.ws12b{word-spacing:1039.769403pt;}
.ws114{word-spacing:1063.973900pt;}
.ws113{word-spacing:1072.421795pt;}
.ws112{word-spacing:1085.264301pt;}
.ws12e{word-spacing:1096.643358pt;}
.ws12d{word-spacing:1098.861997pt;}
.ws11a{word-spacing:1129.295750pt;}
.ws116{word-spacing:1131.514389pt;}
.ws119{word-spacing:1136.292996pt;}
.ws102{word-spacing:1166.278755pt;}
.wsf2{word-spacing:1278.529085pt;}
.wsf7{word-spacing:1305.387416pt;}
.wse6{word-spacing:1320.201097pt;}
.ws103{word-spacing:1360.413928pt;}
.wse0{word-spacing:1388.838106pt;}
.wsfc{word-spacing:1408.187197pt;}
.wsef{word-spacing:1415.747636pt;}
.wse3{word-spacing:1421.191835pt;}
.wsff{word-spacing:1444.167548pt;}
.wsf9{word-spacing:1449.914676pt;}
._55{margin-left:-265.204152pt;}
._54{margin-left:-16.328329pt;}
._d{margin-left:-12.153925pt;}
._f{margin-left:-10.938776pt;}
._6{margin-left:-9.378016pt;}
._9{margin-left:-4.326346pt;}
._a{margin-left:-2.807432pt;}
._0{margin-left:-1.877343pt;}
._8{margin-left:-0.964255pt;}
._2{width:0.896800pt;}
._7{width:8.076732pt;}
._5e{width:9.156185pt;}
._1{width:10.180172pt;}
._e{width:11.125445pt;}
._3{width:12.195467pt;}
._b{width:13.130007pt;}
._c{width:14.943875pt;}
._5f{width:17.446182pt;}
._10{width:18.777365pt;}
._4{width:41.373349pt;}
._22{width:173.194635pt;}
._46{width:183.174244pt;}
._29{width:196.601276pt;}
._4c{width:206.580884pt;}
._5b{width:224.018533pt;}
._5c{width:232.009900pt;}
._2c{width:237.151169pt;}
._58{width:241.697893pt;}
._5a{width:246.627317pt;}
._4a{width:248.875822pt;}
._2b{width:255.527473pt;}
._26{width:260.702875pt;}
._4e{width:265.204152pt;}
._3f{width:272.222731pt;}
._57{width:294.234189pt;}
._42{width:295.774436pt;}
._50{width:305.280451pt;}
._30{width:319.326142pt;}
._4b{width:329.301484pt;}
._43{width:388.999937pt;}
._56{width:391.457507pt;}
._23{width:398.412086pt;}
._47{width:418.068374pt;}
._21{width:424.485361pt;}
._45{width:427.510389pt;}
._16{width:467.522689pt;}
._24{width:532.959738pt;}
._48{width:535.980500pt;}
._17{width:578.365037pt;}
._19{width:619.529322pt;}
._18{width:689.808977pt;}
._11{width:745.863743pt;}
._4d{width:765.682162pt;}
._31{width:798.338821pt;}
._28{width:814.658617pt;}
._3a{width:843.880651pt;}
._39{width:846.961179pt;}
._4f{width:876.490377pt;}
._36{width:893.812827pt;}
._53{width:895.515206pt;}
._32{width:909.147036pt;}
._3d{width:912.346996pt;}
._40{width:926.460952pt;}
._41{width:928.167598pt;}
._49{width:943.698070pt;}
._35{width:950.021191pt;}
._37{width:969.156952pt;}
._2f{width:976.354729pt;}
._2e{width:984.141298pt;}
._51{width:987.934317pt;}
._25{width:999.317642pt;}
._33{width:1020.590976pt;}
._2d{width:1023.837869pt;}
._44{width:1043.989083pt;}
._59{width:1047.150644pt;}
._27{width:1053.260434pt;}
._3b{width:1072.609526pt;}
._3e{width:1075.694287pt;}
._20{width:1076.645742pt;}
._52{width:1078.156123pt;}
._34{width:1080.169964pt;}
._2a{width:1085.614163pt;}
._3c{width:1108.589876pt;}
._38{width:1114.337004pt;}
._13{width:1151.601638pt;}
._1c{width:1179.449823pt;}
._1b{width:1182.282854pt;}
._1a{width:1229.411832pt;}
._1f{width:1244.071916pt;}
._1e{width:1248.261730pt;}
._1d{width:1311.151610pt;}
._15{width:1312.277996pt;}
._12{width:1334.809981pt;}
._14{width:1359.458207pt;}
._5d{width:1560.778357pt;}
._5{width:1584.364195pt;}
.fsb{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fsa{font-size:31.998933pt;}
.fs8{font-size:35.552000pt;}
.fs9{font-size:37.332800pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.000000pt;}
.y110{bottom:110.655240pt;}
.y77{bottom:110.659146pt;}
.yb3{bottom:110.662693pt;}
.ye5{bottom:110.663040pt;}
.y1e6{bottom:110.663333pt;}
.y27{bottom:110.663960pt;}
.y47{bottom:110.670373pt;}
.y1d2{bottom:111.188213pt;}
.y21f{bottom:115.654033pt;}
.y117{bottom:119.280027pt;}
.y1e5{bottom:123.362908pt;}
.y46{bottom:125.334723pt;}
.y10f{bottom:127.966080pt;}
.y76{bottom:127.969986pt;}
.yb2{bottom:127.973533pt;}
.ye4{bottom:127.973880pt;}
.y26{bottom:127.974800pt;}
.y183{bottom:127.975026pt;}
.y1d1{bottom:128.499053pt;}
.y21e{bottom:132.963684pt;}
.y1e4{bottom:135.986750pt;}
.y116{bottom:136.590866pt;}
.y45{bottom:139.999073pt;}
.y250{bottom:140.976758pt;}
.y10e{bottom:145.351587pt;}
.y75{bottom:145.355493pt;}
.y182{bottom:145.356054pt;}
.yb1{bottom:145.359040pt;}
.ye3{bottom:145.359387pt;}
.y21d{bottom:145.663258pt;}
.y1d0{bottom:145.884560pt;}
.y25{bottom:150.652000pt;}
.y1e3{bottom:153.296400pt;}
.y24f{bottom:153.600601pt;}
.y115{bottom:153.976373pt;}
.y44{bottom:154.663424pt;}
.y21c{bottom:158.287100pt;}
.y10d{bottom:162.662427pt;}
.y74{bottom:162.666333pt;}
.y181{bottom:162.666894pt;}
.yb0{bottom:162.669880pt;}
.ye2{bottom:162.670227pt;}
.y1cf{bottom:163.195400pt;}
.y1e2{bottom:165.995975pt;}
.y170{bottom:170.153666pt;}
.y24e{bottom:170.985983pt;}
.y114{bottom:171.287213pt;}
.y21b{bottom:175.596751pt;}
.y43{bottom:177.340473pt;}
.ye0{bottom:177.788933pt;}
.y10c{bottom:179.973266pt;}
.y1a5{bottom:179.973839pt;}
.y73{bottom:179.977173pt;}
.y180{bottom:179.977733pt;}
.ydf{bottom:179.979573pt;}
.yaf{bottom:179.980720pt;}
.ye1{bottom:179.981067pt;}
.y1ce{bottom:180.506239pt;}
.y1e1{bottom:183.306692pt;}
.y24d{bottom:183.609825pt;}
.y21a{bottom:188.296325pt;}
.y113{bottom:188.598053pt;}
.y16f{bottom:190.790208pt;}
.y42{bottom:192.004823pt;}
.y1e0{bottom:196.006266pt;}
.y10b{bottom:197.358774pt;}
.y1a4{bottom:197.359347pt;}
.y72{bottom:197.362680pt;}
.y17f{bottom:197.363241pt;}
.yde{bottom:197.365081pt;}
.yae{bottom:197.366227pt;}
.y1cd{bottom:197.891747pt;}
.y24c{bottom:200.995208pt;}
.y219{bottom:200.995900pt;}
.y112{bottom:205.983560pt;}
.y41{bottom:206.669173pt;}
.y16e{bottom:207.420400pt;}
.yac{bottom:212.409333pt;}
.y1df{bottom:213.315917pt;}
.y24b{bottom:213.619050pt;}
.y10a{bottom:214.669613pt;}
.y1a3{bottom:214.670186pt;}
.y71{bottom:214.673520pt;}
.yab{bottom:214.673733pt;}
.y17e{bottom:214.674080pt;}
.ydd{bottom:214.675920pt;}
.yad{bottom:214.677067pt;}
.y1cc{bottom:215.202586pt;}
.y218{bottom:218.305550pt;}
.y40{bottom:221.333523pt;}
.y111{bottom:223.294400pt;}
.y16d{bottom:224.112877pt;}
.y1de{bottom:226.015491pt;}
.y24a{bottom:230.928701pt;}
.y217{bottom:230.929392pt;}
.y109{bottom:231.980453pt;}
.y1a2{bottom:231.981026pt;}
.y70{bottom:231.984360pt;}
.yaa{bottom:231.984573pt;}
.y17d{bottom:231.984920pt;}
.ydc{bottom:231.986760pt;}
.y1cb{bottom:232.513426pt;}
.y3f{bottom:235.997873pt;}
.y1dd{bottom:238.639333pt;}
.y24{bottom:239.550133pt;}
.y16c{bottom:240.743069pt;}
.y249{bottom:243.628275pt;}
.y216{bottom:243.628967pt;}
.yda{bottom:247.105467pt;}
.y108{bottom:249.291293pt;}
.y1a1{bottom:249.291866pt;}
.y6f{bottom:249.295199pt;}
.ya9{bottom:249.295413pt;}
.y17c{bottom:249.295760pt;}
.ydb{bottom:249.297600pt;}
.yd9{bottom:249.297826pt;}
.y1ca{bottom:249.898933pt;}
.y3e{bottom:250.662224pt;}
.y248{bottom:256.327850pt;}
.y1dc{bottom:256.629867pt;}
.y16b{bottom:257.448994pt;}
.y23{bottom:258.220800pt;}
.y143{bottom:260.711433pt;}
.y215{bottom:260.938617pt;}
.yd7{bottom:264.415600pt;}
.y3d{bottom:265.326574pt;}
.y107{bottom:266.676800pt;}
.y1a0{bottom:266.677373pt;}
.y6e{bottom:266.680706pt;}
.ya8{bottom:266.680920pt;}
.y17b{bottom:266.681267pt;}
.yd6{bottom:266.682760pt;}
.yd8{bottom:266.683333pt;}
.y1c9{bottom:267.209773pt;}
.y247{bottom:273.637500pt;}
.y214{bottom:273.638192pt;}
.y16a{bottom:274.079186pt;}
.y22{bottom:276.891467pt;}
.y3c{bottom:279.990924pt;}
.yd4{bottom:281.801467pt;}
.y106{bottom:283.987640pt;}
.y19f{bottom:283.988213pt;}
.y6d{bottom:283.991546pt;}
.ya7{bottom:283.991760pt;}
.y17a{bottom:283.992107pt;}
.yd3{bottom:283.992911pt;}
.yd5{bottom:283.993600pt;}
.y1c8{bottom:284.520613pt;}
.y142{bottom:284.673800pt;}
.y246{bottom:286.261342pt;}
.y213{bottom:286.262034pt;}
.y169{bottom:290.785111pt;}
.y21{bottom:295.486133pt;}
.y1db{bottom:297.069880pt;}
.y141{bottom:300.699200pt;}
.y105{bottom:301.298480pt;}
.y19e{bottom:301.299053pt;}
.y6c{bottom:301.302386pt;}
.ya6{bottom:301.302600pt;}
.y179{bottom:301.302947pt;}
.y1c7{bottom:301.831453pt;}
.y3b{bottom:302.667973pt;}
.y245{bottom:303.646725pt;}
.y212{bottom:303.647417pt;}
.y140{bottom:305.385733pt;}
.y168{bottom:307.415303pt;}
.yd2{bottom:312.868820pt;}
.y20{bottom:314.156800pt;}
.y1da{bottom:314.380720pt;}
.y244{bottom:316.270567pt;}
.y211{bottom:316.271259pt;}
.y3a{bottom:317.332323pt;}
.y104{bottom:318.683987pt;}
.y19d{bottom:318.684560pt;}
.y6b{bottom:318.687893pt;}
.ya5{bottom:318.688107pt;}
.y178{bottom:318.688454pt;}
.y1c6{bottom:319.216960pt;}
.y167{bottom:324.121227pt;}
.y13f{bottom:326.314076pt;}
.y1d9{bottom:331.766227pt;}
.y39{bottom:331.996673pt;}
.y1f{bottom:332.827467pt;}
.y243{bottom:333.655950pt;}
.y210{bottom:333.656641pt;}
.yd0{bottom:335.244000pt;}
.y103{bottom:335.994827pt;}
.y19c{bottom:335.995400pt;}
.y6a{bottom:335.998733pt;}
.ya4{bottom:335.998947pt;}
.y177{bottom:335.999294pt;}
.y1c5{bottom:336.527800pt;}
.ycf{bottom:337.511160pt;}
.yd1{bottom:337.511733pt;}
.y166{bottom:340.751419pt;}
.y13e{bottom:343.020000pt;}
.y242{bottom:346.279792pt;}
.y20f{bottom:346.280484pt;}
.y38{bottom:346.661024pt;}
.y1d8{bottom:349.077067pt;}
.y1e{bottom:351.498133pt;}
.y102{bottom:353.305666pt;}
.y19b{bottom:353.306239pt;}
.y69{bottom:353.309573pt;}
.ya3{bottom:353.309786pt;}
.y176{bottom:353.310133pt;}
.y1c4{bottom:353.838639pt;}
.yce{bottom:354.822000pt;}
.y165{bottom:357.457344pt;}
.y20e{bottom:358.980058pt;}
.y13d{bottom:359.650192pt;}
.y37{bottom:361.325374pt;}
.y241{bottom:363.589442pt;}
.y1d{bottom:370.168800pt;}
.y101{bottom:370.691174pt;}
.y19a{bottom:370.691747pt;}
.y68{bottom:370.695080pt;}
.ya2{bottom:370.695294pt;}
.y1c3{bottom:371.224147pt;}
.y26e{bottom:371.604142pt;}
.y1d7{bottom:371.754267pt;}
.y164{bottom:374.087536pt;}
.y175{bottom:375.987200pt;}
.y36{bottom:375.989724pt;}
.y240{bottom:376.289017pt;}
.y20d{bottom:376.289709pt;}
.y13c{bottom:376.355050pt;}
.ycd{bottom:377.499067pt;}
.y26d{bottom:384.303717pt;}
.y100{bottom:388.002013pt;}
.y199{bottom:388.002586pt;}
.y67{bottom:388.005920pt;}
.ya1{bottom:388.006133pt;}
.y1c2{bottom:388.534986pt;}
.y1c{bottom:388.839467pt;}
.y23f{bottom:388.988592pt;}
.y20c{bottom:388.989283pt;}
.y163{bottom:390.793460pt;}
.y13b{bottom:392.985242pt;}
.y35{bottom:398.666773pt;}
.y20b{bottom:401.613125pt;}
.y26c{bottom:401.613367pt;}
.yff{bottom:405.312853pt;}
.y198{bottom:405.313426pt;}
.y66{bottom:405.316759pt;}
.y1c1{bottom:405.845826pt;}
.y23e{bottom:406.299308pt;}
.y162{bottom:407.423653pt;}
.y1b{bottom:407.510133pt;}
.y13a{bottom:409.691167pt;}
.ya0{bottom:410.683333pt;}
.y1d6{bottom:412.119253pt;}
.y26b{bottom:414.312942pt;}
.ycc{bottom:414.988453pt;}
.y20a{bottom:418.922776pt;}
.y23d{bottom:418.923151pt;}
.y34{bottom:421.343823pt;}
.yfe{bottom:422.698360pt;}
.y197{bottom:422.698933pt;}
.y64{bottom:422.702267pt;}
.y1c0{bottom:423.224441pt;}
.y161{bottom:424.129577pt;}
.y1a{bottom:426.180800pt;}
.y139{bottom:426.321359pt;}
.y174{bottom:427.690280pt;}
.y65{bottom:428.598267pt;}
.y1d5{bottom:429.430093pt;}
.y209{bottom:431.622350pt;}
.y26a{bottom:431.622592pt;}
.ycb{bottom:432.373960pt;}
.y23c{bottom:436.306492pt;}
.yfd{bottom:440.009200pt;}
.y196{bottom:440.009773pt;}
.y1bf{bottom:440.535280pt;}
.y160{bottom:440.759769pt;}
.y138{bottom:443.027283pt;}
.y33{bottom:444.020873pt;}
.y208{bottom:444.321925pt;}
.y269{bottom:444.322167pt;}
.y19{bottom:444.851467pt;}
.y173{bottom:445.001120pt;}
.y63{bottom:445.303400pt;}
.y1d4{bottom:446.815600pt;}
.y9f{bottom:448.928227pt;}
.y23b{bottom:448.930334pt;}
.yca{bottom:449.684800pt;}
.yfc{bottom:457.320040pt;}
.y195{bottom:457.320613pt;}
.y15f{bottom:457.465694pt;}
.y1be{bottom:457.846120pt;}
.y137{bottom:459.657475pt;}
.y207{bottom:461.631575pt;}
.y268{bottom:461.631817pt;}
.y172{bottom:462.386627pt;}
.y18{bottom:463.522133pt;}
.y9e{bottom:466.239067pt;}
.y23a{bottom:466.315716pt;}
.y32{bottom:466.697923pt;}
.yc9{bottom:466.995640pt;}
.y62{bottom:469.341600pt;}
.y1d3{bottom:469.492800pt;}
.y15e{bottom:474.095886pt;}
.y206{bottom:474.331150pt;}
.y267{bottom:474.331391pt;}
.yfb{bottom:474.630880pt;}
.y194{bottom:474.631453pt;}
.y1bd{bottom:475.231627pt;}
.y136{bottom:476.363400pt;}
.y239{bottom:478.939559pt;}
.y171{bottom:479.697467pt;}
.y31{bottom:481.362273pt;}
.y17{bottom:482.192800pt;}
.y9d{bottom:483.624574pt;}
.yc8{bottom:484.381147pt;}
.y15d{bottom:490.801810pt;}
.y238{bottom:491.639133pt;}
.y205{bottom:491.640200pt;}
.y266{bottom:491.641042pt;}
.yfa{bottom:492.016387pt;}
.y193{bottom:492.016960pt;}
.y1bc{bottom:492.542467pt;}
.y135{bottom:492.993592pt;}
.y16{bottom:500.863467pt;}
.y9c{bottom:500.935414pt;}
.yc7{bottom:501.691987pt;}
.y30{bottom:504.039323pt;}
.y204{bottom:504.264042pt;}
.y265{bottom:504.264884pt;}
.y15c{bottom:507.432002pt;}
.y237{bottom:508.948784pt;}
.yf9{bottom:509.327227pt;}
.y192{bottom:509.327800pt;}
.y134{bottom:509.699517pt;}
.y61{bottom:509.850200pt;}
.y1bb{bottom:509.853307pt;}
.y9b{bottom:518.246253pt;}
.y2f{bottom:518.703673pt;}
.yc6{bottom:519.002827pt;}
.y15{bottom:519.534133pt;}
.y184{bottom:520.131577pt;}
.y236{bottom:521.648358pt;}
.y203{bottom:521.649425pt;}
.y264{bottom:521.650267pt;}
.y15b{bottom:524.137927pt;}
.y133{bottom:526.329709pt;}
.yf8{bottom:526.638066pt;}
.y191{bottom:526.638639pt;}
.y60{bottom:527.161039pt;}
.y1ba{bottom:527.164147pt;}
.y2e{bottom:533.368023pt;}
.y235{bottom:534.272200pt;}
.y202{bottom:534.273267pt;}
.y9a{bottom:535.631761pt;}
.yc5{bottom:536.313666pt;}
.y14{bottom:538.204800pt;}
.y15a{bottom:540.768119pt;}
.y132{bottom:543.035633pt;}
.yf7{bottom:544.023573pt;}
.y190{bottom:544.024147pt;}
.y5f{bottom:544.546547pt;}
.y1b9{bottom:544.549654pt;}
.y263{bottom:546.972842pt;}
.y2d{bottom:548.032373pt;}
.y234{bottom:551.657583pt;}
.y201{bottom:551.658650pt;}
.y99{bottom:552.942600pt;}
.yc4{bottom:553.699173pt;}
.y13{bottom:556.875467pt;}
.y159{bottom:557.474044pt;}
.y131{bottom:559.665825pt;}
.yf6{bottom:561.334413pt;}
.y18f{bottom:561.334986pt;}
.y5e{bottom:561.857386pt;}
.y1b8{bottom:561.860494pt;}
.y2c{bottom:562.696723pt;}
.y233{bottom:564.281425pt;}
.y200{bottom:564.282492pt;}
.y98{bottom:570.253440pt;}
.yc3{bottom:571.010013pt;}
.y158{bottom:574.104236pt;}
.y130{bottom:576.371750pt;}
.y262{bottom:576.982066pt;}
.y2b{bottom:577.361073pt;}
.yf5{bottom:578.645253pt;}
.y18e{bottom:578.645826pt;}
.y5d{bottom:579.168226pt;}
.y1b7{bottom:579.171333pt;}
.y232{bottom:581.592142pt;}
.y1ff{bottom:581.593209pt;}
.y12{bottom:586.204533pt;}
.y97{bottom:587.564280pt;}
.yc2{bottom:588.320853pt;}
.y261{bottom:589.605909pt;}
.y157{bottom:590.810160pt;}
.y12f{bottom:593.001942pt;}
.y231{bottom:594.291717pt;}
.y1fe{bottom:594.292783pt;}
.yf4{bottom:596.030760pt;}
.y18d{bottom:596.031333pt;}
.y5c{bottom:596.553733pt;}
.y1b6{bottom:596.556841pt;}
.y2a{bottom:599.206133pt;}
.y96{bottom:604.949787pt;}
.yc1{bottom:605.706360pt;}
.y260{bottom:606.991291pt;}
.y156{bottom:607.440352pt;}
.y12e{bottom:609.632134pt;}
.y230{bottom:611.601367pt;}
.y1fd{bottom:611.602434pt;}
.yf3{bottom:613.341600pt;}
.y5b{bottom:613.864573pt;}
.y1b5{bottom:613.867680pt;}
.y18c{bottom:618.632933pt;}
.y25f{bottom:619.615133pt;}
.y95{bottom:622.260627pt;}
.yc0{bottom:623.016494pt;}
.y155{bottom:624.146277pt;}
.y22f{bottom:624.300942pt;}
.y1fc{bottom:624.302008pt;}
.y12d{bottom:626.338059pt;}
.y5a{bottom:631.175413pt;}
.y1b4{bottom:631.178520pt;}
.y25e{bottom:632.314708pt;}
.yf2{bottom:636.018667pt;}
.y94{bottom:639.571467pt;}
.ybf{bottom:640.327333pt;}
.y154{bottom:640.776469pt;}
.y22e{bottom:641.611659pt;}
.y1fb{bottom:641.612725pt;}
.y11{bottom:642.219733pt;}
.y12c{bottom:642.968251pt;}
.y59{bottom:648.560920pt;}
.y1b3{bottom:648.564027pt;}
.y25d{bottom:649.624358pt;}
.y22d{bottom:654.311233pt;}
.y1fa{bottom:654.312300pt;}
.y153{bottom:657.482393pt;}
.y12b{bottom:659.674175pt;}
.y18b{bottom:662.020027pt;}
.y93{bottom:662.248667pt;}
.y25c{bottom:662.323933pt;}
.ybe{bottom:663.004533pt;}
.y58{bottom:665.871760pt;}
.y1b2{bottom:665.874867pt;}
.y22c{bottom:666.935075pt;}
.y1f9{bottom:666.936142pt;}
.y10{bottom:668.827401pt;}
.y152{bottom:674.112586pt;}
.y12a{bottom:676.304367pt;}
.y18a{bottom:679.405534pt;}
.yf1{bottom:679.630841pt;}
.y25b{bottom:679.633583pt;}
.yf{bottom:682.206433pt;}
.y57{bottom:683.182600pt;}
.y1b1{bottom:683.185707pt;}
.y22b{bottom:684.320458pt;}
.y1f8{bottom:684.321525pt;}
.y151{bottom:690.818510pt;}
.y25a{bottom:692.257425pt;}
.y129{bottom:693.010292pt;}
.ye{bottom:695.509734pt;}
.y189{bottom:696.716373pt;}
.yf0{bottom:696.941680pt;}
.y22a{bottom:696.944300pt;}
.y1f7{bottom:696.945367pt;}
.y56{bottom:700.493439pt;}
.y92{bottom:700.494493pt;}
.ybd{bottom:700.495280pt;}
.y1b0{bottom:700.496547pt;}
.y150{bottom:707.448702pt;}
.yd{bottom:708.888767pt;}
.y128{bottom:709.640484pt;}
.y259{bottom:709.642808pt;}
.y229{bottom:709.643875pt;}
.y1f6{bottom:709.644941pt;}
.y29{bottom:712.969867pt;}
.y188{bottom:714.027213pt;}
.yef{bottom:714.252520pt;}
.y55{bottom:717.878947pt;}
.y91{bottom:717.880000pt;}
.ybc{bottom:717.880787pt;}
.y1af{bottom:717.882054pt;}
.yc{bottom:722.192067pt;}
.y258{bottom:722.266650pt;}
.y14f{bottom:724.078894pt;}
.y127{bottom:726.346408pt;}
.y228{bottom:726.953525pt;}
.y1f5{bottom:726.954592pt;}
.y187{bottom:731.412720pt;}
.yee{bottom:731.563360pt;}
.y54{bottom:735.189786pt;}
.y90{bottom:735.190840pt;}
.ybb{bottom:735.191627pt;}
.y1ae{bottom:735.192894pt;}
.yb{bottom:735.496434pt;}
.y257{bottom:739.652033pt;}
.y227{bottom:739.653100pt;}
.y1f4{bottom:739.654166pt;}
.y14e{bottom:740.784819pt;}
.y126{bottom:742.976601pt;}
.y186{bottom:748.723560pt;}
.ya{bottom:748.875467pt;}
.yed{bottom:748.948867pt;}
.y256{bottom:752.275875pt;}
.y53{bottom:752.500626pt;}
.y8f{bottom:752.501680pt;}
.yba{bottom:752.502466pt;}
.y226{bottom:756.962750pt;}
.y1f3{bottom:756.963817pt;}
.y14d{bottom:757.415011pt;}
.y125{bottom:759.682525pt;}
.y85{bottom:760.972300pt;}
.y255{bottom:764.975450pt;}
.y185{bottom:766.034400pt;}
.yec{bottom:766.259707pt;}
.y1f2{bottom:769.663391pt;}
.y52{bottom:769.886133pt;}
.y8e{bottom:769.887187pt;}
.yb9{bottom:769.887973pt;}
.y9{bottom:772.837600pt;}
.y7{bottom:772.838133pt;}
.y14c{bottom:774.120935pt;}
.y225{bottom:774.273467pt;}
.y84{bottom:775.636650pt;}
.y124{bottom:776.312717pt;}
.y8{bottom:778.204533pt;}
.y254{bottom:782.286167pt;}
.yeb{bottom:783.570547pt;}
.y1f1{bottom:786.973041pt;}
.y51{bottom:787.196973pt;}
.y8d{bottom:787.198027pt;}
.yb8{bottom:787.198813pt;}
.y5{bottom:787.502133pt;}
.y14b{bottom:790.751128pt;}
.y6{bottom:792.869200pt;}
.y123{bottom:793.018642pt;}
.y253{bottom:794.985741pt;}
.y83{bottom:798.313700pt;}
.y1f0{bottom:799.596884pt;}
.yea{bottom:800.956054pt;}
.y224{bottom:804.282692pt;}
.y50{bottom:804.507813pt;}
.y8c{bottom:804.508866pt;}
.yb7{bottom:804.509653pt;}
.y1ad{bottom:806.851193pt;}
.y14a{bottom:807.455985pt;}
.y122{bottom:809.648834pt;}
.y1ef{bottom:812.296458pt;}
.y82{bottom:812.978050pt;}
.y223{bottom:816.982266pt;}
.ye9{bottom:818.266894pt;}
.y4{bottom:820.836067pt;}
.y4f{bottom:821.893320pt;}
.y8b{bottom:821.894373pt;}
.yb6{bottom:821.895160pt;}
.y149{bottom:824.086178pt;}
.y252{bottom:824.996033pt;}
.y121{bottom:826.353692pt;}
.y1ac{bottom:827.487735pt;}
.y81{bottom:827.642400pt;}
.y1ee{bottom:829.606109pt;}
.y222{bottom:834.291917pt;}
.ye8{bottom:835.577733pt;}
.y4e{bottom:839.204160pt;}
.y8a{bottom:839.205213pt;}
.yb5{bottom:839.206000pt;}
.y148{bottom:840.792102pt;}
.y1ed{bottom:842.305683pt;}
.y80{bottom:842.306750pt;}
.y120{bottom:842.983884pt;}
.y1ab{bottom:844.193660pt;}
.yb4{bottom:845.102133pt;}
.y221{bottom:846.991491pt;}
.y3{bottom:854.172233pt;}
.y251{bottom:854.929525pt;}
.y4d{bottom:856.515000pt;}
.y89{bottom:856.516053pt;}
.y7f{bottom:856.971100pt;}
.y147{bottom:857.422294pt;}
.ye7{bottom:858.254467pt;}
.y1ec{bottom:859.615333pt;}
.y11f{bottom:859.689808pt;}
.y1aa{bottom:860.823852pt;}
.y7e{bottom:871.635450pt;}
.y1eb{bottom:872.314908pt;}
.y4c{bottom:873.900507pt;}
.y88{bottom:873.901560pt;}
.y11e{bottom:876.320000pt;}
.y220{bottom:876.924984pt;}
.y146{bottom:877.454044pt;}
.y1a9{bottom:877.529776pt;}
.ye6{bottom:882.292667pt;}
.y7d{bottom:886.299800pt;}
.y2{bottom:887.508400pt;}
.y1ea{bottom:889.624558pt;}
.y4b{bottom:891.211347pt;}
.y87{bottom:891.212400pt;}
.y11d{bottom:893.025925pt;}
.y86{bottom:897.108400pt;}
.y1a8{bottom:897.485793pt;}
.y1a7{bottom:898.392449pt;}
.y145{bottom:900.282558pt;}
.y1a6{bottom:900.887351pt;}
.y7c{bottom:900.964150pt;}
.y1e9{bottom:902.324133pt;}
.y4a{bottom:908.522186pt;}
.y11c{bottom:909.656117pt;}
.y7b{bottom:915.628500pt;}
.y1e8{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y144{bottom:923.186805pt;}
.y49{bottom:925.833026pt;}
.y119{bottom:929.687605pt;}
.y11b{bottom:929.687867pt;}
.y7a{bottom:930.292850pt;}
.y1e7{bottom:932.257625pt;}
.y11a{bottom:934.450133pt;}
.y48{bottom:943.218533pt;}
.y79{bottom:944.957200pt;}
.y118{bottom:951.458000pt;}
.y78{bottom:994.393333pt;}
.h12{height:20.960280pt;}
.h4{height:23.580855pt;}
.hd{height:23.926496pt;}
.hc{height:25.313024pt;}
.h13{height:25.624440pt;}
.h17{height:29.780961pt;}
.ha{height:31.060945pt;}
.h11{height:31.444940pt;}
.h9{height:31.658271pt;}
.h3{height:35.376000pt;}
.h8{height:37.973713pt;}
.h1b{height:37.986142pt;}
.h1c{height:38.001284pt;}
.h16{height:38.002622pt;}
.h1{height:38.442186pt;}
.h1d{height:38.444587pt;}
.h1e{height:38.450353pt;}
.h18{height:39.760570pt;}
.hf{height:40.000400pt;}
.h10{height:40.001919pt;}
.h1a{height:42.632000pt;}
.h19{height:43.387191pt;}
.h6{height:45.650667pt;}
.h7{height:47.167607pt;}
.h15{height:47.349629pt;}
.he{height:47.353359pt;}
.h14{height:47.368985pt;}
.hb{height:57.663519pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:48.000000pt;}
.x13{left:63.496000pt;}
.x12{left:74.683467pt;}
.x39{left:146.494769pt;}
.x3a{left:251.338258pt;}
.x1{left:266.683333pt;}
.x38{left:267.589788pt;}
.x3c{left:272.579467pt;}
.x33{left:274.091200pt;}
.x14{left:282.634160pt;}
.x3d{left:294.651724pt;}
.x24{left:306.897600pt;}
.x25{left:312.340000pt;}
.x26{left:343.407733pt;}
.x27{left:348.925867pt;}
.xa{left:355.729067pt;}
.xb{left:360.718000pt;}
.x2{left:366.236133pt;}
.x37{left:368.728791pt;}
.x35{left:376.891889pt;}
.x3{left:378.632933pt;}
.x1d{left:382.866000pt;}
.x1e{left:385.511733pt;}
.x23{left:423.685068pt;}
.x28{left:431.470800pt;}
.x29{left:436.988800pt;}
.x1f{left:442.809333pt;}
.x20{left:445.379333pt;}
.x1b{left:451.048667pt;}
.xc{left:453.392000pt;}
.xd{left:458.380933pt;}
.x1c{left:464.050267pt;}
.x16{left:471.609333pt;}
.x4{left:483.552667pt;}
.x5{left:488.541600pt;}
.x15{left:495.647200pt;}
.x21{left:497.990400pt;}
.x22{left:503.508533pt;}
.x36{left:531.853152pt;}
.x34{left:535.934167pt;}
.xe{left:536.844000pt;}
.xf{left:541.832933pt;}
.x31{left:558.009333pt;}
.x3b{left:588.545776pt;}
.x6{left:593.839200pt;}
.x7{left:598.828133pt;}
.x2a{left:625.436000pt;}
.x2b{left:630.047067pt;}
.x19{left:639.949467pt;}
.x2c{left:642.141600pt;}
.x17{left:644.862800pt;}
.x2d{left:646.752667pt;}
.x1a{left:647.659733pt;}
.x18{left:657.788800pt;}
.x10{left:659.527333pt;}
.x2e{left:663.458000pt;}
.x32{left:679.483333pt;}
.x8{left:694.525733pt;}
.x2f{left:698.002933pt;}
.x9{left:699.514800pt;}
.x30{left:705.562000pt;}
}




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