
    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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.fff{font-family:fff;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.154000;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_4d12e44049098f78855e7b36.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.154000;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_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.154000;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:ff23;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.154000;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:ff24;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.154000;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:ff25;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.154000;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:ff26;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.154000;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:ff27;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.154000;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:ff28;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.154000;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:ff29;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.154000;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:ff2a;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.154000;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:ff2b;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.154000;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:ff2c;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.154000;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:ff2d;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.154000;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:ff2e;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.154000;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:ff2f;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.154000;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:ff30;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.154000;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:ff31;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.154000;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:ff32;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.154000;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:ff33;src:url('chunks/assets/font_4d12e44049098f78855e7b36.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.154000;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:ff34;src:url('chunks/assets/font_a58f508b5eeaf83314b5d79b.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.154000;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);}
.v5{vertical-align:-19.975800px;}
.v6{vertical-align:-17.872800px;}
.v4{vertical-align:-15.769800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.770400px;}
.v1{vertical-align:17.872800px;}
.v3{vertical-align:19.976357px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060534px;}
.ls16{letter-spacing:0.083531px;}
.ls17{letter-spacing:0.083653px;}
.ls7{letter-spacing:0.121068px;}
.ls6{letter-spacing:0.181602px;}
.ls13{letter-spacing:0.302670px;}
.lsd{letter-spacing:0.423738px;}
.ls5{letter-spacing:0.484272px;}
.ls14{letter-spacing:0.544806px;}
.ls3{letter-spacing:13.273656px;}
.ls1{letter-spacing:13.274256px;}
.ls0{letter-spacing:15.044424px;}
.ls4{letter-spacing:15.045600px;}
.ls12{letter-spacing:16.666392px;}
.ls18{letter-spacing:16.719491px;}
.ls15{letter-spacing:19.591829px;}
.lsb{letter-spacing:25.646856px;}
.ls9{letter-spacing:26.279256px;}
.ls10{letter-spacing:26.408856px;}
.ls11{letter-spacing:26.414856px;}
.ls8{letter-spacing:26.521056px;}
.lsc{letter-spacing:26.562456px;}
.lsf{letter-spacing:26.563056px;}
.lse{letter-spacing:40.387056px;}
.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;}
}
.ws9{word-spacing:-63.811222px;}
.wsb{word-spacing:-63.789431px;}
.ws8{word-spacing:-63.788284px;}
.wsa{word-spacing:-63.748143px;}
.wsc{word-spacing:-63.718323px;}
.ws7{word-spacing:-63.690798px;}
.ws6{word-spacing:-63.671300px;}
.ws64{word-spacing:-50.606424px;}
.ws4{word-spacing:-50.424822px;}
.ws10{word-spacing:-45.116946px;}
.ws21e{word-spacing:-39.809070px;}
.wsf{word-spacing:-37.814868px;}
.ws196{word-spacing:-35.392490px;}
.ws41{word-spacing:-35.374013px;}
.ws248{word-spacing:-35.142408px;}
.ws18f{word-spacing:-35.110931px;}
.ws250{word-spacing:-35.085506px;}
.ws111{word-spacing:-35.044949px;}
.ws249{word-spacing:-35.040711px;}
.ws24a{word-spacing:-34.987441px;}
.ws24b{word-spacing:-34.980177px;}
.ws10e{word-spacing:-34.707774px;}
.ws209{word-spacing:-34.678113px;}
.ws224{word-spacing:-34.619395px;}
.ws10f{word-spacing:-34.616368px;}
.ws4e{word-spacing:-34.615157px;}
.ws100{word-spacing:-34.613341px;}
.ws18c{word-spacing:-34.607288px;}
.ws68{word-spacing:-34.601234px;}
.ws1a7{word-spacing:-34.595181px;}
.ws1f8{word-spacing:-34.583074px;}
.ws153{word-spacing:-34.578837px;}
.wsd3{word-spacing:-34.558861px;}
.ws159{word-spacing:-34.557045px;}
.wsbf{word-spacing:-34.556439px;}
.ws84{word-spacing:-34.555834px;}
.wsc2{word-spacing:-34.553413px;}
.ws83{word-spacing:-34.552807px;}
.ws158{word-spacing:-34.550386px;}
.ws131{word-spacing:-34.531620px;}
.ws9e{word-spacing:-34.529199px;}
.ws95{word-spacing:-34.521935px;}
.ws1c2{word-spacing:-34.511644px;}
.wse4{word-spacing:-34.509828px;}
.ws114{word-spacing:-34.503169px;}
.ws204{word-spacing:-34.500748px;}
.wsd2{word-spacing:-34.500143px;}
.ws9f{word-spacing:-34.494695px;}
.ws23e{word-spacing:-34.493484px;}
.ws1e{word-spacing:-34.490457px;}
.ws24f{word-spacing:-34.485009px;}
.ws104{word-spacing:-34.480166px;}
.ws22f{word-spacing:-34.474113px;}
.ws18e{word-spacing:-34.469270px;}
.ws82{word-spacing:-34.468060px;}
.ws207{word-spacing:-34.466244px;}
.wsa0{word-spacing:-34.464428px;}
.ws197{word-spacing:-34.463822px;}
.wsdb{word-spacing:-34.455953px;}
.ws12a{word-spacing:-34.451110px;}
.ws278{word-spacing:-34.443846px;}
.ws245{word-spacing:-34.443241px;}
.ws236{word-spacing:-34.442030px;}
.ws107{word-spacing:-34.438398px;}
.ws120{word-spacing:-34.437793px;}
.ws21{word-spacing:-34.435977px;}
.ws56{word-spacing:-34.434766px;}
.wsc4{word-spacing:-34.433555px;}
.ws142{word-spacing:-34.419632px;}
.ws1cb{word-spacing:-34.416000px;}
.ws1b4{word-spacing:-34.413579px;}
.ws20{word-spacing:-34.409947px;}
.ws9a{word-spacing:-34.408131px;}
.wsd5{word-spacing:-34.407526px;}
.ws215{word-spacing:-34.403288px;}
.ws113{word-spacing:-34.401472px;}
.wsad{word-spacing:-34.400262px;}
.wsc7{word-spacing:-34.394813px;}
.wsf4{word-spacing:-34.394208px;}
.wsa2{word-spacing:-34.391787px;}
.ws24e{word-spacing:-34.390576px;}
.ws1fb{word-spacing:-34.389365px;}
.wsa1{word-spacing:-34.376653px;}
.ws206{word-spacing:-34.374837px;}
.ws89{word-spacing:-34.371811px;}
.ws144{word-spacing:-34.369995px;}
.ws27b{word-spacing:-34.369389px;}
.ws25f{word-spacing:-34.354256px;}
.ws1f2{word-spacing:-34.350018px;}
.wsd8{word-spacing:-34.346992px;}
.ws212{word-spacing:-34.339728px;}
.ws1b9{word-spacing:-34.334885px;}
.ws87{word-spacing:-34.334279px;}
.ws1bf{word-spacing:-34.331858px;}
.wse2{word-spacing:-34.325805px;}
.wse3{word-spacing:-34.323989px;}
.ws11a{word-spacing:-34.320962px;}
.ws163{word-spacing:-34.318541px;}
.wsbe{word-spacing:-34.310671px;}
.ws20f{word-spacing:-34.307039px;}
.ws1ba{word-spacing:-34.305828px;}
.ws244{word-spacing:-34.305223px;}
.ws1c0{word-spacing:-34.304618px;}
.ws257{word-spacing:-34.302802px;}
.wsdd{word-spacing:-34.298564px;}
.ws134{word-spacing:-34.297354px;}
.wsf6{word-spacing:-34.293116px;}
.ws112{word-spacing:-34.287063px;}
.wsf0{word-spacing:-34.286458px;}
.ws57{word-spacing:-34.281615px;}
.ws195{word-spacing:-34.281010px;}
.ws252{word-spacing:-34.277983px;}
.ws5e{word-spacing:-34.276167px;}
.ws194{word-spacing:-34.274956px;}
.ws115{word-spacing:-34.274351px;}
.ws91{word-spacing:-34.260428px;}
.wsbc{word-spacing:-34.254375px;}
.ws11f{word-spacing:-34.250137px;}
.ws152{word-spacing:-34.239241px;}
.ws1ab{word-spacing:-34.238030px;}
.ws151{word-spacing:-34.236214px;}
.ws8f{word-spacing:-34.235609px;}
.ws1f{word-spacing:-34.231372px;}
.ws176{word-spacing:-34.217449px;}
.ws1af{word-spacing:-34.216844px;}
.ws17a{word-spacing:-34.210790px;}
.ws177{word-spacing:-34.203526px;}
.ws179{word-spacing:-34.201710px;}
.ws1be{word-spacing:-34.194446px;}
.wsca{word-spacing:-34.180523px;}
.ws147{word-spacing:-34.177496px;}
.ws10b{word-spacing:-34.172654px;}
.ws1f9{word-spacing:-34.165390px;}
.ws11e{word-spacing:-34.153283px;}
.wsb2{word-spacing:-34.147229px;}
.ws1f5{word-spacing:-34.136939px;}
.ws211{word-spacing:-34.136333px;}
.ws9d{word-spacing:-34.131491px;}
.wsb3{word-spacing:-34.129069px;}
.ws14f{word-spacing:-34.122410px;}
.ws279{word-spacing:-34.120594px;}
.ws48{word-spacing:-34.113936px;}
.ws161{word-spacing:-34.110909px;}
.ws274{word-spacing:-34.109698px;}
.ws20b{word-spacing:-34.101829px;}
.ws208{word-spacing:-34.099408px;}
.ws12f{word-spacing:-34.097592px;}
.ws12e{word-spacing:-34.095170px;}
.ws12d{word-spacing:-34.092749px;}
.ws28{word-spacing:-34.080642px;}
.wscc{word-spacing:-34.078221px;}
.ws7e{word-spacing:-34.062482px;}
.ws123{word-spacing:-34.061876px;}
.ws78{word-spacing:-34.056428px;}
.ws1c7{word-spacing:-34.041900px;}
.ws1bd{word-spacing:-34.037663px;}
.ws148{word-spacing:-34.008001px;}
.ws133{word-spacing:-34.006185px;}
.ws90{word-spacing:-33.997105px;}
.ws1b8{word-spacing:-33.995894px;}
.wse9{word-spacing:-33.989841px;}
.wsc0{word-spacing:-33.980761px;}
.ws101{word-spacing:-33.977734px;}
.ws232{word-spacing:-33.971681px;}
.ws156{word-spacing:-33.963811px;}
.wsea{word-spacing:-33.963206px;}
.ws137{word-spacing:-33.950494px;}
.ws49{word-spacing:-33.946862px;}
.ws54{word-spacing:-33.943230px;}
.ws22a{word-spacing:-33.935360px;}
.ws14c{word-spacing:-33.920227px;}
.wse5{word-spacing:-33.918411px;}
.ws81{word-spacing:-33.917200px;}
.ws135{word-spacing:-33.913568px;}
.ws108{word-spacing:-33.911147px;}
.ws23c{word-spacing:-33.909331px;}
.ws25e{word-spacing:-33.908725px;}
.ws1a3{word-spacing:-33.899040px;}
.wsda{word-spacing:-33.892987px;}
.ws198{word-spacing:-33.890565px;}
.ws254{word-spacing:-33.888749px;}
.ws77{word-spacing:-33.886933px;}
.ws256{word-spacing:-33.882696px;}
.ws1f4{word-spacing:-33.882090px;}
.wsd9{word-spacing:-33.880880px;}
.ws22d{word-spacing:-33.880606px;}
.ws19e{word-spacing:-33.877248px;}
.ws1bc{word-spacing:-33.875432px;}
.ws234{word-spacing:-33.874826px;}
.wse6{word-spacing:-33.861509px;}
.ws97{word-spacing:-33.859693px;}
.wsc3{word-spacing:-33.852429px;}
.wsb1{word-spacing:-33.850613px;}
.ws96{word-spacing:-33.849927px;}
.ws1c8{word-spacing:-33.846981px;}
.wsd0{word-spacing:-33.846375px;}
.wsa3{word-spacing:-33.845165px;}
.ws2a{word-spacing:-33.844559px;}
.wsce{word-spacing:-33.842138px;}
.ws26{word-spacing:-33.838506px;}
.wsae{word-spacing:-33.837901px;}
.ws3c{word-spacing:-33.836460px;}
.ws1ae{word-spacing:-33.833058px;}
.ws65{word-spacing:-33.832453px;}
.ws20e{word-spacing:-33.827005px;}
.ws66{word-spacing:-33.826399px;}
.ws126{word-spacing:-33.823978px;}
.ws99{word-spacing:-33.822767px;}
.wsfd{word-spacing:-33.820346px;}
.wsf9{word-spacing:-33.819740px;}
.ws55{word-spacing:-33.816714px;}
.ws154{word-spacing:-33.804002px;}
.ws76{word-spacing:-33.802186px;}
.ws155{word-spacing:-33.800370px;}
.ws238{word-spacing:-33.791289px;}
.wse8{word-spacing:-33.790079px;}
.ws251{word-spacing:-33.787657px;}
.wsf1{word-spacing:-33.786447px;}
.ws13d{word-spacing:-33.777972px;}
.ws73{word-spacing:-33.771919px;}
.ws25a{word-spacing:-33.769497px;}
.ws1b3{word-spacing:-33.765865px;}
.wsa4{word-spacing:-33.764655px;}
.ws29{word-spacing:-33.759812px;}
.ws94{word-spacing:-33.759206px;}
.wsc8{word-spacing:-33.758601px;}
.ws27a{word-spacing:-33.754969px;}
.ws243{word-spacing:-33.753758px;}
.ws15c{word-spacing:-33.751942px;}
.ws8c{word-spacing:-33.751337px;}
.ws1c9{word-spacing:-33.748310px;}
.ws67{word-spacing:-33.747705px;}
.ws239{word-spacing:-33.728334px;}
.ws1b2{word-spacing:-33.727729px;}
.ws93{word-spacing:-33.726518px;}
.ws143{word-spacing:-33.723491px;}
.wseb{word-spacing:-33.712595px;}
.ws88{word-spacing:-33.705937px;}
.ws166{word-spacing:-33.705331px;}
.ws205{word-spacing:-33.701094px;}
.ws260{word-spacing:-33.700488px;}
.ws14d{word-spacing:-33.699278px;}
.ws22b{word-spacing:-33.697462px;}
.ws237{word-spacing:-33.695646px;}
.ws4d{word-spacing:-33.684144px;}
.wsd1{word-spacing:-33.681118px;}
.wsdf{word-spacing:-33.675064px;}
.ws165{word-spacing:-33.674459px;}
.ws27e{word-spacing:-33.672643px;}
.wsf3{word-spacing:-33.672038px;}
.ws18d{word-spacing:-33.669011px;}
.ws231{word-spacing:-33.662957px;}
.ws160{word-spacing:-33.662352px;}
.ws27d{word-spacing:-33.661141px;}
.ws1ac{word-spacing:-33.656904px;}
.ws15d{word-spacing:-33.655693px;}
.ws98{word-spacing:-33.655088px;}
.ws124{word-spacing:-33.653272px;}
.wsef{word-spacing:-33.652667px;}
.ws10a{word-spacing:-33.652061px;}
.ws58{word-spacing:-33.651456px;}
.ws22{word-spacing:-33.650851px;}
.ws44{word-spacing:-33.650245px;}
.ws25{word-spacing:-33.644797px;}
.ws13b{word-spacing:-33.642981px;}
.ws110{word-spacing:-33.640560px;}
.ws223{word-spacing:-33.638744px;}
.ws12c{word-spacing:-33.638138px;}
.ws72{word-spacing:-33.634506px;}
.ws146{word-spacing:-33.632690px;}
.wscd{word-spacing:-33.632085px;}
.ws116{word-spacing:-33.628453px;}
.ws167{word-spacing:-33.627848px;}
.ws7f{word-spacing:-33.626637px;}
.ws12b{word-spacing:-33.623005px;}
.ws8d{word-spacing:-33.622400px;}
.wsc1{word-spacing:-33.621794px;}
.ws1cc{word-spacing:-33.621189px;}
.wsa5{word-spacing:-33.620584px;}
.ws4a{word-spacing:-33.619373px;}
.wse1{word-spacing:-33.615741px;}
.ws2b{word-spacing:-33.614530px;}
.wsc9{word-spacing:-33.608477px;}
.ws26f{word-spacing:-33.602423px;}
.ws13f{word-spacing:-33.590317px;}
.wsfe{word-spacing:-33.578210px;}
.ws25d{word-spacing:-33.577604px;}
.ws25c{word-spacing:-33.572762px;}
.ws140{word-spacing:-33.572156px;}
.ws13e{word-spacing:-33.566103px;}
.ws5a{word-spacing:-33.565498px;}
.ws61{word-spacing:-33.560050px;}
.ws25b{word-spacing:-33.556418px;}
.ws45{word-spacing:-33.551575px;}
.ws60{word-spacing:-33.547943px;}
.ws46{word-spacing:-33.546732px;}
.ws20c{word-spacing:-33.546127px;}
.ws210{word-spacing:-33.543705px;}
.ws127{word-spacing:-33.539468px;}
.ws10d{word-spacing:-33.538257px;}
.ws149{word-spacing:-33.535836px;}
.ws190{word-spacing:-33.464406px;}
.ws5b{word-spacing:-33.443219px;}
.ws125{word-spacing:-33.342733px;}
.ws8e{word-spacing:-33.339101px;}
.ws218{word-spacing:-33.330020px;}
.wsde{word-spacing:-33.299753px;}
.ws191{word-spacing:-33.284015px;}
.wsbd{word-spacing:-33.276750px;}
.ws193{word-spacing:-33.264644px;}
.ws106{word-spacing:-33.209558px;}
.ws122{word-spacing:-33.118151px;}
.ws19a{word-spacing:-33.106650px;}
.wsa9{word-spacing:-32.948656px;}
.wse7{word-spacing:-32.947446px;}
.ws280{word-spacing:-32.928075px;}
.ws1b7{word-spacing:-32.924443px;}
.ws164{word-spacing:-32.848170px;}
.ws92{word-spacing:-32.834852px;}
.ws19f{word-spacing:-32.802674px;}
.ws1a1{word-spacing:-32.791268px;}
.ws1a2{word-spacing:-32.790057px;}
.ws175{word-spacing:-32.767054px;}
.ws80{word-spacing:-32.742841px;}
.wsf2{word-spacing:-32.727707px;}
.ws24{word-spacing:-32.718627px;}
.ws259{word-spacing:-32.707731px;}
.ws15b{word-spacing:-32.684728px;}
.ws5c{word-spacing:-32.647197px;}
.ws63{word-spacing:-32.633879px;}
.ws109{word-spacing:-32.630853px;}
.wsb0{word-spacing:-32.621773px;}
.wsfc{word-spacing:-32.591506px;}
.wsed{word-spacing:-32.569713px;}
.ws19b{word-spacing:-32.565476px;}
.wsec{word-spacing:-32.544289px;}
.wsc6{word-spacing:-32.534604px;}
.wsee{word-spacing:-32.527340px;}
.ws1eb{word-spacing:-32.521286px;}
.ws11b{word-spacing:-32.518865px;}
.ws1a5{word-spacing:-32.458331px;}
.ws1b1{word-spacing:-32.430485px;}
.ws119{word-spacing:-32.362082px;}
.wsc5{word-spacing:-32.276729px;}
.ws4c{word-spacing:-32.254937px;}
.wsf8{word-spacing:-32.240408px;}
.ws275{word-spacing:-32.233750px;}
.ws222{word-spacing:-32.223459px;}
.ws276{word-spacing:-32.216800px;}
.ws233{word-spacing:-32.216195px;}
.ws75{word-spacing:-32.119340px;}
.ws1bb{word-spacing:-32.113287px;}
.ws14b{word-spacing:-32.046700px;}
.ws189{word-spacing:-32.021881px;}
.ws258{word-spacing:-32.020065px;}
.wscb{word-spacing:-31.999483px;}
.ws128{word-spacing:-31.987982px;}
.ws18b{word-spacing:-31.977691px;}
.ws1c1{word-spacing:-31.971637px;}
.ws214{word-spacing:-31.902629px;}
.ws15f{word-spacing:-31.890522px;}
.wsd6{word-spacing:-31.889311px;}
.ws261{word-spacing:-31.871151px;}
.ws1a4{word-spacing:-31.865098px;}
.wsfb{word-spacing:-31.852991px;}
.ws162{word-spacing:-31.851175px;}
.ws13c{word-spacing:-31.840884px;}
.ws27c{word-spacing:-31.779139px;}
.ws23{word-spacing:-31.756136px;}
.ws19d{word-spacing:-31.739792px;}
.wsff{word-spacing:-31.737976px;}
.ws1c3{word-spacing:-31.708315px;}
.ws23b{word-spacing:-31.642332px;}
.ws71{word-spacing:-31.596327px;}
.ws1c4{word-spacing:-31.589063px;}
.wsbb{word-spacing:-31.577561px;}
.ws1b0{word-spacing:-31.540635px;}
.ws141{word-spacing:-31.489787px;}
.ws188{word-spacing:-31.441360px;}
.ws1f1{word-spacing:-31.407461px;}
.ws203{word-spacing:-31.402618px;}
.ws1e8{word-spacing:-31.393378px;}
.ws247{word-spacing:-31.369929px;}
.ws246{word-spacing:-31.366297px;}
.ws1fa{word-spacing:-31.314238px;}
.ws226{word-spacing:-31.308185px;}
.ws1b5{word-spacing:-31.229491px;}
.ws178{word-spacing:-31.199224px;}
.ws11c{word-spacing:-31.162903px;}
.ws5d{word-spacing:-31.157455px;}
.ws18a{word-spacing:-31.095105px;}
.ws168{word-spacing:-31.059995px;}
.ws1a6{word-spacing:-31.035782px;}
.ws1c5{word-spacing:-30.938322px;}
.ws1e3{word-spacing:-30.917836px;}
.ws20a{word-spacing:-30.908055px;}
.ws1e7{word-spacing:-30.896713px;}
.ws16a{word-spacing:-30.872340px;}
.ws26e{word-spacing:-30.854180px;}
.ws1c6{word-spacing:-30.849337px;}
.ws229{word-spacing:-30.848126px;}
.ws23f{word-spacing:-30.845705px;}
.ws240{word-spacing:-30.843889px;}
.ws1e6{word-spacing:-30.840926px;}
.ws241{word-spacing:-30.832993px;}
.ws1e5{word-spacing:-30.805179px;}
.ws129{word-spacing:-30.791830px;}
.ws23a{word-spacing:-30.790014px;}
.ws1cf{word-spacing:-30.789472px;}
.ws43{word-spacing:-30.785776px;}
.ws42{word-spacing:-30.776696px;}
.ws15a{word-spacing:-30.774275px;}
.ws1e4{word-spacing:-30.754808px;}
.ws14e{word-spacing:-30.721005px;}
.ws1ea{word-spacing:-30.677898px;}
.ws1ec{word-spacing:-30.662733px;}
.wsf7{word-spacing:-30.650786px;}
.wsd4{word-spacing:-30.521243px;}
.ws8a{word-spacing:-30.488554px;}
.ws27f{word-spacing:-30.483712px;}
.ws1f7{word-spacing:-30.481290px;}
.ws62{word-spacing:-30.478869px;}
.ws8b{word-spacing:-30.454050px;}
.ws1ef{word-spacing:-30.408172px;}
.ws1d5{word-spacing:-30.391923px;}
.ws14a{word-spacing:-30.279107px;}
.ws4b{word-spacing:-30.252894px;}
.ws1f0{word-spacing:-30.216438px;}
.ws138{word-spacing:-30.210703px;}
.ws230{word-spacing:-30.200413px;}
.wsa8{word-spacing:-30.194359px;}
.ws50{word-spacing:-30.191333px;}
.ws228{word-spacing:-30.188306px;}
.ws51{word-spacing:-30.185884px;}
.ws132{word-spacing:-30.185279px;}
.ws277{word-spacing:-30.174383px;}
.ws38{word-spacing:-30.120030px;}
.ws39{word-spacing:-30.109739px;}
.ws37{word-spacing:-30.108114px;}
.ws14{word-spacing:-30.106489px;}
.ws3a{word-spacing:-30.104864px;}
.ws0{word-spacing:-30.100531px;}
.ws33{word-spacing:-30.096740px;}
.ws34{word-spacing:-30.095657px;}
.ws1d6{word-spacing:-30.092407px;}
.ws36{word-spacing:-30.090241px;}
.ws16{word-spacing:-30.089699px;}
.ws1c{word-spacing:-30.087533px;}
.ws15{word-spacing:-30.086991px;}
.ws1b{word-spacing:-30.085908px;}
.ws1a{word-spacing:-30.085366px;}
.ws35{word-spacing:-30.084825px;}
.ws19{word-spacing:-30.083741px;}
.ws69{word-spacing:-30.082116px;}
.ws18{word-spacing:-30.081575px;}
.ws3f{word-spacing:-30.080492px;}
.ws3e{word-spacing:-30.079950px;}
.ws40{word-spacing:-30.079408px;}
.ws1{word-spacing:-30.078867px;}
.ws13{word-spacing:-30.076159px;}
.ws11{word-spacing:-30.075956px;}
.ws3d{word-spacing:-30.073450px;}
.ws32{word-spacing:-30.071284px;}
.ws17{word-spacing:-30.070742px;}
.ws3b{word-spacing:-30.070140px;}
.wsa6{word-spacing:-30.018811px;}
.ws15e{word-spacing:-29.983096px;}
.ws136{word-spacing:-29.917113px;}
.ws118{word-spacing:-29.908639px;}
.ws216{word-spacing:-29.879582px;}
.ws130{word-spacing:-29.863238px;}
.ws227{word-spacing:-29.855369px;}
.ws6b{word-spacing:-29.853054px;}
.ws22c{word-spacing:-29.783333px;}
.wsfa{word-spacing:-29.672556px;}
.ws117{word-spacing:-29.665292px;}
.ws145{word-spacing:-29.643500px;}
.ws1d0{word-spacing:-29.622281px;}
.ws157{word-spacing:-29.621708px;}
.ws1f3{word-spacing:-29.589625px;}
.ws1e9{word-spacing:-29.572994px;}
.ws5f{word-spacing:-29.454028px;}
.ws19c{word-spacing:-29.438290px;}
.wsd7{word-spacing:-29.401364px;}
.ws225{word-spacing:-29.389257px;}
.ws11d{word-spacing:-29.365043px;}
.ws213{word-spacing:-29.187073px;}
.wsdc{word-spacing:-29.080534px;}
.ws4f{word-spacing:-29.060557px;}
.ws9c{word-spacing:-28.905590px;}
.ws103{word-spacing:-28.844451px;}
.ws1d1{word-spacing:-28.829349px;}
.ws23d{word-spacing:-28.672534px;}
.ws139{word-spacing:-28.662849px;}
.wscf{word-spacing:-28.654374px;}
.ws1d8{word-spacing:-28.505461px;}
.ws13a{word-spacing:-28.386209px;}
.ws1d4{word-spacing:-28.335934px;}
.ws9b{word-spacing:-28.297224px;}
.ws253{word-spacing:-28.230031px;}
.ws273{word-spacing:-27.953391px;}
.ws16e{word-spacing:-27.823338px;}
.ws1cd{word-spacing:-27.738495px;}
.ws170{word-spacing:-27.737316px;}
.ws16f{word-spacing:-27.421902px;}
.ws271{word-spacing:-27.335880px;}
.ws16c{word-spacing:-27.311985px;}
.ws1ee{word-spacing:-27.304147px;}
.ws1d2{word-spacing:-27.288982px;}
.ws1da{word-spacing:-27.278532px;}
.ws1dc{word-spacing:-27.211626px;}
.ws200{word-spacing:-27.192510px;}
.ws265{word-spacing:-27.178173px;}
.ws1ca{word-spacing:-27.150710px;}
.wsb7{word-spacing:-27.120825px;}
.ws1ed{word-spacing:-27.120538px;}
.ws79{word-spacing:-27.116046px;}
.ws17c{word-spacing:-27.111267px;}
.ws266{word-spacing:-27.101709px;}
.ws181{word-spacing:-27.082593px;}
.ws283{word-spacing:-27.077814px;}
.ws174{word-spacing:-27.073035px;}
.ws1d7{word-spacing:-27.069168px;}
.ws172{word-spacing:-27.068256px;}
.wsb8{word-spacing:-27.063477px;}
.ws263{word-spacing:-27.058698px;}
.ws173{word-spacing:-27.053919px;}
.wsba{word-spacing:-27.044361px;}
.wsb9{word-spacing:-27.025245px;}
.ws1fd{word-spacing:-27.015687px;}
.ws1fe{word-spacing:-27.010908px;}
.ws288{word-spacing:-26.996571px;}
.ws1de{word-spacing:-26.982234px;}
.ws201{word-spacing:-26.963118px;}
.ws7a{word-spacing:-26.958339px;}
.ws267{word-spacing:-26.953560px;}
.ws7c{word-spacing:-26.948781px;}
.ws7b{word-spacing:-26.939223px;}
.ws268{word-spacing:-26.934444px;}
.ws150{word-spacing:-26.933998px;}
.ws180{word-spacing:-26.915328px;}
.ws202{word-spacing:-26.896212px;}
.ws26b{word-spacing:-26.857980px;}
.ws1ff{word-spacing:-26.853201px;}
.ws26c{word-spacing:-26.838864px;}
.ws1db{word-spacing:-26.819748px;}
.ws1e2{word-spacing:-26.791074px;}
.ws272{word-spacing:-26.757621px;}
.ws17e{word-spacing:-26.738505px;}
.ws17f{word-spacing:-26.733726px;}
.ws6f{word-spacing:-26.719389px;}
.ws6e{word-spacing:-26.709831px;}
.ws284{word-spacing:-26.705052px;}
.ws285{word-spacing:-26.700273px;}
.ws185{word-spacing:-26.685936px;}
.ws184{word-spacing:-26.676378px;}
.ws1d3{word-spacing:-26.675327px;}
.ws220{word-spacing:-26.666820px;}
.ws1e0{word-spacing:-26.652483px;}
.ws2e{word-spacing:-26.651527px;}
.ws2f{word-spacing:-26.649616px;}
.ws1df{word-spacing:-26.642925px;}
.wsb6{word-spacing:-26.638146px;}
.ws282{word-spacing:-26.633367px;}
.wsb5{word-spacing:-26.628588px;}
.ws287{word-spacing:-26.604693px;}
.ws70{word-spacing:-26.590356px;}
.ws26d{word-spacing:-26.585577px;}
.ws3{word-spacing:-26.576019px;}
.ws86{word-spacing:-26.571240px;}
.ws6c{word-spacing:-26.566939px;}
.ws6a{word-spacing:-26.566461px;}
.ws182{word-spacing:-26.561682px;}
.ws30{word-spacing:-26.560726px;}
.ws186{word-spacing:-26.556903px;}
.wsac{word-spacing:-26.552124px;}
.ws2{word-spacing:-26.547345px;}
.ws187{word-spacing:-26.546389px;}
.ws7d{word-spacing:-26.543522px;}
.ws5{word-spacing:-26.542566px;}
.ws31{word-spacing:-26.541132px;}
.ws85{word-spacing:-26.537787px;}
.ws6d{word-spacing:-26.513414px;}
.ws21b{word-spacing:-26.389638px;}
.ws270{word-spacing:-26.236710px;}
.ws10c{word-spacing:-26.228777px;}
.ws219{word-spacing:-26.188920px;}
.ws169{word-spacing:-26.180955px;}
.ws1ad{word-spacing:-26.117235px;}
.wsaa{word-spacing:-26.035992px;}
.ws20d{word-spacing:-26.016908px;}
.wsab{word-spacing:-25.992981px;}
.ws1f6{word-spacing:-25.739662px;}
.wsa7{word-spacing:-25.642202px;}
.ws24c{word-spacing:-25.640386px;}
.ws171{word-spacing:-25.553313px;}
.ws1a8{word-spacing:-25.533241px;}
.ws1b6{word-spacing:-25.496921px;}
.ws59{word-spacing:-25.492078px;}
.ws27{word-spacing:-25.478761px;}
.wsb4{word-spacing:-25.436387px;}
.ws242{word-spacing:-25.420043px;}
.ws24d{word-spacing:-25.401277px;}
.ws199{word-spacing:-25.335900px;}
.ws281{word-spacing:-25.309584px;}
.ws102{word-spacing:-25.285052px;}
.ws74{word-spacing:-25.266892px;}
.ws217{word-spacing:-25.260838px;}
.ws21a{word-spacing:-25.214004px;}
.ws221{word-spacing:-25.194856px;}
.wse0{word-spacing:-25.193645px;}
.ws47{word-spacing:-25.171853px;}
.wsaf{word-spacing:-25.170037px;}
.wsf5{word-spacing:-25.168827px;}
.ws1ce{word-spacing:-25.060471px;}
.ws26a{word-spacing:-24.994170px;}
.ws53{word-spacing:-24.992067px;}
.ws21c{word-spacing:-24.955938px;}
.ws1aa{word-spacing:-24.940613px;}
.ws52{word-spacing:-24.929112px;}
.ws21d{word-spacing:-24.917706px;}
.ws235{word-spacing:-24.865551px;}
.ws16d{word-spacing:-24.865137px;}
.ws2c{word-spacing:-24.768601px;}
.ws17d{word-spacing:-22.958316px;}
.ws255{word-spacing:-21.278560px;}
.ws22e{word-spacing:-21.262408px;}
.wse{word-spacing:-21.006113px;}
.wsd{word-spacing:-20.998592px;}
.ws192{word-spacing:-20.646030px;}
.ws1a0{word-spacing:-20.168480px;}
.ws12{word-spacing:-18.789788px;}
.ws1a9{word-spacing:-4.854221px;}
.ws1d{word-spacing:0.000000px;}
.ws1d9{word-spacing:1.495784px;}
.ws264{word-spacing:1.667832px;}
.ws262{word-spacing:1.806021px;}
.ws16b{word-spacing:1.855284px;}
.ws1fc{word-spacing:1.917210px;}
.ws1dd{word-spacing:1.983671px;}
.ws1e1{word-spacing:2.282640px;}
.ws17b{word-spacing:2.410566px;}
.ws183{word-spacing:2.455692px;}
.ws21f{word-spacing:2.459892px;}
.ws286{word-spacing:2.583618px;}
.ws269{word-spacing:2.634744px;}
.ws105{word-spacing:2.673870px;}
.ws121{word-spacing:2.676737px;}
.ws2d{word-spacing:1260.264119px;}
._2{margin-left:-1.798465px;}
._3{width:1.039369px;}
._6{width:11.066507px;}
._7{width:12.172113px;}
._4{width:15.615351px;}
._5{width:24.153066px;}
._0{width:26.556903px;}
._1{width:1308.077679px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:28.674000px;}
.fs1{font-size:32.496000px;}
.fsb{font-size:35.838000px;}
.fsa{font-size:36.318000px;}
.fs7{font-size:40.620000px;}
.fs8{font-size:44.604000px;}
.fs6{font-size:45.396000px;}
.fs2{font-size:47.790000px;}
.fs0{font-size:54.162000px;}
.fs3{font-size:60.534000px;}
.fs9{font-size:63.714000px;}
.fs5{font-size:114.690000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:83.863598px;}
.y3{bottom:83.863650px;}
.y2{bottom:97.403700px;}
.y253{bottom:143.310496px;}
.y196{bottom:143.311293px;}
.y257{bottom:143.311495px;}
.y8f{bottom:143.311697px;}
.y82{bottom:143.311898px;}
.y4{bottom:143.312250px;}
.y22f{bottom:143.339838px;}
.y233{bottom:143.482898px;}
.y1c0{bottom:143.732147px;}
.y21e{bottom:143.787384px;}
.y15f{bottom:143.961541px;}
.y1c4{bottom:144.390698px;}
.yef{bottom:145.053641px;}
.y97{bottom:147.254100px;}
.y114{bottom:147.254700px;}
.ybf{bottom:147.255150px;}
.y252{bottom:156.850598px;}
.y183{bottom:156.850639px;}
.y195{bottom:156.851395px;}
.y20f{bottom:156.851597px;}
.y8e{bottom:156.851798px;}
.y232{bottom:157.023000px;}
.y1c3{bottom:157.930800px;}
.y81{bottom:160.794600px;}
.ybe{bottom:160.794900px;}
.y22e{bottom:161.658940px;}
.y1bf{bottom:162.051249px;}
.y21d{bottom:162.106486px;}
.y15e{bottom:162.280642px;}
.yee{bottom:163.372743px;}
.y182{bottom:170.390741px;}
.ycd{bottom:170.391093px;}
.y194{bottom:170.391496px;}
.y80{bottom:170.391698px;}
.ybd{bottom:170.392148px;}
.y251{bottom:174.333150px;}
.y8d{bottom:174.334500px;}
.y22d{bottom:179.978042px;}
.y21c{bottom:180.425587px;}
.y15d{bottom:180.599744px;}
.y113{bottom:181.686843px;}
.yed{bottom:181.691845px;}
.y250{bottom:183.930248px;}
.y26c{bottom:183.930641px;}
.y181{bottom:183.930843px;}
.ycc{bottom:183.931195px;}
.y193{bottom:183.931598px;}
.y96{bottom:184.937947px;}
.y7f{bottom:187.874250px;}
.ybc{bottom:187.874700px;}
.y1be{bottom:189.529145px;}
.y26b{bottom:197.470743px;}
.y180{bottom:197.470945px;}
.ycb{bottom:197.471296px;}
.y22c{bottom:198.297144px;}
.y21b{bottom:198.744689px;}
.y15c{bottom:198.918846px;}
.y112{bottom:200.005945px;}
.y131{bottom:200.006857px;}
.y152{bottom:200.007546px;}
.yec{bottom:200.010946px;}
.y24f{bottom:201.412950px;}
.y192{bottom:201.414150px;}
.y95{bottom:203.257049px;}
.y38{bottom:206.323732px;}
.y1bd{bottom:207.848246px;}
.y191{bottom:211.010441px;}
.y1d6{bottom:211.010643px;}
.y26a{bottom:211.010845px;}
.y17f{bottom:211.011046px;}
.yca{bottom:211.011398px;}
.y8c{bottom:214.070990px;}
.y24e{bottom:214.952700px;}
.y22b{bottom:216.616245px;}
.y21a{bottom:217.063791px;}
.y111{bottom:218.325047px;}
.y130{bottom:218.325959px;}
.y151{bottom:218.326648px;}
.yeb{bottom:218.330048px;}
.y1b3{bottom:218.331947px;}
.y94{bottom:221.576151px;}
.y24d{bottom:224.549545px;}
.y190{bottom:224.550543px;}
.y1d5{bottom:224.550745px;}
.y20e{bottom:224.550946px;}
.y17e{bottom:224.551148px;}
.y1d{bottom:224.603877px;}
.y37{bottom:224.642834px;}
.y1bc{bottom:226.167348px;}
.y15b{bottom:226.396742px;}
.y7d{bottom:226.914471px;}
.yc9{bottom:228.493950px;}
.y256{bottom:230.517346px;}
.y8b{bottom:232.390091px;}
.y219{bottom:235.382893px;}
.y110{bottom:236.644149px;}
.yea{bottom:236.644459px;}
.y12f{bottom:236.645061px;}
.y1b2{bottom:236.651048px;}
.y24c{bottom:238.089646px;}
.y18f{bottom:238.090645px;}
.y1d4{bottom:238.090846px;}
.y20d{bottom:238.091048px;}
.y1c{bottom:239.736740px;}
.y2b{bottom:239.737011px;}
.y93{bottom:239.895252px;}
.y17d{bottom:242.033850px;}
.y36{bottom:242.961936px;}
.y22a{bottom:244.094141px;}
.y1bb{bottom:244.486450px;}
.y15a{bottom:244.715844px;}
.y7c{bottom:245.233572px;}
.ybb{bottom:245.804447px;}
.y150{bottom:245.804544px;}
.y255{bottom:248.836448px;}
.y8a{bottom:250.709193px;}
.y24b{bottom:251.629748px;}
.y18e{bottom:251.630747px;}
.y1d3{bottom:251.630948px;}
.y269{bottom:251.631150px;}
.y218{bottom:253.701994px;}
.y1b{bottom:254.869603px;}
.y2a{bottom:254.869738px;}
.y10f{bottom:254.963250px;}
.ye9{bottom:254.963561px;}
.y12e{bottom:254.964162px;}
.y1b1{bottom:254.967289px;}
.y17c{bottom:255.573600px;}
.y35{bottom:261.281038px;}
.y229{bottom:262.413243px;}
.y1ba{bottom:262.805552px;}
.y159{bottom:263.034945px;}
.y7b{bottom:263.552674px;}
.yba{bottom:264.123548px;}
.y14f{bottom:264.123645px;}
.y18d{bottom:265.170848px;}
.y254{bottom:267.155550px;}
.y92{bottom:267.373148px;}
.y89{bottom:269.028295px;}
.y24a{bottom:269.112300px;}
.y1d2{bottom:269.113500px;}
.yc8{bottom:269.679298px;}
.y1a{bottom:270.002465px;}
.y217{bottom:272.021096px;}
.y10e{bottom:273.282352px;}
.ye8{bottom:273.282662px;}
.y1b0{bottom:273.286391px;}
.y249{bottom:278.709398px;}
.y34{bottom:279.600139px;}
.y228{bottom:280.732345px;}
.y1b9{bottom:281.124653px;}
.y158{bottom:281.354047px;}
.y12d{bottom:282.442058px;}
.yb9{bottom:282.442650px;}
.y14e{bottom:282.442747px;}
.y18c{bottom:282.653400px;}
.y1f3{bottom:284.437758px;}
.y29{bottom:285.135193px;}
.y19{bottom:285.135328px;}
.y91{bottom:285.692250px;}
.y88{bottom:287.347397px;}
.yc7{bottom:287.998399px;}
.y216{bottom:290.340198px;}
.y7a{bottom:291.030570px;}
.y10d{bottom:291.601454px;}
.ye7{bottom:291.601764px;}
.y1af{bottom:291.605493px;}
.y248{bottom:296.192100px;}
.y33{bottom:297.919241px;}
.y227{bottom:299.051446px;}
.y1b8{bottom:299.443755px;}
.y157{bottom:299.673149px;}
.y28{bottom:300.268056px;}
.y18{bottom:300.268191px;}
.y12c{bottom:300.761160px;}
.yb8{bottom:300.761752px;}
.y14d{bottom:300.761849px;}
.y17b{bottom:300.763298px;}
.y1f2{bottom:302.756860px;}
.y87{bottom:305.666498px;}
.yc6{bottom:306.317501px;}
.y215{bottom:308.659300px;}
.y79{bottom:309.349672px;}
.y10c{bottom:309.920556px;}
.ye6{bottom:309.920866px;}
.y1ae{bottom:309.924595px;}
.y259{bottom:314.008598px;}
.y27{bottom:315.400918px;}
.y17{bottom:315.401054px;}
.y32{bottom:316.238343px;}
.y1d1{bottom:317.092598px;}
.y226{bottom:317.370548px;}
.y1b7{bottom:317.762857px;}
.y18b{bottom:317.763998px;}
.y156{bottom:317.992251px;}
.y12b{bottom:319.080262px;}
.yb7{bottom:319.080854px;}
.y17a{bottom:319.080903px;}
.y14c{bottom:319.080951px;}
.y86{bottom:323.985600px;}
.yc5{bottom:324.636603px;}
.y214{bottom:326.978401px;}
.y258{bottom:327.548700px;}
.y78{bottom:327.668774px;}
.y10b{bottom:328.239657px;}
.y1ad{bottom:328.243696px;}
.y99{bottom:328.347998px;}
.y1f1{bottom:330.234756px;}
.y26{bottom:330.533646px;}
.y16{bottom:330.533917px;}
.y31{bottom:334.557445px;}
.y1d0{bottom:335.411700px;}
.y225{bottom:335.688607px;}
.y18a{bottom:336.081801px;}
.ye5{bottom:337.398762px;}
.y12a{bottom:337.399364px;}
.y20c{bottom:337.399605px;}
.yb6{bottom:337.399955px;}
.y179{bottom:337.400005px;}
.y14b{bottom:337.400052px;}
.y98{bottom:341.888100px;}
.yc4{bottom:342.955705px;}
.y1b6{bottom:345.240753px;}
.y155{bottom:345.470146px;}
.y25{bottom:345.666373px;}
.y15{bottom:345.666779px;}
.y77{bottom:345.987875px;}
.y247{bottom:346.558316px;}
.y10a{bottom:346.558759px;}
.y1ac{bottom:346.562798px;}
.y1f0{bottom:348.553857px;}
.y30{bottom:352.876546px;}
.y224{bottom:354.007709px;}
.y189{bottom:354.400902px;}
.y213{bottom:354.456297px;}
.ye4{bottom:355.717864px;}
.y129{bottom:355.718465px;}
.y20b{bottom:355.718707px;}
.y178{bottom:355.719106px;}
.y14a{bottom:355.719154px;}
.y85{bottom:360.621750px;}
.y24{bottom:360.799236px;}
.y14{bottom:360.799642px;}
.yc3{bottom:361.274806px;}
.y1b5{bottom:363.559855px;}
.y154{bottom:363.789248px;}
.y76{bottom:364.306977px;}
.y246{bottom:364.877418px;}
.yb5{bottom:364.877851px;}
.y109{bottom:364.877861px;}
.y1ab{bottom:364.881211px;}
.y1ef{bottom:366.872959px;}
.y2f{bottom:371.195648px;}
.y1cf{bottom:372.047902px;}
.y188{bottom:372.720004px;}
.y212{bottom:372.775399px;}
.ye3{bottom:374.036965px;}
.y128{bottom:374.037567px;}
.y20a{bottom:374.037809px;}
.y23{bottom:375.931963px;}
.y13{bottom:375.932505px;}
.yc2{bottom:379.593908px;}
.y223{bottom:381.485605px;}
.y1b4{bottom:381.878956px;}
.y153{bottom:382.108350px;}
.y75{bottom:382.626079px;}
.y149{bottom:383.196159px;}
.y245{bottom:383.196519px;}
.yb4{bottom:383.196953px;}
.y108{bottom:383.196963px;}
.y177{bottom:383.197002px;}
.y1aa{bottom:383.200313px;}
.y1ee{bottom:385.192061px;}
.y1ce{bottom:387.180765px;}
.y2e{bottom:389.514655px;}
.y22{bottom:391.064826px;}
.y12{bottom:391.065368px;}
.y211{bottom:391.094501px;}
.ye2{bottom:392.356067px;}
.y127{bottom:392.356669px;}
.y209{bottom:392.356910px;}
.y222{bottom:399.804404px;}
.y187{bottom:400.197755px;}
.y74{bottom:400.944727px;}
.y148{bottom:401.514807px;}
.y176{bottom:401.514902px;}
.y244{bottom:401.515167px;}
.yb3{bottom:401.515601px;}
.y107{bottom:401.515610px;}
.y1a9{bottom:401.518961px;}
.y1cd{bottom:402.313492px;}
.y1ed{bottom:403.510709px;}
.y21{bottom:406.197554px;}
.y11{bottom:406.198095px;}
.yc1{bottom:407.071302px;}
.y2d{bottom:407.833302px;}
.y210{bottom:409.413300px;}
.ye1{bottom:410.674866px;}
.y126{bottom:410.675468px;}
.y208{bottom:410.675709px;}
.y84{bottom:415.575251px;}
.y1cc{bottom:417.446220px;}
.y221{bottom:418.122900px;}
.y186{bottom:418.516403px;}
.y73{bottom:419.263374px;}
.y147{bottom:419.833606px;}
.y175{bottom:419.833701px;}
.y243{bottom:419.833966px;}
.yb2{bottom:419.834255px;}
.y106{bottom:419.834409px;}
.y1a8{bottom:419.837609px;}
.y20{bottom:421.330281px;}
.y10{bottom:421.330823px;}
.y1ec{bottom:421.829508px;}
.y161{bottom:423.530107px;}
.yc0{bottom:425.389950px;}
.y2c{bottom:426.151950px;}
.y125{bottom:428.994116px;}
.y1cb{bottom:432.579082px;}
.y83{bottom:433.894050px;}
.y1f{bottom:436.463008px;}
.yf{bottom:436.463610px;}
.y185{bottom:436.835051px;}
.y160{bottom:437.069850px;}
.y72{bottom:437.582173px;}
.ye0{bottom:438.152157px;}
.y146{bottom:438.152254px;}
.y174{bottom:438.152349px;}
.y242{bottom:438.152614px;}
.yb1{bottom:438.152903px;}
.y1a7{bottom:438.156408px;}
.y1eb{bottom:440.148155px;}
.y105{bottom:447.310935px;}
.y124{bottom:447.312763px;}
.y1ca{bottom:447.711810px;}
.y220{bottom:454.323787px;}
.y184{bottom:455.153850px;}
.y71{bottom:455.900821px;}
.ydf{bottom:456.470805px;}
.y145{bottom:456.470901px;}
.y173{bottom:456.470997px;}
.y241{bottom:456.471262px;}
.yb0{bottom:456.471551px;}
.y1a6{bottom:456.475055px;}
.y1ea{bottom:458.466803px;}
.y231{bottom:462.239737px;}
.y1c9{bottom:462.844537px;}
.y104{bottom:465.629734px;}
.y123{bottom:465.631411px;}
.y1e{bottom:466.728599px;}
.ye{bottom:466.729200px;}
.y21f{bottom:467.863650px;}
.ycf{bottom:471.411757px;}
.y70{bottom:474.219469px;}
.yde{bottom:474.789604px;}
.y144{bottom:474.789700px;}
.y172{bottom:474.789796px;}
.y240{bottom:474.790061px;}
.y207{bottom:474.790070px;}
.yaf{bottom:474.790110px;}
.y1a5{bottom:474.793703px;}
.y90{bottom:474.811800px;}
.y230{bottom:475.779600px;}
.y1e9{bottom:476.785602px;}
.y1c8{bottom:477.977400px;}
.y103{bottom:483.948382px;}
.y122{bottom:483.950210px;}
.yce{bottom:484.951500px;}
.y5b{bottom:485.490150px;}
.y4b{bottom:485.490177px;}
.y6f{bottom:492.538268px;}
.ydd{bottom:493.108251px;}
.y143{bottom:493.108348px;}
.y23f{bottom:493.108709px;}
.y206{bottom:493.108718px;}
.yae{bottom:493.108758px;}
.y1a4{bottom:493.112502px;}
.y1e8{bottom:495.104250px;}
.y198{bottom:499.099237px;}
.y102{bottom:502.267029px;}
.y171{bottom:502.267087px;}
.y121{bottom:502.268858px;}
.ydc{bottom:511.426899px;}
.y142{bottom:511.426996px;}
.y23e{bottom:511.427356px;}
.y205{bottom:511.427366px;}
.yad{bottom:511.427405px;}
.y1a3{bottom:511.431150px;}
.y1c2{bottom:511.594387px;}
.y197{bottom:512.639100px;}
.y5a{bottom:515.755605px;}
.y4a{bottom:515.755632px;}
.yd{bottom:516.201300px;}
.y6e{bottom:520.015559px;}
.y101{bottom:520.585828px;}
.y170{bottom:520.585886px;}
.y1c1{bottom:525.134250px;}
.ydb{bottom:529.745698px;}
.y141{bottom:529.745795px;}
.y120{bottom:529.746084px;}
.y268{bottom:529.746116px;}
.y23d{bottom:529.746155px;}
.y204{bottom:529.746165px;}
.yac{bottom:529.746205px;}
.y1e7{bottom:531.740528px;}
.y6d{bottom:538.334358px;}
.y100{bottom:538.904476px;}
.y16f{bottom:538.904533px;}
.y1e6{bottom:546.873255px;}
.yda{bottom:548.064346px;}
.y140{bottom:548.064443px;}
.y11f{bottom:548.064732px;}
.y267{bottom:548.064763px;}
.y23c{bottom:548.064803px;}
.y203{bottom:548.064813px;}
.yab{bottom:548.064852px;}
.y1a2{bottom:548.067329px;}
.y6c{bottom:556.653005px;}
.yff{bottom:557.223124px;}
.y16e{bottom:557.223181px;}
.y59{bottom:561.154058px;}
.y49{bottom:561.154085px;}
.y1e5{bottom:562.005982px;}
.yd9{bottom:566.382994px;}
.y13f{bottom:566.383091px;}
.yaa{bottom:566.383131px;}
.y11e{bottom:566.383380px;}
.y266{bottom:566.383411px;}
.y23b{bottom:566.383451px;}
.y202{bottom:566.383460px;}
.y1a1{bottom:566.385900px;}
.yc{bottom:572.787543px;}
.y6b{bottom:574.971653px;}
.yfe{bottom:575.541772px;}
.y16d{bottom:575.541829px;}
.y1e4{bottom:577.138845px;}
.yd8{bottom:584.701793px;}
.y13e{bottom:584.701890px;}
.ya9{bottom:584.701931px;}
.y23a{bottom:584.702067px;}
.y11d{bottom:584.702179px;}
.y265{bottom:584.702210px;}
.y201{bottom:584.702259px;}
.y58{bottom:591.419513px;}
.y48{bottom:591.419540px;}
.y1e3{bottom:592.271573px;}
.y6a{bottom:593.290301px;}
.yfd{bottom:593.860571px;}
.y16c{bottom:593.860628px;}
.y1c7{bottom:603.020440px;}
.y13d{bottom:603.020537px;}
.ya8{bottom:603.020578px;}
.y239{bottom:603.020715px;}
.y264{bottom:603.020858px;}
.yb{bottom:604.646131px;}
.y1e2{bottom:607.404300px;}
.y69{bottom:611.609052px;}
.yd7{bottom:612.179083px;}
.yfc{bottom:612.179219px;}
.y16b{bottom:612.179276px;}
.y200{bottom:612.179358px;}
.y11c{bottom:612.179469px;}
.y1c6{bottom:621.339088px;}
.y13c{bottom:621.339185px;}
.ya7{bottom:621.339226px;}
.y1a0{bottom:621.339353px;}
.y238{bottom:621.339363px;}
.y68{bottom:629.927516px;}
.yd6{bottom:630.497882px;}
.yfb{bottom:630.498018px;}
.y16a{bottom:630.498075px;}
.y1ff{bottom:630.498157px;}
.y263{bottom:630.498178px;}
.y11b{bottom:630.498268px;}
.ya{bottom:636.504719px;}
.y57{bottom:636.818101px;}
.y47{bottom:636.818128px;}
.y1c5{bottom:639.657887px;}
.y13b{bottom:639.657984px;}
.y19f{bottom:639.658152px;}
.y237{bottom:639.658162px;}
.y1e1{bottom:640.854552px;}
.y67{bottom:648.246315px;}
.yd5{bottom:648.816530px;}
.yfa{bottom:648.816665px;}
.ya6{bottom:648.816668px;}
.y169{bottom:648.816723px;}
.y1fe{bottom:648.816805px;}
.y262{bottom:648.816826px;}
.y56{bottom:651.950828px;}
.y46{bottom:651.950856px;}
.y11a{bottom:657.975559px;}
.y19e{bottom:657.976535px;}
.y1e0{bottom:659.173200px;}
.y66{bottom:666.564963px;}
.y55{bottom:667.083556px;}
.y45{bottom:667.083583px;}
.yd4{bottom:667.135178px;}
.y13a{bottom:667.135275px;}
.yf9{bottom:667.135313px;}
.ya5{bottom:667.135316px;}
.y168{bottom:667.135370px;}
.y1fd{bottom:667.135452px;}
.y261{bottom:667.135474px;}
.y9{bottom:668.363307px;}
.y119{bottom:676.294207px;}
.y19d{bottom:676.295183px;}
.y54{bottom:682.216283px;}
.y44{bottom:682.216311px;}
.y65{bottom:684.883610px;}
.yd3{bottom:685.453826px;}
.y1fc{bottom:685.453873px;}
.y139{bottom:685.453923px;}
.yf8{bottom:685.453961px;}
.ya4{bottom:685.453963px;}
.y167{bottom:685.454018px;}
.y236{bottom:685.454051px;}
.y260{bottom:694.612916px;}
.y118{bottom:694.613006px;}
.y19c{bottom:694.613982px;}
.y1df{bottom:695.809345px;}
.y53{bottom:697.349146px;}
.y43{bottom:697.349173px;}
.y64{bottom:703.202409px;}
.yd2{bottom:703.772625px;}
.y1fb{bottom:703.772673px;}
.yf7{bottom:703.772760px;}
.ya3{bottom:703.772763px;}
.y235{bottom:703.772802px;}
.y166{bottom:703.772817px;}
.y8{bottom:708.725872px;}
.y1de{bottom:710.942343px;}
.y138{bottom:712.931364px;}
.y25f{bottom:712.931412px;}
.y117{bottom:712.931502px;}
.y19b{bottom:712.932630px;}
.yd1{bottom:722.091273px;}
.y1fa{bottom:722.091320px;}
.y234{bottom:722.091401px;}
.yf6{bottom:722.091408px;}
.ya2{bottom:722.091410px;}
.y165{bottom:722.091465px;}
.y1dd{bottom:726.075071px;}
.y52{bottom:727.614601px;}
.y42{bottom:727.614628px;}
.y63{bottom:730.679411px;}
.y116{bottom:731.249915px;}
.y137{bottom:731.250012px;}
.y25e{bottom:731.250060px;}
.yd0{bottom:740.410072px;}
.y1f9{bottom:740.410119px;}
.yf5{bottom:740.410207px;}
.ya1{bottom:740.410209px;}
.y164{bottom:740.410264px;}
.y7{bottom:740.584460px;}
.y1dc{bottom:741.207798px;}
.y62{bottom:748.998059px;}
.y115{bottom:749.568714px;}
.y136{bottom:749.568811px;}
.y25d{bottom:749.568859px;}
.y1db{bottom:756.340661px;}
.y19a{bottom:758.728719px;}
.y1f8{bottom:758.728767px;}
.yf4{bottom:758.728855px;}
.y163{bottom:758.728912px;}
.y61{bottom:767.316858px;}
.ya0{bottom:767.887362px;}
.y135{bottom:767.887459px;}
.y25c{bottom:767.887507px;}
.y1da{bottom:771.473388px;}
.y6{bottom:772.443049px;}
.y41{bottom:773.013081px;}
.y199{bottom:777.047367px;}
.y1f7{bottom:777.047415px;}
.yf3{bottom:777.047502px;}
.y162{bottom:777.047559px;}
.y60{bottom:785.635505px;}
.y9f{bottom:786.206010px;}
.y134{bottom:786.206107px;}
.y25b{bottom:786.206155px;}
.y1d9{bottom:786.606116px;}
.y51{bottom:788.145917px;}
.y40{bottom:788.145944px;}
.yf2{bottom:795.366015px;}
.y1f6{bottom:795.366063px;}
.y50{bottom:803.278644px;}
.y3f{bottom:803.278671px;}
.y5f{bottom:803.954153px;}
.y5{bottom:804.301350px;}
.y9e{bottom:804.524658px;}
.y133{bottom:804.524755px;}
.y25a{bottom:804.524802px;}
.y1d8{bottom:810.897773px;}
.yf1{bottom:813.684663px;}
.y1f5{bottom:813.684710px;}
.y4f{bottom:818.411371px;}
.y3e{bottom:818.411399px;}
.y5e{bottom:822.272952px;}
.y9d{bottom:822.843305px;}
.y132{bottom:822.843402px;}
.y1d7{bottom:826.030500px;}
.yf0{bottom:832.003310px;}
.y1f4{bottom:832.003358px;}
.y4e{bottom:833.544370px;}
.y3d{bottom:833.544397px;}
.y5d{bottom:840.591600px;}
.y9c{bottom:841.161953px;}
.y4d{bottom:848.677097px;}
.y3c{bottom:848.677124px;}
.y9b{bottom:859.480752px;}
.y5c{bottom:877.227750px;}
.y9a{bottom:877.799400px;}
.y4c{bottom:878.942823px;}
.y3b{bottom:878.942850px;}
.y1{bottom:921.268500px;}
.y7e{bottom:921.849450px;}
.y39{bottom:923.562450px;}
.he{height:28.626510px;}
.hd{height:28.627110px;}
.h7{height:41.437116px;}
.h4{height:44.396910px;}
.h8{height:44.397117px;}
.h28{height:44.399124px;}
.h2{height:50.316498px;}
.h25{height:50.316518px;}
.h3{height:56.236086px;}
.hc{height:56.236277px;}
.hf{height:56.236282px;}
.h6{height:56.236468px;}
.h1b{height:56.236473px;}
.h2d{height:56.236573px;}
.h17{height:56.236627px;}
.h11{height:56.236637px;}
.h14{height:56.236664px;}
.h2a{height:56.236818px;}
.hb{height:56.236823px;}
.h1d{height:56.236855px;}
.h1a{height:56.236949px;}
.h26{height:56.236992px;}
.h19{height:56.237025px;}
.h13{height:56.237046px;}
.h21{height:56.237146px;}
.h27{height:56.237205px;}
.ha{height:56.237243px;}
.h12{height:56.237560px;}
.h24{height:56.238690px;}
.h22{height:56.238841px;}
.h1e{height:56.239077px;}
.h18{height:56.239147px;}
.h2c{height:56.239500px;}
.h1c{height:56.239650px;}
.h29{height:56.240259px;}
.h20{height:56.241284px;}
.h2b{height:56.241622px;}
.h1f{height:56.242075px;}
.h10{height:56.245298px;}
.h15{height:56.246896px;}
.h23{height:56.247528px;}
.h16{height:56.254850px;}
.h9{height:59.190306px;}
.h5{height:106.547010px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:89.291100px;}
.x12{left:92.249423px;}
.x5{left:95.329957px;}
.xe{left:96.725235px;}
.x2f{left:98.542350px;}
.x16{left:101.259271px;}
.x10{left:103.498464px;}
.x23{left:104.992322px;}
.x1{left:106.735800px;}
.x3{left:108.424800px;}
.x2b{left:109.816650px;}
.x8{left:111.286203px;}
.x1d{left:114.053624px;}
.x9{left:115.247882px;}
.x36{left:121.120350px;}
.x34{left:122.433300px;}
.x1e{left:123.828376px;}
.x11{left:125.338342px;}
.x22{left:128.346976px;}
.x4{left:132.014700px;}
.x32{left:135.702600px;}
.x6{left:137.572004px;}
.xf{left:138.885071px;}
.x18{left:140.400795px;}
.x15{left:144.889470px;}
.x13{left:147.907648px;}
.x17{left:149.424184px;}
.x14{left:153.188443px;}
.x29{left:156.625800px;}
.x1f{left:159.198735px;}
.xd{left:163.900566px;}
.x2d{left:167.232900px;}
.x2c{left:180.855410px;}
.x2a{left:184.162398px;}
.x26{left:187.054928px;}
.xa{left:206.884332px;}
.x31{left:212.377454px;}
.x37{left:216.359846px;}
.x21{left:223.179222px;}
.x1c{left:226.891350px;}
.x24{left:229.145437px;}
.x30{left:234.619715px;}
.x28{left:257.939310px;}
.x20{left:260.007215px;}
.x25{left:263.795035px;}
.x35{left:269.133188px;}
.x2e{left:271.466833px;}
.x7{left:274.596448px;}
.xc{left:278.842350px;}
.x33{left:282.410134px;}
.x27{left:284.098202px;}
.xb{left:292.584600px;}
.x1a{left:301.638600px;}
.x19{left:376.314353px;}
.x1b{left:409.811543px;}
@media print{
.v5{vertical-align:-17.756267pt;}
.v6{vertical-align:-15.886933pt;}
.v4{vertical-align:-14.017600pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.018133pt;}
.v1{vertical-align:15.886933pt;}
.v3{vertical-align:17.756761pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053808pt;}
.ls16{letter-spacing:0.074250pt;}
.ls17{letter-spacing:0.074358pt;}
.ls7{letter-spacing:0.107616pt;}
.ls6{letter-spacing:0.161424pt;}
.ls13{letter-spacing:0.269040pt;}
.lsd{letter-spacing:0.376656pt;}
.ls5{letter-spacing:0.430464pt;}
.ls14{letter-spacing:0.484272pt;}
.ls3{letter-spacing:11.798805pt;}
.ls1{letter-spacing:11.799339pt;}
.ls0{letter-spacing:13.372821pt;}
.ls4{letter-spacing:13.373867pt;}
.ls12{letter-spacing:14.814571pt;}
.ls18{letter-spacing:14.861770pt;}
.ls15{letter-spacing:17.414959pt;}
.lsb{letter-spacing:22.797205pt;}
.ls9{letter-spacing:23.359339pt;}
.ls10{letter-spacing:23.474539pt;}
.ls11{letter-spacing:23.479872pt;}
.ls8{letter-spacing:23.574272pt;}
.lsc{letter-spacing:23.611072pt;}
.lsf{letter-spacing:23.611605pt;}
.lse{letter-spacing:35.899605pt;}
.ws9{word-spacing:-56.721086pt;}
.wsb{word-spacing:-56.701717pt;}
.ws8{word-spacing:-56.700697pt;}
.wsa{word-spacing:-56.665016pt;}
.wsc{word-spacing:-56.638510pt;}
.ws7{word-spacing:-56.614042pt;}
.ws6{word-spacing:-56.596711pt;}
.ws64{word-spacing:-44.983488pt;}
.ws4{word-spacing:-44.822064pt;}
.ws10{word-spacing:-40.103952pt;}
.ws21e{word-spacing:-35.385840pt;}
.wsf{word-spacing:-33.613216pt;}
.ws196{word-spacing:-31.459991pt;}
.ws41{word-spacing:-31.443567pt;}
.ws248{word-spacing:-31.237696pt;}
.ws18f{word-spacing:-31.209716pt;}
.ws250{word-spacing:-31.187117pt;}
.ws111{word-spacing:-31.151065pt;}
.ws249{word-spacing:-31.147299pt;}
.ws24a{word-spacing:-31.099948pt;}
.ws24b{word-spacing:-31.093491pt;}
.ws10e{word-spacing:-30.851355pt;}
.ws209{word-spacing:-30.824989pt;}
.ws224{word-spacing:-30.772795pt;}
.ws10f{word-spacing:-30.770105pt;}
.ws4e{word-spacing:-30.769029pt;}
.ws100{word-spacing:-30.767414pt;}
.ws18c{word-spacing:-30.762034pt;}
.ws68{word-spacing:-30.756653pt;}
.ws1a7{word-spacing:-30.751272pt;}
.ws1f8{word-spacing:-30.740510pt;}
.ws153{word-spacing:-30.736744pt;}
.wsd3{word-spacing:-30.718987pt;}
.ws159{word-spacing:-30.717373pt;}
.wsbf{word-spacing:-30.716835pt;}
.ws84{word-spacing:-30.716297pt;}
.wsc2{word-spacing:-30.714144pt;}
.ws83{word-spacing:-30.713606pt;}
.ws158{word-spacing:-30.711454pt;}
.ws131{word-spacing:-30.694774pt;}
.ws9e{word-spacing:-30.692621pt;}
.ws95{word-spacing:-30.686164pt;}
.ws1c2{word-spacing:-30.677017pt;}
.wse4{word-spacing:-30.675403pt;}
.ws114{word-spacing:-30.669484pt;}
.ws204{word-spacing:-30.667332pt;}
.wsd2{word-spacing:-30.666793pt;}
.ws9f{word-spacing:-30.661951pt;}
.ws23e{word-spacing:-30.660875pt;}
.ws1e{word-spacing:-30.658184pt;}
.ws24f{word-spacing:-30.653341pt;}
.ws104{word-spacing:-30.649037pt;}
.ws22f{word-spacing:-30.643656pt;}
.ws18e{word-spacing:-30.639351pt;}
.ws82{word-spacing:-30.638275pt;}
.ws207{word-spacing:-30.636661pt;}
.wsa0{word-spacing:-30.635047pt;}
.ws197{word-spacing:-30.634509pt;}
.wsdb{word-spacing:-30.627514pt;}
.ws12a{word-spacing:-30.623209pt;}
.ws278{word-spacing:-30.616752pt;}
.ws245{word-spacing:-30.616214pt;}
.ws236{word-spacing:-30.615138pt;}
.ws107{word-spacing:-30.611909pt;}
.ws120{word-spacing:-30.611371pt;}
.ws21{word-spacing:-30.609757pt;}
.ws56{word-spacing:-30.608681pt;}
.wsc4{word-spacing:-30.607605pt;}
.ws142{word-spacing:-30.595229pt;}
.ws1cb{word-spacing:-30.592000pt;}
.ws1b4{word-spacing:-30.589848pt;}
.ws20{word-spacing:-30.586620pt;}
.ws9a{word-spacing:-30.585005pt;}
.wsd5{word-spacing:-30.584467pt;}
.ws215{word-spacing:-30.580701pt;}
.ws113{word-spacing:-30.579086pt;}
.wsad{word-spacing:-30.578010pt;}
.wsc7{word-spacing:-30.573168pt;}
.wsf4{word-spacing:-30.572629pt;}
.wsa2{word-spacing:-30.570477pt;}
.ws24e{word-spacing:-30.569401pt;}
.ws1fb{word-spacing:-30.568325pt;}
.wsa1{word-spacing:-30.557025pt;}
.ws206{word-spacing:-30.555411pt;}
.ws89{word-spacing:-30.552720pt;}
.ws144{word-spacing:-30.551106pt;}
.ws27b{word-spacing:-30.550568pt;}
.ws25f{word-spacing:-30.537116pt;}
.ws1f2{word-spacing:-30.533350pt;}
.wsd8{word-spacing:-30.530659pt;}
.ws212{word-spacing:-30.524202pt;}
.ws1b9{word-spacing:-30.519898pt;}
.ws87{word-spacing:-30.519360pt;}
.ws1bf{word-spacing:-30.517207pt;}
.wse2{word-spacing:-30.511826pt;}
.wse3{word-spacing:-30.510212pt;}
.ws11a{word-spacing:-30.507522pt;}
.ws163{word-spacing:-30.505369pt;}
.wsbe{word-spacing:-30.498374pt;}
.ws20f{word-spacing:-30.495146pt;}
.ws1ba{word-spacing:-30.494070pt;}
.ws244{word-spacing:-30.493532pt;}
.ws1c0{word-spacing:-30.492994pt;}
.ws257{word-spacing:-30.491379pt;}
.wsdd{word-spacing:-30.487613pt;}
.ws134{word-spacing:-30.486537pt;}
.wsf6{word-spacing:-30.482770pt;}
.ws112{word-spacing:-30.477389pt;}
.wsf0{word-spacing:-30.476851pt;}
.ws57{word-spacing:-30.472547pt;}
.ws195{word-spacing:-30.472008pt;}
.ws252{word-spacing:-30.469318pt;}
.ws5e{word-spacing:-30.467704pt;}
.ws194{word-spacing:-30.466628pt;}
.ws115{word-spacing:-30.466090pt;}
.ws91{word-spacing:-30.453714pt;}
.wsbc{word-spacing:-30.448333pt;}
.ws11f{word-spacing:-30.444566pt;}
.ws152{word-spacing:-30.434881pt;}
.ws1ab{word-spacing:-30.433805pt;}
.ws151{word-spacing:-30.432191pt;}
.ws8f{word-spacing:-30.431652pt;}
.ws1f{word-spacing:-30.427886pt;}
.ws176{word-spacing:-30.415510pt;}
.ws1af{word-spacing:-30.414972pt;}
.ws17a{word-spacing:-30.409591pt;}
.ws177{word-spacing:-30.403134pt;}
.ws179{word-spacing:-30.401520pt;}
.ws1be{word-spacing:-30.395063pt;}
.wsca{word-spacing:-30.382687pt;}
.ws147{word-spacing:-30.379997pt;}
.ws10b{word-spacing:-30.375692pt;}
.ws1f9{word-spacing:-30.369235pt;}
.ws11e{word-spacing:-30.358474pt;}
.wsb2{word-spacing:-30.353093pt;}
.ws1f5{word-spacing:-30.343945pt;}
.ws211{word-spacing:-30.343407pt;}
.ws9d{word-spacing:-30.339103pt;}
.wsb3{word-spacing:-30.336950pt;}
.ws14f{word-spacing:-30.331032pt;}
.ws279{word-spacing:-30.329417pt;}
.ws48{word-spacing:-30.323498pt;}
.ws161{word-spacing:-30.320808pt;}
.ws274{word-spacing:-30.319732pt;}
.ws20b{word-spacing:-30.312737pt;}
.ws208{word-spacing:-30.310584pt;}
.ws12f{word-spacing:-30.308970pt;}
.ws12e{word-spacing:-30.306818pt;}
.ws12d{word-spacing:-30.304666pt;}
.ws28{word-spacing:-30.293904pt;}
.wscc{word-spacing:-30.291752pt;}
.ws7e{word-spacing:-30.277762pt;}
.ws123{word-spacing:-30.277224pt;}
.ws78{word-spacing:-30.272381pt;}
.ws1c7{word-spacing:-30.259467pt;}
.ws1bd{word-spacing:-30.255700pt;}
.ws148{word-spacing:-30.229334pt;}
.ws133{word-spacing:-30.227720pt;}
.ws90{word-spacing:-30.219649pt;}
.ws1b8{word-spacing:-30.218573pt;}
.wse9{word-spacing:-30.213192pt;}
.wsc0{word-spacing:-30.205121pt;}
.ws101{word-spacing:-30.202430pt;}
.ws232{word-spacing:-30.197050pt;}
.ws156{word-spacing:-30.190055pt;}
.wsea{word-spacing:-30.189516pt;}
.ws137{word-spacing:-30.178217pt;}
.ws49{word-spacing:-30.174988pt;}
.ws54{word-spacing:-30.171760pt;}
.ws22a{word-spacing:-30.164765pt;}
.ws14c{word-spacing:-30.151313pt;}
.wse5{word-spacing:-30.149699pt;}
.ws81{word-spacing:-30.148622pt;}
.ws135{word-spacing:-30.145394pt;}
.ws108{word-spacing:-30.143242pt;}
.ws23c{word-spacing:-30.141627pt;}
.ws25e{word-spacing:-30.141089pt;}
.ws1a3{word-spacing:-30.132480pt;}
.wsda{word-spacing:-30.127099pt;}
.ws198{word-spacing:-30.124947pt;}
.ws254{word-spacing:-30.123333pt;}
.ws77{word-spacing:-30.121718pt;}
.ws256{word-spacing:-30.117952pt;}
.ws1f4{word-spacing:-30.117414pt;}
.wsd9{word-spacing:-30.116338pt;}
.ws22d{word-spacing:-30.116094pt;}
.ws19e{word-spacing:-30.113109pt;}
.ws1bc{word-spacing:-30.111495pt;}
.ws234{word-spacing:-30.110957pt;}
.wse6{word-spacing:-30.099119pt;}
.ws97{word-spacing:-30.097505pt;}
.wsc3{word-spacing:-30.091048pt;}
.wsb1{word-spacing:-30.089434pt;}
.ws96{word-spacing:-30.088824pt;}
.ws1c8{word-spacing:-30.086205pt;}
.wsd0{word-spacing:-30.085667pt;}
.wsa3{word-spacing:-30.084591pt;}
.ws2a{word-spacing:-30.084053pt;}
.wsce{word-spacing:-30.081900pt;}
.ws26{word-spacing:-30.078672pt;}
.wsae{word-spacing:-30.078134pt;}
.ws3c{word-spacing:-30.076853pt;}
.ws1ae{word-spacing:-30.073829pt;}
.ws65{word-spacing:-30.073291pt;}
.ws20e{word-spacing:-30.068448pt;}
.ws66{word-spacing:-30.067910pt;}
.ws126{word-spacing:-30.065758pt;}
.ws99{word-spacing:-30.064682pt;}
.wsfd{word-spacing:-30.062530pt;}
.wsf9{word-spacing:-30.061992pt;}
.ws55{word-spacing:-30.059301pt;}
.ws154{word-spacing:-30.048001pt;}
.ws76{word-spacing:-30.046387pt;}
.ws155{word-spacing:-30.044773pt;}
.ws238{word-spacing:-30.036702pt;}
.wse8{word-spacing:-30.035626pt;}
.ws251{word-spacing:-30.033473pt;}
.wsf1{word-spacing:-30.032397pt;}
.ws13d{word-spacing:-30.024864pt;}
.ws73{word-spacing:-30.019483pt;}
.ws25a{word-spacing:-30.017331pt;}
.ws1b3{word-spacing:-30.014102pt;}
.wsa4{word-spacing:-30.013026pt;}
.ws29{word-spacing:-30.008722pt;}
.ws94{word-spacing:-30.008184pt;}
.wsc8{word-spacing:-30.007645pt;}
.ws27a{word-spacing:-30.004417pt;}
.ws243{word-spacing:-30.003341pt;}
.ws15c{word-spacing:-30.001727pt;}
.ws8c{word-spacing:-30.001188pt;}
.ws1c9{word-spacing:-29.998498pt;}
.ws67{word-spacing:-29.997960pt;}
.ws239{word-spacing:-29.980741pt;}
.ws1b2{word-spacing:-29.980203pt;}
.ws93{word-spacing:-29.979127pt;}
.ws143{word-spacing:-29.976437pt;}
.wseb{word-spacing:-29.966751pt;}
.ws88{word-spacing:-29.960832pt;}
.ws166{word-spacing:-29.960294pt;}
.ws205{word-spacing:-29.956528pt;}
.ws260{word-spacing:-29.955990pt;}
.ws14d{word-spacing:-29.954914pt;}
.ws22b{word-spacing:-29.953299pt;}
.ws237{word-spacing:-29.951685pt;}
.ws4d{word-spacing:-29.941462pt;}
.wsd1{word-spacing:-29.938771pt;}
.wsdf{word-spacing:-29.933390pt;}
.ws165{word-spacing:-29.932852pt;}
.ws27e{word-spacing:-29.931238pt;}
.wsf3{word-spacing:-29.930700pt;}
.ws18d{word-spacing:-29.928010pt;}
.ws231{word-spacing:-29.922629pt;}
.ws160{word-spacing:-29.922091pt;}
.ws27d{word-spacing:-29.921015pt;}
.ws1ac{word-spacing:-29.917248pt;}
.ws15d{word-spacing:-29.916172pt;}
.ws98{word-spacing:-29.915634pt;}
.ws124{word-spacing:-29.914020pt;}
.wsef{word-spacing:-29.913481pt;}
.ws10a{word-spacing:-29.912943pt;}
.ws58{word-spacing:-29.912405pt;}
.ws22{word-spacing:-29.911867pt;}
.ws44{word-spacing:-29.911329pt;}
.ws25{word-spacing:-29.906486pt;}
.ws13b{word-spacing:-29.904872pt;}
.ws110{word-spacing:-29.902720pt;}
.ws223{word-spacing:-29.901106pt;}
.ws12c{word-spacing:-29.900568pt;}
.ws72{word-spacing:-29.897339pt;}
.ws146{word-spacing:-29.895725pt;}
.wscd{word-spacing:-29.895187pt;}
.ws116{word-spacing:-29.891958pt;}
.ws167{word-spacing:-29.891420pt;}
.ws7f{word-spacing:-29.890344pt;}
.ws12b{word-spacing:-29.887116pt;}
.ws8d{word-spacing:-29.886577pt;}
.wsc1{word-spacing:-29.886039pt;}
.ws1cc{word-spacing:-29.885501pt;}
.wsa5{word-spacing:-29.884963pt;}
.ws4a{word-spacing:-29.883887pt;}
.wse1{word-spacing:-29.880659pt;}
.ws2b{word-spacing:-29.879582pt;}
.wsc9{word-spacing:-29.874202pt;}
.ws26f{word-spacing:-29.868821pt;}
.ws13f{word-spacing:-29.858059pt;}
.wsfe{word-spacing:-29.847298pt;}
.ws25d{word-spacing:-29.846760pt;}
.ws25c{word-spacing:-29.842455pt;}
.ws140{word-spacing:-29.841917pt;}
.ws13e{word-spacing:-29.836536pt;}
.ws5a{word-spacing:-29.835998pt;}
.ws61{word-spacing:-29.831155pt;}
.ws25b{word-spacing:-29.827927pt;}
.ws45{word-spacing:-29.823622pt;}
.ws60{word-spacing:-29.820394pt;}
.ws46{word-spacing:-29.819317pt;}
.ws20c{word-spacing:-29.818779pt;}
.ws210{word-spacing:-29.816627pt;}
.ws127{word-spacing:-29.812860pt;}
.ws10d{word-spacing:-29.811784pt;}
.ws149{word-spacing:-29.809632pt;}
.ws190{word-spacing:-29.746139pt;}
.ws5b{word-spacing:-29.727306pt;}
.ws125{word-spacing:-29.637984pt;}
.ws8e{word-spacing:-29.634756pt;}
.ws218{word-spacing:-29.626685pt;}
.wsde{word-spacing:-29.599781pt;}
.ws191{word-spacing:-29.585791pt;}
.wsbd{word-spacing:-29.579334pt;}
.ws193{word-spacing:-29.568572pt;}
.ws106{word-spacing:-29.519607pt;}
.ws122{word-spacing:-29.438357pt;}
.ws19a{word-spacing:-29.428133pt;}
.wsa9{word-spacing:-29.287694pt;}
.wse7{word-spacing:-29.286618pt;}
.ws280{word-spacing:-29.269400pt;}
.ws1b7{word-spacing:-29.266171pt;}
.ws164{word-spacing:-29.198373pt;}
.ws92{word-spacing:-29.186535pt;}
.ws19f{word-spacing:-29.157933pt;}
.ws1a1{word-spacing:-29.147794pt;}
.ws1a2{word-spacing:-29.146717pt;}
.ws175{word-spacing:-29.126270pt;}
.ws80{word-spacing:-29.104747pt;}
.wsf2{word-spacing:-29.091295pt;}
.ws24{word-spacing:-29.083224pt;}
.ws259{word-spacing:-29.073539pt;}
.ws15b{word-spacing:-29.053092pt;}
.ws5c{word-spacing:-29.019731pt;}
.ws63{word-spacing:-29.007893pt;}
.ws109{word-spacing:-29.005202pt;}
.wsb0{word-spacing:-28.997131pt;}
.wsfc{word-spacing:-28.970227pt;}
.wsed{word-spacing:-28.950856pt;}
.ws19b{word-spacing:-28.947090pt;}
.wsec{word-spacing:-28.928257pt;}
.wsc6{word-spacing:-28.919648pt;}
.wsee{word-spacing:-28.913191pt;}
.ws1eb{word-spacing:-28.907810pt;}
.ws11b{word-spacing:-28.905658pt;}
.ws1a5{word-spacing:-28.851850pt;}
.ws1b1{word-spacing:-28.827098pt;}
.ws119{word-spacing:-28.766295pt;}
.wsc5{word-spacing:-28.690426pt;}
.ws4c{word-spacing:-28.671055pt;}
.wsf8{word-spacing:-28.658141pt;}
.ws275{word-spacing:-28.652222pt;}
.ws222{word-spacing:-28.643075pt;}
.ws276{word-spacing:-28.637156pt;}
.ws233{word-spacing:-28.636618pt;}
.ws75{word-spacing:-28.550525pt;}
.ws1bb{word-spacing:-28.545144pt;}
.ws14b{word-spacing:-28.485955pt;}
.ws189{word-spacing:-28.463894pt;}
.ws258{word-spacing:-28.462280pt;}
.wscb{word-spacing:-28.443985pt;}
.ws128{word-spacing:-28.433761pt;}
.ws18b{word-spacing:-28.424614pt;}
.ws1c1{word-spacing:-28.419233pt;}
.ws214{word-spacing:-28.357892pt;}
.ws15f{word-spacing:-28.347131pt;}
.wsd6{word-spacing:-28.346054pt;}
.ws261{word-spacing:-28.329912pt;}
.ws1a4{word-spacing:-28.324531pt;}
.wsfb{word-spacing:-28.313770pt;}
.ws162{word-spacing:-28.312155pt;}
.ws13c{word-spacing:-28.303008pt;}
.ws27c{word-spacing:-28.248124pt;}
.ws23{word-spacing:-28.227677pt;}
.ws19d{word-spacing:-28.213149pt;}
.wsff{word-spacing:-28.211534pt;}
.ws1c3{word-spacing:-28.185168pt;}
.ws23b{word-spacing:-28.126518pt;}
.ws71{word-spacing:-28.085624pt;}
.ws1c4{word-spacing:-28.079167pt;}
.wsbb{word-spacing:-28.068943pt;}
.ws1b0{word-spacing:-28.036120pt;}
.ws141{word-spacing:-27.990922pt;}
.ws188{word-spacing:-27.947875pt;}
.ws1f1{word-spacing:-27.917743pt;}
.ws203{word-spacing:-27.913438pt;}
.ws1e8{word-spacing:-27.905225pt;}
.ws247{word-spacing:-27.884382pt;}
.ws246{word-spacing:-27.881153pt;}
.ws1fa{word-spacing:-27.834878pt;}
.ws226{word-spacing:-27.829498pt;}
.ws1b5{word-spacing:-27.759547pt;}
.ws178{word-spacing:-27.732643pt;}
.ws11c{word-spacing:-27.700358pt;}
.ws5d{word-spacing:-27.695516pt;}
.ws18a{word-spacing:-27.640093pt;}
.ws168{word-spacing:-27.608885pt;}
.ws1a6{word-spacing:-27.587362pt;}
.ws1c5{word-spacing:-27.500731pt;}
.ws1e3{word-spacing:-27.482521pt;}
.ws20a{word-spacing:-27.473827pt;}
.ws1e7{word-spacing:-27.463745pt;}
.ws16a{word-spacing:-27.442080pt;}
.ws26e{word-spacing:-27.425938pt;}
.ws1c6{word-spacing:-27.421633pt;}
.ws229{word-spacing:-27.420557pt;}
.ws23f{word-spacing:-27.418404pt;}
.ws240{word-spacing:-27.416790pt;}
.ws1e6{word-spacing:-27.414156pt;}
.ws241{word-spacing:-27.407105pt;}
.ws1e5{word-spacing:-27.382381pt;}
.ws129{word-spacing:-27.370515pt;}
.ws23a{word-spacing:-27.368901pt;}
.ws1cf{word-spacing:-27.368420pt;}
.ws43{word-spacing:-27.365135pt;}
.ws42{word-spacing:-27.357063pt;}
.ws15a{word-spacing:-27.354911pt;}
.ws1e4{word-spacing:-27.337608pt;}
.ws14e{word-spacing:-27.307560pt;}
.ws1ea{word-spacing:-27.269243pt;}
.ws1ec{word-spacing:-27.255763pt;}
.wsf7{word-spacing:-27.245143pt;}
.wsd4{word-spacing:-27.129994pt;}
.ws8a{word-spacing:-27.100937pt;}
.ws27f{word-spacing:-27.096633pt;}
.ws1f7{word-spacing:-27.094480pt;}
.ws62{word-spacing:-27.092328pt;}
.ws8b{word-spacing:-27.070267pt;}
.ws1ef{word-spacing:-27.029486pt;}
.ws1d5{word-spacing:-27.015043pt;}
.ws14a{word-spacing:-26.914762pt;}
.ws4b{word-spacing:-26.891461pt;}
.ws1f0{word-spacing:-26.859056pt;}
.ws138{word-spacing:-26.853959pt;}
.ws230{word-spacing:-26.844811pt;}
.wsa8{word-spacing:-26.839430pt;}
.ws50{word-spacing:-26.836740pt;}
.ws228{word-spacing:-26.834050pt;}
.ws51{word-spacing:-26.831897pt;}
.ws132{word-spacing:-26.831359pt;}
.ws277{word-spacing:-26.821674pt;}
.ws38{word-spacing:-26.773360pt;}
.ws39{word-spacing:-26.764212pt;}
.ws37{word-spacing:-26.762768pt;}
.ws14{word-spacing:-26.761324pt;}
.ws3a{word-spacing:-26.759880pt;}
.ws0{word-spacing:-26.756028pt;}
.ws33{word-spacing:-26.752658pt;}
.ws34{word-spacing:-26.751695pt;}
.ws1d6{word-spacing:-26.748806pt;}
.ws36{word-spacing:-26.746881pt;}
.ws16{word-spacing:-26.746399pt;}
.ws1c{word-spacing:-26.744473pt;}
.ws15{word-spacing:-26.743992pt;}
.ws1b{word-spacing:-26.743029pt;}
.ws1a{word-spacing:-26.742548pt;}
.ws35{word-spacing:-26.742066pt;}
.ws19{word-spacing:-26.741103pt;}
.ws69{word-spacing:-26.739659pt;}
.ws18{word-spacing:-26.739178pt;}
.ws3f{word-spacing:-26.738215pt;}
.ws3e{word-spacing:-26.737733pt;}
.ws40{word-spacing:-26.737252pt;}
.ws1{word-spacing:-26.736770pt;}
.ws13{word-spacing:-26.734363pt;}
.ws11{word-spacing:-26.734183pt;}
.ws3d{word-spacing:-26.731956pt;}
.ws32{word-spacing:-26.730030pt;}
.ws17{word-spacing:-26.729549pt;}
.ws3b{word-spacing:-26.729014pt;}
.wsa6{word-spacing:-26.683387pt;}
.ws15e{word-spacing:-26.651640pt;}
.ws136{word-spacing:-26.592990pt;}
.ws118{word-spacing:-26.585457pt;}
.ws216{word-spacing:-26.559629pt;}
.ws130{word-spacing:-26.545101pt;}
.ws227{word-spacing:-26.538106pt;}
.ws6b{word-spacing:-26.536048pt;}
.ws22c{word-spacing:-26.474074pt;}
.wsfa{word-spacing:-26.375605pt;}
.ws117{word-spacing:-26.369148pt;}
.ws145{word-spacing:-26.349778pt;}
.ws1d0{word-spacing:-26.330916pt;}
.ws157{word-spacing:-26.330407pt;}
.ws1f3{word-spacing:-26.301888pt;}
.ws1e9{word-spacing:-26.287105pt;}
.ws5f{word-spacing:-26.181359pt;}
.ws19c{word-spacing:-26.167368pt;}
.wsd7{word-spacing:-26.134546pt;}
.ws225{word-spacing:-26.123784pt;}
.ws11d{word-spacing:-26.102261pt;}
.ws213{word-spacing:-25.944065pt;}
.wsdc{word-spacing:-25.849363pt;}
.ws4f{word-spacing:-25.831607pt;}
.ws9c{word-spacing:-25.693858pt;}
.ws103{word-spacing:-25.639512pt;}
.ws1d1{word-spacing:-25.626088pt;}
.ws23d{word-spacing:-25.486697pt;}
.ws139{word-spacing:-25.478088pt;}
.wscf{word-spacing:-25.470555pt;}
.ws1d8{word-spacing:-25.338187pt;}
.ws13a{word-spacing:-25.232185pt;}
.ws1d4{word-spacing:-25.187496pt;}
.ws9b{word-spacing:-25.153088pt;}
.ws253{word-spacing:-25.093361pt;}
.ws273{word-spacing:-24.847458pt;}
.ws16e{word-spacing:-24.731856pt;}
.ws1cd{word-spacing:-24.656440pt;}
.ws170{word-spacing:-24.655392pt;}
.ws16f{word-spacing:-24.375024pt;}
.ws271{word-spacing:-24.298560pt;}
.ws16c{word-spacing:-24.277320pt;}
.ws1ee{word-spacing:-24.270353pt;}
.ws1d2{word-spacing:-24.256873pt;}
.ws1da{word-spacing:-24.247584pt;}
.ws1dc{word-spacing:-24.188112pt;}
.ws200{word-spacing:-24.171120pt;}
.ws265{word-spacing:-24.158376pt;}
.ws1ca{word-spacing:-24.133964pt;}
.wsb7{word-spacing:-24.107400pt;}
.ws1ed{word-spacing:-24.107145pt;}
.ws79{word-spacing:-24.103152pt;}
.ws17c{word-spacing:-24.098904pt;}
.ws266{word-spacing:-24.090408pt;}
.ws181{word-spacing:-24.073416pt;}
.ws283{word-spacing:-24.069168pt;}
.ws174{word-spacing:-24.064920pt;}
.ws1d7{word-spacing:-24.061483pt;}
.ws172{word-spacing:-24.060672pt;}
.wsb8{word-spacing:-24.056424pt;}
.ws263{word-spacing:-24.052176pt;}
.ws173{word-spacing:-24.047928pt;}
.wsba{word-spacing:-24.039432pt;}
.wsb9{word-spacing:-24.022440pt;}
.ws1fd{word-spacing:-24.013944pt;}
.ws1fe{word-spacing:-24.009696pt;}
.ws288{word-spacing:-23.996952pt;}
.ws1de{word-spacing:-23.984208pt;}
.ws201{word-spacing:-23.967216pt;}
.ws7a{word-spacing:-23.962968pt;}
.ws267{word-spacing:-23.958720pt;}
.ws7c{word-spacing:-23.954472pt;}
.ws7b{word-spacing:-23.945976pt;}
.ws268{word-spacing:-23.941728pt;}
.ws150{word-spacing:-23.941332pt;}
.ws180{word-spacing:-23.924736pt;}
.ws202{word-spacing:-23.907744pt;}
.ws26b{word-spacing:-23.873760pt;}
.ws1ff{word-spacing:-23.869512pt;}
.ws26c{word-spacing:-23.856768pt;}
.ws1db{word-spacing:-23.839776pt;}
.ws1e2{word-spacing:-23.814288pt;}
.ws272{word-spacing:-23.784552pt;}
.ws17e{word-spacing:-23.767560pt;}
.ws17f{word-spacing:-23.763312pt;}
.ws6f{word-spacing:-23.750568pt;}
.ws6e{word-spacing:-23.742072pt;}
.ws284{word-spacing:-23.737824pt;}
.ws285{word-spacing:-23.733576pt;}
.ws185{word-spacing:-23.720832pt;}
.ws184{word-spacing:-23.712336pt;}
.ws1d3{word-spacing:-23.711401pt;}
.ws220{word-spacing:-23.703840pt;}
.ws1e0{word-spacing:-23.691096pt;}
.ws2e{word-spacing:-23.690246pt;}
.ws2f{word-spacing:-23.688547pt;}
.ws1df{word-spacing:-23.682600pt;}
.wsb6{word-spacing:-23.678352pt;}
.ws282{word-spacing:-23.674104pt;}
.wsb5{word-spacing:-23.669856pt;}
.ws287{word-spacing:-23.648616pt;}
.ws70{word-spacing:-23.635872pt;}
.ws26d{word-spacing:-23.631624pt;}
.ws3{word-spacing:-23.623128pt;}
.ws86{word-spacing:-23.618880pt;}
.ws6c{word-spacing:-23.615057pt;}
.ws6a{word-spacing:-23.614632pt;}
.ws182{word-spacing:-23.610384pt;}
.ws30{word-spacing:-23.609534pt;}
.ws186{word-spacing:-23.606136pt;}
.wsac{word-spacing:-23.601888pt;}
.ws2{word-spacing:-23.597640pt;}
.ws187{word-spacing:-23.596790pt;}
.ws7d{word-spacing:-23.594242pt;}
.ws5{word-spacing:-23.593392pt;}
.ws31{word-spacing:-23.592118pt;}
.ws85{word-spacing:-23.589144pt;}
.ws6d{word-spacing:-23.567479pt;}
.ws21b{word-spacing:-23.457456pt;}
.ws270{word-spacing:-23.321520pt;}
.ws10c{word-spacing:-23.314468pt;}
.ws219{word-spacing:-23.279040pt;}
.ws169{word-spacing:-23.271960pt;}
.ws1ad{word-spacing:-23.215320pt;}
.wsaa{word-spacing:-23.143104pt;}
.ws20d{word-spacing:-23.126140pt;}
.wsab{word-spacing:-23.104872pt;}
.ws1f6{word-spacing:-22.879700pt;}
.wsa7{word-spacing:-22.793069pt;}
.ws24c{word-spacing:-22.791455pt;}
.ws171{word-spacing:-22.714056pt;}
.ws1a8{word-spacing:-22.696214pt;}
.ws1b6{word-spacing:-22.663930pt;}
.ws59{word-spacing:-22.659625pt;}
.ws27{word-spacing:-22.647787pt;}
.wsb4{word-spacing:-22.610122pt;}
.ws242{word-spacing:-22.595593pt;}
.ws24d{word-spacing:-22.578913pt;}
.ws199{word-spacing:-22.520800pt;}
.ws281{word-spacing:-22.497408pt;}
.ws102{word-spacing:-22.475602pt;}
.ws74{word-spacing:-22.459459pt;}
.ws217{word-spacing:-22.454078pt;}
.ws21a{word-spacing:-22.412448pt;}
.ws221{word-spacing:-22.395428pt;}
.wse0{word-spacing:-22.394352pt;}
.ws47{word-spacing:-22.374981pt;}
.wsaf{word-spacing:-22.373366pt;}
.wsf5{word-spacing:-22.372290pt;}
.ws1ce{word-spacing:-22.275974pt;}
.ws26a{word-spacing:-22.217040pt;}
.ws53{word-spacing:-22.215171pt;}
.ws21c{word-spacing:-22.183056pt;}
.ws1aa{word-spacing:-22.169434pt;}
.ws52{word-spacing:-22.159211pt;}
.ws21d{word-spacing:-22.149072pt;}
.ws235{word-spacing:-22.102712pt;}
.ws16d{word-spacing:-22.102344pt;}
.ws2c{word-spacing:-22.016534pt;}
.ws17d{word-spacing:-20.407392pt;}
.ws255{word-spacing:-18.914276pt;}
.ws22e{word-spacing:-18.899918pt;}
.wse{word-spacing:-18.672100pt;}
.wsd{word-spacing:-18.665415pt;}
.ws192{word-spacing:-18.352026pt;}
.ws1a0{word-spacing:-17.927538pt;}
.ws12{word-spacing:-16.702034pt;}
.ws1a9{word-spacing:-4.314863pt;}
.ws1d{word-spacing:0.000000pt;}
.ws1d9{word-spacing:1.329586pt;}
.ws264{word-spacing:1.482517pt;}
.ws262{word-spacing:1.605352pt;}
.ws16b{word-spacing:1.649141pt;}
.ws1fc{word-spacing:1.704187pt;}
.ws1dd{word-spacing:1.763263pt;}
.ws1e1{word-spacing:2.029013pt;}
.ws17b{word-spacing:2.142725pt;}
.ws183{word-spacing:2.182837pt;}
.ws21f{word-spacing:2.186571pt;}
.ws286{word-spacing:2.296549pt;}
.ws269{word-spacing:2.341995pt;}
.ws105{word-spacing:2.376773pt;}
.ws121{word-spacing:2.379322pt;}
.ws2d{word-spacing:1120.234773pt;}
._2{margin-left:-1.598636pt;}
._3{width:0.923883pt;}
._6{width:9.836895pt;}
._7{width:10.819656pt;}
._4{width:13.880312pt;}
._5{width:21.469392pt;}
._0{width:23.606136pt;}
._1{width:1162.735715pt;}
.fs4{font-size:25.488000pt;}
.fs1{font-size:28.885333pt;}
.fsb{font-size:31.856000pt;}
.fsa{font-size:32.282667pt;}
.fs7{font-size:36.106667pt;}
.fs8{font-size:39.648000pt;}
.fs6{font-size:40.352000pt;}
.fs2{font-size:42.480000pt;}
.fs0{font-size:48.144000pt;}
.fs3{font-size:53.808000pt;}
.fs9{font-size:56.634667pt;}
.fs5{font-size:101.946667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:74.545421pt;}
.y3{bottom:74.545467pt;}
.y2{bottom:86.581067pt;}
.y253{bottom:127.387108pt;}
.y196{bottom:127.387816pt;}
.y257{bottom:127.387995pt;}
.y8f{bottom:127.388175pt;}
.y82{bottom:127.388354pt;}
.y4{bottom:127.388667pt;}
.y22f{bottom:127.413190pt;}
.y233{bottom:127.540354pt;}
.y1c0{bottom:127.761908pt;}
.y21e{bottom:127.811008pt;}
.y15f{bottom:127.965814pt;}
.y1c4{bottom:128.347287pt;}
.yef{bottom:128.936570pt;}
.y97{bottom:130.892533pt;}
.y114{bottom:130.893067pt;}
.ybf{bottom:130.893467pt;}
.y252{bottom:139.422754pt;}
.y183{bottom:139.422791pt;}
.y195{bottom:139.423462pt;}
.y20f{bottom:139.423641pt;}
.y8e{bottom:139.423821pt;}
.y232{bottom:139.576000pt;}
.y1c3{bottom:140.382933pt;}
.y81{bottom:142.928533pt;}
.ybe{bottom:142.928800pt;}
.y22e{bottom:143.696836pt;}
.y1bf{bottom:144.045554pt;}
.y21d{bottom:144.094654pt;}
.y15e{bottom:144.249460pt;}
.yee{bottom:145.220216pt;}
.y182{bottom:151.458437pt;}
.ycd{bottom:151.458749pt;}
.y194{bottom:151.459108pt;}
.y80{bottom:151.459287pt;}
.ybd{bottom:151.459687pt;}
.y251{bottom:154.962800pt;}
.y8d{bottom:154.964000pt;}
.y22d{bottom:159.980482pt;}
.y21c{bottom:160.378300pt;}
.y15d{bottom:160.533106pt;}
.y113{bottom:161.499416pt;}
.yed{bottom:161.503862pt;}
.y250{bottom:163.493554pt;}
.y26c{bottom:163.493903pt;}
.y181{bottom:163.494083pt;}
.ycc{bottom:163.494395pt;}
.y193{bottom:163.494754pt;}
.y96{bottom:164.389286pt;}
.y7f{bottom:166.999333pt;}
.ybc{bottom:166.999733pt;}
.y1be{bottom:168.470351pt;}
.y26b{bottom:175.529549pt;}
.y180{bottom:175.529729pt;}
.ycb{bottom:175.530041pt;}
.y22c{bottom:176.264128pt;}
.y21b{bottom:176.661946pt;}
.y15c{bottom:176.816752pt;}
.y112{bottom:177.783062pt;}
.y131{bottom:177.783873pt;}
.y152{bottom:177.784485pt;}
.yec{bottom:177.787508pt;}
.y24f{bottom:179.033733pt;}
.y192{bottom:179.034800pt;}
.y95{bottom:180.672932pt;}
.y38{bottom:183.398873pt;}
.y1bd{bottom:184.753997pt;}
.y191{bottom:187.564837pt;}
.y1d6{bottom:187.565016pt;}
.y26a{bottom:187.565195pt;}
.y17f{bottom:187.565375pt;}
.yca{bottom:187.565687pt;}
.y8c{bottom:190.285324pt;}
.y24e{bottom:191.069067pt;}
.y22b{bottom:192.547774pt;}
.y21a{bottom:192.945592pt;}
.y111{bottom:194.066708pt;}
.y130{bottom:194.067519pt;}
.y151{bottom:194.068131pt;}
.yeb{bottom:194.071154pt;}
.y1b3{bottom:194.072841pt;}
.y94{bottom:196.956578pt;}
.y24d{bottom:199.599595pt;}
.y190{bottom:199.600483pt;}
.y1d5{bottom:199.600662pt;}
.y20e{bottom:199.600841pt;}
.y17e{bottom:199.601021pt;}
.y1d{bottom:199.647891pt;}
.y37{bottom:199.682519pt;}
.y1bc{bottom:201.037643pt;}
.y15b{bottom:201.241548pt;}
.y7d{bottom:201.701752pt;}
.yc9{bottom:203.105733pt;}
.y256{bottom:204.904308pt;}
.y8b{bottom:206.568970pt;}
.y219{bottom:209.229238pt;}
.y110{bottom:210.350354pt;}
.yea{bottom:210.350630pt;}
.y12f{bottom:210.351165pt;}
.y1b2{bottom:210.356487pt;}
.y24c{bottom:211.635241pt;}
.y18f{bottom:211.636129pt;}
.y1d4{bottom:211.636308pt;}
.y20d{bottom:211.636487pt;}
.y1c{bottom:213.099324pt;}
.y2b{bottom:213.099565pt;}
.y93{bottom:213.240224pt;}
.y17d{bottom:215.141200pt;}
.y36{bottom:215.966165pt;}
.y22a{bottom:216.972570pt;}
.y1bb{bottom:217.321289pt;}
.y15a{bottom:217.525194pt;}
.y7c{bottom:217.985398pt;}
.ybb{bottom:218.492842pt;}
.y150{bottom:218.492928pt;}
.y255{bottom:221.187954pt;}
.y8a{bottom:222.852616pt;}
.y24b{bottom:223.670887pt;}
.y18e{bottom:223.671775pt;}
.y1d3{bottom:223.671954pt;}
.y269{bottom:223.672133pt;}
.y218{bottom:225.512884pt;}
.y1b{bottom:226.550758pt;}
.y2a{bottom:226.550878pt;}
.y10f{bottom:226.634000pt;}
.ye9{bottom:226.634276pt;}
.y12e{bottom:226.634811pt;}
.y1b1{bottom:226.637591pt;}
.y17c{bottom:227.176533pt;}
.y35{bottom:232.249811pt;}
.y229{bottom:233.256216pt;}
.y1ba{bottom:233.604935pt;}
.y159{bottom:233.808840pt;}
.y7b{bottom:234.269044pt;}
.yba{bottom:234.776488pt;}
.y14f{bottom:234.776574pt;}
.y18d{bottom:235.707421pt;}
.y254{bottom:237.471600pt;}
.y92{bottom:237.665021pt;}
.y89{bottom:239.136262pt;}
.y24a{bottom:239.210933pt;}
.y1d2{bottom:239.212000pt;}
.yc8{bottom:239.714931pt;}
.y1a{bottom:240.002191pt;}
.y217{bottom:241.796530pt;}
.y10e{bottom:242.917646pt;}
.ye8{bottom:242.917922pt;}
.y1b0{bottom:242.921237pt;}
.y249{bottom:247.741687pt;}
.y34{bottom:248.533457pt;}
.y228{bottom:249.539862pt;}
.y1b9{bottom:249.888581pt;}
.y158{bottom:250.092486pt;}
.y12d{bottom:251.059607pt;}
.yb9{bottom:251.060134pt;}
.y14e{bottom:251.060220pt;}
.y18c{bottom:251.247467pt;}
.y1f3{bottom:252.833563pt;}
.y29{bottom:253.453505pt;}
.y19{bottom:253.453625pt;}
.y91{bottom:253.948667pt;}
.y88{bottom:255.419908pt;}
.yc7{bottom:255.998577pt;}
.y216{bottom:258.080176pt;}
.y7a{bottom:258.693840pt;}
.y10d{bottom:259.201292pt;}
.ye7{bottom:259.201568pt;}
.y1af{bottom:259.204883pt;}
.y248{bottom:263.281867pt;}
.y33{bottom:264.817103pt;}
.y227{bottom:265.823508pt;}
.y1b8{bottom:266.172227pt;}
.y157{bottom:266.376132pt;}
.y28{bottom:266.904938pt;}
.y18{bottom:266.905059pt;}
.y12c{bottom:267.343253pt;}
.yb8{bottom:267.343780pt;}
.y14d{bottom:267.343866pt;}
.y17b{bottom:267.345154pt;}
.y1f2{bottom:269.117209pt;}
.y87{bottom:271.703554pt;}
.yc6{bottom:272.282223pt;}
.y215{bottom:274.363822pt;}
.y79{bottom:274.977486pt;}
.y10c{bottom:275.484938pt;}
.ye6{bottom:275.485214pt;}
.y1ae{bottom:275.488529pt;}
.y259{bottom:279.118754pt;}
.y27{bottom:280.356372pt;}
.y17{bottom:280.356492pt;}
.y32{bottom:281.100749pt;}
.y1d1{bottom:281.860087pt;}
.y226{bottom:282.107154pt;}
.y1b7{bottom:282.455873pt;}
.y18b{bottom:282.456887pt;}
.y156{bottom:282.659778pt;}
.y12b{bottom:283.626899pt;}
.yb7{bottom:283.627426pt;}
.y17a{bottom:283.627469pt;}
.y14c{bottom:283.627512pt;}
.y86{bottom:287.987200pt;}
.yc5{bottom:288.565869pt;}
.y214{bottom:290.647468pt;}
.y258{bottom:291.154400pt;}
.y78{bottom:291.261132pt;}
.y10b{bottom:291.768584pt;}
.y1ad{bottom:291.772175pt;}
.y99{bottom:291.864887pt;}
.y1f1{bottom:293.542005pt;}
.y26{bottom:293.807685pt;}
.y16{bottom:293.807926pt;}
.y31{bottom:297.384395pt;}
.y1d0{bottom:298.143733pt;}
.y225{bottom:298.389873pt;}
.y18a{bottom:298.739378pt;}
.ye5{bottom:299.910011pt;}
.y12a{bottom:299.910545pt;}
.y20c{bottom:299.910760pt;}
.yb6{bottom:299.911072pt;}
.y179{bottom:299.911115pt;}
.y14b{bottom:299.911158pt;}
.y98{bottom:303.900533pt;}
.yc4{bottom:304.849515pt;}
.y1b6{bottom:306.880669pt;}
.y155{bottom:307.084575pt;}
.y25{bottom:307.258998pt;}
.y15{bottom:307.259359pt;}
.y77{bottom:307.544778pt;}
.y247{bottom:308.051836pt;}
.y10a{bottom:308.052230pt;}
.y1ac{bottom:308.055821pt;}
.y1f0{bottom:309.825651pt;}
.y30{bottom:313.668041pt;}
.y224{bottom:314.673519pt;}
.y189{bottom:315.023024pt;}
.y213{bottom:315.072264pt;}
.ye4{bottom:316.193657pt;}
.y129{bottom:316.194191pt;}
.y20b{bottom:316.194406pt;}
.y178{bottom:316.194761pt;}
.y14a{bottom:316.194804pt;}
.y85{bottom:320.552667pt;}
.y24{bottom:320.710432pt;}
.y14{bottom:320.710793pt;}
.yc3{bottom:321.133161pt;}
.y1b5{bottom:323.164315pt;}
.y154{bottom:323.368221pt;}
.y76{bottom:323.828424pt;}
.y246{bottom:324.335482pt;}
.yb5{bottom:324.335868pt;}
.y109{bottom:324.335876pt;}
.y1ab{bottom:324.338855pt;}
.y1ef{bottom:326.109297pt;}
.y2f{bottom:329.951687pt;}
.y1cf{bottom:330.709246pt;}
.y188{bottom:331.306670pt;}
.y212{bottom:331.355910pt;}
.ye3{bottom:332.477303pt;}
.y128{bottom:332.477837pt;}
.y20a{bottom:332.478052pt;}
.y23{bottom:334.161745pt;}
.y13{bottom:334.162227pt;}
.yc2{bottom:337.416807pt;}
.y223{bottom:339.098315pt;}
.y1b4{bottom:339.447961pt;}
.y153{bottom:339.651867pt;}
.y75{bottom:340.112070pt;}
.y149{bottom:340.618808pt;}
.y245{bottom:340.619128pt;}
.yb4{bottom:340.619514pt;}
.y108{bottom:340.619522pt;}
.y177{bottom:340.619558pt;}
.y1aa{bottom:340.622501pt;}
.y1ee{bottom:342.392943pt;}
.y1ce{bottom:344.160680pt;}
.y2e{bottom:346.235248pt;}
.y22{bottom:347.613179pt;}
.y12{bottom:347.613660pt;}
.y211{bottom:347.639556pt;}
.ye2{bottom:348.760949pt;}
.y127{bottom:348.761483pt;}
.y209{bottom:348.761698pt;}
.y222{bottom:355.381692pt;}
.y187{bottom:355.731338pt;}
.y74{bottom:356.395313pt;}
.y148{bottom:356.902050pt;}
.y176{bottom:356.902135pt;}
.y244{bottom:356.902371pt;}
.yb3{bottom:356.902756pt;}
.y107{bottom:356.902765pt;}
.y1a9{bottom:356.905743pt;}
.y1cd{bottom:357.611993pt;}
.y1ed{bottom:358.676185pt;}
.y21{bottom:361.064492pt;}
.y11{bottom:361.064974pt;}
.yc1{bottom:361.841158pt;}
.y2d{bottom:362.518491pt;}
.y210{bottom:363.922933pt;}
.ye1{bottom:365.044325pt;}
.y126{bottom:365.044860pt;}
.y208{bottom:365.045075pt;}
.y84{bottom:369.400223pt;}
.y1cc{bottom:371.063306pt;}
.y221{bottom:371.664800pt;}
.y186{bottom:372.014581pt;}
.y73{bottom:372.678555pt;}
.y147{bottom:373.185427pt;}
.y175{bottom:373.185512pt;}
.y243{bottom:373.185748pt;}
.yb2{bottom:373.186005pt;}
.y106{bottom:373.186142pt;}
.y1a8{bottom:373.188985pt;}
.y20{bottom:374.515805pt;}
.y10{bottom:374.516287pt;}
.y1ec{bottom:374.959562pt;}
.y161{bottom:376.471206pt;}
.yc0{bottom:378.124400pt;}
.y2c{bottom:378.801733pt;}
.y125{bottom:381.328103pt;}
.y1cb{bottom:384.514740pt;}
.y83{bottom:385.683600pt;}
.y1f{bottom:387.967119pt;}
.yf{bottom:387.967653pt;}
.y185{bottom:388.297823pt;}
.y160{bottom:388.506533pt;}
.y72{bottom:388.961932pt;}
.ye0{bottom:389.468584pt;}
.y146{bottom:389.468670pt;}
.y174{bottom:389.468755pt;}
.y242{bottom:389.468990pt;}
.yb1{bottom:389.469247pt;}
.y1a7{bottom:389.472362pt;}
.y1eb{bottom:391.242805pt;}
.y105{bottom:397.609720pt;}
.y124{bottom:397.611345pt;}
.y1ca{bottom:397.966053pt;}
.y220{bottom:403.843366pt;}
.y184{bottom:404.581200pt;}
.y71{bottom:405.245174pt;}
.ydf{bottom:405.751826pt;}
.y145{bottom:405.751912pt;}
.y173{bottom:405.751997pt;}
.y241{bottom:405.752233pt;}
.yb0{bottom:405.752490pt;}
.y1a6{bottom:405.755605pt;}
.y1ea{bottom:407.526047pt;}
.y231{bottom:410.879766pt;}
.y1c9{bottom:411.417366pt;}
.y104{bottom:413.893097pt;}
.y123{bottom:413.894588pt;}
.y1e{bottom:414.869865pt;}
.ye{bottom:414.870400pt;}
.y21f{bottom:415.878800pt;}
.ycf{bottom:419.032673pt;}
.y70{bottom:421.528417pt;}
.yde{bottom:422.035203pt;}
.y144{bottom:422.035289pt;}
.y172{bottom:422.035374pt;}
.y240{bottom:422.035610pt;}
.y207{bottom:422.035618pt;}
.yaf{bottom:422.035653pt;}
.y1a5{bottom:422.038847pt;}
.y90{bottom:422.054933pt;}
.y230{bottom:422.915200pt;}
.y1e9{bottom:423.809424pt;}
.y1c8{bottom:424.868800pt;}
.y103{bottom:430.176339pt;}
.y122{bottom:430.177965pt;}
.yce{bottom:431.068000pt;}
.y5b{bottom:431.546800pt;}
.y4b{bottom:431.546824pt;}
.y6f{bottom:437.811794pt;}
.ydd{bottom:438.318446pt;}
.y143{bottom:438.318532pt;}
.y23f{bottom:438.318852pt;}
.y206{bottom:438.318860pt;}
.yae{bottom:438.318896pt;}
.y1a4{bottom:438.322224pt;}
.y1e8{bottom:440.092667pt;}
.y198{bottom:443.643766pt;}
.y102{bottom:446.459582pt;}
.y171{bottom:446.459632pt;}
.y121{bottom:446.461207pt;}
.ydc{bottom:454.601688pt;}
.y142{bottom:454.601774pt;}
.y23e{bottom:454.602095pt;}
.y205{bottom:454.602103pt;}
.yad{bottom:454.602138pt;}
.y1a3{bottom:454.605467pt;}
.y1c2{bottom:454.750566pt;}
.y197{bottom:455.679200pt;}
.y5a{bottom:458.449426pt;}
.y4a{bottom:458.449451pt;}
.yd{bottom:458.845600pt;}
.y6e{bottom:462.236052pt;}
.y101{bottom:462.742959pt;}
.y170{bottom:462.743009pt;}
.y1c1{bottom:466.786000pt;}
.ydb{bottom:470.885065pt;}
.y141{bottom:470.885151pt;}
.y120{bottom:470.885408pt;}
.y268{bottom:470.885436pt;}
.y23d{bottom:470.885471pt;}
.y204{bottom:470.885480pt;}
.yac{bottom:470.885515pt;}
.y1e7{bottom:472.658247pt;}
.y6d{bottom:478.519429pt;}
.y100{bottom:479.026201pt;}
.y16f{bottom:479.026252pt;}
.y1e6{bottom:486.109560pt;}
.yda{bottom:487.168307pt;}
.y140{bottom:487.168394pt;}
.y11f{bottom:487.168651pt;}
.y267{bottom:487.168679pt;}
.y23c{bottom:487.168714pt;}
.y203{bottom:487.168722pt;}
.yab{bottom:487.168758pt;}
.y1a2{bottom:487.170959pt;}
.y6c{bottom:494.802671pt;}
.yff{bottom:495.309444pt;}
.y16e{bottom:495.309494pt;}
.y59{bottom:498.803607pt;}
.y49{bottom:498.803631pt;}
.y1e5{bottom:499.560873pt;}
.yd9{bottom:503.451550pt;}
.y13f{bottom:503.451636pt;}
.yaa{bottom:503.451672pt;}
.y11e{bottom:503.451893pt;}
.y266{bottom:503.451921pt;}
.y23b{bottom:503.451956pt;}
.y202{bottom:503.451965pt;}
.y1a1{bottom:503.454133pt;}
.yc{bottom:509.144482pt;}
.y6b{bottom:511.085914pt;}
.yfe{bottom:511.592686pt;}
.y16d{bottom:511.592737pt;}
.y1e4{bottom:513.012307pt;}
.yd8{bottom:519.734927pt;}
.y13e{bottom:519.735013pt;}
.ya9{bottom:519.735049pt;}
.y23a{bottom:519.735171pt;}
.y11d{bottom:519.735270pt;}
.y265{bottom:519.735298pt;}
.y201{bottom:519.735342pt;}
.y58{bottom:525.706233pt;}
.y48{bottom:525.706258pt;}
.y1e3{bottom:526.463620pt;}
.y6a{bottom:527.369156pt;}
.yfd{bottom:527.876063pt;}
.y16c{bottom:527.876114pt;}
.y1c7{bottom:536.018169pt;}
.y13d{bottom:536.018255pt;}
.ya8{bottom:536.018292pt;}
.y239{bottom:536.018413pt;}
.y264{bottom:536.018540pt;}
.yb{bottom:537.463227pt;}
.y1e2{bottom:539.914933pt;}
.y69{bottom:543.652491pt;}
.yd7{bottom:544.159185pt;}
.yfc{bottom:544.159305pt;}
.y16b{bottom:544.159356pt;}
.y200{bottom:544.159429pt;}
.y11c{bottom:544.159528pt;}
.y1c6{bottom:552.301412pt;}
.y13c{bottom:552.301498pt;}
.ya7{bottom:552.301534pt;}
.y1a0{bottom:552.301647pt;}
.y238{bottom:552.301656pt;}
.y68{bottom:559.935570pt;}
.yd6{bottom:560.442562pt;}
.yfb{bottom:560.442682pt;}
.y16a{bottom:560.442733pt;}
.y1ff{bottom:560.442806pt;}
.y263{bottom:560.442825pt;}
.y11b{bottom:560.442905pt;}
.ya{bottom:565.781972pt;}
.y57{bottom:566.060534pt;}
.y47{bottom:566.060559pt;}
.y1c5{bottom:568.584789pt;}
.y13b{bottom:568.584875pt;}
.y19f{bottom:568.585024pt;}
.y237{bottom:568.585033pt;}
.y1e1{bottom:569.648491pt;}
.y67{bottom:576.218947pt;}
.yd5{bottom:576.725805pt;}
.yfa{bottom:576.725925pt;}
.ya6{bottom:576.725927pt;}
.y169{bottom:576.725976pt;}
.y1fe{bottom:576.726048pt;}
.y262{bottom:576.726068pt;}
.y56{bottom:579.511847pt;}
.y46{bottom:579.511872pt;}
.y11a{bottom:584.867164pt;}
.y19e{bottom:584.868031pt;}
.y1e0{bottom:585.931733pt;}
.y66{bottom:592.502189pt;}
.y55{bottom:592.963161pt;}
.y45{bottom:592.963185pt;}
.yd4{bottom:593.009047pt;}
.y13a{bottom:593.009133pt;}
.yf9{bottom:593.009167pt;}
.ya5{bottom:593.009170pt;}
.y168{bottom:593.009218pt;}
.y1fd{bottom:593.009291pt;}
.y261{bottom:593.009310pt;}
.y9{bottom:594.100717pt;}
.y119{bottom:601.150406pt;}
.y19d{bottom:601.151274pt;}
.y54{bottom:606.414474pt;}
.y44{bottom:606.414498pt;}
.y65{bottom:608.785431pt;}
.yd3{bottom:609.292289pt;}
.y1fc{bottom:609.292332pt;}
.y139{bottom:609.292376pt;}
.yf8{bottom:609.292410pt;}
.ya4{bottom:609.292412pt;}
.y167{bottom:609.292460pt;}
.y236{bottom:609.292490pt;}
.y260{bottom:617.433703pt;}
.y118{bottom:617.433783pt;}
.y19c{bottom:617.434651pt;}
.y1df{bottom:618.497196pt;}
.y53{bottom:619.865908pt;}
.y43{bottom:619.865932pt;}
.y64{bottom:625.068808pt;}
.yd2{bottom:625.575666pt;}
.y1fb{bottom:625.575709pt;}
.yf7{bottom:625.575787pt;}
.ya3{bottom:625.575789pt;}
.y235{bottom:625.575824pt;}
.y166{bottom:625.575837pt;}
.y8{bottom:629.978553pt;}
.y1de{bottom:631.948750pt;}
.y138{bottom:633.716768pt;}
.y25f{bottom:633.716811pt;}
.y117{bottom:633.716891pt;}
.y19b{bottom:633.717893pt;}
.yd1{bottom:641.858909pt;}
.y1fa{bottom:641.858951pt;}
.y234{bottom:641.859023pt;}
.yf6{bottom:641.859029pt;}
.ya2{bottom:641.859031pt;}
.y165{bottom:641.859080pt;}
.y1dd{bottom:645.400063pt;}
.y52{bottom:646.768534pt;}
.y42{bottom:646.768558pt;}
.y63{bottom:649.492810pt;}
.y116{bottom:649.999925pt;}
.y137{bottom:650.000011pt;}
.y25e{bottom:650.000053pt;}
.yd0{bottom:658.142286pt;}
.y1f9{bottom:658.142328pt;}
.yf5{bottom:658.142406pt;}
.ya1{bottom:658.142408pt;}
.y164{bottom:658.142457pt;}
.y7{bottom:658.297298pt;}
.y1dc{bottom:658.851376pt;}
.y62{bottom:665.776052pt;}
.y115{bottom:666.283302pt;}
.y136{bottom:666.283388pt;}
.y25d{bottom:666.283430pt;}
.y1db{bottom:672.302810pt;}
.y19a{bottom:674.425528pt;}
.y1f8{bottom:674.425571pt;}
.yf4{bottom:674.425648pt;}
.y163{bottom:674.425699pt;}
.y61{bottom:682.059429pt;}
.ya0{bottom:682.566544pt;}
.y135{bottom:682.566630pt;}
.y25c{bottom:682.566673pt;}
.y1da{bottom:685.754123pt;}
.y6{bottom:686.616043pt;}
.y41{bottom:687.122739pt;}
.y199{bottom:690.708771pt;}
.y1f7{bottom:690.708813pt;}
.yf3{bottom:690.708891pt;}
.y162{bottom:690.708942pt;}
.y60{bottom:698.342671pt;}
.y9f{bottom:698.849787pt;}
.y134{bottom:698.849873pt;}
.y25b{bottom:698.849915pt;}
.y1d9{bottom:699.205436pt;}
.y51{bottom:700.574148pt;}
.y40{bottom:700.574172pt;}
.yf2{bottom:706.992013pt;}
.y1f6{bottom:706.992056pt;}
.y50{bottom:714.025461pt;}
.y3f{bottom:714.025486pt;}
.y5f{bottom:714.625914pt;}
.y5{bottom:714.934533pt;}
.y9e{bottom:715.133029pt;}
.y133{bottom:715.133115pt;}
.y25a{bottom:715.133158pt;}
.y1d8{bottom:720.798020pt;}
.yf1{bottom:723.275256pt;}
.y1f5{bottom:723.275298pt;}
.y4f{bottom:727.476775pt;}
.y3e{bottom:727.476799pt;}
.y5e{bottom:730.909291pt;}
.y9d{bottom:731.416271pt;}
.y132{bottom:731.416358pt;}
.y1d7{bottom:734.249333pt;}
.yf0{bottom:739.558498pt;}
.y1f4{bottom:739.558540pt;}
.y4e{bottom:740.928328pt;}
.y3d{bottom:740.928353pt;}
.y5d{bottom:747.192533pt;}
.y9c{bottom:747.699514pt;}
.y4d{bottom:754.379642pt;}
.y3c{bottom:754.379666pt;}
.y9b{bottom:763.982891pt;}
.y5c{bottom:779.758000pt;}
.y9a{bottom:780.266133pt;}
.y4c{bottom:781.282509pt;}
.y3b{bottom:781.282533pt;}
.y1{bottom:818.905333pt;}
.y7e{bottom:819.421733pt;}
.y39{bottom:820.944400pt;}
.he{height:25.445787pt;}
.hd{height:25.446320pt;}
.h7{height:36.832992pt;}
.h4{height:39.463920pt;}
.h8{height:39.464104pt;}
.h28{height:39.465888pt;}
.h2{height:44.725776pt;}
.h25{height:44.725794pt;}
.h3{height:49.987632pt;}
.hc{height:49.987802pt;}
.hf{height:49.987807pt;}
.h6{height:49.987972pt;}
.h1b{height:49.987976pt;}
.h2d{height:49.988065pt;}
.h17{height:49.988113pt;}
.h11{height:49.988122pt;}
.h14{height:49.988146pt;}
.h2a{height:49.988282pt;}
.hb{height:49.988287pt;}
.h1d{height:49.988316pt;}
.h1a{height:49.988399pt;}
.h26{height:49.988438pt;}
.h19{height:49.988466pt;}
.h13{height:49.988486pt;}
.h21{height:49.988574pt;}
.h27{height:49.988627pt;}
.ha{height:49.988660pt;}
.h12{height:49.988942pt;}
.h24{height:49.989946pt;}
.h22{height:49.990080pt;}
.h1e{height:49.990291pt;}
.h18{height:49.990353pt;}
.h2c{height:49.990667pt;}
.h1c{height:49.990800pt;}
.h29{height:49.991341pt;}
.h20{height:49.992252pt;}
.h2b{height:49.992553pt;}
.h1f{height:49.992955pt;}
.h10{height:49.995820pt;}
.h15{height:49.997241pt;}
.h23{height:49.997803pt;}
.h16{height:50.004311pt;}
.h9{height:52.613605pt;}
.h5{height:94.708453pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:79.369867pt;}
.x12{left:81.999487pt;}
.x5{left:84.737739pt;}
.xe{left:85.977987pt;}
.x2f{left:87.593200pt;}
.x16{left:90.008241pt;}
.x10{left:91.998635pt;}
.x23{left:93.326508pt;}
.x1{left:94.876267pt;}
.x3{left:96.377600pt;}
.x2b{left:97.614800pt;}
.x8{left:98.921069pt;}
.x1d{left:101.380999pt;}
.x9{left:102.442562pt;}
.x36{left:107.662533pt;}
.x34{left:108.829600pt;}
.x1e{left:110.069667pt;}
.x11{left:111.411860pt;}
.x22{left:114.086201pt;}
.x4{left:117.346400pt;}
.x32{left:120.624533pt;}
.x6{left:122.286226pt;}
.xf{left:123.453397pt;}
.x18{left:124.800706pt;}
.x15{left:128.790640pt;}
.x13{left:131.473465pt;}
.x17{left:132.821497pt;}
.x14{left:136.167505pt;}
.x29{left:139.222933pt;}
.x1f{left:141.509986pt;}
.xd{left:145.689392pt;}
.x2d{left:148.651467pt;}
.x2c{left:160.760364pt;}
.x2a{left:163.699909pt;}
.x26{left:166.271047pt;}
.xa{left:183.897184pt;}
.x31{left:188.779959pt;}
.x37{left:192.319863pt;}
.x21{left:198.381531pt;}
.x1c{left:201.681200pt;}
.x24{left:203.684833pt;}
.x30{left:208.550858pt;}
.x28{left:229.279387pt;}
.x20{left:231.117525pt;}
.x25{left:234.484475pt;}
.x35{left:239.229500pt;}
.x2e{left:241.303851pt;}
.x7{left:244.085731pt;}
.xc{left:247.859867pt;}
.x33{left:251.031230pt;}
.x27{left:252.531735pt;}
.xb{left:260.075200pt;}
.x1a{left:268.123200pt;}
.x19{left:334.501648pt;}
.x1b{left:364.276927pt;}
}




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