
    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_d4297563fb18ca39f43e1085.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae1832a28ff99d3b8117e365.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad7816e7a132fe9393857da0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ad2de6ea3c94cc1f0573a17.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;font-style:normal;font-weight: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_0de91872923382de0ce664c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.664000;font-style:normal;font-weight: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_3ce73c3ede8740c9dfa31c48.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62a3f508614c390203bd86e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_00194871585181c8399a8ec9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_85dc56bac9bd080ceca17429.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_1e2cd913a637f2bcda4024cf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ac1bf71e7054fc6fe4c0aac5.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.399000;font-style:normal;font-weight: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_d007103945744e14072d2dd6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a7b171322e043d1794f34f8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.674000;font-style:normal;font-weight: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_a5610f8fff0325f38eb32d35.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.518000;font-style:normal;font-weight: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_1f2a4caaf4e32be2d88aed3e.woff2')format("woff");}.fff{font-family:fff;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_998323e864aba68870e4d7e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.944000;font-style:normal;font-weight: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_384c5b3468da35b3ed97b102.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;font-style:normal;font-weight: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_33d25171bee79cccc47c6922.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4236b20e9c5c304a0f7aa368.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.664000;font-style:normal;font-weight: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_6dbe8da2867c86ea9dfc3e43.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944000;font-style:normal;font-weight: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_bd4cab54e9cc2ec94eeb931b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.899000;font-style:normal;font-weight: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_23ae5a831c38bc8ccac46e81.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.518000;font-style:normal;font-weight: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_9cd74dd1cedb8631244f0b8c.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_c1c530b5906b99f61c2af8ce.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.664000;font-style:normal;font-weight: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_61086bcc70d69c6f44966bea.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.764000;font-style:normal;font-weight: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_ff62dc691bbf43e0e2edd7a5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.899000;font-style:normal;font-weight: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_56fe785799f4c5e8f78aa31b.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_96d51075376340de5e1eecd8.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;font-style:normal;font-weight: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_c4169683c6e8de9fdc809ab9.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_c1c530b5906b99f61c2af8ce.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.664000;font-style:normal;font-weight: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_11f36a04a25c2ef2344ce56e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.953000;font-style:normal;font-weight: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_bd4cab54e9cc2ec94eeb931b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.899000;font-style:normal;font-weight: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_23ae5a831c38bc8ccac46e81.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.518000;font-style:normal;font-weight: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_c1c530b5906b99f61c2af8ce.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.664000;font-style:normal;font-weight: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_62f867d172aff86578e516f1.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_60ec09994f209463b65a6bb1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.959000;font-style:normal;font-weight: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_ff62dc691bbf43e0e2edd7a5.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.899000;font-style:normal;font-weight: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_68ee123bb0d0efc4c9f2fdb0.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_b53a17e7a89e1f6e5d7b6780.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.959000;font-style:normal;font-weight: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_9de67116f8ed13eacc83f2d0.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_c1c530b5906b99f61c2af8ce.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.664000;font-style:normal;font-weight: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_b53a17e7a89e1f6e5d7b6780.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.959000;font-style:normal;font-weight: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_9de67116f8ed13eacc83f2d0.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_c1c530b5906b99f61c2af8ce.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.v1a{vertical-align:-61.646400px;}
.v13{vertical-align:-58.050000px;}
.v12{vertical-align:-52.201800px;}
.v1f{vertical-align:-27.000000px;}
.v1e{vertical-align:-23.399280px;}
.v19{vertical-align:-19.349280px;}
.v1b{vertical-align:-17.400000px;}
.v1{vertical-align:-15.492000px;}
.v20{vertical-align:-12.912000px;}
.v3{vertical-align:-10.758000px;}
.v2{vertical-align:-8.970000px;}
.v8{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:4.914000px;}
.v21{vertical-align:8.801232px;}
.v14{vertical-align:9.901386px;}
.v17{vertical-align:12.598200px;}
.v18{vertical-align:14.400720px;}
.vc{vertical-align:15.672000px;}
.v16{vertical-align:18.450720px;}
.va{vertical-align:20.724000px;}
.v15{vertical-align:22.500720px;}
.ve{vertical-align:24.708000px;}
.v1c{vertical-align:26.034000px;}
.v7{vertical-align:38.442000px;}
.v1d{vertical-align:41.706000px;}
.v5{vertical-align:48.522000px;}
.v10{vertical-align:65.424000px;}
.vb{vertical-align:73.236000px;}
.vf{vertical-align:84.354000px;}
.v4{vertical-align:87.270000px;}
.v9{vertical-align:98.034000px;}
.v11{vertical-align:118.452000px;}
.v6{vertical-align:136.476000px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000141px;}
.ls3a{letter-spacing:0.001114px;}
.ls8e{letter-spacing:0.001200px;}
.ls26{letter-spacing:0.001486px;}
.ls15{letter-spacing:0.002759px;}
.ls28{letter-spacing:0.002915px;}
.ls74{letter-spacing:0.003056px;}
.ls6a{letter-spacing:0.003333px;}
.ls2d{letter-spacing:0.003736px;}
.ls3b{letter-spacing:0.003848px;}
.ls1f{letter-spacing:0.006141px;}
.ls5b{letter-spacing:1.699920px;}
.ls2e{letter-spacing:1.929333px;}
.ls35{letter-spacing:1.935333px;}
.ls47{letter-spacing:1.949053px;}
.ls72{letter-spacing:1.955053px;}
.ls5e{letter-spacing:2.413800px;}
.ls73{letter-spacing:2.575486px;}
.ls5{letter-spacing:2.984915px;}
.ls2f{letter-spacing:2.988103px;}
.ls12{letter-spacing:2.989289px;}
.ls79{letter-spacing:2.989440px;}
.ls30{letter-spacing:2.989739px;}
.ls3{letter-spacing:2.990525px;}
.ls2a{letter-spacing:2.990915px;}
.ls38{letter-spacing:2.994103px;}
.ls58{letter-spacing:3.525174px;}
.ls59{letter-spacing:3.810186px;}
.ls60{letter-spacing:4.141800px;}
.ls4d{letter-spacing:4.173471px;}
.ls4a{letter-spacing:7.172202px;}
.ls4b{letter-spacing:9.746450px;}
.ls19{letter-spacing:10.159289px;}
.ls16{letter-spacing:11.954759px;}
.ls39{letter-spacing:14.947739px;}
.ls1d{letter-spacing:15.717181px;}
.ls1b{letter-spacing:15.935518px;}
.ls32{letter-spacing:15.937473px;}
.ls31{letter-spacing:15.939848px;}
.ls17{letter-spacing:15.940404px;}
.ls49{letter-spacing:15.941518px;}
.ls1a{letter-spacing:15.945181px;}
.ls1c{letter-spacing:17.936289px;}
.ls1{letter-spacing:18.566525px;}
.ls62{letter-spacing:18.774720px;}
.ls44{letter-spacing:19.244915px;}
.ls63{letter-spacing:19.440000px;}
.ls4e{letter-spacing:19.927473px;}
.ls7d{letter-spacing:20.016000px;}
.ls88{letter-spacing:21.857280px;}
.ls2b{letter-spacing:21.920289px;}
.ls64{letter-spacing:22.375980px;}
.ls46{letter-spacing:22.478915px;}
.ls3e{letter-spacing:22.604915px;}
.ls7{letter-spacing:22.730915px;}
.ls11{letter-spacing:22.982915px;}
.lsf{letter-spacing:23.096915px;}
.ls2c{letter-spacing:23.105518px;}
.ls4c{letter-spacing:23.111518px;}
.ls45{letter-spacing:23.144915px;}
.ls34{letter-spacing:23.407114px;}
.ls8d{letter-spacing:23.413114px;}
.ls55{letter-spacing:24.589440px;}
.ls5d{letter-spacing:24.591546px;}
.ls5a{letter-spacing:24.675840px;}
.ls8{letter-spacing:24.788915px;}
.ls2{letter-spacing:24.902525px;}
.ls7a{letter-spacing:25.040880px;}
.ls24{letter-spacing:25.094915px;}
.ls25{letter-spacing:25.096478px;}
.ls81{letter-spacing:25.274915px;}
.ls6d{letter-spacing:25.361053px;}
.ls84{letter-spacing:25.364915px;}
.ls54{letter-spacing:25.408080px;}
.ls65{letter-spacing:25.442915px;}
.ls5f{letter-spacing:25.741800px;}
.ls80{letter-spacing:25.886915px;}
.ls4{letter-spacing:25.952525px;}
.ls6f{letter-spacing:25.987486px;}
.ls3f{letter-spacing:26.024915px;}
.ls57{letter-spacing:26.348915px;}
.ls29{letter-spacing:26.396915px;}
.ls6b{letter-spacing:26.401739px;}
.ls9{letter-spacing:26.402915px;}
.ls37{letter-spacing:26.566677px;}
.ls3d{letter-spacing:27.050915px;}
.ls13{letter-spacing:27.134915px;}
.ls89{letter-spacing:27.237060px;}
.ls5c{letter-spacing:27.375840px;}
.ls50{letter-spacing:27.386915px;}
.ls48{letter-spacing:27.591471px;}
.lsd{letter-spacing:27.650915px;}
.ls6e{letter-spacing:27.811329px;}
.ls70{letter-spacing:28.115907px;}
.ls27{letter-spacing:28.117622px;}
.ls87{letter-spacing:28.208915px;}
.ls69{letter-spacing:28.391779px;}
.ls10{letter-spacing:28.622915px;}
.ls82{letter-spacing:28.706915px;}
.ls42{letter-spacing:28.742915px;}
.ls8c{letter-spacing:28.844915px;}
.ls71{letter-spacing:29.388532px;}
.ls78{letter-spacing:29.540160px;}
.ls83{letter-spacing:29.582915px;}
.ls52{letter-spacing:29.630915px;}
.lsa{letter-spacing:29.696915px;}
.ls41{letter-spacing:29.744915px;}
.ls7f{letter-spacing:29.852915px;}
.ls7c{letter-spacing:29.978915px;}
.ls8b{letter-spacing:30.440915px;}
.ls61{letter-spacing:30.620915px;}
.ls53{letter-spacing:31.616915px;}
.ls18{letter-spacing:31.657473px;}
.ls23{letter-spacing:31.754915px;}
.ls8a{letter-spacing:31.766915px;}
.ls20{letter-spacing:31.934915px;}
.ls21{letter-spacing:32.139477px;}
.ls51{letter-spacing:32.234915px;}
.ls4f{letter-spacing:32.408915px;}
.ls40{letter-spacing:32.498915px;}
.ls85{letter-spacing:32.630915px;}
.ls86{letter-spacing:32.804915px;}
.lsb{letter-spacing:33.422915px;}
.lsc{letter-spacing:33.566915px;}
.ls7b{letter-spacing:34.094915px;}
.ls0{letter-spacing:34.168404px;}
.ls8f{letter-spacing:34.423114px;}
.ls22{letter-spacing:34.922289px;}
.ls7e{letter-spacing:35.266200px;}
.ls43{letter-spacing:35.726915px;}
.lse{letter-spacing:36.848915px;}
.ls66{letter-spacing:37.765289px;}
.ls67{letter-spacing:37.765739px;}
.ls68{letter-spacing:42.426993px;}
.ls36{letter-spacing:43.335736px;}
.ls77{letter-spacing:74.719739px;}
.ls75{letter-spacing:117.727739px;}
.ls76{letter-spacing:118.213739px;}
.ls56{letter-spacing:250.936920px;}
.ls1e{letter-spacing:390.327181px;}
.ls33{letter-spacing:461.827114px;}
.ls3c{letter-spacing:513.211114px;}
.ls6c{letter-spacing:754.572993px;}
.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;}
}
.ws73{word-spacing:-71.731200px;}
.wsfd{word-spacing:-50.809387px;}
.ws6d{word-spacing:-47.324343px;}
.ws67{word-spacing:-45.664082px;}
.ws6a{word-spacing:-33.756703px;}
.ws6e{word-spacing:-33.211407px;}
.ws56{word-spacing:-19.510886px;}
.wsb3{word-spacing:-18.790664px;}
.ws11{word-spacing:-16.605662px;}
.wsb4{word-spacing:-14.671899px;}
.ws106{word-spacing:-12.009600px;}
.wsb2{word-spacing:-11.521576px;}
.ws52{word-spacing:-3.658291px;}
.ws9c{word-spacing:-3.299635px;}
.ws9d{word-spacing:-3.227904px;}
.wsad{word-spacing:-3.084442px;}
.ws136{word-spacing:-2.940979px;}
.ws117{word-spacing:-2.797517px;}
.wsc7{word-spacing:-2.654054px;}
.wsac{word-spacing:-2.510592px;}
.ws12b{word-spacing:-2.295398px;}
.wse2{word-spacing:-2.223667px;}
.ws4b{word-spacing:-2.080205px;}
.ws48{word-spacing:-1.936742px;}
.ws144{word-spacing:-1.865011px;}
.ws138{word-spacing:-1.721549px;}
.ws13b{word-spacing:-1.649818px;}
.wsaa{word-spacing:-1.578086px;}
.ws113{word-spacing:-1.506355px;}
.ws30{word-spacing:-1.362893px;}
.ws29{word-spacing:-1.147699px;}
.ws27{word-spacing:-1.098467px;}
.ws2a{word-spacing:-1.075968px;}
.ws3{word-spacing:-1.004230px;}
.ws13a{word-spacing:-0.932506px;}
.ws12f{word-spacing:-0.789043px;}
.ws137{word-spacing:-0.645581px;}
.ws51{word-spacing:-0.573850px;}
.wsca{word-spacing:-0.430387px;}
.ws47{word-spacing:-0.358656px;}
.ws13d{word-spacing:-0.286925px;}
.ws15{word-spacing:-0.227147px;}
.ws135{word-spacing:-0.143462px;}
.ws133{word-spacing:-0.071731px;}
.ws128{word-spacing:-0.071400px;}
.wscc{word-spacing:-0.064800px;}
.wse4{word-spacing:-0.059400px;}
.ws10b{word-spacing:-0.057600px;}
.wsd9{word-spacing:-0.054000px;}
.ws6c{word-spacing:-0.047821px;}
.wsd7{word-spacing:-0.045360px;}
.wsdb{word-spacing:-0.037800px;}
.ws1e{word-spacing:0.000000px;}
.ws87{word-spacing:0.071731px;}
.ws88{word-spacing:0.143462px;}
.ws20{word-spacing:0.208831px;}
.ws1f{word-spacing:0.215194px;}
.ws4d{word-spacing:0.286925px;}
.ws19{word-spacing:0.358656px;}
.wsa{word-spacing:0.370609px;}
.ws64{word-spacing:0.430387px;}
.ws63{word-spacing:0.502118px;}
.ws62{word-spacing:0.573850px;}
.ws9f{word-spacing:0.645581px;}
.ws5f{word-spacing:0.717312px;}
.ws38{word-spacing:0.860774px;}
.ws41{word-spacing:0.932506px;}
.ws1c{word-spacing:1.004237px;}
.ws1a{word-spacing:1.011272px;}
.ws121{word-spacing:1.075968px;}
.ws10{word-spacing:1.147692px;}
.ws35{word-spacing:1.147699px;}
.ws99{word-spacing:1.219430px;}
.ws2b{word-spacing:1.362893px;}
.ws65{word-spacing:1.506355px;}
.wsa6{word-spacing:1.793280px;}
.ws13e{word-spacing:1.936742px;}
.ws93{word-spacing:2.008474px;}
.ws95{word-spacing:2.080205px;}
.ws78{word-spacing:2.151936px;}
.ws17{word-spacing:2.223667px;}
.ws23{word-spacing:2.295398px;}
.ws43{word-spacing:2.438861px;}
.ws72{word-spacing:2.582323px;}
.ws66{word-spacing:2.654054px;}
.wsa5{word-spacing:2.725786px;}
.ws7a{word-spacing:2.797517px;}
.ws49{word-spacing:2.869248px;}
.wsea{word-spacing:2.940979px;}
.wsb9{word-spacing:3.084442px;}
.wsb7{word-spacing:3.156173px;}
.ws10f{word-spacing:3.227904px;}
.wse{word-spacing:3.299613px;}
.wsbc{word-spacing:3.371366px;}
.ws8a{word-spacing:3.514829px;}
.ws5e{word-spacing:3.586560px;}
.wsd{word-spacing:3.598491px;}
.ws2{word-spacing:3.613094px;}
.wsf{word-spacing:3.777818px;}
.ws42{word-spacing:3.801754px;}
.ws2c{word-spacing:3.873485px;}
.ws69{word-spacing:3.945216px;}
.ws9b{word-spacing:4.088678px;}
.ws9e{word-spacing:4.160410px;}
.wsc9{word-spacing:4.232141px;}
.ws12e{word-spacing:4.303872px;}
.ws142{word-spacing:4.375603px;}
.ws114{word-spacing:4.436646px;}
.ws5d{word-spacing:4.447334px;}
.ws77{word-spacing:4.519066px;}
.ws11a{word-spacing:4.590797px;}
.ws1{word-spacing:4.648169px;}
.ws68{word-spacing:4.662528px;}
.wsba{word-spacing:4.685101px;}
.ws5c{word-spacing:4.734259px;}
.wsbd{word-spacing:4.877722px;}
.ws9{word-spacing:4.913554px;}
.ws12d{word-spacing:4.949453px;}
.ws3a{word-spacing:5.021184px;}
.wsc{word-spacing:5.092881px;}
.wsc1{word-spacing:5.092915px;}
.ws4e{word-spacing:5.164646px;}
.wsc6{word-spacing:5.236378px;}
.ws7e{word-spacing:5.308109px;}
.ws5{word-spacing:5.331984px;}
.ws3c{word-spacing:5.379840px;}
.wsa1{word-spacing:5.451571px;}
.ws26{word-spacing:5.523302px;}
.ws110{word-spacing:5.666765px;}
.ws4a{word-spacing:5.738496px;}
.ws10a{word-spacing:5.810227px;}
.wsa0{word-spacing:5.881958px;}
.ws75{word-spacing:5.953690px;}
.ws4{word-spacing:5.989515px;}
.wsc3{word-spacing:6.025421px;}
.ws53{word-spacing:6.097152px;}
.ws76{word-spacing:6.168883px;}
.ws94{word-spacing:6.240614px;}
.ws74{word-spacing:6.312346px;}
.ws12{word-spacing:6.348169px;}
.wsae{word-spacing:6.384077px;}
.ws7f{word-spacing:6.455808px;}
.ws101{word-spacing:6.527539px;}
.ws39{word-spacing:6.599270px;}
.ws111{word-spacing:6.671002px;}
.ws118{word-spacing:6.742733px;}
.ws4f{word-spacing:6.814464px;}
.ws7{word-spacing:6.886149px;}
.wsc0{word-spacing:6.957926px;}
.ws90{word-spacing:7.029658px;}
.ws8e{word-spacing:7.077784px;}
.wsc4{word-spacing:7.101389px;}
.ws37{word-spacing:7.173120px;}
.ws18{word-spacing:7.244851px;}
.wsc8{word-spacing:7.316582px;}
.ws46{word-spacing:7.388314px;}
.ws7b{word-spacing:7.460045px;}
.ws60{word-spacing:7.531776px;}
.wsb8{word-spacing:7.603507px;}
.ws14{word-spacing:7.663232px;}
.ws24{word-spacing:7.675238px;}
.ws7c{word-spacing:7.818701px;}
.wsc2{word-spacing:7.890432px;}
.ws8c{word-spacing:7.962163px;}
.ws4c{word-spacing:8.033894px;}
.wsdf{word-spacing:8.105626px;}
.ws3d{word-spacing:8.177357px;}
.ws13c{word-spacing:8.249088px;}
.wseb{word-spacing:8.320819px;}
.ws5a{word-spacing:8.392550px;}
.ws132{word-spacing:8.536013px;}
.ws5b{word-spacing:8.607744px;}
.wsce{word-spacing:8.640000px;}
.ws1d{word-spacing:8.751206px;}
.wsd3{word-spacing:8.764200px;}
.wsd0{word-spacing:8.765280px;}
.ws11b{word-spacing:8.822938px;}
.ws13{word-spacing:8.858744px;}
.wsf1{word-spacing:8.875198px;}
.wsa7{word-spacing:8.894669px;}
.ws31{word-spacing:8.966400px;}
.ws2e{word-spacing:9.038131px;}
.ws8{word-spacing:9.097846px;}
.ws3f{word-spacing:9.109862px;}
.wsa9{word-spacing:9.181594px;}
.ws71{word-spacing:9.253325px;}
.wsa3{word-spacing:9.325056px;}
.ws6{word-spacing:9.336949px;}
.wsaf{word-spacing:9.396787px;}
.ws6f{word-spacing:9.428959px;}
.ws70{word-spacing:9.468518px;}
.ws55{word-spacing:9.611981px;}
.ws33{word-spacing:9.755443px;}
.ws2d{word-spacing:9.827174px;}
.wsbe{word-spacing:9.898906px;}
.ws92{word-spacing:9.970637px;}
.ws147{word-spacing:10.042368px;}
.ws11d{word-spacing:10.114099px;}
.ws3e{word-spacing:10.185830px;}
.ws119{word-spacing:10.257562px;}
.ws120{word-spacing:10.329293px;}
.wsa2{word-spacing:10.401024px;}
.ws11f{word-spacing:10.472755px;}
.ws79{word-spacing:10.616218px;}
.ws85{word-spacing:10.759680px;}
.ws40{word-spacing:10.903142px;}
.ws97{word-spacing:10.974874px;}
.ws45{word-spacing:11.046605px;}
.ws112{word-spacing:11.118336px;}
.ws81{word-spacing:11.405261px;}
.wsec{word-spacing:11.476992px;}
.wsbf{word-spacing:11.620454px;}
.ws145{word-spacing:11.620604px;}
.ws139{word-spacing:11.622167px;}
.ws148{word-spacing:11.623129px;}
.ws91{word-spacing:11.835648px;}
.wsb{word-spacing:12.026851px;}
.ws96{word-spacing:12.266035px;}
.ws61{word-spacing:12.337766px;}
.ws7d{word-spacing:12.552960px;}
.wsa8{word-spacing:12.624691px;}
.ws44{word-spacing:12.696422px;}
.wse1{word-spacing:12.839885px;}
.ws116{word-spacing:12.911616px;}
.ws89{word-spacing:12.983347px;}
.ws3b{word-spacing:13.055078px;}
.ws82{word-spacing:13.126810px;}
.ws9a{word-spacing:13.198541px;}
.ws122{word-spacing:13.485466px;}
.ws131{word-spacing:13.557197px;}
.ws130{word-spacing:13.700659px;}
.ws83{word-spacing:13.772390px;}
.ws59{word-spacing:13.844122px;}
.ws84{word-spacing:13.915853px;}
.ws57{word-spacing:14.346240px;}
.ws12c{word-spacing:14.489702px;}
.ws146{word-spacing:14.848358px;}
.ws11e{word-spacing:15.063552px;}
.wsee{word-spacing:15.278746px;}
.wsde{word-spacing:15.681600px;}
.wsdc{word-spacing:15.843600px;}
.wsdd{word-spacing:15.967800px;}
.wsed{word-spacing:17.143757px;}
.wsda{word-spacing:17.495352px;}
.wsf0{word-spacing:17.932800px;}
.ws28{word-spacing:18.345706px;}
.ws140{word-spacing:18.506650px;}
.wsef{word-spacing:18.937037px;}
.ws123{word-spacing:19.142381px;}
.ws21{word-spacing:19.670275px;}
.wsd6{word-spacing:19.735229px;}
.wsab{word-spacing:19.941274px;}
.wse9{word-spacing:20.070013px;}
.wse6{word-spacing:20.072329px;}
.ws103{word-spacing:20.185330px;}
.wsb1{word-spacing:20.187888px;}
.ws11c{word-spacing:20.446694px;}
.wsd1{word-spacing:20.636078px;}
.wsf2{word-spacing:20.658586px;}
.wse8{word-spacing:20.730600px;}
.wsd4{word-spacing:21.085402px;}
.wse5{word-spacing:21.224808px;}
.wscd{word-spacing:21.535178px;}
.ws22{word-spacing:21.759264px;}
.wscf{word-spacing:21.985214px;}
.ws1b{word-spacing:22.380134px;}
.ws36{word-spacing:22.523597px;}
.ws13f{word-spacing:23.240909px;}
.ws6b{word-spacing:23.814758px;}
.ws115{word-spacing:23.878790px;}
.ws98{word-spacing:23.938790px;}
.ws8d{word-spacing:24.029952px;}
.wsbb{word-spacing:24.095597px;}
.ws134{word-spacing:25.034189px;}
.ws80{word-spacing:25.865779px;}
.ws141{word-spacing:25.966694px;}
.ws129{word-spacing:26.277271px;}
.ws8f{word-spacing:26.533661px;}
.ws54{word-spacing:27.042662px;}
.ws25{word-spacing:27.111811px;}
.ws8b{word-spacing:27.449155px;}
.wsb0{word-spacing:28.839725px;}
.ws32{word-spacing:29.553254px;}
.ws2f{word-spacing:29.768448px;}
.ws34{word-spacing:30.485760px;}
.ws0{word-spacing:31.091012px;}
.ws50{word-spacing:32.192873px;}
.ws86{word-spacing:32.207309px;}
.ws143{word-spacing:33.139814px;}
.wsb5{word-spacing:33.268053px;}
.ws58{word-spacing:33.782928px;}
.wsc5{word-spacing:38.631358px;}
.ws102{word-spacing:52.220314px;}
.wsd5{word-spacing:66.236400px;}
.wscb{word-spacing:77.938200px;}
.wse7{word-spacing:91.672020px;}
.wse3{word-spacing:91.675584px;}
.wsa4{word-spacing:96.750773px;}
.ws10d{word-spacing:98.478720px;}
.ws10e{word-spacing:98.480640px;}
.ws10c{word-spacing:98.880000px;}
.ws104{word-spacing:109.890000px;}
.ws105{word-spacing:110.339280px;}
.ws107{word-spacing:110.790720px;}
.ws108{word-spacing:114.391440px;}
.ws12a{word-spacing:114.409320px;}
.ws109{word-spacing:114.840720px;}
.ws16{word-spacing:116.100658px;}
.wsfe{word-spacing:147.838003px;}
.ws124{word-spacing:163.280640px;}
.ws127{word-spacing:163.680000px;}
.ws100{word-spacing:165.340416px;}
.ws125{word-spacing:168.881280px;}
.ws126{word-spacing:169.278720px;}
.wsff{word-spacing:177.032602px;}
.wse0{word-spacing:187.866000px;}
.wsfc{word-spacing:230.328883px;}
.wsd2{word-spacing:239.403600px;}
.wsfb{word-spacing:360.162355px;}
.wsfa{word-spacing:367.478938px;}
.wsf7{word-spacing:378.525542px;}
.wsf9{word-spacing:438.564557px;}
.wsf8{word-spacing:494.730086px;}
.wsf5{word-spacing:510.726144px;}
.wsf6{word-spacing:548.887142px;}
.wsf4{word-spacing:553.262746px;}
.wsf3{word-spacing:565.241856px;}
.wsb6{word-spacing:599.672832px;}
.wsd8{word-spacing:778.497480px;}
._1b{margin-left:-8.091257px;}
._4{margin-left:-6.285605px;}
._2{margin-left:-4.648169px;}
._1{margin-left:-2.685532px;}
._5{margin-left:-1.673717px;}
._6{width:1.554166px;}
._0{width:2.685602px;}
._23{width:3.902143px;}
._1a{width:5.164646px;}
._39{width:15.485162px;}
._38{width:16.543167px;}
._37{width:17.796965px;}
._f{width:18.817424px;}
._13{width:20.515123px;}
._11{width:21.734554px;}
._32{width:22.950189px;}
._7{width:24.029791px;}
._d{width:25.629404px;}
._a{width:27.004243px;}
._3{width:29.061842px;}
._10{width:30.219113px;}
._b{width:31.262639px;}
._15{width:32.901358px;}
._8{width:34.610072px;}
._26{width:35.750774px;}
._12{width:36.996966px;}
._24{width:38.374357px;}
._16{width:39.442698px;}
._18{width:40.480318px;}
._e{width:42.436306px;}
._17{width:44.361368px;}
._9{width:45.544637px;}
._14{width:47.275905px;}
._21{width:48.736962px;}
._1f{width:50.283559px;}
._22{width:51.589843px;}
._c{width:52.841630px;}
._33{width:54.547189px;}
._20{width:56.448298px;}
._1c{width:57.997831px;}
._1d{width:59.345623px;}
._1e{width:61.242090px;}
._34{width:65.227582px;}
._2b{width:71.731200px;}
._27{width:73.579856px;}
._19{width:96.836850px;}
._2e{width:99.101479px;}
._2d{width:105.705079px;}
._25{width:116.203950px;}
._30{width:118.571674px;}
._31{width:129.401280px;}
._36{width:134.113680px;}
._2a{width:162.069735px;}
._2c{width:177.225171px;}
._35{width:182.624640px;}
._2f{width:202.425446px;}
._29{width:279.135054px;}
._28{width:334.338847px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fsc{font-size:37.800000px;}
.fs13{font-size:40.320000px;}
.fse{font-size:41.580000px;}
.fs5{font-size:41.842800px;}
.fs10{font-size:43.200000px;}
.fsb{font-size:45.360000px;}
.fs6{font-size:47.820600px;}
.fs11{font-size:48.000000px;}
.fs16{font-size:49.980000px;}
.fs14{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs12{font-size:57.600000px;}
.fsd{font-size:59.400000px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:64.800000px;}
.fs3{font-size:65.454600px;}
.fs15{font-size:71.400000px;}
.fs1{font-size:71.731200px;}
.fs9{font-size:75.600000px;}
.fsf{font-size:83.160000px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1f6{bottom:4.398750px;}
.y198{bottom:5.240160px;}
.y1e0{bottom:5.280000px;}
.y17d{bottom:5.895180px;}
.y124{bottom:6.975180px;}
.yee{bottom:7.650180px;}
.y11a{bottom:7.762500px;}
.y138{bottom:10.395000px;}
.y197{bottom:19.040160px;}
.y1f5{bottom:19.061250px;}
.y1df{bottom:19.080000px;}
.y17c{bottom:21.420180px;}
.y11c{bottom:23.287500px;}
.y117{bottom:25.312500px;}
.y189{bottom:25.839840px;}
.y1d3{bottom:25.880160px;}
.y195{bottom:25.940160px;}
.y1dd{bottom:25.980000px;}
.ye9{bottom:25.987500px;}
.y12f{bottom:28.462698px;}
.y175{bottom:29.069820px;}
.y17a{bottom:29.182680px;}
.y1f4{bottom:33.723750px;}
.y11d{bottom:34.650180px;}
.y126{bottom:34.762500px;}
.yea{bottom:37.350180px;}
.yff{bottom:37.462500px;}
.y1e9{bottom:40.948920px;}
.y130{bottom:40.961646px;}
.y1f2{bottom:41.055000px;}
.y139{bottom:41.085198px;}
.yed{bottom:46.125180px;}
.y136{bottom:50.737698px;}
.y104{bottom:51.637500px;}
.y18a{bottom:56.739840px;}
.y118{bottom:58.725000px;}
.y1d4{bottom:62.580000px;}
.y131{bottom:64.350396px;}
.y176{bottom:65.407500px;}
.y115{bottom:65.812500px;}
.y23{bottom:69.954000px;}
.y103{bottom:70.537500px;}
.yeb{bottom:79.987500px;}
.y13d{bottom:81.056646px;}
.y1ea{bottom:85.573920px;}
.y18b{bottom:87.540000px;}
.y132{bottom:87.739146px;}
.y102{bottom:89.549820px;}
.y11e{bottom:89.775000px;}
.y116{bottom:94.162500px;}
.y1d5{bottom:99.279840px;}
.y1dc{bottom:101.480160px;}
.y177{bottom:101.632320px;}
.y13c{bottom:101.846646px;}
.y119{bottom:106.537680px;}
.y181{bottom:107.482680px;}
.y1f1{bottom:107.992500px;}
.y101{bottom:108.449820px;}
.y133{bottom:111.127896px;}
.y22{bottom:114.786000px;}
.y20b{bottom:115.186500px;}
.y18c{bottom:118.340160px;}
.y166{bottom:118.809000px;}
.y1d1{bottom:120.043500px;}
.ycf{bottom:121.164000px;}
.yec{bottom:122.512500px;}
.y4d{bottom:122.608500px;}
.y165{bottom:122.728500px;}
.y100{bottom:122.737680px;}
.y13b{bottom:122.760198px;}
.y180{bottom:124.132500px;}
.y71{bottom:129.382500px;}
.y1eb{bottom:130.199175px;}
.yb5{bottom:133.056000px;}
.y134{bottom:134.516646px;}
.y1d6{bottom:135.980400px;}
.y21{bottom:136.455000px;}
.y20a{bottom:136.854000px;}
.y178{bottom:137.970000px;}
.y17f{bottom:140.670000px;}
.y1d0{bottom:141.711000px;}
.yce{bottom:142.833000px;}
.yfe{bottom:143.437500px;}
.y4c{bottom:144.277500px;}
.y11f{bottom:144.787500px;}
.y164{bottom:145.036500px;}
.y22a{bottom:146.518500px;}
.y18d{bottom:149.139600px;}
.ye8{bottom:149.287050px;}
.y70{bottom:151.051500px;}
.y1fe{bottom:152.521500px;}
.ye3{bottom:153.674550px;}
.yb4{bottom:154.725000px;}
.y17e{bottom:157.319550px;}
.y135{bottom:157.905990px;}
.y20{bottom:158.124000px;}
.y13a{bottom:158.152500px;}
.y209{bottom:158.523000px;}
.y113{bottom:161.550450px;}
.yfd{bottom:162.337500px;}
.y1cf{bottom:163.380000px;}
.ycd{bottom:164.502000px;}
.ye4{bottom:165.037500px;}
.yf7{bottom:165.149550px;}
.y4b{bottom:165.945000px;}
.y13f{bottom:166.378500px;}
.y163{bottom:166.704000px;}
.y194{bottom:168.140400px;}
.y229{bottom:168.187500px;}
.y1d7{bottom:172.680000px;}
.y6f{bottom:172.720500px;}
.y1fd{bottom:174.190500px;}
.y179{bottom:174.194550px;}
.y17b{bottom:174.419730px;}
.y137{bottom:174.487500px;}
.y1ec{bottom:174.717075px;}
.yb3{bottom:176.394000px;}
.y110{bottom:179.212500px;}
.y1f{bottom:179.791500px;}
.y94{bottom:179.793000px;}
.y18e{bottom:179.940000px;}
.y208{bottom:180.192000px;}
.yfc{bottom:181.237500px;}
.y1ce{bottom:185.049000px;}
.y4a{bottom:187.614000px;}
.y13e{bottom:188.047500px;}
.y125{bottom:189.562950px;}
.y228{bottom:189.856500px;}
.ycc{bottom:192.646500px;}
.ye5{bottom:193.387500px;}
.y162{bottom:193.497000px;}
.y6e{bottom:194.389500px;}
.y1fc{bottom:195.859500px;}
.yb2{bottom:198.063000px;}
.y120{bottom:199.800000px;}
.yfb{bottom:200.249550px;}
.y1e{bottom:201.460500px;}
.y1cd{bottom:206.718000px;}
.y1ab{bottom:207.030000px;}
.y172{bottom:207.495000px;}
.y111{bottom:207.562500px;}
.y49{bottom:209.283000px;}
.y1d8{bottom:209.379600px;}
.y18f{bottom:210.840000px;}
.y227{bottom:211.525500px;}
.y6d{bottom:216.057000px;}
.y207{bottom:216.805500px;}
.ycb{bottom:217.078500px;}
.y12e{bottom:218.158500px;}
.ydb{bottom:218.299500px;}
.yfa{bottom:219.149550px;}
.y1ed{bottom:219.342075px;}
.yb1{bottom:219.732000px;}
.ye6{bottom:221.737500px;}
.y171{bottom:223.020000px;}
.y93{bottom:223.129500px;}
.y161{bottom:226.455000px;}
.y1e8{bottom:226.992000px;}
.y1cc{bottom:228.387000px;}
.y1aa{bottom:228.699000px;}
.y168{bottom:230.670450px;}
.y16f{bottom:230.782500px;}
.y48{bottom:230.952000px;}
.y114{bottom:234.112950px;}
.y112{bottom:235.912500px;}
.y16d{bottom:236.745450px;}
.yf9{bottom:237.037050px;}
.y6c{bottom:237.726000px;}
.y206{bottom:238.473000px;}
.yda{bottom:239.968500px;}
.y1d{bottom:240.888000px;}
.yb0{bottom:241.399500px;}
.y190{bottom:241.640400px;}
.y92{bottom:244.798500px;}
.y1e5{bottom:245.580000px;}
.y1d9{bottom:246.080400px;}
.y160{bottom:248.124000px;}
.y226{bottom:248.137500px;}
.y1cb{bottom:250.056000px;}
.ye7{bottom:250.087500px;}
.yf8{bottom:250.312410px;}
.y1a9{bottom:250.368000px;}
.y47{bottom:252.621000px;}
.y174{bottom:253.957950px;}
.y121{bottom:254.924550px;}
.yca{bottom:255.484500px;}
.y1fb{bottom:258.336675px;}
.y6b{bottom:259.395000px;}
.y1e4{bottom:260.280000px;}
.yd9{bottom:261.637500px;}
.yaf{bottom:263.068500px;}
.y1ee{bottom:263.861250px;}
.y91{bottom:266.467500px;}
.y169{bottom:267.007050px;}
.y225{bottom:269.806500px;}
.yf6{bottom:270.112050px;}
.y1ca{bottom:271.723500px;}
.y1a8{bottom:272.037000px;}
.y191{bottom:272.439600px;}
.y46{bottom:274.290000px;}
.y1e3{bottom:274.980000px;}
.y205{bottom:275.086500px;}
.y1fa{bottom:276.186675px;}
.y173{bottom:276.794550px;}
.yc9{bottom:277.153500px;}
.y16e{bottom:277.245459px;}
.y6a{bottom:281.064000px;}
.ydd{bottom:281.249550px;}
.y1da{bottom:282.780000px;}
.yd8{bottom:283.305000px;}
.yae{bottom:284.737500px;}
.y15f{bottom:287.952000px;}
.y90{bottom:288.136500px;}
.yf5{bottom:289.012050px;}
.y10b{bottom:289.125450px;}
.y1e2{bottom:289.779600px;}
.y224{bottom:291.475500px;}
.y15e{bottom:291.871500px;}
.yef{bottom:292.725090px;}
.y1c9{bottom:293.392500px;}
.y1a7{bottom:293.706000px;}
.y1f9{bottom:294.036675px;}
.y45{bottom:295.957500px;}
.y204{bottom:296.755500px;}
.yc8{bottom:298.822500px;}
.y1c{bottom:300.348000px;}
.y69{bottom:302.733000px;}
.y16a{bottom:303.232950px;}
.y192{bottom:303.240000px;}
.ye0{bottom:303.637950px;}
.y19a{bottom:304.040400px;}
.y1e1{bottom:304.479600px;}
.yd7{bottom:304.974000px;}
.y10f{bottom:305.325450px;}
.yad{bottom:306.406500px;}
.y187{bottom:307.447500px;}
.yf4{bottom:307.912050px;}
.y1ef{bottom:308.486250px;}
.y108{bottom:309.712950px;}
.y8f{bottom:309.805500px;}
.y122{bottom:309.937050px;}
.y1f8{bottom:311.992500px;}
.y223{bottom:313.143000px;}
.yde{bottom:313.987050px;}
.y15d{bottom:314.179500px;}
.y12a{bottom:314.662050px;}
.y1c8{bottom:315.061500px;}
.y1a6{bottom:315.375000px;}
.y44{bottom:317.626500px;}
.y1b{bottom:318.280500px;}
.y199{bottom:318.939600px;}
.y1db{bottom:319.479600px;}
.y1de{bottom:319.680000px;}
.yc7{bottom:320.491500px;}
.ye1{bottom:322.650000px;}
.y68{bottom:324.402000px;}
.y10e{bottom:325.350000px;}
.yd6{bottom:326.643000px;}
.yf3{bottom:326.812050px;}
.yac{bottom:328.075500px;}
.y186{bottom:329.116500px;}
.y1f7{bottom:329.842500px;}
.y129{bottom:331.312950px;}
.y8e{bottom:331.473000px;}
.y107{bottom:331.849500px;}
.y203{bottom:333.367500px;}
.y193{bottom:334.040400px;}
.y196{bottom:334.239360px;}
.y222{bottom:334.812000px;}
.y15c{bottom:335.847000px;}
.y1a{bottom:336.214500px;}
.y1a5{bottom:337.042500px;}
.y43{bottom:339.295500px;}
.y16b{bottom:339.569550px;}
.yc6{bottom:342.160500px;}
.y109{bottom:343.800450px;}
.y10d{bottom:345.487950px;}
.yf2{bottom:345.825450px;}
.y67{bottom:346.069500px;}
.y128{bottom:347.962500px;}
.yd5{bottom:348.312000px;}
.yab{bottom:349.744500px;}
.y185{bottom:350.784000px;}
.y1f0{bottom:353.005425px;}
.y8d{bottom:353.142000px;}
.y1f3{bottom:353.217075px;}
.y106{bottom:353.518500px;}
.y19{bottom:354.147000px;}
.y1c7{bottom:354.489000px;}
.y202{bottom:355.036500px;}
.ydf{bottom:356.512050px;}
.y15b{bottom:358.387500px;}
.y1a4{bottom:358.711500px;}
.y42{bottom:360.964500px;}
.y10c{bottom:362.362950px;}
.yc5{bottom:363.828000px;}
.yf1{bottom:364.725450px;}
.y123{bottom:364.949550px;}
.y127{bottom:365.175000px;}
.y66{bottom:367.738500px;}
.yd4{bottom:369.981000px;}
.yaa{bottom:371.412000px;}
.y221{bottom:371.425500px;}
.y18{bottom:372.079500px;}
.y184{bottom:372.453000px;}
.y8c{bottom:374.811000px;}
.y105{bottom:375.187500px;}
.y16c{bottom:375.795450px;}
.y170{bottom:376.019550px;}
.y10a{bottom:377.774550px;}
.yf0{bottom:378.000270px;}
.y1a3{bottom:380.380500px;}
.y41{bottom:382.633500px;}
.yc4{bottom:385.497000px;}
.y65{bottom:389.407500px;}
.y17{bottom:390.012000px;}
.yd3{bottom:391.648500px;}
.ya9{bottom:393.081000px;}
.y220{bottom:393.094500px;}
.ye2{bottom:393.412950px;}
.y183{bottom:394.122000px;}
.y8b{bottom:396.480000px;}
.y15a{bottom:399.850500px;}
.y40{bottom:404.302500px;}
.ydc{bottom:405.300000px;}
.yc3{bottom:407.166000px;}
.y16{bottom:407.944500px;}
.y64{bottom:411.076500px;}
.y201{bottom:413.317500px;}
.y1a2{bottom:413.631000px;}
.y1c6{bottom:414.388500px;}
.ya8{bottom:414.750000px;}
.y182{bottom:415.791000px;}
.y8a{bottom:418.149000px;}
.y159{bottom:421.519500px;}
.y15{bottom:425.878500px;}
.y3f{bottom:425.970000px;}
.yc2{bottom:428.835000px;}
.y21f{bottom:429.706500px;}
.yd2{bottom:431.076000px;}
.y63{bottom:432.745500px;}
.y200{bottom:434.986500px;}
.y1c5{bottom:436.057500px;}
.ya7{bottom:436.419000px;}
.y89{bottom:439.818000px;}
.y158{bottom:443.188500px;}
.y14{bottom:443.811000px;}
.y167{bottom:446.307000px;}
.y3e{bottom:447.639000px;}
.yc1{bottom:450.504000px;}
.y21e{bottom:451.375500px;}
.y1c4{bottom:457.726500px;}
.ya6{bottom:458.088000px;}
.y88{bottom:461.485500px;}
.y13{bottom:461.743500px;}
.y1a1{bottom:465.624000px;}
.y62{bottom:465.996000px;}
.y3d{bottom:469.308000px;}
.y236{bottom:473.044500px;}
.y1ff{bottom:474.414000px;}
.y1c3{bottom:479.395500px;}
.y12{bottom:479.676000px;}
.ya5{bottom:479.757000px;}
.y87{bottom:483.154500px;}
.y157{bottom:483.280500px;}
.yc0{bottom:483.754500px;}
.y1a0{bottom:487.291500px;}
.y21d{bottom:487.987500px;}
.y3c{bottom:490.977000px;}
.y235{bottom:494.713500px;}
.y11{bottom:497.608500px;}
.y1c2{bottom:501.064500px;}
.ya4{bottom:501.424500px;}
.y86{bottom:504.823500px;}
.y156{bottom:504.949500px;}
.y19f{bottom:508.960500px;}
.y21c{bottom:509.656500px;}
.y3b{bottom:512.646000px;}
.y10{bottom:515.541000px;}
.y234{bottom:516.381000px;}
.y61{bottom:517.987500px;}
.y1c1{bottom:522.733500px;}
.ya3{bottom:523.093500px;}
.y12d{bottom:524.322000px;}
.y85{bottom:526.492500px;}
.y155{bottom:527.215500px;}
.y19e{bottom:530.629500px;}
.y21b{bottom:531.325500px;}
.yf{bottom:533.475000px;}
.yd1{bottom:534.313500px;}
.y3a{bottom:534.315000px;}
.ybf{bottom:535.746000px;}
.y60{bottom:539.656500px;}
.y1c0{bottom:544.401000px;}
.ya2{bottom:544.762500px;}
.y12c{bottom:545.991000px;}
.y84{bottom:548.161500px;}
.y154{bottom:548.884500px;}
.ye{bottom:551.407500px;}
.y233{bottom:552.994500px;}
.y39{bottom:555.982500px;}
.ybe{bottom:557.415000px;}
.y5f{bottom:561.325500px;}
.y1bf{bottom:566.070000px;}
.y12b{bottom:567.660000px;}
.y21a{bottom:567.937500px;}
.yd{bottom:569.340000px;}
.y83{bottom:569.829000px;}
.y19d{bottom:570.057000px;}
.y153{bottom:570.553500px;}
.y232{bottom:574.663500px;}
.y38{bottom:577.651500px;}
.ya1{bottom:578.013000px;}
.ybd{bottom:579.084000px;}
.y5e{bottom:582.994500px;}
.yc{bottom:587.272500px;}
.y1be{bottom:587.739000px;}
.y219{bottom:589.606500px;}
.y82{bottom:591.498000px;}
.y152{bottom:592.819500px;}
.y231{bottom:596.332500px;}
.y11b{bottom:598.446000px;}
.y37{bottom:599.320500px;}
.ybc{bottom:600.753000px;}
.y5d{bottom:604.663500px;}
.yb{bottom:605.205000px;}
.y1e7{bottom:607.543500px;}
.y1bd{bottom:609.408000px;}
.y151{bottom:614.488500px;}
.y36{bottom:620.989500px;}
.ybb{bottom:622.422000px;}
.ya{bottom:623.137500px;}
.y19c{bottom:624.378000px;}
.y81{bottom:624.748500px;}
.y218{bottom:626.220000px;}
.y5c{bottom:626.331000px;}
.y1e6{bottom:629.212500px;}
.ya0{bottom:630.006000px;}
.y1bc{bottom:631.077000px;}
.y230{bottom:632.944500px;}
.y150{bottom:636.157500px;}
.y9{bottom:641.071500px;}
.y35{bottom:642.658500px;}
.yba{bottom:644.089500px;}
.y19b{bottom:646.047000px;}
.y217{bottom:647.889000px;}
.y5b{bottom:648.000000px;}
.y9f{bottom:651.673500px;}
.y1bb{bottom:652.744500px;}
.y22f{bottom:654.613500px;}
.y14f{bottom:658.423500px;}
.y1d2{bottom:660.043500px;}
.yd0{bottom:664.326000px;}
.y34{bottom:664.327500px;}
.y8{bottom:665.616000px;}
.yb9{bottom:665.758500px;}
.y80{bottom:667.597500px;}
.y216{bottom:669.556500px;}
.y5a{bottom:669.669000px;}
.y9e{bottom:673.342500px;}
.y1ba{bottom:674.413500px;}
.y22e{bottom:676.282500px;}
.y188{bottom:676.519500px;}
.y7f{bottom:676.548000px;}
.y14e{bottom:680.092500px;}
.y7e{bottom:680.466000px;}
.y33{bottom:685.995000px;}
.yb8{bottom:687.427500px;}
.y215{bottom:691.225500px;}
.y59{bottom:691.338000px;}
.y9d{bottom:695.011500px;}
.y1b9{bottom:696.082500px;}
.y14d{bottom:701.761500px;}
.y32{bottom:707.664000px;}
.yb7{bottom:709.096500px;}
.y214{bottom:712.894500px;}
.y58{bottom:713.007000px;}
.y9c{bottom:716.680500px;}
.y1b8{bottom:717.751500px;}
.y7d{bottom:723.420000px;}
.y14c{bottom:724.027500px;}
.y7c{bottom:727.338000px;}
.y7{bottom:728.299500px;}
.y31{bottom:729.333000px;}
.y22d{bottom:734.563500px;}
.y57{bottom:734.676000px;}
.y9b{bottom:738.349500px;}
.y1b7{bottom:739.420500px;}
.yb6{bottom:742.347000px;}
.y14b{bottom:745.696500px;}
.y6{bottom:748.623000px;}
.y213{bottom:749.508000px;}
.y30{bottom:751.002000px;}
.y7b{bottom:756.046500px;}
.y56{bottom:756.343500px;}
.y9a{bottom:760.018500px;}
.y1b6{bottom:761.089500px;}
.y14a{bottom:767.365500px;}
.y79{bottom:768.346500px;}
.y5{bottom:768.948000px;}
.y212{bottom:771.175500px;}
.y2f{bottom:772.671000px;}
.y7a{bottom:776.560500px;}
.y55{bottom:778.012500px;}
.y99{bottom:781.686000px;}
.y1b5{bottom:782.757000px;}
.y22c{bottom:792.844500px;}
.y2e{bottom:794.338500px;}
.y98{bottom:803.355000px;}
.y1b4{bottom:804.426000px;}
.y211{bottom:807.789000px;}
.y54{bottom:811.263000px;}
.y2d{bottom:816.007500px;}
.y149{bottom:817.332000px;}
.y4{bottom:819.034500px;}
.y78{bottom:819.448500px;}
.y97{bottom:825.024000px;}
.y1b3{bottom:826.095000px;}
.y210{bottom:829.458000px;}
.y2c{bottom:837.676500px;}
.y148{bottom:838.999500px;}
.y77{bottom:841.117500px;}
.y96{bottom:846.693000px;}
.y1b2{bottom:847.764000px;}
.y20f{bottom:851.125500px;}
.y3{bottom:856.917000px;}
.y2b{bottom:859.345500px;}
.y147{bottom:860.668500px;}
.y76{bottom:862.786500px;}
.y53{bottom:863.256000px;}
.y22b{bottom:866.070000px;}
.y1b1{bottom:869.433000px;}
.y2a{bottom:881.014500px;}
.y146{bottom:882.337500px;}
.y75{bottom:884.455500px;}
.y52{bottom:884.925000px;}
.y95{bottom:886.120500px;}
.y20e{bottom:887.739000px;}
.y1b0{bottom:891.102000px;}
.y29{bottom:902.683500px;}
.y145{bottom:904.006500px;}
.y74{bottom:906.123000px;}
.y51{bottom:906.592500px;}
.y20d{bottom:909.408000px;}
.y2{bottom:910.155000px;}
.y1af{bottom:912.769500px;}
.y28{bottom:924.351000px;}
.y144{bottom:925.675500px;}
.y50{bottom:928.261500px;}
.y20c{bottom:931.077000px;}
.y73{bottom:931.477500px;}
.y1ae{bottom:934.438500px;}
.y1{bottom:943.032000px;}
.y72{bottom:943.779000px;}
.y27{bottom:946.020000px;}
.y143{bottom:947.344500px;}
.y4f{bottom:949.930500px;}
.y1ad{bottom:956.107500px;}
.y26{bottom:967.689000px;}
.y142{bottom:969.012000px;}
.y4e{bottom:971.599500px;}
.y1ac{bottom:977.776500px;}
.y25{bottom:989.358000px;}
.y141{bottom:990.681000px;}
.y24{bottom:1011.027000px;}
.y140{bottom:1012.350000px;}
.hf{height:33.665702px;}
.h2a{height:35.568000px;}
.h2e{height:37.791000px;}
.h12{height:39.528000px;}
.h17{height:39.580920px;}
.h1b{height:40.014000px;}
.h1c{height:40.500000px;}
.h2b{height:43.200000px;}
.h1e{height:44.015400px;}
.h1f{height:44.550000px;}
.h5{height:44.831700px;}
.h4{height:45.687311px;}
.h26{height:47.405520px;}
.h19{height:48.141000px;}
.h14{height:48.600000px;}
.h3{height:49.090950px;}
.h28{height:53.518320px;}
.h16{height:53.520426px;}
.h2f{height:53.550000px;}
.h7{height:53.798400px;}
.h13{height:55.339200px;}
.h22{height:57.828699px;}
.h21{height:57.834699px;}
.h18{height:58.849200px;}
.h8{height:60.254040px;}
.h20{height:61.621560px;}
.h15{height:62.028720px;}
.h2{height:64.557900px;}
.hd{height:69.470400px;}
.h24{height:69.476400px;}
.h27{height:71.068320px;}
.h1{height:72.201388px;}
.h6{height:72.304680px;}
.h23{height:73.506699px;}
.h9{height:102.320400px;}
.hc{height:102.326400px;}
.h10{height:103.004400px;}
.he{height:114.761702px;}
.hb{height:138.867024px;}
.ha{height:151.526400px;}
.h1d{height:194.535000px;}
.h2c{height:337.680000px;}
.h29{height:352.440000px;}
.h2d{height:372.555000px;}
.h1a{height:385.425000px;}
.h25{height:396.495000px;}
.h11{height:413.100000px;}
.h0{height:1188.000000px;}
.w3{width:291.600000px;}
.w6{width:453.120000px;}
.w5{width:508.950000px;}
.w2{width:527.445000px;}
.w1{width:544.995000px;}
.w8{width:572.730000px;}
.w4{width:599.940000px;}
.w7{width:601.800000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4b{left:11.924820px;}
.x51{left:14.231052px;}
.x22{left:15.569820px;}
.x6d{left:16.875000px;}
.x3a{left:19.395180px;}
.x49{left:21.487680px;}
.x26{left:23.220000px;}
.x50{left:24.873750px;}
.x20{left:25.920000px;}
.x6b{left:27.000000px;}
.x37{left:29.632500px;}
.x66{left:30.824820px;}
.x25{left:33.457320px;}
.x6c{left:34.874820px;}
.x39{left:37.507320px;}
.x68{left:38.700180px;}
.x24{left:40.995180px;}
.x48{left:43.987320px;}
.x38{left:45.045180px;}
.x67{left:49.950000px;}
.x71{left:51.420000px;}
.x21{left:54.382320px;}
.x3d{left:60.232680px;}
.x7d{left:62.517330px;}
.x4f{left:66.948552px;}
.x1f{left:70.470000px;}
.x36{left:72.495000px;}
.x77{left:76.299840px;}
.x27{left:83.520180px;}
.x3f{left:87.682500px;}
.x53{left:93.307302px;}
.x23{left:94.544820px;}
.x3b{left:98.820000px;}
.x52{left:101.722500px;}
.x75{left:106.620000px;}
.x7e{left:108.842657px;}
.x4d{left:116.887320px;}
.x72{left:147.819840px;}
.x4a{left:150.525000px;}
.x80{left:163.879575px;}
.xb{left:166.281000px;}
.x6e{left:167.512320px;}
.x7c{left:178.063500px;}
.x60{left:182.388000px;}
.x78{left:184.500000px;}
.x5f{left:185.503500px;}
.x55{left:191.441745px;}
.xd{left:192.619500px;}
.x1{left:198.202500px;}
.x35{left:200.401500px;}
.x5e{left:203.386500px;}
.x3c{left:207.832230px;}
.xa{left:210.178500px;}
.x73{left:215.120160px;}
.x54{left:218.543292px;}
.x69{left:223.762500px;}
.x61{left:226.884000px;}
.x2{left:232.162500px;}
.x9{left:234.724500px;}
.x70{left:237.598500px;}
.x2b{left:242.595000px;}
.x32{left:250.245450px;}
.x79{left:251.799840px;}
.x29{left:252.945450px;}
.x5{left:256.282500px;}
.x31{left:260.482500px;}
.x30{left:268.019550px;}
.x7f{left:269.386067px;}
.x4c{left:273.375270px;}
.x2d{left:277.469820px;}
.x2a{left:281.407500px;}
.x3e{left:283.207050px;}
.xe{left:286.299000px;}
.x56{left:289.327005px;}
.x7{left:292.714500px;}
.x28{left:297.495450px;}
.x11{left:304.174500px;}
.x34{left:310.544550px;}
.x4e{left:315.100500px;}
.x16{left:317.020500px;}
.x47{left:318.120000px;}
.x2c{left:321.570000px;}
.x64{left:325.617000px;}
.x63{left:336.370500px;}
.x45{left:338.107500px;}
.x41{left:341.820000px;}
.x1b{left:345.306000px;}
.x1c{left:348.057000px;}
.x43{left:349.694550px;}
.x5c{left:353.422500px;}
.x6f{left:355.050000px;}
.x42{left:357.232950px;}
.x6{left:363.055500px;}
.x74{left:365.619840px;}
.x5d{left:367.413000px;}
.x17{left:368.491500px;}
.x65{left:370.114500px;}
.x40{left:384.682500px;}
.x3{left:389.149500px;}
.x6a{left:397.125450px;}
.x46{left:399.870000px;}
.x1d{left:403.533000px;}
.x58{left:407.632500px;}
.x33{left:409.094550px;}
.x44{left:410.895450px;}
.x62{left:412.600500px;}
.x4{left:416.055000px;}
.x7a{left:419.000160px;}
.x8{left:427.918500px;}
.x2e{left:430.808220px;}
.x57{left:441.045000px;}
.x18{left:442.671000px;}
.x19{left:454.647000px;}
.xc{left:459.529500px;}
.x5a{left:467.403750px;}
.x59{left:475.942500px;}
.x7b{left:486.200160px;}
.x2f{left:497.295450px;}
.x1a{left:499.143000px;}
.xf{left:503.538000px;}
.x13{left:512.061000px;}
.x1e{left:518.488500px;}
.x15{left:529.303500px;}
.x12{left:535.963500px;}
.x14{left:563.431500px;}
.x5b{left:565.537005px;}
.x76{left:592.299840px;}
.x10{left:615.517500px;}
@media print{
.v1a{vertical-align:-54.796800pt;}
.v13{vertical-align:-51.600000pt;}
.v12{vertical-align:-46.401600pt;}
.v1f{vertical-align:-24.000000pt;}
.v1e{vertical-align:-20.799360pt;}
.v19{vertical-align:-17.199360pt;}
.v1b{vertical-align:-15.466667pt;}
.v1{vertical-align:-13.770667pt;}
.v20{vertical-align:-11.477333pt;}
.v3{vertical-align:-9.562667pt;}
.v2{vertical-align:-7.973333pt;}
.v8{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:4.368000pt;}
.v21{vertical-align:7.823317pt;}
.v14{vertical-align:8.801232pt;}
.v17{vertical-align:11.198400pt;}
.v18{vertical-align:12.800640pt;}
.vc{vertical-align:13.930667pt;}
.v16{vertical-align:16.400640pt;}
.va{vertical-align:18.421333pt;}
.v15{vertical-align:20.000640pt;}
.ve{vertical-align:21.962667pt;}
.v1c{vertical-align:23.141333pt;}
.v7{vertical-align:34.170667pt;}
.v1d{vertical-align:37.072000pt;}
.v5{vertical-align:43.130667pt;}
.v10{vertical-align:58.154667pt;}
.vb{vertical-align:65.098667pt;}
.vf{vertical-align:74.981333pt;}
.v4{vertical-align:77.573333pt;}
.v9{vertical-align:87.141333pt;}
.v11{vertical-align:105.290667pt;}
.v6{vertical-align:121.312000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000125pt;}
.ls3a{letter-spacing:0.000990pt;}
.ls8e{letter-spacing:0.001067pt;}
.ls26{letter-spacing:0.001321pt;}
.ls15{letter-spacing:0.002452pt;}
.ls28{letter-spacing:0.002591pt;}
.ls74{letter-spacing:0.002717pt;}
.ls6a{letter-spacing:0.002963pt;}
.ls2d{letter-spacing:0.003321pt;}
.ls3b{letter-spacing:0.003420pt;}
.ls1f{letter-spacing:0.005459pt;}
.ls5b{letter-spacing:1.511040pt;}
.ls2e{letter-spacing:1.714963pt;}
.ls35{letter-spacing:1.720296pt;}
.ls47{letter-spacing:1.732492pt;}
.ls72{letter-spacing:1.737825pt;}
.ls5e{letter-spacing:2.145600pt;}
.ls73{letter-spacing:2.289321pt;}
.ls5{letter-spacing:2.653258pt;}
.ls2f{letter-spacing:2.656092pt;}
.ls12{letter-spacing:2.657146pt;}
.ls79{letter-spacing:2.657280pt;}
.ls30{letter-spacing:2.657546pt;}
.ls3{letter-spacing:2.658245pt;}
.ls2a{letter-spacing:2.658591pt;}
.ls38{letter-spacing:2.661425pt;}
.ls58{letter-spacing:3.133488pt;}
.ls59{letter-spacing:3.386832pt;}
.ls60{letter-spacing:3.681600pt;}
.ls4d{letter-spacing:3.709752pt;}
.ls4a{letter-spacing:6.375291pt;}
.ls4b{letter-spacing:8.663511pt;}
.ls19{letter-spacing:9.030479pt;}
.ls16{letter-spacing:10.626452pt;}
.ls39{letter-spacing:13.286879pt;}
.ls1d{letter-spacing:13.970827pt;}
.ls1b{letter-spacing:14.164905pt;}
.ls32{letter-spacing:14.166642pt;}
.ls31{letter-spacing:14.168753pt;}
.ls17{letter-spacing:14.169248pt;}
.ls49{letter-spacing:14.170238pt;}
.ls1a{letter-spacing:14.173494pt;}
.ls1c{letter-spacing:15.943368pt;}
.ls1{letter-spacing:16.503578pt;}
.ls62{letter-spacing:16.688640pt;}
.ls44{letter-spacing:17.106591pt;}
.ls63{letter-spacing:17.280000pt;}
.ls4e{letter-spacing:17.713309pt;}
.ls7d{letter-spacing:17.792000pt;}
.ls88{letter-spacing:19.428693pt;}
.ls2b{letter-spacing:19.484701pt;}
.ls64{letter-spacing:19.889760pt;}
.ls46{letter-spacing:19.981258pt;}
.ls3e{letter-spacing:20.093258pt;}
.ls7{letter-spacing:20.205258pt;}
.ls11{letter-spacing:20.429258pt;}
.lsf{letter-spacing:20.530591pt;}
.ls2c{letter-spacing:20.538238pt;}
.ls4c{letter-spacing:20.543572pt;}
.ls45{letter-spacing:20.573258pt;}
.ls34{letter-spacing:20.806323pt;}
.ls8d{letter-spacing:20.811657pt;}
.ls55{letter-spacing:21.857280pt;}
.ls5d{letter-spacing:21.859152pt;}
.ls5a{letter-spacing:21.934080pt;}
.ls8{letter-spacing:22.034591pt;}
.ls2{letter-spacing:22.135578pt;}
.ls7a{letter-spacing:22.258560pt;}
.ls24{letter-spacing:22.306591pt;}
.ls25{letter-spacing:22.307980pt;}
.ls81{letter-spacing:22.466591pt;}
.ls6d{letter-spacing:22.543159pt;}
.ls84{letter-spacing:22.546591pt;}
.ls54{letter-spacing:22.584960pt;}
.ls65{letter-spacing:22.615925pt;}
.ls5f{letter-spacing:22.881600pt;}
.ls80{letter-spacing:23.010591pt;}
.ls4{letter-spacing:23.068911pt;}
.ls6f{letter-spacing:23.099988pt;}
.ls3f{letter-spacing:23.133258pt;}
.ls57{letter-spacing:23.421258pt;}
.ls29{letter-spacing:23.463925pt;}
.ls6b{letter-spacing:23.468213pt;}
.ls9{letter-spacing:23.469258pt;}
.ls37{letter-spacing:23.614824pt;}
.ls3d{letter-spacing:24.045258pt;}
.ls13{letter-spacing:24.119925pt;}
.ls89{letter-spacing:24.210720pt;}
.ls5c{letter-spacing:24.334080pt;}
.ls50{letter-spacing:24.343925pt;}
.ls48{letter-spacing:24.525752pt;}
.lsd{letter-spacing:24.578591pt;}
.ls6e{letter-spacing:24.721181pt;}
.ls70{letter-spacing:24.991918pt;}
.ls27{letter-spacing:24.993441pt;}
.ls87{letter-spacing:25.074591pt;}
.ls69{letter-spacing:25.237137pt;}
.ls10{letter-spacing:25.442591pt;}
.ls82{letter-spacing:25.517258pt;}
.ls42{letter-spacing:25.549258pt;}
.ls8c{letter-spacing:25.639925pt;}
.ls71{letter-spacing:26.123139pt;}
.ls78{letter-spacing:26.257920pt;}
.ls83{letter-spacing:26.295925pt;}
.ls52{letter-spacing:26.338591pt;}
.lsa{letter-spacing:26.397258pt;}
.ls41{letter-spacing:26.439925pt;}
.ls7f{letter-spacing:26.535925pt;}
.ls7c{letter-spacing:26.647925pt;}
.ls8b{letter-spacing:27.058591pt;}
.ls61{letter-spacing:27.218591pt;}
.ls53{letter-spacing:28.103925pt;}
.ls18{letter-spacing:28.139976pt;}
.ls23{letter-spacing:28.226591pt;}
.ls8a{letter-spacing:28.237258pt;}
.ls20{letter-spacing:28.386591pt;}
.ls21{letter-spacing:28.568424pt;}
.ls51{letter-spacing:28.653258pt;}
.ls4f{letter-spacing:28.807925pt;}
.ls40{letter-spacing:28.887925pt;}
.ls85{letter-spacing:29.005258pt;}
.ls86{letter-spacing:29.159925pt;}
.lsb{letter-spacing:29.709258pt;}
.lsc{letter-spacing:29.837258pt;}
.ls7b{letter-spacing:30.306591pt;}
.ls0{letter-spacing:30.371915pt;}
.ls8f{letter-spacing:30.598323pt;}
.ls22{letter-spacing:31.042034pt;}
.ls7e{letter-spacing:31.347733pt;}
.ls43{letter-spacing:31.757258pt;}
.lse{letter-spacing:32.754591pt;}
.ls66{letter-spacing:33.569146pt;}
.ls67{letter-spacing:33.569546pt;}
.ls68{letter-spacing:37.712882pt;}
.ls36{letter-spacing:38.520655pt;}
.ls77{letter-spacing:66.417546pt;}
.ls75{letter-spacing:104.646879pt;}
.ls76{letter-spacing:105.078879pt;}
.ls56{letter-spacing:223.055040pt;}
.ls1e{letter-spacing:346.957494pt;}
.ls33{letter-spacing:410.512990pt;}
.ls3c{letter-spacing:456.187657pt;}
.ls6c{letter-spacing:670.731549pt;}
.ws73{word-spacing:-63.761067pt;}
.wsfd{word-spacing:-45.163900pt;}
.ws6d{word-spacing:-42.066082pt;}
.ws67{word-spacing:-40.590295pt;}
.ws6a{word-spacing:-30.005958pt;}
.ws6e{word-spacing:-29.521250pt;}
.ws56{word-spacing:-17.343010pt;}
.wsb3{word-spacing:-16.702812pt;}
.ws11{word-spacing:-14.760588pt;}
.wsb4{word-spacing:-13.041688pt;}
.ws106{word-spacing:-10.675200pt;}
.wsb2{word-spacing:-10.241401pt;}
.ws52{word-spacing:-3.251814pt;}
.ws9c{word-spacing:-2.933009pt;}
.ws9d{word-spacing:-2.869248pt;}
.wsad{word-spacing:-2.741726pt;}
.ws136{word-spacing:-2.614204pt;}
.ws117{word-spacing:-2.486682pt;}
.wsc7{word-spacing:-2.359159pt;}
.wsac{word-spacing:-2.231637pt;}
.ws12b{word-spacing:-2.040354pt;}
.wse2{word-spacing:-1.976593pt;}
.ws4b{word-spacing:-1.849071pt;}
.ws48{word-spacing:-1.721549pt;}
.ws144{word-spacing:-1.657788pt;}
.ws138{word-spacing:-1.530266pt;}
.ws13b{word-spacing:-1.466505pt;}
.wsaa{word-spacing:-1.402743pt;}
.ws113{word-spacing:-1.338982pt;}
.ws30{word-spacing:-1.211460pt;}
.ws29{word-spacing:-1.020177pt;}
.ws27{word-spacing:-0.976415pt;}
.ws2a{word-spacing:-0.956416pt;}
.ws3{word-spacing:-0.892649pt;}
.ws13a{word-spacing:-0.828894pt;}
.ws12f{word-spacing:-0.701372pt;}
.ws137{word-spacing:-0.573850pt;}
.ws51{word-spacing:-0.510089pt;}
.wsca{word-spacing:-0.382566pt;}
.ws47{word-spacing:-0.318805pt;}
.ws13d{word-spacing:-0.255044pt;}
.ws15{word-spacing:-0.201909pt;}
.ws135{word-spacing:-0.127522pt;}
.ws133{word-spacing:-0.063761pt;}
.ws128{word-spacing:-0.063467pt;}
.wscc{word-spacing:-0.057600pt;}
.wse4{word-spacing:-0.052800pt;}
.ws10b{word-spacing:-0.051200pt;}
.wsd9{word-spacing:-0.048000pt;}
.ws6c{word-spacing:-0.042507pt;}
.wsd7{word-spacing:-0.040320pt;}
.wsdb{word-spacing:-0.033600pt;}
.ws1e{word-spacing:0.000000pt;}
.ws87{word-spacing:0.063761pt;}
.ws88{word-spacing:0.127522pt;}
.ws20{word-spacing:0.185627pt;}
.ws1f{word-spacing:0.191283pt;}
.ws4d{word-spacing:0.255044pt;}
.ws19{word-spacing:0.318805pt;}
.wsa{word-spacing:0.329430pt;}
.ws64{word-spacing:0.382566pt;}
.ws63{word-spacing:0.446327pt;}
.ws62{word-spacing:0.510089pt;}
.ws9f{word-spacing:0.573850pt;}
.ws5f{word-spacing:0.637611pt;}
.ws38{word-spacing:0.765133pt;}
.ws41{word-spacing:0.828894pt;}
.ws1c{word-spacing:0.892655pt;}
.ws1a{word-spacing:0.898908pt;}
.ws121{word-spacing:0.956416pt;}
.ws10{word-spacing:1.020170pt;}
.ws35{word-spacing:1.020177pt;}
.ws99{word-spacing:1.083938pt;}
.ws2b{word-spacing:1.211460pt;}
.ws65{word-spacing:1.338982pt;}
.wsa6{word-spacing:1.594027pt;}
.ws13e{word-spacing:1.721549pt;}
.ws93{word-spacing:1.785310pt;}
.ws95{word-spacing:1.849071pt;}
.ws78{word-spacing:1.912832pt;}
.ws17{word-spacing:1.976593pt;}
.ws23{word-spacing:2.040354pt;}
.ws43{word-spacing:2.167876pt;}
.ws72{word-spacing:2.295398pt;}
.ws66{word-spacing:2.359159pt;}
.wsa5{word-spacing:2.422921pt;}
.ws7a{word-spacing:2.486682pt;}
.ws49{word-spacing:2.550443pt;}
.wsea{word-spacing:2.614204pt;}
.wsb9{word-spacing:2.741726pt;}
.wsb7{word-spacing:2.805487pt;}
.ws10f{word-spacing:2.869248pt;}
.wse{word-spacing:2.932989pt;}
.wsbc{word-spacing:2.996770pt;}
.ws8a{word-spacing:3.124292pt;}
.ws5e{word-spacing:3.188053pt;}
.wsd{word-spacing:3.198659pt;}
.ws2{word-spacing:3.211639pt;}
.wsf{word-spacing:3.358060pt;}
.ws42{word-spacing:3.379337pt;}
.ws2c{word-spacing:3.443098pt;}
.ws69{word-spacing:3.506859pt;}
.ws9b{word-spacing:3.634381pt;}
.ws9e{word-spacing:3.698142pt;}
.wsc9{word-spacing:3.761903pt;}
.ws12e{word-spacing:3.825664pt;}
.ws142{word-spacing:3.889425pt;}
.ws114{word-spacing:3.943685pt;}
.ws5d{word-spacing:3.953186pt;}
.ws77{word-spacing:4.016947pt;}
.ws11a{word-spacing:4.080708pt;}
.ws1{word-spacing:4.131706pt;}
.ws68{word-spacing:4.144469pt;}
.wsba{word-spacing:4.164535pt;}
.ws5c{word-spacing:4.208230pt;}
.wsbd{word-spacing:4.335753pt;}
.ws9{word-spacing:4.367604pt;}
.ws12d{word-spacing:4.399514pt;}
.ws3a{word-spacing:4.463275pt;}
.wsc{word-spacing:4.527005pt;}
.wsc1{word-spacing:4.527036pt;}
.ws4e{word-spacing:4.590797pt;}
.wsc6{word-spacing:4.654558pt;}
.ws7e{word-spacing:4.718319pt;}
.ws5{word-spacing:4.739541pt;}
.ws3c{word-spacing:4.782080pt;}
.wsa1{word-spacing:4.845841pt;}
.ws26{word-spacing:4.909602pt;}
.ws110{word-spacing:5.037124pt;}
.ws4a{word-spacing:5.100885pt;}
.ws10a{word-spacing:5.164646pt;}
.wsa0{word-spacing:5.228407pt;}
.ws75{word-spacing:5.292169pt;}
.ws4{word-spacing:5.324013pt;}
.wsc3{word-spacing:5.355930pt;}
.ws53{word-spacing:5.419691pt;}
.ws76{word-spacing:5.483452pt;}
.ws94{word-spacing:5.547213pt;}
.ws74{word-spacing:5.610974pt;}
.ws12{word-spacing:5.642817pt;}
.wsae{word-spacing:5.674735pt;}
.ws7f{word-spacing:5.738496pt;}
.ws101{word-spacing:5.802257pt;}
.ws39{word-spacing:5.866018pt;}
.ws111{word-spacing:5.929779pt;}
.ws118{word-spacing:5.993540pt;}
.ws4f{word-spacing:6.057301pt;}
.ws7{word-spacing:6.121021pt;}
.wsc0{word-spacing:6.184823pt;}
.ws90{word-spacing:6.248585pt;}
.ws8e{word-spacing:6.291364pt;}
.wsc4{word-spacing:6.312346pt;}
.ws37{word-spacing:6.376107pt;}
.ws18{word-spacing:6.439868pt;}
.wsc8{word-spacing:6.503629pt;}
.ws46{word-spacing:6.567390pt;}
.ws7b{word-spacing:6.631151pt;}
.ws60{word-spacing:6.694912pt;}
.wsb8{word-spacing:6.758673pt;}
.ws14{word-spacing:6.811762pt;}
.ws24{word-spacing:6.822434pt;}
.ws7c{word-spacing:6.949956pt;}
.wsc2{word-spacing:7.013717pt;}
.ws8c{word-spacing:7.077478pt;}
.ws4c{word-spacing:7.141239pt;}
.wsdf{word-spacing:7.205001pt;}
.ws3d{word-spacing:7.268762pt;}
.ws13c{word-spacing:7.332523pt;}
.wseb{word-spacing:7.396284pt;}
.ws5a{word-spacing:7.460045pt;}
.ws132{word-spacing:7.587567pt;}
.ws5b{word-spacing:7.651328pt;}
.wsce{word-spacing:7.680000pt;}
.ws1d{word-spacing:7.778850pt;}
.wsd3{word-spacing:7.790400pt;}
.wsd0{word-spacing:7.791360pt;}
.ws11b{word-spacing:7.842611pt;}
.ws13{word-spacing:7.874439pt;}
.wsf1{word-spacing:7.889065pt;}
.wsa7{word-spacing:7.906372pt;}
.ws31{word-spacing:7.970133pt;}
.ws2e{word-spacing:8.033894pt;}
.ws8{word-spacing:8.086975pt;}
.ws3f{word-spacing:8.097655pt;}
.wsa9{word-spacing:8.161417pt;}
.ws71{word-spacing:8.225178pt;}
.wsa3{word-spacing:8.288939pt;}
.ws6{word-spacing:8.299510pt;}
.wsaf{word-spacing:8.352700pt;}
.ws6f{word-spacing:8.381297pt;}
.ws70{word-spacing:8.416461pt;}
.ws55{word-spacing:8.543983pt;}
.ws33{word-spacing:8.671505pt;}
.ws2d{word-spacing:8.735266pt;}
.wsbe{word-spacing:8.799027pt;}
.ws92{word-spacing:8.862788pt;}
.ws147{word-spacing:8.926549pt;}
.ws11d{word-spacing:8.990310pt;}
.ws3e{word-spacing:9.054071pt;}
.ws119{word-spacing:9.117833pt;}
.ws120{word-spacing:9.181594pt;}
.wsa2{word-spacing:9.245355pt;}
.ws11f{word-spacing:9.309116pt;}
.ws79{word-spacing:9.436638pt;}
.ws85{word-spacing:9.564160pt;}
.ws40{word-spacing:9.691682pt;}
.ws97{word-spacing:9.755443pt;}
.ws45{word-spacing:9.819204pt;}
.ws112{word-spacing:9.882965pt;}
.ws81{word-spacing:10.138010pt;}
.wsec{word-spacing:10.201771pt;}
.wsbf{word-spacing:10.329293pt;}
.ws145{word-spacing:10.329426pt;}
.ws139{word-spacing:10.330815pt;}
.ws148{word-spacing:10.331670pt;}
.ws91{word-spacing:10.520576pt;}
.wsb{word-spacing:10.690534pt;}
.ws96{word-spacing:10.903142pt;}
.ws61{word-spacing:10.966903pt;}
.ws7d{word-spacing:11.158187pt;}
.wsa8{word-spacing:11.221948pt;}
.ws44{word-spacing:11.285709pt;}
.wse1{word-spacing:11.413231pt;}
.ws116{word-spacing:11.476992pt;}
.ws89{word-spacing:11.540753pt;}
.ws3b{word-spacing:11.604514pt;}
.ws82{word-spacing:11.668275pt;}
.ws9a{word-spacing:11.732036pt;}
.ws122{word-spacing:11.987081pt;}
.ws131{word-spacing:12.050842pt;}
.ws130{word-spacing:12.178364pt;}
.ws83{word-spacing:12.242125pt;}
.ws59{word-spacing:12.305886pt;}
.ws84{word-spacing:12.369647pt;}
.ws57{word-spacing:12.752213pt;}
.ws12c{word-spacing:12.879735pt;}
.ws146{word-spacing:13.198541pt;}
.ws11e{word-spacing:13.389824pt;}
.wsee{word-spacing:13.581107pt;}
.wsde{word-spacing:13.939200pt;}
.wsdc{word-spacing:14.083200pt;}
.wsdd{word-spacing:14.193600pt;}
.wsed{word-spacing:15.238895pt;}
.wsda{word-spacing:15.551424pt;}
.wsf0{word-spacing:15.940267pt;}
.ws28{word-spacing:16.307294pt;}
.ws140{word-spacing:16.450355pt;}
.wsef{word-spacing:16.832922pt;}
.ws123{word-spacing:17.015450pt;}
.ws21{word-spacing:17.484689pt;}
.wsd6{word-spacing:17.542426pt;}
.wsab{word-spacing:17.725577pt;}
.wse9{word-spacing:17.840011pt;}
.wse6{word-spacing:17.842070pt;}
.ws103{word-spacing:17.942515pt;}
.wsb1{word-spacing:17.944789pt;}
.ws11c{word-spacing:18.174839pt;}
.wsd1{word-spacing:18.343181pt;}
.wsf2{word-spacing:18.363187pt;}
.wse8{word-spacing:18.427200pt;}
.wsd4{word-spacing:18.742579pt;}
.wse5{word-spacing:18.866496pt;}
.wscd{word-spacing:19.142381pt;}
.ws22{word-spacing:19.341568pt;}
.wscf{word-spacing:19.542413pt;}
.ws1b{word-spacing:19.893453pt;}
.ws36{word-spacing:20.020975pt;}
.ws13f{word-spacing:20.658586pt;}
.ws6b{word-spacing:21.168674pt;}
.ws115{word-spacing:21.225591pt;}
.ws98{word-spacing:21.278925pt;}
.ws8d{word-spacing:21.359957pt;}
.wsbb{word-spacing:21.418308pt;}
.ws134{word-spacing:22.252612pt;}
.ws80{word-spacing:22.991804pt;}
.ws141{word-spacing:23.081506pt;}
.ws129{word-spacing:23.357574pt;}
.ws8f{word-spacing:23.585476pt;}
.ws54{word-spacing:24.037922pt;}
.ws25{word-spacing:24.099388pt;}
.ws8b{word-spacing:24.399249pt;}
.wsb0{word-spacing:25.635311pt;}
.ws32{word-spacing:26.269559pt;}
.ws2f{word-spacing:26.460843pt;}
.ws34{word-spacing:27.098453pt;}
.ws0{word-spacing:27.636455pt;}
.ws50{word-spacing:28.615887pt;}
.ws86{word-spacing:28.628719pt;}
.ws143{word-spacing:29.457613pt;}
.wsb5{word-spacing:29.571603pt;}
.ws58{word-spacing:30.029269pt;}
.wsc5{word-spacing:34.338985pt;}
.ws102{word-spacing:46.418057pt;}
.wsd5{word-spacing:58.876800pt;}
.wscb{word-spacing:69.278400pt;}
.wse7{word-spacing:81.486240pt;}
.wse3{word-spacing:81.489408pt;}
.wsa4{word-spacing:86.000687pt;}
.ws10d{word-spacing:87.536640pt;}
.ws10e{word-spacing:87.538347pt;}
.ws10c{word-spacing:87.893333pt;}
.ws104{word-spacing:97.680000pt;}
.ws105{word-spacing:98.079360pt;}
.ws107{word-spacing:98.480640pt;}
.ws108{word-spacing:101.681280pt;}
.ws12a{word-spacing:101.697173pt;}
.ws109{word-spacing:102.080640pt;}
.ws16{word-spacing:103.200585pt;}
.wsfe{word-spacing:131.411558pt;}
.ws124{word-spacing:145.138347pt;}
.ws127{word-spacing:145.493333pt;}
.ws100{word-spacing:146.969259pt;}
.ws125{word-spacing:150.116693pt;}
.ws126{word-spacing:150.469973pt;}
.wsff{word-spacing:157.362313pt;}
.wse0{word-spacing:166.992000pt;}
.wsfc{word-spacing:204.736785pt;}
.wsd2{word-spacing:212.803200pt;}
.wsfb{word-spacing:320.144316pt;}
.wsfa{word-spacing:326.647945pt;}
.wsf7{word-spacing:336.467149pt;}
.wsf9{word-spacing:389.835162pt;}
.wsf8{word-spacing:439.760077pt;}
.wsf5{word-spacing:453.978795pt;}
.wsf6{word-spacing:487.899682pt;}
.wsf4{word-spacing:491.789107pt;}
.wsf3{word-spacing:502.437205pt;}
.wsb6{word-spacing:533.042517pt;}
.wsd8{word-spacing:691.997760pt;}
._1b{margin-left:-7.192228pt;}
._4{margin-left:-5.587205pt;}
._2{margin-left:-4.131706pt;}
._1{margin-left:-2.387139pt;}
._5{margin-left:-1.487748pt;}
._6{width:1.381481pt;}
._0{width:2.387202pt;}
._23{width:3.468571pt;}
._1a{width:4.590797pt;}
._39{width:13.764589pt;}
._38{width:14.705037pt;}
._37{width:15.819524pt;}
._f{width:16.726599pt;}
._13{width:18.235665pt;}
._11{width:19.319603pt;}
._32{width:20.400168pt;}
._7{width:21.359814pt;}
._d{width:22.781693pt;}
._a{width:24.003772pt;}
._3{width:25.832749pt;}
._10{width:26.861434pt;}
._b{width:27.789012pt;}
._15{width:29.245651pt;}
._8{width:30.764509pt;}
._26{width:31.778466pt;}
._12{width:32.886192pt;}
._24{width:34.110540pt;}
._16{width:35.060176pt;}
._18{width:35.982505pt;}
._e{width:37.721161pt;}
._17{width:39.432327pt;}
._9{width:40.484122pt;}
._14{width:42.023027pt;}
._21{width:43.321744pt;}
._1f{width:44.696497pt;}
._22{width:45.857638pt;}
._c{width:46.970338pt;}
._33{width:48.486390pt;}
._20{width:50.176265pt;}
._1c{width:51.553628pt;}
._1d{width:52.751665pt;}
._1e{width:54.437413pt;}
._34{width:57.980073pt;}
._2b{width:63.761067pt;}
._27{width:65.404317pt;}
._19{width:86.077200pt;}
._2e{width:88.090204pt;}
._2d{width:93.960070pt;}
._25{width:103.292400pt;}
._30{width:105.397043pt;}
._31{width:115.023360pt;}
._36{width:119.212160pt;}
._2a{width:144.061987pt;}
._2c{width:157.533486pt;}
._35{width:162.333013pt;}
._2f{width:179.933730pt;}
._29{width:248.120048pt;}
._28{width:297.190086pt;}
.fs7{font-size:31.880533pt;}
.fsc{font-size:33.600000pt;}
.fs13{font-size:35.840000pt;}
.fse{font-size:36.960000pt;}
.fs5{font-size:37.193600pt;}
.fs10{font-size:38.400000pt;}
.fsb{font-size:40.320000pt;}
.fs6{font-size:42.507200pt;}
.fs11{font-size:42.666667pt;}
.fs16{font-size:44.426667pt;}
.fs14{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs12{font-size:51.200000pt;}
.fsd{font-size:52.800000pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:57.600000pt;}
.fs3{font-size:58.181867pt;}
.fs15{font-size:63.466667pt;}
.fs1{font-size:63.761067pt;}
.fs9{font-size:67.200000pt;}
.fsf{font-size:73.920000pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1f6{bottom:3.910000pt;}
.y198{bottom:4.657920pt;}
.y1e0{bottom:4.693333pt;}
.y17d{bottom:5.240160pt;}
.y124{bottom:6.200160pt;}
.yee{bottom:6.800160pt;}
.y11a{bottom:6.900000pt;}
.y138{bottom:9.240000pt;}
.y197{bottom:16.924587pt;}
.y1f5{bottom:16.943333pt;}
.y1df{bottom:16.960000pt;}
.y17c{bottom:19.040160pt;}
.y11c{bottom:20.700000pt;}
.y117{bottom:22.500000pt;}
.y189{bottom:22.968747pt;}
.y1d3{bottom:23.004587pt;}
.y195{bottom:23.057920pt;}
.y1dd{bottom:23.093333pt;}
.ye9{bottom:23.100000pt;}
.y12f{bottom:25.300176pt;}
.y175{bottom:25.839840pt;}
.y17a{bottom:25.940160pt;}
.y1f4{bottom:29.976667pt;}
.y11d{bottom:30.800160pt;}
.y126{bottom:30.900000pt;}
.yea{bottom:33.200160pt;}
.yff{bottom:33.300000pt;}
.y1e9{bottom:36.399040pt;}
.y130{bottom:36.410352pt;}
.y1f2{bottom:36.493333pt;}
.y139{bottom:36.520176pt;}
.yed{bottom:41.000160pt;}
.y136{bottom:45.100176pt;}
.y104{bottom:45.900000pt;}
.y18a{bottom:50.435413pt;}
.y118{bottom:52.200000pt;}
.y1d4{bottom:55.626667pt;}
.y131{bottom:57.200352pt;}
.y176{bottom:58.140000pt;}
.y115{bottom:58.500000pt;}
.y23{bottom:62.181333pt;}
.y103{bottom:62.700000pt;}
.yeb{bottom:71.100000pt;}
.y13d{bottom:72.050352pt;}
.y1ea{bottom:76.065707pt;}
.y18b{bottom:77.813333pt;}
.y132{bottom:77.990352pt;}
.y102{bottom:79.599840pt;}
.y11e{bottom:79.800000pt;}
.y116{bottom:83.700000pt;}
.y1d5{bottom:88.248747pt;}
.y1dc{bottom:90.204587pt;}
.y177{bottom:90.339840pt;}
.y13c{bottom:90.530352pt;}
.y119{bottom:94.700160pt;}
.y181{bottom:95.540160pt;}
.y1f1{bottom:95.993333pt;}
.y101{bottom:96.399840pt;}
.y133{bottom:98.780352pt;}
.y22{bottom:102.032000pt;}
.y20b{bottom:102.388000pt;}
.y18c{bottom:105.191253pt;}
.y166{bottom:105.608000pt;}
.y1d1{bottom:106.705333pt;}
.ycf{bottom:107.701333pt;}
.yec{bottom:108.900000pt;}
.y4d{bottom:108.985333pt;}
.y165{bottom:109.092000pt;}
.y100{bottom:109.100160pt;}
.y13b{bottom:109.120176pt;}
.y180{bottom:110.340000pt;}
.y71{bottom:115.006667pt;}
.y1eb{bottom:115.732600pt;}
.yb5{bottom:118.272000pt;}
.y134{bottom:119.570352pt;}
.y1d6{bottom:120.871467pt;}
.y21{bottom:121.293333pt;}
.y20a{bottom:121.648000pt;}
.y178{bottom:122.640000pt;}
.y17f{bottom:125.040000pt;}
.y1d0{bottom:125.965333pt;}
.yce{bottom:126.962667pt;}
.yfe{bottom:127.500000pt;}
.y4c{bottom:128.246667pt;}
.y11f{bottom:128.700000pt;}
.y164{bottom:128.921333pt;}
.y22a{bottom:130.238667pt;}
.y18d{bottom:132.568533pt;}
.ye8{bottom:132.699600pt;}
.y70{bottom:134.268000pt;}
.y1fe{bottom:135.574667pt;}
.ye3{bottom:136.599600pt;}
.yb4{bottom:137.533333pt;}
.y17e{bottom:139.839600pt;}
.y135{bottom:140.360880pt;}
.y20{bottom:140.554667pt;}
.y13a{bottom:140.580000pt;}
.y209{bottom:140.909333pt;}
.y113{bottom:143.600400pt;}
.yfd{bottom:144.300000pt;}
.y1cf{bottom:145.226667pt;}
.ycd{bottom:146.224000pt;}
.ye4{bottom:146.700000pt;}
.yf7{bottom:146.799600pt;}
.y4b{bottom:147.506667pt;}
.y13f{bottom:147.892000pt;}
.y163{bottom:148.181333pt;}
.y194{bottom:149.458133pt;}
.y229{bottom:149.500000pt;}
.y1d7{bottom:153.493333pt;}
.y6f{bottom:153.529333pt;}
.y1fd{bottom:154.836000pt;}
.y179{bottom:154.839600pt;}
.y17b{bottom:155.039760pt;}
.y137{bottom:155.100000pt;}
.y1ec{bottom:155.304067pt;}
.yb3{bottom:156.794667pt;}
.y110{bottom:159.300000pt;}
.y1f{bottom:159.814667pt;}
.y94{bottom:159.816000pt;}
.y18e{bottom:159.946667pt;}
.y208{bottom:160.170667pt;}
.yfc{bottom:161.100000pt;}
.y1ce{bottom:164.488000pt;}
.y4a{bottom:166.768000pt;}
.y13e{bottom:167.153333pt;}
.y125{bottom:168.500400pt;}
.y228{bottom:168.761333pt;}
.ycc{bottom:171.241333pt;}
.ye5{bottom:171.900000pt;}
.y162{bottom:171.997333pt;}
.y6e{bottom:172.790667pt;}
.y1fc{bottom:174.097333pt;}
.yb2{bottom:176.056000pt;}
.y120{bottom:177.600000pt;}
.yfb{bottom:177.999600pt;}
.y1e{bottom:179.076000pt;}
.y1cd{bottom:183.749333pt;}
.y1ab{bottom:184.026667pt;}
.y172{bottom:184.440000pt;}
.y111{bottom:184.500000pt;}
.y49{bottom:186.029333pt;}
.y1d8{bottom:186.115200pt;}
.y18f{bottom:187.413333pt;}
.y227{bottom:188.022667pt;}
.y6d{bottom:192.050667pt;}
.y207{bottom:192.716000pt;}
.ycb{bottom:192.958667pt;}
.y12e{bottom:193.918667pt;}
.ydb{bottom:194.044000pt;}
.yfa{bottom:194.799600pt;}
.y1ed{bottom:194.970733pt;}
.yb1{bottom:195.317333pt;}
.ye6{bottom:197.100000pt;}
.y171{bottom:198.240000pt;}
.y93{bottom:198.337333pt;}
.y161{bottom:201.293333pt;}
.y1e8{bottom:201.770667pt;}
.y1cc{bottom:203.010667pt;}
.y1aa{bottom:203.288000pt;}
.y168{bottom:205.040400pt;}
.y16f{bottom:205.140000pt;}
.y48{bottom:205.290667pt;}
.y114{bottom:208.100400pt;}
.y112{bottom:209.700000pt;}
.y16d{bottom:210.440400pt;}
.yf9{bottom:210.699600pt;}
.y6c{bottom:211.312000pt;}
.y206{bottom:211.976000pt;}
.yda{bottom:213.305333pt;}
.y1d{bottom:214.122667pt;}
.yb0{bottom:214.577333pt;}
.y190{bottom:214.791467pt;}
.y92{bottom:217.598667pt;}
.y1e5{bottom:218.293333pt;}
.y1d9{bottom:218.738133pt;}
.y160{bottom:220.554667pt;}
.y226{bottom:220.566667pt;}
.y1cb{bottom:222.272000pt;}
.ye7{bottom:222.300000pt;}
.yf8{bottom:222.499920pt;}
.y1a9{bottom:222.549333pt;}
.y47{bottom:224.552000pt;}
.y174{bottom:225.740400pt;}
.y121{bottom:226.599600pt;}
.yca{bottom:227.097333pt;}
.y1fb{bottom:229.632600pt;}
.y6b{bottom:230.573333pt;}
.y1e4{bottom:231.360000pt;}
.yd9{bottom:232.566667pt;}
.yaf{bottom:233.838667pt;}
.y1ee{bottom:234.543333pt;}
.y91{bottom:236.860000pt;}
.y169{bottom:237.339600pt;}
.y225{bottom:239.828000pt;}
.yf6{bottom:240.099600pt;}
.y1ca{bottom:241.532000pt;}
.y1a8{bottom:241.810667pt;}
.y191{bottom:242.168533pt;}
.y46{bottom:243.813333pt;}
.y1e3{bottom:244.426667pt;}
.y205{bottom:244.521333pt;}
.y1fa{bottom:245.499267pt;}
.y173{bottom:246.039600pt;}
.yc9{bottom:246.358667pt;}
.y16e{bottom:246.440408pt;}
.y6a{bottom:249.834667pt;}
.ydd{bottom:249.999600pt;}
.y1da{bottom:251.360000pt;}
.yd8{bottom:251.826667pt;}
.yae{bottom:253.100000pt;}
.y15f{bottom:255.957333pt;}
.y90{bottom:256.121333pt;}
.yf5{bottom:256.899600pt;}
.y10b{bottom:257.000400pt;}
.y1e2{bottom:257.581867pt;}
.y224{bottom:259.089333pt;}
.y15e{bottom:259.441333pt;}
.yef{bottom:260.200080pt;}
.y1c9{bottom:260.793333pt;}
.y1a7{bottom:261.072000pt;}
.y1f9{bottom:261.365933pt;}
.y45{bottom:263.073333pt;}
.y204{bottom:263.782667pt;}
.yc8{bottom:265.620000pt;}
.y1c{bottom:266.976000pt;}
.y69{bottom:269.096000pt;}
.y16a{bottom:269.540400pt;}
.y192{bottom:269.546667pt;}
.ye0{bottom:269.900400pt;}
.y19a{bottom:270.258133pt;}
.y1e1{bottom:270.648533pt;}
.yd7{bottom:271.088000pt;}
.y10f{bottom:271.400400pt;}
.yad{bottom:272.361333pt;}
.y187{bottom:273.286667pt;}
.yf4{bottom:273.699600pt;}
.y1ef{bottom:274.210000pt;}
.y108{bottom:275.300400pt;}
.y8f{bottom:275.382667pt;}
.y122{bottom:275.499600pt;}
.y1f8{bottom:277.326667pt;}
.y223{bottom:278.349333pt;}
.yde{bottom:279.099600pt;}
.y15d{bottom:279.270667pt;}
.y12a{bottom:279.699600pt;}
.y1c8{bottom:280.054667pt;}
.y1a6{bottom:280.333333pt;}
.y44{bottom:282.334667pt;}
.y1b{bottom:282.916000pt;}
.y199{bottom:283.501867pt;}
.y1db{bottom:283.981867pt;}
.y1de{bottom:284.160000pt;}
.yc7{bottom:284.881333pt;}
.ye1{bottom:286.800000pt;}
.y68{bottom:288.357333pt;}
.y10e{bottom:289.200000pt;}
.yd6{bottom:290.349333pt;}
.yf3{bottom:290.499600pt;}
.yac{bottom:291.622667pt;}
.y186{bottom:292.548000pt;}
.y1f7{bottom:293.193333pt;}
.y129{bottom:294.500400pt;}
.y8e{bottom:294.642667pt;}
.y107{bottom:294.977333pt;}
.y203{bottom:296.326667pt;}
.y193{bottom:296.924800pt;}
.y196{bottom:297.101653pt;}
.y222{bottom:297.610667pt;}
.y15c{bottom:298.530667pt;}
.y1a{bottom:298.857333pt;}
.y1a5{bottom:299.593333pt;}
.y43{bottom:301.596000pt;}
.y16b{bottom:301.839600pt;}
.yc6{bottom:304.142667pt;}
.y109{bottom:305.600400pt;}
.y10d{bottom:307.100400pt;}
.yf2{bottom:307.400400pt;}
.y67{bottom:307.617333pt;}
.y128{bottom:309.300000pt;}
.yd5{bottom:309.610667pt;}
.yab{bottom:310.884000pt;}
.y185{bottom:311.808000pt;}
.y1f0{bottom:313.782600pt;}
.y8d{bottom:313.904000pt;}
.y1f3{bottom:313.970733pt;}
.y106{bottom:314.238667pt;}
.y19{bottom:314.797333pt;}
.y1c7{bottom:315.101333pt;}
.y202{bottom:315.588000pt;}
.ydf{bottom:316.899600pt;}
.y15b{bottom:318.566667pt;}
.y1a4{bottom:318.854667pt;}
.y42{bottom:320.857333pt;}
.y10c{bottom:322.100400pt;}
.yc5{bottom:323.402667pt;}
.yf1{bottom:324.200400pt;}
.y123{bottom:324.399600pt;}
.y127{bottom:324.600000pt;}
.y66{bottom:326.878667pt;}
.yd4{bottom:328.872000pt;}
.yaa{bottom:330.144000pt;}
.y221{bottom:330.156000pt;}
.y18{bottom:330.737333pt;}
.y184{bottom:331.069333pt;}
.y8c{bottom:333.165333pt;}
.y105{bottom:333.500000pt;}
.y16c{bottom:334.040400pt;}
.y170{bottom:334.239600pt;}
.y10a{bottom:335.799600pt;}
.yf0{bottom:336.000240pt;}
.y1a3{bottom:338.116000pt;}
.y41{bottom:340.118667pt;}
.yc4{bottom:342.664000pt;}
.y65{bottom:346.140000pt;}
.y17{bottom:346.677333pt;}
.yd3{bottom:348.132000pt;}
.ya9{bottom:349.405333pt;}
.y220{bottom:349.417333pt;}
.ye2{bottom:349.700400pt;}
.y183{bottom:350.330667pt;}
.y8b{bottom:352.426667pt;}
.y15a{bottom:355.422667pt;}
.y40{bottom:359.380000pt;}
.ydc{bottom:360.266667pt;}
.yc3{bottom:361.925333pt;}
.y16{bottom:362.617333pt;}
.y64{bottom:365.401333pt;}
.y201{bottom:367.393333pt;}
.y1a2{bottom:367.672000pt;}
.y1c6{bottom:368.345333pt;}
.ya8{bottom:368.666667pt;}
.y182{bottom:369.592000pt;}
.y8a{bottom:371.688000pt;}
.y159{bottom:374.684000pt;}
.y15{bottom:378.558667pt;}
.y3f{bottom:378.640000pt;}
.yc2{bottom:381.186667pt;}
.y21f{bottom:381.961333pt;}
.yd2{bottom:383.178667pt;}
.y63{bottom:384.662667pt;}
.y200{bottom:386.654667pt;}
.y1c5{bottom:387.606667pt;}
.ya7{bottom:387.928000pt;}
.y89{bottom:390.949333pt;}
.y158{bottom:393.945333pt;}
.y14{bottom:394.498667pt;}
.y167{bottom:396.717333pt;}
.y3e{bottom:397.901333pt;}
.yc1{bottom:400.448000pt;}
.y21e{bottom:401.222667pt;}
.y1c4{bottom:406.868000pt;}
.ya6{bottom:407.189333pt;}
.y88{bottom:410.209333pt;}
.y13{bottom:410.438667pt;}
.y1a1{bottom:413.888000pt;}
.y62{bottom:414.218667pt;}
.y3d{bottom:417.162667pt;}
.y236{bottom:420.484000pt;}
.y1ff{bottom:421.701333pt;}
.y1c3{bottom:426.129333pt;}
.y12{bottom:426.378667pt;}
.ya5{bottom:426.450667pt;}
.y87{bottom:429.470667pt;}
.y157{bottom:429.582667pt;}
.yc0{bottom:430.004000pt;}
.y1a0{bottom:433.148000pt;}
.y21d{bottom:433.766667pt;}
.y3c{bottom:436.424000pt;}
.y235{bottom:439.745333pt;}
.y11{bottom:442.318667pt;}
.y1c2{bottom:445.390667pt;}
.ya4{bottom:445.710667pt;}
.y86{bottom:448.732000pt;}
.y156{bottom:448.844000pt;}
.y19f{bottom:452.409333pt;}
.y21c{bottom:453.028000pt;}
.y3b{bottom:455.685333pt;}
.y10{bottom:458.258667pt;}
.y234{bottom:459.005333pt;}
.y61{bottom:460.433333pt;}
.y1c1{bottom:464.652000pt;}
.ya3{bottom:464.972000pt;}
.y12d{bottom:466.064000pt;}
.y85{bottom:467.993333pt;}
.y155{bottom:468.636000pt;}
.y19e{bottom:471.670667pt;}
.y21b{bottom:472.289333pt;}
.yf{bottom:474.200000pt;}
.yd1{bottom:474.945333pt;}
.y3a{bottom:474.946667pt;}
.ybf{bottom:476.218667pt;}
.y60{bottom:479.694667pt;}
.y1c0{bottom:483.912000pt;}
.ya2{bottom:484.233333pt;}
.y12c{bottom:485.325333pt;}
.y84{bottom:487.254667pt;}
.y154{bottom:487.897333pt;}
.ye{bottom:490.140000pt;}
.y233{bottom:491.550667pt;}
.y39{bottom:494.206667pt;}
.ybe{bottom:495.480000pt;}
.y5f{bottom:498.956000pt;}
.y1bf{bottom:503.173333pt;}
.y12b{bottom:504.586667pt;}
.y21a{bottom:504.833333pt;}
.yd{bottom:506.080000pt;}
.y83{bottom:506.514667pt;}
.y19d{bottom:506.717333pt;}
.y153{bottom:507.158667pt;}
.y232{bottom:510.812000pt;}
.y38{bottom:513.468000pt;}
.ya1{bottom:513.789333pt;}
.ybd{bottom:514.741333pt;}
.y5e{bottom:518.217333pt;}
.yc{bottom:522.020000pt;}
.y1be{bottom:522.434667pt;}
.y219{bottom:524.094667pt;}
.y82{bottom:525.776000pt;}
.y152{bottom:526.950667pt;}
.y231{bottom:530.073333pt;}
.y11b{bottom:531.952000pt;}
.y37{bottom:532.729333pt;}
.ybc{bottom:534.002667pt;}
.y5d{bottom:537.478667pt;}
.yb{bottom:537.960000pt;}
.y1e7{bottom:540.038667pt;}
.y1bd{bottom:541.696000pt;}
.y151{bottom:546.212000pt;}
.y36{bottom:551.990667pt;}
.ybb{bottom:553.264000pt;}
.ya{bottom:553.900000pt;}
.y19c{bottom:555.002667pt;}
.y81{bottom:555.332000pt;}
.y218{bottom:556.640000pt;}
.y5c{bottom:556.738667pt;}
.y1e6{bottom:559.300000pt;}
.ya0{bottom:560.005333pt;}
.y1bc{bottom:560.957333pt;}
.y230{bottom:562.617333pt;}
.y150{bottom:565.473333pt;}
.y9{bottom:569.841333pt;}
.y35{bottom:571.252000pt;}
.yba{bottom:572.524000pt;}
.y19b{bottom:574.264000pt;}
.y217{bottom:575.901333pt;}
.y5b{bottom:576.000000pt;}
.y9f{bottom:579.265333pt;}
.y1bb{bottom:580.217333pt;}
.y22f{bottom:581.878667pt;}
.y14f{bottom:585.265333pt;}
.y1d2{bottom:586.705333pt;}
.yd0{bottom:590.512000pt;}
.y34{bottom:590.513333pt;}
.y8{bottom:591.658667pt;}
.yb9{bottom:591.785333pt;}
.y80{bottom:593.420000pt;}
.y216{bottom:595.161333pt;}
.y5a{bottom:595.261333pt;}
.y9e{bottom:598.526667pt;}
.y1ba{bottom:599.478667pt;}
.y22e{bottom:601.140000pt;}
.y188{bottom:601.350667pt;}
.y7f{bottom:601.376000pt;}
.y14e{bottom:604.526667pt;}
.y7e{bottom:604.858667pt;}
.y33{bottom:609.773333pt;}
.yb8{bottom:611.046667pt;}
.y215{bottom:614.422667pt;}
.y59{bottom:614.522667pt;}
.y9d{bottom:617.788000pt;}
.y1b9{bottom:618.740000pt;}
.y14d{bottom:623.788000pt;}
.y32{bottom:629.034667pt;}
.yb7{bottom:630.308000pt;}
.y214{bottom:633.684000pt;}
.y58{bottom:633.784000pt;}
.y9c{bottom:637.049333pt;}
.y1b8{bottom:638.001333pt;}
.y7d{bottom:643.040000pt;}
.y14c{bottom:643.580000pt;}
.y7c{bottom:646.522667pt;}
.y7{bottom:647.377333pt;}
.y31{bottom:648.296000pt;}
.y22d{bottom:652.945333pt;}
.y57{bottom:653.045333pt;}
.y9b{bottom:656.310667pt;}
.y1b7{bottom:657.262667pt;}
.yb6{bottom:659.864000pt;}
.y14b{bottom:662.841333pt;}
.y6{bottom:665.442667pt;}
.y213{bottom:666.229333pt;}
.y30{bottom:667.557333pt;}
.y7b{bottom:672.041333pt;}
.y56{bottom:672.305333pt;}
.y9a{bottom:675.572000pt;}
.y1b6{bottom:676.524000pt;}
.y14a{bottom:682.102667pt;}
.y79{bottom:682.974667pt;}
.y5{bottom:683.509333pt;}
.y212{bottom:685.489333pt;}
.y2f{bottom:686.818667pt;}
.y7a{bottom:690.276000pt;}
.y55{bottom:691.566667pt;}
.y99{bottom:694.832000pt;}
.y1b5{bottom:695.784000pt;}
.y22c{bottom:704.750667pt;}
.y2e{bottom:706.078667pt;}
.y98{bottom:714.093333pt;}
.y1b4{bottom:715.045333pt;}
.y211{bottom:718.034667pt;}
.y54{bottom:721.122667pt;}
.y2d{bottom:725.340000pt;}
.y149{bottom:726.517333pt;}
.y4{bottom:728.030667pt;}
.y78{bottom:728.398667pt;}
.y97{bottom:733.354667pt;}
.y1b3{bottom:734.306667pt;}
.y210{bottom:737.296000pt;}
.y2c{bottom:744.601333pt;}
.y148{bottom:745.777333pt;}
.y77{bottom:747.660000pt;}
.y96{bottom:752.616000pt;}
.y1b2{bottom:753.568000pt;}
.y20f{bottom:756.556000pt;}
.y3{bottom:761.704000pt;}
.y2b{bottom:763.862667pt;}
.y147{bottom:765.038667pt;}
.y76{bottom:766.921333pt;}
.y53{bottom:767.338667pt;}
.y22b{bottom:769.840000pt;}
.y1b1{bottom:772.829333pt;}
.y2a{bottom:783.124000pt;}
.y146{bottom:784.300000pt;}
.y75{bottom:786.182667pt;}
.y52{bottom:786.600000pt;}
.y95{bottom:787.662667pt;}
.y20e{bottom:789.101333pt;}
.y1b0{bottom:792.090667pt;}
.y29{bottom:802.385333pt;}
.y145{bottom:803.561333pt;}
.y74{bottom:805.442667pt;}
.y51{bottom:805.860000pt;}
.y20d{bottom:808.362667pt;}
.y2{bottom:809.026667pt;}
.y1af{bottom:811.350667pt;}
.y28{bottom:821.645333pt;}
.y144{bottom:822.822667pt;}
.y50{bottom:825.121333pt;}
.y20c{bottom:827.624000pt;}
.y73{bottom:827.980000pt;}
.y1ae{bottom:830.612000pt;}
.y1{bottom:838.250667pt;}
.y72{bottom:838.914667pt;}
.y27{bottom:840.906667pt;}
.y143{bottom:842.084000pt;}
.y4f{bottom:844.382667pt;}
.y1ad{bottom:849.873333pt;}
.y26{bottom:860.168000pt;}
.y142{bottom:861.344000pt;}
.y4e{bottom:863.644000pt;}
.y1ac{bottom:869.134667pt;}
.y25{bottom:879.429333pt;}
.y141{bottom:880.605333pt;}
.y24{bottom:898.690667pt;}
.y140{bottom:899.866667pt;}
.hf{height:29.925069pt;}
.h2a{height:31.616000pt;}
.h2e{height:33.592000pt;}
.h12{height:35.136000pt;}
.h17{height:35.183040pt;}
.h1b{height:35.568000pt;}
.h1c{height:36.000000pt;}
.h2b{height:38.400000pt;}
.h1e{height:39.124800pt;}
.h1f{height:39.600000pt;}
.h5{height:39.850400pt;}
.h4{height:40.610943pt;}
.h26{height:42.138240pt;}
.h19{height:42.792000pt;}
.h14{height:43.200000pt;}
.h3{height:43.636400pt;}
.h28{height:47.571840pt;}
.h16{height:47.573712pt;}
.h2f{height:47.600000pt;}
.h7{height:47.820800pt;}
.h13{height:49.190400pt;}
.h22{height:51.403288pt;}
.h21{height:51.408621pt;}
.h18{height:52.310400pt;}
.h8{height:53.559147pt;}
.h20{height:54.774720pt;}
.h15{height:55.136640pt;}
.h2{height:57.384800pt;}
.hd{height:61.751467pt;}
.h24{height:61.756800pt;}
.h27{height:63.171840pt;}
.h1{height:64.179011pt;}
.h6{height:64.270827pt;}
.h23{height:65.339288pt;}
.h9{height:90.951467pt;}
.hc{height:90.956800pt;}
.h10{height:91.559467pt;}
.he{height:102.010402pt;}
.hb{height:123.437355pt;}
.ha{height:134.690133pt;}
.h1d{height:172.920000pt;}
.h2c{height:300.160000pt;}
.h29{height:313.280000pt;}
.h2d{height:331.160000pt;}
.h1a{height:342.600000pt;}
.h25{height:352.440000pt;}
.h11{height:367.200000pt;}
.h0{height:1056.000000pt;}
.w3{width:259.200000pt;}
.w6{width:402.773333pt;}
.w5{width:452.400000pt;}
.w2{width:468.840000pt;}
.w1{width:484.440000pt;}
.w8{width:509.093333pt;}
.w4{width:533.280000pt;}
.w7{width:534.933333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:10.599840pt;}
.x51{left:12.649824pt;}
.x22{left:13.839840pt;}
.x6d{left:15.000000pt;}
.x3a{left:17.240160pt;}
.x49{left:19.100160pt;}
.x26{left:20.640000pt;}
.x50{left:22.110000pt;}
.x20{left:23.040000pt;}
.x6b{left:24.000000pt;}
.x37{left:26.340000pt;}
.x66{left:27.399840pt;}
.x25{left:29.739840pt;}
.x6c{left:30.999840pt;}
.x39{left:33.339840pt;}
.x68{left:34.400160pt;}
.x24{left:36.440160pt;}
.x48{left:39.099840pt;}
.x38{left:40.040160pt;}
.x67{left:44.400000pt;}
.x71{left:45.706667pt;}
.x21{left:48.339840pt;}
.x3d{left:53.540160pt;}
.x7d{left:55.570960pt;}
.x4f{left:59.509824pt;}
.x1f{left:62.640000pt;}
.x36{left:64.440000pt;}
.x77{left:67.822080pt;}
.x27{left:74.240160pt;}
.x3f{left:77.940000pt;}
.x53{left:82.939824pt;}
.x23{left:84.039840pt;}
.x3b{left:87.840000pt;}
.x52{left:90.420000pt;}
.x75{left:94.773333pt;}
.x7e{left:96.749029pt;}
.x4d{left:103.899840pt;}
.x72{left:131.395413pt;}
.x4a{left:133.800000pt;}
.x80{left:145.670733pt;}
.xb{left:147.805333pt;}
.x6e{left:148.899840pt;}
.x7c{left:158.278667pt;}
.x60{left:162.122667pt;}
.x78{left:164.000000pt;}
.x5f{left:164.892000pt;}
.x55{left:170.170440pt;}
.xd{left:171.217333pt;}
.x1{left:176.180000pt;}
.x35{left:178.134667pt;}
.x5e{left:180.788000pt;}
.x3c{left:184.739760pt;}
.xa{left:186.825333pt;}
.x73{left:191.217920pt;}
.x54{left:194.260704pt;}
.x69{left:198.900000pt;}
.x61{left:201.674667pt;}
.x2{left:206.366667pt;}
.x9{left:208.644000pt;}
.x70{left:211.198667pt;}
.x2b{left:215.640000pt;}
.x32{left:222.440400pt;}
.x79{left:223.822080pt;}
.x29{left:224.840400pt;}
.x5{left:227.806667pt;}
.x31{left:231.540000pt;}
.x30{left:238.239600pt;}
.x7f{left:239.454282pt;}
.x4c{left:243.000240pt;}
.x2d{left:246.639840pt;}
.x2a{left:250.140000pt;}
.x3e{left:251.739600pt;}
.xe{left:254.488000pt;}
.x56{left:257.179560pt;}
.x7{left:260.190667pt;}
.x28{left:264.440400pt;}
.x11{left:270.377333pt;}
.x34{left:276.039600pt;}
.x4e{left:280.089333pt;}
.x16{left:281.796000pt;}
.x47{left:282.773333pt;}
.x2c{left:285.840000pt;}
.x64{left:289.437333pt;}
.x63{left:298.996000pt;}
.x45{left:300.540000pt;}
.x41{left:303.840000pt;}
.x1b{left:306.938667pt;}
.x1c{left:309.384000pt;}
.x43{left:310.839600pt;}
.x5c{left:314.153333pt;}
.x6f{left:315.600000pt;}
.x42{left:317.540400pt;}
.x6{left:322.716000pt;}
.x74{left:324.995413pt;}
.x5d{left:326.589333pt;}
.x17{left:327.548000pt;}
.x65{left:328.990667pt;}
.x40{left:341.940000pt;}
.x3{left:345.910667pt;}
.x6a{left:353.000400pt;}
.x46{left:355.440000pt;}
.x1d{left:358.696000pt;}
.x58{left:362.340000pt;}
.x33{left:363.639600pt;}
.x44{left:365.240400pt;}
.x62{left:366.756000pt;}
.x4{left:369.826667pt;}
.x7a{left:372.444587pt;}
.x8{left:380.372000pt;}
.x2e{left:382.940640pt;}
.x57{left:392.040000pt;}
.x18{left:393.485333pt;}
.x19{left:404.130667pt;}
.xc{left:408.470667pt;}
.x5a{left:415.470000pt;}
.x59{left:423.060000pt;}
.x7b{left:432.177920pt;}
.x2f{left:442.040400pt;}
.x1a{left:443.682667pt;}
.xf{left:447.589333pt;}
.x13{left:455.165333pt;}
.x1e{left:460.878667pt;}
.x15{left:470.492000pt;}
.x12{left:476.412000pt;}
.x14{left:500.828000pt;}
.x5b{left:502.699560pt;}
.x76{left:526.488747pt;}
.x10{left:547.126667pt;}
}




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