
    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_63f77f32d726370fa6d73d65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;font-style:normal;font-weight: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_ed71cdfed7e2c55de6d66936.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight: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_6351b29683b2ceb02a298cb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight: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_64ef6782205379f4f73eea3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight: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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight: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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight: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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight: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_81bc100e600fbdb2ddc6cfed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight: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_b378f612b69705b027dc9f82.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight: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_b5bba6b856e426b0e004ed19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.550000;font-style:normal;font-weight: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_05358dfb8d3276739dac8070.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight: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_d3c619542bc55d017ff25765.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight: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_6f6e4f86a21e5bb95ca61c9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;font-style:normal;font-weight: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_627eb540d255bfd02e56db1e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;font-style:normal;font-weight: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_bddbe920fe99683962e3c625.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_905c178f71d16c3b757d8c1e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.723000;font-style:normal;font-weight: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_29908973c9b52ee097d1b78b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight: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_683de737770d4fa1c5fb98a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight: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_63acef1db98aab62964fab46.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003418;font-style:normal;font-weight: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_de36e0575d3f54ff2e2b9192.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight: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_82640f70300babc73a2b8695.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;font-style:normal;font-weight: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_c2df0e43bd43fbb10cd2a3fc.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.003418;font-style:normal;font-weight: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_de36e0575d3f54ff2e2b9192.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight: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_c42440a05a35fed194600f8f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;font-style:normal;font-weight: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_66e8067a14ea8db4a05938c1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.003418;font-style:normal;font-weight: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_de36e0575d3f54ff2e2b9192.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;font-style:normal;font-weight: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_950aa6262d1e7524f602fdfd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;font-style:normal;font-weight: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_1c54b3eda8b2630811a8eec3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.003418;font-style:normal;font-weight: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_5f65645caea665ec79fad82d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,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);}
.mf{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-32.616000px;}
.vd{vertical-align:-30.666000px;}
.v1{vertical-align:-27.600000px;}
.vc{vertical-align:-24.534000px;}
.v5{vertical-align:-3.241296px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.241296px;}
.vf{vertical-align:15.106824px;}
.v7{vertical-align:17.364000px;}
.vb{vertical-align:19.530000px;}
.va{vertical-align:24.030000px;}
.v8{vertical-align:32.874000px;}
.v6{vertical-align:40.464000px;}
.v3{vertical-align:50.042448px;}
.v9{vertical-align:51.630000px;}
.v4{vertical-align:53.283744px;}
.ls3d{letter-spacing:-0.294588px;}
.ls40{letter-spacing:-0.186372px;}
.ls60{letter-spacing:-0.167400px;}
.ls3e{letter-spacing:-0.162324px;}
.ls39{letter-spacing:-0.150300px;}
.ls56{letter-spacing:-0.145800px;}
.ls48{letter-spacing:-0.144288px;}
.ls77{letter-spacing:-0.138510px;}
.ls79{letter-spacing:-0.133380px;}
.ls43{letter-spacing:-0.132264px;}
.ls44{letter-spacing:-0.126252px;}
.ls63{letter-spacing:-0.118800px;}
.ls3b{letter-spacing:-0.096192px;}
.ls64{letter-spacing:-0.091800px;}
.ls78{letter-spacing:-0.066690px;}
.ls42{letter-spacing:-0.066132px;}
.ls62{letter-spacing:-0.064800px;}
.ls61{letter-spacing:-0.059400px;}
.ls84{letter-spacing:-0.054108px;}
.ls83{letter-spacing:-0.048096px;}
.ls38{letter-spacing:-0.042084px;}
.ls7b{letter-spacing:-0.041040px;}
.ls85{letter-spacing:-0.036072px;}
.ls36{letter-spacing:-0.032400px;}
.ls7a{letter-spacing:-0.030780px;}
.ls57{letter-spacing:-0.030060px;}
.ls5e{letter-spacing:-0.027000px;}
.ls46{letter-spacing:-0.024048px;}
.ls35{letter-spacing:-0.021600px;}
.ls47{letter-spacing:-0.018036px;}
.ls5f{letter-spacing:-0.016200px;}
.ls41{letter-spacing:-0.012024px;}
.ls55{letter-spacing:-0.010800px;}
.ls34{letter-spacing:-0.009576px;}
.ls76{letter-spacing:-0.009097px;}
.ls3c{letter-spacing:-0.006012px;}
.ls37{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls86{letter-spacing:0.000800px;}
.ls87{letter-spacing:0.001036px;}
.ls54{letter-spacing:0.001133px;}
.ls95{letter-spacing:0.001303px;}
.ls8f{letter-spacing:0.001502px;}
.ls90{letter-spacing:0.001544px;}
.ls8e{letter-spacing:0.001651px;}
.ls94{letter-spacing:0.002090px;}
.ls1{letter-spacing:0.002725px;}
.ls9{letter-spacing:0.002999px;}
.ls8d{letter-spacing:0.003021px;}
.ls91{letter-spacing:0.003070px;}
.ls0{letter-spacing:0.004200px;}
.ls6d{letter-spacing:0.005130px;}
.ls21{letter-spacing:0.006012px;}
.lsc{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.012024px;}
.ls4b{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.018036px;}
.ls17{letter-spacing:0.019764px;}
.ls4d{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.024048px;}
.ls4c{letter-spacing:0.027000px;}
.lse{letter-spacing:0.030060px;}
.ls75{letter-spacing:0.030780px;}
.ls50{letter-spacing:0.032400px;}
.ls20{letter-spacing:0.036072px;}
.ls7e{letter-spacing:0.037800px;}
.ls72{letter-spacing:0.041040px;}
.lsd{letter-spacing:0.042084px;}
.ls4f{letter-spacing:0.043200px;}
.ls71{letter-spacing:0.046170px;}
.ls11{letter-spacing:0.048096px;}
.ls7d{letter-spacing:0.048600px;}
.ls12{letter-spacing:0.054108px;}
.ls7f{letter-spacing:0.059400px;}
.lsf{letter-spacing:0.060120px;}
.ls74{letter-spacing:0.061560px;}
.ls82{letter-spacing:0.066132px;}
.ls73{letter-spacing:0.066690px;}
.ls52{letter-spacing:0.072144px;}
.ls14{letter-spacing:0.078156px;}
.ls3f{letter-spacing:0.084168px;}
.ls70{letter-spacing:0.092340px;}
.ls53{letter-spacing:0.096192px;}
.ls81{letter-spacing:0.102204px;}
.ls6f{letter-spacing:0.117990px;}
.ls5a{letter-spacing:0.124200px;}
.ls1f{letter-spacing:0.138276px;}
.ls6e{letter-spacing:0.138510px;}
.ls4e{letter-spacing:0.140400px;}
.ls5b{letter-spacing:0.145800px;}
.ls80{letter-spacing:0.156204px;}
.ls51{letter-spacing:0.156600px;}
.ls6c{letter-spacing:0.163750px;}
.lsb{letter-spacing:0.167580px;}
.ls7c{letter-spacing:0.172368px;}
.ls6b{letter-spacing:0.172847px;}
.ls4a{letter-spacing:0.177156px;}
.lsa{letter-spacing:0.181944px;}
.ls49{letter-spacing:0.191520px;}
.ls18{letter-spacing:1.152900px;}
.ls8{letter-spacing:1.275394px;}
.ls29{letter-spacing:1.414741px;}
.ls24{letter-spacing:1.420741px;}
.ls2d{letter-spacing:1.491762px;}
.ls23{letter-spacing:1.493675px;}
.ls25{letter-spacing:1.497762px;}
.ls2{letter-spacing:1.861130px;}
.ls16{letter-spacing:1.956636px;}
.ls2f{letter-spacing:2.088583px;}
.ls28{letter-spacing:2.094017px;}
.ls2c{letter-spacing:2.094583px;}
.ls1d{letter-spacing:2.575908px;}
.ls69{letter-spacing:2.983200px;}
.ls5{letter-spacing:2.988600px;}
.ls68{letter-spacing:2.989200px;}
.ls6a{letter-spacing:2.990774px;}
.ls65{letter-spacing:2.994600px;}
.ls1b{letter-spacing:3.135888px;}
.ls58{letter-spacing:3.442200px;}
.ls67{letter-spacing:3.507900px;}
.ls2e{letter-spacing:4.243834px;}
.ls3a{letter-spacing:6.571116px;}
.ls3{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls2a{letter-spacing:13.042741px;}
.ls93{letter-spacing:13.268501px;}
.ls8b{letter-spacing:13.448400px;}
.ls8c{letter-spacing:13.454400px;}
.ls8a{letter-spacing:13.457493px;}
.ls92{letter-spacing:13.499349px;}
.ls96{letter-spacing:13.611129px;}
.ls31{letter-spacing:13.939976px;}
.ls2b{letter-spacing:14.283483px;}
.ls89{letter-spacing:14.650400px;}
.ls1c{letter-spacing:14.776884px;}
.ls33{letter-spacing:14.822599px;}
.ls45{letter-spacing:14.862528px;}
.ls5d{letter-spacing:15.123227px;}
.ls32{letter-spacing:16.135099px;}
.ls59{letter-spacing:16.498066px;}
.ls88{letter-spacing:17.697459px;}
.ls26{letter-spacing:18.022741px;}
.ls19{letter-spacing:18.380520px;}
.ls4{letter-spacing:28.453654px;}
.ls1a{letter-spacing:28.545804px;}
.ls27{letter-spacing:32.655483px;}
.ls66{letter-spacing:131.817797px;}
.ls1e{letter-spacing:756.087156px;}
.ls30{letter-spacing:819.532741px;}
.ls5c{letter-spacing:848.970000px;}
.ls22{letter-spacing:848.972556px;}
.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;}
}
.ws0{word-spacing:-102.481160px;}
.ws5f{word-spacing:-80.742528px;}
.ws60{word-spacing:-15.168276px;}
.ws61{word-spacing:-15.030000px;}
.wse7{word-spacing:-13.500000px;}
.ws9b{word-spacing:-13.449600px;}
.ws108{word-spacing:-12.825000px;}
.ws96{word-spacing:-12.161520px;}
.ws5d{word-spacing:-12.151944px;}
.ws5e{word-spacing:-11.970000px;}
.ws5c{word-spacing:-11.960424px;}
.ws2f{word-spacing:-11.955150px;}
.ws106{word-spacing:-11.544347px;}
.ws107{word-spacing:-11.371500px;}
.ws105{word-spacing:-11.362403px;}
.ws6{word-spacing:-10.460700px;}
.ws11d{word-spacing:-9.000000px;}
.ws7d{word-spacing:-3.559104px;}
.ws7a{word-spacing:-3.234456px;}
.ws7e{word-spacing:-3.204396px;}
.ws7c{word-spacing:-3.162312px;}
.wsd2{word-spacing:-2.988780px;}
.ws97{word-spacing:-2.958912px;}
.wsb4{word-spacing:-2.855700px;}
.wsc7{word-spacing:-2.837664px;}
.ws87{word-spacing:-2.819628px;}
.wsc8{word-spacing:-2.813616px;}
.wsa7{word-spacing:-2.771532px;}
.wsa8{word-spacing:-2.759508px;}
.ws98{word-spacing:-2.743718px;}
.wsa3{word-spacing:-2.721600px;}
.wsc6{word-spacing:-2.500992px;}
.wsc5{word-spacing:-2.470932px;}
.ws82{word-spacing:-2.452896px;}
.ws86{word-spacing:-2.416824px;}
.wsdf{word-spacing:-2.331248px;}
.ws131{word-spacing:-2.278548px;}
.wsa4{word-spacing:-2.187000px;}
.ws8b{word-spacing:-2.122236px;}
.wsa9{word-spacing:-2.110212px;}
.ws130{word-spacing:-2.080152px;}
.ws83{word-spacing:-2.068128px;}
.ws13b{word-spacing:-2.038068px;}
.wsee{word-spacing:-1.992600px;}
.wsef{word-spacing:-1.922400px;}
.wsf0{word-spacing:-1.917000px;}
.ws57{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.wsf2{word-spacing:-1.890000px;}
.wsf1{word-spacing:-1.863000px;}
.ws28{word-spacing:-1.793268px;}
.ws4c{word-spacing:-1.673717px;}
.ws9f{word-spacing:-1.636200px;}
.ws9d{word-spacing:-1.630800px;}
.ws9e{word-spacing:-1.625400px;}
.wsa0{word-spacing:-1.603800px;}
.ws69{word-spacing:-1.554166px;}
.ws3a{word-spacing:-1.494390px;}
.wse5{word-spacing:-1.434614px;}
.ws7b{word-spacing:-1.412820px;}
.wsb3{word-spacing:-1.382760px;}
.ws3f{word-spacing:-1.374839px;}
.ws92{word-spacing:-1.358712px;}
.ws16f{word-spacing:-1.344960px;}
.ws2{word-spacing:-1.322630px;}
.ws55{word-spacing:-1.315063px;}
.ws4b{word-spacing:-1.255288px;}
.ws151{word-spacing:-1.237363px;}
.ws91{word-spacing:-1.208412px;}
.ws67{word-spacing:-1.135736px;}
.wscf{word-spacing:-1.075961px;}
.ws127{word-spacing:-1.022040px;}
.ws64{word-spacing:-1.021269px;}
.ws42{word-spacing:-1.016185px;}
.ws145{word-spacing:-1.016028px;}
.ws146{word-spacing:-0.961920px;}
.ws94{word-spacing:-0.956410px;}
.ws6e{word-spacing:-0.896400px;}
.ws6c{word-spacing:-0.880200px;}
.ws6d{word-spacing:-0.869400px;}
.wsd0{word-spacing:-0.836858px;}
.ws112{word-spacing:-0.825930px;}
.wsbe{word-spacing:-0.799596px;}
.ws3e{word-spacing:-0.717307px;}
.wsad{word-spacing:-0.697392px;}
.wsae{word-spacing:-0.685368px;}
.ws72{word-spacing:-0.673344px;}
.ws111{word-spacing:-0.605340px;}
.ws66{word-spacing:-0.597756px;}
.wsac{word-spacing:-0.595188px;}
.wsa1{word-spacing:-0.577800px;}
.wsa2{word-spacing:-0.567000px;}
.ws114{word-spacing:-0.559170px;}
.ws10c{word-spacing:-0.518130px;}
.ws10f{word-spacing:-0.513000px;}
.ws4f{word-spacing:-0.478205px;}
.ws113{word-spacing:-0.471960px;}
.ws10e{word-spacing:-0.446310px;}
.ws110{word-spacing:-0.379620px;}
.ws10d{word-spacing:-0.374490px;}
.ws37{word-spacing:-0.358654px;}
.ws171{word-spacing:-0.322790px;}
.ws85{word-spacing:-0.318636px;}
.ws149{word-spacing:-0.300600px;}
.ws4d{word-spacing:-0.298878px;}
.ws9c{word-spacing:-0.277704px;}
.ws6a{word-spacing:-0.272916px;}
.ws15a{word-spacing:-0.268992px;}
.ws10a{word-spacing:-0.259270px;}
.ws26{word-spacing:-0.239102px;}
.wse8{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.ws1d{word-spacing:-0.161395px;}
.ws25{word-spacing:-0.119551px;}
.wsf4{word-spacing:-0.107597px;}
.wsdc{word-spacing:-0.095641px;}
.ws23{word-spacing:-0.059776px;}
.ws109{word-spacing:-0.053798px;}
.ws13{word-spacing:-0.047821px;}
.ws16d{word-spacing:-0.030086px;}
.ws166{word-spacing:-0.028886px;}
.ws15d{word-spacing:-0.006221px;}
.ws15e{word-spacing:-0.005539px;}
.ws15f{word-spacing:-0.005002px;}
.ws16e{word-spacing:-0.004896px;}
.ws160{word-spacing:-0.004282px;}
.ws2e{word-spacing:-0.003039px;}
.ws5{word-spacing:-0.002382px;}
.ws165{word-spacing:-0.001686px;}
.ws1{word-spacing:0.000000px;}
.wsa6{word-spacing:0.012024px;}
.ws93{word-spacing:0.036072px;}
.wsc2{word-spacing:0.042084px;}
.wsfb{word-spacing:0.047821px;}
.ws17{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws80{word-spacing:0.072144px;}
.ws116{word-spacing:0.102600px;}
.ws14{word-spacing:0.107597px;}
.ws118{word-spacing:0.107730px;}
.ws124{word-spacing:0.118800px;}
.ws40{word-spacing:0.119551px;}
.ws11a{word-spacing:0.123120px;}
.ws14a{word-spacing:0.138276px;}
.ws119{word-spacing:0.138510px;}
.ws12{word-spacing:0.143462px;}
.ws13e{word-spacing:0.144288px;}
.ws1e{word-spacing:0.161395px;}
.ws6f{word-spacing:0.167400px;}
.ws117{word-spacing:0.169290px;}
.wsa5{word-spacing:0.172800px;}
.ws53{word-spacing:0.179327px;}
.wsf3{word-spacing:0.189000px;}
.ws8{word-spacing:0.209214px;}
.ws9a{word-spacing:0.215194px;}
.ws8c{word-spacing:0.216432px;}
.ws39{word-spacing:0.239102px;}
.ws164{word-spacing:0.267101px;}
.ws11e{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws27{word-spacing:0.298878px;}
.ws152{word-spacing:0.322790px;}
.ws13a{word-spacing:0.348696px;}
.ws3d{word-spacing:0.358654px;}
.ws1f{word-spacing:0.376589px;}
.ws76{word-spacing:0.384768px;}
.ws8d{word-spacing:0.390780px;}
.wsbc{word-spacing:0.396792px;}
.ws134{word-spacing:0.408816px;}
.ws41{word-spacing:0.418429px;}
.wsc3{word-spacing:0.426852px;}
.wsbd{word-spacing:0.468936px;}
.wse3{word-spacing:0.478205px;}
.ws88{word-spacing:0.517032px;}
.ws7f{word-spacing:0.637272px;}
.ws15{word-spacing:0.645581px;}
.wse1{word-spacing:0.657532px;}
.ws56{word-spacing:0.717307px;}
.ws142{word-spacing:0.769536px;}
.ws100{word-spacing:0.836858px;}
.ws20{word-spacing:0.860774px;}
.wsec{word-spacing:0.869400px;}
.wsea{word-spacing:0.880200px;}
.ws2a{word-spacing:0.896634px;}
.ws120{word-spacing:0.907200px;}
.ws156{word-spacing:0.914573px;}
.wseb{word-spacing:0.918000px;}
.wse9{word-spacing:0.923400px;}
.ws89{word-spacing:0.943884px;}
.ws68{word-spacing:0.956410px;}
.ws8a{word-spacing:0.961920px;}
.ws58{word-spacing:1.016185px;}
.ws16b{word-spacing:1.022170px;}
.wsed{word-spacing:1.069200px;}
.wse0{word-spacing:1.075961px;}
.ws12e{word-spacing:1.112220px;}
.ws13f{word-spacing:1.124244px;}
.ws4a{word-spacing:1.135736px;}
.ws12f{word-spacing:1.142280px;}
.ws12d{word-spacing:1.154304px;}
.ws157{word-spacing:1.183565px;}
.wsd9{word-spacing:1.255288px;}
.wsd8{word-spacing:1.315063px;}
.ws11b{word-spacing:1.374839px;}
.ws16a{word-spacing:1.398758px;}
.ws33{word-spacing:1.434614px;}
.ws65{word-spacing:1.494390px;}
.wsc1{word-spacing:1.527048px;}
.wsd1{word-spacing:1.554166px;}
.ws48{word-spacing:1.613941px;}
.ws18{word-spacing:1.775347px;}
.wsbf{word-spacing:1.815624px;}
.wsb5{word-spacing:1.821636px;}
.ws43{word-spacing:1.853044px;}
.wsaa{word-spacing:1.875744px;}
.ws133{word-spacing:1.911816px;}
.ws2d{word-spacing:1.912819px;}
.wsab{word-spacing:1.917828px;}
.ws147{word-spacing:1.923840px;}
.ws54{word-spacing:1.972595px;}
.ws9{word-spacing:2.008454px;}
.ws59{word-spacing:2.032370px;}
.ws16{word-spacing:2.044339px;}
.wse2{word-spacing:2.092146px;}
.ws148{word-spacing:2.164320px;}
.wsb8{word-spacing:2.176344px;}
.ws144{word-spacing:2.182356px;}
.ws84{word-spacing:2.194380px;}
.ws47{word-spacing:2.211697px;}
.ws140{word-spacing:2.212416px;}
.wsc0{word-spacing:2.230452px;}
.ws49{word-spacing:2.331248px;}
.ws63{word-spacing:2.367130px;}
.ws30{word-spacing:2.391024px;}
.ws143{word-spacing:2.392776px;}
.wsfd{word-spacing:2.510575px;}
.ws21{word-spacing:2.528525px;}
.wscc{word-spacing:2.531052px;}
.wscd{word-spacing:2.597184px;}
.ws34{word-spacing:2.689902px;}
.ws62{word-spacing:2.689920px;}
.wsff{word-spacing:2.749678px;}
.ws14c{word-spacing:2.809453px;}
.wsaf{word-spacing:2.945880px;}
.ws14f{word-spacing:2.958912px;}
.wsfc{word-spacing:2.964877px;}
.ws51{word-spacing:2.988780px;}
.ws16c{word-spacing:3.012710px;}
.ws167{word-spacing:3.066509px;}
.wsd7{word-spacing:3.108331px;}
.ws36{word-spacing:3.168107px;}
.ws115{word-spacing:3.206250px;}
.ws169{word-spacing:3.218170px;}
.ws158{word-spacing:3.222710px;}
.ws153{word-spacing:3.224822px;}
.ws163{word-spacing:3.225274px;}
.ws161{word-spacing:3.225792px;}
.ws159{word-spacing:3.226704px;}
.ws15c{word-spacing:3.227251px;}
.ws35{word-spacing:3.227882px;}
.ws15b{word-spacing:3.227904px;}
.ws162{word-spacing:3.228000px;}
.wsc4{word-spacing:3.240468px;}
.wsb0{word-spacing:3.252492px;}
.ws170{word-spacing:3.281702px;}
.ws45{word-spacing:3.287658px;}
.ws12c{word-spacing:3.294576px;}
.ws79{word-spacing:3.300588px;}
.ws136{word-spacing:3.330648px;}
.ws155{word-spacing:3.335501px;}
.ws46{word-spacing:3.347434px;}
.wsb6{word-spacing:3.348684px;}
.ws70{word-spacing:3.372732px;}
.ws102{word-spacing:3.407209px;}
.ws99{word-spacing:3.443098px;}
.ws31{word-spacing:3.466985px;}
.ws71{word-spacing:3.480948px;}
.wsfe{word-spacing:3.526760px;}
.ws1b{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.ws19{word-spacing:3.604493px;}
.ws135{word-spacing:3.643272px;}
.ws90{word-spacing:3.655296px;}
.ws132{word-spacing:3.667320px;}
.wscb{word-spacing:3.691368px;}
.ws4e{word-spacing:3.706087px;}
.ws50{word-spacing:3.765863px;}
.wse4{word-spacing:3.825638px;}
.ws95{word-spacing:3.885414px;}
.ws14d{word-spacing:3.945190px;}
.ws8e{word-spacing:3.967920px;}
.ws125{word-spacing:4.040064px;}
.ws126{word-spacing:4.052088px;}
.ws3c{word-spacing:4.064741px;}
.ws8f{word-spacing:4.070124px;}
.ws5b{word-spacing:4.124516px;}
.ws73{word-spacing:4.148280px;}
.ws2b{word-spacing:4.184292px;}
.ws14b{word-spacing:4.244068px;}
.ws52{word-spacing:4.363619px;}
.wsd3{word-spacing:4.423394px;}
.ws3b{word-spacing:4.542946px;}
.ws104{word-spacing:4.662497px;}
.wsb2{word-spacing:4.707396px;}
.wsd6{word-spacing:4.782048px;}
.ws121{word-spacing:4.811400px;}
.ws101{word-spacing:4.901599px;}
.ws103{word-spacing:4.961375px;}
.wse6{word-spacing:5.021150px;}
.ws139{word-spacing:5.128236px;}
.wsb1{word-spacing:5.146272px;}
.ws138{word-spacing:5.176332px;}
.wsce{word-spacing:5.320028px;}
.ws11c{word-spacing:5.379804px;}
.ws44{word-spacing:5.439580px;}
.ws168{word-spacing:5.487437px;}
.ws75{word-spacing:5.494968px;}
.ws1a{word-spacing:5.595034px;}
.ws5a{word-spacing:5.678682px;}
.ws74{word-spacing:5.807592px;}
.ws29{word-spacing:5.858009px;}
.ws122{word-spacing:5.902200px;}
.ws123{word-spacing:5.945400px;}
.ws10{word-spacing:6.067206px;}
.ws150{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.ws13d{word-spacing:6.156288px;}
.wsba{word-spacing:6.204384px;}
.ws129{word-spacing:6.222420px;}
.ws13c{word-spacing:6.228432px;}
.ws128{word-spacing:6.234444px;}
.ws38{word-spacing:6.395989px;}
.wsc9{word-spacing:6.535044px;}
.wsbb{word-spacing:6.565104px;}
.wsca{word-spacing:6.583140px;}
.wsb9{word-spacing:6.595164px;}
.ws154{word-spacing:6.724800px;}
.ws137{word-spacing:6.907788px;}
.wsd5{word-spacing:6.993745px;}
.ws78{word-spacing:7.028028px;}
.wsd4{word-spacing:7.053521px;}
.ws77{word-spacing:7.094160px;}
.ws1c{word-spacing:7.208986px;}
.ws14e{word-spacing:7.585574px;}
.ws12b{word-spacing:8.356680px;}
.ws12a{word-spacing:8.368704px;}
.wse{word-spacing:8.661460px;}
.ws81{word-spacing:9.011988px;}
.wsb7{word-spacing:9.793548px;}
.ws141{word-spacing:10.869696px;}
.ws10b{word-spacing:11.034904px;}
.ws11f{word-spacing:11.615688px;}
.ws6b{word-spacing:11.620476px;}
.ws32{word-spacing:14.585246px;}
.ws7{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.wsf{word-spacing:27.448877px;}
.wsda{word-spacing:93.393632px;}
.wsdb{word-spacing:94.732609px;}
.wsdd{word-spacing:106.687759px;}
.wsf9{word-spacing:123.198336px;}
.wsf7{word-spacing:125.356310px;}
.wsf8{word-spacing:127.810500px;}
.wsfa{word-spacing:169.464960px;}
.wsf6{word-spacing:217.927978px;}
.wsde{word-spacing:236.281585px;}
.wsf5{word-spacing:473.017488px;}
._1c{margin-left:-14.842764px;}
._1b{margin-left:-12.958596px;}
._17{margin-left:-7.495849px;}
._0{margin-left:-5.917824px;}
._9{margin-left:-4.399495px;}
._7{margin-left:-2.677954px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._5{width:2.301354px;}
._1d{width:3.679344px;}
._38{width:11.348224px;}
._4{width:12.562076px;}
._8{width:13.963615px;}
._16{width:15.326521px;}
._b{width:16.504142px;}
._c{width:18.135972px;}
._13{width:19.255310px;}
._e{width:20.263928px;}
._14{width:21.945212px;}
._a{width:23.025715px;}
._f{width:24.747098px;}
._15{width:25.942610px;}
._12{width:28.572737px;}
._19{width:30.425780px;}
._18{width:31.561517px;}
._6{width:32.637384px;}
._1f{width:35.028502px;}
._d{width:36.642443px;}
._20{width:40.169203px;}
._1{width:54.419467px;}
._57{width:61.868160px;}
._27{width:91.767731px;}
._41{width:104.368896px;}
._26{width:107.452888px;}
._45{width:117.048424px;}
._36{width:118.642909px;}
._2d{width:124.572663px;}
._42{width:128.168131px;}
._4c{width:130.498024px;}
._3a{width:133.610756px;}
._25{width:135.619222px;}
._35{width:141.740258px;}
._4f{width:143.839485px;}
._40{width:146.869632px;}
._28{width:147.909116px;}
._43{width:149.238528px;}
._4a{width:153.217843px;}
._2c{width:159.529522px;}
._48{width:161.341402px;}
._30{width:171.484672px;}
._39{width:173.827881px;}
._2a{width:177.414426px;}
._37{width:181.622639px;}
._34{width:183.439822px;}
._3e{width:186.034867px;}
._2e{width:189.417397px;}
._29{width:190.526840px;}
._3f{width:195.557184px;}
._31{width:202.281138px;}
._49{width:204.541517px;}
._46{width:207.392832px;}
._4b{width:211.846133px;}
._4d{width:220.842432px;}
._2b{width:224.326435px;}
._50{width:234.292032px;}
._2f{width:236.233764px;}
._33{width:248.188914px;}
._53{width:258.286118px;}
._47{width:259.738675px;}
._51{width:267.431846px;}
._3d{width:272.488896px;}
._52{width:311.331341px;}
._44{width:321.030331px;}
._3c{width:347.322470px;}
._24{width:361.236812px;}
._32{width:434.593613px;}
._4e{width:466.216934px;}
._10{width:699.667399px;}
._23{width:719.604389px;}
._22{width:1013.127232px;}
._55{width:2311.785013px;}
._56{width:2433.457908px;}
._1a{width:2457.215964px;}
._1e{width:2458.259748px;}
._54{width:2473.709929px;}
._11{width:2497.619929px;}
._3b{width:3953.393929px;}
._21{width:3977.303929px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(12,11,11);}
.fc0{color:rgb(52,74,39);}
.fs12{font-size:35.865600px;}
.fse{font-size:36.000000px;}
.fs10{font-size:37.371600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs11{font-size:43.600200px;}
.fsf{font-size:45.429600px;}
.fs13{font-size:45.486000px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs15{font-size:51.300000px;}
.fs7{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs14{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fsd{font-size:65.880000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:131.723856px;}
.y201{bottom:-764.821050px;}
.ybb{bottom:-736.021050px;}
.y10c{bottom:-718.348050px;}
.y222{bottom:-651.232530px;}
.y132{bottom:-647.698050px;}
.y130{bottom:-647.696196px;}
.y131{bottom:-643.918050px;}
.ydc{bottom:-632.701194px;}
.y221{bottom:-629.091837px;}
.y12f{bottom:-628.526934px;}
.ydb{bottom:-610.560501px;}
.y220{bottom:-609.832395px;}
.y12e{bottom:-609.267492px;}
.yda{bottom:-591.301059px;}
.y21f{bottom:-590.572953px;}
.y12d{bottom:-590.008050px;}
.y12b{bottom:-589.993605px;}
.y12c{bottom:-586.228050px;}
.yd9{bottom:-572.131797px;}
.y21e{bottom:-571.403691px;}
.y12a{bottom:-570.824343px;}
.y21d{bottom:-552.144249px;}
.y129{bottom:-551.564901px;}
.yd8{bottom:-544.500537px;}
.yd6{bottom:-533.431050px;}
.y21c{bottom:-532.884807px;}
.y128{bottom:-532.395639px;}
.yd7{bottom:-520.110114px;}
.y21b{bottom:-513.715545px;}
.y127{bottom:-513.136197px;}
.y21a{bottom:-494.456103px;}
.y126{bottom:-493.876755px;}
.yd5{bottom:-492.917154px;}
.y219{bottom:-475.286841px;}
.y125{bottom:-474.707493px;}
.yd4{bottom:-473.657712px;}
.y218{bottom:-456.027399px;}
.y124{bottom:-455.448051px;}
.yd3{bottom:-454.488450px;}
.y217{bottom:-436.767957px;}
.y123{bottom:-436.278789px;}
.yd2{bottom:-435.229008px;}
.y216{bottom:-417.598695px;}
.y122{bottom:-417.019347px;}
.yd1{bottom:-416.059746px;}
.y215{bottom:-398.339253px;}
.y121{bottom:-397.759905px;}
.yd0{bottom:-396.800304px;}
.y214{bottom:-379.169991px;}
.y120{bottom:-378.590643px;}
.ycf{bottom:-377.540862px;}
.y213{bottom:-359.910549px;}
.y11f{bottom:-359.331201px;}
.yce{bottom:-358.371600px;}
.y212{bottom:-340.651107px;}
.y11e{bottom:-340.071759px;}
.ycd{bottom:-339.112158px;}
.y211{bottom:-321.480342px;}
.y11d{bottom:-320.902497px;}
.ycc{bottom:-319.942896px;}
.y210{bottom:-302.217756px;}
.y11c{bottom:-301.643055px;}
.ycb{bottom:-300.683454px;}
.y20f{bottom:-283.048494px;}
.y11b{bottom:-282.473793px;}
.yca{bottom:-281.424012px;}
.y19e{bottom:-271.294050px;}
.y20e{bottom:-263.789052px;}
.y11a{bottom:-263.214351px;}
.yc9{bottom:-262.254750px;}
.y1f0{bottom:-247.158698px;}
.y20d{bottom:-244.529610px;}
.y119{bottom:-243.954909px;}
.yc8{bottom:-242.995308px;}
.y20c{bottom:-225.360348px;}
.y118{bottom:-224.785647px;}
.yc7{bottom:-223.826046px;}
.y20b{bottom:-206.100906px;}
.y117{bottom:-205.526205px;}
.yc6{bottom:-204.566604px;}
.y20a{bottom:-186.841464px;}
.y116{bottom:-186.355440px;}
.yc5{bottom:-185.307162px;}
.y209{bottom:-167.670699px;}
.y115{bottom:-167.095998px;}
.yc4{bottom:-166.137900px;}
.y208{bottom:-148.411257px;}
.y114{bottom:-147.836556px;}
.yc3{bottom:-146.878458px;}
.y207{bottom:-129.240492px;}
.y113{bottom:-128.667294px;}
.yc2{bottom:-127.619016px;}
.y206{bottom:-109.981050px;}
.yc1{bottom:-108.449754px;}
.y112{bottom:-104.998050px;}
.y1a2{bottom:-89.674050px;}
.yc0{bottom:-89.190312px;}
.y1f6{bottom:-81.973553px;}
.y205{bottom:-73.171950px;}
.ybf{bottom:-70.021050px;}
.y111{bottom:-68.098500px;}
.y1f5{bottom:-65.471625px;}
.y204{bottom:-55.801500px;}
.y110{bottom:-50.728050px;}
.y1a1{bottom:-50.614950px;}
.y1f4{bottom:-49.055625px;}
.y203{bottom:-38.521500px;}
.y10f{bottom:-33.448050px;}
.y1a0{bottom:-33.244500px;}
.ybe{bottom:-33.211500px;}
.y1f3{bottom:-32.639625px;}
.y202{bottom:-21.151050px;}
.y10e{bottom:-16.168050px;}
.y1f2{bottom:-16.137698px;}
.y19f{bottom:-15.874050px;}
.ybd{bottom:-15.841050px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y1f1{bottom:5.066721px;}
.y10d{bottom:6.242238px;}
.ybc{bottom:6.569166px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.849635px;}
.y4a{bottom:31.890000px;}
.yf4{bottom:88.993500px;}
.yf3{bottom:94.419000px;}
.y20{bottom:102.823500px;}
.y27c{bottom:103.557000px;}
.y1fb{bottom:104.022000px;}
.yb7{bottom:104.454000px;}
.yf2{bottom:107.823000px;}
.y81{bottom:109.366500px;}
.y243{bottom:112.702500px;}
.y49{bottom:113.266500px;}
.y1ab{bottom:116.704500px;}
.y1f{bottom:120.711000px;}
.y27b{bottom:120.817500px;}
.y1ec{bottom:121.323000px;}
.y1fa{bottom:123.255000px;}
.yb6{bottom:123.283500px;}
.yf1{bottom:126.652500px;}
.y136{bottom:127.312500px;}
.y80{bottom:128.196000px;}
.y242{bottom:129.963000px;}
.y48{bottom:132.096000px;}
.y1aa{bottom:135.534000px;}
.y27a{bottom:138.078000px;}
.y1e{bottom:138.600000px;}
.y1ea{bottom:140.152500px;}
.yb5{bottom:142.113000px;}
.y1f9{bottom:142.488000px;}
.yef{bottom:145.482000px;}
.y1eb{bottom:145.576500px;}
.y135{bottom:146.544000px;}
.y7f{bottom:147.025500px;}
.y241{bottom:147.223500px;}
.yf0{bottom:150.906000px;}
.y47{bottom:150.925500px;}
.y1a9{bottom:154.363500px;}
.y279{bottom:155.338500px;}
.y1d{bottom:156.487500px;}
.y1e9{bottom:158.980500px;}
.yb4{bottom:160.942500px;}
.y1f8{bottom:161.721000px;}
.yee{bottom:164.311500px;}
.y240{bottom:164.484000px;}
.y134{bottom:165.777000px;}
.y7e{bottom:165.855000px;}
.y46{bottom:169.755000px;}
.y278{bottom:172.599000px;}
.y1a8{bottom:173.193000px;}
.y1c{bottom:174.375000px;}
.y1e7{bottom:177.810000px;}
.yb3{bottom:179.772000px;}
.y1f7{bottom:180.952500px;}
.y23f{bottom:181.744500px;}
.yed{bottom:183.141000px;}
.y1e8{bottom:183.235500px;}
.y7d{bottom:184.684500px;}
.y133{bottom:185.010000px;}
.y22a{bottom:188.565000px;}
.y45{bottom:188.584500px;}
.y277{bottom:189.858000px;}
.y1a7{bottom:192.022500px;}
.y1b{bottom:192.264000px;}
.y1e5{bottom:196.639500px;}
.yb2{bottom:198.601500px;}
.y23e{bottom:199.005000px;}
.yec{bottom:201.970500px;}
.y1e6{bottom:202.065000px;}
.y1ed{bottom:203.382000px;}
.y7c{bottom:203.514000px;}
.y276{bottom:207.118500px;}
.y44{bottom:207.414000px;}
.y109{bottom:207.439500px;}
.y1a{bottom:210.151500px;}
.y1a6{bottom:215.335500px;}
.y1e4{bottom:215.469000px;}
.y23d{bottom:216.265500px;}
.yb1{bottom:217.431000px;}
.yeb{bottom:220.800000px;}
.y7b{bottom:222.343500px;}
.y275{bottom:224.379000px;}
.y43{bottom:226.243500px;}
.y19{bottom:228.039000px;}
.y23c{bottom:233.526000px;}
.y1e3{bottom:234.298500px;}
.yb0{bottom:236.260500px;}
.yea{bottom:239.629500px;}
.y7a{bottom:241.173000px;}
.y274{bottom:241.639500px;}
.y42{bottom:245.073000px;}
.y1a5{bottom:245.761500px;}
.y23b{bottom:250.786500px;}
.y1e2{bottom:253.128000px;}
.yaf{bottom:255.090000px;}
.ye9{bottom:258.459000px;}
.y273{bottom:258.900000px;}
.y79{bottom:260.002500px;}
.y41{bottom:263.902500px;}
.y1a4{bottom:264.994500px;}
.y23a{bottom:268.045500px;}
.y1e1{bottom:271.957500px;}
.yad{bottom:273.919500px;}
.y272{bottom:276.160500px;}
.ye8{bottom:277.288500px;}
.y78{bottom:278.832000px;}
.yae{bottom:279.343500px;}
.y40{bottom:282.732000px;}
.y1a3{bottom:284.227500px;}
.y239{bottom:289.789500px;}
.y1e0{bottom:290.787000px;}
.yac{bottom:292.747500px;}
.y271{bottom:293.421000px;}
.ye7{bottom:296.118000px;}
.y77{bottom:297.661500px;}
.y3f{bottom:301.560000px;}
.y19b{bottom:306.657000px;}
.y18{bottom:307.299000px;}
.y19a{bottom:307.824000px;}
.y1df{bottom:309.616500px;}
.y270{bottom:310.681500px;}
.yab{bottom:311.577000px;}
.y229{bottom:314.947500px;}
.y76{bottom:316.491000px;}
.ye6{bottom:319.429500px;}
.y3e{bottom:320.389500px;}
.y238{bottom:323.413500px;}
.y17{bottom:325.186500px;}
.y199{bottom:326.653500px;}
.y26f{bottom:327.940500px;}
.y1de{bottom:328.446000px;}
.yaa{bottom:330.406500px;}
.y228{bottom:333.777000px;}
.y75{bottom:335.320500px;}
.y3d{bottom:339.219000px;}
.y16{bottom:343.074000px;}
.y26e{bottom:345.201000px;}
.y198{bottom:345.483000px;}
.y1dd{bottom:347.275500px;}
.ya9{bottom:349.236000px;}
.y237{bottom:349.954500px;}
.y227{bottom:352.606500px;}
.ye5{bottom:353.053500px;}
.y74{bottom:354.150000px;}
.y3c{bottom:358.048500px;}
.y15{bottom:360.963000px;}
.y26d{bottom:362.461500px;}
.y197{bottom:364.312500px;}
.y1dc{bottom:366.105000px;}
.y236{bottom:367.528500px;}
.ya8{bottom:368.065500px;}
.y200{bottom:369.269085px;}
.ye4{bottom:371.883000px;}
.y73{bottom:372.979500px;}
.y3b{bottom:376.878000px;}
.y1ff{bottom:378.898950px;}
.y26c{bottom:379.722000px;}
.y196{bottom:383.142000px;}
.y226{bottom:383.839500px;}
.y1db{bottom:384.934500px;}
.y235{bottom:385.102500px;}
.ya7{bottom:386.895000px;}
.ye3{bottom:390.712500px;}
.y72{bottom:391.809000px;}
.y3a{bottom:395.707500px;}
.y26b{bottom:396.982500px;}
.yba{bottom:398.069085px;}
.y14{bottom:399.024000px;}
.y195{bottom:401.971500px;}
.y225{bottom:403.072500px;}
.y15d{bottom:403.483500px;}
.y1da{bottom:403.764000px;}
.ya6{bottom:405.724500px;}
.yb9{bottom:407.698950px;}
.y71{bottom:410.638500px;}
.y234{bottom:411.643500px;}
.y26a{bottom:414.243000px;}
.y39{bottom:414.537000px;}
.y10b{bottom:415.742085px;}
.y13{bottom:416.913000px;}
.y194{bottom:420.799500px;}
.y224{bottom:422.305500px;}
.y15c{bottom:422.313000px;}
.y1d9{bottom:422.593500px;}
.ye2{bottom:422.767500px;}
.ya5{bottom:424.554000px;}
.y10a{bottom:425.371950px;}
.y70{bottom:429.468000px;}
.y269{bottom:431.503500px;}
.ye1{bottom:433.020000px;}
.y38{bottom:433.366500px;}
.y12{bottom:434.800500px;}
.y233{bottom:438.183000px;}
.y193{bottom:439.629000px;}
.y15b{bottom:441.142500px;}
.y1d7{bottom:441.423000px;}
.y223{bottom:441.538500px;}
.ya4{bottom:443.383500px;}
.y1d8{bottom:446.847000px;}
.y1ba{bottom:447.537000px;}
.y6f{bottom:448.297500px;}
.y268{bottom:448.764000px;}
.y37{bottom:452.196000px;}
.y192{bottom:458.458500px;}
.y15a{bottom:459.972000px;}
.y1d5{bottom:460.252500px;}
.y1b8{bottom:461.734500px;}
.ya3{bottom:462.213000px;}
.y1fe{bottom:463.968000px;}
.y232{bottom:464.724000px;}
.y1d6{bottom:465.676500px;}
.y267{bottom:466.024500px;}
.y1b9{bottom:466.074000px;}
.y6e{bottom:467.127000px;}
.y11{bottom:470.622000px;}
.y36{bottom:475.509000px;}
.y1b7{bottom:475.930500px;}
.ye0{bottom:476.065500px;}
.y191{bottom:477.288000px;}
.y159{bottom:478.801500px;}
.y1d3{bottom:479.082000px;}
.y266{bottom:483.283500px;}
.y1d4{bottom:484.506000px;}
.ya2{bottom:485.526000px;}
.y6d{bottom:485.956500px;}
.y231{bottom:491.265000px;}
.ydf{bottom:494.895000px;}
.y190{bottom:496.117500px;}
.y158{bottom:497.631000px;}
.y1d1{bottom:497.911500px;}
.y1b6{bottom:498.678000px;}
.y265{bottom:500.544000px;}
.y1d2{bottom:503.335500px;}
.y6c{bottom:504.786000px;}
.y10{bottom:506.442000px;}
.y230{bottom:508.839000px;}
.y18f{bottom:514.947000px;}
.y157{bottom:516.460500px;}
.y1d0{bottom:516.741000px;}
.y264{bottom:517.804500px;}
.ya1{bottom:519.150000px;}
.y1b5{bottom:522.318000px;}
.y6b{bottom:523.615500px;}
.yf{bottom:524.329500px;}
.yde{bottom:525.972000px;}
.y22f{bottom:526.413000px;}
.y169{bottom:531.777000px;}
.y18e{bottom:533.776500px;}
.y263{bottom:535.065000px;}
.y156{bottom:535.290000px;}
.y1cf{bottom:535.570500px;}
.ya0{bottom:537.979500px;}
.ye{bottom:542.218500px;}
.y6a{bottom:542.445000px;}
.y22e{bottom:543.987000px;}
.ydd{bottom:545.205000px;}
.y1b4{bottom:545.959500px;}
.y35{bottom:550.659000px;}
.y262{bottom:552.325500px;}
.y18d{bottom:552.606000px;}
.y168{bottom:553.851000px;}
.y155{bottom:554.118000px;}
.y1ce{bottom:554.400000px;}
.y9f{bottom:556.809000px;}
.yd{bottom:560.106000px;}
.y69{bottom:561.274500px;}
.y22d{bottom:561.561000px;}
.yb8{bottom:567.634500px;}
.y261{bottom:569.586000px;}
.y1b3{bottom:569.599500px;}
.y34{bottom:570.115500px;}
.y18c{bottom:571.435500px;}
.y153{bottom:572.947500px;}
.y1cd{bottom:573.229500px;}
.y167{bottom:575.250000px;}
.y9e{bottom:575.638500px;}
.yc{bottom:577.993500px;}
.y154{bottom:578.373000px;}
.y22c{bottom:579.135000px;}
.y68{bottom:580.104000px;}
.y260{bottom:586.846500px;}
.y18b{bottom:590.265000px;}
.y152{bottom:591.777000px;}
.y1cc{bottom:592.059000px;}
.y1b2{bottom:593.241000px;}
.y9d{bottom:594.468000px;}
.yb{bottom:595.882500px;}
.y166{bottom:596.649000px;}
.y67{bottom:598.932000px;}
.y25f{bottom:604.107000px;}
.y33{bottom:607.506000px;}
.y189{bottom:609.094500px;}
.y151{bottom:610.606500px;}
.y1cb{bottom:610.888500px;}
.y9c{bottom:613.297500px;}
.ya{bottom:613.770000px;}
.y18a{bottom:614.520000px;}
.y108{bottom:614.641500px;}
.y1b1{bottom:616.881000px;}
.y66{bottom:617.761500px;}
.y165{bottom:618.048000px;}
.y25e{bottom:621.366000px;}
.y32{bottom:626.962500px;}
.y188{bottom:627.924000px;}
.y14f{bottom:629.436000px;}
.y1ca{bottom:629.718000px;}
.y9b{bottom:632.127000px;}
.y107{bottom:633.471000px;}
.y150{bottom:634.861500px;}
.y7{bottom:636.141055px;}
.y65{bottom:636.591000px;}
.y25d{bottom:638.626500px;}
.y164{bottom:639.447000px;}
.y1b0{bottom:640.522500px;}
.y31{bottom:646.420500px;}
.y187{bottom:646.753500px;}
.y14e{bottom:648.265500px;}
.y1c9{bottom:648.547500px;}
.y9a{bottom:650.956500px;}
.y106{bottom:652.300500px;}
.y64{bottom:655.420500px;}
.y25c{bottom:655.887000px;}
.y163{bottom:660.846000px;}
.y1af{bottom:664.162500px;}
.y186{bottom:665.583000px;}
.y2f{bottom:665.877000px;}
.y14d{bottom:667.095000px;}
.y1c8{bottom:667.375500px;}
.y99{bottom:669.786000px;}
.y30{bottom:670.759500px;}
.y105{bottom:671.130000px;}
.y1ae{bottom:672.382500px;}
.y25b{bottom:673.147500px;}
.y63{bottom:674.250000px;}
.y162{bottom:682.245000px;}
.y184{bottom:684.412500px;}
.y2e{bottom:685.333500px;}
.y14c{bottom:685.924500px;}
.y1c7{bottom:686.205000px;}
.y98{bottom:688.615500px;}
.y185{bottom:689.836500px;}
.y104{bottom:689.959500px;}
.y25a{bottom:690.408000px;}
.y62{bottom:693.079500px;}
.y182{bottom:703.242000px;}
.y161{bottom:703.645500px;}
.y1ad{bottom:704.242500px;}
.y14b{bottom:704.754000px;}
.y2d{bottom:704.791500px;}
.y1c6{bottom:705.034500px;}
.y97{bottom:707.445000px;}
.y259{bottom:707.668500px;}
.y183{bottom:708.666000px;}
.y103{bottom:708.789000px;}
.y61{bottom:711.909000px;}
.y181{bottom:722.071500px;}
.y14a{bottom:723.583500px;}
.y1c5{bottom:723.864000px;}
.y2c{bottom:724.248000px;}
.y258{bottom:724.929000px;}
.y160{bottom:725.044500px;}
.y96{bottom:726.273000px;}
.y102{bottom:727.618500px;}
.y60{bottom:730.738500px;}
.y1ac{bottom:735.861000px;}
.y180{bottom:740.901000px;}
.y257{bottom:742.189500px;}
.y149{bottom:742.413000px;}
.y1c4{bottom:742.693500px;}
.y2b{bottom:743.706000px;}
.y94{bottom:745.102500px;}
.y101{bottom:746.448000px;}
.y5f{bottom:749.568000px;}
.y95{bottom:750.528000px;}
.y15f{bottom:755.094000px;}
.y256{bottom:759.450000px;}
.y17f{bottom:759.730500px;}
.y148{bottom:761.242500px;}
.y1c3{bottom:761.523000px;}
.y2a{bottom:763.162500px;}
.y93{bottom:763.932000px;}
.y100{bottom:765.277500px;}
.y5e{bottom:768.397500px;}
.y255{bottom:776.709000px;}
.y17e{bottom:778.560000px;}
.y147{bottom:780.072000px;}
.y1c2{bottom:780.352500px;}
.y29{bottom:782.619000px;}
.yff{bottom:784.107000px;}
.y5d{bottom:787.227000px;}
.y92{bottom:787.245000px;}
.y254{bottom:793.969500px;}
.y17d{bottom:797.389500px;}
.y146{bottom:798.901500px;}
.y1c1{bottom:799.182000px;}
.y28{bottom:802.077000px;}
.yfe{bottom:802.936500px;}
.y1fd{bottom:803.385000px;}
.y5c{bottom:806.056500px;}
.y91{bottom:807.420000px;}
.y15e{bottom:807.729000px;}
.y253{bottom:811.230000px;}
.y145{bottom:817.731000px;}
.y1c0{bottom:818.011500px;}
.y17c{bottom:820.701000px;}
.y27{bottom:821.533500px;}
.yfd{bottom:821.766000px;}
.y1fc{bottom:822.214500px;}
.y5b{bottom:824.886000px;}
.y252{bottom:828.490500px;}
.y1ef{bottom:830.226931px;}
.y144{bottom:836.560500px;}
.y1bf{bottom:836.841000px;}
.y1ee{bottom:839.375303px;}
.yfc{bottom:840.595500px;}
.y17b{bottom:840.876000px;}
.y26{bottom:840.990000px;}
.y90{bottom:841.044000px;}
.y5a{bottom:843.715500px;}
.y22b{bottom:845.079000px;}
.y251{bottom:845.751000px;}
.y143{bottom:855.390000px;}
.y1be{bottom:855.670500px;}
.yfb{bottom:859.425000px;}
.y8f{bottom:859.873500px;}
.y25{bottom:860.448000px;}
.y59{bottom:862.545000px;}
.y19d{bottom:862.796085px;}
.y250{bottom:863.011500px;}
.y19c{bottom:872.425950px;}
.y142{bottom:874.219500px;}
.y17a{bottom:874.500000px;}
.yfa{bottom:878.254500px;}
.y8e{bottom:878.703000px;}
.y24{bottom:879.904500px;}
.y1bd{bottom:879.924000px;}
.y24f{bottom:880.272000px;}
.y58{bottom:881.374500px;}
.y141{bottom:893.049000px;}
.y179{bottom:893.329500px;}
.yf9{bottom:897.084000px;}
.y8d{bottom:897.532500px;}
.y57{bottom:900.204000px;}
.y140{bottom:911.878500px;}
.y178{bottom:912.159000px;}
.y24e{bottom:914.793000px;}
.yf8{bottom:915.913500px;}
.y8c{bottom:916.362000px;}
.y1bc{bottom:917.583000px;}
.y23{bottom:918.490500px;}
.y56{bottom:919.033500px;}
.y13f{bottom:930.708000px;}
.y177{bottom:930.988500px;}
.y24d{bottom:932.052000px;}
.y22{bottom:934.629000px;}
.y8b{bottom:935.191500px;}
.y55{bottom:937.863000px;}
.yf7{bottom:939.226500px;}
.y24c{bottom:949.312500px;}
.y13e{bottom:949.537500px;}
.y176{bottom:949.818000px;}
.y21{bottom:950.769000px;}
.y8a{bottom:954.021000px;}
.y54{bottom:956.692500px;}
.y24b{bottom:966.573000px;}
.y13d{bottom:968.367000px;}
.y175{bottom:968.647500px;}
.y89{bottom:972.849000px;}
.y53{bottom:975.522000px;}
.y24a{bottom:983.833500px;}
.y13c{bottom:987.196500px;}
.y174{bottom:987.477000px;}
.y88{bottom:991.678500px;}
.y52{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y249{bottom:1001.094000px;}
.y13b{bottom:1006.026000px;}
.y173{bottom:1006.306500px;}
.y87{bottom:1010.508000px;}
.y51{bottom:1013.181000px;}
.y248{bottom:1018.354500px;}
.y13a{bottom:1024.855500px;}
.y172{bottom:1025.136000px;}
.y86{bottom:1029.337500px;}
.y1bb{bottom:1030.560000px;}
.y50{bottom:1032.010500px;}
.y247{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y139{bottom:1043.685000px;}
.y170{bottom:1043.965500px;}
.y85{bottom:1048.167000px;}
.y171{bottom:1049.389500px;}
.y4f{bottom:1050.840000px;}
.y246{bottom:1052.875500px;}
.yf6{bottom:1053.592500px;}
.y138{bottom:1062.513000px;}
.y16e{bottom:1062.795000px;}
.y84{bottom:1066.996500px;}
.y16f{bottom:1068.219000px;}
.y4{bottom:1069.443000px;}
.y4e{bottom:1069.669500px;}
.y245{bottom:1070.134500px;}
.y137{bottom:1081.342500px;}
.y16c{bottom:1081.624500px;}
.y83{bottom:1085.826000px;}
.y16d{bottom:1087.048500px;}
.y244{bottom:1087.395000px;}
.y4d{bottom:1088.499000px;}
.yf5{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y16b{bottom:1100.454000px;}
.y82{bottom:1104.655500px;}
.y4c{bottom:1107.327000px;}
.y16a{bottom:1119.283500px;}
.y1{bottom:1141.174500px;}
.y4b{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h2d{height:26.110157px;}
.h22{height:26.279297px;}
.h13{height:26.461718px;}
.ha{height:30.461558px;}
.hb{height:30.670772px;}
.h23{height:33.072749px;}
.h9{height:33.112997px;}
.h31{height:33.203892px;}
.h30{height:33.359361px;}
.h8{height:34.199443px;}
.h26{height:34.574294px;}
.hc{height:34.813397px;}
.h12{height:34.818209px;}
.h16{height:34.951465px;}
.h11{height:35.052500px;}
.h15{height:35.115117px;}
.h34{height:37.447998px;}
.h33{height:37.623340px;}
.h27{height:38.254724px;}
.hd{height:38.896243px;}
.he{height:39.165235px;}
.h19{height:39.418945px;}
.h36{height:39.434227px;}
.h18{height:39.603516px;}
.h32{height:41.692104px;}
.hf{height:43.217759px;}
.h21{height:43.269961px;}
.h2e{height:43.468157px;}
.h10{height:43.516637px;}
.h4{height:43.815515px;}
.h17{height:43.886426px;}
.h2c{height:43.902512px;}
.h29{height:44.091914px;}
.h6{height:44.473046px;}
.h1d{height:46.405454px;}
.h1b{height:46.482715px;}
.h1c{height:49.724011px;}
.h2{height:50.931027px;}
.h2a{height:71.770243px;}
.h5{height:77.792486px;}
.h2b{height:81.882344px;}
.h3{height:82.327410px;}
.h1f{height:84.526637px;}
.h1e{height:86.554950px;}
.h1a{height:99.766459px;}
.h35{height:318.108000px;}
.h14{height:365.235000px;}
.h20{height:383.562000px;}
.h2f{height:783.489225px;}
.h28{height:812.944500px;}
.h24{height:892.914000px;}
.h25{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:196.723648px;}
.w4{width:505.963500px;}
.wa{width:531.490500px;}
.w9{width:550.930650px;}
.w8{width:577.308000px;}
.w5{width:586.471500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.xbf{left:-202.581000px;}
.x44{left:-192.108000px;}
.x88{left:-190.144500px;}
.xb3{left:-177.527925px;}
.xc0{left:-7.011000px;}
.x0{left:0.000000px;}
.x46{left:3.462000px;}
.x89{left:5.425500px;}
.xb5{left:8.263575px;}
.xc1{left:24.849000px;}
.x3{left:29.274117px;}
.x47{left:35.322000px;}
.x1{left:54.000000px;}
.x2{left:58.043648px;}
.x73{left:62.967000px;}
.x60{left:69.226500px;}
.x78{left:71.083500px;}
.x61{left:73.726500px;}
.x96{left:76.623000px;}
.x77{left:81.138000px;}
.x76{left:83.086500px;}
.x72{left:85.197000px;}
.xc6{left:86.272500px;}
.x97{left:87.840000px;}
.x94{left:90.159000px;}
.x71{left:124.002000px;}
.x93{left:134.623500px;}
.x91{left:136.662000px;}
.x75{left:146.323500px;}
.x95{left:158.980500px;}
.x48{left:234.492000px;}
.x5d{left:248.655000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x64{left:254.874000px;}
.x52{left:257.845500px;}
.x65{left:260.845500px;}
.x7e{left:265.572000px;}
.x74{left:272.100000px;}
.x9f{left:274.882500px;}
.x82{left:280.371000px;}
.xa{left:282.786000px;}
.x83{left:287.178000px;}
.x4a{left:289.480389px;}
.xa5{left:296.071500px;}
.xa4{left:301.263000px;}
.xa6{left:303.543000px;}
.x9d{left:305.926500px;}
.x62{left:307.138500px;}
.xc2{left:308.166000px;}
.x6{left:309.433500px;}
.x4c{left:310.821000px;}
.x55{left:313.894500px;}
.x63{left:318.252000px;}
.x9e{left:320.869500px;}
.x9{left:322.624500px;}
.x56{left:326.185500px;}
.x5e{left:328.336500px;}
.x5f{left:332.836500px;}
.x87{left:334.413000px;}
.x6d{left:337.701000px;}
.xa7{left:340.753500px;}
.x23{left:344.713500px;}
.x6e{left:347.866500px;}
.x53{left:349.444500px;}
.x24{left:352.186500px;}
.x59{left:355.957500px;}
.x49{left:357.251145px;}
.x54{left:364.389000px;}
.x2b{left:369.681000px;}
.xc5{left:377.268000px;}
.x4b{left:382.452000px;}
.x2c{left:384.625500px;}
.x1d{left:387.817500px;}
.x70{left:391.548000px;}
.xac{left:393.943500px;}
.x1e{left:395.289000px;}
.x7{left:397.827000px;}
.xb0{left:401.562000px;}
.x67{left:402.693000px;}
.x9c{left:409.348500px;}
.x8{left:410.839500px;}
.xad{left:412.168500px;}
.xb1{left:423.694500px;}
.xae{left:427.111500px;}
.xbb{left:428.983500px;}
.xbc{left:434.215500px;}
.xb2{left:438.639000px;}
.x6f{left:442.722000px;}
.x7b{left:448.458000px;}
.x26{left:453.804000px;}
.x1f{left:460.675500px;}
.x27{left:469.851000px;}
.x4d{left:471.729000px;}
.x20{left:475.618500px;}
.x68{left:485.811000px;}
.x4f{left:494.814000px;}
.x45{left:500.711874px;}
.x69{left:504.420000px;}
.x50{left:507.105000px;}
.x8a{left:511.221000px;}
.x32{left:516.513000px;}
.x8b{left:517.945500px;}
.x6a{left:519.363000px;}
.xa1{left:521.646000px;}
.x4e{left:526.581000px;}
.xb{left:530.908500px;}
.x51{left:532.897500px;}
.x66{left:534.457500px;}
.xa2{left:536.590500px;}
.xc{left:538.381500px;}
.x90{left:541.945500px;}
.x57{left:546.607500px;}
.x1b{left:549.192000px;}
.xb4{left:551.188173px;}
.x58{left:553.413000px;}
.x8c{left:556.671000px;}
.xb6{left:558.828000px;}
.x35{left:559.909500px;}
.x98{left:561.978000px;}
.x1c{left:564.135000px;}
.xa3{left:569.551500px;}
.x99{left:571.936500px;}
.x36{left:574.854000px;}
.x5c{left:576.352500px;}
.xbd{left:579.895500px;}
.x39{left:583.777500px;}
.xbe{left:587.374500px;}
.xaa{left:591.549000px;}
.x6b{left:594.436500px;}
.xb7{left:597.253500px;}
.x3a{left:598.722000px;}
.x37{left:602.458500px;}
.x6c{left:606.469500px;}
.x2d{left:607.968000px;}
.xab{left:610.210500px;}
.xa8{left:615.345000px;}
.x38{left:617.403000px;}
.x2e{left:622.912500px;}
.xa9{left:625.339500px;}
.x2f{left:626.722500px;}
.x3c{left:632.794500px;}
.x11{left:638.928000px;}
.x30{left:641.667000px;}
.x7c{left:645.139500px;}
.x12{left:646.401000px;}
.x21{left:647.805000px;}
.x13{left:650.211000px;}
.x7d{left:651.565500px;}
.x79{left:653.248500px;}
.x7f{left:654.331500px;}
.x3d{left:656.608500px;}
.x14{left:657.682500px;}
.x7a{left:659.674500px;}
.x22{left:662.748000px;}
.x84{left:664.753500px;}
.xa0{left:667.641000px;}
.x80{left:669.276000px;}
.x31{left:672.933000px;}
.x85{left:674.920500px;}
.xcc{left:683.487000px;}
.x28{left:684.933000px;}
.x8d{left:686.071500px;}
.xc3{left:689.139000px;}
.x8e{left:692.043000px;}
.x29{left:699.877500px;}
.xaf{left:701.938500px;}
.xc4{left:704.083500px;}
.xb8{left:725.638500px;}
.xc7{left:728.014500px;}
.xb9{left:731.610000px;}
.xca{left:736.273500px;}
.x2a{left:739.402500px;}
.x25{left:746.043000px;}
.x92{left:748.723500px;}
.x3e{left:751.999500px;}
.x15{left:753.655500px;}
.xc8{left:754.914000px;}
.x86{left:757.006500px;}
.x16{left:761.128500px;}
.xcb{left:763.173000px;}
.x3f{left:764.290500px;}
.x5a{left:766.915500px;}
.x17{left:768.750000px;}
.x40{left:772.054500px;}
.x3b{left:775.627500px;}
.x41{left:778.860000px;}
.x5b{left:781.858500px;}
.x18{left:783.693000px;}
.x42{left:786.624000px;}
.x81{left:788.034000px;}
.xc9{left:790.134000px;}
.x8f{left:793.930500px;}
.x43{left:795.052500px;}
.x19{left:796.989000px;}
.x1a{left:804.462000px;}
.xd{left:815.143500px;}
.x33{left:817.698000px;}
.xe{left:822.615000px;}
.xba{left:824.505000px;}
.xf{left:826.401000px;}
.x34{left:832.642500px;}
.x10{left:833.872500px;}
.x9a{left:1080.322500px;}
.x9b{left:1095.346500px;}
@media print{
.ve{vertical-align:-28.992000pt;}
.vd{vertical-align:-27.258667pt;}
.v1{vertical-align:-24.533333pt;}
.vc{vertical-align:-21.808000pt;}
.v5{vertical-align:-2.881152pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.881152pt;}
.vf{vertical-align:13.428288pt;}
.v7{vertical-align:15.434667pt;}
.vb{vertical-align:17.360000pt;}
.va{vertical-align:21.360000pt;}
.v8{vertical-align:29.221333pt;}
.v6{vertical-align:35.968000pt;}
.v3{vertical-align:44.482176pt;}
.v9{vertical-align:45.893333pt;}
.v4{vertical-align:47.363328pt;}
.ls3d{letter-spacing:-0.261856pt;}
.ls40{letter-spacing:-0.165664pt;}
.ls60{letter-spacing:-0.148800pt;}
.ls3e{letter-spacing:-0.144288pt;}
.ls39{letter-spacing:-0.133600pt;}
.ls56{letter-spacing:-0.129600pt;}
.ls48{letter-spacing:-0.128256pt;}
.ls77{letter-spacing:-0.123120pt;}
.ls79{letter-spacing:-0.118560pt;}
.ls43{letter-spacing:-0.117568pt;}
.ls44{letter-spacing:-0.112224pt;}
.ls63{letter-spacing:-0.105600pt;}
.ls3b{letter-spacing:-0.085504pt;}
.ls64{letter-spacing:-0.081600pt;}
.ls78{letter-spacing:-0.059280pt;}
.ls42{letter-spacing:-0.058784pt;}
.ls62{letter-spacing:-0.057600pt;}
.ls61{letter-spacing:-0.052800pt;}
.ls84{letter-spacing:-0.048096pt;}
.ls83{letter-spacing:-0.042752pt;}
.ls38{letter-spacing:-0.037408pt;}
.ls7b{letter-spacing:-0.036480pt;}
.ls85{letter-spacing:-0.032064pt;}
.ls36{letter-spacing:-0.028800pt;}
.ls7a{letter-spacing:-0.027360pt;}
.ls57{letter-spacing:-0.026720pt;}
.ls5e{letter-spacing:-0.024000pt;}
.ls46{letter-spacing:-0.021376pt;}
.ls35{letter-spacing:-0.019200pt;}
.ls47{letter-spacing:-0.016032pt;}
.ls5f{letter-spacing:-0.014400pt;}
.ls41{letter-spacing:-0.010688pt;}
.ls55{letter-spacing:-0.009600pt;}
.ls34{letter-spacing:-0.008512pt;}
.ls76{letter-spacing:-0.008086pt;}
.ls3c{letter-spacing:-0.005344pt;}
.ls37{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls86{letter-spacing:0.000711pt;}
.ls87{letter-spacing:0.000921pt;}
.ls54{letter-spacing:0.001007pt;}
.ls95{letter-spacing:0.001158pt;}
.ls8f{letter-spacing:0.001335pt;}
.ls90{letter-spacing:0.001372pt;}
.ls8e{letter-spacing:0.001467pt;}
.ls94{letter-spacing:0.001858pt;}
.ls1{letter-spacing:0.002422pt;}
.ls9{letter-spacing:0.002666pt;}
.ls8d{letter-spacing:0.002686pt;}
.ls91{letter-spacing:0.002729pt;}
.ls0{letter-spacing:0.003733pt;}
.ls6d{letter-spacing:0.004560pt;}
.ls21{letter-spacing:0.005344pt;}
.lsc{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.010688pt;}
.ls4b{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.016032pt;}
.ls17{letter-spacing:0.017568pt;}
.ls4d{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.021376pt;}
.ls4c{letter-spacing:0.024000pt;}
.lse{letter-spacing:0.026720pt;}
.ls75{letter-spacing:0.027360pt;}
.ls50{letter-spacing:0.028800pt;}
.ls20{letter-spacing:0.032064pt;}
.ls7e{letter-spacing:0.033600pt;}
.ls72{letter-spacing:0.036480pt;}
.lsd{letter-spacing:0.037408pt;}
.ls4f{letter-spacing:0.038400pt;}
.ls71{letter-spacing:0.041040pt;}
.ls11{letter-spacing:0.042752pt;}
.ls7d{letter-spacing:0.043200pt;}
.ls12{letter-spacing:0.048096pt;}
.ls7f{letter-spacing:0.052800pt;}
.lsf{letter-spacing:0.053440pt;}
.ls74{letter-spacing:0.054720pt;}
.ls82{letter-spacing:0.058784pt;}
.ls73{letter-spacing:0.059280pt;}
.ls52{letter-spacing:0.064128pt;}
.ls14{letter-spacing:0.069472pt;}
.ls3f{letter-spacing:0.074816pt;}
.ls70{letter-spacing:0.082080pt;}
.ls53{letter-spacing:0.085504pt;}
.ls81{letter-spacing:0.090848pt;}
.ls6f{letter-spacing:0.104880pt;}
.ls5a{letter-spacing:0.110400pt;}
.ls1f{letter-spacing:0.122912pt;}
.ls6e{letter-spacing:0.123120pt;}
.ls4e{letter-spacing:0.124800pt;}
.ls5b{letter-spacing:0.129600pt;}
.ls80{letter-spacing:0.138848pt;}
.ls51{letter-spacing:0.139200pt;}
.ls6c{letter-spacing:0.145555pt;}
.lsb{letter-spacing:0.148960pt;}
.ls7c{letter-spacing:0.153216pt;}
.ls6b{letter-spacing:0.153642pt;}
.ls4a{letter-spacing:0.157472pt;}
.lsa{letter-spacing:0.161728pt;}
.ls49{letter-spacing:0.170240pt;}
.ls18{letter-spacing:1.024800pt;}
.ls8{letter-spacing:1.133683pt;}
.ls29{letter-spacing:1.257548pt;}
.ls24{letter-spacing:1.262881pt;}
.ls2d{letter-spacing:1.326011pt;}
.ls23{letter-spacing:1.327711pt;}
.ls25{letter-spacing:1.331344pt;}
.ls2{letter-spacing:1.654338pt;}
.ls16{letter-spacing:1.739232pt;}
.ls2f{letter-spacing:1.856518pt;}
.ls28{letter-spacing:1.861348pt;}
.ls2c{letter-spacing:1.861852pt;}
.ls1d{letter-spacing:2.289696pt;}
.ls69{letter-spacing:2.651733pt;}
.ls5{letter-spacing:2.656533pt;}
.ls68{letter-spacing:2.657067pt;}
.ls6a{letter-spacing:2.658466pt;}
.ls65{letter-spacing:2.661867pt;}
.ls1b{letter-spacing:2.787456pt;}
.ls58{letter-spacing:3.059733pt;}
.ls67{letter-spacing:3.118133pt;}
.ls2e{letter-spacing:3.772297pt;}
.ls3a{letter-spacing:5.840992pt;}
.ls3{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:11.593548pt;}
.ls93{letter-spacing:11.794223pt;}
.ls8b{letter-spacing:11.954133pt;}
.ls8c{letter-spacing:11.959467pt;}
.ls8a{letter-spacing:11.962216pt;}
.ls92{letter-spacing:11.999421pt;}
.ls96{letter-spacing:12.098781pt;}
.ls31{letter-spacing:12.391090pt;}
.ls2b{letter-spacing:12.696429pt;}
.ls89{letter-spacing:13.022578pt;}
.ls1c{letter-spacing:13.135008pt;}
.ls33{letter-spacing:13.175644pt;}
.ls45{letter-spacing:13.211136pt;}
.ls5d{letter-spacing:13.442868pt;}
.ls32{letter-spacing:14.342310pt;}
.ls59{letter-spacing:14.664947pt;}
.ls88{letter-spacing:15.731075pt;}
.ls26{letter-spacing:16.020214pt;}
.ls19{letter-spacing:16.338240pt;}
.ls4{letter-spacing:25.292137pt;}
.ls1a{letter-spacing:25.374048pt;}
.ls27{letter-spacing:29.027096pt;}
.ls66{letter-spacing:117.171375pt;}
.ls1e{letter-spacing:672.077472pt;}
.ls30{letter-spacing:728.473548pt;}
.ls5c{letter-spacing:754.640000pt;}
.ls22{letter-spacing:754.642272pt;}
.ws0{word-spacing:-91.094364pt;}
.ws5f{word-spacing:-71.771136pt;}
.ws60{word-spacing:-13.482912pt;}
.ws61{word-spacing:-13.360000pt;}
.wse7{word-spacing:-12.000000pt;}
.ws9b{word-spacing:-11.955200pt;}
.ws108{word-spacing:-11.400000pt;}
.ws96{word-spacing:-10.810240pt;}
.ws5d{word-spacing:-10.801728pt;}
.ws5e{word-spacing:-10.640000pt;}
.ws5c{word-spacing:-10.631488pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws106{word-spacing:-10.261642pt;}
.ws107{word-spacing:-10.108000pt;}
.ws105{word-spacing:-10.099914pt;}
.ws6{word-spacing:-9.298400pt;}
.ws11d{word-spacing:-8.000000pt;}
.ws7d{word-spacing:-3.163648pt;}
.ws7a{word-spacing:-2.875072pt;}
.ws7e{word-spacing:-2.848352pt;}
.ws7c{word-spacing:-2.810944pt;}
.wsd2{word-spacing:-2.656693pt;}
.ws97{word-spacing:-2.630144pt;}
.wsb4{word-spacing:-2.538400pt;}
.wsc7{word-spacing:-2.522368pt;}
.ws87{word-spacing:-2.506336pt;}
.wsc8{word-spacing:-2.500992pt;}
.wsa7{word-spacing:-2.463584pt;}
.wsa8{word-spacing:-2.452896pt;}
.ws98{word-spacing:-2.438861pt;}
.wsa3{word-spacing:-2.419200pt;}
.wsc6{word-spacing:-2.223104pt;}
.wsc5{word-spacing:-2.196384pt;}
.ws82{word-spacing:-2.180352pt;}
.ws86{word-spacing:-2.148288pt;}
.wsdf{word-spacing:-2.072221pt;}
.ws131{word-spacing:-2.025376pt;}
.wsa4{word-spacing:-1.944000pt;}
.ws8b{word-spacing:-1.886432pt;}
.wsa9{word-spacing:-1.875744pt;}
.ws130{word-spacing:-1.849024pt;}
.ws83{word-spacing:-1.838336pt;}
.ws13b{word-spacing:-1.811616pt;}
.wsee{word-spacing:-1.771200pt;}
.wsef{word-spacing:-1.708800pt;}
.wsf0{word-spacing:-1.704000pt;}
.ws57{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.wsf2{word-spacing:-1.680000pt;}
.wsf1{word-spacing:-1.656000pt;}
.ws28{word-spacing:-1.594016pt;}
.ws4c{word-spacing:-1.487748pt;}
.ws9f{word-spacing:-1.454400pt;}
.ws9d{word-spacing:-1.449600pt;}
.ws9e{word-spacing:-1.444800pt;}
.wsa0{word-spacing:-1.425600pt;}
.ws69{word-spacing:-1.381481pt;}
.ws3a{word-spacing:-1.328347pt;}
.wse5{word-spacing:-1.275213pt;}
.ws7b{word-spacing:-1.255840pt;}
.wsb3{word-spacing:-1.229120pt;}
.ws3f{word-spacing:-1.222079pt;}
.ws92{word-spacing:-1.207744pt;}
.ws16f{word-spacing:-1.195520pt;}
.ws2{word-spacing:-1.175671pt;}
.ws55{word-spacing:-1.168945pt;}
.ws4b{word-spacing:-1.115811pt;}
.ws151{word-spacing:-1.099878pt;}
.ws91{word-spacing:-1.074144pt;}
.ws67{word-spacing:-1.009543pt;}
.wscf{word-spacing:-0.956410pt;}
.ws127{word-spacing:-0.908480pt;}
.ws64{word-spacing:-0.907795pt;}
.ws42{word-spacing:-0.903276pt;}
.ws145{word-spacing:-0.903136pt;}
.ws146{word-spacing:-0.855040pt;}
.ws94{word-spacing:-0.850142pt;}
.ws6e{word-spacing:-0.796800pt;}
.ws6c{word-spacing:-0.782400pt;}
.ws6d{word-spacing:-0.772800pt;}
.wsd0{word-spacing:-0.743874pt;}
.ws112{word-spacing:-0.734160pt;}
.wsbe{word-spacing:-0.710752pt;}
.ws3e{word-spacing:-0.637606pt;}
.wsad{word-spacing:-0.619904pt;}
.wsae{word-spacing:-0.609216pt;}
.ws72{word-spacing:-0.598528pt;}
.ws111{word-spacing:-0.538080pt;}
.ws66{word-spacing:-0.531339pt;}
.wsac{word-spacing:-0.529056pt;}
.wsa1{word-spacing:-0.513600pt;}
.wsa2{word-spacing:-0.504000pt;}
.ws114{word-spacing:-0.497040pt;}
.ws10c{word-spacing:-0.460560pt;}
.ws10f{word-spacing:-0.456000pt;}
.ws4f{word-spacing:-0.425071pt;}
.ws113{word-spacing:-0.419520pt;}
.ws10e{word-spacing:-0.396720pt;}
.ws110{word-spacing:-0.337440pt;}
.ws10d{word-spacing:-0.332880pt;}
.ws37{word-spacing:-0.318803pt;}
.ws171{word-spacing:-0.286925pt;}
.ws85{word-spacing:-0.283232pt;}
.ws149{word-spacing:-0.267200pt;}
.ws4d{word-spacing:-0.265669pt;}
.ws9c{word-spacing:-0.246848pt;}
.ws6a{word-spacing:-0.242592pt;}
.ws15a{word-spacing:-0.239104pt;}
.ws10a{word-spacing:-0.230462pt;}
.ws26{word-spacing:-0.212535pt;}
.wse8{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.ws1d{word-spacing:-0.143462pt;}
.ws25{word-spacing:-0.106268pt;}
.wsf4{word-spacing:-0.095642pt;}
.wsdc{word-spacing:-0.085014pt;}
.ws23{word-spacing:-0.053134pt;}
.ws109{word-spacing:-0.047821pt;}
.ws13{word-spacing:-0.042507pt;}
.ws16d{word-spacing:-0.026743pt;}
.ws166{word-spacing:-0.025677pt;}
.ws15d{word-spacing:-0.005530pt;}
.ws15e{word-spacing:-0.004924pt;}
.ws15f{word-spacing:-0.004446pt;}
.ws16e{word-spacing:-0.004352pt;}
.ws160{word-spacing:-0.003806pt;}
.ws2e{word-spacing:-0.002701pt;}
.ws5{word-spacing:-0.002117pt;}
.ws165{word-spacing:-0.001498pt;}
.ws1{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.010688pt;}
.ws93{word-spacing:0.032064pt;}
.wsc2{word-spacing:0.037408pt;}
.wsfb{word-spacing:0.042507pt;}
.ws17{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws80{word-spacing:0.064128pt;}
.ws116{word-spacing:0.091200pt;}
.ws14{word-spacing:0.095642pt;}
.ws118{word-spacing:0.095760pt;}
.ws124{word-spacing:0.105600pt;}
.ws40{word-spacing:0.106268pt;}
.ws11a{word-spacing:0.109440pt;}
.ws14a{word-spacing:0.122912pt;}
.ws119{word-spacing:0.123120pt;}
.ws12{word-spacing:0.127522pt;}
.ws13e{word-spacing:0.128256pt;}
.ws1e{word-spacing:0.143462pt;}
.ws6f{word-spacing:0.148800pt;}
.ws117{word-spacing:0.150480pt;}
.wsa5{word-spacing:0.153600pt;}
.ws53{word-spacing:0.159402pt;}
.wsf3{word-spacing:0.168000pt;}
.ws8{word-spacing:0.185968pt;}
.ws9a{word-spacing:0.191283pt;}
.ws8c{word-spacing:0.192384pt;}
.ws39{word-spacing:0.212535pt;}
.ws164{word-spacing:0.237423pt;}
.ws11e{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws27{word-spacing:0.265669pt;}
.ws152{word-spacing:0.286925pt;}
.ws13a{word-spacing:0.309952pt;}
.ws3d{word-spacing:0.318803pt;}
.ws1f{word-spacing:0.334746pt;}
.ws76{word-spacing:0.342016pt;}
.ws8d{word-spacing:0.347360pt;}
.wsbc{word-spacing:0.352704pt;}
.ws134{word-spacing:0.363392pt;}
.ws41{word-spacing:0.371937pt;}
.wsc3{word-spacing:0.379424pt;}
.wsbd{word-spacing:0.416832pt;}
.wse3{word-spacing:0.425071pt;}
.ws88{word-spacing:0.459584pt;}
.ws7f{word-spacing:0.566464pt;}
.ws15{word-spacing:0.573850pt;}
.wse1{word-spacing:0.584473pt;}
.ws56{word-spacing:0.637606pt;}
.ws142{word-spacing:0.684032pt;}
.ws100{word-spacing:0.743874pt;}
.ws20{word-spacing:0.765133pt;}
.wsec{word-spacing:0.772800pt;}
.wsea{word-spacing:0.782400pt;}
.ws2a{word-spacing:0.797008pt;}
.ws120{word-spacing:0.806400pt;}
.ws156{word-spacing:0.812954pt;}
.wseb{word-spacing:0.816000pt;}
.wse9{word-spacing:0.820800pt;}
.ws89{word-spacing:0.839008pt;}
.ws68{word-spacing:0.850142pt;}
.ws8a{word-spacing:0.855040pt;}
.ws58{word-spacing:0.903276pt;}
.ws16b{word-spacing:0.908595pt;}
.wsed{word-spacing:0.950400pt;}
.wse0{word-spacing:0.956410pt;}
.ws12e{word-spacing:0.988640pt;}
.ws13f{word-spacing:0.999328pt;}
.ws4a{word-spacing:1.009543pt;}
.ws12f{word-spacing:1.015360pt;}
.ws12d{word-spacing:1.026048pt;}
.ws157{word-spacing:1.052058pt;}
.wsd9{word-spacing:1.115811pt;}
.wsd8{word-spacing:1.168945pt;}
.ws11b{word-spacing:1.222079pt;}
.ws16a{word-spacing:1.243341pt;}
.ws33{word-spacing:1.275213pt;}
.ws65{word-spacing:1.328347pt;}
.wsc1{word-spacing:1.357376pt;}
.wsd1{word-spacing:1.381481pt;}
.ws48{word-spacing:1.434614pt;}
.ws18{word-spacing:1.578086pt;}
.wsbf{word-spacing:1.613888pt;}
.wsb5{word-spacing:1.619232pt;}
.ws43{word-spacing:1.647150pt;}
.wsaa{word-spacing:1.667328pt;}
.ws133{word-spacing:1.699392pt;}
.ws2d{word-spacing:1.700284pt;}
.wsab{word-spacing:1.704736pt;}
.ws147{word-spacing:1.710080pt;}
.ws54{word-spacing:1.753418pt;}
.ws9{word-spacing:1.785293pt;}
.ws59{word-spacing:1.806551pt;}
.ws16{word-spacing:1.817190pt;}
.wse2{word-spacing:1.859685pt;}
.ws148{word-spacing:1.923840pt;}
.wsb8{word-spacing:1.934528pt;}
.ws144{word-spacing:1.939872pt;}
.ws84{word-spacing:1.950560pt;}
.ws47{word-spacing:1.965953pt;}
.ws140{word-spacing:1.966592pt;}
.wsc0{word-spacing:1.982624pt;}
.ws49{word-spacing:2.072221pt;}
.ws63{word-spacing:2.104115pt;}
.ws30{word-spacing:2.125355pt;}
.ws143{word-spacing:2.126912pt;}
.wsfd{word-spacing:2.231622pt;}
.ws21{word-spacing:2.247578pt;}
.wscc{word-spacing:2.249824pt;}
.wscd{word-spacing:2.308608pt;}
.ws34{word-spacing:2.391024pt;}
.ws62{word-spacing:2.391040pt;}
.wsff{word-spacing:2.444158pt;}
.ws14c{word-spacing:2.497292pt;}
.wsaf{word-spacing:2.618560pt;}
.ws14f{word-spacing:2.630144pt;}
.wsfc{word-spacing:2.635446pt;}
.ws51{word-spacing:2.656693pt;}
.ws16c{word-spacing:2.677965pt;}
.ws167{word-spacing:2.725786pt;}
.wsd7{word-spacing:2.762961pt;}
.ws36{word-spacing:2.816095pt;}
.ws115{word-spacing:2.850000pt;}
.ws169{word-spacing:2.860595pt;}
.ws158{word-spacing:2.864631pt;}
.ws153{word-spacing:2.866509pt;}
.ws163{word-spacing:2.866910pt;}
.ws161{word-spacing:2.867371pt;}
.ws159{word-spacing:2.868181pt;}
.ws15c{word-spacing:2.868668pt;}
.ws35{word-spacing:2.869229pt;}
.ws15b{word-spacing:2.869248pt;}
.ws162{word-spacing:2.869333pt;}
.wsc4{word-spacing:2.880416pt;}
.wsb0{word-spacing:2.891104pt;}
.ws170{word-spacing:2.917069pt;}
.ws45{word-spacing:2.922363pt;}
.ws12c{word-spacing:2.928512pt;}
.ws79{word-spacing:2.933856pt;}
.ws136{word-spacing:2.960576pt;}
.ws155{word-spacing:2.964890pt;}
.ws46{word-spacing:2.975497pt;}
.wsb6{word-spacing:2.976608pt;}
.ws70{word-spacing:2.997984pt;}
.ws102{word-spacing:3.028630pt;}
.ws99{word-spacing:3.060531pt;}
.ws31{word-spacing:3.081764pt;}
.ws71{word-spacing:3.094176pt;}
.wsfe{word-spacing:3.134898pt;}
.ws1b{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.ws19{word-spacing:3.203994pt;}
.ws135{word-spacing:3.238464pt;}
.ws90{word-spacing:3.249152pt;}
.ws132{word-spacing:3.259840pt;}
.wscb{word-spacing:3.281216pt;}
.ws4e{word-spacing:3.294300pt;}
.ws50{word-spacing:3.347434pt;}
.wse4{word-spacing:3.400567pt;}
.ws95{word-spacing:3.453701pt;}
.ws14d{word-spacing:3.506835pt;}
.ws8e{word-spacing:3.527040pt;}
.ws125{word-spacing:3.591168pt;}
.ws126{word-spacing:3.601856pt;}
.ws3c{word-spacing:3.613103pt;}
.ws8f{word-spacing:3.617888pt;}
.ws5b{word-spacing:3.666237pt;}
.ws73{word-spacing:3.687360pt;}
.ws2b{word-spacing:3.719371pt;}
.ws14b{word-spacing:3.772505pt;}
.ws52{word-spacing:3.878772pt;}
.wsd3{word-spacing:3.931906pt;}
.ws3b{word-spacing:4.038174pt;}
.ws104{word-spacing:4.144442pt;}
.wsb2{word-spacing:4.184352pt;}
.wsd6{word-spacing:4.250709pt;}
.ws121{word-spacing:4.276800pt;}
.ws101{word-spacing:4.356977pt;}
.ws103{word-spacing:4.410111pt;}
.wse6{word-spacing:4.463245pt;}
.ws139{word-spacing:4.558432pt;}
.wsb1{word-spacing:4.574464pt;}
.ws138{word-spacing:4.601184pt;}
.wsce{word-spacing:4.728914pt;}
.ws11c{word-spacing:4.782048pt;}
.ws44{word-spacing:4.835182pt;}
.ws168{word-spacing:4.877722pt;}
.ws75{word-spacing:4.884416pt;}
.ws1a{word-spacing:4.973363pt;}
.ws5a{word-spacing:5.047717pt;}
.ws74{word-spacing:5.162304pt;}
.ws29{word-spacing:5.207119pt;}
.ws122{word-spacing:5.246400pt;}
.ws123{word-spacing:5.284800pt;}
.ws10{word-spacing:5.393072pt;}
.ws150{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.ws13d{word-spacing:5.472256pt;}
.wsba{word-spacing:5.515008pt;}
.ws129{word-spacing:5.531040pt;}
.ws13c{word-spacing:5.536384pt;}
.ws128{word-spacing:5.541728pt;}
.ws38{word-spacing:5.685324pt;}
.wsc9{word-spacing:5.808928pt;}
.wsbb{word-spacing:5.835648pt;}
.wsca{word-spacing:5.851680pt;}
.wsb9{word-spacing:5.862368pt;}
.ws154{word-spacing:5.977600pt;}
.ws137{word-spacing:6.140256pt;}
.wsd5{word-spacing:6.216662pt;}
.ws78{word-spacing:6.247136pt;}
.wsd4{word-spacing:6.269796pt;}
.ws77{word-spacing:6.305920pt;}
.ws1c{word-spacing:6.407987pt;}
.ws14e{word-spacing:6.742733pt;}
.ws12b{word-spacing:7.428160pt;}
.ws12a{word-spacing:7.438848pt;}
.wse{word-spacing:7.699075pt;}
.ws81{word-spacing:8.010656pt;}
.wsb7{word-spacing:8.705376pt;}
.ws141{word-spacing:9.661952pt;}
.ws10b{word-spacing:9.808803pt;}
.ws11f{word-spacing:10.325056pt;}
.ws6b{word-spacing:10.329312pt;}
.ws32{word-spacing:12.964663pt;}
.ws7{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.wsf{word-spacing:24.399002pt;}
.wsda{word-spacing:83.016562pt;}
.wsdb{word-spacing:84.206763pt;}
.wsdd{word-spacing:94.833563pt;}
.wsf9{word-spacing:109.509632pt;}
.wsf7{word-spacing:111.427831pt;}
.wsf8{word-spacing:113.609333pt;}
.wsfa{word-spacing:150.635520pt;}
.wsf6{word-spacing:193.713758pt;}
.wsde{word-spacing:210.028075pt;}
.wsf5{word-spacing:420.459989pt;}
._1c{margin-left:-13.193568pt;}
._1b{margin-left:-11.518752pt;}
._17{margin-left:-6.662977pt;}
._0{margin-left:-5.260288pt;}
._9{margin-left:-3.910662pt;}
._7{margin-left:-2.380403pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._5{width:2.045648pt;}
._1d{width:3.270528pt;}
._38{width:10.087310pt;}
._4{width:11.166290pt;}
._8{width:12.412102pt;}
._16{width:13.623574pt;}
._b{width:14.670349pt;}
._c{width:16.120864pt;}
._13{width:17.115831pt;}
._e{width:18.012381pt;}
._14{width:19.506855pt;}
._a{width:20.467302pt;}
._f{width:21.997421pt;}
._15{width:23.060098pt;}
._12{width:25.397988pt;}
._19{width:27.045138pt;}
._18{width:28.054682pt;}
._6{width:29.011008pt;}
._1f{width:31.136446pt;}
._d{width:32.571060pt;}
._20{width:35.705958pt;}
._1{width:48.372860pt;}
._57{width:54.993920pt;}
._27{width:81.571317pt;}
._41{width:92.772352pt;}
._26{width:95.513678pt;}
._45{width:104.043043pt;}
._36{width:105.460363pt;}
._2d{width:110.731256pt;}
._42{width:113.927228pt;}
._4c{width:115.998243pt;}
._3a{width:118.765117pt;}
._25{width:120.550419pt;}
._35{width:125.991341pt;}
._4f{width:127.857320pt;}
._40{width:130.550784pt;}
._28{width:131.474770pt;}
._43{width:132.656469pt;}
._4a{width:136.193638pt;}
._2c{width:141.804019pt;}
._48{width:143.414579pt;}
._30{width:152.430819pt;}
._39{width:154.513672pt;}
._2a{width:157.701712pt;}
._37{width:161.442346pt;}
._34{width:163.057619pt;}
._3e{width:165.364326pt;}
._2e{width:168.371019pt;}
._29{width:169.357191pt;}
._3f{width:173.828608pt;}
._31{width:179.805456pt;}
._49{width:181.814682pt;}
._46{width:184.349184pt;}
._4b{width:188.307674pt;}
._4d{width:196.304384pt;}
._2b{width:199.401275pt;}
._50{width:208.259584pt;}
._2f{width:209.985568pt;}
._33{width:220.612368pt;}
._53{width:229.587661pt;}
._47{width:230.878822pt;}
._51{width:237.717197pt;}
._3d{width:242.212352pt;}
._52{width:276.738970pt;}
._44{width:285.360294pt;}
._3c{width:308.731085pt;}
._24{width:321.099389pt;}
._32{width:386.305434pt;}
._4e{width:414.415053pt;}
._10{width:621.926577pt;}
._23{width:639.648346pt;}
._22{width:900.557539pt;}
._55{width:2054.920011pt;}
._56{width:2163.073696pt;}
._1a{width:2184.191968pt;}
._1e{width:2185.119776pt;}
._54{width:2198.853270pt;}
._11{width:2220.106604pt;}
._3b{width:3514.127937pt;}
._21{width:3535.381270pt;}
.fs12{font-size:31.880533pt;}
.fse{font-size:32.000000pt;}
.fs10{font-size:33.219200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs11{font-size:38.755733pt;}
.fsf{font-size:40.381867pt;}
.fs13{font-size:40.432000pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs15{font-size:45.600000pt;}
.fs7{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs14{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fsd{font-size:58.560000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:117.087872pt;}
.y201{bottom:-679.840933pt;}
.ybb{bottom:-654.240933pt;}
.y10c{bottom:-638.531600pt;}
.y222{bottom:-578.873360pt;}
.y132{bottom:-575.731600pt;}
.y130{bottom:-575.729952pt;}
.y131{bottom:-572.371600pt;}
.ydc{bottom:-562.401061pt;}
.y221{bottom:-559.192744pt;}
.y12f{bottom:-558.690608pt;}
.ydb{bottom:-542.720445pt;}
.y220{bottom:-542.073240pt;}
.y12e{bottom:-541.571104pt;}
.yda{bottom:-525.600941pt;}
.y21f{bottom:-524.953736pt;}
.y12d{bottom:-524.451600pt;}
.y12b{bottom:-524.438760pt;}
.y12c{bottom:-521.091600pt;}
.yd9{bottom:-508.561597pt;}
.y21e{bottom:-507.914392pt;}
.y12a{bottom:-507.399416pt;}
.y21d{bottom:-490.794888pt;}
.y129{bottom:-490.279912pt;}
.yd8{bottom:-484.000477pt;}
.yd6{bottom:-474.160933pt;}
.y21c{bottom:-473.675384pt;}
.y128{bottom:-473.240568pt;}
.yd7{bottom:-462.320101pt;}
.y21b{bottom:-456.636040pt;}
.y127{bottom:-456.121064pt;}
.y21a{bottom:-439.516536pt;}
.y126{bottom:-439.001560pt;}
.yd5{bottom:-438.148581pt;}
.y219{bottom:-422.477192pt;}
.y125{bottom:-421.962216pt;}
.yd4{bottom:-421.029077pt;}
.y218{bottom:-405.357688pt;}
.y124{bottom:-404.842712pt;}
.yd3{bottom:-403.989733pt;}
.y217{bottom:-388.238184pt;}
.y123{bottom:-387.803368pt;}
.yd2{bottom:-386.870229pt;}
.y216{bottom:-371.198840pt;}
.y122{bottom:-370.683864pt;}
.yd1{bottom:-369.830885pt;}
.y215{bottom:-354.079336pt;}
.y121{bottom:-353.564360pt;}
.yd0{bottom:-352.711381pt;}
.y214{bottom:-337.039992pt;}
.y120{bottom:-336.525016pt;}
.ycf{bottom:-335.591877pt;}
.y213{bottom:-319.920488pt;}
.y11f{bottom:-319.405512pt;}
.yce{bottom:-318.552533pt;}
.y212{bottom:-302.800984pt;}
.y11e{bottom:-302.286008pt;}
.ycd{bottom:-301.433029pt;}
.y211{bottom:-285.760304pt;}
.y11d{bottom:-285.246664pt;}
.ycc{bottom:-284.393685pt;}
.y210{bottom:-268.638005pt;}
.y11c{bottom:-268.127160pt;}
.ycb{bottom:-267.274181pt;}
.y20f{bottom:-251.598661pt;}
.y11b{bottom:-251.087816pt;}
.yca{bottom:-250.154677pt;}
.y19e{bottom:-241.150267pt;}
.y20e{bottom:-234.479157pt;}
.y11a{bottom:-233.968312pt;}
.yc9{bottom:-233.115333pt;}
.y1f0{bottom:-219.696620pt;}
.y20d{bottom:-217.359653pt;}
.y119{bottom:-216.848808pt;}
.yc8{bottom:-215.995829pt;}
.y20c{bottom:-200.320309pt;}
.y118{bottom:-199.809464pt;}
.yc7{bottom:-198.956485pt;}
.y20b{bottom:-183.200805pt;}
.y117{bottom:-182.689960pt;}
.yc6{bottom:-181.836981pt;}
.y20a{bottom:-166.081301pt;}
.y116{bottom:-165.649280pt;}
.yc5{bottom:-164.717477pt;}
.y209{bottom:-149.040621pt;}
.y115{bottom:-148.529776pt;}
.yc4{bottom:-147.678133pt;}
.y208{bottom:-131.921117pt;}
.y114{bottom:-131.410272pt;}
.yc3{bottom:-130.558629pt;}
.y207{bottom:-114.880437pt;}
.y113{bottom:-114.370928pt;}
.yc2{bottom:-113.439125pt;}
.y206{bottom:-97.760933pt;}
.yc1{bottom:-96.399781pt;}
.y112{bottom:-93.331600pt;}
.y1a2{bottom:-79.710267pt;}
.yc0{bottom:-79.280277pt;}
.y1f6{bottom:-72.865380pt;}
.y205{bottom:-65.041733pt;}
.ybf{bottom:-62.240933pt;}
.y111{bottom:-60.532000pt;}
.y1f5{bottom:-58.197000pt;}
.y204{bottom:-49.601333pt;}
.y110{bottom:-45.091600pt;}
.y1a1{bottom:-44.991067pt;}
.y1f4{bottom:-43.605000pt;}
.y203{bottom:-34.241333pt;}
.y10f{bottom:-29.731600pt;}
.y1a0{bottom:-29.550667pt;}
.ybe{bottom:-29.521333pt;}
.y1f3{bottom:-29.013000pt;}
.y202{bottom:-18.800933pt;}
.y10e{bottom:-14.371600pt;}
.y1f2{bottom:-14.344620pt;}
.y19f{bottom:-14.110267pt;}
.ybd{bottom:-14.080933pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y1f1{bottom:4.503752pt;}
.y10d{bottom:5.548656pt;}
.ybc{bottom:5.839259pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.977453pt;}
.y4a{bottom:28.346667pt;}
.yf4{bottom:79.105333pt;}
.yf3{bottom:83.928000pt;}
.y20{bottom:91.398667pt;}
.y27c{bottom:92.050667pt;}
.y1fb{bottom:92.464000pt;}
.yb7{bottom:92.848000pt;}
.yf2{bottom:95.842667pt;}
.y81{bottom:97.214667pt;}
.y243{bottom:100.180000pt;}
.y49{bottom:100.681333pt;}
.y1ab{bottom:103.737333pt;}
.y1f{bottom:107.298667pt;}
.y27b{bottom:107.393333pt;}
.y1ec{bottom:107.842667pt;}
.y1fa{bottom:109.560000pt;}
.yb6{bottom:109.585333pt;}
.yf1{bottom:112.580000pt;}
.y136{bottom:113.166667pt;}
.y80{bottom:113.952000pt;}
.y242{bottom:115.522667pt;}
.y48{bottom:117.418667pt;}
.y1aa{bottom:120.474667pt;}
.y27a{bottom:122.736000pt;}
.y1e{bottom:123.200000pt;}
.y1ea{bottom:124.580000pt;}
.yb5{bottom:126.322667pt;}
.y1f9{bottom:126.656000pt;}
.yef{bottom:129.317333pt;}
.y1eb{bottom:129.401333pt;}
.y135{bottom:130.261333pt;}
.y7f{bottom:130.689333pt;}
.y241{bottom:130.865333pt;}
.yf0{bottom:134.138667pt;}
.y47{bottom:134.156000pt;}
.y1a9{bottom:137.212000pt;}
.y279{bottom:138.078667pt;}
.y1d{bottom:139.100000pt;}
.y1e9{bottom:141.316000pt;}
.yb4{bottom:143.060000pt;}
.y1f8{bottom:143.752000pt;}
.yee{bottom:146.054667pt;}
.y240{bottom:146.208000pt;}
.y134{bottom:147.357333pt;}
.y7e{bottom:147.426667pt;}
.y46{bottom:150.893333pt;}
.y278{bottom:153.421333pt;}
.y1a8{bottom:153.949333pt;}
.y1c{bottom:155.000000pt;}
.y1e7{bottom:158.053333pt;}
.yb3{bottom:159.797333pt;}
.y1f7{bottom:160.846667pt;}
.y23f{bottom:161.550667pt;}
.yed{bottom:162.792000pt;}
.y1e8{bottom:162.876000pt;}
.y7d{bottom:164.164000pt;}
.y133{bottom:164.453333pt;}
.y22a{bottom:167.613333pt;}
.y45{bottom:167.630667pt;}
.y277{bottom:168.762667pt;}
.y1a7{bottom:170.686667pt;}
.y1b{bottom:170.901333pt;}
.y1e5{bottom:174.790667pt;}
.yb2{bottom:176.534667pt;}
.y23e{bottom:176.893333pt;}
.yec{bottom:179.529333pt;}
.y1e6{bottom:179.613333pt;}
.y1ed{bottom:180.784000pt;}
.y7c{bottom:180.901333pt;}
.y276{bottom:184.105333pt;}
.y44{bottom:184.368000pt;}
.y109{bottom:184.390667pt;}
.y1a{bottom:186.801333pt;}
.y1a6{bottom:191.409333pt;}
.y1e4{bottom:191.528000pt;}
.y23d{bottom:192.236000pt;}
.yb1{bottom:193.272000pt;}
.yeb{bottom:196.266667pt;}
.y7b{bottom:197.638667pt;}
.y275{bottom:199.448000pt;}
.y43{bottom:201.105333pt;}
.y19{bottom:202.701333pt;}
.y23c{bottom:207.578667pt;}
.y1e3{bottom:208.265333pt;}
.yb0{bottom:210.009333pt;}
.yea{bottom:213.004000pt;}
.y7a{bottom:214.376000pt;}
.y274{bottom:214.790667pt;}
.y42{bottom:217.842667pt;}
.y1a5{bottom:218.454667pt;}
.y23b{bottom:222.921333pt;}
.y1e2{bottom:225.002667pt;}
.yaf{bottom:226.746667pt;}
.ye9{bottom:229.741333pt;}
.y273{bottom:230.133333pt;}
.y79{bottom:231.113333pt;}
.y41{bottom:234.580000pt;}
.y1a4{bottom:235.550667pt;}
.y23a{bottom:238.262667pt;}
.y1e1{bottom:241.740000pt;}
.yad{bottom:243.484000pt;}
.y272{bottom:245.476000pt;}
.ye8{bottom:246.478667pt;}
.y78{bottom:247.850667pt;}
.yae{bottom:248.305333pt;}
.y40{bottom:251.317333pt;}
.y1a3{bottom:252.646667pt;}
.y239{bottom:257.590667pt;}
.y1e0{bottom:258.477333pt;}
.yac{bottom:260.220000pt;}
.y271{bottom:260.818667pt;}
.ye7{bottom:263.216000pt;}
.y77{bottom:264.588000pt;}
.y3f{bottom:268.053333pt;}
.y19b{bottom:272.584000pt;}
.y18{bottom:273.154667pt;}
.y19a{bottom:273.621333pt;}
.y1df{bottom:275.214667pt;}
.y270{bottom:276.161333pt;}
.yab{bottom:276.957333pt;}
.y229{bottom:279.953333pt;}
.y76{bottom:281.325333pt;}
.ye6{bottom:283.937333pt;}
.y3e{bottom:284.790667pt;}
.y238{bottom:287.478667pt;}
.y17{bottom:289.054667pt;}
.y199{bottom:290.358667pt;}
.y26f{bottom:291.502667pt;}
.y1de{bottom:291.952000pt;}
.yaa{bottom:293.694667pt;}
.y228{bottom:296.690667pt;}
.y75{bottom:298.062667pt;}
.y3d{bottom:301.528000pt;}
.y16{bottom:304.954667pt;}
.y26e{bottom:306.845333pt;}
.y198{bottom:307.096000pt;}
.y1dd{bottom:308.689333pt;}
.ya9{bottom:310.432000pt;}
.y237{bottom:311.070667pt;}
.y227{bottom:313.428000pt;}
.ye5{bottom:313.825333pt;}
.y74{bottom:314.800000pt;}
.y3c{bottom:318.265333pt;}
.y15{bottom:320.856000pt;}
.y26d{bottom:322.188000pt;}
.y197{bottom:323.833333pt;}
.y1dc{bottom:325.426667pt;}
.y236{bottom:326.692000pt;}
.ya8{bottom:327.169333pt;}
.y200{bottom:328.239187pt;}
.ye4{bottom:330.562667pt;}
.y73{bottom:331.537333pt;}
.y3b{bottom:335.002667pt;}
.y1ff{bottom:336.799067pt;}
.y26c{bottom:337.530667pt;}
.y196{bottom:340.570667pt;}
.y226{bottom:341.190667pt;}
.y1db{bottom:342.164000pt;}
.y235{bottom:342.313333pt;}
.ya7{bottom:343.906667pt;}
.ye3{bottom:347.300000pt;}
.y72{bottom:348.274667pt;}
.y3a{bottom:351.740000pt;}
.y26b{bottom:352.873333pt;}
.yba{bottom:353.839187pt;}
.y14{bottom:354.688000pt;}
.y195{bottom:357.308000pt;}
.y225{bottom:358.286667pt;}
.y15d{bottom:358.652000pt;}
.y1da{bottom:358.901333pt;}
.ya6{bottom:360.644000pt;}
.yb9{bottom:362.399067pt;}
.y71{bottom:365.012000pt;}
.y234{bottom:365.905333pt;}
.y26a{bottom:368.216000pt;}
.y39{bottom:368.477333pt;}
.y10b{bottom:369.548520pt;}
.y13{bottom:370.589333pt;}
.y194{bottom:374.044000pt;}
.y224{bottom:375.382667pt;}
.y15c{bottom:375.389333pt;}
.y1d9{bottom:375.638667pt;}
.ye2{bottom:375.793333pt;}
.ya5{bottom:377.381333pt;}
.y10a{bottom:378.108400pt;}
.y70{bottom:381.749333pt;}
.y269{bottom:383.558667pt;}
.ye1{bottom:384.906667pt;}
.y38{bottom:385.214667pt;}
.y12{bottom:386.489333pt;}
.y233{bottom:389.496000pt;}
.y193{bottom:390.781333pt;}
.y15b{bottom:392.126667pt;}
.y1d7{bottom:392.376000pt;}
.y223{bottom:392.478667pt;}
.ya4{bottom:394.118667pt;}
.y1d8{bottom:397.197333pt;}
.y1ba{bottom:397.810667pt;}
.y6f{bottom:398.486667pt;}
.y268{bottom:398.901333pt;}
.y37{bottom:401.952000pt;}
.y192{bottom:407.518667pt;}
.y15a{bottom:408.864000pt;}
.y1d5{bottom:409.113333pt;}
.y1b8{bottom:410.430667pt;}
.ya3{bottom:410.856000pt;}
.y1fe{bottom:412.416000pt;}
.y232{bottom:413.088000pt;}
.y1d6{bottom:413.934667pt;}
.y267{bottom:414.244000pt;}
.y1b9{bottom:414.288000pt;}
.y6e{bottom:415.224000pt;}
.y11{bottom:418.330667pt;}
.y36{bottom:422.674667pt;}
.y1b7{bottom:423.049333pt;}
.ye0{bottom:423.169333pt;}
.y191{bottom:424.256000pt;}
.y159{bottom:425.601333pt;}
.y1d3{bottom:425.850667pt;}
.y266{bottom:429.585333pt;}
.y1d4{bottom:430.672000pt;}
.ya2{bottom:431.578667pt;}
.y6d{bottom:431.961333pt;}
.y231{bottom:436.680000pt;}
.ydf{bottom:439.906667pt;}
.y190{bottom:440.993333pt;}
.y158{bottom:442.338667pt;}
.y1d1{bottom:442.588000pt;}
.y1b6{bottom:443.269333pt;}
.y265{bottom:444.928000pt;}
.y1d2{bottom:447.409333pt;}
.y6c{bottom:448.698667pt;}
.y10{bottom:450.170667pt;}
.y230{bottom:452.301333pt;}
.y18f{bottom:457.730667pt;}
.y157{bottom:459.076000pt;}
.y1d0{bottom:459.325333pt;}
.y264{bottom:460.270667pt;}
.ya1{bottom:461.466667pt;}
.y1b5{bottom:464.282667pt;}
.y6b{bottom:465.436000pt;}
.yf{bottom:466.070667pt;}
.yde{bottom:467.530667pt;}
.y22f{bottom:467.922667pt;}
.y169{bottom:472.690667pt;}
.y18e{bottom:474.468000pt;}
.y263{bottom:475.613333pt;}
.y156{bottom:475.813333pt;}
.y1cf{bottom:476.062667pt;}
.ya0{bottom:478.204000pt;}
.ye{bottom:481.972000pt;}
.y6a{bottom:482.173333pt;}
.y22e{bottom:483.544000pt;}
.ydd{bottom:484.626667pt;}
.y1b4{bottom:485.297333pt;}
.y35{bottom:489.474667pt;}
.y262{bottom:490.956000pt;}
.y18d{bottom:491.205333pt;}
.y168{bottom:492.312000pt;}
.y155{bottom:492.549333pt;}
.y1ce{bottom:492.800000pt;}
.y9f{bottom:494.941333pt;}
.yd{bottom:497.872000pt;}
.y69{bottom:498.910667pt;}
.y22d{bottom:499.165333pt;}
.yb8{bottom:504.564000pt;}
.y261{bottom:506.298667pt;}
.y1b3{bottom:506.310667pt;}
.y34{bottom:506.769333pt;}
.y18c{bottom:507.942667pt;}
.y153{bottom:509.286667pt;}
.y1cd{bottom:509.537333pt;}
.y167{bottom:511.333333pt;}
.y9e{bottom:511.678667pt;}
.yc{bottom:513.772000pt;}
.y154{bottom:514.109333pt;}
.y22c{bottom:514.786667pt;}
.y68{bottom:515.648000pt;}
.y260{bottom:521.641333pt;}
.y18b{bottom:524.680000pt;}
.y152{bottom:526.024000pt;}
.y1cc{bottom:526.274667pt;}
.y1b2{bottom:527.325333pt;}
.y9d{bottom:528.416000pt;}
.yb{bottom:529.673333pt;}
.y166{bottom:530.354667pt;}
.y67{bottom:532.384000pt;}
.y25f{bottom:536.984000pt;}
.y33{bottom:540.005333pt;}
.y189{bottom:541.417333pt;}
.y151{bottom:542.761333pt;}
.y1cb{bottom:543.012000pt;}
.y9c{bottom:545.153333pt;}
.ya{bottom:545.573333pt;}
.y18a{bottom:546.240000pt;}
.y108{bottom:546.348000pt;}
.y1b1{bottom:548.338667pt;}
.y66{bottom:549.121333pt;}
.y165{bottom:549.376000pt;}
.y25e{bottom:552.325333pt;}
.y32{bottom:557.300000pt;}
.y188{bottom:558.154667pt;}
.y14f{bottom:559.498667pt;}
.y1ca{bottom:559.749333pt;}
.y9b{bottom:561.890667pt;}
.y107{bottom:563.085333pt;}
.y150{bottom:564.321333pt;}
.y7{bottom:565.458715pt;}
.y65{bottom:565.858667pt;}
.y25d{bottom:567.668000pt;}
.y164{bottom:568.397333pt;}
.y1b0{bottom:569.353333pt;}
.y31{bottom:574.596000pt;}
.y187{bottom:574.892000pt;}
.y14e{bottom:576.236000pt;}
.y1c9{bottom:576.486667pt;}
.y9a{bottom:578.628000pt;}
.y106{bottom:579.822667pt;}
.y64{bottom:582.596000pt;}
.y25c{bottom:583.010667pt;}
.y163{bottom:587.418667pt;}
.y1af{bottom:590.366667pt;}
.y186{bottom:591.629333pt;}
.y2f{bottom:591.890667pt;}
.y14d{bottom:592.973333pt;}
.y1c8{bottom:593.222667pt;}
.y99{bottom:595.365333pt;}
.y30{bottom:596.230667pt;}
.y105{bottom:596.560000pt;}
.y1ae{bottom:597.673333pt;}
.y25b{bottom:598.353333pt;}
.y63{bottom:599.333333pt;}
.y162{bottom:606.440000pt;}
.y184{bottom:608.366667pt;}
.y2e{bottom:609.185333pt;}
.y14c{bottom:609.710667pt;}
.y1c7{bottom:609.960000pt;}
.y98{bottom:612.102667pt;}
.y185{bottom:613.188000pt;}
.y104{bottom:613.297333pt;}
.y25a{bottom:613.696000pt;}
.y62{bottom:616.070667pt;}
.y182{bottom:625.104000pt;}
.y161{bottom:625.462667pt;}
.y1ad{bottom:625.993333pt;}
.y14b{bottom:626.448000pt;}
.y2d{bottom:626.481333pt;}
.y1c6{bottom:626.697333pt;}
.y97{bottom:628.840000pt;}
.y259{bottom:629.038667pt;}
.y183{bottom:629.925333pt;}
.y103{bottom:630.034667pt;}
.y61{bottom:632.808000pt;}
.y181{bottom:641.841333pt;}
.y14a{bottom:643.185333pt;}
.y1c5{bottom:643.434667pt;}
.y2c{bottom:643.776000pt;}
.y258{bottom:644.381333pt;}
.y160{bottom:644.484000pt;}
.y96{bottom:645.576000pt;}
.y102{bottom:646.772000pt;}
.y60{bottom:649.545333pt;}
.y1ac{bottom:654.098667pt;}
.y180{bottom:658.578667pt;}
.y257{bottom:659.724000pt;}
.y149{bottom:659.922667pt;}
.y1c4{bottom:660.172000pt;}
.y2b{bottom:661.072000pt;}
.y94{bottom:662.313333pt;}
.y101{bottom:663.509333pt;}
.y5f{bottom:666.282667pt;}
.y95{bottom:667.136000pt;}
.y15f{bottom:671.194667pt;}
.y256{bottom:675.066667pt;}
.y17f{bottom:675.316000pt;}
.y148{bottom:676.660000pt;}
.y1c3{bottom:676.909333pt;}
.y2a{bottom:678.366667pt;}
.y93{bottom:679.050667pt;}
.y100{bottom:680.246667pt;}
.y5e{bottom:683.020000pt;}
.y255{bottom:690.408000pt;}
.y17e{bottom:692.053333pt;}
.y147{bottom:693.397333pt;}
.y1c2{bottom:693.646667pt;}
.y29{bottom:695.661333pt;}
.yff{bottom:696.984000pt;}
.y5d{bottom:699.757333pt;}
.y92{bottom:699.773333pt;}
.y254{bottom:705.750667pt;}
.y17d{bottom:708.790667pt;}
.y146{bottom:710.134667pt;}
.y1c1{bottom:710.384000pt;}
.y28{bottom:712.957333pt;}
.yfe{bottom:713.721333pt;}
.y1fd{bottom:714.120000pt;}
.y5c{bottom:716.494667pt;}
.y91{bottom:717.706667pt;}
.y15e{bottom:717.981333pt;}
.y253{bottom:721.093333pt;}
.y145{bottom:726.872000pt;}
.y1c0{bottom:727.121333pt;}
.y17c{bottom:729.512000pt;}
.y27{bottom:730.252000pt;}
.yfd{bottom:730.458667pt;}
.y1fc{bottom:730.857333pt;}
.y5b{bottom:733.232000pt;}
.y252{bottom:736.436000pt;}
.y1ef{bottom:737.979494pt;}
.y144{bottom:743.609333pt;}
.y1bf{bottom:743.858667pt;}
.y1ee{bottom:746.111380pt;}
.yfc{bottom:747.196000pt;}
.y17b{bottom:747.445333pt;}
.y26{bottom:747.546667pt;}
.y90{bottom:747.594667pt;}
.y5a{bottom:749.969333pt;}
.y22b{bottom:751.181333pt;}
.y251{bottom:751.778667pt;}
.y143{bottom:760.346667pt;}
.y1be{bottom:760.596000pt;}
.yfb{bottom:763.933333pt;}
.y8f{bottom:764.332000pt;}
.y25{bottom:764.842667pt;}
.y59{bottom:766.706667pt;}
.y19d{bottom:766.929853pt;}
.y250{bottom:767.121333pt;}
.y19c{bottom:775.489733pt;}
.y142{bottom:777.084000pt;}
.y17a{bottom:777.333333pt;}
.yfa{bottom:780.670667pt;}
.y8e{bottom:781.069333pt;}
.y24{bottom:782.137333pt;}
.y1bd{bottom:782.154667pt;}
.y24f{bottom:782.464000pt;}
.y58{bottom:783.444000pt;}
.y141{bottom:793.821333pt;}
.y179{bottom:794.070667pt;}
.yf9{bottom:797.408000pt;}
.y8d{bottom:797.806667pt;}
.y57{bottom:800.181333pt;}
.y140{bottom:810.558667pt;}
.y178{bottom:810.808000pt;}
.y24e{bottom:813.149333pt;}
.yf8{bottom:814.145333pt;}
.y8c{bottom:814.544000pt;}
.y1bc{bottom:815.629333pt;}
.y23{bottom:816.436000pt;}
.y56{bottom:816.918667pt;}
.y13f{bottom:827.296000pt;}
.y177{bottom:827.545333pt;}
.y24d{bottom:828.490667pt;}
.y22{bottom:830.781333pt;}
.y8b{bottom:831.281333pt;}
.y55{bottom:833.656000pt;}
.yf7{bottom:834.868000pt;}
.y24c{bottom:843.833333pt;}
.y13e{bottom:844.033333pt;}
.y176{bottom:844.282667pt;}
.y21{bottom:845.128000pt;}
.y8a{bottom:848.018667pt;}
.y54{bottom:850.393333pt;}
.y24b{bottom:859.176000pt;}
.y13d{bottom:860.770667pt;}
.y175{bottom:861.020000pt;}
.y89{bottom:864.754667pt;}
.y53{bottom:867.130667pt;}
.y24a{bottom:874.518667pt;}
.y13c{bottom:877.508000pt;}
.y174{bottom:877.757333pt;}
.y88{bottom:881.492000pt;}
.y52{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y249{bottom:889.861333pt;}
.y13b{bottom:894.245333pt;}
.y173{bottom:894.494667pt;}
.y87{bottom:898.229333pt;}
.y51{bottom:900.605333pt;}
.y248{bottom:905.204000pt;}
.y13a{bottom:910.982667pt;}
.y172{bottom:911.232000pt;}
.y86{bottom:914.966667pt;}
.y1bb{bottom:916.053333pt;}
.y50{bottom:917.342667pt;}
.y247{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y139{bottom:927.720000pt;}
.y170{bottom:927.969333pt;}
.y85{bottom:931.704000pt;}
.y171{bottom:932.790667pt;}
.y4f{bottom:934.080000pt;}
.y246{bottom:935.889333pt;}
.yf6{bottom:936.526667pt;}
.y138{bottom:944.456000pt;}
.y16e{bottom:944.706667pt;}
.y84{bottom:948.441333pt;}
.y16f{bottom:949.528000pt;}
.y4{bottom:950.616000pt;}
.y4e{bottom:950.817333pt;}
.y245{bottom:951.230667pt;}
.y137{bottom:961.193333pt;}
.y16c{bottom:961.444000pt;}
.y83{bottom:965.178667pt;}
.y16d{bottom:966.265333pt;}
.y244{bottom:966.573333pt;}
.y4d{bottom:967.554667pt;}
.yf5{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y16b{bottom:978.181333pt;}
.y82{bottom:981.916000pt;}
.y4c{bottom:984.290667pt;}
.y16a{bottom:994.918667pt;}
.y1{bottom:1014.377333pt;}
.y4b{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h2d{height:23.209028pt;}
.h22{height:23.359375pt;}
.h13{height:23.521527pt;}
.ha{height:27.076941pt;}
.hb{height:27.262909pt;}
.h23{height:29.397999pt;}
.h9{height:29.433775pt;}
.h31{height:29.514570pt;}
.h30{height:29.652766pt;}
.h8{height:30.399505pt;}
.h26{height:30.732706pt;}
.hc{height:30.945242pt;}
.h12{height:30.949519pt;}
.h16{height:31.067969pt;}
.h11{height:31.157778pt;}
.h15{height:31.213438pt;}
.h34{height:33.287109pt;}
.h33{height:33.442969pt;}
.h27{height:34.004199pt;}
.hd{height:34.574438pt;}
.he{height:34.813542pt;}
.h19{height:35.039062pt;}
.h36{height:35.052646pt;}
.h18{height:35.203125pt;}
.h32{height:37.059648pt;}
.hf{height:38.415786pt;}
.h21{height:38.462187pt;}
.h2e{height:38.638362pt;}
.h10{height:38.681455pt;}
.h4{height:38.947124pt;}
.h17{height:39.010156pt;}
.h2c{height:39.024455pt;}
.h29{height:39.192812pt;}
.h6{height:39.531597pt;}
.h1d{height:41.249292pt;}
.h1b{height:41.317969pt;}
.h1c{height:44.199121pt;}
.h2{height:45.272024pt;}
.h2a{height:63.795772pt;}
.h5{height:69.148877pt;}
.h2b{height:72.784306pt;}
.h3{height:73.179920pt;}
.h1f{height:75.134788pt;}
.h1e{height:76.937733pt;}
.h1a{height:88.681297pt;}
.h35{height:282.762667pt;}
.h14{height:324.653333pt;}
.h20{height:340.944000pt;}
.h2f{height:696.434867pt;}
.h28{height:722.617333pt;}
.h24{height:793.701333pt;}
.h25{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:174.865465pt;}
.w4{width:449.745333pt;}
.wa{width:472.436000pt;}
.w9{width:489.716133pt;}
.w8{width:513.162667pt;}
.w5{width:521.308000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.xbf{left:-180.072000pt;}
.x44{left:-170.762667pt;}
.x88{left:-169.017333pt;}
.xb3{left:-157.802600pt;}
.xc0{left:-6.232000pt;}
.x0{left:0.000000pt;}
.x46{left:3.077333pt;}
.x89{left:4.822667pt;}
.xb5{left:7.345400pt;}
.xc1{left:22.088000pt;}
.x3{left:26.021437pt;}
.x47{left:31.397333pt;}
.x1{left:48.000000pt;}
.x2{left:51.594354pt;}
.x73{left:55.970667pt;}
.x60{left:61.534667pt;}
.x78{left:63.185333pt;}
.x61{left:65.534667pt;}
.x96{left:68.109333pt;}
.x77{left:72.122667pt;}
.x76{left:73.854667pt;}
.x72{left:75.730667pt;}
.xc6{left:76.686667pt;}
.x97{left:78.080000pt;}
.x94{left:80.141333pt;}
.x71{left:110.224000pt;}
.x93{left:119.665333pt;}
.x91{left:121.477333pt;}
.x75{left:130.065333pt;}
.x95{left:141.316000pt;}
.x48{left:208.437333pt;}
.x5d{left:221.026667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x64{left:226.554667pt;}
.x52{left:229.196000pt;}
.x65{left:231.862667pt;}
.x7e{left:236.064000pt;}
.x74{left:241.866667pt;}
.x9f{left:244.340000pt;}
.x82{left:249.218667pt;}
.xa{left:251.365333pt;}
.x83{left:255.269333pt;}
.x4a{left:257.315901pt;}
.xa5{left:263.174667pt;}
.xa4{left:267.789333pt;}
.xa6{left:269.816000pt;}
.x9d{left:271.934667pt;}
.x62{left:273.012000pt;}
.xc2{left:273.925333pt;}
.x6{left:275.052000pt;}
.x4c{left:276.285333pt;}
.x55{left:279.017333pt;}
.x63{left:282.890667pt;}
.x9e{left:285.217333pt;}
.x9{left:286.777333pt;}
.x56{left:289.942667pt;}
.x5e{left:291.854667pt;}
.x5f{left:295.854667pt;}
.x87{left:297.256000pt;}
.x6d{left:300.178667pt;}
.xa7{left:302.892000pt;}
.x23{left:306.412000pt;}
.x6e{left:309.214667pt;}
.x53{left:310.617333pt;}
.x24{left:313.054667pt;}
.x59{left:316.406667pt;}
.x49{left:317.556573pt;}
.x54{left:323.901333pt;}
.x2b{left:328.605333pt;}
.xc5{left:335.349333pt;}
.x4b{left:339.957333pt;}
.x2c{left:341.889333pt;}
.x1d{left:344.726667pt;}
.x70{left:348.042667pt;}
.xac{left:350.172000pt;}
.x1e{left:351.368000pt;}
.x7{left:353.624000pt;}
.xb0{left:356.944000pt;}
.x67{left:357.949333pt;}
.x9c{left:363.865333pt;}
.x8{left:365.190667pt;}
.xad{left:366.372000pt;}
.xb1{left:376.617333pt;}
.xae{left:379.654667pt;}
.xbb{left:381.318667pt;}
.xbc{left:385.969333pt;}
.xb2{left:389.901333pt;}
.x6f{left:393.530667pt;}
.x7b{left:398.629333pt;}
.x26{left:403.381333pt;}
.x1f{left:409.489333pt;}
.x27{left:417.645333pt;}
.x4d{left:419.314667pt;}
.x20{left:422.772000pt;}
.x68{left:431.832000pt;}
.x4f{left:439.834667pt;}
.x45{left:445.077221pt;}
.x69{left:448.373333pt;}
.x50{left:450.760000pt;}
.x8a{left:454.418667pt;}
.x32{left:459.122667pt;}
.x8b{left:460.396000pt;}
.x6a{left:461.656000pt;}
.xa1{left:463.685333pt;}
.x4e{left:468.072000pt;}
.xb{left:471.918667pt;}
.x51{left:473.686667pt;}
.x66{left:475.073333pt;}
.xa2{left:476.969333pt;}
.xc{left:478.561333pt;}
.x90{left:481.729333pt;}
.x57{left:485.873333pt;}
.x1b{left:488.170667pt;}
.xb4{left:489.945043pt;}
.x58{left:491.922667pt;}
.x8c{left:494.818667pt;}
.xb6{left:496.736000pt;}
.x35{left:497.697333pt;}
.x98{left:499.536000pt;}
.x1c{left:501.453333pt;}
.xa3{left:506.268000pt;}
.x99{left:508.388000pt;}
.x36{left:510.981333pt;}
.x5c{left:512.313333pt;}
.xbd{left:515.462667pt;}
.x39{left:518.913333pt;}
.xbe{left:522.110667pt;}
.xaa{left:525.821333pt;}
.x6b{left:528.388000pt;}
.xb7{left:530.892000pt;}
.x3a{left:532.197333pt;}
.x37{left:535.518667pt;}
.x6c{left:539.084000pt;}
.x2d{left:540.416000pt;}
.xab{left:542.409333pt;}
.xa8{left:546.973333pt;}
.x38{left:548.802667pt;}
.x2e{left:553.700000pt;}
.xa9{left:555.857333pt;}
.x2f{left:557.086667pt;}
.x3c{left:562.484000pt;}
.x11{left:567.936000pt;}
.x30{left:570.370667pt;}
.x7c{left:573.457333pt;}
.x12{left:574.578667pt;}
.x21{left:575.826667pt;}
.x13{left:577.965333pt;}
.x7d{left:579.169333pt;}
.x79{left:580.665333pt;}
.x7f{left:581.628000pt;}
.x3d{left:583.652000pt;}
.x14{left:584.606667pt;}
.x7a{left:586.377333pt;}
.x22{left:589.109333pt;}
.x84{left:590.892000pt;}
.xa0{left:593.458667pt;}
.x80{left:594.912000pt;}
.x31{left:598.162667pt;}
.x85{left:599.929333pt;}
.xcc{left:607.544000pt;}
.x28{left:608.829333pt;}
.x8d{left:609.841333pt;}
.xc3{left:612.568000pt;}
.x8e{left:615.149333pt;}
.x29{left:622.113333pt;}
.xaf{left:623.945333pt;}
.xc4{left:625.852000pt;}
.xb8{left:645.012000pt;}
.xc7{left:647.124000pt;}
.xb9{left:650.320000pt;}
.xca{left:654.465333pt;}
.x2a{left:657.246667pt;}
.x25{left:663.149333pt;}
.x92{left:665.532000pt;}
.x3e{left:668.444000pt;}
.x15{left:669.916000pt;}
.xc8{left:671.034667pt;}
.x86{left:672.894667pt;}
.x16{left:676.558667pt;}
.xcb{left:678.376000pt;}
.x3f{left:679.369333pt;}
.x5a{left:681.702667pt;}
.x17{left:683.333333pt;}
.x40{left:686.270667pt;}
.x3b{left:689.446667pt;}
.x41{left:692.320000pt;}
.x5b{left:694.985333pt;}
.x18{left:696.616000pt;}
.x42{left:699.221333pt;}
.x81{left:700.474667pt;}
.xc9{left:702.341333pt;}
.x8f{left:705.716000pt;}
.x43{left:706.713333pt;}
.x19{left:708.434667pt;}
.x1a{left:715.077333pt;}
.xd{left:724.572000pt;}
.x33{left:726.842667pt;}
.xe{left:731.213333pt;}
.xba{left:732.893333pt;}
.xf{left:734.578667pt;}
.x34{left:740.126667pt;}
.x10{left:741.220000pt;}
.x9a{left:960.286667pt;}
.x9b{left:973.641333pt;}
}




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