
    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_715cd2d996e32e40afb0173d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b856185e2bc9bfdd4ab8900a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight: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_dacc1acd4918eb857bcba0ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1144cc0ec3d185b3a794c9f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f9fc99c37eda12eae6050e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight: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_e90be55f2c33bfa8d025706a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8ad79279e065aafd138bfa55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;font-style:normal;font-weight: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_a57398b8489de5a1515bcc9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913086;font-style:normal;font-weight: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_7bb7179a06209b366d79300d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight: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_e5ca777556e6b37e749fc21e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight: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_a34dfcf6c293b299bce5e77c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight: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_a81be5ee96f56a37145f638d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.956543;font-style:normal;font-weight: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_63768d6b81f473d21f882457.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight: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_61cfceef61f101b7bcba1987.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.691406;font-style:normal;font-weight: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_e5ca777556e6b37e749fc21e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;font-style:normal;font-weight: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_40114b9b58902da37838147a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;font-style:normal;font-weight: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_1843aea48d266062a9c606fb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;font-style:normal;font-weight: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_c0d81e3c673aedcd3b078c09.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893555;font-style:normal;font-weight: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_d2d0bc72e4af1cd6b6e7dcf6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.861816;font-style:normal;font-weight: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_1f137afa42a67550925b4fa6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861816;font-style:normal;font-weight: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_c5f3c046a765b8cbfa55413a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight: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_a9a6f7672c9bf93fb9e0a0ba.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910645;font-style:normal;font-weight: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_146741c2f76dab5930d447dc.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.893555;font-style:normal;font-weight: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_82ef9feb40726a0376ecdb7d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861816;font-style:normal;font-weight: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_34e20bd38f680c5dee69e8be.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.861816;font-style:normal;font-weight: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_663f8842d3f8aa5fa411b360.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.858887;font-style:normal;font-weight: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_e5ca777556e6b37e749fc21e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fff6b10b722237bff40de2c9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_0f19603111e9f4bc28170b51.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f4172a80813f5727b207947b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_1a0328160b126c7aeff83878.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_c5f3c046a765b8cbfa55413a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d7f43f0f83abb96c86098893.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_2326905d7d6c70df82d5712f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_cfd7eeb288d615900f5a7df6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c5d32c8aaf399493e8dcbdfe.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_57b2f72659e3d78257ccddcb.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_34559072feae99310795a8af.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.858887;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185055,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186940,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.234814,0.000000,-0.078270,0.237432,0,0);-ms-transform:matrix(0.234814,0.000000,-0.078270,0.237432,0,0);-webkit-transform:matrix(0.234814,0.000000,-0.078270,0.237432,0,0);}
.m5{transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245345,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247243,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-52.214400px;}
.v2{vertical-align:-30.412200px;}
.v4{vertical-align:-15.450000px;}
.v3{vertical-align:-4.800000px;}
.v1{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:32.994000px;}
.ls1c{letter-spacing:-2.331000px;}
.ls36{letter-spacing:-1.998000px;}
.ls2e{letter-spacing:-1.639509px;}
.ls35{letter-spacing:-1.417820px;}
.ls30{letter-spacing:-0.926679px;}
.ls32{letter-spacing:-0.855396px;}
.ls64{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.693000px;}
.ls60{letter-spacing:-0.688248px;}
.ls25{letter-spacing:-0.669240px;}
.ls3f{letter-spacing:-0.593794px;}
.ls4d{letter-spacing:-0.589008px;}
.ls2{letter-spacing:-0.561000px;}
.ls50{letter-spacing:-0.539136px;}
.ls5c{letter-spacing:-0.534317px;}
.ls5{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.441000px;}
.ls66{letter-spacing:-0.408000px;}
.lsc{letter-spacing:-0.378000px;}
.ls1{letter-spacing:-0.357000px;}
.ls34{letter-spacing:-0.333605px;}
.ls51{letter-spacing:-0.315000px;}
.ls3e{letter-spacing:-0.296897px;}
.ls4c{letter-spacing:-0.294504px;}
.ls62{letter-spacing:-0.292819px;}
.ls26{letter-spacing:-0.284731px;}
.ls43{letter-spacing:-0.274925px;}
.ls4f{letter-spacing:-0.269568px;}
.ls5b{letter-spacing:-0.267158px;}
.ls6a{letter-spacing:-0.255000px;}
.ls7{letter-spacing:-0.252000px;}
.ls2f{letter-spacing:-0.213849px;}
.ls6{letter-spacing:-0.189000px;}
.ls67{letter-spacing:-0.153000px;}
.ls2d{letter-spacing:-0.142566px;}
.ls45{letter-spacing:-0.137462px;}
.ls3{letter-spacing:-0.126000px;}
.ls18{letter-spacing:-0.078376px;}
.ls13{letter-spacing:-0.077700px;}
.ls4{letter-spacing:-0.063000px;}
.ls6b{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000300px;}
.ls2a{letter-spacing:0.000450px;}
.ls57{letter-spacing:0.022063px;}
.ls49{letter-spacing:0.022464px;}
.ls56{letter-spacing:0.022663px;}
.ls37{letter-spacing:0.024341px;}
.ls3a{letter-spacing:0.024941px;}
.ls8{letter-spacing:0.063000px;}
.lsb{letter-spacing:0.126000px;}
.ls31{letter-spacing:0.142566px;}
.ls29{letter-spacing:0.142926px;}
.ls41{letter-spacing:0.189000px;}
.ls54{letter-spacing:0.200369px;}
.ls4a{letter-spacing:0.202176px;}
.ls68{letter-spacing:0.204000px;}
.ls44{letter-spacing:0.206194px;}
.ls22{letter-spacing:0.213548px;}
.ls61{letter-spacing:0.219614px;}
.ls47{letter-spacing:0.220878px;}
.ls39{letter-spacing:0.222673px;}
.ls33{letter-spacing:0.250204px;}
.lsa{letter-spacing:0.252000px;}
.ls63{letter-spacing:0.292819px;}
.ls5a{letter-spacing:0.299699px;}
.ls4e{letter-spacing:0.302400px;}
.ls42{letter-spacing:0.308410px;}
.ls3b{letter-spacing:0.317100px;}
.ls24{letter-spacing:0.319410px;}
.ls5f{letter-spacing:0.328482px;}
.ls4b{letter-spacing:0.330372px;}
.ls3d{letter-spacing:0.333056px;}
.ls2c{letter-spacing:0.374237px;}
.ls65{letter-spacing:0.378000px;}
.ls69{letter-spacing:0.408000px;}
.ls23{letter-spacing:0.456300px;}
.ls3c{letter-spacing:3.013350px;}
.ls5e{letter-spacing:3.597600px;}
.ls59{letter-spacing:3.852600px;}
.ls58{letter-spacing:3.853200px;}
.ls52{letter-spacing:4.423800px;}
.ls48{letter-spacing:4.464000px;}
.ls46{letter-spacing:4.877100px;}
.ls5d{letter-spacing:6.726000px;}
.ls38{letter-spacing:7.453950px;}
.ls40{letter-spacing:8.077800px;}
.ls15{letter-spacing:8.879756px;}
.ls27{letter-spacing:12.830850px;}
.ls55{letter-spacing:19.836600px;}
.ls53{letter-spacing:20.407800px;}
.ls2b{letter-spacing:20.493900px;}
.ls19{letter-spacing:22.097714px;}
.ls16{letter-spacing:24.673522px;}
.ls11{letter-spacing:34.926150px;}
.ls14{letter-spacing:35.229832px;}
.ls12{letter-spacing:56.682150px;}
.ls17{letter-spacing:57.175000px;}
.ls1d{letter-spacing:64.243200px;}
.ls1e{letter-spacing:73.113600px;}
.lsd{letter-spacing:76.813200px;}
.ls10{letter-spacing:79.206401px;}
.ls1a{letter-spacing:91.056000px;}
.lse{letter-spacing:100.812600px;}
.lsf{letter-spacing:103.651800px;}
.ls1b{letter-spacing:224.582400px;}
.ls21{letter-spacing:427.526400px;}
.ls20{letter-spacing:447.619200px;}
.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;}
}
.ws6d{word-spacing:-447.619200px;}
.ws6e{word-spacing:-427.526400px;}
.ws5e{word-spacing:-224.582400px;}
.ws4e{word-spacing:-67.016250px;}
.ws43{word-spacing:-66.394650px;}
.ws4f{word-spacing:-61.488000px;}
.ws5a{word-spacing:-34.926150px;}
.ws4c{word-spacing:-22.921500px;}
.ws90{word-spacing:-21.100504px;}
.ws91{word-spacing:-19.432480px;}
.ws51{word-spacing:-18.997650px;}
.wsc0{word-spacing:-18.778723px;}
.ws137{word-spacing:-18.520814px;}
.ws136{word-spacing:-18.301200px;}
.wsbf{word-spacing:-18.259153px;}
.wseb{word-spacing:-18.111996px;}
.ws134{word-spacing:-18.008381px;}
.ws8c{word-spacing:-17.820750px;}
.ws8d{word-spacing:-17.678184px;}
.ws74{word-spacing:-17.510969px;}
.wsd7{word-spacing:-17.182800px;}
.wsd6{word-spacing:-16.907875px;}
.ws8f{word-spacing:-16.894071px;}
.wsed{word-spacing:-16.578432px;}
.ws117{word-spacing:-16.430242px;}
.ws8e{word-spacing:-16.181241px;}
.ws118{word-spacing:-16.163083px;}
.ws133{word-spacing:-15.642000px;}
.ws132{word-spacing:-14.953752px;}
.ws73{word-spacing:-14.540760px;}
.ws119{word-spacing:-14.271300px;}
.ws8b{word-spacing:-13.739837px;}
.wsae{word-spacing:-13.500000px;}
.ws153{word-spacing:-12.750000px;}
.ws16a{word-spacing:-12.699000px;}
.wsbe{word-spacing:-12.227906px;}
.wsea{word-spacing:-12.129372px;}
.ws131{word-spacing:-12.059982px;}
.ws72{word-spacing:-11.726910px;}
.ws1{word-spacing:-11.676000px;}
.wsd5{word-spacing:-11.323060px;}
.wsec{word-spacing:-11.102400px;}
.ws116{word-spacing:-11.003249px;}
.ws11a{word-spacing:-10.848000px;}
.ws47{word-spacing:-4.541555px;}
.wsd{word-spacing:-3.969000px;}
.ws16{word-spacing:-3.906000px;}
.ws40{word-spacing:-3.843000px;}
.ws3d{word-spacing:-3.780000px;}
.ws52{word-spacing:-3.717000px;}
.ws14f{word-spacing:-3.654000px;}
.wsb4{word-spacing:-3.528000px;}
.ws93{word-spacing:-3.465000px;}
.ws114{word-spacing:-3.402000px;}
.ws150{word-spacing:-3.339000px;}
.wsc4{word-spacing:-3.276000px;}
.ws4a{word-spacing:-3.253651px;}
.ws3{word-spacing:-3.213000px;}
.ws5{word-spacing:-3.162000px;}
.ws10d{word-spacing:-3.150000px;}
.ws28{word-spacing:-3.087000px;}
.ws68{word-spacing:-3.024000px;}
.ws15a{word-spacing:-3.009000px;}
.ws12{word-spacing:-2.961000px;}
.ws159{word-spacing:-2.856000px;}
.ws115{word-spacing:-2.835000px;}
.ws54{word-spacing:-2.709000px;}
.ws10c{word-spacing:-2.646000px;}
.ws4{word-spacing:-2.601000px;}
.wsd8{word-spacing:-2.583000px;}
.wsdb{word-spacing:-2.570085px;}
.ws64{word-spacing:-2.520000px;}
.ws88{word-spacing:-2.457000px;}
.ws167{word-spacing:-2.448000px;}
.ws108{word-spacing:-2.394000px;}
.ws6a{word-spacing:-2.331000px;}
.ws3f{word-spacing:-2.268000px;}
.ws15d{word-spacing:-2.244000px;}
.ws10a{word-spacing:-2.205000px;}
.wsbc{word-spacing:-2.142000px;}
.wsf9{word-spacing:-2.079000px;}
.ws2c{word-spacing:-2.016000px;}
.wsba{word-spacing:-1.953000px;}
.wsaa{word-spacing:-1.944000px;}
.wse6{word-spacing:-1.943235px;}
.wsb{word-spacing:-1.938000px;}
.ws24{word-spacing:-1.890000px;}
.ws16f{word-spacing:-1.887000px;}
.wsc{word-spacing:-1.764000px;}
.ws8a{word-spacing:-1.701000px;}
.ws109{word-spacing:-1.575000px;}
.ws166{word-spacing:-1.530000px;}
.ws58{word-spacing:-1.512000px;}
.ws95{word-spacing:-1.449000px;}
.ws165{word-spacing:-1.428000px;}
.ws39{word-spacing:-1.386000px;}
.ws92{word-spacing:-1.323000px;}
.ws34{word-spacing:-1.260000px;}
.ws1e{word-spacing:-1.197000px;}
.wsa7{word-spacing:-1.167617px;}
.ws41{word-spacing:-1.134000px;}
.ws6{word-spacing:-1.122000px;}
.wsac{word-spacing:-1.071000px;}
.ws11b{word-spacing:-1.008000px;}
.ws7b{word-spacing:-0.996559px;}
.ws1d{word-spacing:-0.945000px;}
.ws130{word-spacing:-0.935054px;}
.ws169{word-spacing:-0.918000px;}
.ws67{word-spacing:-0.882000px;}
.ws15b{word-spacing:-0.867000px;}
.wsa9{word-spacing:-0.834012px;}
.ws37{word-spacing:-0.819000px;}
.ws160{word-spacing:-0.816000px;}
.ws29{word-spacing:-0.756000px;}
.ws25{word-spacing:-0.693000px;}
.ws22{word-spacing:-0.630000px;}
.ws14{word-spacing:-0.567000px;}
.ws11d{word-spacing:-0.504000px;}
.ws65{word-spacing:-0.441000px;}
.ws11e{word-spacing:-0.378000px;}
.ws161{word-spacing:-0.357000px;}
.ws107{word-spacing:-0.315000px;}
.ws14d{word-spacing:-0.292819px;}
.ws11c{word-spacing:-0.252000px;}
.wsd4{word-spacing:-0.222673px;}
.wsf8{word-spacing:-0.220878px;}
.wse2{word-spacing:-0.206194px;}
.ws171{word-spacing:-0.204000px;}
.ws103{word-spacing:-0.202176px;}
.ws123{word-spacing:-0.200369px;}
.ws36{word-spacing:-0.189000px;}
.ws7{word-spacing:-0.153000px;}
.ws9a{word-spacing:-0.142566px;}
.ws113{word-spacing:-0.126000px;}
.ws9{word-spacing:-0.102000px;}
.ws135{word-spacing:-0.073205px;}
.ws66{word-spacing:-0.063000px;}
.wsee{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.051000px;}
.ws10{word-spacing:0.063000px;}
.ws5b{word-spacing:0.077700px;}
.ws5c{word-spacing:0.078376px;}
.ws151{word-spacing:0.126000px;}
.wse1{word-spacing:0.137462px;}
.wsc1{word-spacing:0.189000px;}
.ws98{word-spacing:0.213849px;}
.ws71{word-spacing:0.252000px;}
.ws129{word-spacing:0.267158px;}
.wsfb{word-spacing:0.269568px;}
.wsdc{word-spacing:0.274925px;}
.ws84{word-spacing:0.284731px;}
.wsf0{word-spacing:0.294504px;}
.wsd0{word-spacing:0.296897px;}
.ws8{word-spacing:0.306000px;}
.ws86{word-spacing:0.315000px;}
.wsa8{word-spacing:0.333605px;}
.ws2{word-spacing:0.357000px;}
.ws110{word-spacing:0.378000px;}
.ws15e{word-spacing:0.408000px;}
.wsc3{word-spacing:0.441000px;}
.ws26{word-spacing:0.504000px;}
.ws10b{word-spacing:0.567000px;}
.wsd3{word-spacing:0.593794px;}
.ws69{word-spacing:0.630000px;}
.ws81{word-spacing:0.640645px;}
.wsb9{word-spacing:0.693000px;}
.ws158{word-spacing:0.714000px;}
.wsda{word-spacing:0.756000px;}
.ws82{word-spacing:0.783011px;}
.ws143{word-spacing:0.805253px;}
.wsc5{word-spacing:0.816466px;}
.ws2a{word-spacing:0.819000px;}
.ws9c{word-spacing:0.855396px;}
.ws20{word-spacing:0.882000px;}
.ws35{word-spacing:0.945000px;}
.ws46{word-spacing:0.948982px;}
.wsd9{word-spacing:1.008000px;}
.ws142{word-spacing:1.024867px;}
.ws33{word-spacing:1.071000px;}
.wsf{word-spacing:1.134000px;}
.ws53{word-spacing:1.197000px;}
.ws2b{word-spacing:1.260000px;}
.ws94{word-spacing:1.323000px;}
.ws168{word-spacing:1.326000px;}
.ws121{word-spacing:1.335792px;}
.ws172{word-spacing:1.377000px;}
.wsb5{word-spacing:1.386000px;}
.ws149{word-spacing:1.464096px;}
.ws104{word-spacing:1.512000px;}
.ws87{word-spacing:1.575000px;}
.ws4b{word-spacing:1.626826px;}
.ws19{word-spacing:1.638000px;}
.ws27{word-spacing:1.701000px;}
.ws152{word-spacing:1.764000px;}
.ws3c{word-spacing:1.827000px;}
.ws155{word-spacing:1.836000px;}
.ws9b{word-spacing:1.853358px;}
.ws30{word-spacing:1.890000px;}
.ws1f{word-spacing:1.953000px;}
.ws80{word-spacing:1.993118px;}
.ws1c{word-spacing:2.016000px;}
.ws99{word-spacing:2.067207px;}
.wscd{word-spacing:2.078278px;}
.ws111{word-spacing:2.079000px;}
.wsc2{word-spacing:2.268000px;}
.ws147{word-spacing:2.269349px;}
.ws156{word-spacing:2.295000px;}
.wscc{word-spacing:2.300950px;}
.ws9e{word-spacing:2.335234px;}
.ws16b{word-spacing:2.346000px;}
.ws21{word-spacing:2.394000px;}
.ws18{word-spacing:2.520000px;}
.ws7a{word-spacing:2.633764px;}
.wsb8{word-spacing:2.646000px;}
.ws154{word-spacing:2.652000px;}
.ws120{word-spacing:2.671584px;}
.ws140{word-spacing:2.708578px;}
.wse{word-spacing:2.709000px;}
.wsca{word-spacing:2.746295px;}
.wsab{word-spacing:2.754000px;}
.wse7{word-spacing:2.835000px;}
.ws77{word-spacing:2.847312px;}
.ws3e{word-spacing:2.898000px;}
.ws148{word-spacing:2.928192px;}
.wsc6{word-spacing:2.968968px;}
.ws9d{word-spacing:2.993886px;}
.ws162{word-spacing:3.009000px;}
.ws105{word-spacing:3.024000px;}
.ws17{word-spacing:3.150000px;}
.ws106{word-spacing:3.213000px;}
.wsc7{word-spacing:3.265865px;}
.wsbd{word-spacing:3.276000px;}
.ws13f{word-spacing:3.294216px;}
.ws55{word-spacing:3.339000px;}
.wscb{word-spacing:3.340089px;}
.ws38{word-spacing:3.402000px;}
.ws63{word-spacing:3.465000px;}
.ws12e{word-spacing:3.473059px;}
.ws6c{word-spacing:3.591000px;}
.ws124{word-spacing:3.606638px;}
.wsff{word-spacing:3.639168px;}
.ws59{word-spacing:3.654000px;}
.ws16d{word-spacing:3.672000px;}
.wse5{word-spacing:3.711485px;}
.wsb6{word-spacing:3.717000px;}
.wse8{word-spacing:3.780000px;}
.ws12f{word-spacing:3.807007px;}
.ws102{word-spacing:3.841344px;}
.ws15{word-spacing:3.843000px;}
.ws170{word-spacing:3.876000px;}
.ws2f{word-spacing:3.906000px;}
.wsb7{word-spacing:3.969000px;}
.wsf4{word-spacing:3.975804px;}
.ws126{word-spacing:4.140955px;}
.ws70{word-spacing:4.158000px;}
.wsf7{word-spacing:4.196682px;}
.ws14e{word-spacing:4.284000px;}
.wse9{word-spacing:4.347000px;}
.wsfa{word-spacing:4.380480px;}
.ws157{word-spacing:4.437000px;}
.wsfc{word-spacing:4.447872px;}
.ws3a{word-spacing:4.473000px;}
.ws163{word-spacing:4.488000px;}
.ws9f{word-spacing:4.503665px;}
.ws31{word-spacing:4.536000px;}
.ws13e{word-spacing:4.538698px;}
.ws11{word-spacing:4.599000px;}
.ws125{word-spacing:4.608482px;}
.ws75{word-spacing:4.626882px;}
.ws1a{word-spacing:4.662000px;}
.ws16e{word-spacing:4.743000px;}
.ws13d{word-spacing:4.758312px;}
.wsef{word-spacing:4.785690px;}
.ws56{word-spacing:4.788000px;}
.ws89{word-spacing:4.851000px;}
.wsf1{word-spacing:4.859316px;}
.ws76{word-spacing:4.911613px;}
.ws85{word-spacing:4.914000px;}
.wsa0{word-spacing:4.920671px;}
.ws15c{word-spacing:4.947000px;}
.ws13{word-spacing:5.040000px;}
.wsbb{word-spacing:5.166000px;}
.wsa4{word-spacing:5.170874px;}
.ws173{word-spacing:5.457000px;}
.ws2e{word-spacing:5.481000px;}
.ws164{word-spacing:5.508000px;}
.ws112{word-spacing:5.670000px;}
.ws15f{word-spacing:5.712000px;}
.ws16c{word-spacing:5.763000px;}
.ws128{word-spacing:5.877485px;}
.ws1b{word-spacing:5.985000px;}
.ws10e{word-spacing:6.048000px;}
.ws2d{word-spacing:6.300000px;}
.ws13a{word-spacing:6.442022px;}
.ws13c{word-spacing:6.515227px;}
.ws57{word-spacing:6.552000px;}
.ws6b{word-spacing:6.615000px;}
.ws10f{word-spacing:6.678000px;}
.ws3b{word-spacing:6.804000px;}
.ws23{word-spacing:6.930000px;}
.ws13b{word-spacing:6.954456px;}
.ws11f{word-spacing:6.993000px;}
.ws32{word-spacing:7.056000px;}
.wse4{word-spacing:7.079314px;}
.ws42{word-spacing:7.119000px;}
.ws139{word-spacing:7.247275px;}
.ws146{word-spacing:7.320480px;}
.wsc9{word-spacing:7.348196px;}
.ws127{word-spacing:7.614014px;}
.ws138{word-spacing:7.686504px;}
.ws145{word-spacing:7.759709px;}
.wsc8{word-spacing:7.793541px;}
.ws78{word-spacing:8.328388px;}
.ws14c{word-spacing:8.345347px;}
.ws79{word-spacing:8.684302px;}
.wse3{word-spacing:8.866325px;}
.wsd2{word-spacing:9.055352px;}
.ws100{word-spacing:9.367488px;}
.ws101{word-spacing:9.839232px;}
.wsfd{word-spacing:9.974016px;}
.wse0{word-spacing:10.172218px;}
.wsf5{word-spacing:10.234014px;}
.ws12d{word-spacing:10.419178px;}
.ws12c{word-spacing:10.485967px;}
.wsfe{word-spacing:10.715328px;}
.wsf6{word-spacing:10.749396px;}
.wsf2{word-spacing:10.896648px;}
.ws14a{word-spacing:11.493154px;}
.wsf3{word-spacing:11.706534px;}
.wsde{word-spacing:11.890498px;}
.ws14b{word-spacing:11.932382px;}
.wsdd{word-spacing:12.096691px;}
.ws97{word-spacing:12.545808px;}
.wsdf{word-spacing:12.715272px;}
.ws96{word-spacing:12.759657px;}
.ws144{word-spacing:14.567755px;}
.wscf{word-spacing:14.770616px;}
.wsce{word-spacing:14.993288px;}
.wsd1{word-spacing:15.290185px;}
.ws141{word-spacing:16.471080px;}
.wsa5{word-spacing:17.347450px;}
.ws7c{word-spacing:17.795700px;}
.ws122{word-spacing:17.832823px;}
.wsa1{word-spacing:18.014659px;}
.wsa3{word-spacing:19.265677px;}
.wsa2{word-spacing:19.515881px;}
.ws12b{word-spacing:19.569353px;}
.ws7e{word-spacing:19.646453px;}
.ws12a{word-spacing:20.170459px;}
.ws7d{word-spacing:20.215915px;}
.wsa6{word-spacing:23.602540px;}
.ws7f{word-spacing:26.337636px;}
.ws49{word-spacing:29.713003px;}
.ws83{word-spacing:31.818712px;}
.ws62{word-spacing:62.428800px;}
.ws45{word-spacing:73.569118px;}
.ws50{word-spacing:94.214400px;}
.wsad{word-spacing:102.168000px;}
.wsb3{word-spacing:109.998000px;}
.wsb0{word-spacing:114.426000px;}
.wsaf{word-spacing:123.498000px;}
.ws4d{word-spacing:128.049600px;}
.wsb2{word-spacing:153.846000px;}
.wsb1{word-spacing:154.926000px;}
.ws5f{word-spacing:161.548800px;}
.ws61{word-spacing:203.011200px;}
.ws48{word-spacing:228.501212px;}
.ws60{word-spacing:311.740800px;}
.ws44{word-spacing:367.163690px;}
.ws5d{word-spacing:824.355000px;}
.ws6f{word-spacing:1148.805000px;}
._11{margin-left:-427.448426px;}
._15{margin-left:-424.737050px;}
._18{margin-left:-339.763200px;}
._17{margin-left:-269.852100px;}
._2{margin-left:-15.480000px;}
._a{margin-left:-7.503000px;}
._4{margin-left:-6.072000px;}
._c{margin-left:-4.872000px;}
._5{margin-left:-3.570000px;}
._7{margin-left:-2.535000px;}
._3{margin-left:-1.188000px;}
._6{width:1.275000px;}
._8{width:2.412000px;}
._9{width:3.492000px;}
._b{width:5.481000px;}
._d{width:6.657000px;}
._34{width:8.512646px;}
._31{width:10.745338px;}
._1c{width:12.332013px;}
._30{width:13.540046px;}
._35{width:16.732786px;}
._33{width:20.413166px;}
._32{width:21.532435px;}
._e{width:28.401664px;}
._12{width:32.632893px;}
._10{width:65.208593px;}
._14{width:69.275657px;}
._16{width:71.522850px;}
._1d{width:118.098000px;}
._2d{width:130.950000px;}
._2b{width:132.462000px;}
._2f{width:135.378000px;}
._2c{width:137.700000px;}
._2a{width:141.480000px;}
._19{width:144.474000px;}
._2e{width:147.150000px;}
._23{width:148.176000px;}
._21{width:150.498000px;}
._f{width:151.633703px;}
._29{width:154.548000px;}
._28{width:159.540000px;}
._25{width:160.650000px;}
._20{width:162.378000px;}
._22{width:167.346000px;}
._1f{width:174.150000px;}
._13{width:176.103871px;}
._27{width:181.980000px;}
._24{width:190.998000px;}
._1e{width:192.402000px;}
._26{width:197.910000px;}
._1b{width:427.526400px;}
._1{width:872.466000px;}
._0{width:1332.492000px;}
._1a{width:1666.728000px;}
.fc5{color:transparent;}
.fc4{color:rgb(16,15,13);}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(101,98,99);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.200000px;}
.fsb{font-size:36.000000px;}
.fsc{font-size:38.850000px;}
.fsf{font-size:39.187800px;}
.fs11{font-size:40.906500px;}
.fs1d{font-size:41.790000px;}
.fs4{font-size:42.000000px;}
.fs2c{font-size:42.814200px;}
.fs28{font-size:43.200000px;}
.fs20{font-size:44.058600px;}
.fs7{font-size:45.000000px;}
.fs13{font-size:45.630000px;}
.fs2f{font-size:46.926000px;}
.fs25{font-size:47.196000px;}
.fs1a{font-size:47.579400px;}
.fs24{font-size:47.760000px;}
.fs2b{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs17{font-size:53.462400px;}
.fs23{font-size:53.730000px;}
.fs16{font-size:54.000000px;}
.fs2e{font-size:57.085200px;}
.fs2a{font-size:57.600000px;}
.fs22{font-size:58.744800px;}
.fs1e{font-size:59.700000px;}
.fs3{font-size:60.000000px;}
.fs15{font-size:60.840000px;}
.fs31{font-size:62.568000px;}
.fs1f{font-size:62.685000px;}
.fs27{font-size:62.928000px;}
.fs1{font-size:63.000000px;}
.fs1c{font-size:63.439200px;}
.fs6{font-size:66.000000px;}
.fs2d{font-size:66.789600px;}
.fsd{font-size:67.200000px;}
.fs29{font-size:67.392000px;}
.fs10{font-size:67.784400px;}
.fs21{font-size:68.731200px;}
.fs9{font-size:69.000000px;}
.fs14{font-size:71.182800px;}
.fs19{font-size:71.283000px;}
.fs0{font-size:72.000000px;}
.fs30{font-size:73.204800px;}
.fs26{font-size:73.626000px;}
.fs1b{font-size:74.224200px;}
.fs18{font-size:83.401200px;}
.fse{font-size:88.815600px;}
.fs12{font-size:100.800000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.y228{bottom:-631.863300px;}
.y23d{bottom:-590.399850px;}
.y257{bottom:-587.940900px;}
.y256{bottom:-567.245400px;}
.y23c{bottom:-558.959550px;}
.y199{bottom:-554.588700px;}
.y1b1{bottom:-554.588550px;}
.y255{bottom:-546.549900px;}
.y198{bottom:-529.732200px;}
.y1b0{bottom:-529.732050px;}
.y23b{bottom:-527.367900px;}
.y254{bottom:-525.854400px;}
.y253{bottom:-505.158900px;}
.y23a{bottom:-495.927450px;}
.y127{bottom:-493.009200px;}
.y252{bottom:-484.463400px;}
.y239{bottom:-464.487000px;}
.y251{bottom:-463.767900px;}
.y126{bottom:-457.195350px;}
.y250{bottom:-443.072400px;}
.y151{bottom:-439.268100px;}
.y238{bottom:-433.007550px;}
.yff{bottom:-423.498450px;}
.y24f{bottom:-422.376900px;}
.y125{bottom:-421.197300px;}
.y150{bottom:-407.350350px;}
.y24e{bottom:-401.681400px;}
.y237{bottom:-401.410650px;}
.yfe{bottom:-392.926350px;}
.y124{bottom:-385.377450px;}
.y24d{bottom:-380.985900px;}
.y14f{bottom:-375.472050px;}
.y236{bottom:-369.970200px;}
.yfd{bottom:-362.316150px;}
.y24c{bottom:-360.290400px;}
.y123{bottom:-349.557600px;}
.y14e{bottom:-343.593900px;}
.y24b{bottom:-339.594900px;}
.y235{bottom:-338.529900px;}
.yfc{bottom:-331.744050px;}
.y15f{bottom:-324.343500px;}
.y24a{bottom:-318.899400px;}
.y122{bottom:-313.693200px;}
.y14d{bottom:-311.557050px;}
.y234{bottom:-307.089300px;}
.y177{bottom:-304.460250px;}
.yfb{bottom:-301.019850px;}
.y249{bottom:-298.203900px;}
.y14c{bottom:-279.678900px;}
.y121{bottom:-277.873350px;}
.y248{bottom:-277.508400px;}
.y197{bottom:-276.255600px;}
.y1af{bottom:-276.255450px;}
.y233{bottom:-275.649000px;}
.y176{bottom:-274.941000px;}
.yfa{bottom:-270.447750px;}
.y247{bottom:-256.812900px;}
.y14b{bottom:-247.800750px;}
.y180{bottom:-245.626800px;}
.y175{bottom:-245.421750px;}
.y196{bottom:-244.476900px;}
.y1ae{bottom:-244.476750px;}
.y232{bottom:-244.052100px;}
.y120{bottom:-241.875300px;}
.yf9{bottom:-239.875650px;}
.y246{bottom:-236.117400px;}
.y14a{bottom:-215.922600px;}
.y174{bottom:-215.755650px;}
.y245{bottom:-215.421900px;}
.y195{bottom:-212.855550px;}
.y1ad{bottom:-212.855400px;}
.y231{bottom:-212.611800px;}
.yf8{bottom:-209.303550px;}
.y11f{bottom:-206.055450px;}
.y244{bottom:-194.726400px;}
.y17f{bottom:-187.931985px;}
.y173{bottom:-186.236400px;}
.y149{bottom:-183.885750px;}
.y194{bottom:-181.234200px;}
.y1ac{bottom:-181.234050px;}
.y230{bottom:-181.145250px;}
.yf7{bottom:-178.579350px;}
.y243{bottom:-174.030900px;}
.y11e{bottom:-170.235600px;}
.y17e{bottom:-167.339963px;}
.y172{bottom:-156.717000px;}
.y1a3{bottom:-156.691650px;}
.y242{bottom:-153.335400px;}
.y148{bottom:-151.981050px;}
.y22f{bottom:-149.704800px;}
.y193{bottom:-149.586750px;}
.y1ab{bottom:-149.586600px;}
.yf6{bottom:-148.007250px;}
.y17d{bottom:-146.747940px;}
.y11d{bottom:-136.732500px;}
.y241{bottom:-132.639900px;}
.y171{bottom:-127.173300px;}
.y17c{bottom:-126.155917px;}
.y147{bottom:-120.102900px;}
.y22e{bottom:-118.108050px;}
.y192{bottom:-117.808050px;}
.y1aa{bottom:-117.807900px;}
.y1ca{bottom:-117.602700px;}
.yf5{bottom:-117.409800px;}
.y240{bottom:-111.944400px;}
.y11c{bottom:-106.080750px;}
.y17b{bottom:-105.563895px;}
.y1f2{bottom:-101.076000px;}
.y170{bottom:-97.507200px;}
.y1c9{bottom:-96.907200px;}
.y23f{bottom:-91.248900px;}
.y146{bottom:-88.224750px;}
.yf4{bottom:-86.837700px;}
.y22d{bottom:-86.667600px;}
.y191{bottom:-86.186850px;}
.y1a9{bottom:-86.186700px;}
.y17a{bottom:-84.971873px;}
.y1c8{bottom:-76.211700px;}
.y11b{bottom:-75.250650px;}
.y16f{bottom:-67.987950px;}
.y179{bottom:-64.379850px;}
.y21d{bottom:-62.354400px;}
.y145{bottom:-56.187900px;}
.y22c{bottom:-55.227150px;}
.y190{bottom:-54.565500px;}
.y1a8{bottom:-54.565350px;}
.yf3{bottom:-48.052200px;}
.y23e{bottom:-45.596850px;}
.y11a{bottom:-42.074250px;}
.y16e{bottom:-40.524750px;}
.y1c6{bottom:-39.044100px;}
.y21c{bottom:-35.667150px;}
.y1c7{bottom:-29.999850px;}
.y144{bottom:-26.530050px;}
.y22b{bottom:-25.820100px;}
.y18f{bottom:-25.146600px;}
.y1a7{bottom:-25.146450px;}
.yf2{bottom:-24.020400px;}
.y178{bottom:-18.956100px;}
.y21e{bottom:-17.382300px;}
.y16d{bottom:-17.320500px;}
.y1c5{bottom:-16.292100px;}
.y21b{bottom:-13.118400px;}
.y119{bottom:-11.244300px;}
.y143{bottom:-1.471650px;}
.y22a{bottom:-1.105800px;}
.y18e{bottom:-0.132750px;}
.y1a6{bottom:-0.132600px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.262800px;}
.ye5{bottom:3.750450px;}
.ybe{bottom:5.294083px;}
.yca{bottom:6.146700px;}
.ybc{bottom:8.472150px;}
.ybf{bottom:9.682500px;}
.yb7{bottom:14.737050px;}
.yc8{bottom:14.850300px;}
.ye2{bottom:16.800450px;}
.ybd{bottom:17.285550px;}
.yc9{bottom:19.200300px;}
.ye6{bottom:28.580850px;}
.yc7{bottom:29.700300px;}
.y22{bottom:44.875200px;}
.y1cc{bottom:58.235250px;}
.y5{bottom:66.525004px;}
.y46{bottom:80.789250px;}
.y72{bottom:80.881200px;}
.yce{bottom:81.667800px;}
.y1e0{bottom:83.936700px;}
.y98{bottom:84.125550px;}
.y152{bottom:84.591150px;}
.y12e{bottom:85.361100px;}
.y275{bottom:87.253050px;}
.y1d5{bottom:88.800750px;}
.y45{bottom:91.288650px;}
.y116{bottom:92.320050px;}
.y140{bottom:92.590800px;}
.yef{bottom:95.310450px;}
.y4{bottom:97.125005px;}
.y220{bottom:98.326950px;}
.y71{bottom:101.576700px;}
.y44{bottom:101.788050px;}
.ycd{bottom:102.363300px;}
.y1df{bottom:104.632200px;}
.y97{bottom:104.821050px;}
.y141{bottom:104.841000px;}
.y12d{bottom:106.056600px;}
.y274{bottom:107.948550px;}
.y1d4{bottom:109.496250px;}
.y13f{bottom:111.733800px;}
.y43{bottom:112.287450px;}
.y115{bottom:113.015550px;}
.y2c1{bottom:115.535250px;}
.yee{bottom:116.005950px;}
.y225{bottom:118.395600px;}
.yc6{bottom:120.321000px;}
.y70{bottom:121.831200px;}
.y1de{bottom:125.327700px;}
.y96{bottom:125.516550px;}
.y12c{bottom:126.752100px;}
.y273{bottom:128.644050px;}
.y1d3{bottom:130.191750px;}
.y13e{bottom:130.876800px;}
.y2c0{bottom:133.538250px;}
.y114{bottom:133.711050px;}
.yed{bottom:136.701450px;}
.y21{bottom:139.264499px;}
.y6f{bottom:142.085700px;}
.y1f0{bottom:142.897500px;}
.ycc{bottom:144.321300px;}
.y1dd{bottom:146.023200px;}
.y95{bottom:146.212050px;}
.y294{bottom:146.243550px;}
.y21f{bottom:146.544750px;}
.y18b{bottom:146.758350px;}
.y12b{bottom:147.447600px;}
.y272{bottom:149.339550px;}
.y20d{bottom:150.018000px;}
.y13d{bottom:150.019800px;}
.y42{bottom:151.239300px;}
.y2bf{bottom:151.541250px;}
.y113{bottom:154.406550px;}
.yec{bottom:157.396950px;}
.y6e{bottom:162.340200px;}
.y1dc{bottom:166.718700px;}
.y94{bottom:166.907550px;}
.y293{bottom:166.939050px;}
.y18a{bottom:167.753100px;}
.y13c{bottom:169.162800px;}
.y2be{bottom:169.544250px;}
.y271{bottom:170.035050px;}
.y41{bottom:171.934800px;}
.yc5{bottom:173.083200px;}
.y112{bottom:175.102050px;}
.yeb{bottom:178.092450px;}
.y1d2{bottom:180.655500px;}
.y6d{bottom:182.594700px;}
.y1db{bottom:187.414200px;}
.y2bd{bottom:187.547250px;}
.y93{bottom:187.603050px;}
.y292{bottom:187.634550px;}
.y13b{bottom:188.305800px;}
.y189{bottom:188.747850px;}
.y270{bottom:190.730550px;}
.y40{bottom:192.630300px;}
.y12a{bottom:193.659450px;}
.yc4{bottom:193.778700px;}
.y111{bottom:195.797550px;}
.y18{bottom:196.933500px;}
.y1a1{bottom:200.905500px;}
.y6c{bottom:202.849200px;}
.y2bc{bottom:205.550250px;}
.y1cb{bottom:206.728350px;}
.y13a{bottom:207.448800px;}
.y1da{bottom:208.109700px;}
.y92{bottom:208.298550px;}
.y291{bottom:208.330050px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y188{bottom:209.742600px;}
.y26f{bottom:211.426050px;}
.yea{bottom:211.545450px;}
.y3f{bottom:213.325800px;}
.y129{bottom:213.909450px;}
.y1b9{bottom:215.656500px;}
.y1c4{bottom:215.723100px;}
.y110{bottom:216.493050px;}
.y21a{bottom:219.670200px;}
.yc2{bottom:219.828600px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y6b{bottom:223.103700px;}
.y2bb{bottom:223.553250px;}
.yc3{bottom:224.179200px;}
.y139{bottom:226.591800px;}
.y1d9{bottom:228.805200px;}
.y91{bottom:228.994050px;}
.y290{bottom:229.025550px;}
.y187{bottom:230.737350px;}
.yc1{bottom:231.716700px;}
.y26e{bottom:232.121550px;}
.ye9{bottom:232.240950px;}
.y128{bottom:234.159450px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y10f{bottom:237.188550px;}
.y20c{bottom:240.936750px;}
.y2ba{bottom:241.556250px;}
.y6a{bottom:243.358200px;}
.y1c3{bottom:244.811100px;}
.y138{bottom:245.734800px;}
.y3e{bottom:246.781650px;}
.y219{bottom:248.498250px;}
.ybb{bottom:248.688000px;}
.y1d8{bottom:249.500700px;}
.y229{bottom:249.674550px;}
.y90{bottom:249.689550px;}
.y28f{bottom:249.721050px;}
.y186{bottom:251.732100px;}
.y26d{bottom:252.817050px;}
.ye1{bottom:253.198500px;}
.y117{bottom:254.409000px;}
.y1b8{bottom:257.053800px;}
.y10e{bottom:257.884050px;}
.y2b9{bottom:259.559250px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yc0{bottom:260.687100px;}
.y20b{bottom:261.931500px;}
.y69{bottom:263.612700px;}
.y137{bottom:264.877800px;}
.ye4{bottom:269.997150px;}
.ye7{bottom:269.998950px;}
.y1d7{bottom:270.196200px;}
.y8f{bottom:270.385050px;}
.y28e{bottom:270.416550px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y185{bottom:272.726850px;}
.y26c{bottom:273.512550px;}
.y1c2{bottom:273.755100px;}
.ye8{bottom:274.198950px;}
.y218{bottom:277.183650px;}
.y2b8{bottom:277.562250px;}
.y1b7{bottom:277.749300px;}
.y10d{bottom:278.579550px;}
.ye3{bottom:281.773950px;}
.yb6{bottom:282.691500px;}
.y20a{bottom:282.926250px;}
.y224{bottom:283.329900px;}
.y68{bottom:283.867200px;}
.y136{bottom:284.020800px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb9{bottom:285.540450px;}
.y16c{bottom:288.042150px;}
.yb5{bottom:289.369050px;}
.y227{bottom:289.681800px;}
.yba{bottom:289.891050px;}
.y142{bottom:290.388450px;}
.y1d6{bottom:290.891700px;}
.y8e{bottom:291.080550px;}
.y28d{bottom:291.112050px;}
.y184{bottom:293.721600px;}
.yf1{bottom:294.058800px;}
.y26b{bottom:294.208050px;}
.y2b7{bottom:295.565250px;}
.y18d{bottom:295.825500px;}
.y1a5{bottom:295.825650px;}
.yb8{bottom:297.428550px;}
.y223{bottom:298.334400px;}
.y1b6{bottom:298.444800px;}
.y135{bottom:300.517800px;}
.y1c1{bottom:302.699100px;}
.y209{bottom:303.921000px;}
.y67{bottom:304.121700px;}
.y217{bottom:305.868900px;}
.y3d{bottom:306.544500px;}
.yb4{bottom:310.064550px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ye0{bottom:311.587200px;}
.y8d{bottom:311.776050px;}
.y28c{bottom:311.807550px;}
.y10c{bottom:312.035400px;}
.y222{bottom:313.338900px;}
.y2b6{bottom:313.568250px;}
.y26a{bottom:314.903550px;}
.y1b5{bottom:319.140300px;}
.y134{bottom:319.660800px;}
.y3c{bottom:322.290750px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y66{bottom:324.376200px;}
.y208{bottom:324.915750px;}
.y221{bottom:328.343400px;}
.yb3{bottom:330.760050px;}
.y2b5{bottom:331.571250px;}
.y1c0{bottom:331.667100px;}
.y1d1{bottom:332.193600px;}
.ydf{bottom:332.282700px;}
.y16a{bottom:332.283375px;}
.y8c{bottom:332.471550px;}
.y28b{bottom:332.503050px;}
.y216{bottom:334.554300px;}
.y269{bottom:335.599050px;}
.y3b{bottom:338.037000px;}
.y133{bottom:338.803800px;}
.y1b4{bottom:339.835800px;}
.y183{bottom:344.485500px;}
.y65{bottom:344.630700px;}
.y207{bottom:345.910500px;}
.y131{bottom:347.052300px;}
.y1d0{bottom:347.198100px;}
.yf{bottom:348.133500px;}
.y2b4{bottom:349.574250px;}
.yb2{bottom:351.014550px;}
.y169{bottom:352.875397px;}
.yde{bottom:352.978200px;}
.y8b{bottom:353.167050px;}
.y28a{bottom:353.198550px;}
.y3a{bottom:353.783250px;}
.y130{bottom:355.300800px;}
.y268{bottom:356.294550px;}
.y1b3{bottom:360.531300px;}
.y1bf{bottom:360.755100px;}
.y10b{bottom:361.168200px;}
.y1cf{bottom:362.202600px;}
.y215{bottom:363.382200px;}
.y15d{bottom:364.735500px;}
.y64{bottom:364.885200px;}
.y206{bottom:366.905250px;}
.y2b3{bottom:367.577250px;}
.y39{bottom:369.529500px;}
.y181{bottom:369.665250px;}
.yb1{bottom:371.269050px;}
.y132{bottom:371.797800px;}
.y168{bottom:373.467420px;}
.ydd{bottom:373.673700px;}
.y8a{bottom:373.862550px;}
.y289{bottom:373.894050px;}
.y267{bottom:376.990050px;}
.y1ce{bottom:377.207100px;}
.y10a{bottom:381.863700px;}
.y16b{bottom:382.851000px;}
.y63{bottom:385.139700px;}
.y38{bottom:385.275750px;}
.y2b2{bottom:385.580250px;}
.ye{bottom:386.785499px;}
.y1ef{bottom:386.887950px;}
.y205{bottom:387.900000px;}
.y1be{bottom:389.699100px;}
.yb0{bottom:391.523550px;}
.y2df{bottom:391.749750px;}
.y214{bottom:392.103300px;}
.y1cd{bottom:392.211600px;}
.y167{bottom:394.059442px;}
.ydc{bottom:394.369200px;}
.y89{bottom:394.558050px;}
.y288{bottom:394.589550px;}
.y266{bottom:397.685550px;}
.y12f{bottom:398.398800px;}
.y37{bottom:401.022000px;}
.y109{bottom:402.559200px;}
.y2b1{bottom:403.583250px;}
.y62{bottom:405.394200px;}
.y1b2{bottom:406.743150px;}
.y1ee{bottom:407.882700px;}
.yd{bottom:408.044999px;}
.y204{bottom:408.894750px;}
.y2de{bottom:409.752750px;}
.yaf{bottom:411.778050px;}
.y166{bottom:414.651465px;}
.ydb{bottom:415.064700px;}
.y88{bottom:415.253550px;}
.y287{bottom:415.285050px;}
.y36{bottom:416.768250px;}
.y265{bottom:418.381050px;}
.y1bd{bottom:418.643100px;}
.y182{bottom:420.755100px;}
.y213{bottom:420.788550px;}
.y2b0{bottom:421.586250px;}
.y108{bottom:423.254700px;}
.y61{bottom:425.648700px;}
.y2dd{bottom:427.755750px;}
.y1ed{bottom:428.877450px;}
.y203{bottom:429.889500px;}
.yae{bottom:432.032550px;}
.y35{bottom:432.514500px;}
.y165{bottom:435.243487px;}
.yda{bottom:435.760200px;}
.y87{bottom:435.949050px;}
.y286{bottom:435.980550px;}
.y264{bottom:439.076550px;}
.y2af{bottom:439.589250px;}
.y107{bottom:443.950200px;}
.y1bc{bottom:445.571100px;}
.y2dc{bottom:445.758750px;}
.y60{bottom:445.903200px;}
.y34{bottom:448.260750px;}
.y212{bottom:449.473800px;}
.y1ec{bottom:449.872200px;}
.y202{bottom:450.884250px;}
.y118{bottom:451.428750px;}
.yad{bottom:452.287050px;}
.y164{bottom:455.835510px;}
.yd9{bottom:456.455700px;}
.y86{bottom:456.644550px;}
.y285{bottom:456.676050px;}
.y2ae{bottom:457.592250px;}
.y1a0{bottom:458.620650px;}
.y263{bottom:459.772050px;}
.y2db{bottom:463.761750px;}
.y33{bottom:464.007000px;}
.y106{bottom:464.645700px;}
.y5f{bottom:466.157700px;}
.y1bb{bottom:468.467100px;}
.y1eb{bottom:470.866950px;}
.y201{bottom:471.879000px;}
.yac{bottom:472.541550px;}
.y2ad{bottom:475.595250px;}
.y163{bottom:476.427532px;}
.yd8{bottom:477.151200px;}
.y85{bottom:477.340050px;}
.y284{bottom:477.371550px;}
.y211{bottom:478.159200px;}
.y19f{bottom:479.316150px;}
.y32{bottom:479.753250px;}
.y262{bottom:480.467550px;}
.y2da{bottom:481.764750px;}
.y105{bottom:485.341200px;}
.y5e{bottom:486.412200px;}
.y1ea{bottom:491.861700px;}
.yab{bottom:492.796050px;}
.y200{bottom:492.873750px;}
.y2ac{bottom:493.598250px;}
.y31{bottom:495.499500px;}
.y162{bottom:497.019555px;}
.yd7{bottom:497.846700px;}
.y84{bottom:498.035550px;}
.y283{bottom:498.067050px;}
.y2d9{bottom:499.767750px;}
.y19e{bottom:500.011650px;}
.y261{bottom:501.163050px;}
.yc{bottom:502.864502px;}
.y104{bottom:506.036700px;}
.y5d{bottom:506.666700px;}
.y210{bottom:506.987250px;}
.y2ab{bottom:511.601250px;}
.y1e9{bottom:512.856450px;}
.yaa{bottom:513.050550px;}
.y1ff{bottom:513.868500px;}
.y161{bottom:517.611577px;}
.y2d8{bottom:517.770750px;}
.yd6{bottom:518.542200px;}
.y83{bottom:518.731050px;}
.y282{bottom:518.762550px;}
.y19d{bottom:520.707150px;}
.yb{bottom:520.864502px;}
.y260{bottom:521.858550px;}
.y103{bottom:526.732200px;}
.y5c{bottom:526.921200px;}
.y2aa{bottom:529.604250px;}
.ya9{bottom:533.305050px;}
.y1e8{bottom:533.851200px;}
.y1fe{bottom:534.863250px;}
.y20f{bottom:535.672500px;}
.y2d7{bottom:535.773750px;}
.y160{bottom:538.203600px;}
.ya{bottom:538.864499px;}
.yd5{bottom:539.237700px;}
.y82{bottom:539.426550px;}
.y281{bottom:539.458050px;}
.y19c{bottom:541.402650px;}
.y25f{bottom:542.554050px;}
.y5b{bottom:547.175700px;}
.y102{bottom:547.427700px;}
.y2a9{bottom:547.607250px;}
.y30{bottom:549.520950px;}
.y20e{bottom:553.368900px;}
.ya8{bottom:553.559550px;}
.y2d6{bottom:553.776750px;}
.y1e7{bottom:554.845950px;}
.y1fd{bottom:555.858000px;}
.y9{bottom:556.864499px;}
.yd4{bottom:559.933200px;}
.y81{bottom:560.122050px;}
.y280{bottom:560.153550px;}
.y19b{bottom:562.098150px;}
.y2f{bottom:562.267200px;}
.y25e{bottom:563.249550px;}
.y2a8{bottom:565.610250px;}
.y5a{bottom:567.430200px;}
.y101{bottom:568.123200px;}
.y2d5{bottom:571.779750px;}
.ya7{bottom:573.814050px;}
.y1e6{bottom:575.840700px;}
.y1fc{bottom:576.852750px;}
.yd3{bottom:580.628700px;}
.y80{bottom:580.817550px;}
.y27f{bottom:580.849050px;}
.y2e{bottom:581.395050px;}
.y2a7{bottom:583.613250px;}
.y25d{bottom:583.945050px;}
.y59{bottom:587.684700px;}
.y2d4{bottom:589.782750px;}
.y15e{bottom:592.594050px;}
.ya6{bottom:594.068550px;}
.y1e5{bottom:596.835450px;}
.y1fb{bottom:597.847500px;}
.yd2{bottom:601.324200px;}
.y7f{bottom:601.513050px;}
.y27e{bottom:601.544550px;}
.y2a6{bottom:601.616250px;}
.y25c{bottom:604.640550px;}
.y2d3{bottom:607.785750px;}
.y58{bottom:607.939200px;}
.y19a{bottom:608.310000px;}
.ya5{bottom:614.323050px;}
.y100{bottom:614.335050px;}
.y1e4{bottom:617.830200px;}
.y1fa{bottom:618.842250px;}
.y2a5{bottom:619.619250px;}
.yd1{bottom:622.019700px;}
.y2d{bottom:622.158750px;}
.y27d{bottom:622.240050px;}
.y2d2{bottom:625.788750px;}
.y57{bottom:628.193700px;}
.y1a4{bottom:632.151000px;}
.y18c{bottom:632.812500px;}
.ya4{bottom:634.577550px;}
.y2c{bottom:634.905000px;}
.y7e{bottom:634.968900px;}
.y2a4{bottom:637.622250px;}
.y1e3{bottom:638.824950px;}
.yf0{bottom:638.838000px;}
.y1f9{bottom:639.837000px;}
.yd0{bottom:642.715200px;}
.y27c{bottom:642.935550px;}
.y2d1{bottom:643.791750px;}
.y8{bottom:645.510000px;}
.y56{bottom:648.448200px;}
.y25b{bottom:650.852400px;}
.y2b{bottom:654.032850px;}
.ya3{bottom:654.832050px;}
.y2a3{bottom:655.625250px;}
.y1e2{bottom:659.819700px;}
.y1f8{bottom:660.831750px;}
.y2d0{bottom:661.794750px;}
.ycf{bottom:663.410700px;}
.y27b{bottom:663.631050px;}
.y7{bottom:666.771000px;}
.y55{bottom:668.702700px;}
.y2a2{bottom:673.628250px;}
.ya2{bottom:675.086550px;}
.y226{bottom:675.354000px;}
.y2cf{bottom:679.797750px;}
.y1e1{bottom:680.814450px;}
.y1f7{bottom:681.826500px;}
.y7d{bottom:684.106200px;}
.y27a{bottom:684.326550px;}
.y54{bottom:688.957200px;}
.y2a1{bottom:691.631250px;}
.y2a{bottom:694.796550px;}
.ya1{bottom:695.341050px;}
.y2ce{bottom:697.800750px;}
.y15c{bottom:701.809200px;}
.y1f6{bottom:702.821250px;}
.y7c{bottom:704.801700px;}
.y279{bottom:705.022050px;}
.y29{bottom:707.542800px;}
.y53{bottom:709.211700px;}
.y2a0{bottom:709.634250px;}
.y2cd{bottom:715.803750px;}
.y15b{bottom:722.803950px;}
.y1f5{bottom:723.816000px;}
.y7b{bottom:725.497200px;}
.y278{bottom:725.717550px;}
.y6{bottom:726.298500px;}
.y28{bottom:726.670650px;}
.y29f{bottom:727.637250px;}
.ya0{bottom:728.346900px;}
.y52{bottom:729.466200px;}
.y2cc{bottom:733.806750px;}
.y1ba{bottom:739.367100px;}
.y15a{bottom:743.798700px;}
.y1f4{bottom:744.810750px;}
.y29e{bottom:745.640250px;}
.y7a{bottom:746.192700px;}
.y277{bottom:746.413050px;}
.y51{bottom:749.720700px;}
.y2cb{bottom:751.809750px;}
.y3{bottom:752.599495px;}
.y258{bottom:756.142800px;}
.y29d{bottom:763.643250px;}
.y159{bottom:764.793450px;}
.y1a2{bottom:764.853600px;}
.y1f3{bottom:765.805500px;}
.y79{bottom:766.888200px;}
.y27{bottom:767.430600px;}
.y2ca{bottom:769.812750px;}
.y50{bottom:769.975200px;}
.y9f{bottom:771.077700px;}
.y276{bottom:779.869050px;}
.y29c{bottom:781.646250px;}
.y158{bottom:785.788200px;}
.y78{bottom:787.583700px;}
.y2c9{bottom:787.815750px;}
.y4f{bottom:790.229700px;}
.y9e{bottom:791.174700px;}
.y26{bottom:798.930600px;}
.y29b{bottom:799.649250px;}
.y2c8{bottom:805.818750px;}
.y157{bottom:806.782950px;}
.y77{bottom:808.279200px;}
.y4e{bottom:810.484200px;}
.y9d{bottom:811.271700px;}
.y29a{bottom:817.652250px;}
.y1f1{bottom:820.469100px;}
.y2c7{bottom:823.821750px;}
.y156{bottom:827.777700px;}
.y76{bottom:828.974700px;}
.y25{bottom:830.430600px;}
.y4d{bottom:830.738700px;}
.y9c{bottom:831.368700px;}
.y299{bottom:835.655250px;}
.y2c6{bottom:841.824750px;}
.y155{bottom:848.772450px;}
.y75{bottom:849.670200px;}
.y4c{bottom:850.993200px;}
.y9b{bottom:851.465700px;}
.y298{bottom:853.658250px;}
.y2c5{bottom:859.827750px;}
.y154{bottom:869.767200px;}
.y74{bottom:870.365700px;}
.y4b{bottom:871.247700px;}
.y9a{bottom:871.562700px;}
.y297{bottom:871.661250px;}
.y2c4{bottom:877.830750px;}
.y2{bottom:879.369000px;}
.y25a{bottom:887.597250px;}
.y296{bottom:889.664250px;}
.y153{bottom:890.761950px;}
.y73{bottom:891.061200px;}
.y4a{bottom:891.502200px;}
.y99{bottom:891.659700px;}
.y24{bottom:891.692850px;}
.y2c3{bottom:895.833750px;}
.y259{bottom:899.598750px;}
.y23{bottom:903.694350px;}
.y49{bottom:911.756700px;}
.y2c2{bottom:913.836750px;}
.y295{bottom:914.042250px;}
.y47{bottom:933.675900px;}
.y48{bottom:966.420450px;}
.y1{bottom:966.726000px;}
.h45{height:-202.687500px;}
.h13{height:24.915234px;}
.h16{height:25.198500px;}
.h14{height:26.226562px;}
.h18{height:26.974951px;}
.h17{height:26.993921px;}
.h1d{height:27.209498px;}
.h1c{height:27.228633px;}
.h1a{height:27.840000px;}
.h4b{height:28.587891px;}
.h23{height:28.777075px;}
.h37{height:29.036704px;}
.h15{height:29.182617px;}
.h4e{height:29.748343px;}
.h47{height:30.016406px;}
.h22{height:30.300371px;}
.hb{height:30.597656px;}
.h3b{height:30.612982px;}
.hc{height:31.500000px;}
.h27{height:31.704829px;}
.h7{height:32.130000px;}
.h53{height:32.605321px;}
.h3f{height:32.648438px;}
.h41{height:32.792924px;}
.h4a{height:32.812500px;}
.h33{height:33.059319px;}
.hf{height:33.750000px;}
.h56{height:34.564453px;}
.h10{height:35.436035px;}
.h30{height:36.597656px;}
.h2c{height:37.146970px;}
.h3e{height:37.332905px;}
.h2a{height:37.520508px;}
.h50{height:39.664179px;}
.h49{height:40.021875px;}
.h3d{height:40.817310px;}
.h38{height:41.481006px;}
.ha{height:41.689453px;}
.h29{height:42.273105px;}
.h55{height:43.473762px;}
.h39{height:43.555056px;}
.h43{height:43.723898px;}
.h12{height:43.773926px;}
.h35{height:44.079093px;}
.he{height:44.730469px;}
.h25{height:45.598500px;}
.h20{height:45.600000px;}
.h6{height:45.900000px;}
.h4f{height:46.407032px;}
.h19{height:46.659375px;}
.h21{height:46.692187px;}
.h11{height:46.763672px;}
.h48{height:46.825594px;}
.h3c{height:47.756102px;}
.h3{height:48.195000px;}
.h28{height:49.459533px;}
.h2e{height:49.529155px;}
.h1f{height:49.776562px;}
.h1e{height:50.209441px;}
.h54{height:50.864468px;}
.h42{height:51.157128px;}
.h34{height:51.572772px;}
.h2{height:55.080000px;}
.h2d{height:57.949174px;}
.h24{height:59.214844px;}
.h1b{height:65.787727px;}
.h2f{height:69.591656px;}
.h31{height:70.514508px;}
.h5{height:78.030000px;}
.hd{height:83.378906px;}
.h4{height:119.055004px;}
.h4d{height:205.111500px;}
.h46{height:213.144000px;}
.h4c{height:214.725000px;}
.h44{height:228.558000px;}
.h52{height:245.938500px;}
.h51{height:247.324500px;}
.h32{height:280.981500px;}
.h26{height:283.840500px;}
.h3a{height:285.690000px;}
.h40{height:289.864500px;}
.h36{height:307.887000px;}
.h2b{height:421.213500px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:28.801500px;}
.w6{width:34.800000px;}
.w9{width:80.700000px;}
.w7{width:144.000000px;}
.w8{width:147.300000px;}
.wa{width:222.001500px;}
.wc{width:552.756000px;}
.w14{width:556.869000px;}
.wf{width:557.259000px;}
.w16{width:557.938500px;}
.w13{width:558.070500px;}
.we{width:558.664500px;}
.w12{width:559.075500px;}
.w10{width:559.291500px;}
.wd{width:559.464000px;}
.w11{width:560.827500px;}
.w15{width:561.259500px;}
.wb{width:570.075000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x30{left:-89.567550px;}
.x31{left:-72.637800px;}
.x63{left:-40.435650px;}
.x42{left:-38.501100px;}
.x4d{left:-36.703350px;}
.x62{left:-25.575750px;}
.x41{left:-23.434200px;}
.x4c{left:-21.757950px;}
.x47{left:-12.525150px;}
.x2d{left:-9.378000px;}
.x0{left:0.000000px;}
.x14{left:2.137650px;}
.x2c{left:5.071500px;}
.x57{left:8.783100px;}
.x13{left:9.784537px;}
.x9{left:11.288250px;}
.x5a{left:13.747500px;}
.x12{left:15.000150px;}
.x21{left:16.095750px;}
.x52{left:21.043050px;}
.x43{left:22.559400px;}
.x1e{left:28.598011px;}
.x1c{left:31.301100px;}
.x1f{left:42.872100px;}
.x11{left:45.825150px;}
.x20{left:48.694650px;}
.x17{left:50.745900px;}
.x4f{left:59.408100px;}
.x5e{left:61.888350px;}
.x25{left:68.400150px;}
.x26{left:69.979350px;}
.x1d{left:72.578250px;}
.x5{left:85.039350px;}
.x1b{left:87.176850px;}
.x3e{left:89.478600px;}
.x1a{left:94.821113px;}
.x48{left:96.146700px;}
.x23{left:99.487650px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x24{left:107.915850px;}
.x51{left:123.572400px;}
.x46{left:124.668450px;}
.x19{left:126.551850px;}
.x4b{left:127.722150px;}
.x56{left:134.760900px;}
.x54{left:138.360900px;}
.x27{left:144.699150px;}
.x64{left:148.105950px;}
.x7{left:161.398800px;}
.x32{left:175.838100px;}
.x22{left:186.999150px;}
.x2b{left:192.978450px;}
.x4{left:203.484001px;}
.xc{left:205.701750px;}
.xb{left:213.348637px;}
.xa{left:218.564250px;}
.x15{left:250.299150px;}
.x16{left:258.174000px;}
.x61{left:288.424350px;}
.x33{left:302.535600px;}
.x28{left:328.299150px;}
.xd{left:330.355500px;}
.x10{left:332.493300px;}
.xf{left:340.144500px;}
.xe{left:345.505800px;}
.x5c{left:350.854200px;}
.x34{left:367.686600px;}
.x36{left:373.167600px;}
.x35{left:378.041100px;}
.x18{left:405.474150px;}
.x38{left:430.677600px;}
.x37{left:435.686100px;}
.x6{left:439.543050px;}
.x3{left:454.959000px;}
.x3a{left:501.296100px;}
.x39{left:503.685600px;}
.x3b{left:508.181100px;}
.x50{left:537.538950px;}
.x5f{left:540.019200px;}
.x53{left:543.096900px;}
.x5b{left:557.317350px;}
.x45{left:560.359050px;}
.x5d{left:563.310750px;}
.x55{left:565.272900px;}
.x3d{left:567.891600px;}
.x4a{left:569.896350px;}
.x40{left:573.660750px;}
.x59{left:576.155550px;}
.x3c{left:577.274100px;}
.x44{left:580.185450px;}
.x2f{left:583.494900px;}
.x60{left:590.849400px;}
.x4e{left:594.123600px;}
.x58{left:596.653350px;}
.x49{left:598.213950px;}
.x3f{left:601.574100px;}
.x29{left:604.472250px;}
.x2a{left:606.145350px;}
.x8{left:622.795200px;}
.x2e{left:629.650800px;}
@media print{
.v5{vertical-align:-46.412800pt;}
.v2{vertical-align:-27.033067pt;}
.v4{vertical-align:-13.733333pt;}
.v3{vertical-align:-4.266667pt;}
.v1{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:29.328000pt;}
.ls1c{letter-spacing:-2.072000pt;}
.ls36{letter-spacing:-1.776000pt;}
.ls2e{letter-spacing:-1.457341pt;}
.ls35{letter-spacing:-1.260285pt;}
.ls30{letter-spacing:-0.823715pt;}
.ls32{letter-spacing:-0.760352pt;}
.ls64{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.616000pt;}
.ls60{letter-spacing:-0.611776pt;}
.ls25{letter-spacing:-0.594880pt;}
.ls3f{letter-spacing:-0.527817pt;}
.ls4d{letter-spacing:-0.523563pt;}
.ls2{letter-spacing:-0.498667pt;}
.ls50{letter-spacing:-0.479232pt;}
.ls5c{letter-spacing:-0.474948pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.392000pt;}
.ls66{letter-spacing:-0.362667pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls1{letter-spacing:-0.317333pt;}
.ls34{letter-spacing:-0.296538pt;}
.ls51{letter-spacing:-0.280000pt;}
.ls3e{letter-spacing:-0.263908pt;}
.ls4c{letter-spacing:-0.261781pt;}
.ls62{letter-spacing:-0.260284pt;}
.ls26{letter-spacing:-0.253094pt;}
.ls43{letter-spacing:-0.244378pt;}
.ls4f{letter-spacing:-0.239616pt;}
.ls5b{letter-spacing:-0.237474pt;}
.ls6a{letter-spacing:-0.226667pt;}
.ls7{letter-spacing:-0.224000pt;}
.ls2f{letter-spacing:-0.190088pt;}
.ls6{letter-spacing:-0.168000pt;}
.ls67{letter-spacing:-0.136000pt;}
.ls2d{letter-spacing:-0.126725pt;}
.ls45{letter-spacing:-0.122189pt;}
.ls3{letter-spacing:-0.112000pt;}
.ls18{letter-spacing:-0.069667pt;}
.ls13{letter-spacing:-0.069067pt;}
.ls4{letter-spacing:-0.056000pt;}
.ls6b{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000267pt;}
.ls2a{letter-spacing:0.000400pt;}
.ls57{letter-spacing:0.019612pt;}
.ls49{letter-spacing:0.019968pt;}
.ls56{letter-spacing:0.020145pt;}
.ls37{letter-spacing:0.021637pt;}
.ls3a{letter-spacing:0.022170pt;}
.ls8{letter-spacing:0.056000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls31{letter-spacing:0.126725pt;}
.ls29{letter-spacing:0.127045pt;}
.ls41{letter-spacing:0.168000pt;}
.ls54{letter-spacing:0.178106pt;}
.ls4a{letter-spacing:0.179712pt;}
.ls68{letter-spacing:0.181333pt;}
.ls44{letter-spacing:0.183283pt;}
.ls22{letter-spacing:0.189821pt;}
.ls61{letter-spacing:0.195213pt;}
.ls47{letter-spacing:0.196336pt;}
.ls39{letter-spacing:0.197931pt;}
.ls33{letter-spacing:0.222403pt;}
.lsa{letter-spacing:0.224000pt;}
.ls63{letter-spacing:0.260284pt;}
.ls5a{letter-spacing:0.266399pt;}
.ls4e{letter-spacing:0.268800pt;}
.ls42{letter-spacing:0.274142pt;}
.ls3b{letter-spacing:0.281867pt;}
.ls24{letter-spacing:0.283920pt;}
.ls5f{letter-spacing:0.291984pt;}
.ls4b{letter-spacing:0.293664pt;}
.ls3d{letter-spacing:0.296050pt;}
.ls2c{letter-spacing:0.332655pt;}
.ls65{letter-spacing:0.336000pt;}
.ls69{letter-spacing:0.362667pt;}
.ls23{letter-spacing:0.405600pt;}
.ls3c{letter-spacing:2.678533pt;}
.ls5e{letter-spacing:3.197867pt;}
.ls59{letter-spacing:3.424533pt;}
.ls58{letter-spacing:3.425067pt;}
.ls52{letter-spacing:3.932267pt;}
.ls48{letter-spacing:3.968000pt;}
.ls46{letter-spacing:4.335200pt;}
.ls5d{letter-spacing:5.978667pt;}
.ls38{letter-spacing:6.625733pt;}
.ls40{letter-spacing:7.180267pt;}
.ls15{letter-spacing:7.893117pt;}
.ls27{letter-spacing:11.405200pt;}
.ls55{letter-spacing:17.632533pt;}
.ls53{letter-spacing:18.140267pt;}
.ls2b{letter-spacing:18.216800pt;}
.ls19{letter-spacing:19.642413pt;}
.ls16{letter-spacing:21.932019pt;}
.ls11{letter-spacing:31.045467pt;}
.ls14{letter-spacing:31.315406pt;}
.ls12{letter-spacing:50.384133pt;}
.ls17{letter-spacing:50.822222pt;}
.ls1d{letter-spacing:57.105067pt;}
.ls1e{letter-spacing:64.989867pt;}
.lsd{letter-spacing:68.278400pt;}
.ls10{letter-spacing:70.405690pt;}
.ls1a{letter-spacing:80.938667pt;}
.lse{letter-spacing:89.611200pt;}
.lsf{letter-spacing:92.134933pt;}
.ls1b{letter-spacing:199.628800pt;}
.ls21{letter-spacing:380.023467pt;}
.ls20{letter-spacing:397.883733pt;}
.ws6d{word-spacing:-397.883733pt;}
.ws6e{word-spacing:-380.023467pt;}
.ws5e{word-spacing:-199.628800pt;}
.ws4e{word-spacing:-59.570000pt;}
.ws43{word-spacing:-59.017467pt;}
.ws4f{word-spacing:-54.656000pt;}
.ws5a{word-spacing:-31.045467pt;}
.ws4c{word-spacing:-20.374667pt;}
.ws90{word-spacing:-18.756003pt;}
.ws91{word-spacing:-17.273315pt;}
.ws51{word-spacing:-16.886800pt;}
.wsc0{word-spacing:-16.692198pt;}
.ws137{word-spacing:-16.462946pt;}
.ws136{word-spacing:-16.267733pt;}
.wsbf{word-spacing:-16.230358pt;}
.wseb{word-spacing:-16.099552pt;}
.ws134{word-spacing:-16.007450pt;}
.ws8c{word-spacing:-15.840667pt;}
.ws8d{word-spacing:-15.713941pt;}
.ws74{word-spacing:-15.565306pt;}
.wsd7{word-spacing:-15.273600pt;}
.wsd6{word-spacing:-15.029222pt;}
.ws8f{word-spacing:-15.016952pt;}
.wsed{word-spacing:-14.736384pt;}
.ws117{word-spacing:-14.604659pt;}
.ws8e{word-spacing:-14.383325pt;}
.ws118{word-spacing:-14.367185pt;}
.ws133{word-spacing:-13.904000pt;}
.ws132{word-spacing:-13.292224pt;}
.ws73{word-spacing:-12.925120pt;}
.ws119{word-spacing:-12.685600pt;}
.ws8b{word-spacing:-12.213188pt;}
.wsae{word-spacing:-12.000000pt;}
.ws153{word-spacing:-11.333333pt;}
.ws16a{word-spacing:-11.288000pt;}
.wsbe{word-spacing:-10.869250pt;}
.wsea{word-spacing:-10.781664pt;}
.ws131{word-spacing:-10.719984pt;}
.ws72{word-spacing:-10.423920pt;}
.ws1{word-spacing:-10.378667pt;}
.wsd5{word-spacing:-10.064942pt;}
.wsec{word-spacing:-9.868800pt;}
.ws116{word-spacing:-9.780666pt;}
.ws11a{word-spacing:-9.642667pt;}
.ws47{word-spacing:-4.036938pt;}
.wsd{word-spacing:-3.528000pt;}
.ws16{word-spacing:-3.472000pt;}
.ws40{word-spacing:-3.416000pt;}
.ws3d{word-spacing:-3.360000pt;}
.ws52{word-spacing:-3.304000pt;}
.ws14f{word-spacing:-3.248000pt;}
.wsb4{word-spacing:-3.136000pt;}
.ws93{word-spacing:-3.080000pt;}
.ws114{word-spacing:-3.024000pt;}
.ws150{word-spacing:-2.968000pt;}
.wsc4{word-spacing:-2.912000pt;}
.ws4a{word-spacing:-2.892134pt;}
.ws3{word-spacing:-2.856000pt;}
.ws5{word-spacing:-2.810667pt;}
.ws10d{word-spacing:-2.800000pt;}
.ws28{word-spacing:-2.744000pt;}
.ws68{word-spacing:-2.688000pt;}
.ws15a{word-spacing:-2.674667pt;}
.ws12{word-spacing:-2.632000pt;}
.ws159{word-spacing:-2.538667pt;}
.ws115{word-spacing:-2.520000pt;}
.ws54{word-spacing:-2.408000pt;}
.ws10c{word-spacing:-2.352000pt;}
.ws4{word-spacing:-2.312000pt;}
.wsd8{word-spacing:-2.296000pt;}
.wsdb{word-spacing:-2.284520pt;}
.ws64{word-spacing:-2.240000pt;}
.ws88{word-spacing:-2.184000pt;}
.ws167{word-spacing:-2.176000pt;}
.ws108{word-spacing:-2.128000pt;}
.ws6a{word-spacing:-2.072000pt;}
.ws3f{word-spacing:-2.016000pt;}
.ws15d{word-spacing:-1.994667pt;}
.ws10a{word-spacing:-1.960000pt;}
.wsbc{word-spacing:-1.904000pt;}
.wsf9{word-spacing:-1.848000pt;}
.ws2c{word-spacing:-1.792000pt;}
.wsba{word-spacing:-1.736000pt;}
.wsaa{word-spacing:-1.728000pt;}
.wse6{word-spacing:-1.727320pt;}
.wsb{word-spacing:-1.722667pt;}
.ws24{word-spacing:-1.680000pt;}
.ws16f{word-spacing:-1.677333pt;}
.wsc{word-spacing:-1.568000pt;}
.ws8a{word-spacing:-1.512000pt;}
.ws109{word-spacing:-1.400000pt;}
.ws166{word-spacing:-1.360000pt;}
.ws58{word-spacing:-1.344000pt;}
.ws95{word-spacing:-1.288000pt;}
.ws165{word-spacing:-1.269333pt;}
.ws39{word-spacing:-1.232000pt;}
.ws92{word-spacing:-1.176000pt;}
.ws34{word-spacing:-1.120000pt;}
.ws1e{word-spacing:-1.064000pt;}
.wsa7{word-spacing:-1.037882pt;}
.ws41{word-spacing:-1.008000pt;}
.ws6{word-spacing:-0.997333pt;}
.wsac{word-spacing:-0.952000pt;}
.ws11b{word-spacing:-0.896000pt;}
.ws7b{word-spacing:-0.885830pt;}
.ws1d{word-spacing:-0.840000pt;}
.ws130{word-spacing:-0.831159pt;}
.ws169{word-spacing:-0.816000pt;}
.ws67{word-spacing:-0.784000pt;}
.ws15b{word-spacing:-0.770667pt;}
.wsa9{word-spacing:-0.741344pt;}
.ws37{word-spacing:-0.728000pt;}
.ws160{word-spacing:-0.725333pt;}
.ws29{word-spacing:-0.672000pt;}
.ws25{word-spacing:-0.616000pt;}
.ws22{word-spacing:-0.560000pt;}
.ws14{word-spacing:-0.504000pt;}
.ws11d{word-spacing:-0.448000pt;}
.ws65{word-spacing:-0.392000pt;}
.ws11e{word-spacing:-0.336000pt;}
.ws161{word-spacing:-0.317333pt;}
.ws107{word-spacing:-0.280000pt;}
.ws14d{word-spacing:-0.260284pt;}
.ws11c{word-spacing:-0.224000pt;}
.wsd4{word-spacing:-0.197931pt;}
.wsf8{word-spacing:-0.196336pt;}
.wse2{word-spacing:-0.183283pt;}
.ws171{word-spacing:-0.181333pt;}
.ws103{word-spacing:-0.179712pt;}
.ws123{word-spacing:-0.178106pt;}
.ws36{word-spacing:-0.168000pt;}
.ws7{word-spacing:-0.136000pt;}
.ws9a{word-spacing:-0.126725pt;}
.ws113{word-spacing:-0.112000pt;}
.ws9{word-spacing:-0.090667pt;}
.ws135{word-spacing:-0.065071pt;}
.ws66{word-spacing:-0.056000pt;}
.wsee{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.045333pt;}
.ws10{word-spacing:0.056000pt;}
.ws5b{word-spacing:0.069067pt;}
.ws5c{word-spacing:0.069667pt;}
.ws151{word-spacing:0.112000pt;}
.wse1{word-spacing:0.122189pt;}
.wsc1{word-spacing:0.168000pt;}
.ws98{word-spacing:0.190088pt;}
.ws71{word-spacing:0.224000pt;}
.ws129{word-spacing:0.237474pt;}
.wsfb{word-spacing:0.239616pt;}
.wsdc{word-spacing:0.244378pt;}
.ws84{word-spacing:0.253094pt;}
.wsf0{word-spacing:0.261781pt;}
.wsd0{word-spacing:0.263908pt;}
.ws8{word-spacing:0.272000pt;}
.ws86{word-spacing:0.280000pt;}
.wsa8{word-spacing:0.296538pt;}
.ws2{word-spacing:0.317333pt;}
.ws110{word-spacing:0.336000pt;}
.ws15e{word-spacing:0.362667pt;}
.wsc3{word-spacing:0.392000pt;}
.ws26{word-spacing:0.448000pt;}
.ws10b{word-spacing:0.504000pt;}
.wsd3{word-spacing:0.527817pt;}
.ws69{word-spacing:0.560000pt;}
.ws81{word-spacing:0.569462pt;}
.wsb9{word-spacing:0.616000pt;}
.ws158{word-spacing:0.634667pt;}
.wsda{word-spacing:0.672000pt;}
.ws82{word-spacing:0.696010pt;}
.ws143{word-spacing:0.715780pt;}
.wsc5{word-spacing:0.725748pt;}
.ws2a{word-spacing:0.728000pt;}
.ws9c{word-spacing:0.760352pt;}
.ws20{word-spacing:0.784000pt;}
.ws35{word-spacing:0.840000pt;}
.ws46{word-spacing:0.843539pt;}
.wsd9{word-spacing:0.896000pt;}
.ws142{word-spacing:0.910993pt;}
.ws33{word-spacing:0.952000pt;}
.wsf{word-spacing:1.008000pt;}
.ws53{word-spacing:1.064000pt;}
.ws2b{word-spacing:1.120000pt;}
.ws94{word-spacing:1.176000pt;}
.ws168{word-spacing:1.178667pt;}
.ws121{word-spacing:1.187371pt;}
.ws172{word-spacing:1.224000pt;}
.wsb5{word-spacing:1.232000pt;}
.ws149{word-spacing:1.301419pt;}
.ws104{word-spacing:1.344000pt;}
.ws87{word-spacing:1.400000pt;}
.ws4b{word-spacing:1.446067pt;}
.ws19{word-spacing:1.456000pt;}
.ws27{word-spacing:1.512000pt;}
.ws152{word-spacing:1.568000pt;}
.ws3c{word-spacing:1.624000pt;}
.ws155{word-spacing:1.632000pt;}
.ws9b{word-spacing:1.647429pt;}
.ws30{word-spacing:1.680000pt;}
.ws1f{word-spacing:1.736000pt;}
.ws80{word-spacing:1.771661pt;}
.ws1c{word-spacing:1.792000pt;}
.ws99{word-spacing:1.837517pt;}
.wscd{word-spacing:1.847358pt;}
.ws111{word-spacing:1.848000pt;}
.wsc2{word-spacing:2.016000pt;}
.ws147{word-spacing:2.017199pt;}
.ws156{word-spacing:2.040000pt;}
.wscc{word-spacing:2.045289pt;}
.ws9e{word-spacing:2.075763pt;}
.ws16b{word-spacing:2.085333pt;}
.ws21{word-spacing:2.128000pt;}
.ws18{word-spacing:2.240000pt;}
.ws7a{word-spacing:2.341123pt;}
.wsb8{word-spacing:2.352000pt;}
.ws154{word-spacing:2.357333pt;}
.ws120{word-spacing:2.374741pt;}
.ws140{word-spacing:2.407625pt;}
.wse{word-spacing:2.408000pt;}
.wsca{word-spacing:2.441151pt;}
.wsab{word-spacing:2.448000pt;}
.wse7{word-spacing:2.520000pt;}
.ws77{word-spacing:2.530944pt;}
.ws3e{word-spacing:2.576000pt;}
.ws148{word-spacing:2.602837pt;}
.wsc6{word-spacing:2.639083pt;}
.ws9d{word-spacing:2.661232pt;}
.ws162{word-spacing:2.674667pt;}
.ws105{word-spacing:2.688000pt;}
.ws17{word-spacing:2.800000pt;}
.ws106{word-spacing:2.856000pt;}
.wsc7{word-spacing:2.902991pt;}
.wsbd{word-spacing:2.912000pt;}
.ws13f{word-spacing:2.928192pt;}
.ws55{word-spacing:2.968000pt;}
.wscb{word-spacing:2.968968pt;}
.ws38{word-spacing:3.024000pt;}
.ws63{word-spacing:3.080000pt;}
.ws12e{word-spacing:3.087164pt;}
.ws6c{word-spacing:3.192000pt;}
.ws124{word-spacing:3.205901pt;}
.wsff{word-spacing:3.234816pt;}
.ws59{word-spacing:3.248000pt;}
.ws16d{word-spacing:3.264000pt;}
.wse5{word-spacing:3.299098pt;}
.wsb6{word-spacing:3.304000pt;}
.wse8{word-spacing:3.360000pt;}
.ws12f{word-spacing:3.384006pt;}
.ws102{word-spacing:3.414528pt;}
.ws15{word-spacing:3.416000pt;}
.ws170{word-spacing:3.445333pt;}
.ws2f{word-spacing:3.472000pt;}
.wsb7{word-spacing:3.528000pt;}
.wsf4{word-spacing:3.534048pt;}
.ws126{word-spacing:3.680849pt;}
.ws70{word-spacing:3.696000pt;}
.wsf7{word-spacing:3.730384pt;}
.ws14e{word-spacing:3.808000pt;}
.wse9{word-spacing:3.864000pt;}
.wsfa{word-spacing:3.893760pt;}
.ws157{word-spacing:3.944000pt;}
.wsfc{word-spacing:3.953664pt;}
.ws3a{word-spacing:3.976000pt;}
.ws163{word-spacing:3.989333pt;}
.ws9f{word-spacing:4.003258pt;}
.ws31{word-spacing:4.032000pt;}
.ws13e{word-spacing:4.034398pt;}
.ws11{word-spacing:4.088000pt;}
.ws125{word-spacing:4.096429pt;}
.ws75{word-spacing:4.112784pt;}
.ws1a{word-spacing:4.144000pt;}
.ws16e{word-spacing:4.216000pt;}
.ws13d{word-spacing:4.229611pt;}
.wsef{word-spacing:4.253947pt;}
.ws56{word-spacing:4.256000pt;}
.ws89{word-spacing:4.312000pt;}
.wsf1{word-spacing:4.319392pt;}
.ws76{word-spacing:4.365878pt;}
.ws85{word-spacing:4.368000pt;}
.wsa0{word-spacing:4.373930pt;}
.ws15c{word-spacing:4.397333pt;}
.ws13{word-spacing:4.480000pt;}
.wsbb{word-spacing:4.592000pt;}
.wsa4{word-spacing:4.596333pt;}
.ws173{word-spacing:4.850667pt;}
.ws2e{word-spacing:4.872000pt;}
.ws164{word-spacing:4.896000pt;}
.ws112{word-spacing:5.040000pt;}
.ws15f{word-spacing:5.077333pt;}
.ws16c{word-spacing:5.122667pt;}
.ws128{word-spacing:5.224431pt;}
.ws1b{word-spacing:5.320000pt;}
.ws10e{word-spacing:5.376000pt;}
.ws2d{word-spacing:5.600000pt;}
.ws13a{word-spacing:5.726242pt;}
.ws13c{word-spacing:5.791313pt;}
.ws57{word-spacing:5.824000pt;}
.ws6b{word-spacing:5.880000pt;}
.ws10f{word-spacing:5.936000pt;}
.ws3b{word-spacing:6.048000pt;}
.ws23{word-spacing:6.160000pt;}
.ws13b{word-spacing:6.181739pt;}
.ws11f{word-spacing:6.216000pt;}
.ws32{word-spacing:6.272000pt;}
.wse4{word-spacing:6.292723pt;}
.ws42{word-spacing:6.328000pt;}
.ws139{word-spacing:6.442022pt;}
.ws146{word-spacing:6.507093pt;}
.wsc9{word-spacing:6.531730pt;}
.ws127{word-spacing:6.768013pt;}
.ws138{word-spacing:6.832448pt;}
.ws145{word-spacing:6.897519pt;}
.wsc8{word-spacing:6.927592pt;}
.ws78{word-spacing:7.403011pt;}
.ws14c{word-spacing:7.418086pt;}
.ws79{word-spacing:7.719379pt;}
.wse3{word-spacing:7.881178pt;}
.wsd2{word-spacing:8.049202pt;}
.ws100{word-spacing:8.326656pt;}
.ws101{word-spacing:8.745984pt;}
.wsfd{word-spacing:8.865792pt;}
.wse0{word-spacing:9.041971pt;}
.wsf5{word-spacing:9.096901pt;}
.ws12d{word-spacing:9.261491pt;}
.ws12c{word-spacing:9.320860pt;}
.wsfe{word-spacing:9.524736pt;}
.wsf6{word-spacing:9.555019pt;}
.wsf2{word-spacing:9.685909pt;}
.ws14a{word-spacing:10.216137pt;}
.wsf3{word-spacing:10.405808pt;}
.wsde{word-spacing:10.569331pt;}
.ws14b{word-spacing:10.606562pt;}
.wsdd{word-spacing:10.752614pt;}
.ws97{word-spacing:11.151829pt;}
.wsdf{word-spacing:11.302464pt;}
.ws96{word-spacing:11.341917pt;}
.ws144{word-spacing:12.949116pt;}
.wscf{word-spacing:13.129436pt;}
.wsce{word-spacing:13.327367pt;}
.wsd1{word-spacing:13.591276pt;}
.ws141{word-spacing:14.640960pt;}
.wsa5{word-spacing:15.419955pt;}
.ws7c{word-spacing:15.818400pt;}
.ws122{word-spacing:15.851398pt;}
.wsa1{word-spacing:16.013030pt;}
.wsa3{word-spacing:17.125046pt;}
.wsa2{word-spacing:17.347450pt;}
.ws12b{word-spacing:17.394980pt;}
.ws7e{word-spacing:17.463514pt;}
.ws12a{word-spacing:17.929297pt;}
.ws7d{word-spacing:17.969702pt;}
.wsa6{word-spacing:20.980035pt;}
.ws7f{word-spacing:23.411232pt;}
.ws49{word-spacing:26.411559pt;}
.ws83{word-spacing:28.283299pt;}
.ws62{word-spacing:55.492267pt;}
.ws45{word-spacing:65.394772pt;}
.ws50{word-spacing:83.746133pt;}
.wsad{word-spacing:90.816000pt;}
.wsb3{word-spacing:97.776000pt;}
.wsb0{word-spacing:101.712000pt;}
.wsaf{word-spacing:109.776000pt;}
.ws4d{word-spacing:113.821867pt;}
.wsb2{word-spacing:136.752000pt;}
.wsb1{word-spacing:137.712000pt;}
.ws5f{word-spacing:143.598933pt;}
.ws61{word-spacing:180.454400pt;}
.ws48{word-spacing:203.112189pt;}
.ws60{word-spacing:277.102933pt;}
.ws44{word-spacing:326.367725pt;}
.ws5d{word-spacing:732.760000pt;}
.ws6f{word-spacing:1021.160000pt;}
._11{margin-left:-379.954157pt;}
._15{margin-left:-377.544045pt;}
._18{margin-left:-302.011733pt;}
._17{margin-left:-239.868533pt;}
._2{margin-left:-13.760000pt;}
._a{margin-left:-6.669333pt;}
._4{margin-left:-5.397333pt;}
._c{margin-left:-4.330667pt;}
._5{margin-left:-3.173333pt;}
._7{margin-left:-2.253333pt;}
._3{margin-left:-1.056000pt;}
._6{width:1.133333pt;}
._8{width:2.144000pt;}
._9{width:3.104000pt;}
._b{width:4.872000pt;}
._d{width:5.917333pt;}
._34{width:7.566797pt;}
._31{width:9.551411pt;}
._1c{width:10.961789pt;}
._30{width:12.035597pt;}
._35{width:14.873587pt;}
._33{width:18.145037pt;}
._32{width:19.139942pt;}
._e{width:25.245923pt;}
._12{width:29.007016pt;}
._10{width:57.963194pt;}
._14{width:61.578362pt;}
._16{width:63.575867pt;}
._1d{width:104.976000pt;}
._2d{width:116.400000pt;}
._2b{width:117.744000pt;}
._2f{width:120.336000pt;}
._2c{width:122.400000pt;}
._2a{width:125.760000pt;}
._19{width:128.421333pt;}
._2e{width:130.800000pt;}
._23{width:131.712000pt;}
._21{width:133.776000pt;}
._f{width:134.785514pt;}
._29{width:137.376000pt;}
._28{width:141.813333pt;}
._25{width:142.800000pt;}
._20{width:144.336000pt;}
._22{width:148.752000pt;}
._1f{width:154.800000pt;}
._13{width:156.536774pt;}
._27{width:161.760000pt;}
._24{width:169.776000pt;}
._1e{width:171.024000pt;}
._26{width:175.920000pt;}
._1b{width:380.023467pt;}
._1{width:775.525333pt;}
._0{width:1184.437333pt;}
._1a{width:1481.536000pt;}
.fsa{font-size:30.400000pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:34.533333pt;}
.fsf{font-size:34.833600pt;}
.fs11{font-size:36.361333pt;}
.fs1d{font-size:37.146667pt;}
.fs4{font-size:37.333333pt;}
.fs2c{font-size:38.057067pt;}
.fs28{font-size:38.400000pt;}
.fs20{font-size:39.163200pt;}
.fs7{font-size:40.000000pt;}
.fs13{font-size:40.560000pt;}
.fs2f{font-size:41.712000pt;}
.fs25{font-size:41.952000pt;}
.fs1a{font-size:42.292800pt;}
.fs24{font-size:42.453333pt;}
.fs2b{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs17{font-size:47.522133pt;}
.fs23{font-size:47.760000pt;}
.fs16{font-size:48.000000pt;}
.fs2e{font-size:50.742400pt;}
.fs2a{font-size:51.200000pt;}
.fs22{font-size:52.217600pt;}
.fs1e{font-size:53.066667pt;}
.fs3{font-size:53.333333pt;}
.fs15{font-size:54.080000pt;}
.fs31{font-size:55.616000pt;}
.fs1f{font-size:55.720000pt;}
.fs27{font-size:55.936000pt;}
.fs1{font-size:56.000000pt;}
.fs1c{font-size:56.390400pt;}
.fs6{font-size:58.666667pt;}
.fs2d{font-size:59.368533pt;}
.fsd{font-size:59.733333pt;}
.fs29{font-size:59.904000pt;}
.fs10{font-size:60.252800pt;}
.fs21{font-size:61.094400pt;}
.fs9{font-size:61.333333pt;}
.fs14{font-size:63.273600pt;}
.fs19{font-size:63.362667pt;}
.fs0{font-size:64.000000pt;}
.fs30{font-size:65.070933pt;}
.fs26{font-size:65.445333pt;}
.fs1b{font-size:65.977067pt;}
.fs18{font-size:74.134400pt;}
.fse{font-size:78.947200pt;}
.fs12{font-size:89.600000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.y228{bottom:-561.656267pt;}
.y23d{bottom:-524.799867pt;}
.y257{bottom:-522.614133pt;}
.y256{bottom:-504.218133pt;}
.y23c{bottom:-496.852933pt;}
.y199{bottom:-492.967733pt;}
.y1b1{bottom:-492.967600pt;}
.y255{bottom:-485.822133pt;}
.y198{bottom:-470.873067pt;}
.y1b0{bottom:-470.872933pt;}
.y23b{bottom:-468.771467pt;}
.y254{bottom:-467.426133pt;}
.y253{bottom:-449.030133pt;}
.y23a{bottom:-440.824400pt;}
.y127{bottom:-438.230400pt;}
.y252{bottom:-430.634133pt;}
.y239{bottom:-412.877333pt;}
.y251{bottom:-412.238133pt;}
.y126{bottom:-406.395867pt;}
.y250{bottom:-393.842133pt;}
.y151{bottom:-390.460533pt;}
.y238{bottom:-384.895600pt;}
.yff{bottom:-376.443067pt;}
.y24f{bottom:-375.446133pt;}
.y125{bottom:-374.397600pt;}
.y150{bottom:-362.089200pt;}
.y24e{bottom:-357.050133pt;}
.y237{bottom:-356.809467pt;}
.yfe{bottom:-349.267867pt;}
.y124{bottom:-342.557733pt;}
.y24d{bottom:-338.654133pt;}
.y14f{bottom:-333.752933pt;}
.y236{bottom:-328.862400pt;}
.yfd{bottom:-322.058800pt;}
.y24c{bottom:-320.258133pt;}
.y123{bottom:-310.717867pt;}
.y14e{bottom:-305.416800pt;}
.y24b{bottom:-301.862133pt;}
.y235{bottom:-300.915467pt;}
.yfc{bottom:-294.883600pt;}
.y15f{bottom:-288.305333pt;}
.y24a{bottom:-283.466133pt;}
.y122{bottom:-278.838400pt;}
.y14d{bottom:-276.939600pt;}
.y234{bottom:-272.968267pt;}
.y177{bottom:-270.631333pt;}
.yfb{bottom:-267.573200pt;}
.y249{bottom:-265.070133pt;}
.y14c{bottom:-248.603467pt;}
.y121{bottom:-246.998533pt;}
.y248{bottom:-246.674133pt;}
.y197{bottom:-245.560533pt;}
.y1af{bottom:-245.560400pt;}
.y233{bottom:-245.021333pt;}
.y176{bottom:-244.392000pt;}
.yfa{bottom:-240.398000pt;}
.y247{bottom:-228.278133pt;}
.y14b{bottom:-220.267333pt;}
.y180{bottom:-218.334933pt;}
.y175{bottom:-218.152667pt;}
.y196{bottom:-217.312800pt;}
.y1ae{bottom:-217.312667pt;}
.y232{bottom:-216.935200pt;}
.y120{bottom:-215.000267pt;}
.yf9{bottom:-213.222800pt;}
.y246{bottom:-209.882133pt;}
.y14a{bottom:-191.931200pt;}
.y174{bottom:-191.782800pt;}
.y245{bottom:-191.486133pt;}
.y195{bottom:-189.204933pt;}
.y1ad{bottom:-189.204800pt;}
.y231{bottom:-188.988267pt;}
.yf8{bottom:-186.047600pt;}
.y11f{bottom:-183.160400pt;}
.y244{bottom:-173.090133pt;}
.y17f{bottom:-167.050653pt;}
.y173{bottom:-165.543467pt;}
.y149{bottom:-163.454000pt;}
.y194{bottom:-161.097067pt;}
.y1ac{bottom:-161.096933pt;}
.y230{bottom:-161.018000pt;}
.yf7{bottom:-158.737200pt;}
.y243{bottom:-154.694133pt;}
.y11e{bottom:-151.320533pt;}
.y17e{bottom:-148.746633pt;}
.y172{bottom:-139.304000pt;}
.y1a3{bottom:-139.281467pt;}
.y242{bottom:-136.298133pt;}
.y148{bottom:-135.094267pt;}
.y22f{bottom:-133.070933pt;}
.y193{bottom:-132.966000pt;}
.y1ab{bottom:-132.965867pt;}
.yf6{bottom:-131.562000pt;}
.y17d{bottom:-130.442613pt;}
.y11d{bottom:-121.540000pt;}
.y241{bottom:-117.902133pt;}
.y171{bottom:-113.042933pt;}
.y17c{bottom:-112.138593pt;}
.y147{bottom:-106.758133pt;}
.y22e{bottom:-104.984933pt;}
.y192{bottom:-104.718267pt;}
.y1aa{bottom:-104.718133pt;}
.y1ca{bottom:-104.535733pt;}
.yf5{bottom:-104.364267pt;}
.y240{bottom:-99.506133pt;}
.y11c{bottom:-94.294000pt;}
.y17b{bottom:-93.834573pt;}
.y1f2{bottom:-89.845333pt;}
.y170{bottom:-86.673067pt;}
.y1c9{bottom:-86.139733pt;}
.y23f{bottom:-81.110133pt;}
.y146{bottom:-78.422000pt;}
.yf4{bottom:-77.189067pt;}
.y22d{bottom:-77.037867pt;}
.y191{bottom:-76.610533pt;}
.y1a9{bottom:-76.610400pt;}
.y17a{bottom:-75.530553pt;}
.y1c8{bottom:-67.743733pt;}
.y11b{bottom:-66.889467pt;}
.y16f{bottom:-60.433733pt;}
.y179{bottom:-57.226533pt;}
.y21d{bottom:-55.426133pt;}
.y145{bottom:-49.944800pt;}
.y22c{bottom:-49.090800pt;}
.y190{bottom:-48.502667pt;}
.y1a8{bottom:-48.502533pt;}
.yf3{bottom:-42.713067pt;}
.y23e{bottom:-40.530533pt;}
.y11a{bottom:-37.399333pt;}
.y16e{bottom:-36.022000pt;}
.y1c6{bottom:-34.705867pt;}
.y21c{bottom:-31.704133pt;}
.y1c7{bottom:-26.666533pt;}
.y144{bottom:-23.582267pt;}
.y22b{bottom:-22.951200pt;}
.y18f{bottom:-22.352533pt;}
.y1a7{bottom:-22.352400pt;}
.yf2{bottom:-21.351467pt;}
.y178{bottom:-16.849867pt;}
.y21e{bottom:-15.450933pt;}
.y16d{bottom:-15.396000pt;}
.y1c5{bottom:-14.481867pt;}
.y21b{bottom:-11.660800pt;}
.y119{bottom:-9.994933pt;}
.y143{bottom:-1.308133pt;}
.y22a{bottom:-0.982933pt;}
.y18e{bottom:-0.118000pt;}
.y1a6{bottom:-0.117867pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:2.900267pt;}
.ye5{bottom:3.333733pt;}
.ybe{bottom:4.705852pt;}
.yca{bottom:5.463733pt;}
.ybc{bottom:7.530800pt;}
.ybf{bottom:8.606667pt;}
.yb7{bottom:13.099600pt;}
.yc8{bottom:13.200267pt;}
.ye2{bottom:14.933733pt;}
.ybd{bottom:15.364933pt;}
.yc9{bottom:17.066933pt;}
.ye6{bottom:25.405200pt;}
.yc7{bottom:26.400267pt;}
.y22{bottom:39.889067pt;}
.y1cc{bottom:51.764667pt;}
.y5{bottom:59.133337pt;}
.y46{bottom:71.812667pt;}
.y72{bottom:71.894400pt;}
.yce{bottom:72.593600pt;}
.y1e0{bottom:74.610400pt;}
.y98{bottom:74.778267pt;}
.y152{bottom:75.192133pt;}
.y12e{bottom:75.876533pt;}
.y275{bottom:77.558267pt;}
.y1d5{bottom:78.934000pt;}
.y45{bottom:81.145467pt;}
.y116{bottom:82.062267pt;}
.y140{bottom:82.302933pt;}
.yef{bottom:84.720400pt;}
.y4{bottom:86.333337pt;}
.y220{bottom:87.401733pt;}
.y71{bottom:90.290400pt;}
.y44{bottom:90.478267pt;}
.ycd{bottom:90.989600pt;}
.y1df{bottom:93.006400pt;}
.y97{bottom:93.174267pt;}
.y141{bottom:93.192000pt;}
.y12d{bottom:94.272533pt;}
.y274{bottom:95.954267pt;}
.y1d4{bottom:97.330000pt;}
.y13f{bottom:99.318933pt;}
.y43{bottom:99.811067pt;}
.y115{bottom:100.458267pt;}
.y2c1{bottom:102.698000pt;}
.yee{bottom:103.116400pt;}
.y225{bottom:105.240533pt;}
.yc6{bottom:106.952000pt;}
.y70{bottom:108.294400pt;}
.y1de{bottom:111.402400pt;}
.y96{bottom:111.570267pt;}
.y12c{bottom:112.668533pt;}
.y273{bottom:114.350267pt;}
.y1d3{bottom:115.726000pt;}
.y13e{bottom:116.334933pt;}
.y2c0{bottom:118.700667pt;}
.y114{bottom:118.854267pt;}
.yed{bottom:121.512400pt;}
.y21{bottom:123.790666pt;}
.y6f{bottom:126.298400pt;}
.y1f0{bottom:127.020000pt;}
.ycc{bottom:128.285600pt;}
.y1dd{bottom:129.798400pt;}
.y95{bottom:129.966267pt;}
.y294{bottom:129.994267pt;}
.y21f{bottom:130.262000pt;}
.y18b{bottom:130.451867pt;}
.y12b{bottom:131.064533pt;}
.y272{bottom:132.746267pt;}
.y20d{bottom:133.349333pt;}
.y13d{bottom:133.350933pt;}
.y42{bottom:134.434933pt;}
.y2bf{bottom:134.703333pt;}
.y113{bottom:137.250267pt;}
.yec{bottom:139.908400pt;}
.y6e{bottom:144.302400pt;}
.y1dc{bottom:148.194400pt;}
.y94{bottom:148.362267pt;}
.y293{bottom:148.390267pt;}
.y18a{bottom:149.113867pt;}
.y13c{bottom:150.366933pt;}
.y2be{bottom:150.706000pt;}
.y271{bottom:151.142267pt;}
.y41{bottom:152.830933pt;}
.yc5{bottom:153.851733pt;}
.y112{bottom:155.646267pt;}
.yeb{bottom:158.304400pt;}
.y1d2{bottom:160.582667pt;}
.y6d{bottom:162.306400pt;}
.y1db{bottom:166.590400pt;}
.y2bd{bottom:166.708667pt;}
.y93{bottom:166.758267pt;}
.y292{bottom:166.786267pt;}
.y13b{bottom:167.382933pt;}
.y189{bottom:167.775867pt;}
.y270{bottom:169.538267pt;}
.y40{bottom:171.226933pt;}
.y12a{bottom:172.141733pt;}
.yc4{bottom:172.247733pt;}
.y111{bottom:174.042267pt;}
.y18{bottom:175.052000pt;}
.y1a1{bottom:178.582667pt;}
.y6c{bottom:180.310400pt;}
.y2bc{bottom:182.711333pt;}
.y1cb{bottom:183.758533pt;}
.y13a{bottom:184.398933pt;}
.y1da{bottom:184.986400pt;}
.y92{bottom:185.154267pt;}
.y291{bottom:185.182267pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y188{bottom:186.437867pt;}
.y26f{bottom:187.934267pt;}
.yea{bottom:188.040400pt;}
.y3f{bottom:189.622933pt;}
.y129{bottom:190.141733pt;}
.y1b9{bottom:191.694667pt;}
.y1c4{bottom:191.753867pt;}
.y110{bottom:192.438267pt;}
.y21a{bottom:195.262400pt;}
.yc2{bottom:195.403200pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y6b{bottom:198.314400pt;}
.y2bb{bottom:198.714000pt;}
.yc3{bottom:199.270400pt;}
.y139{bottom:201.414933pt;}
.y1d9{bottom:203.382400pt;}
.y91{bottom:203.550267pt;}
.y290{bottom:203.578267pt;}
.y187{bottom:205.099867pt;}
.yc1{bottom:205.970400pt;}
.y26e{bottom:206.330267pt;}
.ye9{bottom:206.436400pt;}
.y128{bottom:208.141733pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y10f{bottom:210.834267pt;}
.y20c{bottom:214.166000pt;}
.y2ba{bottom:214.716667pt;}
.y6a{bottom:216.318400pt;}
.y1c3{bottom:217.609867pt;}
.y138{bottom:218.430933pt;}
.y3e{bottom:219.361467pt;}
.y219{bottom:220.887333pt;}
.ybb{bottom:221.056000pt;}
.y1d8{bottom:221.778400pt;}
.y229{bottom:221.932933pt;}
.y90{bottom:221.946267pt;}
.y28f{bottom:221.974267pt;}
.y186{bottom:223.761867pt;}
.y26d{bottom:224.726267pt;}
.ye1{bottom:225.065333pt;}
.y117{bottom:226.141333pt;}
.y1b8{bottom:228.492267pt;}
.y10e{bottom:229.230267pt;}
.y2b9{bottom:230.719333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yc0{bottom:231.721867pt;}
.y20b{bottom:232.828000pt;}
.y69{bottom:234.322400pt;}
.y137{bottom:235.446933pt;}
.ye4{bottom:239.997467pt;}
.ye7{bottom:239.999067pt;}
.y1d7{bottom:240.174400pt;}
.y8f{bottom:240.342267pt;}
.y28e{bottom:240.370267pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y185{bottom:242.423867pt;}
.y26c{bottom:243.122267pt;}
.y1c2{bottom:243.337867pt;}
.ye8{bottom:243.732400pt;}
.y218{bottom:246.385467pt;}
.y2b8{bottom:246.722000pt;}
.y1b7{bottom:246.888267pt;}
.y10d{bottom:247.626267pt;}
.ye3{bottom:250.465733pt;}
.yb6{bottom:251.281333pt;}
.y20a{bottom:251.490000pt;}
.y224{bottom:251.848800pt;}
.y68{bottom:252.326400pt;}
.y136{bottom:252.462933pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb9{bottom:253.813733pt;}
.y16c{bottom:256.037467pt;}
.yb5{bottom:257.216933pt;}
.y227{bottom:257.494933pt;}
.yba{bottom:257.680933pt;}
.y142{bottom:258.123067pt;}
.y1d6{bottom:258.570400pt;}
.y8e{bottom:258.738267pt;}
.y28d{bottom:258.766267pt;}
.y184{bottom:261.085867pt;}
.yf1{bottom:261.385600pt;}
.y26b{bottom:261.518267pt;}
.y2b7{bottom:262.724667pt;}
.y18d{bottom:262.956000pt;}
.y1a5{bottom:262.956133pt;}
.yb8{bottom:264.380933pt;}
.y223{bottom:265.186133pt;}
.y1b6{bottom:265.284267pt;}
.y135{bottom:267.126933pt;}
.y1c1{bottom:269.065867pt;}
.y209{bottom:270.152000pt;}
.y67{bottom:270.330400pt;}
.y217{bottom:271.883467pt;}
.y3d{bottom:272.484000pt;}
.yb4{bottom:275.612933pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ye0{bottom:276.966400pt;}
.y8d{bottom:277.134267pt;}
.y28c{bottom:277.162267pt;}
.y10c{bottom:277.364800pt;}
.y222{bottom:278.523467pt;}
.y2b6{bottom:278.727333pt;}
.y26a{bottom:279.914267pt;}
.y1b5{bottom:283.680267pt;}
.y134{bottom:284.142933pt;}
.y3c{bottom:286.480667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y66{bottom:288.334400pt;}
.y208{bottom:288.814000pt;}
.y221{bottom:291.860800pt;}
.yb3{bottom:294.008933pt;}
.y2b5{bottom:294.730000pt;}
.y1c0{bottom:294.815200pt;}
.y1d1{bottom:295.283200pt;}
.ydf{bottom:295.362400pt;}
.y16a{bottom:295.363000pt;}
.y8c{bottom:295.530267pt;}
.y28b{bottom:295.558267pt;}
.y216{bottom:297.381600pt;}
.y269{bottom:298.310267pt;}
.y3b{bottom:300.477333pt;}
.y133{bottom:301.158933pt;}
.y1b4{bottom:302.076267pt;}
.y183{bottom:306.209333pt;}
.y65{bottom:306.338400pt;}
.y207{bottom:307.476000pt;}
.y131{bottom:308.490933pt;}
.y1d0{bottom:308.620533pt;}
.yf{bottom:309.452000pt;}
.y2b4{bottom:310.732667pt;}
.yb2{bottom:312.012933pt;}
.y169{bottom:313.667020pt;}
.yde{bottom:313.758400pt;}
.y8b{bottom:313.926267pt;}
.y28a{bottom:313.954267pt;}
.y3a{bottom:314.474000pt;}
.y130{bottom:315.822933pt;}
.y268{bottom:316.706267pt;}
.y1b3{bottom:320.472267pt;}
.y1bf{bottom:320.671200pt;}
.y10b{bottom:321.038400pt;}
.y1cf{bottom:321.957867pt;}
.y215{bottom:323.006400pt;}
.y15d{bottom:324.209333pt;}
.y64{bottom:324.342400pt;}
.y206{bottom:326.138000pt;}
.y2b3{bottom:326.735333pt;}
.y39{bottom:328.470667pt;}
.y181{bottom:328.591333pt;}
.yb1{bottom:330.016933pt;}
.y132{bottom:330.486933pt;}
.y168{bottom:331.971040pt;}
.ydd{bottom:332.154400pt;}
.y8a{bottom:332.322267pt;}
.y289{bottom:332.350267pt;}
.y267{bottom:335.102267pt;}
.y1ce{bottom:335.295200pt;}
.y10a{bottom:339.434400pt;}
.y16b{bottom:340.312000pt;}
.y63{bottom:342.346400pt;}
.y38{bottom:342.467333pt;}
.y2b2{bottom:342.738000pt;}
.ye{bottom:343.809333pt;}
.y1ef{bottom:343.900400pt;}
.y205{bottom:344.800000pt;}
.y1be{bottom:346.399200pt;}
.yb0{bottom:348.020933pt;}
.y2df{bottom:348.222000pt;}
.y214{bottom:348.536267pt;}
.y1cd{bottom:348.632533pt;}
.y167{bottom:350.275060pt;}
.ydc{bottom:350.550400pt;}
.y89{bottom:350.718267pt;}
.y288{bottom:350.746267pt;}
.y266{bottom:353.498267pt;}
.y12f{bottom:354.132267pt;}
.y37{bottom:356.464000pt;}
.y109{bottom:357.830400pt;}
.y2b1{bottom:358.740667pt;}
.y62{bottom:360.350400pt;}
.y1b2{bottom:361.549467pt;}
.y1ee{bottom:362.562400pt;}
.yd{bottom:362.706666pt;}
.y204{bottom:363.462000pt;}
.y2de{bottom:364.224667pt;}
.yaf{bottom:366.024933pt;}
.y166{bottom:368.579080pt;}
.ydb{bottom:368.946400pt;}
.y88{bottom:369.114267pt;}
.y287{bottom:369.142267pt;}
.y36{bottom:370.460667pt;}
.y265{bottom:371.894267pt;}
.y1bd{bottom:372.127200pt;}
.y182{bottom:374.004533pt;}
.y213{bottom:374.034267pt;}
.y2b0{bottom:374.743333pt;}
.y108{bottom:376.226400pt;}
.y61{bottom:378.354400pt;}
.y2dd{bottom:380.227333pt;}
.y1ed{bottom:381.224400pt;}
.y203{bottom:382.124000pt;}
.yae{bottom:384.028933pt;}
.y35{bottom:384.457333pt;}
.y165{bottom:386.883100pt;}
.yda{bottom:387.342400pt;}
.y87{bottom:387.510267pt;}
.y286{bottom:387.538267pt;}
.y264{bottom:390.290267pt;}
.y2af{bottom:390.746000pt;}
.y107{bottom:394.622400pt;}
.y1bc{bottom:396.063200pt;}
.y2dc{bottom:396.230000pt;}
.y60{bottom:396.358400pt;}
.y34{bottom:398.454000pt;}
.y212{bottom:399.532267pt;}
.y1ec{bottom:399.886400pt;}
.y202{bottom:400.786000pt;}
.y118{bottom:401.270000pt;}
.yad{bottom:402.032933pt;}
.y164{bottom:405.187120pt;}
.yd9{bottom:405.738400pt;}
.y86{bottom:405.906267pt;}
.y285{bottom:405.934267pt;}
.y2ae{bottom:406.748667pt;}
.y1a0{bottom:407.662800pt;}
.y263{bottom:408.686267pt;}
.y2db{bottom:412.232667pt;}
.y33{bottom:412.450667pt;}
.y106{bottom:413.018400pt;}
.y5f{bottom:414.362400pt;}
.y1bb{bottom:416.415200pt;}
.y1eb{bottom:418.548400pt;}
.y201{bottom:419.448000pt;}
.yac{bottom:420.036933pt;}
.y2ad{bottom:422.751333pt;}
.y163{bottom:423.491140pt;}
.yd8{bottom:424.134400pt;}
.y85{bottom:424.302267pt;}
.y284{bottom:424.330267pt;}
.y211{bottom:425.030400pt;}
.y19f{bottom:426.058800pt;}
.y32{bottom:426.447333pt;}
.y262{bottom:427.082267pt;}
.y2da{bottom:428.235333pt;}
.y105{bottom:431.414400pt;}
.y5e{bottom:432.366400pt;}
.y1ea{bottom:437.210400pt;}
.yab{bottom:438.040933pt;}
.y200{bottom:438.110000pt;}
.y2ac{bottom:438.754000pt;}
.y31{bottom:440.444000pt;}
.y162{bottom:441.795160pt;}
.yd7{bottom:442.530400pt;}
.y84{bottom:442.698267pt;}
.y283{bottom:442.726267pt;}
.y2d9{bottom:444.238000pt;}
.y19e{bottom:444.454800pt;}
.y261{bottom:445.478267pt;}
.yc{bottom:446.990669pt;}
.y104{bottom:449.810400pt;}
.y5d{bottom:450.370400pt;}
.y210{bottom:450.655333pt;}
.y2ab{bottom:454.756667pt;}
.y1e9{bottom:455.872400pt;}
.yaa{bottom:456.044933pt;}
.y1ff{bottom:456.772000pt;}
.y161{bottom:460.099180pt;}
.y2d8{bottom:460.240667pt;}
.yd6{bottom:460.926400pt;}
.y83{bottom:461.094267pt;}
.y282{bottom:461.122267pt;}
.y19d{bottom:462.850800pt;}
.yb{bottom:462.990669pt;}
.y260{bottom:463.874267pt;}
.y103{bottom:468.206400pt;}
.y5c{bottom:468.374400pt;}
.y2aa{bottom:470.759333pt;}
.ya9{bottom:474.048933pt;}
.y1e8{bottom:474.534400pt;}
.y1fe{bottom:475.434000pt;}
.y20f{bottom:476.153333pt;}
.y2d7{bottom:476.243333pt;}
.y160{bottom:478.403200pt;}
.ya{bottom:478.990666pt;}
.yd5{bottom:479.322400pt;}
.y82{bottom:479.490267pt;}
.y281{bottom:479.518267pt;}
.y19c{bottom:481.246800pt;}
.y25f{bottom:482.270267pt;}
.y5b{bottom:486.378400pt;}
.y102{bottom:486.602400pt;}
.y2a9{bottom:486.762000pt;}
.y30{bottom:488.463067pt;}
.y20e{bottom:491.883467pt;}
.ya8{bottom:492.052933pt;}
.y2d6{bottom:492.246000pt;}
.y1e7{bottom:493.196400pt;}
.y1fd{bottom:494.096000pt;}
.y9{bottom:494.990666pt;}
.yd4{bottom:497.718400pt;}
.y81{bottom:497.886267pt;}
.y280{bottom:497.914267pt;}
.y19b{bottom:499.642800pt;}
.y2f{bottom:499.793067pt;}
.y25e{bottom:500.666267pt;}
.y2a8{bottom:502.764667pt;}
.y5a{bottom:504.382400pt;}
.y101{bottom:504.998400pt;}
.y2d5{bottom:508.248667pt;}
.ya7{bottom:510.056933pt;}
.y1e6{bottom:511.858400pt;}
.y1fc{bottom:512.758000pt;}
.yd3{bottom:516.114400pt;}
.y80{bottom:516.282267pt;}
.y27f{bottom:516.310267pt;}
.y2e{bottom:516.795600pt;}
.y2a7{bottom:518.767333pt;}
.y25d{bottom:519.062267pt;}
.y59{bottom:522.386400pt;}
.y2d4{bottom:524.251333pt;}
.y15e{bottom:526.750267pt;}
.ya6{bottom:528.060933pt;}
.y1e5{bottom:530.520400pt;}
.y1fb{bottom:531.420000pt;}
.yd2{bottom:534.510400pt;}
.y7f{bottom:534.678267pt;}
.y27e{bottom:534.706267pt;}
.y2a6{bottom:534.770000pt;}
.y25c{bottom:537.458267pt;}
.y2d3{bottom:540.254000pt;}
.y58{bottom:540.390400pt;}
.y19a{bottom:540.720000pt;}
.ya5{bottom:546.064933pt;}
.y100{bottom:546.075600pt;}
.y1e4{bottom:549.182400pt;}
.y1fa{bottom:550.082000pt;}
.y2a5{bottom:550.772667pt;}
.yd1{bottom:552.906400pt;}
.y2d{bottom:553.030000pt;}
.y27d{bottom:553.102267pt;}
.y2d2{bottom:556.256667pt;}
.y57{bottom:558.394400pt;}
.y1a4{bottom:561.912000pt;}
.y18c{bottom:562.500000pt;}
.ya4{bottom:564.068933pt;}
.y2c{bottom:564.360000pt;}
.y7e{bottom:564.416800pt;}
.y2a4{bottom:566.775333pt;}
.y1e3{bottom:567.844400pt;}
.yf0{bottom:567.856000pt;}
.y1f9{bottom:568.744000pt;}
.yd0{bottom:571.302400pt;}
.y27c{bottom:571.498267pt;}
.y2d1{bottom:572.259333pt;}
.y8{bottom:573.786667pt;}
.y56{bottom:576.398400pt;}
.y25b{bottom:578.535467pt;}
.y2b{bottom:581.362533pt;}
.ya3{bottom:582.072933pt;}
.y2a3{bottom:582.778000pt;}
.y1e2{bottom:586.506400pt;}
.y1f8{bottom:587.406000pt;}
.y2d0{bottom:588.262000pt;}
.ycf{bottom:589.698400pt;}
.y27b{bottom:589.894267pt;}
.y7{bottom:592.685334pt;}
.y55{bottom:594.402400pt;}
.y2a2{bottom:598.780667pt;}
.ya2{bottom:600.076933pt;}
.y226{bottom:600.314667pt;}
.y2cf{bottom:604.264667pt;}
.y1e1{bottom:605.168400pt;}
.y1f7{bottom:606.068000pt;}
.y7d{bottom:608.094400pt;}
.y27a{bottom:608.290267pt;}
.y54{bottom:612.406400pt;}
.y2a1{bottom:614.783333pt;}
.y2a{bottom:617.596933pt;}
.ya1{bottom:618.080933pt;}
.y2ce{bottom:620.267333pt;}
.y15c{bottom:623.830400pt;}
.y1f6{bottom:624.730000pt;}
.y7c{bottom:626.490400pt;}
.y279{bottom:626.686267pt;}
.y29{bottom:628.926933pt;}
.y53{bottom:630.410400pt;}
.y2a0{bottom:630.786000pt;}
.y2cd{bottom:636.270000pt;}
.y15b{bottom:642.492400pt;}
.y1f5{bottom:643.392000pt;}
.y7b{bottom:644.886400pt;}
.y278{bottom:645.082267pt;}
.y6{bottom:645.598667pt;}
.y28{bottom:645.929467pt;}
.y29f{bottom:646.788667pt;}
.ya0{bottom:647.419467pt;}
.y52{bottom:648.414400pt;}
.y2cc{bottom:652.272667pt;}
.y1ba{bottom:657.215200pt;}
.y15a{bottom:661.154400pt;}
.y1f4{bottom:662.054000pt;}
.y29e{bottom:662.791333pt;}
.y7a{bottom:663.282400pt;}
.y277{bottom:663.478267pt;}
.y51{bottom:666.418400pt;}
.y2cb{bottom:668.275333pt;}
.y3{bottom:668.977329pt;}
.y258{bottom:672.126933pt;}
.y29d{bottom:678.794000pt;}
.y159{bottom:679.816400pt;}
.y1a2{bottom:679.869867pt;}
.y1f3{bottom:680.716000pt;}
.y79{bottom:681.678400pt;}
.y27{bottom:682.160533pt;}
.y2ca{bottom:684.278000pt;}
.y50{bottom:684.422400pt;}
.y9f{bottom:685.402400pt;}
.y276{bottom:693.216933pt;}
.y29c{bottom:694.796667pt;}
.y158{bottom:698.478400pt;}
.y78{bottom:700.074400pt;}
.y2c9{bottom:700.280667pt;}
.y4f{bottom:702.426400pt;}
.y9e{bottom:703.266400pt;}
.y26{bottom:710.160533pt;}
.y29b{bottom:710.799333pt;}
.y2c8{bottom:716.283333pt;}
.y157{bottom:717.140400pt;}
.y77{bottom:718.470400pt;}
.y4e{bottom:720.430400pt;}
.y9d{bottom:721.130400pt;}
.y29a{bottom:726.802000pt;}
.y1f1{bottom:729.305867pt;}
.y2c7{bottom:732.286000pt;}
.y156{bottom:735.802400pt;}
.y76{bottom:736.866400pt;}
.y25{bottom:738.160533pt;}
.y4d{bottom:738.434400pt;}
.y9c{bottom:738.994400pt;}
.y299{bottom:742.804667pt;}
.y2c6{bottom:748.288667pt;}
.y155{bottom:754.464400pt;}
.y75{bottom:755.262400pt;}
.y4c{bottom:756.438400pt;}
.y9b{bottom:756.858400pt;}
.y298{bottom:758.807333pt;}
.y2c5{bottom:764.291333pt;}
.y154{bottom:773.126400pt;}
.y74{bottom:773.658400pt;}
.y4b{bottom:774.442400pt;}
.y9a{bottom:774.722400pt;}
.y297{bottom:774.810000pt;}
.y2c4{bottom:780.294000pt;}
.y2{bottom:781.661334pt;}
.y25a{bottom:788.975333pt;}
.y296{bottom:790.812667pt;}
.y153{bottom:791.788400pt;}
.y73{bottom:792.054400pt;}
.y4a{bottom:792.446400pt;}
.y99{bottom:792.586400pt;}
.y24{bottom:792.615867pt;}
.y2c3{bottom:796.296667pt;}
.y259{bottom:799.643333pt;}
.y23{bottom:803.283867pt;}
.y49{bottom:810.450400pt;}
.y2c2{bottom:812.299333pt;}
.y295{bottom:812.482000pt;}
.y47{bottom:829.934133pt;}
.y48{bottom:859.040400pt;}
.y1{bottom:859.312000pt;}
.h45{height:-180.166667pt;}
.h13{height:22.146875pt;}
.h16{height:22.398667pt;}
.h14{height:23.312500pt;}
.h18{height:23.977734pt;}
.h17{height:23.994596pt;}
.h1d{height:24.186220pt;}
.h1c{height:24.203229pt;}
.h1a{height:24.746667pt;}
.h4b{height:25.411458pt;}
.h23{height:25.579622pt;}
.h37{height:25.810404pt;}
.h15{height:25.940104pt;}
.h4e{height:26.442972pt;}
.h47{height:26.681250pt;}
.h22{height:26.933663pt;}
.hb{height:27.197917pt;}
.h3b{height:27.211540pt;}
.hc{height:28.000000pt;}
.h27{height:28.182070pt;}
.h7{height:28.560000pt;}
.h53{height:28.982508pt;}
.h3f{height:29.020833pt;}
.h41{height:29.149266pt;}
.h4a{height:29.166667pt;}
.h33{height:29.386062pt;}
.hf{height:30.000000pt;}
.h56{height:30.723958pt;}
.h10{height:31.498698pt;}
.h30{height:32.531250pt;}
.h2c{height:33.019529pt;}
.h3e{height:33.184805pt;}
.h2a{height:33.351562pt;}
.h50{height:35.257048pt;}
.h49{height:35.575000pt;}
.h3d{height:36.282053pt;}
.h38{height:36.872005pt;}
.ha{height:37.057292pt;}
.h29{height:37.576094pt;}
.h55{height:38.643344pt;}
.h39{height:38.715605pt;}
.h43{height:38.865687pt;}
.h12{height:38.910156pt;}
.h35{height:39.181416pt;}
.he{height:39.760417pt;}
.h25{height:40.532000pt;}
.h20{height:40.533333pt;}
.h6{height:40.800000pt;}
.h4f{height:41.250695pt;}
.h19{height:41.475000pt;}
.h21{height:41.504167pt;}
.h11{height:41.567708pt;}
.h48{height:41.622750pt;}
.h3c{height:42.449869pt;}
.h3{height:42.840000pt;}
.h28{height:43.964030pt;}
.h2e{height:44.025915pt;}
.h1f{height:44.245833pt;}
.h1e{height:44.630614pt;}
.h54{height:45.212860pt;}
.h42{height:45.473003pt;}
.h34{height:45.842464pt;}
.h2{height:48.960000pt;}
.h2d{height:51.510377pt;}
.h24{height:52.635417pt;}
.h1b{height:58.477980pt;}
.h2f{height:61.859250pt;}
.h31{height:62.679562pt;}
.h5{height:69.360000pt;}
.hd{height:74.114583pt;}
.h4{height:105.826671pt;}
.h4d{height:182.321333pt;}
.h46{height:189.461333pt;}
.h4c{height:190.866667pt;}
.h44{height:203.162667pt;}
.h52{height:218.612000pt;}
.h51{height:219.844000pt;}
.h32{height:249.761333pt;}
.h26{height:252.302667pt;}
.h3a{height:253.946667pt;}
.h40{height:257.657333pt;}
.h36{height:273.677333pt;}
.h2b{height:374.412000pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:25.601333pt;}
.w6{width:30.933333pt;}
.w9{width:71.733333pt;}
.w7{width:128.000000pt;}
.w8{width:130.933333pt;}
.wa{width:197.334667pt;}
.wc{width:491.338667pt;}
.w14{width:494.994667pt;}
.wf{width:495.341333pt;}
.w16{width:495.945333pt;}
.w13{width:496.062667pt;}
.we{width:496.590667pt;}
.w12{width:496.956000pt;}
.w10{width:497.148000pt;}
.wd{width:497.301333pt;}
.w11{width:498.513333pt;}
.w15{width:498.897333pt;}
.wb{width:506.733333pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x30{left:-79.615600pt;}
.x31{left:-64.566933pt;}
.x63{left:-35.942800pt;}
.x42{left:-34.223200pt;}
.x4d{left:-32.625200pt;}
.x62{left:-22.734000pt;}
.x41{left:-20.830400pt;}
.x4c{left:-19.340400pt;}
.x47{left:-11.133467pt;}
.x2d{left:-8.336000pt;}
.x0{left:0.000000pt;}
.x14{left:1.900133pt;}
.x2c{left:4.508000pt;}
.x57{left:7.807200pt;}
.x13{left:8.697367pt;}
.x9{left:10.034000pt;}
.x5a{left:12.220000pt;}
.x12{left:13.333467pt;}
.x21{left:14.307333pt;}
.x52{left:18.704933pt;}
.x43{left:20.052800pt;}
.x1e{left:25.420455pt;}
.x1c{left:27.823200pt;}
.x1f{left:38.108533pt;}
.x11{left:40.733467pt;}
.x20{left:43.284133pt;}
.x17{left:45.107467pt;}
.x4f{left:52.807200pt;}
.x5e{left:55.011867pt;}
.x25{left:60.800133pt;}
.x26{left:62.203867pt;}
.x1d{left:64.514000pt;}
.x5{left:75.590533pt;}
.x1b{left:77.490533pt;}
.x3e{left:79.536533pt;}
.x1a{left:84.285433pt;}
.x48{left:85.463733pt;}
.x23{left:88.433467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x24{left:95.925200pt;}
.x51{left:109.842133pt;}
.x46{left:110.816400pt;}
.x19{left:112.490533pt;}
.x4b{left:113.530800pt;}
.x56{left:119.787467pt;}
.x54{left:122.987467pt;}
.x27{left:128.621467pt;}
.x64{left:131.649733pt;}
.x7{left:143.465600pt;}
.x32{left:156.300533pt;}
.x22{left:166.221467pt;}
.x2b{left:171.536400pt;}
.x4{left:180.874667pt;}
.xc{left:182.846000pt;}
.xb{left:189.643233pt;}
.xa{left:194.279333pt;}
.x15{left:222.488133pt;}
.x16{left:229.488000pt;}
.x61{left:256.377200pt;}
.x33{left:268.920533pt;}
.x28{left:291.821467pt;}
.xd{left:293.649333pt;}
.x10{left:295.549600pt;}
.xf{left:302.350667pt;}
.xe{left:307.116267pt;}
.x5c{left:311.870400pt;}
.x34{left:326.832533pt;}
.x36{left:331.704533pt;}
.x35{left:336.036533pt;}
.x18{left:360.421467pt;}
.x38{left:382.824533pt;}
.x37{left:387.276533pt;}
.x6{left:390.704933pt;}
.x3{left:404.408000pt;}
.x3a{left:445.596533pt;}
.x39{left:447.720533pt;}
.x3b{left:451.716533pt;}
.x50{left:477.812400pt;}
.x5f{left:480.017067pt;}
.x53{left:482.752800pt;}
.x5b{left:495.393200pt;}
.x45{left:498.096933pt;}
.x5d{left:500.720667pt;}
.x55{left:502.464800pt;}
.x3d{left:504.792533pt;}
.x4a{left:506.574533pt;}
.x40{left:509.920667pt;}
.x59{left:512.138267pt;}
.x3c{left:513.132533pt;}
.x44{left:515.720400pt;}
.x2f{left:518.662133pt;}
.x60{left:525.199467pt;}
.x4e{left:528.109867pt;}
.x58{left:530.358533pt;}
.x49{left:531.745733pt;}
.x3f{left:534.732533pt;}
.x29{left:537.308667pt;}
.x2a{left:538.795867pt;}
.x8{left:553.595733pt;}
.x2e{left:559.689600pt;}
}




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