
    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_d2a6cfb383303a27d6ec4d8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_e583d07ec70479a2b9afd35a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_006b1c1fe39b784409b14d14.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903000;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_2a447fc765da175ebc7175cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a8e0e595fdaee183a0a7c609.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb37e9645d9225a0999c8b00.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab57d840406b5d1149d459f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_290afa372b8a16b81ad76198.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_68d60082da2fa985ab51dc83.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_c50c1260512683e9ecf1da83.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_ef07d4ae46a472a4ab79747e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1c7a4b0d6e37e43dc43dfd46.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f805b00f1706d2ee1e7e073c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.623000;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_0d523c55dc9a48d16f241c63.woff2')format("woff");}.fff{font-family:fff;line-height:0.959961;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_4b57b5a0753a102947f740cc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.959961;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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.281250;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_fc2bf63e6bc787001f65341a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021000;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_5c3a19adfd25f481f62e3d9f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_caff406e6832325e40b7e91d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.217000;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_1ef2b0bfe0f5a9dd97e95140.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_00ab6379d6bf8316ebf86316.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.097000;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_a1a871e536f356179d5a6227.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c03cf2385a07af883cd03bf0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;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_313c5487ce4bd27dfa7b57ab.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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_43cef669196ac8e85a983f49.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.959961;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_daf5942dbbe434df83ac26e1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959961;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_4f5ff2295942c2bd9480660f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938965;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_313c5487ce4bd27dfa7b57ab.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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_83e96b30f5a7553e9a721e36.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.959961;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_5a54d25e31daff07002943d1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.959961;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_313c5487ce4bd27dfa7b57ab.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;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_ff6543caedb8f8f5d523fd86.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938965;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_bd2faef6fe1315dc08112c18.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.959961;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_976a5f3df281b48e1ae6904e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.959961;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_90c7318c11c4108c21f24cc5.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.901000;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_7ad590992833fac7c817ea1f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_20b78a30109f3bf0926617da.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_18cb12d267fea2aebc6f5540.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.694000;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_681772688aea49ca46896fd1.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_4786d892c4106a432bdd4116.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_db688f535e58503966fb5d3e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.959961;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_3db94510f148f7491f606e2c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_8494d363fc5b9c117fc20da0.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.908000;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_704d9e317f0e7419b45425d6.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;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_4125f51947328a74cef94bdb.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;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_2f850d66565fd26e3e57de23.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_9dc267badf865224d795c55d.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.025000;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_4cfae73b689002856d5ba93e.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.685000;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_54e5c4bac8266347d06581ef.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_b5226548cece4aaf70979265.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.029000;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_aa770a5733cd9a77d3acabc0.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.693000;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_a7e936da32a447a3a88b3768.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.635000;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_170d989c266b7a92a8e0e491.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_1add952d8b1144f83dbd52ed.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.635000;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_d61ecb1269faf26d8fdc91a5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.432129;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_335eff68afa5ee5a67f35e64.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.460000;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_bc40feff82cfeaba0e44a582.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.432129;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_fcd6494f20e9cda6b1b82af2.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.432129;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_a3e601d601136b53da27c4dd.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-74.724000px;}
.vb{vertical-align:-53.802000px;}
.v2{vertical-align:-26.034000px;}
.v3{vertical-align:-21.690000px;}
.v4{vertical-align:-10.758000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:6.972000px;}
.ve{vertical-align:14.778000px;}
.vd{vertical-align:17.736000px;}
.vc{vertical-align:20.724000px;}
.v1{vertical-align:26.034000px;}
.v6{vertical-align:39.930000px;}
.v9{vertical-align:50.094000px;}
.vf{vertical-align:53.796000px;}
.v8{vertical-align:60.852000px;}
.v5{vertical-align:114.648000px;}
.ls3{letter-spacing:-0.078156px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000109px;}
.ls34{letter-spacing:0.000141px;}
.ls7{letter-spacing:0.000346px;}
.ls56{letter-spacing:0.000445px;}
.ls37{letter-spacing:0.000499px;}
.ls3d{letter-spacing:0.000545px;}
.ls1e{letter-spacing:0.000760px;}
.ls29{letter-spacing:0.000764px;}
.ls5{letter-spacing:0.001114px;}
.ls45{letter-spacing:0.001150px;}
.ls9{letter-spacing:0.001386px;}
.ls10{letter-spacing:0.001505px;}
.ls52{letter-spacing:0.001809px;}
.ls59{letter-spacing:0.002227px;}
.ls23{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.002759px;}
.ls6f{letter-spacing:0.002991px;}
.ls4d{letter-spacing:0.003031px;}
.ls15{letter-spacing:0.003679px;}
.ls50{letter-spacing:0.003894px;}
.ls2d{letter-spacing:0.004381px;}
.ls35{letter-spacing:0.005843px;}
.ls8{letter-spacing:0.006346px;}
.ls20{letter-spacing:0.006760px;}
.lsf{letter-spacing:1.936742px;}
.ls1{letter-spacing:2.983699px;}
.ls55{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.987236px;}
.ls36{letter-spacing:2.987282px;}
.ls3c{letter-spacing:2.988266px;}
.ls2{letter-spacing:2.988707px;}
.lsc{letter-spacing:2.990525px;}
.ls38{letter-spacing:2.990915px;}
.ls17{letter-spacing:2.993236px;}
.ls71{letter-spacing:4.185523px;}
.ls66{letter-spacing:4.265644px;}
.ls70{letter-spacing:5.891777px;}
.ls6e{letter-spacing:5.897777px;}
.ls53{letter-spacing:6.632915px;}
.ls31{letter-spacing:7.658523px;}
.ls28{letter-spacing:7.664523px;}
.ls1d{letter-spacing:8.013894px;}
.ls69{letter-spacing:8.177236px;}
.ls4b{letter-spacing:8.297139px;}
.ls62{letter-spacing:9.753679px;}
.ls49{letter-spacing:9.755464px;}
.ls3e{letter-spacing:10.570550px;}
.ls18{letter-spacing:11.953114px;}
.ls48{letter-spacing:13.285473px;}
.ls5b{letter-spacing:14.939236px;}
.ls4f{letter-spacing:14.945236px;}
.ls27{letter-spacing:15.935518px;}
.ls1f{letter-spacing:15.937473px;}
.ls46{letter-spacing:15.938759px;}
.ls16{letter-spacing:15.943473px;}
.ls40{letter-spacing:16.602312px;}
.ls3a{letter-spacing:18.559473px;}
.ls19{letter-spacing:18.602400px;}
.ls39{letter-spacing:18.923236px;}
.ls26{letter-spacing:18.929236px;}
.ls47{letter-spacing:19.585473px;}
.ls14{letter-spacing:19.919518px;}
.ls1b{letter-spacing:19.921473px;}
.ls1a{letter-spacing:19.923848px;}
.ls32{letter-spacing:19.925518px;}
.ls43{letter-spacing:19.926301px;}
.ls5d{letter-spacing:19.927114px;}
.ls3f{letter-spacing:20.289031px;}
.ls6{letter-spacing:20.891073px;}
.ls13{letter-spacing:22.913236px;}
.ls25{letter-spacing:23.409848px;}
.ls30{letter-spacing:23.447518px;}
.ls12{letter-spacing:23.709848px;}
.ls41{letter-spacing:23.757160px;}
.ls54{letter-spacing:23.955894px;}
.ls5c{letter-spacing:24.111523px;}
.ls5f{letter-spacing:24.191644px;}
.ls24{letter-spacing:24.887236px;}
.ls6b{letter-spacing:25.075910px;}
.ls60{letter-spacing:25.683848px;}
.ls1c{letter-spacing:26.399236px;}
.ls2f{letter-spacing:26.441236px;}
.ls42{letter-spacing:26.522915px;}
.ls65{letter-spacing:26.613848px;}
.ls5e{letter-spacing:26.875910px;}
.ls57{letter-spacing:27.722915px;}
.ls58{letter-spacing:27.728915px;}
.ls4e{letter-spacing:27.933894px;}
.ls6d{letter-spacing:28.620749px;}
.lsd{letter-spacing:28.928915px;}
.ls51{letter-spacing:29.095473px;}
.ls3b{letter-spacing:29.101473px;}
.ls6a{letter-spacing:29.935910px;}
.ls68{letter-spacing:30.323236px;}
.ls61{letter-spacing:31.061644px;}
.ls67{letter-spacing:31.527523px;}
.ls6c{letter-spacing:32.435236px;}
.ls44{letter-spacing:33.446915px;}
.ls33{letter-spacing:33.746915px;}
.ls63{letter-spacing:33.863236px;}
.lse{letter-spacing:34.328915px;}
.ls21{letter-spacing:34.709236px;}
.ls22{letter-spacing:34.715236px;}
.ls64{letter-spacing:34.793236px;}
.ls2c{letter-spacing:34.985236px;}
.ls5a{letter-spacing:38.155188px;}
.ls2b{letter-spacing:45.871114px;}
.lsb{letter-spacing:48.758915px;}
.ls4a{letter-spacing:120.725236px;}
.ls4c{letter-spacing:127.116648px;}
.ls2e{letter-spacing:610.763236px;}
.ls2a{letter-spacing:713.255236px;}
.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;}
}
.ws169{word-spacing:-100.351949px;}
.ws113{word-spacing:-71.731200px;}
.ws16b{word-spacing:-55.806874px;}
.ws159{word-spacing:-53.152819px;}
.ws16a{word-spacing:-52.220314px;}
.ws11a{word-spacing:-51.822601px;}
.ws110{word-spacing:-51.789926px;}
.ws15d{word-spacing:-51.646464px;}
.ws12a{word-spacing:-50.809387px;}
.ws157{word-spacing:-46.051430px;}
.wsdd{word-spacing:-45.664082px;}
.ws139{word-spacing:-33.710208px;}
.ws13b{word-spacing:-33.704208px;}
.ws119{word-spacing:-33.684972px;}
.ws125{word-spacing:-22.416000px;}
.wsf0{word-spacing:-21.447629px;}
.ws25{word-spacing:-19.510886px;}
.wse3{word-spacing:-17.932800px;}
.wsfb{word-spacing:-12.009600px;}
.wsfa{word-spacing:-10.008000px;}
.wsb4{word-spacing:-3.906238px;}
.ws165{word-spacing:-3.730022px;}
.ws131{word-spacing:-3.658291px;}
.ws10e{word-spacing:-3.586560px;}
.ws112{word-spacing:-3.576964px;}
.ws10a{word-spacing:-3.514829px;}
.ws106{word-spacing:-3.443098px;}
.ws142{word-spacing:-3.335478px;}
.ws141{word-spacing:-3.275703px;}
.ws1c{word-spacing:-3.227904px;}
.ws8b{word-spacing:-3.156173px;}
.ws166{word-spacing:-2.869248px;}
.ws7a{word-spacing:-2.797517px;}
.wsad{word-spacing:-2.725786px;}
.ws9f{word-spacing:-2.654054px;}
.ws76{word-spacing:-2.582323px;}
.wscd{word-spacing:-2.510592px;}
.ws67{word-spacing:-2.367130px;}
.wsd7{word-spacing:-2.319293px;}
.ws11e{word-spacing:-2.175560px;}
.ws104{word-spacing:-1.936742px;}
.ws36{word-spacing:-1.865011px;}
.ws134{word-spacing:-1.793280px;}
.ws135{word-spacing:-1.578086px;}
.ws89{word-spacing:-1.506355px;}
.ws1a{word-spacing:-1.434624px;}
.wsf3{word-spacing:-1.291162px;}
.ws9{word-spacing:-1.004148px;}
.ws140{word-spacing:-0.944454px;}
.ws6b{word-spacing:-0.932506px;}
.ws10f{word-spacing:-0.915041px;}
.ws7e{word-spacing:-0.860774px;}
.ws16c{word-spacing:-0.789043px;}
.ws4c{word-spacing:-0.573850px;}
.ws10b{word-spacing:-0.502118px;}
.ws13d{word-spacing:-0.430387px;}
.ws2a{word-spacing:-0.358656px;}
.ws85{word-spacing:-0.286925px;}
.ws102{word-spacing:-0.225723px;}
.wsbe{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.143462px;}
.wsa2{word-spacing:-0.103292px;}
.ws91{word-spacing:-0.071731px;}
.wsd8{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.047820px;}
.ws0{word-spacing:0.000000px;}
.ws82{word-spacing:0.071731px;}
.wsca{word-spacing:0.096000px;}
.ws93{word-spacing:0.215194px;}
.ws87{word-spacing:0.286925px;}
.wsd2{word-spacing:0.358656px;}
.ws111{word-spacing:0.396117px;}
.ws129{word-spacing:0.430387px;}
.ws78{word-spacing:0.502118px;}
.ws161{word-spacing:0.573850px;}
.ws12f{word-spacing:0.645581px;}
.wsd4{word-spacing:0.717312px;}
.ws6e{word-spacing:0.789043px;}
.ws19{word-spacing:0.860774px;}
.ws75{word-spacing:0.932506px;}
.wsd6{word-spacing:0.968365px;}
.ws7c{word-spacing:1.004237px;}
.ws167{word-spacing:1.075968px;}
.ws105{word-spacing:1.147699px;}
.ws94{word-spacing:1.219430px;}
.wsb{word-spacing:1.290853px;}
.ws68{word-spacing:1.291162px;}
.ws69{word-spacing:1.362893px;}
.wsb7{word-spacing:1.374428px;}
.ws109{word-spacing:1.434624px;}
.wsc0{word-spacing:1.506355px;}
.ws20{word-spacing:1.578086px;}
.wsdc{word-spacing:1.649818px;}
.ws11b{word-spacing:1.721549px;}
.ws86{word-spacing:1.793280px;}
.ws64{word-spacing:1.865011px;}
.ws54{word-spacing:1.936742px;}
.ws43{word-spacing:2.008474px;}
.ws6a{word-spacing:2.080205px;}
.ws153{word-spacing:2.106680px;}
.ws133{word-spacing:2.151936px;}
.ws155{word-spacing:2.194159px;}
.ws156{word-spacing:2.223667px;}
.wse4{word-spacing:2.295398px;}
.ws38{word-spacing:2.367130px;}
.wsf4{word-spacing:2.438861px;}
.ws127{word-spacing:2.510592px;}
.wse5{word-spacing:2.522530px;}
.ws50{word-spacing:2.582323px;}
.ws21{word-spacing:2.654054px;}
.wsce{word-spacing:2.725786px;}
.wse1{word-spacing:2.797517px;}
.ws74{word-spacing:2.869248px;}
.ws81{word-spacing:2.940979px;}
.ws138{word-spacing:3.012710px;}
.wsf5{word-spacing:3.066914px;}
.wsf7{word-spacing:3.084442px;}
.ws3e{word-spacing:3.156173px;}
.wse{word-spacing:3.227850px;}
.wsf2{word-spacing:3.227904px;}
.wsda{word-spacing:3.299613px;}
.ws121{word-spacing:3.299635px;}
.ws61{word-spacing:3.371366px;}
.ws4a{word-spacing:3.443098px;}
.ws72{word-spacing:3.514829px;}
.ws77{word-spacing:3.586560px;}
.ws12c{word-spacing:3.658267px;}
.ws101{word-spacing:3.658291px;}
.ws8d{word-spacing:3.730022px;}
.ws3f{word-spacing:3.801754px;}
.ws4{word-spacing:3.873205px;}
.ws2{word-spacing:3.873420px;}
.ws1e{word-spacing:3.873485px;}
.ws151{word-spacing:3.892554px;}
.ws130{word-spacing:3.895795px;}
.ws143{word-spacing:3.897369px;}
.wsaa{word-spacing:3.899762px;}
.ws150{word-spacing:3.900150px;}
.wsa5{word-spacing:3.905762px;}
.ws116{word-spacing:3.911793px;}
.ws11d{word-spacing:3.935643px;}
.ws11c{word-spacing:3.937288px;}
.ws73{word-spacing:3.945216px;}
.ws11{word-spacing:3.945222px;}
.ws115{word-spacing:3.966826px;}
.ws147{word-spacing:4.016920px;}
.ws12e{word-spacing:4.016947px;}
.ws49{word-spacing:4.088678px;}
.ws13f{word-spacing:4.136472px;}
.ws8f{word-spacing:4.160410px;}
.ws10c{word-spacing:4.197306px;}
.ws95{word-spacing:4.232141px;}
.wsc{word-spacing:4.303657px;}
.ws1b{word-spacing:4.303872px;}
.ws83{word-spacing:4.375603px;}
.wsd0{word-spacing:4.483200px;}
.ws84{word-spacing:4.590797px;}
.ws99{word-spacing:4.662528px;}
.ws10d{word-spacing:4.707972px;}
.wsdb{word-spacing:4.734259px;}
.ws88{word-spacing:4.805990px;}
.wse0{word-spacing:4.877722px;}
.wsa0{word-spacing:5.021184px;}
.wsd9{word-spacing:5.033106px;}
.ws4e{word-spacing:5.092915px;}
.wsb0{word-spacing:5.164646px;}
.ws14c{word-spacing:5.228640px;}
.ws55{word-spacing:5.236378px;}
.ws137{word-spacing:5.308109px;}
.wscf{word-spacing:5.379825px;}
.ws163{word-spacing:5.379840px;}
.ws57{word-spacing:5.451571px;}
.ws144{word-spacing:5.511310px;}
.ws47{word-spacing:5.523302px;}
.ws17{word-spacing:5.595034px;}
.ws124{word-spacing:5.606909px;}
.wse6{word-spacing:5.630862px;}
.ws9a{word-spacing:5.666765px;}
.ws45{word-spacing:5.810227px;}
.ws2d{word-spacing:5.881958px;}
.ws31{word-spacing:5.953690px;}
.wsa4{word-spacing:6.025421px;}
.wsf{word-spacing:6.025463px;}
.ws22{word-spacing:6.097152px;}
.ws5{word-spacing:6.121267px;}
.ws145{word-spacing:6.168842px;}
.ws2b{word-spacing:6.168883px;}
.ws7f{word-spacing:6.240614px;}
.ws26{word-spacing:6.312346px;}
.ws8{word-spacing:6.383611px;}
.ws16d{word-spacing:6.384077px;}
.wscc{word-spacing:6.455775px;}
.ws7b{word-spacing:6.455808px;}
.ws12b{word-spacing:6.476959px;}
.ws63{word-spacing:6.527539px;}
.ws2c{word-spacing:6.599270px;}
.ws97{word-spacing:6.671002px;}
.ws2f{word-spacing:6.742733px;}
.ws14d{word-spacing:6.814464px;}
.wsf8{word-spacing:6.886195px;}
.wsa3{word-spacing:6.957926px;}
.ws100{word-spacing:6.994800px;}
.wsde{word-spacing:7.029658px;}
.ws158{word-spacing:7.101389px;}
.ws8c{word-spacing:7.173120px;}
.ws5d{word-spacing:7.244851px;}
.ws52{word-spacing:7.316582px;}
.ws3a{word-spacing:7.388314px;}
.ws6c{word-spacing:7.460045px;}
.ws70{word-spacing:7.531776px;}
.wsd5{word-spacing:7.543681px;}
.wse7{word-spacing:7.603507px;}
.ws103{word-spacing:7.647360px;}
.ws6d{word-spacing:7.675238px;}
.ws23{word-spacing:7.746970px;}
.ws15b{word-spacing:7.814289px;}
.ws79{word-spacing:7.818701px;}
.ws15a{word-spacing:7.820909px;}
.ws9d{word-spacing:7.890432px;}
.ws33{word-spacing:7.962163px;}
.ws37{word-spacing:8.033894px;}
.ws8e{word-spacing:8.105626px;}
.ws35{word-spacing:8.177357px;}
.ws48{word-spacing:8.249088px;}
.ws41{word-spacing:8.320819px;}
.ws8a{word-spacing:8.392550px;}
.ws128{word-spacing:8.423326px;}
.ws34{word-spacing:8.464282px;}
.ws66{word-spacing:8.536013px;}
.wsac{word-spacing:8.607744px;}
.ws7d{word-spacing:8.679475px;}
.ws10{word-spacing:8.751203px;}
.ws30{word-spacing:8.751206px;}
.wsa{word-spacing:8.822647px;}
.ws90{word-spacing:8.822938px;}
.ws108{word-spacing:8.966400px;}
.ws148{word-spacing:8.978295px;}
.wse2{word-spacing:9.038131px;}
.ws120{word-spacing:9.047983px;}
.ws11f{word-spacing:9.109862px;}
.ws39{word-spacing:9.181594px;}
.ws92{word-spacing:9.253325px;}
.ws16e{word-spacing:9.421680px;}
.ws2e{word-spacing:9.468518px;}
.ws136{word-spacing:9.508800px;}
.ws5b{word-spacing:9.540250px;}
.ws107{word-spacing:9.611981px;}
.ws28{word-spacing:9.898906px;}
.wsfe{word-spacing:9.970637px;}
.ws13c{word-spacing:10.042368px;}
.ws3d{word-spacing:10.114099px;}
.wse8{word-spacing:10.257562px;}
.ws6f{word-spacing:10.329293px;}
.ws162{word-spacing:10.401024px;}
.wsd3{word-spacing:10.472755px;}
.ws59{word-spacing:10.544486px;}
.ws117{word-spacing:10.616218px;}
.ws3b{word-spacing:10.687949px;}
.ws126{word-spacing:10.831411px;}
.wsd{word-spacing:10.902817px;}
.wsf6{word-spacing:10.951680px;}
.ws15f{word-spacing:11.037120px;}
.ws5f{word-spacing:11.046605px;}
.ws32{word-spacing:11.118336px;}
.ws123{word-spacing:11.211360px;}
.ws122{word-spacing:11.261798px;}
.ws4d{word-spacing:11.476992px;}
.ws12d{word-spacing:11.548646px;}
.ws9b{word-spacing:11.548723px;}
.ws62{word-spacing:11.620454px;}
.ws4f{word-spacing:11.692186px;}
.wsff{word-spacing:11.763917px;}
.wsdf{word-spacing:11.835648px;}
.ws98{word-spacing:11.907379px;}
.ws46{word-spacing:11.979110px;}
.ws71{word-spacing:12.122573px;}
.ws15{word-spacing:12.194304px;}
.ws118{word-spacing:12.207972px;}
.ws14b{word-spacing:12.306480px;}
.ws18{word-spacing:12.409498px;}
.ws27{word-spacing:12.481229px;}
.ws9c{word-spacing:12.552960px;}
.wsb1{word-spacing:12.624691px;}
.ws146{word-spacing:12.684382px;}
.ws65{word-spacing:12.696422px;}
.ws96{word-spacing:13.055078px;}
.wsfc{word-spacing:13.198541px;}
.ws53{word-spacing:13.270272px;}
.ws13a{word-spacing:13.413734px;}
.wsfd{word-spacing:13.485466px;}
.wsb2{word-spacing:13.557197px;}
.ws42{word-spacing:13.628928px;}
.ws60{word-spacing:13.700659px;}
.wsb3{word-spacing:14.417971px;}
.ws9e{word-spacing:14.561434px;}
.ws168{word-spacing:14.633165px;}
.ws29{word-spacing:14.704896px;}
.wsa6{word-spacing:14.776627px;}
.wsd1{word-spacing:14.848358px;}
.wsc4{word-spacing:15.207014px;}
.wsa8{word-spacing:16.067789px;}
.wsb6{word-spacing:16.426445px;}
.ws132{word-spacing:17.585280px;}
.ws164{word-spacing:17.896934px;}
.ws172{word-spacing:18.434918px;}
.ws15e{word-spacing:18.453120px;}
.ws1d{word-spacing:19.233376px;}
.wsc1{word-spacing:19.726080px;}
.ws12{word-spacing:19.846296px;}
.ws13{word-spacing:19.848822px;}
.ws13e{word-spacing:21.476261px;}
.ws171{word-spacing:22.523597px;}
.ws154{word-spacing:22.859502px;}
.ws15c{word-spacing:23.456102px;}
.ws4b{word-spacing:25.034189px;}
.ws1f{word-spacing:26.355376px;}
.ws3c{word-spacing:26.358433px;}
.wsb5{word-spacing:26.474381px;}
.wsab{word-spacing:26.477007px;}
.wsb9{word-spacing:26.499318px;}
.wsaf{word-spacing:26.531357px;}
.wsc6{word-spacing:26.540544px;}
.wsc9{word-spacing:26.592000px;}
.ws152{word-spacing:27.911502px;}
.ws14a{word-spacing:28.500000px;}
.ws51{word-spacing:28.860989px;}
.wsbd{word-spacing:29.071753px;}
.wsbf{word-spacing:29.121237px;}
.ws24{word-spacing:30.171377px;}
.wsc5{word-spacing:30.198835px;}
.ws5c{word-spacing:30.270566px;}
.wsa1{word-spacing:30.423376px;}
.ws80{word-spacing:30.522292px;}
.ws1{word-spacing:31.090290px;}
.wsbb{word-spacing:31.141753px;}
.ws56{word-spacing:32.125469px;}
.wsba{word-spacing:32.192873px;}
.ws58{word-spacing:32.359709px;}
.ws44{word-spacing:32.961629px;}
.wsc2{word-spacing:34.000589px;}
.wsbc{word-spacing:37.341237px;}
.ws5a{word-spacing:37.406429px;}
.ws5e{word-spacing:37.953869px;}
.ws40{word-spacing:38.631358px;}
.wsc8{word-spacing:48.585600px;}
.wsc3{word-spacing:53.733237px;}
.ws7{word-spacing:57.945690px;}
.ws14{word-spacing:57.947036px;}
.ws6{word-spacing:60.286608px;}
.wsa7{word-spacing:75.395762px;}
.wse9{word-spacing:82.132224px;}
.wsa9{word-spacing:109.319762px;}
.wseb{word-spacing:119.145523px;}
.wsc7{word-spacing:120.960000px;}
.ws149{word-spacing:128.730000px;}
.wsea{word-spacing:136.791398px;}
.wsec{word-spacing:154.293811px;}
.wsed{word-spacing:189.442099px;}
.wsef{word-spacing:206.944512px;}
.wsb8{word-spacing:217.067762px;}
.wsee{word-spacing:224.518656px;}
.ws160{word-spacing:235.800000px;}
.wsf9{word-spacing:319.068000px;}
.wsf1{word-spacing:412.650000px;}
.ws14f{word-spacing:424.433510px;}
.ws16f{word-spacing:449.609762px;}
.ws170{word-spacing:520.445762px;}
.ws114{word-spacing:632.597453px;}
.wsae{word-spacing:668.975762px;}
.ws14e{word-spacing:736.607693px;}
.wscb{word-spacing:1265.238835px;}
._4f{margin-left:-48.946506px;}
._53{margin-left:-41.212139px;}
._51{margin-left:-38.767596px;}
._50{margin-left:-37.754269px;}
._28{margin-left:-35.863896px;}
._29{margin-left:-34.558472px;}
._3{margin-left:-6.097387px;}
._20{margin-left:-5.061430px;}
._4{margin-left:-3.834852px;}
._0{margin-left:-2.685540px;}
._5{margin-left:-1.616628px;}
._b{width:1.188095px;}
._2{width:2.685540px;}
._6{width:3.835058px;}
._13{width:5.045258px;}
._11{width:6.722424px;}
._52{width:8.062602px;}
._54{width:13.724968px;}
._55{width:14.977716px;}
._12{width:17.715812px;}
._26{width:18.721875px;}
._10{width:19.828858px;}
._e{width:21.009142px;}
._15{width:23.200663px;}
._14{width:24.420328px;}
._1d{width:26.141642px;}
._17{width:27.215756px;}
._21{width:28.254522px;}
._8{width:29.481962px;}
._9{width:30.843990px;}
._1b{width:32.422502px;}
._23{width:33.673268px;}
._f{width:34.749386px;}
._1a{width:36.693185px;}
._c{width:38.126409px;}
._18{width:39.809112px;}
._1{width:41.935430px;}
._24{width:43.250506px;}
._1e{width:44.543372px;}
._7{width:46.617820px;}
._1c{width:47.831430px;}
._5a{width:48.933495px;}
._4e{width:49.949162px;}
._25{width:51.037722px;}
._a{width:52.076769px;}
._1f{width:54.050432px;}
._32{width:55.413325px;}
._19{width:56.594448px;}
._16{width:57.598450px;}
._4d{width:59.178240px;}
._22{width:61.113279px;}
._27{width:64.048664px;}
._2a{width:68.475259px;}
._5d{width:74.426641px;}
._34{width:146.475110px;}
._57{width:149.490000px;}
._56{width:162.090000px;}
._43{width:170.074675px;}
._38{width:173.804698px;}
._59{width:175.380000px;}
._41{width:176.960870px;}
._5b{width:183.480000px;}
._2c{width:192.960000px;}
._2b{width:195.840000px;}
._2d{width:196.896000px;}
._2e{width:199.296000px;}
._39{width:200.345242px;}
._35{width:213.718730px;}
._37{width:224.662118px;}
._3a{width:236.210842px;}
._3c{width:241.119898px;}
._46{width:245.966285px;}
._42{width:247.154230px;}
._3b{width:248.867018px;}
._3f{width:252.995942px;}
._36{width:259.236557px;}
._3d{width:265.692365px;}
._40{width:271.359130px;}
._3e{width:283.051315px;}
._58{width:286.269158px;}
._44{width:293.021952px;}
._47{width:304.714138px;}
._45{width:310.380902px;}
._33{width:330.107217px;}
._48{width:333.837005px;}
._4c{width:339.588000px;}
._5c{width:380.694300px;}
._61{width:386.362254px;}
._60{width:397.132291px;}
._49{width:424.080000px;}
._4b{width:438.930000px;}
._4a{width:440.160000px;}
._5f{width:442.049082px;}
._5e{width:694.241019px;}
._31{width:1307.885107px;}
._d{width:1871.700000px;}
._30{width:2329.560000px;}
._2f{width:2761.560000px;}
.fc4{color:rgb(191,55,41);}
.fc2{color:transparent;}
.fc1{color:rgb(0,51,153);}
.fc7{color:rgb(26,26,26);}
.fc6{color:rgb(77,77,77);}
.fc5{color:rgb(26,26,26);}
.fc3{color:rgb(131,131,131);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:30.000000px;}
.fs1a{font-size:33.000000px;}
.fs19{font-size:35.865600px;}
.fs17{font-size:36.000000px;}
.fs14{font-size:41.842800px;}
.fs8{font-size:41.844000px;}
.fs4{font-size:42.000000px;}
.fs18{font-size:43.200000px;}
.fs7{font-size:47.820000px;}
.fsd{font-size:47.820600px;}
.fs15{font-size:59.775600px;}
.fs9{font-size:59.778000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs11{font-size:66.238014px;}
.fs12{font-size:67.200000px;}
.fs6{font-size:71.730000px;}
.fsc{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:76.800000px;}
.fs13{font-size:84.000000px;}
.fse{font-size:86.077200px;}
.fs10{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:103.290000px;}
.fsb{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y243{bottom:4.410000px;}
.y193{bottom:6.285000px;}
.y1ab{bottom:7.758000px;}
.y24c{bottom:10.620000px;}
.y28e{bottom:12.930000px;}
.y24e{bottom:13.117500px;}
.y126{bottom:15.082032px;}
.y192{bottom:16.335000px;}
.y13c{bottom:17.003907px;}
.y1aa{bottom:20.178000px;}
.y24d{bottom:22.837500px;}
.y27b{bottom:25.515000px;}
.y11b{bottom:28.283203px;}
.y77{bottom:33.498900px;}
.y28d{bottom:33.630000px;}
.y1bc{bottom:35.532000px;}
.y125{bottom:38.970704px;}
.y133{bottom:44.203125px;}
.y24a{bottom:48.877500px;}
.y76{bottom:50.422680px;}
.y1bb{bottom:51.084000px;}
.y28f{bottom:59.220000px;}
.y245{bottom:59.227500px;}
.y5{bottom:66.525004px;}
.y75{bottom:67.436640px;}
.y246{bottom:68.175000px;}
.y1ba{bottom:68.661000px;}
.y279{bottom:74.715000px;}
.y120{bottom:75.726562px;}
.y74{bottom:84.450600px;}
.y119{bottom:90.978516px;}
.y278{bottom:95.415000px;}
.y18f{bottom:96.427500px;}
.y4{bottom:97.125005px;}
.y288{bottom:98.775000px;}
.y73{bottom:101.464560px;}
.y1b9{bottom:103.671000px;}
.y1a7{bottom:106.362000px;}
.y1ac{bottom:108.801000px;}
.y138{bottom:112.101562px;}
.y194{bottom:117.930000px;}
.y118{bottom:118.423828px;}
.y72{bottom:118.478520px;}
.y274{bottom:118.740000px;}
.y1b8{bottom:119.223000px;}
.y1b7{bottom:134.775000px;}
.y71{bottom:135.402300px;}
.y127{bottom:136.810547px;}
.y21{bottom:139.264499px;}
.y197{bottom:143.535000px;}
.y1b6{bottom:150.327000px;}
.y12c{bottom:151.347657px;}
.y7c{bottom:152.004000px;}
.y70{bottom:152.416260px;}
.y11a{bottom:153.585938px;}
.y289{bottom:154.950000px;}
.y247{bottom:157.597500px;}
.y27a{bottom:162.720000px;}
.y1b5{bottom:165.879000px;}
.y139{bottom:168.246087px;}
.y1fb{bottom:169.009500px;}
.y93{bottom:169.011000px;}
.y6f{bottom:169.430220px;}
.y7b{bottom:169.938000px;}
.y11e{bottom:171.767578px;}
.y12b{bottom:175.195313px;}
.y196{bottom:178.912500px;}
.y24b{bottom:179.805000px;}
.y1b4{bottom:181.431000px;}
.y121{bottom:182.343747px;}
.y275{bottom:182.355000px;}
.y1a8{bottom:185.058000px;}
.y6e{bottom:186.444180px;}
.y114{bottom:189.375000px;}
.y195{bottom:191.872500px;}
.y190{bottom:196.447500px;}
.y18{bottom:196.933500px;}
.y1b3{bottom:196.983000px;}
.y6d{bottom:203.458140px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y28a{bottom:211.125000px;}
.y1b2{bottom:212.535000px;}
.yf8{bottom:213.841500px;}
.y223{bottom:218.242500px;}
.y1cd{bottom:218.701500px;}
.y6c{bottom:220.381920px;}
.y92{bottom:220.789500px;}
.ydd{bottom:220.921500px;}
.y1fa{bottom:221.196000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y257{bottom:222.262500px;}
.y13d{bottom:224.302734px;}
.y13a{bottom:224.390612px;}
.y23f{bottom:224.562000px;}
.y299{bottom:227.530500px;}
.y272{bottom:228.082500px;}
.y1b1{bottom:228.087000px;}
.y176{bottom:228.991500px;}
.y1a5{bottom:229.821000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y215{bottom:237.198000px;}
.y6b{bottom:237.395880px;}
.y18c{bottom:237.594000px;}
.y1e5{bottom:237.886500px;}
.ya9{bottom:238.548000px;}
.yf7{bottom:240.733500px;}
.y23e{bottom:242.496000px;}
.y1b0{bottom:243.639000px;}
.y222{bottom:245.134500px;}
.y1cc{bottom:245.592000px;}
.y276{bottom:245.970000px;}
.y175{bottom:246.924000px;}
.ybb{bottom:246.939000px;}
.y248{bottom:247.027500px;}
.ydc{bottom:247.812000px;}
.y1f9{bottom:248.086500px;}
.y256{bottom:249.153000px;}
.y214{bottom:249.708000px;}
.y6a{bottom:254.409840px;}
.y298{bottom:254.421000px;}
.y271{bottom:254.973000px;}
.y91{bottom:256.651500px;}
.y1a4{bottom:256.713000px;}
.y1af{bottom:259.191000px;}
.y18b{bottom:259.261500px;}
.y12e{bottom:259.423827px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y23d{bottom:260.428500px;}
.y35{bottom:261.502500px;}
.yc3{bottom:263.724000px;}
.y1a9{bottom:263.754000px;}
.y1e4{bottom:264.778500px;}
.y141{bottom:267.134772px;}
.y28b{bottom:267.300000px;}
.yf6{bottom:267.624000px;}
.y115{bottom:268.365240px;}
.y174{bottom:270.280500px;}
.y69{bottom:271.423800px;}
.y221{bottom:272.025000px;}
.y1cb{bottom:272.482500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y213{bottom:273.063000px;}
.ya8{bottom:274.410000px;}
.ydb{bottom:274.702500px;}
.y1ae{bottom:274.743000px;}
.y1f8{bottom:274.977000px;}
.y255{bottom:276.045000px;}
.y2ae{bottom:277.941000px;}
.y23c{bottom:278.361000px;}
.y13b{bottom:280.535137px;}
.y18a{bottom:280.930500px;}
.y297{bottom:281.313000px;}
.y2c1{bottom:281.445000px;}
.y270{bottom:281.865000px;}
.yba{bottom:282.801000px;}
.y1a3{bottom:283.603500px;}
.y34{bottom:284.859000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y12d{bottom:285.339843px;}
.y68{bottom:288.437760px;}
.y122{bottom:288.960932px;}
.y1e3{bottom:291.669000px;}
.y1ad{bottom:292.311000px;}
.y90{bottom:292.512000px;}
.y140{bottom:293.056644px;}
.yf5{bottom:294.514500px;}
.y23b{bottom:296.293500px;}
.y191{bottom:296.467500px;}
.y159{bottom:297.033000px;}
.y220{bottom:298.915500px;}
.y1ca{bottom:299.373000px;}
.yda{bottom:301.594500px;}
.y189{bottom:302.599500px;}
.y2ad{bottom:304.831500px;}
.y67{bottom:305.361540px;}
.y296{bottom:308.203500px;}
.y2c0{bottom:308.335500px;}
.y26f{bottom:308.755500px;}
.y277{bottom:309.585000px;}
.ya7{bottom:310.270500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1a2{bottom:310.494000px;}
.y241{bottom:312.247500px;}
.y12a{bottom:312.667972px;}
.y23a{bottom:314.226000px;}
.y158{bottom:314.965500px;}
.y173{bottom:316.762500px;}
.yc2{bottom:317.344500px;}
.y1e2{bottom:318.559500px;}
.yb9{bottom:318.663000px;}
.y13f{bottom:318.972660px;}
.y131{bottom:319.652343px;}
.y212{bottom:320.542500px;}
.yf4{bottom:321.405000px;}
.y66{bottom:322.375500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y28c{bottom:323.475000px;}
.y1f7{bottom:324.123000px;}
.y188{bottom:324.865500px;}
.y254{bottom:325.189500px;}
.y21f{bottom:325.806000px;}
.y1c9{bottom:326.265000px;}
.y8f{bottom:328.374000px;}
.y33{bottom:331.341000px;}
.y11f{bottom:331.699214px;}
.y2ac{bottom:331.723500px;}
.y239{bottom:332.158500px;}
.y157{bottom:332.899500px;}
.y2bf{bottom:335.226000px;}
.y26e{bottom:335.646000px;}
.y249{bottom:336.450000px;}
.y129{bottom:336.509766px;}
.y1a1{bottom:337.384500px;}
.y65{bottom:339.389460px;}
.y10d{bottom:340.635000px;}
.yd9{bottom:343.429500px;}
.y172{bottom:343.653000px;}
.y13e{bottom:344.894532px;}
.y1e1{bottom:345.450000px;}
.ya6{bottom:346.132500px;}
.y238{bottom:346.398000px;}
.y187{bottom:346.534500px;}
.y295{bottom:346.675500px;}
.y116{bottom:347.355480px;}
.yf{bottom:348.133500px;}
.y285{bottom:348.297000px;}
.y156{bottom:350.832000px;}
.y21e{bottom:352.698000px;}
.y1c8{bottom:353.155500px;}
.yb8{bottom:354.525000px;}
.y237{bottom:355.515000px;}
.y64{bottom:356.403420px;}
.y2ab{bottom:358.614000px;}
.yf3{bottom:360.811500px;}
.y26d{bottom:362.536500px;}
.y8e{bottom:364.236000px;}
.y1a0{bottom:364.275000px;}
.y32{bottom:367.203000px;}
.y10c{bottom:367.525500px;}
.y236{bottom:368.025000px;}
.y186{bottom:368.203500px;}
.yd8{bottom:370.320000px;}
.y171{bottom:370.543500px;}
.y1e0{bottom:372.340500px;}
.y1f6{bottom:373.269000px;}
.y63{bottom:373.417380px;}
.y155{bottom:374.187000px;}
.y253{bottom:374.335500px;}
.y284{bottom:375.187500px;}
.y2be{bottom:375.937500px;}
.y210{bottom:378.261000px;}
.y211{bottom:379.410000px;}
.y21d{bottom:379.588500px;}
.y1c7{bottom:380.046000px;}
.ya5{bottom:381.994500px;}
.y26c{bottom:384.994500px;}
.y2aa{bottom:385.504500px;}
.y235{bottom:385.957500px;}
.ye{bottom:386.785499px;}
.yf2{bottom:387.703500px;}
.y26b{bottom:389.428500px;}
.y185{bottom:389.872500px;}
.yb7{bottom:390.387000px;}
.y62{bottom:390.431340px;}
.y19f{bottom:391.167000px;}
.y10b{bottom:394.417500px;}
.y134{bottom:395.138671px;}
.y123{bottom:395.583980px;}
.yd7{bottom:397.210500px;}
.y170{bottom:397.434000px;}
.y294{bottom:398.659500px;}
.yc1{bottom:398.779500px;}
.y1df{bottom:399.232500px;}
.y8d{bottom:400.098000px;}
.y1f5{bottom:400.159500px;}
.y252{bottom:401.226000px;}
.y2bd{bottom:402.828000px;}
.y31{bottom:403.065000px;}
.y21c{bottom:406.479000px;}
.y1c6{bottom:406.936500px;}
.y61{bottom:407.355120px;}
.yd{bottom:408.044999px;}
.y234{bottom:409.314000px;}
.y26a{bottom:411.885000px;}
.y184{bottom:412.138500px;}
.y2a9{bottom:412.395000px;}
.y283{bottom:413.659500px;}
.y269{bottom:416.319000px;}
.y154{bottom:417.183000px;}
.ya4{bottom:417.856500px;}
.y19e{bottom:418.057500px;}
.y10a{bottom:421.308000px;}
.yd6{bottom:424.101000px;}
.y16f{bottom:424.326000px;}
.y60{bottom:424.369080px;}
.y293{bottom:425.551500px;}
.y1de{bottom:426.123000px;}
.yb6{bottom:426.249000px;}
.y117{bottom:426.351576px;}
.yf1{bottom:427.110000px;}
.y251{bottom:428.116500px;}
.y11c{bottom:433.230468px;}
.y21b{bottom:433.369500px;}
.y183{bottom:433.807500px;}
.y1c5{bottom:433.828500px;}
.yc0{bottom:434.640000px;}
.y20f{bottom:435.156000px;}
.y8c{bottom:435.960000px;}
.y30{bottom:438.927000px;}
.y2a8{bottom:439.287000px;}
.y5f{bottom:441.383040px;}
.y268{bottom:443.209500px;}
.y2bc{bottom:443.539500px;}
.y153{bottom:444.073500px;}
.y135{bottom:444.943356px;}
.y19d{bottom:444.948000px;}
.y109{bottom:448.198500px;}
.y1f4{bottom:449.304000px;}
.y16e{bottom:451.216500px;}
.y292{bottom:452.442000px;}
.y1dd{bottom:453.013500px;}
.ya3{bottom:453.718500px;}
.yf0{bottom:454.000500px;}
.y182{bottom:455.476500px;}
.y233{bottom:455.796000px;}
.y5e{bottom:458.397000px;}
.y1c4{bottom:460.719000px;}
.y20e{bottom:462.046500px;}
.yb5{bottom:462.109500px;}
.y282{bottom:465.388500px;}
.yd5{bottom:465.936000px;}
.y250{bottom:466.588500px;}
.y267{bottom:470.100000px;}
.y2bb{bottom:470.430000px;}
.ybf{bottom:470.502000px;}
.y152{bottom:470.964000px;}
.y8b{bottom:471.820500px;}
.y21a{bottom:471.843000px;}
.y128{bottom:474.251954px;}
.y12f{bottom:474.251958px;}
.y2f{bottom:474.789000px;}
.y5d{bottom:475.410960px;}
.y181{bottom:477.145500px;}
.y16d{bottom:478.107000px;}
.y291{bottom:479.332500px;}
.ybc{bottom:479.868000px;}
.y1dc{bottom:479.904000px;}
.yef{bottom:480.891000px;}
.y232{bottom:482.686500px;}
.y19c{bottom:483.420000px;}
.y108{bottom:486.670500px;}
.y1c3{bottom:487.609500px;}
.y20d{bottom:488.937000px;}
.ya2{bottom:489.579000px;}
.y2a7{bottom:489.714000px;}
.y281{bottom:492.279000px;}
.y5c{bottom:492.334740px;}
.yd4{bottom:492.826500px;}
.y136{bottom:494.753897px;}
.y266{bottom:496.992000px;}
.y151{bottom:497.856000px;}
.yb4{bottom:497.971500px;}
.y1f3{bottom:498.450000px;}
.y180{bottom:499.411500px;}
.y111{bottom:499.892579px;}
.y124{bottom:502.201165px;}
.yc{bottom:502.864502px;}
.y16c{bottom:504.997500px;}
.y290{bottom:506.223000px;}
.y1db{bottom:506.796000px;}
.y8a{bottom:507.682500px;}
.y5b{bottom:509.348700px;}
.y231{bottom:509.577000px;}
.y2e{bottom:510.649500px;}
.y2ba{bottom:511.141500px;}
.y2a6{bottom:511.383000px;}
.y1c2{bottom:514.500000px;}
.y20c{bottom:515.827500px;}
.y24f{bottom:518.574000px;}
.y280{bottom:519.169500px;}
.yd3{bottom:519.718500px;}
.yee{bottom:520.297500px;}
.yb{bottom:520.864502px;}
.y17f{bottom:521.080500px;}
.y130{bottom:522.000000px;}
.y265{bottom:523.882500px;}
.ybe{bottom:524.122500px;}
.y150{bottom:524.746500px;}
.y1f2{bottom:525.340500px;}
.ya1{bottom:525.441000px;}
.y5a{bottom:526.362660px;}
.y219{bottom:530.317500px;}
.y16b{bottom:531.889500px;}
.y2a5{bottom:533.052000px;}
.y1da{bottom:533.686500px;}
.yb3{bottom:533.833500px;}
.y230{bottom:536.467500px;}
.y2b9{bottom:538.032000px;}
.ya{bottom:538.864499px;}
.y19b{bottom:541.896000px;}
.y20b{bottom:542.719500px;}
.y17e{bottom:542.749500px;}
.y59{bottom:543.376620px;}
.y89{bottom:543.544500px;}
.y137{bottom:544.564438px;}
.y107{bottom:545.146500px;}
.y27f{bottom:546.060000px;}
.y2d{bottom:546.511500px;}
.yd2{bottom:546.609000px;}
.yed{bottom:547.189500px;}
.y264{bottom:550.773000px;}
.y14f{bottom:551.637000px;}
.y1f1{bottom:552.232500px;}
.y1c1{bottom:552.973500px;}
.y287{bottom:554.035500px;}
.y2a4{bottom:555.318000px;}
.y9{bottom:556.864499px;}
.y218{bottom:557.208000px;}
.y16a{bottom:558.780000px;}
.y58{bottom:560.390580px;}
.y1d9{bottom:560.577000px;}
.ya0{bottom:561.303000px;}
.y22f{bottom:563.359500px;}
.y17d{bottom:564.417000px;}
.y2b8{bottom:564.924000px;}
.y19a{bottom:568.786500px;}
.yb2{bottom:569.695500px;}
.y20a{bottom:571.002000px;}
.y106{bottom:572.037000px;}
.y27e{bottom:572.952000px;}
.yd1{bottom:573.499500px;}
.yec{bottom:574.080000px;}
.y57{bottom:577.314360px;}
.y263{bottom:577.663500px;}
.y14e{bottom:578.527500px;}
.y1f0{bottom:579.123000px;}
.y88{bottom:579.406500px;}
.y2c{bottom:582.373500px;}
.y10e{bottom:583.781250px;}
.y169{bottom:585.670500px;}
.y17c{bottom:586.684500px;}
.y1d8{bottom:587.467500px;}
.y244{bottom:588.063000px;}
.y56{bottom:594.328320px;}
.y217{bottom:594.933000px;}
.y199{bottom:595.677000px;}
.y9f{bottom:597.165000px;}
.y209{bottom:597.892500px;}
.y105{bottom:598.927500px;}
.y27d{bottom:599.842500px;}
.yd0{bottom:600.390000px;}
.y22e{bottom:601.831500px;}
.y262{bottom:604.555500px;}
.y1c0{bottom:604.957500px;}
.y14d{bottom:605.419500px;}
.yb1{bottom:605.557500px;}
.y2b7{bottom:605.634000px;}
.y1ef{bottom:606.013500px;}
.y17b{bottom:608.352000px;}
.y132{bottom:609.298839px;}
.y55{bottom:611.342280px;}
.y168{bottom:612.561000px;}
.y2a3{bottom:613.077000px;}
.yeb{bottom:613.486500px;}
.y1d7{bottom:614.359500px;}
.y87{bottom:615.268500px;}
.y2b{bottom:618.235500px;}
.y198{bottom:622.569000px;}
.y208{bottom:624.783000px;}
.y104{bottom:625.819500px;}
.y27c{bottom:626.733000px;}
.y54{bottom:628.356240px;}
.y142{bottom:630.000000px;}
.y17a{bottom:630.021000px;}
.y261{bottom:631.446000px;}
.y1bf{bottom:631.848000px;}
.y14c{bottom:632.310000px;}
.y2b6{bottom:632.526000px;}
.y9e{bottom:633.027000px;}
.y167{bottom:639.453000px;}
.yea{bottom:640.377000px;}
.y1d6{bottom:641.250000px;}
.yb0{bottom:641.419500px;}
.ycf{bottom:642.225000px;}
.y53{bottom:645.370200px;}
.y8{bottom:645.510000px;}
.y216{bottom:648.133500px;}
.y2a2{bottom:651.034500px;}
.y86{bottom:651.130500px;}
.y207{bottom:651.673500px;}
.y179{bottom:651.690000px;}
.y103{bottom:652.710000px;}
.y2a{bottom:654.097500px;}
.y1ee{bottom:655.159500px;}
.y240{bottom:656.710500px;}
.y1be{bottom:658.738500px;}
.y14b{bottom:659.200500px;}
.y2b5{bottom:659.416500px;}
.y22d{bottom:660.306000px;}
.y52{bottom:662.293980px;}
.y166{bottom:666.343500px;}
.y7{bottom:666.771000px;}
.ye9{bottom:667.267500px;}
.y1d5{bottom:668.140500px;}
.y9d{bottom:668.889000px;}
.yce{bottom:669.115500px;}
.y260{bottom:669.918000px;}
.y273{bottom:673.563000px;}
.yaf{bottom:677.280000px;}
.y2a1{bottom:677.925000px;}
.y206{bottom:678.565500px;}
.y51{bottom:679.307940px;}
.y102{bottom:679.600500px;}
.y178{bottom:681.727500px;}
.y14a{bottom:686.091000px;}
.y2b4{bottom:686.307000px;}
.y85{bottom:686.991000px;}
.y22c{bottom:687.198000px;}
.y18e{bottom:688.563000px;}
.y29{bottom:689.958000px;}
.y165{bottom:693.234000px;}
.ye8{bottom:694.159500px;}
.y1d4{bottom:695.031000px;}
.ycd{bottom:696.007500px;}
.y50{bottom:696.321900px;}
.y10f{bottom:701.285154px;}
.y1ed{bottom:704.304000px;}
.y9c{bottom:704.749500px;}
.y2a0{bottom:704.815500px;}
.y205{bottom:705.456000px;}
.y101{bottom:706.491000px;}
.y22b{bottom:709.654500px;}
.y1bd{bottom:711.939000px;}
.y149{bottom:712.983000px;}
.yae{bottom:713.142000px;}
.y4f{bottom:713.335860px;}
.y22a{bottom:714.088500px;}
.y164{bottom:720.124500px;}
.y25f{bottom:721.902000px;}
.y1d3{bottom:721.923000px;}
.y84{bottom:722.853000px;}
.ycc{bottom:722.898000px;}
.y6{bottom:726.298500px;}
.y2b3{bottom:727.018500px;}
.y4e{bottom:730.349820px;}
.ybd{bottom:730.900500px;}
.y1ec{bottom:731.194500px;}
.y29f{bottom:731.706000px;}
.y204{bottom:732.346500px;}
.ye7{bottom:733.566000px;}
.y177{bottom:736.945500px;}
.y1a6{bottom:739.435500px;}
.y148{bottom:739.873500px;}
.y9b{bottom:740.611500px;}
.y229{bottom:740.979000px;}
.y28{bottom:743.578500px;}
.y100{bottom:744.964500px;}
.y163{bottom:747.015000px;}
.y4d{bottom:747.273600px;}
.y1d2{bottom:748.813500px;}
.yad{bottom:749.004000px;}
.ycb{bottom:749.788500px;}
.y3{bottom:752.599495px;}
.y2b2{bottom:753.909000px;}
.y1eb{bottom:758.086500px;}
.y29e{bottom:758.598000px;}
.y83{bottom:758.715000px;}
.y203{bottom:759.237000px;}
.ye6{bottom:760.456500px;}
.y4c{bottom:764.287560px;}
.y228{bottom:767.869500px;}
.y162{bottom:773.907000px;}
.y1d1{bottom:775.704000px;}
.y9a{bottom:776.473500px;}
.y147{bottom:778.345500px;}
.y2b1{bottom:780.799500px;}
.y4b{bottom:781.301520px;}
.y25e{bottom:782.731500px;}
.yac{bottom:784.866000px;}
.y29d{bottom:785.488500px;}
.y202{bottom:786.129000px;}
.ye5{bottom:787.347000px;}
.yca{bottom:791.623500px;}
.y82{bottom:794.577000px;}
.y227{bottom:794.761500px;}
.y4a{bottom:798.315480px;}
.y161{bottom:800.797500px;}
.y1d0{bottom:802.594500px;}
.yff{bottom:803.439000px;}
.y1ea{bottom:807.231000px;}
.y27{bottom:807.564000px;}
.y2b0{bottom:807.691500px;}
.y2c7{bottom:809.382000px;}
.y99{bottom:812.335500px;}
.y29c{bottom:812.379000px;}
.y201{bottom:813.019500px;}
.y49{bottom:815.329440px;}
.y146{bottom:816.817500px;}
.yc9{bottom:818.514000px;}
.y110{bottom:818.789058px;}
.yab{bottom:820.728000px;}
.y226{bottom:821.652000px;}
.y113{bottom:823.382812px;}
.ye4{bottom:826.753500px;}
.y160{bottom:827.688000px;}
.yfe{bottom:830.329500px;}
.y81{bottom:830.439000px;}
.y25d{bottom:831.516000px;}
.y48{bottom:832.253220px;}
.y2af{bottom:834.582000px;}
.y2c6{bottom:836.272500px;}
.y29b{bottom:839.269500px;}
.y200{bottom:839.910000px;}
.y1cf{bottom:841.068000px;}
.y98{bottom:848.197500px;}
.y225{bottom:848.542500px;}
.y47{bottom:849.267180px;}
.y25c{bottom:853.185000px;}
.ye3{bottom:853.645500px;}
.y15f{bottom:854.578500px;}
.y1e9{bottom:856.377000px;}
.yfd{bottom:857.220000px;}
.yc8{bottom:860.349000px;}
.y2c5{bottom:863.163000px;}
.y29a{bottom:866.160000px;}
.y46{bottom:866.281140px;}
.y80{bottom:866.301000px;}
.y112{bottom:872.537109px;}
.yaa{bottom:874.347000px;}
.y145{bottom:875.293500px;}
.y1ff{bottom:875.433000px;}
.y2{bottom:879.369000px;}
.ye2{bottom:880.536000px;}
.y15e{bottom:881.470500px;}
.y1e8{bottom:883.267500px;}
.y45{bottom:883.295100px;}
.y97{bottom:884.059500px;}
.yfc{bottom:884.112000px;}
.yc7{bottom:887.239500px;}
.y1ce{bottom:893.052000px;}
.y26{bottom:895.251000px;}
.y25b{bottom:896.523000px;}
.y224{bottom:897.688500px;}
.y11d{bottom:900.000000px;}
.y44{bottom:900.309060px;}
.y7f{bottom:902.161500px;}
.y144{bottom:902.184000px;}
.y1fe{bottom:902.323500px;}
.y2c4{bottom:904.998000px;}
.y15d{bottom:908.361000px;}
.y1e7{bottom:910.158000px;}
.yfb{bottom:911.002500px;}
.y286{bottom:913.359000px;}
.yc6{bottom:914.131500px;}
.y43{bottom:917.232840px;}
.y25a{bottom:918.190500px;}
.y25{bottom:918.607500px;}
.y96{bottom:919.920000px;}
.ye1{bottom:919.942500px;}
.y143{bottom:929.074500px;}
.y1fd{bottom:929.215500px;}
.y2c3{bottom:931.890000px;}
.y42{bottom:934.246800px;}
.y15c{bottom:935.251500px;}
.yfa{bottom:937.893000px;}
.y7e{bottom:938.023500px;}
.y24{bottom:946.060500px;}
.ye0{bottom:946.833000px;}
.y259{bottom:948.228000px;}
.y1e6{bottom:948.630000px;}
.y41{bottom:951.260760px;}
.y95{bottom:955.782000px;}
.yc5{bottom:955.965000px;}
.y2c2{bottom:958.780500px;}
.y15b{bottom:962.142000px;}
.y1{bottom:966.726000px;}
.y40{bottom:968.274720px;}
.ydf{bottom:973.723500px;}
.y7d{bottom:973.885500px;}
.yf9{bottom:976.365000px;}
.y258{bottom:977.668500px;}
.y1fc{bottom:978.360000px;}
.yc4{bottom:982.857000px;}
.y3f{bottom:985.288680px;}
.y15a{bottom:989.034000px;}
.y94{bottom:991.644000px;}
.y242{bottom:994.570500px;}
.y23{bottom:994.629000px;}
.yde{bottom:1000.615500px;}
.y3e{bottom:1002.212460px;}
.y3d{bottom:1019.226420px;}
.y22{bottom:1027.506000px;}
.y18d{bottom:1032.885000px;}
.y3c{bottom:1036.240380px;}
.y3b{bottom:1053.254340px;}
.y3a{bottom:1070.268300px;}
.y7a{bottom:1082.629500px;}
.y39{bottom:1087.192080px;}
.y79{bottom:1100.629500px;}
.y38{bottom:1104.206040px;}
.y78{bottom:1118.629500px;}
.y37{bottom:1121.220000px;}
.y36{bottom:1170.000000px;}
.h2d{height:2.787450px;}
.h33{height:14.205000px;}
.hb{height:23.143500px;}
.h24{height:28.202047px;}
.h27{height:31.289062px;}
.h7{height:32.130000px;}
.h35{height:32.422502px;}
.h32{height:34.417969px;}
.h38{height:37.252247px;}
.h28{height:37.546875px;}
.h12{height:42.561936px;}
.h25{height:44.831700px;}
.hc{height:44.833500px;}
.hf{height:45.000000px;}
.h2a{height:45.056250px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1e{height:48.255428px;}
.h1f{height:48.956250px;}
.h17{height:49.781453px;}
.h23{height:50.211840px;}
.h11{height:52.800000px;}
.hd{height:53.797500px;}
.h14{height:53.798400px;}
.h2{height:55.080000px;}
.h2b{height:55.591680px;}
.h1a{height:55.950000px;}
.h10{height:58.975137px;}
.h2e{height:59.215496px;}
.h30{height:59.609700px;}
.h18{height:60.254040px;}
.h21{height:61.154297px;}
.h20{height:61.195312px;}
.h16{height:61.893450px;}
.ha{height:61.899000px;}
.h15{height:61.899450px;}
.h3b{height:62.578125px;}
.h37{height:63.280247px;}
.h36{height:63.286247px;}
.h1c{height:69.890625px;}
.h1b{height:69.937500px;}
.h2f{height:71.534400px;}
.h9{height:72.199710px;}
.he{height:72.303000px;}
.h13{height:72.304680px;}
.h3c{height:75.093750px;}
.h5{height:78.030000px;}
.h39{height:81.016247px;}
.h2c{height:116.443680px;}
.h4{height:119.055004px;}
.h29{height:306.000000px;}
.h26{height:324.000000px;}
.h31{height:337.860000px;}
.h3a{height:339.000000px;}
.h34{height:424.500000px;}
.h1d{height:540.000000px;}
.h22{height:648.000000px;}
.h19{height:918.000000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w8{width:196.155000px;}
.w7{width:509.400000px;}
.wa{width:510.000000px;}
.w9{width:637.500000px;}
.w2{width:637.794021px;}
.w6{width:648.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w5{width:1080.000000px;}
.w4{width:1188.000000px;}
.x0{left:0.000000px;}
.xd{left:7.500000px;}
.x40{left:10.942500px;}
.x44{left:13.131000px;}
.x3e{left:14.985000px;}
.x3d{left:19.155000px;}
.x68{left:21.885000px;}
.x22{left:25.494141px;}
.xe{left:27.000000px;}
.x15{left:29.132813px;}
.x66{left:30.330000px;}
.x56{left:33.037500px;}
.x1f{left:35.343750px;}
.x54{left:37.627500px;}
.x65{left:38.670000px;}
.x14{left:40.388671px;}
.x59{left:42.712500px;}
.x18{left:44.677734px;}
.x42{left:48.735000px;}
.x2f{left:50.841797px;}
.x20{left:60.814453px;}
.x67{left:62.535000px;}
.x58{left:64.845000px;}
.x19{left:72.427724px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1a{left:107.988282px;}
.xa{left:137.701500px;}
.xf{left:140.700000px;}
.x12{left:146.481000px;}
.x63{left:154.278000px;}
.x4b{left:159.162000px;}
.xb{left:162.438000px;}
.x10{left:164.040000px;}
.x5{left:165.859500px;}
.x53{left:168.049500px;}
.xc{left:169.308000px;}
.x69{left:171.375000px;}
.x13{left:173.794500px;}
.x43{left:175.896000px;}
.x52{left:178.041000px;}
.x4c{left:181.599000px;}
.x16{left:182.982421px;}
.x5f{left:185.877000px;}
.x8{left:190.092000px;}
.x6d{left:197.290500px;}
.x5c{left:200.407500px;}
.x4{left:203.484001px;}
.x6b{left:204.660000px;}
.x1e{left:216.773449px;}
.x3a{left:225.333000px;}
.x39{left:227.040000px;}
.x38{left:242.892000px;}
.x3b{left:244.302000px;}
.x35{left:247.608000px;}
.x6c{left:259.980000px;}
.x5b{left:267.007500px;}
.x3f{left:280.290000px;}
.x33{left:282.399000px;}
.x21{left:293.167968px;}
.x4d{left:303.699000px;}
.x6{left:306.703500px;}
.x7{left:328.461000px;}
.x4a{left:330.123000px;}
.x32{left:331.789500px;}
.x2e{left:333.363282px;}
.x47{left:341.212500px;}
.x6a{left:344.824500px;}
.x46{left:346.569000px;}
.x5a{left:352.260000px;}
.x3c{left:355.638000px;}
.x50{left:359.686500px;}
.x48{left:372.456000px;}
.x55{left:376.771500px;}
.x9{left:403.660500px;}
.x4e{left:408.808500px;}
.x45{left:433.260000px;}
.x6f{left:435.847500px;}
.x6e{left:439.258500px;}
.x4f{left:442.429500px;}
.x36{left:443.685000px;}
.x49{left:445.840500px;}
.x34{left:446.854500px;}
.x37{left:448.269000px;}
.x11{left:450.220500px;}
.x31{left:452.421000px;}
.x3{left:454.959000px;}
.x1c{left:460.962891px;}
.x2d{left:463.148444px;}
.x2c{left:483.158204px;}
.x5d{left:492.196500px;}
.x61{left:506.242500px;}
.x1b{left:524.882812px;}
.x1d{left:543.457032px;}
.x57{left:577.411500px;}
.x60{left:580.851000px;}
.x41{left:584.130000px;}
.x5e{left:600.856500px;}
.x51{left:666.061500px;}
.x62{left:675.142500px;}
.x64{left:733.657500px;}
.x26{left:754.611328px;}
.x28{left:760.207039px;}
.x27{left:769.546881px;}
.x2b{left:800.349600px;}
.x25{left:808.394532px;}
.x23{left:814.388672px;}
.x24{left:821.296882px;}
.x29{left:824.636718px;}
.x2a{left:975.416016px;}
.x17{left:1109.619141px;}
.x30{left:1121.384766px;}
@media print{
.va{vertical-align:-66.421333pt;}
.vb{vertical-align:-47.824000pt;}
.v2{vertical-align:-23.141333pt;}
.v3{vertical-align:-19.280000pt;}
.v4{vertical-align:-9.562667pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:6.197333pt;}
.ve{vertical-align:13.136000pt;}
.vd{vertical-align:15.765333pt;}
.vc{vertical-align:18.421333pt;}
.v1{vertical-align:23.141333pt;}
.v6{vertical-align:35.493333pt;}
.v9{vertical-align:44.528000pt;}
.vf{vertical-align:47.818667pt;}
.v8{vertical-align:54.090667pt;}
.v5{vertical-align:101.909333pt;}
.ls3{letter-spacing:-0.069472pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000097pt;}
.ls34{letter-spacing:0.000125pt;}
.ls7{letter-spacing:0.000307pt;}
.ls56{letter-spacing:0.000396pt;}
.ls37{letter-spacing:0.000444pt;}
.ls3d{letter-spacing:0.000485pt;}
.ls1e{letter-spacing:0.000676pt;}
.ls29{letter-spacing:0.000679pt;}
.ls5{letter-spacing:0.000990pt;}
.ls45{letter-spacing:0.001022pt;}
.ls9{letter-spacing:0.001232pt;}
.ls10{letter-spacing:0.001338pt;}
.ls52{letter-spacing:0.001608pt;}
.ls59{letter-spacing:0.001980pt;}
.ls23{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.002452pt;}
.ls6f{letter-spacing:0.002659pt;}
.ls4d{letter-spacing:0.002694pt;}
.ls15{letter-spacing:0.003270pt;}
.ls50{letter-spacing:0.003461pt;}
.ls2d{letter-spacing:0.003895pt;}
.ls35{letter-spacing:0.005193pt;}
.ls8{letter-spacing:0.005641pt;}
.ls20{letter-spacing:0.006009pt;}
.lsf{letter-spacing:1.721549pt;}
.ls1{letter-spacing:2.652177pt;}
.ls55{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.655321pt;}
.ls36{letter-spacing:2.655362pt;}
.ls3c{letter-spacing:2.656237pt;}
.ls2{letter-spacing:2.656628pt;}
.lsc{letter-spacing:2.658245pt;}
.ls38{letter-spacing:2.658591pt;}
.ls17{letter-spacing:2.660654pt;}
.ls71{letter-spacing:3.720465pt;}
.ls66{letter-spacing:3.791684pt;}
.ls70{letter-spacing:5.237135pt;}
.ls6e{letter-spacing:5.242469pt;}
.ls53{letter-spacing:5.895925pt;}
.ls31{letter-spacing:6.807576pt;}
.ls28{letter-spacing:6.812909pt;}
.ls1d{letter-spacing:7.123461pt;}
.ls69{letter-spacing:7.268654pt;}
.ls4b{letter-spacing:7.375235pt;}
.ls62{letter-spacing:8.669937pt;}
.ls49{letter-spacing:8.671524pt;}
.ls3e{letter-spacing:9.396045pt;}
.ls18{letter-spacing:10.624990pt;}
.ls48{letter-spacing:11.809309pt;}
.ls5b{letter-spacing:13.279321pt;}
.ls4f{letter-spacing:13.284654pt;}
.ls27{letter-spacing:14.164905pt;}
.ls1f{letter-spacing:14.166642pt;}
.ls46{letter-spacing:14.167786pt;}
.ls16{letter-spacing:14.171976pt;}
.ls40{letter-spacing:14.757611pt;}
.ls3a{letter-spacing:16.497309pt;}
.ls19{letter-spacing:16.535467pt;}
.ls39{letter-spacing:16.820654pt;}
.ls26{letter-spacing:16.825987pt;}
.ls47{letter-spacing:17.409309pt;}
.ls14{letter-spacing:17.706238pt;}
.ls1b{letter-spacing:17.707976pt;}
.ls1a{letter-spacing:17.710087pt;}
.ls32{letter-spacing:17.711572pt;}
.ls43{letter-spacing:17.712268pt;}
.ls5d{letter-spacing:17.712990pt;}
.ls3f{letter-spacing:18.034694pt;}
.ls6{letter-spacing:18.569842pt;}
.ls13{letter-spacing:20.367321pt;}
.ls25{letter-spacing:20.808753pt;}
.ls30{letter-spacing:20.842238pt;}
.ls12{letter-spacing:21.075420pt;}
.ls41{letter-spacing:21.117476pt;}
.ls54{letter-spacing:21.294128pt;}
.ls5c{letter-spacing:21.432465pt;}
.ls5f{letter-spacing:21.503684pt;}
.ls24{letter-spacing:22.121987pt;}
.ls6b{letter-spacing:22.289698pt;}
.ls60{letter-spacing:22.830087pt;}
.ls1c{letter-spacing:23.465987pt;}
.ls2f{letter-spacing:23.503321pt;}
.ls42{letter-spacing:23.575925pt;}
.ls65{letter-spacing:23.656753pt;}
.ls5e{letter-spacing:23.889698pt;}
.ls57{letter-spacing:24.642591pt;}
.ls58{letter-spacing:24.647925pt;}
.ls4e{letter-spacing:24.830128pt;}
.ls6d{letter-spacing:25.440666pt;}
.lsd{letter-spacing:25.714591pt;}
.ls51{letter-spacing:25.862642pt;}
.ls3b{letter-spacing:25.867976pt;}
.ls6a{letter-spacing:26.609698pt;}
.ls68{letter-spacing:26.953987pt;}
.ls61{letter-spacing:27.610350pt;}
.ls67{letter-spacing:28.024465pt;}
.ls6c{letter-spacing:28.831321pt;}
.ls44{letter-spacing:29.730591pt;}
.ls33{letter-spacing:29.997258pt;}
.ls63{letter-spacing:30.100654pt;}
.lse{letter-spacing:30.514591pt;}
.ls21{letter-spacing:30.852654pt;}
.ls22{letter-spacing:30.857987pt;}
.ls64{letter-spacing:30.927321pt;}
.ls2c{letter-spacing:31.097987pt;}
.ls5a{letter-spacing:33.915723pt;}
.ls2b{letter-spacing:40.774323pt;}
.lsb{letter-spacing:43.341258pt;}
.ls4a{letter-spacing:107.311321pt;}
.ls4c{letter-spacing:112.992576pt;}
.ls2e{letter-spacing:542.900654pt;}
.ls2a{letter-spacing:634.004654pt;}
.ws169{word-spacing:-89.201732pt;}
.ws113{word-spacing:-63.761067pt;}
.ws16b{word-spacing:-49.606110pt;}
.ws159{word-spacing:-47.246950pt;}
.ws16a{word-spacing:-46.418057pt;}
.ws11a{word-spacing:-46.064534pt;}
.ws110{word-spacing:-46.035490pt;}
.ws15d{word-spacing:-45.907968pt;}
.ws12a{word-spacing:-45.163900pt;}
.ws157{word-spacing:-40.934605pt;}
.wsdd{word-spacing:-40.590295pt;}
.ws139{word-spacing:-29.964629pt;}
.ws13b{word-spacing:-29.959296pt;}
.ws119{word-spacing:-29.942197pt;}
.ws125{word-spacing:-19.925333pt;}
.wsf0{word-spacing:-19.064559pt;}
.ws25{word-spacing:-17.343010pt;}
.wse3{word-spacing:-15.940267pt;}
.wsfb{word-spacing:-10.675200pt;}
.wsfa{word-spacing:-8.896000pt;}
.wsb4{word-spacing:-3.472212pt;}
.ws165{word-spacing:-3.315575pt;}
.ws131{word-spacing:-3.251814pt;}
.ws10e{word-spacing:-3.188053pt;}
.ws112{word-spacing:-3.179523pt;}
.ws10a{word-spacing:-3.124292pt;}
.ws106{word-spacing:-3.060531pt;}
.ws142{word-spacing:-2.964870pt;}
.ws141{word-spacing:-2.911736pt;}
.ws1c{word-spacing:-2.869248pt;}
.ws8b{word-spacing:-2.805487pt;}
.ws166{word-spacing:-2.550443pt;}
.ws7a{word-spacing:-2.486682pt;}
.wsad{word-spacing:-2.422921pt;}
.ws9f{word-spacing:-2.359159pt;}
.ws76{word-spacing:-2.295398pt;}
.wscd{word-spacing:-2.231637pt;}
.ws67{word-spacing:-2.104115pt;}
.wsd7{word-spacing:-2.061594pt;}
.ws11e{word-spacing:-1.933831pt;}
.ws104{word-spacing:-1.721549pt;}
.ws36{word-spacing:-1.657788pt;}
.ws134{word-spacing:-1.594027pt;}
.ws135{word-spacing:-1.402743pt;}
.ws89{word-spacing:-1.338982pt;}
.ws1a{word-spacing:-1.275221pt;}
.wsf3{word-spacing:-1.147699pt;}
.ws9{word-spacing:-0.892576pt;}
.ws140{word-spacing:-0.839515pt;}
.ws6b{word-spacing:-0.828894pt;}
.ws10f{word-spacing:-0.813370pt;}
.ws7e{word-spacing:-0.765133pt;}
.ws16c{word-spacing:-0.701372pt;}
.ws4c{word-spacing:-0.510089pt;}
.ws10b{word-spacing:-0.446327pt;}
.ws13d{word-spacing:-0.382566pt;}
.ws2a{word-spacing:-0.318805pt;}
.ws85{word-spacing:-0.255044pt;}
.ws102{word-spacing:-0.200643pt;}
.wsbe{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.127522pt;}
.wsa2{word-spacing:-0.091815pt;}
.ws91{word-spacing:-0.063761pt;}
.wsd8{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws82{word-spacing:0.063761pt;}
.wsca{word-spacing:0.085333pt;}
.ws93{word-spacing:0.191283pt;}
.ws87{word-spacing:0.255044pt;}
.wsd2{word-spacing:0.318805pt;}
.ws111{word-spacing:0.352104pt;}
.ws129{word-spacing:0.382566pt;}
.ws78{word-spacing:0.446327pt;}
.ws161{word-spacing:0.510089pt;}
.ws12f{word-spacing:0.573850pt;}
.wsd4{word-spacing:0.637611pt;}
.ws6e{word-spacing:0.701372pt;}
.ws19{word-spacing:0.765133pt;}
.ws75{word-spacing:0.828894pt;}
.wsd6{word-spacing:0.860769pt;}
.ws7c{word-spacing:0.892655pt;}
.ws167{word-spacing:0.956416pt;}
.ws105{word-spacing:1.020177pt;}
.ws94{word-spacing:1.083938pt;}
.wsb{word-spacing:1.147425pt;}
.ws68{word-spacing:1.147699pt;}
.ws69{word-spacing:1.211460pt;}
.wsb7{word-spacing:1.221714pt;}
.ws109{word-spacing:1.275221pt;}
.wsc0{word-spacing:1.338982pt;}
.ws20{word-spacing:1.402743pt;}
.wsdc{word-spacing:1.466505pt;}
.ws11b{word-spacing:1.530266pt;}
.ws86{word-spacing:1.594027pt;}
.ws64{word-spacing:1.657788pt;}
.ws54{word-spacing:1.721549pt;}
.ws43{word-spacing:1.785310pt;}
.ws6a{word-spacing:1.849071pt;}
.ws153{word-spacing:1.872604pt;}
.ws133{word-spacing:1.912832pt;}
.ws155{word-spacing:1.950363pt;}
.ws156{word-spacing:1.976593pt;}
.wse4{word-spacing:2.040354pt;}
.ws38{word-spacing:2.104115pt;}
.wsf4{word-spacing:2.167876pt;}
.ws127{word-spacing:2.231637pt;}
.wse5{word-spacing:2.242249pt;}
.ws50{word-spacing:2.295398pt;}
.ws21{word-spacing:2.359159pt;}
.wsce{word-spacing:2.422921pt;}
.wse1{word-spacing:2.486682pt;}
.ws74{word-spacing:2.550443pt;}
.ws81{word-spacing:2.614204pt;}
.ws138{word-spacing:2.677965pt;}
.wsf5{word-spacing:2.726146pt;}
.wsf7{word-spacing:2.741726pt;}
.ws3e{word-spacing:2.805487pt;}
.wse{word-spacing:2.869200pt;}
.wsf2{word-spacing:2.869248pt;}
.wsda{word-spacing:2.932989pt;}
.ws121{word-spacing:2.933009pt;}
.ws61{word-spacing:2.996770pt;}
.ws4a{word-spacing:3.060531pt;}
.ws72{word-spacing:3.124292pt;}
.ws77{word-spacing:3.188053pt;}
.ws12c{word-spacing:3.251793pt;}
.ws101{word-spacing:3.251814pt;}
.ws8d{word-spacing:3.315575pt;}
.ws3f{word-spacing:3.379337pt;}
.ws4{word-spacing:3.442849pt;}
.ws2{word-spacing:3.443040pt;}
.ws1e{word-spacing:3.443098pt;}
.ws151{word-spacing:3.460048pt;}
.ws130{word-spacing:3.462929pt;}
.ws143{word-spacing:3.464328pt;}
.wsaa{word-spacing:3.466455pt;}
.ws150{word-spacing:3.466800pt;}
.wsa5{word-spacing:3.471788pt;}
.ws116{word-spacing:3.477149pt;}
.ws11d{word-spacing:3.498349pt;}
.ws11c{word-spacing:3.499812pt;}
.ws73{word-spacing:3.506859pt;}
.ws11{word-spacing:3.506864pt;}
.ws115{word-spacing:3.526067pt;}
.ws147{word-spacing:3.570596pt;}
.ws12e{word-spacing:3.570620pt;}
.ws49{word-spacing:3.634381pt;}
.ws13f{word-spacing:3.676864pt;}
.ws8f{word-spacing:3.698142pt;}
.ws10c{word-spacing:3.730939pt;}
.ws95{word-spacing:3.761903pt;}
.wsc{word-spacing:3.825472pt;}
.ws1b{word-spacing:3.825664pt;}
.ws83{word-spacing:3.889425pt;}
.wsd0{word-spacing:3.985067pt;}
.ws84{word-spacing:4.080708pt;}
.ws99{word-spacing:4.144469pt;}
.ws10d{word-spacing:4.184864pt;}
.wsdb{word-spacing:4.208230pt;}
.ws88{word-spacing:4.271991pt;}
.wse0{word-spacing:4.335753pt;}
.wsa0{word-spacing:4.463275pt;}
.wsd9{word-spacing:4.473872pt;}
.ws4e{word-spacing:4.527036pt;}
.wsb0{word-spacing:4.590797pt;}
.ws14c{word-spacing:4.647680pt;}
.ws55{word-spacing:4.654558pt;}
.ws137{word-spacing:4.718319pt;}
.wscf{word-spacing:4.782067pt;}
.ws163{word-spacing:4.782080pt;}
.ws57{word-spacing:4.845841pt;}
.ws144{word-spacing:4.898943pt;}
.ws47{word-spacing:4.909602pt;}
.ws17{word-spacing:4.973363pt;}
.ws124{word-spacing:4.983919pt;}
.wse6{word-spacing:5.005210pt;}
.ws9a{word-spacing:5.037124pt;}
.ws45{word-spacing:5.164646pt;}
.ws2d{word-spacing:5.228407pt;}
.ws31{word-spacing:5.292169pt;}
.wsa4{word-spacing:5.355930pt;}
.wsf{word-spacing:5.355968pt;}
.ws22{word-spacing:5.419691pt;}
.ws5{word-spacing:5.441126pt;}
.ws145{word-spacing:5.483415pt;}
.ws2b{word-spacing:5.483452pt;}
.ws7f{word-spacing:5.547213pt;}
.ws26{word-spacing:5.610974pt;}
.ws8{word-spacing:5.674321pt;}
.ws16d{word-spacing:5.674735pt;}
.wscc{word-spacing:5.738467pt;}
.ws7b{word-spacing:5.738496pt;}
.ws12b{word-spacing:5.757297pt;}
.ws63{word-spacing:5.802257pt;}
.ws2c{word-spacing:5.866018pt;}
.ws97{word-spacing:5.929779pt;}
.ws2f{word-spacing:5.993540pt;}
.ws14d{word-spacing:6.057301pt;}
.wsf8{word-spacing:6.121062pt;}
.wsa3{word-spacing:6.184823pt;}
.ws100{word-spacing:6.217600pt;}
.wsde{word-spacing:6.248585pt;}
.ws158{word-spacing:6.312346pt;}
.ws8c{word-spacing:6.376107pt;}
.ws5d{word-spacing:6.439868pt;}
.ws52{word-spacing:6.503629pt;}
.ws3a{word-spacing:6.567390pt;}
.ws6c{word-spacing:6.631151pt;}
.ws70{word-spacing:6.694912pt;}
.wsd5{word-spacing:6.705494pt;}
.wse7{word-spacing:6.758673pt;}
.ws103{word-spacing:6.797653pt;}
.ws6d{word-spacing:6.822434pt;}
.ws23{word-spacing:6.886195pt;}
.ws15b{word-spacing:6.946034pt;}
.ws79{word-spacing:6.949956pt;}
.ws15a{word-spacing:6.951919pt;}
.ws9d{word-spacing:7.013717pt;}
.ws33{word-spacing:7.077478pt;}
.ws37{word-spacing:7.141239pt;}
.ws8e{word-spacing:7.205001pt;}
.ws35{word-spacing:7.268762pt;}
.ws48{word-spacing:7.332523pt;}
.ws41{word-spacing:7.396284pt;}
.ws8a{word-spacing:7.460045pt;}
.ws128{word-spacing:7.487401pt;}
.ws34{word-spacing:7.523806pt;}
.ws66{word-spacing:7.587567pt;}
.wsac{word-spacing:7.651328pt;}
.ws7d{word-spacing:7.715089pt;}
.ws10{word-spacing:7.778848pt;}
.ws30{word-spacing:7.778850pt;}
.wsa{word-spacing:7.842352pt;}
.ws90{word-spacing:7.842611pt;}
.ws108{word-spacing:7.970133pt;}
.ws148{word-spacing:7.980707pt;}
.wse2{word-spacing:8.033894pt;}
.ws120{word-spacing:8.042651pt;}
.ws11f{word-spacing:8.097655pt;}
.ws39{word-spacing:8.161417pt;}
.ws92{word-spacing:8.225178pt;}
.ws16e{word-spacing:8.374827pt;}
.ws2e{word-spacing:8.416461pt;}
.ws136{word-spacing:8.452267pt;}
.ws5b{word-spacing:8.480222pt;}
.ws107{word-spacing:8.543983pt;}
.ws28{word-spacing:8.799027pt;}
.wsfe{word-spacing:8.862788pt;}
.ws13c{word-spacing:8.926549pt;}
.ws3d{word-spacing:8.990310pt;}
.wse8{word-spacing:9.117833pt;}
.ws6f{word-spacing:9.181594pt;}
.ws162{word-spacing:9.245355pt;}
.wsd3{word-spacing:9.309116pt;}
.ws59{word-spacing:9.372877pt;}
.ws117{word-spacing:9.436638pt;}
.ws3b{word-spacing:9.500399pt;}
.ws126{word-spacing:9.627921pt;}
.wsd{word-spacing:9.691392pt;}
.wsf6{word-spacing:9.734827pt;}
.ws15f{word-spacing:9.810773pt;}
.ws5f{word-spacing:9.819204pt;}
.ws32{word-spacing:9.882965pt;}
.ws123{word-spacing:9.965653pt;}
.ws122{word-spacing:10.010487pt;}
.ws4d{word-spacing:10.201771pt;}
.ws12d{word-spacing:10.265463pt;}
.ws9b{word-spacing:10.265532pt;}
.ws62{word-spacing:10.329293pt;}
.ws4f{word-spacing:10.393054pt;}
.wsff{word-spacing:10.456815pt;}
.wsdf{word-spacing:10.520576pt;}
.ws98{word-spacing:10.584337pt;}
.ws46{word-spacing:10.648098pt;}
.ws71{word-spacing:10.775620pt;}
.ws15{word-spacing:10.839381pt;}
.ws118{word-spacing:10.851531pt;}
.ws14b{word-spacing:10.939093pt;}
.ws18{word-spacing:11.030665pt;}
.ws27{word-spacing:11.094426pt;}
.ws9c{word-spacing:11.158187pt;}
.wsb1{word-spacing:11.221948pt;}
.ws146{word-spacing:11.275007pt;}
.ws65{word-spacing:11.285709pt;}
.ws96{word-spacing:11.604514pt;}
.wsfc{word-spacing:11.732036pt;}
.ws53{word-spacing:11.795797pt;}
.ws13a{word-spacing:11.923319pt;}
.wsfd{word-spacing:11.987081pt;}
.wsb2{word-spacing:12.050842pt;}
.ws42{word-spacing:12.114603pt;}
.ws60{word-spacing:12.178364pt;}
.wsb3{word-spacing:12.815974pt;}
.ws9e{word-spacing:12.943497pt;}
.ws168{word-spacing:13.007258pt;}
.ws29{word-spacing:13.071019pt;}
.wsa6{word-spacing:13.134780pt;}
.wsd1{word-spacing:13.198541pt;}
.wsc4{word-spacing:13.517346pt;}
.wsa8{word-spacing:14.282479pt;}
.wsb6{word-spacing:14.601284pt;}
.ws132{word-spacing:15.631360pt;}
.ws164{word-spacing:15.908386pt;}
.ws172{word-spacing:16.386594pt;}
.ws15e{word-spacing:16.402773pt;}
.ws1d{word-spacing:17.096335pt;}
.wsc1{word-spacing:17.534293pt;}
.ws12{word-spacing:17.641152pt;}
.ws13{word-spacing:17.643397pt;}
.ws13e{word-spacing:19.090010pt;}
.ws171{word-spacing:20.020975pt;}
.ws154{word-spacing:20.319558pt;}
.ws15c{word-spacing:20.849869pt;}
.ws4b{word-spacing:22.252612pt;}
.ws1f{word-spacing:23.427001pt;}
.ws3c{word-spacing:23.429718pt;}
.wsb5{word-spacing:23.532783pt;}
.wsab{word-spacing:23.535118pt;}
.wsb9{word-spacing:23.554949pt;}
.wsaf{word-spacing:23.583428pt;}
.wsc6{word-spacing:23.591595pt;}
.wsc9{word-spacing:23.637333pt;}
.ws152{word-spacing:24.810224pt;}
.ws14a{word-spacing:25.333333pt;}
.ws51{word-spacing:25.654212pt;}
.wsbd{word-spacing:25.841558pt;}
.wsbf{word-spacing:25.885544pt;}
.ws24{word-spacing:26.819001pt;}
.wsc5{word-spacing:26.843409pt;}
.ws5c{word-spacing:26.907170pt;}
.wsa1{word-spacing:27.043001pt;}
.ws80{word-spacing:27.130926pt;}
.ws1{word-spacing:27.635813pt;}
.wsbb{word-spacing:27.681558pt;}
.ws56{word-spacing:28.555972pt;}
.wsba{word-spacing:28.615887pt;}
.ws58{word-spacing:28.764186pt;}
.ws44{word-spacing:29.299226pt;}
.wsc2{word-spacing:30.222746pt;}
.wsbc{word-spacing:33.192211pt;}
.ws5a{word-spacing:33.250159pt;}
.ws5e{word-spacing:33.736772pt;}
.ws40{word-spacing:34.338985pt;}
.wsc8{word-spacing:43.187200pt;}
.wsc3{word-spacing:47.762877pt;}
.ws7{word-spacing:51.507280pt;}
.ws14{word-spacing:51.508477pt;}
.ws6{word-spacing:53.588096pt;}
.wsa7{word-spacing:67.018455pt;}
.wse9{word-spacing:73.006421pt;}
.wsa9{word-spacing:97.173122pt;}
.wseb{word-spacing:105.907132pt;}
.wsc7{word-spacing:107.520000pt;}
.ws149{word-spacing:114.426667pt;}
.wsea{word-spacing:121.592354pt;}
.wsec{word-spacing:137.150054pt;}
.wsed{word-spacing:168.392977pt;}
.wsef{word-spacing:183.950677pt;}
.wsb8{word-spacing:192.949122pt;}
.wsee{word-spacing:199.572139pt;}
.ws160{word-spacing:209.600000pt;}
.wsf9{word-spacing:283.616000pt;}
.wsf1{word-spacing:366.800000pt;}
.ws14f{word-spacing:377.274231pt;}
.ws16f{word-spacing:399.653122pt;}
.ws170{word-spacing:462.618455pt;}
.ws114{word-spacing:562.308847pt;}
.wsae{word-spacing:594.645122pt;}
.ws14e{word-spacing:654.762394pt;}
.wscb{word-spacing:1124.656742pt;}
._4f{margin-left:-43.508006pt;}
._53{margin-left:-36.633013pt;}
._51{margin-left:-34.460085pt;}
._50{margin-left:-33.559351pt;}
._28{margin-left:-31.879019pt;}
._29{margin-left:-30.718641pt;}
._3{margin-left:-5.419899pt;}
._20{margin-left:-4.499049pt;}
._4{margin-left:-3.408757pt;}
._0{margin-left:-2.387147pt;}
._5{margin-left:-1.437003pt;}
._b{width:1.056085pt;}
._2{width:2.387147pt;}
._6{width:3.408941pt;}
._13{width:4.484674pt;}
._11{width:5.975488pt;}
._52{width:7.166757pt;}
._54{width:12.199971pt;}
._55{width:13.313525pt;}
._12{width:15.747388pt;}
._26{width:16.641667pt;}
._10{width:17.625651pt;}
._e{width:18.674793pt;}
._15{width:20.622812pt;}
._14{width:21.706959pt;}
._1d{width:23.237015pt;}
._17{width:24.191784pt;}
._21{width:25.115131pt;}
._8{width:26.206189pt;}
._9{width:27.416880pt;}
._1b{width:28.820002pt;}
._23{width:29.931794pt;}
._f{width:30.888343pt;}
._1a{width:32.616165pt;}
._c{width:33.890142pt;}
._18{width:35.385878pt;}
._1{width:37.275938pt;}
._24{width:38.444895pt;}
._1e{width:39.594108pt;}
._7{width:41.438062pt;}
._1c{width:42.516827pt;}
._5a{width:43.496440pt;}
._4e{width:44.399255pt;}
._25{width:45.366864pt;}
._a{width:46.290461pt;}
._1f{width:48.044829pt;}
._32{width:49.256289pt;}
._19{width:50.306176pt;}
._16{width:51.198622pt;}
._4d{width:52.602880pt;}
._22{width:54.322915pt;}
._27{width:56.932145pt;}
._2a{width:60.866897pt;}
._5d{width:66.157014pt;}
._34{width:130.200098pt;}
._57{width:132.880000pt;}
._56{width:144.080000pt;}
._43{width:151.177489pt;}
._38{width:154.493065pt;}
._59{width:155.893333pt;}
._41{width:157.298551pt;}
._5b{width:163.093333pt;}
._2c{width:171.520000pt;}
._2b{width:174.080000pt;}
._2d{width:175.018667pt;}
._2e{width:177.152000pt;}
._39{width:178.084659pt;}
._35{width:189.972205pt;}
._37{width:199.699661pt;}
._3a{width:209.965193pt;}
._3c{width:214.328799pt;}
._46{width:218.636698pt;}
._42{width:219.692649pt;}
._3b{width:221.215127pt;}
._3f{width:224.885282pt;}
._36{width:230.432495pt;}
._3d{width:236.170991pt;}
._40{width:241.208115pt;}
._3e{width:251.601169pt;}
._58{width:254.461474pt;}
._44{width:260.463957pt;}
._47{width:270.857011pt;}
._45{width:275.894135pt;}
._33{width:293.428638pt;}
._48{width:296.744004pt;}
._4c{width:301.856000pt;}
._5c{width:338.394933pt;}
._61{width:343.433115pt;}
._60{width:353.006481pt;}
._49{width:376.960000pt;}
._4b{width:390.160000pt;}
._4a{width:391.253333pt;}
._5f{width:392.932517pt;}
._5e{width:617.103128pt;}
._31{width:1162.564540pt;}
._d{width:1663.733333pt;}
._30{width:2070.720000pt;}
._2f{width:2454.720000pt;}
.fs16{font-size:26.666667pt;}
.fs1a{font-size:29.333333pt;}
.fs19{font-size:31.880533pt;}
.fs17{font-size:32.000000pt;}
.fs14{font-size:37.193600pt;}
.fs8{font-size:37.194667pt;}
.fs4{font-size:37.333333pt;}
.fs18{font-size:38.400000pt;}
.fs7{font-size:42.506667pt;}
.fsd{font-size:42.507200pt;}
.fs15{font-size:53.133867pt;}
.fs9{font-size:53.136000pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs11{font-size:58.878235pt;}
.fs12{font-size:59.733333pt;}
.fs6{font-size:63.760000pt;}
.fsc{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:68.266667pt;}
.fs13{font-size:74.666667pt;}
.fse{font-size:76.513067pt;}
.fs10{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:91.813333pt;}
.fsb{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y243{bottom:3.920000pt;}
.y193{bottom:5.586667pt;}
.y1ab{bottom:6.896000pt;}
.y24c{bottom:9.440000pt;}
.y28e{bottom:11.493333pt;}
.y24e{bottom:11.660000pt;}
.y126{bottom:13.406251pt;}
.y192{bottom:14.520000pt;}
.y13c{bottom:15.114584pt;}
.y1aa{bottom:17.936000pt;}
.y24d{bottom:20.300000pt;}
.y27b{bottom:22.680000pt;}
.y11b{bottom:25.140625pt;}
.y77{bottom:29.776800pt;}
.y28d{bottom:29.893333pt;}
.y1bc{bottom:31.584000pt;}
.y125{bottom:34.640625pt;}
.y133{bottom:39.291667pt;}
.y24a{bottom:43.446667pt;}
.y76{bottom:44.820160pt;}
.y1bb{bottom:45.408000pt;}
.y28f{bottom:52.640000pt;}
.y245{bottom:52.646667pt;}
.y5{bottom:59.133337pt;}
.y75{bottom:59.943680pt;}
.y246{bottom:60.600000pt;}
.y1ba{bottom:61.032000pt;}
.y279{bottom:66.413333pt;}
.y120{bottom:67.312500pt;}
.y74{bottom:75.067200pt;}
.y119{bottom:80.869792pt;}
.y278{bottom:84.813333pt;}
.y18f{bottom:85.713333pt;}
.y4{bottom:86.333337pt;}
.y288{bottom:87.800000pt;}
.y73{bottom:90.190720pt;}
.y1b9{bottom:92.152000pt;}
.y1a7{bottom:94.544000pt;}
.y1ac{bottom:96.712000pt;}
.y138{bottom:99.645833pt;}
.y194{bottom:104.826667pt;}
.y118{bottom:105.265625pt;}
.y72{bottom:105.314240pt;}
.y274{bottom:105.546667pt;}
.y1b8{bottom:105.976000pt;}
.y1b7{bottom:119.800000pt;}
.y71{bottom:120.357600pt;}
.y127{bottom:121.609375pt;}
.y21{bottom:123.790666pt;}
.y197{bottom:127.586667pt;}
.y1b6{bottom:133.624000pt;}
.y12c{bottom:134.531251pt;}
.y7c{bottom:135.114667pt;}
.y70{bottom:135.481120pt;}
.y11a{bottom:136.520833pt;}
.y289{bottom:137.733333pt;}
.y247{bottom:140.086667pt;}
.y27a{bottom:144.640000pt;}
.y1b5{bottom:147.448000pt;}
.y139{bottom:149.552078pt;}
.y1fb{bottom:150.230667pt;}
.y93{bottom:150.232000pt;}
.y6f{bottom:150.604640pt;}
.y7b{bottom:151.056000pt;}
.y11e{bottom:152.682292pt;}
.y12b{bottom:155.729167pt;}
.y196{bottom:159.033333pt;}
.y24b{bottom:159.826667pt;}
.y1b4{bottom:161.272000pt;}
.y121{bottom:162.083331pt;}
.y275{bottom:162.093333pt;}
.y1a8{bottom:164.496000pt;}
.y6e{bottom:165.728160pt;}
.y114{bottom:168.333333pt;}
.y195{bottom:170.553333pt;}
.y190{bottom:174.620000pt;}
.y18{bottom:175.052000pt;}
.y1b3{bottom:175.096000pt;}
.y6d{bottom:180.851680pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y28a{bottom:187.666667pt;}
.y1b2{bottom:188.920000pt;}
.yf8{bottom:190.081333pt;}
.y223{bottom:193.993333pt;}
.y1cd{bottom:194.401333pt;}
.y6c{bottom:195.895040pt;}
.y92{bottom:196.257333pt;}
.ydd{bottom:196.374667pt;}
.y1fa{bottom:196.618667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y257{bottom:197.566667pt;}
.y13d{bottom:199.380208pt;}
.y13a{bottom:199.458322pt;}
.y23f{bottom:199.610667pt;}
.y299{bottom:202.249333pt;}
.y272{bottom:202.740000pt;}
.y1b1{bottom:202.744000pt;}
.y176{bottom:203.548000pt;}
.y1a5{bottom:204.285333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y215{bottom:210.842667pt;}
.y6b{bottom:211.018560pt;}
.y18c{bottom:211.194667pt;}
.y1e5{bottom:211.454667pt;}
.ya9{bottom:212.042667pt;}
.yf7{bottom:213.985333pt;}
.y23e{bottom:215.552000pt;}
.y1b0{bottom:216.568000pt;}
.y222{bottom:217.897333pt;}
.y1cc{bottom:218.304000pt;}
.y276{bottom:218.640000pt;}
.y175{bottom:219.488000pt;}
.ybb{bottom:219.501333pt;}
.y248{bottom:219.580000pt;}
.ydc{bottom:220.277333pt;}
.y1f9{bottom:220.521333pt;}
.y256{bottom:221.469333pt;}
.y214{bottom:221.962667pt;}
.y6a{bottom:226.142080pt;}
.y298{bottom:226.152000pt;}
.y271{bottom:226.642667pt;}
.y91{bottom:228.134667pt;}
.y1a4{bottom:228.189333pt;}
.y1af{bottom:230.392000pt;}
.y18b{bottom:230.454667pt;}
.y12e{bottom:230.598957pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y23d{bottom:231.492000pt;}
.y35{bottom:232.446667pt;}
.yc3{bottom:234.421333pt;}
.y1a9{bottom:234.448000pt;}
.y1e4{bottom:235.358667pt;}
.y141{bottom:237.453131pt;}
.y28b{bottom:237.600000pt;}
.yf6{bottom:237.888000pt;}
.y115{bottom:238.546880pt;}
.y174{bottom:240.249333pt;}
.y69{bottom:241.265600pt;}
.y221{bottom:241.800000pt;}
.y1cb{bottom:242.206667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y213{bottom:242.722667pt;}
.ya8{bottom:243.920000pt;}
.ydb{bottom:244.180000pt;}
.y1ae{bottom:244.216000pt;}
.y1f8{bottom:244.424000pt;}
.y255{bottom:245.373333pt;}
.y2ae{bottom:247.058667pt;}
.y23c{bottom:247.432000pt;}
.y13b{bottom:249.364566pt;}
.y18a{bottom:249.716000pt;}
.y297{bottom:250.056000pt;}
.y2c1{bottom:250.173333pt;}
.y270{bottom:250.546667pt;}
.yba{bottom:251.378667pt;}
.y1a3{bottom:252.092000pt;}
.y34{bottom:253.208000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y12d{bottom:253.635416pt;}
.y68{bottom:256.389120pt;}
.y122{bottom:256.854162pt;}
.y1e3{bottom:259.261333pt;}
.y1ad{bottom:259.832000pt;}
.y90{bottom:260.010667pt;}
.y140{bottom:260.494795pt;}
.yf5{bottom:261.790667pt;}
.y23b{bottom:263.372000pt;}
.y191{bottom:263.526667pt;}
.y159{bottom:264.029333pt;}
.y220{bottom:265.702667pt;}
.y1ca{bottom:266.109333pt;}
.yda{bottom:268.084000pt;}
.y189{bottom:268.977333pt;}
.y2ad{bottom:270.961333pt;}
.y67{bottom:271.432480pt;}
.y296{bottom:273.958667pt;}
.y2c0{bottom:274.076000pt;}
.y26f{bottom:274.449333pt;}
.y277{bottom:275.186667pt;}
.ya7{bottom:275.796000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1a2{bottom:275.994667pt;}
.y241{bottom:277.553333pt;}
.y12a{bottom:277.927087pt;}
.y23a{bottom:279.312000pt;}
.y158{bottom:279.969333pt;}
.y173{bottom:281.566667pt;}
.yc2{bottom:282.084000pt;}
.y1e2{bottom:283.164000pt;}
.yb9{bottom:283.256000pt;}
.y13f{bottom:283.531253pt;}
.y131{bottom:284.135416pt;}
.y212{bottom:284.926667pt;}
.yf4{bottom:285.693333pt;}
.y66{bottom:286.556000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y28c{bottom:287.533333pt;}
.y1f7{bottom:288.109333pt;}
.y188{bottom:288.769333pt;}
.y254{bottom:289.057333pt;}
.y21f{bottom:289.605333pt;}
.y1c9{bottom:290.013333pt;}
.y8f{bottom:291.888000pt;}
.y33{bottom:294.525333pt;}
.y11f{bottom:294.843745pt;}
.y2ac{bottom:294.865333pt;}
.y239{bottom:295.252000pt;}
.y157{bottom:295.910667pt;}
.y2bf{bottom:297.978667pt;}
.y26e{bottom:298.352000pt;}
.y249{bottom:299.066667pt;}
.y129{bottom:299.119792pt;}
.y1a1{bottom:299.897333pt;}
.y65{bottom:301.679520pt;}
.y10d{bottom:302.786667pt;}
.yd9{bottom:305.270667pt;}
.y172{bottom:305.469333pt;}
.y13e{bottom:306.572917pt;}
.y1e1{bottom:307.066667pt;}
.ya6{bottom:307.673333pt;}
.y238{bottom:307.909333pt;}
.y187{bottom:308.030667pt;}
.y295{bottom:308.156000pt;}
.y116{bottom:308.760427pt;}
.yf{bottom:309.452000pt;}
.y285{bottom:309.597333pt;}
.y156{bottom:311.850667pt;}
.y21e{bottom:313.509333pt;}
.y1c8{bottom:313.916000pt;}
.yb8{bottom:315.133333pt;}
.y237{bottom:316.013333pt;}
.y64{bottom:316.803040pt;}
.y2ab{bottom:318.768000pt;}
.yf3{bottom:320.721333pt;}
.y26d{bottom:322.254667pt;}
.y8e{bottom:323.765333pt;}
.y1a0{bottom:323.800000pt;}
.y32{bottom:326.402667pt;}
.y10c{bottom:326.689333pt;}
.y236{bottom:327.133333pt;}
.y186{bottom:327.292000pt;}
.yd8{bottom:329.173333pt;}
.y171{bottom:329.372000pt;}
.y1e0{bottom:330.969333pt;}
.y1f6{bottom:331.794667pt;}
.y63{bottom:331.926560pt;}
.y155{bottom:332.610667pt;}
.y253{bottom:332.742667pt;}
.y284{bottom:333.500000pt;}
.y2be{bottom:334.166667pt;}
.y210{bottom:336.232000pt;}
.y211{bottom:337.253333pt;}
.y21d{bottom:337.412000pt;}
.y1c7{bottom:337.818667pt;}
.ya5{bottom:339.550667pt;}
.y26c{bottom:342.217333pt;}
.y2aa{bottom:342.670667pt;}
.y235{bottom:343.073333pt;}
.ye{bottom:343.809333pt;}
.yf2{bottom:344.625333pt;}
.y26b{bottom:346.158667pt;}
.y185{bottom:346.553333pt;}
.yb7{bottom:347.010667pt;}
.y62{bottom:347.050080pt;}
.y19f{bottom:347.704000pt;}
.y10b{bottom:350.593333pt;}
.y134{bottom:351.234375pt;}
.y123{bottom:351.630205pt;}
.yd7{bottom:353.076000pt;}
.y170{bottom:353.274667pt;}
.y294{bottom:354.364000pt;}
.yc1{bottom:354.470667pt;}
.y1df{bottom:354.873333pt;}
.y8d{bottom:355.642667pt;}
.y1f5{bottom:355.697333pt;}
.y252{bottom:356.645333pt;}
.y2bd{bottom:358.069333pt;}
.y31{bottom:358.280000pt;}
.y21c{bottom:361.314667pt;}
.y1c6{bottom:361.721333pt;}
.y61{bottom:362.093440pt;}
.yd{bottom:362.706666pt;}
.y234{bottom:363.834667pt;}
.y26a{bottom:366.120000pt;}
.y184{bottom:366.345333pt;}
.y2a9{bottom:366.573333pt;}
.y283{bottom:367.697333pt;}
.y269{bottom:370.061333pt;}
.y154{bottom:370.829333pt;}
.ya4{bottom:371.428000pt;}
.y19e{bottom:371.606667pt;}
.y10a{bottom:374.496000pt;}
.yd6{bottom:376.978667pt;}
.y16f{bottom:377.178667pt;}
.y60{bottom:377.216960pt;}
.y293{bottom:378.268000pt;}
.y1de{bottom:378.776000pt;}
.yb6{bottom:378.888000pt;}
.y117{bottom:378.979179pt;}
.yf1{bottom:379.653333pt;}
.y251{bottom:380.548000pt;}
.y11c{bottom:385.093749pt;}
.y21b{bottom:385.217333pt;}
.y183{bottom:385.606667pt;}
.y1c5{bottom:385.625333pt;}
.yc0{bottom:386.346667pt;}
.y20f{bottom:386.805333pt;}
.y8c{bottom:387.520000pt;}
.y30{bottom:390.157333pt;}
.y2a8{bottom:390.477333pt;}
.y5f{bottom:392.340480pt;}
.y268{bottom:393.964000pt;}
.y2bc{bottom:394.257333pt;}
.y153{bottom:394.732000pt;}
.y135{bottom:395.505206pt;}
.y19d{bottom:395.509333pt;}
.y109{bottom:398.398667pt;}
.y1f4{bottom:399.381333pt;}
.y16e{bottom:401.081333pt;}
.y292{bottom:402.170667pt;}
.y1dd{bottom:402.678667pt;}
.ya3{bottom:403.305333pt;}
.yf0{bottom:403.556000pt;}
.y182{bottom:404.868000pt;}
.y233{bottom:405.152000pt;}
.y5e{bottom:407.464000pt;}
.y1c4{bottom:409.528000pt;}
.y20e{bottom:410.708000pt;}
.yb5{bottom:410.764000pt;}
.y282{bottom:413.678667pt;}
.yd5{bottom:414.165333pt;}
.y250{bottom:414.745333pt;}
.y267{bottom:417.866667pt;}
.y2bb{bottom:418.160000pt;}
.ybf{bottom:418.224000pt;}
.y152{bottom:418.634667pt;}
.y8b{bottom:419.396000pt;}
.y21a{bottom:419.416000pt;}
.y128{bottom:421.557292pt;}
.y12f{bottom:421.557296pt;}
.y2f{bottom:422.034667pt;}
.y5d{bottom:422.587520pt;}
.y181{bottom:424.129333pt;}
.y16d{bottom:424.984000pt;}
.y291{bottom:426.073333pt;}
.ybc{bottom:426.549333pt;}
.y1dc{bottom:426.581333pt;}
.yef{bottom:427.458667pt;}
.y232{bottom:429.054667pt;}
.y19c{bottom:429.706667pt;}
.y108{bottom:432.596000pt;}
.y1c3{bottom:433.430667pt;}
.y20d{bottom:434.610667pt;}
.ya2{bottom:435.181333pt;}
.y2a7{bottom:435.301333pt;}
.y281{bottom:437.581333pt;}
.y5c{bottom:437.630880pt;}
.yd4{bottom:438.068000pt;}
.y136{bottom:439.781242pt;}
.y266{bottom:441.770667pt;}
.y151{bottom:442.538667pt;}
.yb4{bottom:442.641333pt;}
.y1f3{bottom:443.066667pt;}
.y180{bottom:443.921333pt;}
.y111{bottom:444.348959pt;}
.y124{bottom:446.401035pt;}
.yc{bottom:446.990669pt;}
.y16c{bottom:448.886667pt;}
.y290{bottom:449.976000pt;}
.y1db{bottom:450.485333pt;}
.y8a{bottom:451.273333pt;}
.y5b{bottom:452.754400pt;}
.y231{bottom:452.957333pt;}
.y2e{bottom:453.910667pt;}
.y2ba{bottom:454.348000pt;}
.y2a6{bottom:454.562667pt;}
.y1c2{bottom:457.333333pt;}
.y20c{bottom:458.513333pt;}
.y24f{bottom:460.954667pt;}
.y280{bottom:461.484000pt;}
.yd3{bottom:461.972000pt;}
.yee{bottom:462.486667pt;}
.yb{bottom:462.990669pt;}
.y17f{bottom:463.182667pt;}
.y130{bottom:464.000000pt;}
.y265{bottom:465.673333pt;}
.ybe{bottom:465.886667pt;}
.y150{bottom:466.441333pt;}
.y1f2{bottom:466.969333pt;}
.ya1{bottom:467.058667pt;}
.y5a{bottom:467.877920pt;}
.y219{bottom:471.393333pt;}
.y16b{bottom:472.790667pt;}
.y2a5{bottom:473.824000pt;}
.y1da{bottom:474.388000pt;}
.yb3{bottom:474.518667pt;}
.y230{bottom:476.860000pt;}
.y2b9{bottom:478.250667pt;}
.ya{bottom:478.990666pt;}
.y19b{bottom:481.685333pt;}
.y20b{bottom:482.417333pt;}
.y17e{bottom:482.444000pt;}
.y59{bottom:483.001440pt;}
.y89{bottom:483.150667pt;}
.y137{bottom:484.057278pt;}
.y107{bottom:484.574667pt;}
.y27f{bottom:485.386667pt;}
.y2d{bottom:485.788000pt;}
.yd2{bottom:485.874667pt;}
.yed{bottom:486.390667pt;}
.y264{bottom:489.576000pt;}
.y14f{bottom:490.344000pt;}
.y1f1{bottom:490.873333pt;}
.y1c1{bottom:491.532000pt;}
.y287{bottom:492.476000pt;}
.y2a4{bottom:493.616000pt;}
.y9{bottom:494.990666pt;}
.y218{bottom:495.296000pt;}
.y16a{bottom:496.693333pt;}
.y58{bottom:498.124960pt;}
.y1d9{bottom:498.290667pt;}
.ya0{bottom:498.936000pt;}
.y22f{bottom:500.764000pt;}
.y17d{bottom:501.704000pt;}
.y2b8{bottom:502.154667pt;}
.y19a{bottom:505.588000pt;}
.yb2{bottom:506.396000pt;}
.y20a{bottom:507.557333pt;}
.y106{bottom:508.477333pt;}
.y27e{bottom:509.290667pt;}
.yd1{bottom:509.777333pt;}
.yec{bottom:510.293333pt;}
.y57{bottom:513.168320pt;}
.y263{bottom:513.478667pt;}
.y14e{bottom:514.246667pt;}
.y1f0{bottom:514.776000pt;}
.y88{bottom:515.028000pt;}
.y2c{bottom:517.665333pt;}
.y10e{bottom:518.916667pt;}
.y169{bottom:520.596000pt;}
.y17c{bottom:521.497333pt;}
.y1d8{bottom:522.193333pt;}
.y244{bottom:522.722667pt;}
.y56{bottom:528.291840pt;}
.y217{bottom:528.829333pt;}
.y199{bottom:529.490667pt;}
.y9f{bottom:530.813333pt;}
.y209{bottom:531.460000pt;}
.y105{bottom:532.380000pt;}
.y27d{bottom:533.193333pt;}
.yd0{bottom:533.680000pt;}
.y22e{bottom:534.961333pt;}
.y262{bottom:537.382667pt;}
.y1c0{bottom:537.740000pt;}
.y14d{bottom:538.150667pt;}
.yb1{bottom:538.273333pt;}
.y2b7{bottom:538.341333pt;}
.y1ef{bottom:538.678667pt;}
.y17b{bottom:540.757333pt;}
.y132{bottom:541.598968pt;}
.y55{bottom:543.415360pt;}
.y168{bottom:544.498667pt;}
.y2a3{bottom:544.957333pt;}
.yeb{bottom:545.321333pt;}
.y1d7{bottom:546.097333pt;}
.y87{bottom:546.905333pt;}
.y2b{bottom:549.542667pt;}
.y198{bottom:553.394667pt;}
.y208{bottom:555.362667pt;}
.y104{bottom:556.284000pt;}
.y27c{bottom:557.096000pt;}
.y54{bottom:558.538880pt;}
.y142{bottom:560.000000pt;}
.y17a{bottom:560.018667pt;}
.y261{bottom:561.285333pt;}
.y1bf{bottom:561.642667pt;}
.y14c{bottom:562.053333pt;}
.y2b6{bottom:562.245333pt;}
.y9e{bottom:562.690667pt;}
.y167{bottom:568.402667pt;}
.yea{bottom:569.224000pt;}
.y1d6{bottom:570.000000pt;}
.yb0{bottom:570.150667pt;}
.ycf{bottom:570.866667pt;}
.y53{bottom:573.662400pt;}
.y8{bottom:573.786667pt;}
.y216{bottom:576.118667pt;}
.y2a2{bottom:578.697333pt;}
.y86{bottom:578.782667pt;}
.y207{bottom:579.265333pt;}
.y179{bottom:579.280000pt;}
.y103{bottom:580.186667pt;}
.y2a{bottom:581.420000pt;}
.y1ee{bottom:582.364000pt;}
.y240{bottom:583.742667pt;}
.y1be{bottom:585.545333pt;}
.y14b{bottom:585.956000pt;}
.y2b5{bottom:586.148000pt;}
.y22d{bottom:586.938667pt;}
.y52{bottom:588.705760pt;}
.y166{bottom:592.305333pt;}
.y7{bottom:592.685334pt;}
.ye9{bottom:593.126667pt;}
.y1d5{bottom:593.902667pt;}
.y9d{bottom:594.568000pt;}
.yce{bottom:594.769333pt;}
.y260{bottom:595.482667pt;}
.y273{bottom:598.722667pt;}
.yaf{bottom:602.026667pt;}
.y2a1{bottom:602.600000pt;}
.y206{bottom:603.169333pt;}
.y51{bottom:603.829280pt;}
.y102{bottom:604.089333pt;}
.y178{bottom:605.980000pt;}
.y14a{bottom:609.858667pt;}
.y2b4{bottom:610.050667pt;}
.y85{bottom:610.658667pt;}
.y22c{bottom:610.842667pt;}
.y18e{bottom:612.056000pt;}
.y29{bottom:613.296000pt;}
.y165{bottom:616.208000pt;}
.ye8{bottom:617.030667pt;}
.y1d4{bottom:617.805333pt;}
.ycd{bottom:618.673333pt;}
.y50{bottom:618.952800pt;}
.y10f{bottom:623.364581pt;}
.y1ed{bottom:626.048000pt;}
.y9c{bottom:626.444000pt;}
.y2a0{bottom:626.502667pt;}
.y205{bottom:627.072000pt;}
.y101{bottom:627.992000pt;}
.y22b{bottom:630.804000pt;}
.y1bd{bottom:632.834667pt;}
.y149{bottom:633.762667pt;}
.yae{bottom:633.904000pt;}
.y4f{bottom:634.076320pt;}
.y22a{bottom:634.745333pt;}
.y164{bottom:640.110667pt;}
.y25f{bottom:641.690667pt;}
.y1d3{bottom:641.709333pt;}
.y84{bottom:642.536000pt;}
.ycc{bottom:642.576000pt;}
.y6{bottom:645.598667pt;}
.y2b3{bottom:646.238667pt;}
.y4e{bottom:649.199840pt;}
.ybd{bottom:649.689333pt;}
.y1ec{bottom:649.950667pt;}
.y29f{bottom:650.405333pt;}
.y204{bottom:650.974667pt;}
.ye7{bottom:652.058667pt;}
.y177{bottom:655.062667pt;}
.y1a6{bottom:657.276000pt;}
.y148{bottom:657.665333pt;}
.y9b{bottom:658.321333pt;}
.y229{bottom:658.648000pt;}
.y28{bottom:660.958667pt;}
.y100{bottom:662.190667pt;}
.y163{bottom:664.013333pt;}
.y4d{bottom:664.243200pt;}
.y1d2{bottom:665.612000pt;}
.yad{bottom:665.781333pt;}
.ycb{bottom:666.478667pt;}
.y3{bottom:668.977329pt;}
.y2b2{bottom:670.141333pt;}
.y1eb{bottom:673.854667pt;}
.y29e{bottom:674.309333pt;}
.y83{bottom:674.413333pt;}
.y203{bottom:674.877333pt;}
.ye6{bottom:675.961333pt;}
.y4c{bottom:679.366720pt;}
.y228{bottom:682.550667pt;}
.y162{bottom:687.917333pt;}
.y1d1{bottom:689.514667pt;}
.y9a{bottom:690.198667pt;}
.y147{bottom:691.862667pt;}
.y2b1{bottom:694.044000pt;}
.y4b{bottom:694.490240pt;}
.y25e{bottom:695.761333pt;}
.yac{bottom:697.658667pt;}
.y29d{bottom:698.212000pt;}
.y202{bottom:698.781333pt;}
.ye5{bottom:699.864000pt;}
.yca{bottom:703.665333pt;}
.y82{bottom:706.290667pt;}
.y227{bottom:706.454667pt;}
.y4a{bottom:709.613760pt;}
.y161{bottom:711.820000pt;}
.y1d0{bottom:713.417333pt;}
.yff{bottom:714.168000pt;}
.y1ea{bottom:717.538667pt;}
.y27{bottom:717.834667pt;}
.y2b0{bottom:717.948000pt;}
.y2c7{bottom:719.450667pt;}
.y99{bottom:722.076000pt;}
.y29c{bottom:722.114667pt;}
.y201{bottom:722.684000pt;}
.y49{bottom:724.737280pt;}
.y146{bottom:726.060000pt;}
.yc9{bottom:727.568000pt;}
.y110{bottom:727.812496pt;}
.yab{bottom:729.536000pt;}
.y226{bottom:730.357333pt;}
.y113{bottom:731.895833pt;}
.ye4{bottom:734.892000pt;}
.y160{bottom:735.722667pt;}
.yfe{bottom:738.070667pt;}
.y81{bottom:738.168000pt;}
.y25d{bottom:739.125333pt;}
.y48{bottom:739.780640pt;}
.y2af{bottom:741.850667pt;}
.y2c6{bottom:743.353333pt;}
.y29b{bottom:746.017333pt;}
.y200{bottom:746.586667pt;}
.y1cf{bottom:747.616000pt;}
.y98{bottom:753.953333pt;}
.y225{bottom:754.260000pt;}
.y47{bottom:754.904160pt;}
.y25c{bottom:758.386667pt;}
.ye3{bottom:758.796000pt;}
.y15f{bottom:759.625333pt;}
.y1e9{bottom:761.224000pt;}
.yfd{bottom:761.973333pt;}
.yc8{bottom:764.754667pt;}
.y2c5{bottom:767.256000pt;}
.y29a{bottom:769.920000pt;}
.y46{bottom:770.027680pt;}
.y80{bottom:770.045333pt;}
.y112{bottom:775.588541pt;}
.yaa{bottom:777.197333pt;}
.y145{bottom:778.038667pt;}
.y1ff{bottom:778.162667pt;}
.y2{bottom:781.661334pt;}
.ye2{bottom:782.698667pt;}
.y15e{bottom:783.529333pt;}
.y1e8{bottom:785.126667pt;}
.y45{bottom:785.151200pt;}
.y97{bottom:785.830667pt;}
.yfc{bottom:785.877333pt;}
.yc7{bottom:788.657333pt;}
.y1ce{bottom:793.824000pt;}
.y26{bottom:795.778667pt;}
.y25b{bottom:796.909333pt;}
.y224{bottom:797.945333pt;}
.y11d{bottom:800.000000pt;}
.y44{bottom:800.274720pt;}
.y7f{bottom:801.921333pt;}
.y144{bottom:801.941333pt;}
.y1fe{bottom:802.065333pt;}
.y2c4{bottom:804.442667pt;}
.y15d{bottom:807.432000pt;}
.y1e7{bottom:809.029333pt;}
.yfb{bottom:809.780000pt;}
.y286{bottom:811.874667pt;}
.yc6{bottom:812.561333pt;}
.y43{bottom:815.318080pt;}
.y25a{bottom:816.169333pt;}
.y25{bottom:816.540000pt;}
.y96{bottom:817.706667pt;}
.ye1{bottom:817.726667pt;}
.y143{bottom:825.844000pt;}
.y1fd{bottom:825.969333pt;}
.y2c3{bottom:828.346667pt;}
.y42{bottom:830.441600pt;}
.y15c{bottom:831.334667pt;}
.yfa{bottom:833.682667pt;}
.y7e{bottom:833.798667pt;}
.y24{bottom:840.942667pt;}
.ye0{bottom:841.629333pt;}
.y259{bottom:842.869333pt;}
.y1e6{bottom:843.226667pt;}
.y41{bottom:845.565120pt;}
.y95{bottom:849.584000pt;}
.yc5{bottom:849.746667pt;}
.y2c2{bottom:852.249333pt;}
.y15b{bottom:855.237333pt;}
.y1{bottom:859.312000pt;}
.y40{bottom:860.688640pt;}
.ydf{bottom:865.532000pt;}
.y7d{bottom:865.676000pt;}
.yf9{bottom:867.880000pt;}
.y258{bottom:869.038667pt;}
.y1fc{bottom:869.653333pt;}
.yc4{bottom:873.650667pt;}
.y3f{bottom:875.812160pt;}
.y15a{bottom:879.141333pt;}
.y94{bottom:881.461333pt;}
.y242{bottom:884.062667pt;}
.y23{bottom:884.114667pt;}
.yde{bottom:889.436000pt;}
.y3e{bottom:890.855520pt;}
.y3d{bottom:905.979040pt;}
.y22{bottom:913.338667pt;}
.y18d{bottom:918.120000pt;}
.y3c{bottom:921.102560pt;}
.y3b{bottom:936.226080pt;}
.y3a{bottom:951.349600pt;}
.y7a{bottom:962.337333pt;}
.y39{bottom:966.392960pt;}
.y79{bottom:978.337333pt;}
.y38{bottom:981.516480pt;}
.y78{bottom:994.337333pt;}
.y37{bottom:996.640000pt;}
.y36{bottom:1040.000000pt;}
.h2d{height:2.477733pt;}
.h33{height:12.626667pt;}
.hb{height:20.572000pt;}
.h24{height:25.068486pt;}
.h27{height:27.812500pt;}
.h7{height:28.560000pt;}
.h35{height:28.820002pt;}
.h32{height:30.593750pt;}
.h38{height:33.113109pt;}
.h28{height:33.375000pt;}
.h12{height:37.832832pt;}
.h25{height:39.850400pt;}
.hc{height:39.852000pt;}
.hf{height:40.000000pt;}
.h2a{height:40.050000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1e{height:42.893714pt;}
.h1f{height:43.516667pt;}
.h17{height:44.250180pt;}
.h23{height:44.632747pt;}
.h11{height:46.933333pt;}
.hd{height:47.820000pt;}
.h14{height:47.820800pt;}
.h2{height:48.960000pt;}
.h2b{height:49.414827pt;}
.h1a{height:49.733333pt;}
.h10{height:52.422344pt;}
.h2e{height:52.635997pt;}
.h30{height:52.986400pt;}
.h18{height:53.559147pt;}
.h21{height:54.359375pt;}
.h20{height:54.395833pt;}
.h16{height:55.016400pt;}
.ha{height:55.021333pt;}
.h15{height:55.021733pt;}
.h3b{height:55.625000pt;}
.h37{height:56.249109pt;}
.h36{height:56.254442pt;}
.h1c{height:62.125000pt;}
.h1b{height:62.166667pt;}
.h2f{height:63.586133pt;}
.h9{height:64.177520pt;}
.he{height:64.269333pt;}
.h13{height:64.270827pt;}
.h3c{height:66.750000pt;}
.h5{height:69.360000pt;}
.h39{height:72.014442pt;}
.h2c{height:103.505493pt;}
.h4{height:105.826671pt;}
.h29{height:272.000000pt;}
.h26{height:288.000000pt;}
.h31{height:300.320000pt;}
.h3a{height:301.333333pt;}
.h34{height:377.333333pt;}
.h1d{height:480.000000pt;}
.h22{height:576.000000pt;}
.h19{height:816.000000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w8{width:174.360000pt;}
.w7{width:452.800000pt;}
.wa{width:453.333333pt;}
.w9{width:566.666667pt;}
.w2{width:566.928019pt;}
.w6{width:576.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w5{width:960.000000pt;}
.w4{width:1056.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.666667pt;}
.x40{left:9.726667pt;}
.x44{left:11.672000pt;}
.x3e{left:13.320000pt;}
.x3d{left:17.026667pt;}
.x68{left:19.453333pt;}
.x22{left:22.661459pt;}
.xe{left:24.000000pt;}
.x15{left:25.895833pt;}
.x66{left:26.960000pt;}
.x56{left:29.366667pt;}
.x1f{left:31.416667pt;}
.x54{left:33.446667pt;}
.x65{left:34.373333pt;}
.x14{left:35.901041pt;}
.x59{left:37.966667pt;}
.x18{left:39.713541pt;}
.x42{left:43.320000pt;}
.x2f{left:45.192708pt;}
.x20{left:54.057292pt;}
.x67{left:55.586667pt;}
.x58{left:57.640000pt;}
.x19{left:64.380199pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1a{left:95.989584pt;}
.xa{left:122.401333pt;}
.xf{left:125.066667pt;}
.x12{left:130.205333pt;}
.x63{left:137.136000pt;}
.x4b{left:141.477333pt;}
.xb{left:144.389333pt;}
.x10{left:145.813333pt;}
.x5{left:147.430667pt;}
.x53{left:149.377333pt;}
.xc{left:150.496000pt;}
.x69{left:152.333333pt;}
.x13{left:154.484000pt;}
.x43{left:156.352000pt;}
.x52{left:158.258667pt;}
.x4c{left:161.421333pt;}
.x16{left:162.651041pt;}
.x5f{left:165.224000pt;}
.x8{left:168.970667pt;}
.x6d{left:175.369333pt;}
.x5c{left:178.140000pt;}
.x4{left:180.874667pt;}
.x6b{left:181.920000pt;}
.x1e{left:192.687510pt;}
.x3a{left:200.296000pt;}
.x39{left:201.813333pt;}
.x38{left:215.904000pt;}
.x3b{left:217.157333pt;}
.x35{left:220.096000pt;}
.x6c{left:231.093333pt;}
.x5b{left:237.340000pt;}
.x3f{left:249.146667pt;}
.x33{left:251.021333pt;}
.x21{left:260.593749pt;}
.x4d{left:269.954667pt;}
.x6{left:272.625333pt;}
.x7{left:291.965333pt;}
.x4a{left:293.442667pt;}
.x32{left:294.924000pt;}
.x2e{left:296.322917pt;}
.x47{left:303.300000pt;}
.x6a{left:306.510667pt;}
.x46{left:308.061333pt;}
.x5a{left:313.120000pt;}
.x3c{left:316.122667pt;}
.x50{left:319.721333pt;}
.x48{left:331.072000pt;}
.x55{left:334.908000pt;}
.x9{left:358.809333pt;}
.x4e{left:363.385333pt;}
.x45{left:385.120000pt;}
.x6f{left:387.420000pt;}
.x6e{left:390.452000pt;}
.x4f{left:393.270667pt;}
.x36{left:394.386667pt;}
.x49{left:396.302667pt;}
.x34{left:397.204000pt;}
.x37{left:398.461333pt;}
.x11{left:400.196000pt;}
.x31{left:402.152000pt;}
.x3{left:404.408000pt;}
.x1c{left:409.744792pt;}
.x2d{left:411.687505pt;}
.x2c{left:429.473959pt;}
.x5d{left:437.508000pt;}
.x61{left:449.993333pt;}
.x1b{left:466.562500pt;}
.x1d{left:483.072917pt;}
.x57{left:513.254667pt;}
.x60{left:516.312000pt;}
.x41{left:519.226667pt;}
.x5e{left:534.094667pt;}
.x51{left:592.054667pt;}
.x62{left:600.126667pt;}
.x64{left:652.140000pt;}
.x26{left:670.765625pt;}
.x28{left:675.739590pt;}
.x27{left:684.041672pt;}
.x2b{left:711.421867pt;}
.x25{left:718.572917pt;}
.x23{left:723.901041pt;}
.x24{left:730.041673pt;}
.x29{left:733.010416pt;}
.x2a{left:867.036459pt;}
.x17{left:986.328125pt;}
.x30{left:996.786459pt;}
}




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