
    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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.116000;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_8cdbc4b3696ffecbed38e809.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.116000;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_ea3a1cf9c71174d6234ed212.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.129000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093000;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_5727c669ee4924c013d47938.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093000;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_1508d0a17fdf0aaf7f1b5730.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.fff{font-family:fff;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093000;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_4a30076ac2ee55d966d59f92.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.093000;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_4a30076ac2ee55d966d59f92.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.093000;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_05a227b237d2946f7070cfe2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.093000;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_f3ac969d67a0fb9065df5e36.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.093000;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_04d977865ab7a5734fca89e5.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.093000;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_b3d2808017fb29619f2f7489.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.093000;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_f3ac969d67a0fb9065df5e36.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.116000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.116000;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_ea3a1cf9c71174d6234ed212.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.129000;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_73782956c11253bfbb5cc67b.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.122000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.093000;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_6d221f5f13a06983e11c02b1.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.093000;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_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.116000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.093000;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_5b51c853092048a9b02801f0.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.093000;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:ff35;src:url('chunks/assets/font_f3ac969d67a0fb9065df5e36.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.116000;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:ff36;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.116000;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:ff37;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.093000;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:ff38;src:url('chunks/assets/font_01c48f345447b978c4a5eddd.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.116000;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:ff39;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.093000;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:ff3a;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.116000;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:ff3b;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.093000;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:ff3c;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.093000;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:ff3d;src:url('chunks/assets/font_f3ac969d67a0fb9065df5e36.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.116000;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:ff3e;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.116000;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:ff3f;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.093000;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:ff40;src:url('chunks/assets/font_6d221f5f13a06983e11c02b1.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.116000;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:ff41;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.093000;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:ff42;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.116000;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:ff43;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.093000;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:ff44;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.093000;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:ff45;src:url('chunks/assets/font_6d221f5f13a06983e11c02b1.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.116000;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:ff46;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.116000;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:ff47;src:url('chunks/assets/font_ea3a1cf9c71174d6234ed212.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.129000;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:ff48;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.093000;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:ff49;src:url('chunks/assets/font_04d977865ab7a5734fca89e5.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.116000;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:ff4a;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.093000;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:ff4b;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.116000;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:ff4c;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.093000;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:ff4d;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.093000;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:ff4e;src:url('chunks/assets/font_61ff4c26a7584aaa08d09403.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.116000;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:ff4f;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.116000;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:ff50;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.093000;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:ff51;src:url('chunks/assets/font_f3ac969d67a0fb9065df5e36.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.116000;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:ff52;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff52{font-family:ff52;line-height:1.093000;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:ff53;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff53{font-family:ff53;line-height:1.116000;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:ff54;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.093000;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:ff55;src:url('chunks/assets/font_5b51c853092048a9b02801f0.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.093000;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:ff56;src:url('chunks/assets/font_9a8022206895b7d7d6b547d0.woff2')format("woff");}.ff56{font-family:ff56;line-height:1.116000;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:ff57;src:url('chunks/assets/font_f1c0b395f8ed0067cb13fee3.woff2')format("woff");}.ff57{font-family:ff57;line-height:1.116000;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);}
.v7{vertical-align:-20.790600px;}
.v2{vertical-align:-16.830000px;}
.v5{vertical-align:-2.049000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.049000px;}
.v6{vertical-align:18.810000px;}
.v4{vertical-align:20.790600px;}
.v1{vertical-align:31.680000px;}
.ls69{letter-spacing:-1.767000px;}
.ls9{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.015300px;}
.ls7a{letter-spacing:0.018900px;}
.ls4{letter-spacing:0.028500px;}
.ls6a{letter-spacing:0.030601px;}
.ls79{letter-spacing:0.031500px;}
.ls4c{letter-spacing:0.037801px;}
.ls1b{letter-spacing:0.051000px;}
.ls39{letter-spacing:0.057000px;}
.ls35{letter-spacing:0.061201px;}
.ls2c{letter-spacing:0.063000px;}
.ls60{letter-spacing:0.075601px;}
.ls5b{letter-spacing:0.076500px;}
.ls49{letter-spacing:0.076502px;}
.ls16{letter-spacing:0.094500px;}
.ls1d{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.114000px;}
.ls11{letter-spacing:0.126000px;}
.ls4a{letter-spacing:0.127500px;}
.ls3d{letter-spacing:0.151202px;}
.ls50{letter-spacing:0.153000px;}
.ls63{letter-spacing:0.153003px;}
.ls48{letter-spacing:0.157500px;}
.ls1{letter-spacing:0.171000px;}
.ls19{letter-spacing:0.189000px;}
.ls37{letter-spacing:0.189003px;}
.ls1a{letter-spacing:0.204000px;}
.ls20{letter-spacing:0.214204px;}
.ls68{letter-spacing:0.220500px;}
.ls7c{letter-spacing:0.226804px;}
.ls0{letter-spacing:0.228000px;}
.ls71{letter-spacing:0.244805px;}
.ls24{letter-spacing:0.252000px;}
.ls64{letter-spacing:0.255000px;}
.ls34{letter-spacing:0.264604px;}
.ls6e{letter-spacing:0.275405px;}
.ls27{letter-spacing:0.283500px;}
.ls5{letter-spacing:0.285000px;}
.ls80{letter-spacing:0.306000px;}
.ls2b{letter-spacing:0.315000px;}
.ls4b{letter-spacing:0.340205px;}
.ls66{letter-spacing:0.342000px;}
.ls21{letter-spacing:0.357000px;}
.ls61{letter-spacing:0.378000px;}
.ls30{letter-spacing:0.378006px;}
.ls7f{letter-spacing:0.397808px;}
.lsc{letter-spacing:0.399000px;}
.ls4f{letter-spacing:0.408000px;}
.ls13{letter-spacing:0.441000px;}
.ls7d{letter-spacing:0.453607px;}
.ls53{letter-spacing:0.459000px;}
.ls7{letter-spacing:0.459009px;}
.ls65{letter-spacing:0.484500px;}
.ls32{letter-spacing:0.491408px;}
.ls23{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.510000px;}
.ls38{letter-spacing:0.513000px;}
.ls58{letter-spacing:0.513009px;}
.ls28{letter-spacing:0.520210px;}
.ls74{letter-spacing:0.529208px;}
.ls6b{letter-spacing:0.550811px;}
.ls17{letter-spacing:0.567000px;}
.ls40{letter-spacing:0.570000px;}
.ls4e{letter-spacing:0.586500px;}
.ls5f{letter-spacing:0.598500px;}
.ls5c{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.630000px;}
.ls7e{letter-spacing:0.642610px;}
.ls75{letter-spacing:0.651000px;}
.ls3e{letter-spacing:0.655500px;}
.ls52{letter-spacing:0.661500px;}
.ls1e{letter-spacing:0.663000px;}
.ls7b{letter-spacing:0.680411px;}
.ls72{letter-spacing:0.683400px;}
.ls6{letter-spacing:0.684000px;}
.ls43{letter-spacing:0.688500px;}
.ls36{letter-spacing:0.693000px;}
.ls1c{letter-spacing:0.714000px;}
.ls67{letter-spacing:0.741000px;}
.ls12{letter-spacing:0.756000px;}
.ls8{letter-spacing:0.765000px;}
.ls44{letter-spacing:0.787500px;}
.lsd{letter-spacing:0.798000px;}
.ls2e{letter-spacing:0.819000px;}
.ls5d{letter-spacing:0.831613px;}
.ls5a{letter-spacing:0.845400px;}
.ls4d{letter-spacing:0.850500px;}
.ls41{letter-spacing:0.855000px;}
.ls29{letter-spacing:0.867000px;}
.ls6f{letter-spacing:0.872117px;}
.ls31{letter-spacing:0.882000px;}
.ls5e{letter-spacing:0.912000px;}
.ls6c{letter-spacing:0.918000px;}
.ls51{letter-spacing:0.945000px;}
.lsa{letter-spacing:0.969000px;}
.ls15{letter-spacing:0.976500px;}
.ls22{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.071000px;}
.ls3{letter-spacing:1.083000px;}
.ls18{letter-spacing:1.134000px;}
.ls33{letter-spacing:1.165500px;}
.ls3c{letter-spacing:1.171819px;}
.ls62{letter-spacing:1.197000px;}
.lsf{letter-spacing:1.222800px;}
.lse{letter-spacing:1.224000px;}
.ls3f{letter-spacing:1.254000px;}
.ls76{letter-spacing:1.260000px;}
.lsb{letter-spacing:1.311000px;}
.ls54{letter-spacing:1.323000px;}
.ls59{letter-spacing:1.354500px;}
.ls47{letter-spacing:1.386000px;}
.ls73{letter-spacing:1.417500px;}
.ls6d{letter-spacing:1.425000px;}
.ls10{letter-spacing:1.449000px;}
.ls70{letter-spacing:1.453500px;}
.ls46{letter-spacing:1.474223px;}
.ls25{letter-spacing:1.512000px;}
.ls2d{letter-spacing:1.575000px;}
.ls77{letter-spacing:1.638000px;}
.ls56{letter-spacing:1.701000px;}
.ls2f{letter-spacing:1.764000px;}
.ls3a{letter-spacing:1.827000px;}
.ls3b{letter-spacing:1.953000px;}
.ls55{letter-spacing:2.016000px;}
.ls78{letter-spacing:2.166000px;}
.ls45{letter-spacing:2.457000px;}
.ls57{letter-spacing:2.508000px;}
.ls2a{letter-spacing:2.611200px;}
.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;}
}
.ws7e{word-spacing:-18.207000px;}
.ws60{word-spacing:-17.514000px;}
.wsa7{word-spacing:-17.262000px;}
.wsa6{word-spacing:-17.136000px;}
.ws9a{word-spacing:-16.884000px;}
.wscc{word-spacing:-16.758000px;}
.ws9b{word-spacing:-16.695000px;}
.wsc2{word-spacing:-16.632000px;}
.ws7d{word-spacing:-16.537500px;}
.ws46{word-spacing:-16.506000px;}
.wseb{word-spacing:-16.443000px;}
.wsd7{word-spacing:-16.380000px;}
.ws8c{word-spacing:-16.317000px;}
.ws47{word-spacing:-16.065000px;}
.ws6f{word-spacing:-16.002000px;}
.ws8d{word-spacing:-15.939000px;}
.wsdd{word-spacing:-15.844500px;}
.ws5f{word-spacing:-15.813000px;}
.ws24{word-spacing:-15.750000px;}
.ws70{word-spacing:-15.105000px;}
.wsba{word-spacing:-14.991000px;}
.ws10{word-spacing:-14.250000px;}
.wsce{word-spacing:-14.203500px;}
.wsc5{word-spacing:-13.668000px;}
.ws48{word-spacing:-13.617000px;}
.wsc4{word-spacing:-13.515000px;}
.wsa8{word-spacing:-13.362000px;}
.ws8e{word-spacing:-13.336500px;}
.wscd{word-spacing:-13.209000px;}
.wscf{word-spacing:-13.158000px;}
.ws26{word-spacing:-13.107000px;}
.ws61{word-spacing:-12.852000px;}
.wsc3{word-spacing:-12.801000px;}
.ws25{word-spacing:-12.750000px;}
.wsb9{word-spacing:-12.483000px;}
.ws1{word-spacing:-7.200075px;}
.ws20{word-spacing:-4.725075px;}
.ws53{word-spacing:-4.275075px;}
.ws49{word-spacing:-4.271468px;}
.ws32{word-spacing:-4.120265px;}
.wsc{word-spacing:-3.825075px;}
.wsec{word-spacing:-3.717000px;}
.ws4c{word-spacing:-2.709000px;}
.wse{word-spacing:-2.550000px;}
.wse8{word-spacing:-2.520000px;}
.wsb3{word-spacing:-2.457000px;}
.wsb2{word-spacing:-2.337000px;}
.wsad{word-spacing:-2.280000px;}
.ws91{word-spacing:-2.268000px;}
.ws1d{word-spacing:-2.223000px;}
.ws92{word-spacing:-2.205000px;}
.ws87{word-spacing:-2.142000px;}
.ws34{word-spacing:-2.079000px;}
.wsbe{word-spacing:-2.052000px;}
.ws65{word-spacing:-2.016000px;}
.ws33{word-spacing:-1.953000px;}
.ws93{word-spacing:-1.890000px;}
.wsa1{word-spacing:-1.887000px;}
.wsa0{word-spacing:-1.836000px;}
.ws54{word-spacing:-1.827000px;}
.ws3{word-spacing:-1.824000px;}
.ws37{word-spacing:-1.764000px;}
.ws69{word-spacing:-1.701000px;}
.ws7b{word-spacing:-1.683000px;}
.ws74{word-spacing:-1.638000px;}
.ws4d{word-spacing:-1.575000px;}
.ws14{word-spacing:-1.539000px;}
.ws43{word-spacing:-1.530000px;}
.ws8f{word-spacing:-1.512000px;}
.ws51{word-spacing:-1.482000px;}
.wsc1{word-spacing:-1.479000px;}
.ws9e{word-spacing:-1.449000px;}
.ws38{word-spacing:-1.428000px;}
.ws50{word-spacing:-1.386000px;}
.ws79{word-spacing:-1.377000px;}
.ws8{word-spacing:-1.368000px;}
.ws89{word-spacing:-1.326000px;}
.ws2b{word-spacing:-1.323000px;}
.ws99{word-spacing:-1.275000px;}
.wsbb{word-spacing:-1.260000px;}
.wsd0{word-spacing:-1.254000px;}
.ws86{word-spacing:-1.197000px;}
.wse1{word-spacing:-1.134000px;}
.wse7{word-spacing:-1.122000px;}
.ws3a{word-spacing:-1.071000px;}
.wscb{word-spacing:-1.020000px;}
.ws4b{word-spacing:-1.008000px;}
.ws5d{word-spacing:-0.969000px;}
.ws55{word-spacing:-0.945000px;}
.ws5c{word-spacing:-0.918000px;}
.wsb{word-spacing:-0.912000px;}
.ws80{word-spacing:-0.882000px;}
.ws5e{word-spacing:-0.867000px;}
.ws77{word-spacing:-0.819000px;}
.ws6e{word-spacing:-0.816000px;}
.ws18{word-spacing:-0.798000px;}
.ws7a{word-spacing:-0.765000px;}
.wsbc{word-spacing:-0.756000px;}
.wsde{word-spacing:-0.714000px;}
.ws5a{word-spacing:-0.693000px;}
.wsab{word-spacing:-0.684000px;}
.ws41{word-spacing:-0.663000px;}
.wsdb{word-spacing:-0.630000px;}
.wsa4{word-spacing:-0.612000px;}
.wsb5{word-spacing:-0.570000px;}
.ws2c{word-spacing:-0.567000px;}
.wsb8{word-spacing:-0.561000px;}
.ws71{word-spacing:-0.513000px;}
.wsa2{word-spacing:-0.510000px;}
.ws1f{word-spacing:-0.504000px;}
.ws8b{word-spacing:-0.459000px;}
.ws27{word-spacing:-0.441000px;}
.wsd3{word-spacing:-0.408000px;}
.ws1c{word-spacing:-0.399000px;}
.ws84{word-spacing:-0.378000px;}
.ws44{word-spacing:-0.357000px;}
.ws52{word-spacing:-0.342000px;}
.ws62{word-spacing:-0.315000px;}
.ws40{word-spacing:-0.306000px;}
.ws94{word-spacing:-0.252000px;}
.ws4{word-spacing:-0.228000px;}
.wsd4{word-spacing:-0.204000px;}
.wsda{word-spacing:-0.189000px;}
.ws97{word-spacing:-0.153000px;}
.wsc0{word-spacing:-0.126000px;}
.ws6d{word-spacing:-0.102000px;}
.wsb4{word-spacing:-0.063000px;}
.ws3c{word-spacing:-0.051000px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.063000px;}
.ws98{word-spacing:0.102000px;}
.ws9{word-spacing:0.114000px;}
.ws64{word-spacing:0.126000px;}
.ws78{word-spacing:0.153000px;}
.ws68{word-spacing:0.189000px;}
.wsee{word-spacing:0.204000px;}
.wsd1{word-spacing:0.228000px;}
.ws2f{word-spacing:0.252000px;}
.ws1e{word-spacing:0.285000px;}
.ws3d{word-spacing:0.306000px;}
.ws59{word-spacing:0.315000px;}
.ws45{word-spacing:0.357000px;}
.ws9d{word-spacing:0.378000px;}
.wsac{word-spacing:0.399000px;}
.ws3f{word-spacing:0.408000px;}
.ws36{word-spacing:0.441000px;}
.ws4f{word-spacing:0.504000px;}
.ws7c{word-spacing:0.510000px;}
.wsa{word-spacing:0.513000px;}
.ws96{word-spacing:0.561000px;}
.ws6c{word-spacing:0.567000px;}
.ws1a{word-spacing:0.570000px;}
.wsa3{word-spacing:0.612000px;}
.ws4e{word-spacing:0.630000px;}
.wsdc{word-spacing:0.663000px;}
.ws85{word-spacing:0.684000px;}
.ws66{word-spacing:0.693000px;}
.ws30{word-spacing:0.756000px;}
.ws8a{word-spacing:0.765000px;}
.wsb0{word-spacing:0.798000px;}
.ws95{word-spacing:0.816000px;}
.ws28{word-spacing:0.819000px;}
.ws15{word-spacing:0.855000px;}
.wsaf{word-spacing:0.867000px;}
.wsa9{word-spacing:0.882000px;}
.ws17{word-spacing:0.912000px;}
.ws22{word-spacing:0.918000px;}
.ws9f{word-spacing:0.945000px;}
.wsbf{word-spacing:0.969000px;}
.ws56{word-spacing:1.008000px;}
.wsed{word-spacing:1.020000px;}
.ws2{word-spacing:1.026000px;}
.wsb6{word-spacing:1.071000px;}
.wsd6{word-spacing:1.122000px;}
.ws2e{word-spacing:1.134000px;}
.ws6{word-spacing:1.140000px;}
.ws42{word-spacing:1.173000px;}
.ws11{word-spacing:1.197000px;}
.wsea{word-spacing:1.224000px;}
.ws75{word-spacing:1.254000px;}
.ws21{word-spacing:1.260000px;}
.ws39{word-spacing:1.275000px;}
.ws82{word-spacing:1.323000px;}
.wsd5{word-spacing:1.326000px;}
.ws16{word-spacing:1.368000px;}
.ws3e{word-spacing:1.377000px;}
.ws9c{word-spacing:1.386000px;}
.ws5{word-spacing:1.425000px;}
.ws3b{word-spacing:1.428000px;}
.wsc6{word-spacing:1.449000px;}
.wsd8{word-spacing:1.482000px;}
.ws2d{word-spacing:1.512000px;}
.wsc9{word-spacing:1.530000px;}
.wsbd{word-spacing:1.539000px;}
.ws2a{word-spacing:1.575000px;}
.wsd{word-spacing:1.581000px;}
.ws1b{word-spacing:1.596000px;}
.wse0{word-spacing:1.638000px;}
.wse9{word-spacing:1.683000px;}
.ws90{word-spacing:1.701000px;}
.ws5b{word-spacing:1.734000px;}
.ws81{word-spacing:1.764000px;}
.ws76{word-spacing:1.767000px;}
.ws6b{word-spacing:1.827000px;}
.wsca{word-spacing:1.836000px;}
.wsb1{word-spacing:1.881000px;}
.ws63{word-spacing:1.890000px;}
.ws12{word-spacing:1.938000px;}
.ws31{word-spacing:1.953000px;}
.ws88{word-spacing:1.989000px;}
.ws4a{word-spacing:2.016000px;}
.ws57{word-spacing:2.079000px;}
.wsa5{word-spacing:2.091000px;}
.wsaa{word-spacing:2.142000px;}
.ws7{word-spacing:2.166000px;}
.ws35{word-spacing:2.205000px;}
.wse5{word-spacing:2.223000px;}
.ws67{word-spacing:2.268000px;}
.ws6a{word-spacing:2.331000px;}
.ws23{word-spacing:2.448000px;}
.wsb7{word-spacing:2.457000px;}
.ws19{word-spacing:2.565000px;}
.wsdf{word-spacing:2.583000px;}
.wse4{word-spacing:2.646000px;}
.ws83{word-spacing:2.709000px;}
.wsc7{word-spacing:2.772000px;}
.wsd9{word-spacing:2.835000px;}
.wsd2{word-spacing:2.850000px;}
.ws13{word-spacing:2.907000px;}
.ws29{word-spacing:2.961000px;}
.wsc8{word-spacing:3.087000px;}
.wse3{word-spacing:3.213000px;}
.wsae{word-spacing:3.306000px;}
.wse2{word-spacing:3.654000px;}
.ws72{word-spacing:3.717000px;}
.ws73{word-spacing:3.906000px;}
.wse6{word-spacing:4.332000px;}
.ws7f{word-spacing:4.851000px;}
.wsf{word-spacing:671.005200px;}
._8{margin-left:-16.708200px;}
._f{margin-left:-9.443100px;}
._c{margin-left:-7.802100px;}
._4{margin-left:-6.501600px;}
._3{margin-left:-5.034600px;}
._0{margin-left:-3.859200px;}
._1{margin-left:-2.390400px;}
._2{margin-left:-1.323900px;}
._7{width:1.026000px;}
._6{width:2.550000px;}
._e{width:25.091775px;}
._5{width:26.821839px;}
._d{width:34.791300px;}
._a{width:42.657000px;}
._9{width:44.916000px;}
._b{width:47.249400px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.600600px;}
.fs9{font-size:34.200600px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:37.800600px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:57.600600px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:74.641800px;}
.y1b{bottom:102.047250px;}
.y91{bottom:106.254750px;}
.ya9{bottom:116.297250px;}
.y1a{bottom:120.504750px;}
.ycb{bottom:130.547250px;}
.y6b{bottom:134.754750px;}
.y6a{bottom:144.797250px;}
.y19{bottom:148.547250px;}
.y10b{bottom:149.004750px;}
.y3c{bottom:156.621000px;}
.y69{bottom:159.047250px;}
.y192{bottom:162.797250px;}
.y90{bottom:163.254750px;}
.y18{bottom:165.927600px;}
.y68{bottom:173.297250px;}
.y3b{bottom:173.871000px;}
.ya8{bottom:177.504750px;}
.y191{bottom:180.124800px;}
.y17{bottom:183.307800px;}
.y67{bottom:187.547250px;}
.y1fa{bottom:191.297250px;}
.ya7{bottom:191.754750px;}
.y190{bottom:197.452350px;}
.y16{bottom:200.688150px;}
.y66{bottom:201.797250px;}
.ya6{bottom:206.004750px;}
.y1f9{bottom:208.621050px;}
.y243{bottom:208.786350px;}
.y3a{bottom:212.121000px;}
.y18f{bottom:214.780050px;}
.y65{bottom:216.047250px;}
.y15{bottom:218.068350px;}
.y220{bottom:219.797250px;}
.y8f{bottom:220.254750px;}
.y1f8{bottom:225.945000px;}
.y242{bottom:226.275450px;}
.y64{bottom:230.297250px;}
.y18e{bottom:232.107600px;}
.y16a{bottom:234.047250px;}
.y12c{bottom:234.504750px;}
.y14{bottom:235.448700px;}
.y21f{bottom:237.115800px;}
.y1f7{bottom:243.268950px;}
.y241{bottom:243.764550px;}
.y63{bottom:244.547250px;}
.y8e{bottom:248.297250px;}
.yca{bottom:248.754750px;}
.y18d{bottom:249.435300px;}
.y169{bottom:252.105300px;}
.y13{bottom:252.828900px;}
.y21e{bottom:254.434500px;}
.y62{bottom:258.797250px;}
.y1f6{bottom:260.592900px;}
.y240{bottom:261.253650px;}
.y1b5{bottom:262.547250px;}
.yc9{bottom:263.004750px;}
.y8d{bottom:265.686000px;}
.y18c{bottom:266.762850px;}
.y168{bottom:270.163350px;}
.y12{bottom:270.209250px;}
.y21d{bottom:271.753200px;}
.y61{bottom:273.047250px;}
.yc8{bottom:277.254750px;}
.y1f5{bottom:277.916850px;}
.y23f{bottom:278.742900px;}
.y1b4{bottom:280.128900px;}
.y8c{bottom:283.074900px;}
.y18b{bottom:284.090550px;}
.y60{bottom:287.297250px;}
.y11{bottom:287.589450px;}
.y167{bottom:288.221400px;}
.y21c{bottom:289.071750px;}
.y262{bottom:291.047250px;}
.y10a{bottom:291.504750px;}
.y39{bottom:295.134900px;}
.y1f4{bottom:295.240650px;}
.y23e{bottom:296.232000px;}
.y1b3{bottom:297.710550px;}
.y8b{bottom:300.463650px;}
.y18a{bottom:301.418100px;}
.y5f{bottom:301.547250px;}
.y10{bottom:304.969800px;}
.yc7{bottom:305.297250px;}
.y109{bottom:305.754750px;}
.y166{bottom:306.279450px;}
.y21b{bottom:306.390450px;}
.y261{bottom:309.300750px;}
.y38{bottom:310.884900px;}
.y1f3{bottom:312.564600px;}
.y23d{bottom:313.721100px;}
.y1b2{bottom:315.292200px;}
.ya5{bottom:315.463650px;}
.y5e{bottom:315.797250px;}
.y8a{bottom:317.852400px;}
.y189{bottom:318.745800px;}
.y14a{bottom:319.547250px;}
.y1d3{bottom:320.004750px;}
.yf{bottom:322.350150px;}
.y12b{bottom:322.648950px;}
.ye9{bottom:323.042700px;}
.yc6{bottom:323.084100px;}
.y21a{bottom:323.709150px;}
.y165{bottom:324.337650px;}
.y37{bottom:326.634900px;}
.y260{bottom:327.554250px;}
.y1f2{bottom:329.888550px;}
.y5d{bottom:330.047250px;}
.y23c{bottom:331.210200px;}
.ya4{bottom:331.352400px;}
.y1b1{bottom:332.873850px;}
.y108{bottom:333.797250px;}
.y280{bottom:334.254750px;}
.y89{bottom:335.241300px;}
.y188{bottom:336.073350px;}
.y149{bottom:337.709100px;}
.ye{bottom:339.730350px;}
.y12a{bottom:340.000800px;}
.ye8{bottom:340.788000px;}
.yc5{bottom:340.871100px;}
.y219{bottom:341.027700px;}
.y164{bottom:342.395700px;}
.y5c{bottom:344.297250px;}
.y25f{bottom:345.807750px;}
.y1f1{bottom:347.212500px;}
.ya3{bottom:347.241300px;}
.y1d2{bottom:348.504750px;}
.y23b{bottom:348.699300px;}
.y1b0{bottom:350.455650px;}
.y107{bottom:351.349050px;}
.y88{bottom:352.630050px;}
.y187{bottom:353.400900px;}
.y148{bottom:355.871100px;}
.yd{bottom:357.110700px;}
.y129{bottom:357.352500px;}
.y218{bottom:358.346400px;}
.y5b{bottom:358.547250px;}
.y163{bottom:360.453750px;}
.y29d{bottom:362.297250px;}
.y27f{bottom:362.754750px;}
.ya2{bottom:363.130050px;}
.y25e{bottom:364.061250px;}
.y1f0{bottom:364.536450px;}
.y23a{bottom:366.188400px;}
.y1af{bottom:368.037300px;}
.y106{bottom:368.901000px;}
.y36{bottom:369.384900px;}
.y87{bottom:370.018950px;}
.y186{bottom:370.728600px;}
.ye7{bottom:373.533450px;}
.yc4{bottom:373.658100px;}
.y147{bottom:374.033100px;}
.yc{bottom:374.490900px;}
.y128{bottom:374.704350px;}
.y217{bottom:375.664950px;}
.y1d1{bottom:376.547250px;}
.y27e{bottom:377.004750px;}
.y162{bottom:378.511800px;}
.y29c{bottom:380.076900px;}
.y1ef{bottom:381.860250px;}
.y25d{bottom:382.314750px;}
.y239{bottom:383.677500px;}
.y35{bottom:385.134900px;}
.y1ae{bottom:385.618950px;}
.y105{bottom:386.452950px;}
.y86{bottom:387.407700px;}
.y185{bottom:388.056150px;}
.ye6{bottom:389.778900px;}
.yc3{bottom:389.944950px;}
.y5a{bottom:390.797250px;}
.ya1{bottom:391.018950px;}
.yb{bottom:391.871250px;}
.y127{bottom:392.056050px;}
.y146{bottom:392.194950px;}
.y1d0{bottom:392.792250px;}
.y216{bottom:392.983650px;}
.y29b{bottom:397.856400px;}
.y1ee{bottom:399.184200px;}
.y25c{bottom:400.568250px;}
.y238{bottom:401.166750px;}
.y1ad{bottom:403.200600px;}
.y104{bottom:404.004750px;}
.y85{bottom:404.796450px;}
.y27d{bottom:405.047250px;}
.y184{bottom:405.383850px;}
.ye5{bottom:406.024350px;}
.yc2{bottom:406.231950px;}
.y59{bottom:408.193950px;}
.ya0{bottom:408.407700px;}
.y1cf{bottom:409.037100px;}
.ya{bottom:409.251600px;}
.y126{bottom:409.407900px;}
.y215{bottom:410.302350px;}
.y145{bottom:410.356950px;}
.y161{bottom:411.569850px;}
.y29a{bottom:415.636050px;}
.y1ed{bottom:416.508150px;}
.y237{bottom:418.655850px;}
.y25b{bottom:418.821750px;}
.y34{bottom:418.884900px;}
.y1ac{bottom:420.782250px;}
.y103{bottom:421.556700px;}
.y84{bottom:422.185350px;}
.yc1{bottom:422.518950px;}
.y27c{bottom:422.560500px;}
.y1ce{bottom:425.282100px;}
.y58{bottom:425.590650px;}
.y9f{bottom:425.796450px;}
.y9{bottom:426.631800px;}
.y125{bottom:426.759600px;}
.y214{bottom:427.620900px;}
.y160{bottom:428.127900px;}
.y144{bottom:428.518950px;}
.y183{bottom:431.215350px;}
.y299{bottom:433.415700px;}
.y1ec{bottom:433.832100px;}
.ye4{bottom:434.269800px;}
.y33{bottom:434.634900px;}
.y236{bottom:436.144950px;}
.y25a{bottom:437.075250px;}
.y1ab{bottom:438.363900px;}
.yc0{bottom:438.805800px;}
.y102{bottom:439.108500px;}
.y83{bottom:439.574100px;}
.y27b{bottom:440.073750px;}
.y1cd{bottom:441.526950px;}
.y57{bottom:442.987350px;}
.y9e{bottom:443.185350px;}
.y8{bottom:444.012150px;}
.y124{bottom:444.111300px;}
.y15f{bottom:444.686100px;}
.y213{bottom:444.939600px;}
.y143{bottom:446.680800px;}
.y182{bottom:448.542900px;}
.y1eb{bottom:451.156050px;}
.y298{bottom:451.195200px;}
.ye3{bottom:452.015250px;}
.y235{bottom:453.634050px;}
.ybf{bottom:455.092800px;}
.y259{bottom:455.328750px;}
.y1aa{bottom:455.945550px;}
.y101{bottom:456.660450px;}
.y82{bottom:456.963000px;}
.y27a{bottom:457.587000px;}
.y56{bottom:460.384200px;}
.y9d{bottom:460.574100px;}
.y7{bottom:461.392350px;}
.y123{bottom:461.463150px;}
.y212{bottom:462.258150px;}
.y32{bottom:463.140750px;}
.y142{bottom:464.842800px;}
.y181{bottom:465.870600px;}
.y1ea{bottom:468.480000px;}
.y297{bottom:468.974850px;}
.ye2{bottom:469.760700px;}
.y1cc{bottom:469.771950px;}
.y234{bottom:471.123150px;}
.y15e{bottom:473.244150px;}
.y1a9{bottom:473.527200px;}
.y258{bottom:473.582250px;}
.y100{bottom:474.212250px;}
.y81{bottom:474.351750px;}
.y279{bottom:475.100400px;}
.y55{bottom:477.780900px;}
.y9c{bottom:477.963000px;}
.y6{bottom:478.772700px;}
.y122{bottom:478.814850px;}
.y211{bottom:479.576850px;}
.y180{bottom:483.198150px;}
.ybe{bottom:483.379650px;}
.y1e9{bottom:485.803800px;}
.y296{bottom:486.754350px;}
.ye1{bottom:487.506150px;}
.y1cb{bottom:487.516950px;}
.y233{bottom:488.612250px;}
.y1a8{bottom:491.108850px;}
.y15d{bottom:491.302200px;}
.y80{bottom:491.740650px;}
.yff{bottom:491.764200px;}
.y257{bottom:491.835600px;}
.y278{bottom:492.613650px;}
.y54{bottom:495.177600px;}
.y9b{bottom:495.351750px;}
.y121{bottom:496.166700px;}
.y210{bottom:496.895550px;}
.y141{bottom:498.004650px;}
.y17f{bottom:500.525700px;}
.ybd{bottom:501.166650px;}
.y1e8{bottom:503.127750px;}
.y31{bottom:504.402600px;}
.y295{bottom:504.534000px;}
.ye0{bottom:505.251600px;}
.y1ca{bottom:505.261800px;}
.y232{bottom:506.101350px;}
.y1a7{bottom:508.690500px;}
.y5{bottom:508.908900px;}
.y7f{bottom:509.129400px;}
.yfe{bottom:509.316000px;}
.y15c{bottom:509.360250px;}
.y256{bottom:510.089100px;}
.y277{bottom:510.126900px;}
.y53{bottom:512.574300px;}
.y9a{bottom:512.740650px;}
.y120{bottom:513.518400px;}
.y20f{bottom:514.214100px;}
.y140{bottom:514.666650px;}
.y17e{bottom:517.853400px;}
.ybc{bottom:518.953650px;}
.y30{bottom:520.152600px;}
.y1e7{bottom:520.451700px;}
.y294{bottom:522.313650px;}
.ydf{bottom:522.996900px;}
.y1c9{bottom:523.006800px;}
.y231{bottom:523.590600px;}
.y1a6{bottom:526.272150px;}
.y7e{bottom:526.518150px;}
.yfd{bottom:526.867950px;}
.y15b{bottom:527.418300px;}
.y276{bottom:527.640150px;}
.y255{bottom:528.342750px;}
.y52{bottom:529.971000px;}
.y99{bottom:530.129400px;}
.y11f{bottom:530.870250px;}
.y13f{bottom:531.328650px;}
.y20e{bottom:531.532800px;}
.y2f{bottom:535.902600px;}
.ybb{bottom:536.740650px;}
.y1e6{bottom:537.775650px;}
.y293{bottom:540.093150px;}
.yde{bottom:540.742350px;}
.y1c8{bottom:540.751650px;}
.y230{bottom:541.079700px;}
.y1a5{bottom:543.853950px;}
.y7d{bottom:543.907050px;}
.yfc{bottom:544.419750px;}
.y275{bottom:545.153400px;}
.y15a{bottom:545.476350px;}
.y254{bottom:546.596250px;}
.y51{bottom:547.367850px;}
.y98{bottom:547.518150px;}
.y13e{bottom:547.990650px;}
.y11e{bottom:548.221950px;}
.y20d{bottom:548.851350px;}
.y17d{bottom:550.180950px;}
.y2e{bottom:551.652600px;}
.yba{bottom:554.527500px;}
.y1e5{bottom:555.099450px;}
.y292{bottom:557.872800px;}
.ydd{bottom:558.487800px;}
.y1c7{bottom:558.496650px;}
.y22f{bottom:558.568800px;}
.y7c{bottom:561.295800px;}
.y1a4{bottom:561.435600px;}
.yfb{bottom:561.971700px;}
.y274{bottom:562.666650px;}
.y159{bottom:563.534550px;}
.y13d{bottom:564.652500px;}
.y50{bottom:564.764550px;}
.y97{bottom:564.907050px;}
.y11d{bottom:565.573800px;}
.y17c{bottom:566.008650px;}
.y20c{bottom:566.170050px;}
.y2d{bottom:567.402600px;}
.yb9{bottom:572.314500px;}
.y1e4{bottom:572.423550px;}
.y291{bottom:575.652450px;}
.y22e{bottom:576.057900px;}
.ydc{bottom:576.233250px;}
.y1c6{bottom:576.241650px;}
.y1a3{bottom:579.017250px;}
.yfa{bottom:579.523650px;}
.y253{bottom:579.849750px;}
.y273{bottom:580.179900px;}
.y13c{bottom:581.314500px;}
.y158{bottom:581.592600px;}
.y17b{bottom:581.836200px;}
.y4f{bottom:582.161250px;}
.y96{bottom:582.295800px;}
.y11c{bottom:582.925500px;}
.y2c{bottom:583.152600px;}
.y20b{bottom:583.488750px;}
.y1e3{bottom:589.747350px;}
.yb8{bottom:590.101350px;}
.y290{bottom:593.431950px;}
.y22d{bottom:593.547000px;}
.y7b{bottom:593.684550px;}
.ydb{bottom:593.978700px;}
.y1c5{bottom:593.986500px;}
.y1a2{bottom:596.598900px;}
.y252{bottom:596.603100px;}
.yf9{bottom:597.075450px;}
.y17a{bottom:597.663900px;}
.y272{bottom:597.693300px;}
.y13b{bottom:597.976350px;}
.y2b{bottom:598.902600px;}
.y4e{bottom:599.557950px;}
.y157{bottom:599.650650px;}
.y95{bottom:599.684550px;}
.y11b{bottom:600.277350px;}
.y20a{bottom:600.807300px;}
.y1e2{bottom:607.071300px;}
.yb7{bottom:607.888350px;}
.y7a{bottom:609.573450px;}
.y22c{bottom:611.036100px;}
.y28f{bottom:611.211600px;}
.yda{bottom:611.724150px;}
.y1c4{bottom:611.731500px;}
.y251{bottom:613.356600px;}
.y179{bottom:613.491450px;}
.y1a1{bottom:614.180550px;}
.yf8{bottom:614.627400px;}
.y13a{bottom:614.638350px;}
.y2a{bottom:614.652600px;}
.y271{bottom:615.206550px;}
.y4d{bottom:616.954650px;}
.y94{bottom:617.073450px;}
.y11a{bottom:617.629050px;}
.y156{bottom:617.708700px;}
.y209{bottom:618.126000px;}
.y4{bottom:619.832400px;}
.y1e1{bottom:624.395250px;}
.y79{bottom:625.462350px;}
.yb6{bottom:625.675350px;}
.y22b{bottom:628.525200px;}
.y28e{bottom:628.991250px;}
.y178{bottom:629.319000px;}
.yd9{bottom:629.469600px;}
.y1c3{bottom:629.476350px;}
.y250{bottom:630.110100px;}
.y29{bottom:630.402600px;}
.y139{bottom:631.300350px;}
.y1a0{bottom:631.762200px;}
.yf7{bottom:632.179200px;}
.y270{bottom:632.719800px;}
.y4c{bottom:634.351350px;}
.y93{bottom:634.462350px;}
.y119{bottom:634.980900px;}
.y208{bottom:635.444700px;}
.y155{bottom:635.766750px;}
.y78{bottom:641.351100px;}
.y1e0{bottom:641.719050px;}
.yb5{bottom:643.462350px;}
.y177{bottom:645.146700px;}
.y22a{bottom:646.014450px;}
.y28{bottom:646.152600px;}
.y28d{bottom:646.770750px;}
.yd8{bottom:647.215050px;}
.y1c2{bottom:647.221350px;}
.y19f{bottom:649.343850px;}
.yf6{bottom:649.731150px;}
.y26f{bottom:650.233050px;}
.y3{bottom:650.382450px;}
.y4b{bottom:651.748200px;}
.y92{bottom:651.851100px;}
.y118{bottom:652.332600px;}
.y207{bottom:652.763250px;}
.y154{bottom:653.824800px;}
.y24f{bottom:658.863600px;}
.y1df{bottom:659.043150px;}
.y138{bottom:659.962350px;}
.y176{bottom:660.974250px;}
.yb4{bottom:661.249200px;}
.y27{bottom:661.902600px;}
.y229{bottom:663.503550px;}
.y28c{bottom:664.550400px;}
.yd7{bottom:664.960350px;}
.y1c1{bottom:664.966350px;}
.y19e{bottom:666.925650px;}
.yf5{bottom:667.282950px;}
.y26e{bottom:667.746300px;}
.y4a{bottom:669.144900px;}
.y77{bottom:669.239850px;}
.y117{bottom:669.684300px;}
.y206{bottom:670.081950px;}
.y153{bottom:671.883000px;}
.y1de{bottom:676.366950px;}
.y175{bottom:676.801950px;}
.y24e{bottom:677.117100px;}
.y26{bottom:677.652600px;}
.y137{bottom:678.124200px;}
.yb3{bottom:679.036200px;}
.y2{bottom:680.932350px;}
.y228{bottom:680.992650px;}
.y28b{bottom:682.330050px;}
.yd6{bottom:682.705800px;}
.y1c0{bottom:682.711200px;}
.y19d{bottom:684.507300px;}
.yf4{bottom:684.834900px;}
.y26d{bottom:685.259550px;}
.y49{bottom:686.541600px;}
.y76{bottom:686.628600px;}
.y116{bottom:687.036150px;}
.y205{bottom:687.400500px;}
.y152{bottom:689.941050px;}
.y25{bottom:693.402600px;}
.y1dd{bottom:693.690900px;}
.y24d{bottom:695.370600px;}
.y136{bottom:696.286200px;}
.yb2{bottom:696.823050px;}
.y227{bottom:698.481750px;}
.y28a{bottom:700.109550px;}
.yd5{bottom:700.451250px;}
.y1bf{bottom:700.456200px;}
.y19c{bottom:702.088950px;}
.yf3{bottom:702.386700px;}
.y26c{bottom:702.772950px;}
.y48{bottom:703.938300px;}
.y75{bottom:704.017500px;}
.y115{bottom:704.387850px;}
.y174{bottom:704.629500px;}
.y204{bottom:704.719200px;}
.y24{bottom:709.152600px;}
.y1dc{bottom:711.014850px;}
.y24c{bottom:713.624100px;}
.y135{bottom:714.448050px;}
.y226{bottom:715.970850px;}
.y289{bottom:717.889200px;}
.yd4{bottom:718.196700px;}
.y1be{bottom:718.201200px;}
.y19b{bottom:719.670600px;}
.yf2{bottom:719.938650px;}
.y26b{bottom:720.286200px;}
.y47{bottom:721.335000px;}
.y74{bottom:721.406250px;}
.y114{bottom:721.739700px;}
.y173{bottom:721.957050px;}
.y203{bottom:722.037900px;}
.y151{bottom:722.999100px;}
.y23{bottom:724.902600px;}
.y1db{bottom:728.338800px;}
.yb1{bottom:729.610050px;}
.y24b{bottom:731.877600px;}
.y134{bottom:732.610050px;}
.y225{bottom:733.459950px;}
.y288{bottom:735.668850px;}
.yd3{bottom:735.942150px;}
.y1bd{bottom:735.946050px;}
.y19a{bottom:737.252250px;}
.yf1{bottom:737.490600px;}
.y26a{bottom:737.799450px;}
.y46{bottom:738.731850px;}
.y73{bottom:738.795150px;}
.y113{bottom:739.091400px;}
.y172{bottom:739.284750px;}
.y202{bottom:739.356450px;}
.y150{bottom:739.557150px;}
.y22{bottom:740.652600px;}
.y1da{bottom:745.662750px;}
.yb0{bottom:745.896900px;}
.y24a{bottom:750.131100px;}
.y133{bottom:750.771900px;}
.y287{bottom:753.448500px;}
.yd2{bottom:753.687600px;}
.y1bc{bottom:753.691050px;}
.y199{bottom:754.833900px;}
.yf0{bottom:755.042400px;}
.y269{bottom:755.312700px;}
.y14f{bottom:756.115200px;}
.y45{bottom:756.128550px;}
.y72{bottom:756.183900px;}
.y21{bottom:756.402600px;}
.y2a3{bottom:756.405600px;}
.y112{bottom:756.443250px;}
.y171{bottom:756.612300px;}
.y201{bottom:756.675150px;}
.yaf{bottom:762.183900px;}
.y1d9{bottom:762.986550px;}
.y249{bottom:768.384600px;}
.y132{bottom:768.933900px;}
.y286{bottom:771.228000px;}
.yd1{bottom:771.433050px;}
.y1bb{bottom:771.435900px;}
.y224{bottom:771.949200px;}
.y198{bottom:772.415550px;}
.yef{bottom:772.594350px;}
.y268{bottom:772.825950px;}
.y44{bottom:773.525250px;}
.y71{bottom:773.572650px;}
.y2a2{bottom:773.655600px;}
.y111{bottom:773.794950px;}
.y170{bottom:773.940000px;}
.y200{bottom:773.993700px;}
.yae{bottom:778.470900px;}
.y1d8{bottom:780.310500px;}
.y14e{bottom:784.673250px;}
.y248{bottom:786.638100px;}
.y131{bottom:787.095900px;}
.y285{bottom:789.007650px;}
.y20{bottom:789.160350px;}
.yd0{bottom:789.178500px;}
.y1ba{bottom:789.180900px;}
.y223{bottom:789.438300px;}
.y197{bottom:789.997350px;}
.yee{bottom:790.146300px;}
.y267{bottom:790.339200px;}
.y43{bottom:790.921950px;}
.y70{bottom:790.961550px;}
.y110{bottom:791.146800px;}
.y16f{bottom:791.267550px;}
.y1ff{bottom:791.312400px;}
.y1d7{bottom:797.634450px;}
.y14d{bottom:802.731300px;}
.y247{bottom:804.891600px;}
.y130{bottom:805.257900px;}
.yad{bottom:806.757900px;}
.y284{bottom:806.787300px;}
.ycf{bottom:806.923950px;}
.y1b9{bottom:806.925900px;}
.y196{bottom:807.579000px;}
.yed{bottom:807.698100px;}
.y266{bottom:807.852600px;}
.y42{bottom:808.318800px;}
.y6f{bottom:808.350450px;}
.y10f{bottom:808.498500px;}
.y16e{bottom:808.595250px;}
.y1fe{bottom:808.630950px;}
.y2a1{bottom:808.905600px;}
.y1d6{bottom:814.958250px;}
.y14c{bottom:820.789500px;}
.y246{bottom:823.145100px;}
.y12f{bottom:823.419750px;}
.yac{bottom:824.544750px;}
.y283{bottom:824.566800px;}
.yce{bottom:824.669250px;}
.y1b8{bottom:824.670750px;}
.y195{bottom:825.160650px;}
.yec{bottom:825.249900px;}
.y265{bottom:825.365700px;}
.y41{bottom:825.715350px;}
.y6e{bottom:825.739200px;}
.y10e{bottom:825.850350px;}
.y16d{bottom:825.922800px;}
.y1fd{bottom:825.949650px;}
.y2a0{bottom:826.155600px;}
.y1f{bottom:834.674250px;}
.y245{bottom:841.398600px;}
.y12e{bottom:841.581750px;}
.yab{bottom:842.331750px;}
.y282{bottom:842.346450px;}
.ycd{bottom:842.414850px;}
.y1b7{bottom:842.415750px;}
.y194{bottom:842.742300px;}
.yeb{bottom:842.801850px;}
.y264{bottom:842.879100px;}
.y222{bottom:842.927400px;}
.y40{bottom:843.112200px;}
.y6d{bottom:843.127950px;}
.y10d{bottom:843.202050px;}
.y16c{bottom:843.250350px;}
.y1fc{bottom:843.268350px;}
.y29f{bottom:843.405600px;}
.y1d5{bottom:847.282350px;}
.y1e{bottom:850.424250px;}
.y244{bottom:859.652100px;}
.y12d{bottom:859.743750px;}
.y14b{bottom:859.847550px;}
.yaa{bottom:860.118750px;}
.y281{bottom:860.126100px;}
.ycc{bottom:860.160150px;}
.y1b6{bottom:860.160600px;}
.y193{bottom:860.323950px;}
.yea{bottom:860.353800px;}
.y263{bottom:860.392350px;}
.y221{bottom:860.416500px;}
.y3f{bottom:860.508900px;}
.y6c{bottom:860.516850px;}
.y10c{bottom:860.553900px;}
.y16b{bottom:860.578050px;}
.y1fb{bottom:860.587050px;}
.y29e{bottom:860.655600px;}
.y1d4{bottom:863.106150px;}
.y3e{bottom:877.905600px;}
.y1d{bottom:878.930100px;}
.y1c{bottom:917.197950px;}
.y3d{bottom:917.710200px;}
.h6{height:28.968000px;}
.h2{height:32.328000px;}
.h7{height:45.798000px;}
.hb{height:49.137000px;}
.h5{height:49.932000px;}
.h8{height:51.186000px;}
.h4{height:52.611000px;}
.ha{height:56.574000px;}
.h9{height:58.149000px;}
.h3{height:86.208000px;}
.h0{height:1020.474000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x3{left:117.081750px;}
.x8{left:119.055150px;}
.x6{left:130.280550px;}
.x7{left:131.811000px;}
.xf{left:136.496400px;}
.x4{left:140.661600px;}
.x13{left:141.720600px;}
.xb{left:143.036550px;}
.xe{left:144.567000px;}
.x2{left:160.857300px;}
.x11{left:174.330750px;}
.x12{left:187.086600px;}
.x10{left:199.842600px;}
.xa{left:304.241250px;}
.x5{left:319.414950px;}
.xd{left:323.136150px;}
.xc{left:329.392050px;}
.x15{left:363.235050px;}
.x14{left:429.478200px;}
.x9{left:509.301600px;}
@media print{
.v7{vertical-align:-18.480533pt;}
.v2{vertical-align:-14.960000pt;}
.v5{vertical-align:-1.821333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.821333pt;}
.v6{vertical-align:16.720000pt;}
.v4{vertical-align:18.480533pt;}
.v1{vertical-align:28.160000pt;}
.ls69{letter-spacing:-1.570667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.013600pt;}
.ls7a{letter-spacing:0.016800pt;}
.ls4{letter-spacing:0.025333pt;}
.ls6a{letter-spacing:0.027201pt;}
.ls79{letter-spacing:0.028000pt;}
.ls4c{letter-spacing:0.033601pt;}
.ls1b{letter-spacing:0.045333pt;}
.ls39{letter-spacing:0.050667pt;}
.ls35{letter-spacing:0.054401pt;}
.ls2c{letter-spacing:0.056000pt;}
.ls60{letter-spacing:0.067201pt;}
.ls5b{letter-spacing:0.068000pt;}
.ls49{letter-spacing:0.068001pt;}
.ls16{letter-spacing:0.084000pt;}
.ls1d{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.101333pt;}
.ls11{letter-spacing:0.112000pt;}
.ls4a{letter-spacing:0.113333pt;}
.ls3d{letter-spacing:0.134402pt;}
.ls50{letter-spacing:0.136000pt;}
.ls63{letter-spacing:0.136003pt;}
.ls48{letter-spacing:0.140000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls19{letter-spacing:0.168000pt;}
.ls37{letter-spacing:0.168003pt;}
.ls1a{letter-spacing:0.181333pt;}
.ls20{letter-spacing:0.190404pt;}
.ls68{letter-spacing:0.196000pt;}
.ls7c{letter-spacing:0.201603pt;}
.ls0{letter-spacing:0.202667pt;}
.ls71{letter-spacing:0.217604pt;}
.ls24{letter-spacing:0.224000pt;}
.ls64{letter-spacing:0.226667pt;}
.ls34{letter-spacing:0.235204pt;}
.ls6e{letter-spacing:0.244805pt;}
.ls27{letter-spacing:0.252000pt;}
.ls5{letter-spacing:0.253333pt;}
.ls80{letter-spacing:0.272000pt;}
.ls2b{letter-spacing:0.280000pt;}
.ls4b{letter-spacing:0.302405pt;}
.ls66{letter-spacing:0.304000pt;}
.ls21{letter-spacing:0.317333pt;}
.ls61{letter-spacing:0.336000pt;}
.ls30{letter-spacing:0.336005pt;}
.ls7f{letter-spacing:0.353607pt;}
.lsc{letter-spacing:0.354667pt;}
.ls4f{letter-spacing:0.362667pt;}
.ls13{letter-spacing:0.392000pt;}
.ls7d{letter-spacing:0.403206pt;}
.ls53{letter-spacing:0.408000pt;}
.ls7{letter-spacing:0.408008pt;}
.ls65{letter-spacing:0.430667pt;}
.ls32{letter-spacing:0.436807pt;}
.ls23{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.453333pt;}
.ls38{letter-spacing:0.456000pt;}
.ls58{letter-spacing:0.456008pt;}
.ls28{letter-spacing:0.462409pt;}
.ls74{letter-spacing:0.470407pt;}
.ls6b{letter-spacing:0.489610pt;}
.ls17{letter-spacing:0.504000pt;}
.ls40{letter-spacing:0.506667pt;}
.ls4e{letter-spacing:0.521333pt;}
.ls5f{letter-spacing:0.532000pt;}
.ls5c{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.560000pt;}
.ls7e{letter-spacing:0.571209pt;}
.ls75{letter-spacing:0.578667pt;}
.ls3e{letter-spacing:0.582667pt;}
.ls52{letter-spacing:0.588000pt;}
.ls1e{letter-spacing:0.589333pt;}
.ls7b{letter-spacing:0.604810pt;}
.ls72{letter-spacing:0.607467pt;}
.ls6{letter-spacing:0.608000pt;}
.ls43{letter-spacing:0.612000pt;}
.ls36{letter-spacing:0.616000pt;}
.ls1c{letter-spacing:0.634667pt;}
.ls67{letter-spacing:0.658667pt;}
.ls12{letter-spacing:0.672000pt;}
.ls8{letter-spacing:0.680000pt;}
.ls44{letter-spacing:0.700000pt;}
.lsd{letter-spacing:0.709333pt;}
.ls2e{letter-spacing:0.728000pt;}
.ls5d{letter-spacing:0.739212pt;}
.ls5a{letter-spacing:0.751467pt;}
.ls4d{letter-spacing:0.756000pt;}
.ls41{letter-spacing:0.760000pt;}
.ls29{letter-spacing:0.770667pt;}
.ls6f{letter-spacing:0.775215pt;}
.ls31{letter-spacing:0.784000pt;}
.ls5e{letter-spacing:0.810667pt;}
.ls6c{letter-spacing:0.816000pt;}
.ls51{letter-spacing:0.840000pt;}
.lsa{letter-spacing:0.861333pt;}
.ls15{letter-spacing:0.868000pt;}
.ls22{letter-spacing:0.896000pt;}
.ls26{letter-spacing:0.952000pt;}
.ls3{letter-spacing:0.962667pt;}
.ls18{letter-spacing:1.008000pt;}
.ls33{letter-spacing:1.036000pt;}
.ls3c{letter-spacing:1.041617pt;}
.ls62{letter-spacing:1.064000pt;}
.lsf{letter-spacing:1.086933pt;}
.lse{letter-spacing:1.088000pt;}
.ls3f{letter-spacing:1.114667pt;}
.ls76{letter-spacing:1.120000pt;}
.lsb{letter-spacing:1.165333pt;}
.ls54{letter-spacing:1.176000pt;}
.ls59{letter-spacing:1.204000pt;}
.ls47{letter-spacing:1.232000pt;}
.ls73{letter-spacing:1.260000pt;}
.ls6d{letter-spacing:1.266667pt;}
.ls10{letter-spacing:1.288000pt;}
.ls70{letter-spacing:1.292000pt;}
.ls46{letter-spacing:1.310421pt;}
.ls25{letter-spacing:1.344000pt;}
.ls2d{letter-spacing:1.400000pt;}
.ls77{letter-spacing:1.456000pt;}
.ls56{letter-spacing:1.512000pt;}
.ls2f{letter-spacing:1.568000pt;}
.ls3a{letter-spacing:1.624000pt;}
.ls3b{letter-spacing:1.736000pt;}
.ls55{letter-spacing:1.792000pt;}
.ls78{letter-spacing:1.925333pt;}
.ls45{letter-spacing:2.184000pt;}
.ls57{letter-spacing:2.229333pt;}
.ls2a{letter-spacing:2.321067pt;}
.ws7e{word-spacing:-16.184000pt;}
.ws60{word-spacing:-15.568000pt;}
.wsa7{word-spacing:-15.344000pt;}
.wsa6{word-spacing:-15.232000pt;}
.ws9a{word-spacing:-15.008000pt;}
.wscc{word-spacing:-14.896000pt;}
.ws9b{word-spacing:-14.840000pt;}
.wsc2{word-spacing:-14.784000pt;}
.ws7d{word-spacing:-14.700000pt;}
.ws46{word-spacing:-14.672000pt;}
.wseb{word-spacing:-14.616000pt;}
.wsd7{word-spacing:-14.560000pt;}
.ws8c{word-spacing:-14.504000pt;}
.ws47{word-spacing:-14.280000pt;}
.ws6f{word-spacing:-14.224000pt;}
.ws8d{word-spacing:-14.168000pt;}
.wsdd{word-spacing:-14.084000pt;}
.ws5f{word-spacing:-14.056000pt;}
.ws24{word-spacing:-14.000000pt;}
.ws70{word-spacing:-13.426667pt;}
.wsba{word-spacing:-13.325333pt;}
.ws10{word-spacing:-12.666667pt;}
.wsce{word-spacing:-12.625333pt;}
.wsc5{word-spacing:-12.149333pt;}
.ws48{word-spacing:-12.104000pt;}
.wsc4{word-spacing:-12.013333pt;}
.wsa8{word-spacing:-11.877333pt;}
.ws8e{word-spacing:-11.854667pt;}
.wscd{word-spacing:-11.741333pt;}
.wscf{word-spacing:-11.696000pt;}
.ws26{word-spacing:-11.650667pt;}
.ws61{word-spacing:-11.424000pt;}
.wsc3{word-spacing:-11.378667pt;}
.ws25{word-spacing:-11.333333pt;}
.wsb9{word-spacing:-11.096000pt;}
.ws1{word-spacing:-6.400067pt;}
.ws20{word-spacing:-4.200067pt;}
.ws53{word-spacing:-3.800067pt;}
.ws49{word-spacing:-3.796860pt;}
.ws32{word-spacing:-3.662458pt;}
.wsc{word-spacing:-3.400067pt;}
.wsec{word-spacing:-3.304000pt;}
.ws4c{word-spacing:-2.408000pt;}
.wse{word-spacing:-2.266667pt;}
.wse8{word-spacing:-2.240000pt;}
.wsb3{word-spacing:-2.184000pt;}
.wsb2{word-spacing:-2.077333pt;}
.wsad{word-spacing:-2.026667pt;}
.ws91{word-spacing:-2.016000pt;}
.ws1d{word-spacing:-1.976000pt;}
.ws92{word-spacing:-1.960000pt;}
.ws87{word-spacing:-1.904000pt;}
.ws34{word-spacing:-1.848000pt;}
.wsbe{word-spacing:-1.824000pt;}
.ws65{word-spacing:-1.792000pt;}
.ws33{word-spacing:-1.736000pt;}
.ws93{word-spacing:-1.680000pt;}
.wsa1{word-spacing:-1.677333pt;}
.wsa0{word-spacing:-1.632000pt;}
.ws54{word-spacing:-1.624000pt;}
.ws3{word-spacing:-1.621333pt;}
.ws37{word-spacing:-1.568000pt;}
.ws69{word-spacing:-1.512000pt;}
.ws7b{word-spacing:-1.496000pt;}
.ws74{word-spacing:-1.456000pt;}
.ws4d{word-spacing:-1.400000pt;}
.ws14{word-spacing:-1.368000pt;}
.ws43{word-spacing:-1.360000pt;}
.ws8f{word-spacing:-1.344000pt;}
.ws51{word-spacing:-1.317333pt;}
.wsc1{word-spacing:-1.314667pt;}
.ws9e{word-spacing:-1.288000pt;}
.ws38{word-spacing:-1.269333pt;}
.ws50{word-spacing:-1.232000pt;}
.ws79{word-spacing:-1.224000pt;}
.ws8{word-spacing:-1.216000pt;}
.ws89{word-spacing:-1.178667pt;}
.ws2b{word-spacing:-1.176000pt;}
.ws99{word-spacing:-1.133333pt;}
.wsbb{word-spacing:-1.120000pt;}
.wsd0{word-spacing:-1.114667pt;}
.ws86{word-spacing:-1.064000pt;}
.wse1{word-spacing:-1.008000pt;}
.wse7{word-spacing:-0.997333pt;}
.ws3a{word-spacing:-0.952000pt;}
.wscb{word-spacing:-0.906667pt;}
.ws4b{word-spacing:-0.896000pt;}
.ws5d{word-spacing:-0.861333pt;}
.ws55{word-spacing:-0.840000pt;}
.ws5c{word-spacing:-0.816000pt;}
.wsb{word-spacing:-0.810667pt;}
.ws80{word-spacing:-0.784000pt;}
.ws5e{word-spacing:-0.770667pt;}
.ws77{word-spacing:-0.728000pt;}
.ws6e{word-spacing:-0.725333pt;}
.ws18{word-spacing:-0.709333pt;}
.ws7a{word-spacing:-0.680000pt;}
.wsbc{word-spacing:-0.672000pt;}
.wsde{word-spacing:-0.634667pt;}
.ws5a{word-spacing:-0.616000pt;}
.wsab{word-spacing:-0.608000pt;}
.ws41{word-spacing:-0.589333pt;}
.wsdb{word-spacing:-0.560000pt;}
.wsa4{word-spacing:-0.544000pt;}
.wsb5{word-spacing:-0.506667pt;}
.ws2c{word-spacing:-0.504000pt;}
.wsb8{word-spacing:-0.498667pt;}
.ws71{word-spacing:-0.456000pt;}
.wsa2{word-spacing:-0.453333pt;}
.ws1f{word-spacing:-0.448000pt;}
.ws8b{word-spacing:-0.408000pt;}
.ws27{word-spacing:-0.392000pt;}
.wsd3{word-spacing:-0.362667pt;}
.ws1c{word-spacing:-0.354667pt;}
.ws84{word-spacing:-0.336000pt;}
.ws44{word-spacing:-0.317333pt;}
.ws52{word-spacing:-0.304000pt;}
.ws62{word-spacing:-0.280000pt;}
.ws40{word-spacing:-0.272000pt;}
.ws94{word-spacing:-0.224000pt;}
.ws4{word-spacing:-0.202667pt;}
.wsd4{word-spacing:-0.181333pt;}
.wsda{word-spacing:-0.168000pt;}
.ws97{word-spacing:-0.136000pt;}
.wsc0{word-spacing:-0.112000pt;}
.ws6d{word-spacing:-0.090667pt;}
.wsb4{word-spacing:-0.056000pt;}
.ws3c{word-spacing:-0.045333pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.056000pt;}
.ws98{word-spacing:0.090667pt;}
.ws9{word-spacing:0.101333pt;}
.ws64{word-spacing:0.112000pt;}
.ws78{word-spacing:0.136000pt;}
.ws68{word-spacing:0.168000pt;}
.wsee{word-spacing:0.181333pt;}
.wsd1{word-spacing:0.202667pt;}
.ws2f{word-spacing:0.224000pt;}
.ws1e{word-spacing:0.253333pt;}
.ws3d{word-spacing:0.272000pt;}
.ws59{word-spacing:0.280000pt;}
.ws45{word-spacing:0.317333pt;}
.ws9d{word-spacing:0.336000pt;}
.wsac{word-spacing:0.354667pt;}
.ws3f{word-spacing:0.362667pt;}
.ws36{word-spacing:0.392000pt;}
.ws4f{word-spacing:0.448000pt;}
.ws7c{word-spacing:0.453333pt;}
.wsa{word-spacing:0.456000pt;}
.ws96{word-spacing:0.498667pt;}
.ws6c{word-spacing:0.504000pt;}
.ws1a{word-spacing:0.506667pt;}
.wsa3{word-spacing:0.544000pt;}
.ws4e{word-spacing:0.560000pt;}
.wsdc{word-spacing:0.589333pt;}
.ws85{word-spacing:0.608000pt;}
.ws66{word-spacing:0.616000pt;}
.ws30{word-spacing:0.672000pt;}
.ws8a{word-spacing:0.680000pt;}
.wsb0{word-spacing:0.709333pt;}
.ws95{word-spacing:0.725333pt;}
.ws28{word-spacing:0.728000pt;}
.ws15{word-spacing:0.760000pt;}
.wsaf{word-spacing:0.770667pt;}
.wsa9{word-spacing:0.784000pt;}
.ws17{word-spacing:0.810667pt;}
.ws22{word-spacing:0.816000pt;}
.ws9f{word-spacing:0.840000pt;}
.wsbf{word-spacing:0.861333pt;}
.ws56{word-spacing:0.896000pt;}
.wsed{word-spacing:0.906667pt;}
.ws2{word-spacing:0.912000pt;}
.wsb6{word-spacing:0.952000pt;}
.wsd6{word-spacing:0.997333pt;}
.ws2e{word-spacing:1.008000pt;}
.ws6{word-spacing:1.013333pt;}
.ws42{word-spacing:1.042667pt;}
.ws11{word-spacing:1.064000pt;}
.wsea{word-spacing:1.088000pt;}
.ws75{word-spacing:1.114667pt;}
.ws21{word-spacing:1.120000pt;}
.ws39{word-spacing:1.133333pt;}
.ws82{word-spacing:1.176000pt;}
.wsd5{word-spacing:1.178667pt;}
.ws16{word-spacing:1.216000pt;}
.ws3e{word-spacing:1.224000pt;}
.ws9c{word-spacing:1.232000pt;}
.ws5{word-spacing:1.266667pt;}
.ws3b{word-spacing:1.269333pt;}
.wsc6{word-spacing:1.288000pt;}
.wsd8{word-spacing:1.317333pt;}
.ws2d{word-spacing:1.344000pt;}
.wsc9{word-spacing:1.360000pt;}
.wsbd{word-spacing:1.368000pt;}
.ws2a{word-spacing:1.400000pt;}
.wsd{word-spacing:1.405333pt;}
.ws1b{word-spacing:1.418667pt;}
.wse0{word-spacing:1.456000pt;}
.wse9{word-spacing:1.496000pt;}
.ws90{word-spacing:1.512000pt;}
.ws5b{word-spacing:1.541333pt;}
.ws81{word-spacing:1.568000pt;}
.ws76{word-spacing:1.570667pt;}
.ws6b{word-spacing:1.624000pt;}
.wsca{word-spacing:1.632000pt;}
.wsb1{word-spacing:1.672000pt;}
.ws63{word-spacing:1.680000pt;}
.ws12{word-spacing:1.722667pt;}
.ws31{word-spacing:1.736000pt;}
.ws88{word-spacing:1.768000pt;}
.ws4a{word-spacing:1.792000pt;}
.ws57{word-spacing:1.848000pt;}
.wsa5{word-spacing:1.858667pt;}
.wsaa{word-spacing:1.904000pt;}
.ws7{word-spacing:1.925333pt;}
.ws35{word-spacing:1.960000pt;}
.wse5{word-spacing:1.976000pt;}
.ws67{word-spacing:2.016000pt;}
.ws6a{word-spacing:2.072000pt;}
.ws23{word-spacing:2.176000pt;}
.wsb7{word-spacing:2.184000pt;}
.ws19{word-spacing:2.280000pt;}
.wsdf{word-spacing:2.296000pt;}
.wse4{word-spacing:2.352000pt;}
.ws83{word-spacing:2.408000pt;}
.wsc7{word-spacing:2.464000pt;}
.wsd9{word-spacing:2.520000pt;}
.wsd2{word-spacing:2.533333pt;}
.ws13{word-spacing:2.584000pt;}
.ws29{word-spacing:2.632000pt;}
.wsc8{word-spacing:2.744000pt;}
.wse3{word-spacing:2.856000pt;}
.wsae{word-spacing:2.938667pt;}
.wse2{word-spacing:3.248000pt;}
.ws72{word-spacing:3.304000pt;}
.ws73{word-spacing:3.472000pt;}
.wse6{word-spacing:3.850667pt;}
.ws7f{word-spacing:4.312000pt;}
.wsf{word-spacing:596.449067pt;}
._8{margin-left:-14.851733pt;}
._f{margin-left:-8.393867pt;}
._c{margin-left:-6.935200pt;}
._4{margin-left:-5.779200pt;}
._3{margin-left:-4.475200pt;}
._0{margin-left:-3.430400pt;}
._1{margin-left:-2.124800pt;}
._2{margin-left:-1.176800pt;}
._7{width:0.912000pt;}
._6{width:2.266667pt;}
._e{width:22.303800pt;}
._5{width:23.841635pt;}
._d{width:30.925600pt;}
._a{width:37.917333pt;}
._9{width:39.925333pt;}
._b{width:41.999467pt;}
.fs4{font-size:27.200533pt;}
.fs9{font-size:30.400533pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:33.600533pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:51.200533pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.348267pt;}
.y1b{bottom:90.708667pt;}
.y91{bottom:94.448667pt;}
.ya9{bottom:103.375333pt;}
.y1a{bottom:107.115333pt;}
.ycb{bottom:116.042000pt;}
.y6b{bottom:119.782000pt;}
.y6a{bottom:128.708667pt;}
.y19{bottom:132.042000pt;}
.y10b{bottom:132.448667pt;}
.y3c{bottom:139.218667pt;}
.y69{bottom:141.375333pt;}
.y192{bottom:144.708667pt;}
.y90{bottom:145.115333pt;}
.y18{bottom:147.491200pt;}
.y68{bottom:154.042000pt;}
.y3b{bottom:154.552000pt;}
.ya8{bottom:157.782000pt;}
.y191{bottom:160.110933pt;}
.y17{bottom:162.940267pt;}
.y67{bottom:166.708667pt;}
.y1fa{bottom:170.042000pt;}
.ya7{bottom:170.448667pt;}
.y190{bottom:175.513200pt;}
.y16{bottom:178.389467pt;}
.y66{bottom:179.375333pt;}
.ya6{bottom:183.115333pt;}
.y1f9{bottom:185.440933pt;}
.y243{bottom:185.587867pt;}
.y3a{bottom:188.552000pt;}
.y18f{bottom:190.915600pt;}
.y65{bottom:192.042000pt;}
.y15{bottom:193.838533pt;}
.y220{bottom:195.375333pt;}
.y8f{bottom:195.782000pt;}
.y1f8{bottom:200.840000pt;}
.y242{bottom:201.133733pt;}
.y64{bottom:204.708667pt;}
.y18e{bottom:206.317867pt;}
.y16a{bottom:208.042000pt;}
.y12c{bottom:208.448667pt;}
.y14{bottom:209.287733pt;}
.y21f{bottom:210.769600pt;}
.y1f7{bottom:216.239067pt;}
.y241{bottom:216.679600pt;}
.y63{bottom:217.375333pt;}
.y8e{bottom:220.708667pt;}
.yca{bottom:221.115333pt;}
.y18d{bottom:221.720267pt;}
.y169{bottom:224.093600pt;}
.y13{bottom:224.736800pt;}
.y21e{bottom:226.164000pt;}
.y62{bottom:230.042000pt;}
.y1f6{bottom:231.638133pt;}
.y240{bottom:232.225467pt;}
.y1b5{bottom:233.375333pt;}
.yc9{bottom:233.782000pt;}
.y8d{bottom:236.165333pt;}
.y18c{bottom:237.122533pt;}
.y168{bottom:240.145200pt;}
.y12{bottom:240.186000pt;}
.y21d{bottom:241.558400pt;}
.y61{bottom:242.708667pt;}
.yc8{bottom:246.448667pt;}
.y1f5{bottom:247.037200pt;}
.y23f{bottom:247.771467pt;}
.y1b4{bottom:249.003467pt;}
.y8c{bottom:251.622133pt;}
.y18b{bottom:252.524933pt;}
.y60{bottom:255.375333pt;}
.y11{bottom:255.635067pt;}
.y167{bottom:256.196800pt;}
.y21c{bottom:256.952667pt;}
.y262{bottom:258.708667pt;}
.y10a{bottom:259.115333pt;}
.y39{bottom:262.342133pt;}
.y1f4{bottom:262.436133pt;}
.y23e{bottom:263.317333pt;}
.y1b3{bottom:264.631600pt;}
.y8b{bottom:267.078800pt;}
.y18a{bottom:267.927200pt;}
.y5f{bottom:268.042000pt;}
.y10{bottom:271.084267pt;}
.yc7{bottom:271.375333pt;}
.y109{bottom:271.782000pt;}
.y166{bottom:272.248400pt;}
.y21b{bottom:272.347067pt;}
.y261{bottom:274.934000pt;}
.y38{bottom:276.342133pt;}
.y1f3{bottom:277.835200pt;}
.y23d{bottom:278.863200pt;}
.y1b2{bottom:280.259733pt;}
.ya5{bottom:280.412133pt;}
.y5e{bottom:280.708667pt;}
.y8a{bottom:282.535467pt;}
.y189{bottom:283.329600pt;}
.y14a{bottom:284.042000pt;}
.y1d3{bottom:284.448667pt;}
.yf{bottom:286.533467pt;}
.y12b{bottom:286.799067pt;}
.ye9{bottom:287.149067pt;}
.yc6{bottom:287.185867pt;}
.y21a{bottom:287.741467pt;}
.y165{bottom:288.300133pt;}
.y37{bottom:290.342133pt;}
.y260{bottom:291.159333pt;}
.y1f2{bottom:293.234267pt;}
.y5d{bottom:293.375333pt;}
.y23c{bottom:294.409067pt;}
.ya4{bottom:294.535467pt;}
.y1b1{bottom:295.887867pt;}
.y108{bottom:296.708667pt;}
.y280{bottom:297.115333pt;}
.y89{bottom:297.992267pt;}
.y188{bottom:298.731867pt;}
.y149{bottom:300.185867pt;}
.ye{bottom:301.982533pt;}
.y12a{bottom:302.222933pt;}
.ye8{bottom:302.922667pt;}
.yc5{bottom:302.996533pt;}
.y219{bottom:303.135733pt;}
.y164{bottom:304.351733pt;}
.y5c{bottom:306.042000pt;}
.y25f{bottom:307.384667pt;}
.y1f1{bottom:308.633333pt;}
.ya3{bottom:308.658933pt;}
.y1d2{bottom:309.782000pt;}
.y23b{bottom:309.954933pt;}
.y1b0{bottom:311.516133pt;}
.y107{bottom:312.310267pt;}
.y88{bottom:313.448933pt;}
.y187{bottom:314.134133pt;}
.y148{bottom:316.329867pt;}
.yd{bottom:317.431733pt;}
.y129{bottom:317.646667pt;}
.y218{bottom:318.530133pt;}
.y5b{bottom:318.708667pt;}
.y163{bottom:320.403333pt;}
.y29d{bottom:322.042000pt;}
.y27f{bottom:322.448667pt;}
.ya2{bottom:322.782267pt;}
.y25e{bottom:323.610000pt;}
.y1f0{bottom:324.032400pt;}
.y23a{bottom:325.500800pt;}
.y1af{bottom:327.144267pt;}
.y106{bottom:327.912000pt;}
.y36{bottom:328.342133pt;}
.y87{bottom:328.905733pt;}
.y186{bottom:329.536533pt;}
.ye7{bottom:332.029733pt;}
.yc4{bottom:332.140533pt;}
.y147{bottom:332.473867pt;}
.yc{bottom:332.880800pt;}
.y128{bottom:333.070533pt;}
.y217{bottom:333.924400pt;}
.y1d1{bottom:334.708667pt;}
.y27e{bottom:335.115333pt;}
.y162{bottom:336.454933pt;}
.y29c{bottom:337.846133pt;}
.y1ef{bottom:339.431333pt;}
.y25d{bottom:339.835333pt;}
.y239{bottom:341.046667pt;}
.y35{bottom:342.342133pt;}
.y1ae{bottom:342.772400pt;}
.y105{bottom:343.513733pt;}
.y86{bottom:344.362400pt;}
.y185{bottom:344.938800pt;}
.ye6{bottom:346.470133pt;}
.yc3{bottom:346.617733pt;}
.y5a{bottom:347.375333pt;}
.ya1{bottom:347.572400pt;}
.yb{bottom:348.330000pt;}
.y127{bottom:348.494267pt;}
.y146{bottom:348.617733pt;}
.y1d0{bottom:349.148667pt;}
.y216{bottom:349.318800pt;}
.y29b{bottom:353.650133pt;}
.y1ee{bottom:354.830400pt;}
.y25c{bottom:356.060667pt;}
.y238{bottom:356.592667pt;}
.y1ad{bottom:358.400533pt;}
.y104{bottom:359.115333pt;}
.y85{bottom:359.819067pt;}
.y27d{bottom:360.042000pt;}
.y184{bottom:360.341200pt;}
.ye5{bottom:360.910533pt;}
.yc2{bottom:361.095067pt;}
.y59{bottom:362.839067pt;}
.ya0{bottom:363.029067pt;}
.y1cf{bottom:363.588533pt;}
.ya{bottom:363.779200pt;}
.y126{bottom:363.918133pt;}
.y215{bottom:364.713200pt;}
.y145{bottom:364.761733pt;}
.y161{bottom:365.839867pt;}
.y29a{bottom:369.454267pt;}
.y1ed{bottom:370.229467pt;}
.y237{bottom:372.138533pt;}
.y25b{bottom:372.286000pt;}
.y34{bottom:372.342133pt;}
.y1ac{bottom:374.028667pt;}
.y103{bottom:374.717067pt;}
.y84{bottom:375.275867pt;}
.yc1{bottom:375.572400pt;}
.y27c{bottom:375.609333pt;}
.y1ce{bottom:378.028533pt;}
.y58{bottom:378.302800pt;}
.y9f{bottom:378.485733pt;}
.y9{bottom:379.228267pt;}
.y125{bottom:379.341867pt;}
.y214{bottom:380.107467pt;}
.y160{bottom:380.558133pt;}
.y144{bottom:380.905733pt;}
.y183{bottom:383.302533pt;}
.y299{bottom:385.258400pt;}
.y1ec{bottom:385.628533pt;}
.ye4{bottom:386.017600pt;}
.y33{bottom:386.342133pt;}
.y236{bottom:387.684400pt;}
.y25a{bottom:388.511333pt;}
.y1ab{bottom:389.656800pt;}
.yc0{bottom:390.049600pt;}
.y102{bottom:390.318667pt;}
.y83{bottom:390.732533pt;}
.y27b{bottom:391.176667pt;}
.y1cd{bottom:392.468400pt;}
.y57{bottom:393.766533pt;}
.y9e{bottom:393.942533pt;}
.y8{bottom:394.677467pt;}
.y124{bottom:394.765600pt;}
.y15f{bottom:395.276533pt;}
.y213{bottom:395.501867pt;}
.y143{bottom:397.049600pt;}
.y182{bottom:398.704800pt;}
.y1eb{bottom:401.027600pt;}
.y298{bottom:401.062400pt;}
.ye3{bottom:401.791333pt;}
.y235{bottom:403.230267pt;}
.ybf{bottom:404.526933pt;}
.y259{bottom:404.736667pt;}
.y1aa{bottom:405.284933pt;}
.y101{bottom:405.920400pt;}
.y82{bottom:406.189333pt;}
.y27a{bottom:406.744000pt;}
.y56{bottom:409.230400pt;}
.y9d{bottom:409.399200pt;}
.y7{bottom:410.126533pt;}
.y123{bottom:410.189467pt;}
.y212{bottom:410.896133pt;}
.y32{bottom:411.680667pt;}
.y142{bottom:413.193600pt;}
.y181{bottom:414.107200pt;}
.y1ea{bottom:416.426667pt;}
.y297{bottom:416.866533pt;}
.ye2{bottom:417.565067pt;}
.y1cc{bottom:417.575067pt;}
.y234{bottom:418.776133pt;}
.y15e{bottom:420.661467pt;}
.y1a9{bottom:420.913067pt;}
.y258{bottom:420.962000pt;}
.y100{bottom:421.522000pt;}
.y81{bottom:421.646000pt;}
.y279{bottom:422.311467pt;}
.y55{bottom:424.694133pt;}
.y9c{bottom:424.856000pt;}
.y6{bottom:425.575733pt;}
.y122{bottom:425.613200pt;}
.y211{bottom:426.290533pt;}
.y180{bottom:429.509467pt;}
.ybe{bottom:429.670800pt;}
.y1e9{bottom:431.825600pt;}
.y296{bottom:432.670533pt;}
.ye1{bottom:433.338800pt;}
.y1cb{bottom:433.348400pt;}
.y233{bottom:434.322000pt;}
.y1a8{bottom:436.541200pt;}
.y15d{bottom:436.713067pt;}
.y80{bottom:437.102800pt;}
.yff{bottom:437.123733pt;}
.y257{bottom:437.187200pt;}
.y278{bottom:437.878800pt;}
.y54{bottom:440.157867pt;}
.y9b{bottom:440.312667pt;}
.y121{bottom:441.037067pt;}
.y210{bottom:441.684933pt;}
.y141{bottom:442.670800pt;}
.y17f{bottom:444.911733pt;}
.ybd{bottom:445.481467pt;}
.y1e8{bottom:447.224667pt;}
.y31{bottom:448.357867pt;}
.y295{bottom:448.474667pt;}
.ye0{bottom:449.112533pt;}
.y1ca{bottom:449.121600pt;}
.y232{bottom:449.867867pt;}
.y1a7{bottom:452.169333pt;}
.y5{bottom:452.363467pt;}
.y7f{bottom:452.559467pt;}
.yfe{bottom:452.725333pt;}
.y15c{bottom:452.764667pt;}
.y256{bottom:453.412533pt;}
.y277{bottom:453.446133pt;}
.y53{bottom:455.621600pt;}
.y9a{bottom:455.769467pt;}
.y120{bottom:456.460800pt;}
.y20f{bottom:457.079200pt;}
.y140{bottom:457.481467pt;}
.y17e{bottom:460.314133pt;}
.ybc{bottom:461.292133pt;}
.y30{bottom:462.357867pt;}
.y1e7{bottom:462.623733pt;}
.y294{bottom:464.278800pt;}
.ydf{bottom:464.886133pt;}
.y1c9{bottom:464.894933pt;}
.y231{bottom:465.413867pt;}
.y1a6{bottom:467.797467pt;}
.y7e{bottom:468.016133pt;}
.yfd{bottom:468.327067pt;}
.y15b{bottom:468.816267pt;}
.y276{bottom:469.013467pt;}
.y255{bottom:469.638000pt;}
.y52{bottom:471.085333pt;}
.y99{bottom:471.226133pt;}
.y11f{bottom:471.884667pt;}
.y13f{bottom:472.292133pt;}
.y20e{bottom:472.473600pt;}
.y2f{bottom:476.357867pt;}
.ybb{bottom:477.102800pt;}
.y1e6{bottom:478.022800pt;}
.y293{bottom:480.082800pt;}
.yde{bottom:480.659867pt;}
.y1c8{bottom:480.668133pt;}
.y230{bottom:480.959733pt;}
.y1a5{bottom:483.425733pt;}
.y7d{bottom:483.472933pt;}
.yfc{bottom:483.928667pt;}
.y275{bottom:484.580800pt;}
.y15a{bottom:484.867867pt;}
.y254{bottom:485.863333pt;}
.y51{bottom:486.549200pt;}
.y98{bottom:486.682800pt;}
.y13e{bottom:487.102800pt;}
.y11e{bottom:487.308400pt;}
.y20d{bottom:487.867867pt;}
.y17d{bottom:489.049733pt;}
.y2e{bottom:490.357867pt;}
.yba{bottom:492.913333pt;}
.y1e5{bottom:493.421733pt;}
.y292{bottom:495.886933pt;}
.ydd{bottom:496.433600pt;}
.y1c7{bottom:496.441467pt;}
.y22f{bottom:496.505600pt;}
.y7c{bottom:498.929600pt;}
.y1a4{bottom:499.053867pt;}
.yfb{bottom:499.530400pt;}
.y274{bottom:500.148133pt;}
.y159{bottom:500.919600pt;}
.y13d{bottom:501.913333pt;}
.y50{bottom:502.012933pt;}
.y97{bottom:502.139600pt;}
.y11d{bottom:502.732267pt;}
.y17c{bottom:503.118800pt;}
.y20c{bottom:503.262267pt;}
.y2d{bottom:504.357867pt;}
.yb9{bottom:508.724000pt;}
.y1e4{bottom:508.820933pt;}
.y291{bottom:511.691067pt;}
.y22e{bottom:512.051467pt;}
.ydc{bottom:512.207333pt;}
.y1c6{bottom:512.214800pt;}
.y1a3{bottom:514.682000pt;}
.yfa{bottom:515.132133pt;}
.y253{bottom:515.422000pt;}
.y273{bottom:515.715467pt;}
.y13c{bottom:516.724000pt;}
.y158{bottom:516.971200pt;}
.y17b{bottom:517.187733pt;}
.y4f{bottom:517.476667pt;}
.y96{bottom:517.596267pt;}
.y11c{bottom:518.156000pt;}
.y2c{bottom:518.357867pt;}
.y20b{bottom:518.656667pt;}
.y1e3{bottom:524.219867pt;}
.yb8{bottom:524.534533pt;}
.y290{bottom:527.495067pt;}
.y22d{bottom:527.597333pt;}
.y7b{bottom:527.719600pt;}
.ydb{bottom:527.981067pt;}
.y1c5{bottom:527.988000pt;}
.y1a2{bottom:530.310133pt;}
.y252{bottom:530.313867pt;}
.yf9{bottom:530.733733pt;}
.y17a{bottom:531.256800pt;}
.y272{bottom:531.282933pt;}
.y13b{bottom:531.534533pt;}
.y2b{bottom:532.357867pt;}
.y4e{bottom:532.940400pt;}
.y157{bottom:533.022800pt;}
.y95{bottom:533.052933pt;}
.y11b{bottom:533.579867pt;}
.y20a{bottom:534.050933pt;}
.y1e2{bottom:539.618933pt;}
.yb7{bottom:540.345200pt;}
.y7a{bottom:541.843067pt;}
.y22c{bottom:543.143200pt;}
.y28f{bottom:543.299200pt;}
.yda{bottom:543.754800pt;}
.y1c4{bottom:543.761333pt;}
.y251{bottom:545.205867pt;}
.y179{bottom:545.325733pt;}
.y1a1{bottom:545.938267pt;}
.yf8{bottom:546.335467pt;}
.y13a{bottom:546.345200pt;}
.y2a{bottom:546.357867pt;}
.y271{bottom:546.850267pt;}
.y4d{bottom:548.404133pt;}
.y94{bottom:548.509733pt;}
.y11a{bottom:549.003600pt;}
.y156{bottom:549.074400pt;}
.y209{bottom:549.445333pt;}
.y4{bottom:550.962133pt;}
.y1e1{bottom:555.018000pt;}
.y79{bottom:555.966533pt;}
.yb6{bottom:556.155867pt;}
.y22b{bottom:558.689067pt;}
.y28e{bottom:559.103333pt;}
.y178{bottom:559.394667pt;}
.yd9{bottom:559.528533pt;}
.y1c3{bottom:559.534533pt;}
.y250{bottom:560.097867pt;}
.y29{bottom:560.357867pt;}
.y139{bottom:561.155867pt;}
.y1a0{bottom:561.566400pt;}
.yf7{bottom:561.937067pt;}
.y270{bottom:562.417600pt;}
.y4c{bottom:563.867867pt;}
.y93{bottom:563.966533pt;}
.y119{bottom:564.427467pt;}
.y208{bottom:564.839733pt;}
.y155{bottom:565.126000pt;}
.y78{bottom:570.089867pt;}
.y1e0{bottom:570.416933pt;}
.yb5{bottom:571.966533pt;}
.y177{bottom:573.463733pt;}
.y22a{bottom:574.235067pt;}
.y28{bottom:574.357867pt;}
.y28d{bottom:574.907333pt;}
.yd8{bottom:575.302267pt;}
.y1c2{bottom:575.307867pt;}
.y19f{bottom:577.194533pt;}
.yf6{bottom:577.538800pt;}
.y26f{bottom:577.984933pt;}
.y3{bottom:578.117733pt;}
.y4b{bottom:579.331733pt;}
.y92{bottom:579.423200pt;}
.y118{bottom:579.851200pt;}
.y207{bottom:580.234000pt;}
.y154{bottom:581.177600pt;}
.y24f{bottom:585.656533pt;}
.y1df{bottom:585.816133pt;}
.y138{bottom:586.633200pt;}
.y176{bottom:587.532667pt;}
.yb4{bottom:587.777067pt;}
.y27{bottom:588.357867pt;}
.y229{bottom:589.780933pt;}
.y28c{bottom:590.711467pt;}
.yd7{bottom:591.075867pt;}
.y1c1{bottom:591.081200pt;}
.y19e{bottom:592.822800pt;}
.yf5{bottom:593.140400pt;}
.y26e{bottom:593.552267pt;}
.y4a{bottom:594.795467pt;}
.y77{bottom:594.879867pt;}
.y117{bottom:595.274933pt;}
.y206{bottom:595.628400pt;}
.y153{bottom:597.229333pt;}
.y1de{bottom:601.215067pt;}
.y175{bottom:601.601733pt;}
.y24e{bottom:601.881867pt;}
.y26{bottom:602.357867pt;}
.y137{bottom:602.777067pt;}
.yb3{bottom:603.587733pt;}
.y2{bottom:605.273200pt;}
.y228{bottom:605.326800pt;}
.y28b{bottom:606.515600pt;}
.yd6{bottom:606.849600pt;}
.y1c0{bottom:606.854400pt;}
.y19d{bottom:608.450933pt;}
.yf4{bottom:608.742133pt;}
.y26d{bottom:609.119600pt;}
.y49{bottom:610.259200pt;}
.y76{bottom:610.336533pt;}
.y116{bottom:610.698800pt;}
.y205{bottom:611.022667pt;}
.y152{bottom:613.280933pt;}
.y25{bottom:616.357867pt;}
.y1dd{bottom:616.614133pt;}
.y24d{bottom:618.107200pt;}
.y136{bottom:618.921067pt;}
.yb2{bottom:619.398267pt;}
.y227{bottom:620.872667pt;}
.y28a{bottom:622.319600pt;}
.yd5{bottom:622.623333pt;}
.y1bf{bottom:622.627733pt;}
.y19c{bottom:624.079067pt;}
.yf3{bottom:624.343733pt;}
.y26c{bottom:624.687067pt;}
.y48{bottom:625.722933pt;}
.y75{bottom:625.793333pt;}
.y115{bottom:626.122533pt;}
.y174{bottom:626.337333pt;}
.y204{bottom:626.417067pt;}
.y24{bottom:630.357867pt;}
.y1dc{bottom:632.013200pt;}
.y24c{bottom:634.332533pt;}
.y135{bottom:635.064933pt;}
.y226{bottom:636.418533pt;}
.y289{bottom:638.123733pt;}
.yd4{bottom:638.397067pt;}
.y1be{bottom:638.401067pt;}
.y19b{bottom:639.707200pt;}
.yf2{bottom:639.945467pt;}
.y26b{bottom:640.254400pt;}
.y47{bottom:641.186667pt;}
.y74{bottom:641.250000pt;}
.y114{bottom:641.546400pt;}
.y173{bottom:641.739600pt;}
.y203{bottom:641.811467pt;}
.y151{bottom:642.665867pt;}
.y23{bottom:644.357867pt;}
.y1db{bottom:647.412267pt;}
.yb1{bottom:648.542267pt;}
.y24b{bottom:650.557867pt;}
.y134{bottom:651.208933pt;}
.y225{bottom:651.964400pt;}
.y288{bottom:653.927867pt;}
.yd3{bottom:654.170800pt;}
.y1bd{bottom:654.174267pt;}
.y19a{bottom:655.335333pt;}
.yf1{bottom:655.547200pt;}
.y26a{bottom:655.821733pt;}
.y46{bottom:656.650533pt;}
.y73{bottom:656.706800pt;}
.y113{bottom:656.970133pt;}
.y172{bottom:657.142000pt;}
.y202{bottom:657.205733pt;}
.y150{bottom:657.384133pt;}
.y22{bottom:658.357867pt;}
.y1da{bottom:662.811333pt;}
.yb0{bottom:663.019467pt;}
.y24a{bottom:666.783200pt;}
.y133{bottom:667.352800pt;}
.y287{bottom:669.732000pt;}
.yd2{bottom:669.944533pt;}
.y1bc{bottom:669.947600pt;}
.y199{bottom:670.963467pt;}
.yf0{bottom:671.148800pt;}
.y269{bottom:671.389067pt;}
.y14f{bottom:672.102400pt;}
.y45{bottom:672.114267pt;}
.y72{bottom:672.163467pt;}
.y21{bottom:672.357867pt;}
.y2a3{bottom:672.360533pt;}
.y112{bottom:672.394000pt;}
.y171{bottom:672.544267pt;}
.y201{bottom:672.600133pt;}
.yaf{bottom:677.496800pt;}
.y1d9{bottom:678.210267pt;}
.y249{bottom:683.008533pt;}
.y132{bottom:683.496800pt;}
.y286{bottom:685.536000pt;}
.yd1{bottom:685.718267pt;}
.y1bb{bottom:685.720800pt;}
.y224{bottom:686.177067pt;}
.y198{bottom:686.591600pt;}
.yef{bottom:686.750533pt;}
.y268{bottom:686.956400pt;}
.y44{bottom:687.578000pt;}
.y71{bottom:687.620133pt;}
.y2a2{bottom:687.693867pt;}
.y111{bottom:687.817733pt;}
.y170{bottom:687.946667pt;}
.y200{bottom:687.994400pt;}
.yae{bottom:691.974133pt;}
.y1d8{bottom:693.609333pt;}
.y14e{bottom:697.487333pt;}
.y248{bottom:699.233867pt;}
.y131{bottom:699.640800pt;}
.y285{bottom:701.340133pt;}
.y20{bottom:701.475867pt;}
.yd0{bottom:701.492000pt;}
.y1ba{bottom:701.494133pt;}
.y223{bottom:701.722933pt;}
.y197{bottom:702.219867pt;}
.yee{bottom:702.352267pt;}
.y267{bottom:702.523733pt;}
.y43{bottom:703.041733pt;}
.y70{bottom:703.076933pt;}
.y110{bottom:703.241600pt;}
.y16f{bottom:703.348933pt;}
.y1ff{bottom:703.388800pt;}
.y1d7{bottom:709.008400pt;}
.y14d{bottom:713.538933pt;}
.y247{bottom:715.459200pt;}
.y130{bottom:715.784800pt;}
.yad{bottom:717.118133pt;}
.y284{bottom:717.144267pt;}
.ycf{bottom:717.265733pt;}
.y1b9{bottom:717.267467pt;}
.y196{bottom:717.848000pt;}
.yed{bottom:717.953867pt;}
.y266{bottom:718.091200pt;}
.y42{bottom:718.505600pt;}
.y6f{bottom:718.533733pt;}
.y10f{bottom:718.665333pt;}
.y16e{bottom:718.751333pt;}
.y1fe{bottom:718.783067pt;}
.y2a1{bottom:719.027200pt;}
.y1d6{bottom:724.407333pt;}
.y14c{bottom:729.590667pt;}
.y246{bottom:731.684533pt;}
.y12f{bottom:731.928667pt;}
.yac{bottom:732.928667pt;}
.y283{bottom:732.948267pt;}
.yce{bottom:733.039333pt;}
.y1b8{bottom:733.040667pt;}
.y195{bottom:733.476133pt;}
.yec{bottom:733.555467pt;}
.y265{bottom:733.658400pt;}
.y41{bottom:733.969200pt;}
.y6e{bottom:733.990400pt;}
.y10e{bottom:734.089200pt;}
.y16d{bottom:734.153600pt;}
.y1fd{bottom:734.177467pt;}
.y2a0{bottom:734.360533pt;}
.y1f{bottom:741.932667pt;}
.y245{bottom:747.909867pt;}
.y12e{bottom:748.072667pt;}
.yab{bottom:748.739333pt;}
.y282{bottom:748.752400pt;}
.ycd{bottom:748.813200pt;}
.y1b7{bottom:748.814000pt;}
.y194{bottom:749.104267pt;}
.yeb{bottom:749.157200pt;}
.y264{bottom:749.225867pt;}
.y222{bottom:749.268800pt;}
.y40{bottom:749.433067pt;}
.y6d{bottom:749.447067pt;}
.y10d{bottom:749.512933pt;}
.y16c{bottom:749.555867pt;}
.y1fc{bottom:749.571867pt;}
.y29f{bottom:749.693867pt;}
.y1d5{bottom:753.139867pt;}
.y1e{bottom:755.932667pt;}
.y244{bottom:764.135200pt;}
.y12d{bottom:764.216667pt;}
.y14b{bottom:764.308933pt;}
.yaa{bottom:764.550000pt;}
.y281{bottom:764.556533pt;}
.ycc{bottom:764.586800pt;}
.y1b6{bottom:764.587200pt;}
.y193{bottom:764.732400pt;}
.yea{bottom:764.758933pt;}
.y263{bottom:764.793200pt;}
.y221{bottom:764.814667pt;}
.y3f{bottom:764.896800pt;}
.y6c{bottom:764.903867pt;}
.y10c{bottom:764.936800pt;}
.y16b{bottom:764.958267pt;}
.y1fb{bottom:764.966267pt;}
.y29e{bottom:765.027200pt;}
.y1d4{bottom:767.205467pt;}
.y3e{bottom:780.360533pt;}
.y1d{bottom:781.271200pt;}
.y1c{bottom:815.287067pt;}
.y3d{bottom:815.742400pt;}
.h6{height:25.749333pt;}
.h2{height:28.736000pt;}
.h7{height:40.709333pt;}
.hb{height:43.677333pt;}
.h5{height:44.384000pt;}
.h8{height:45.498667pt;}
.h4{height:46.765333pt;}
.ha{height:50.288000pt;}
.h9{height:51.688000pt;}
.h3{height:76.629333pt;}
.h0{height:907.088000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x3{left:104.072667pt;}
.x8{left:105.826800pt;}
.x6{left:115.804933pt;}
.x7{left:117.165333pt;}
.xf{left:121.330133pt;}
.x4{left:125.032533pt;}
.x13{left:125.973867pt;}
.xb{left:127.143600pt;}
.xe{left:128.504000pt;}
.x2{left:142.984267pt;}
.x11{left:154.960667pt;}
.x12{left:166.299200pt;}
.x10{left:177.637867pt;}
.xa{left:270.436667pt;}
.x5{left:283.924400pt;}
.xd{left:287.232133pt;}
.xc{left:292.792933pt;}
.x15{left:322.875600pt;}
.x14{left:381.758400pt;}
.x9{left:452.712533pt;}
}




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