
    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_10ece7dcecf94e82a3d5a8b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;font-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_58153467a8ee51d4560db656.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.793000;font-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_051c9cececd45cfd23420b4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.749000;font-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_edd8d4b46a6d9b0327850f07.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;font-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_c4b678070811e5ff5385b077.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.793000;font-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_62d35e88b68f7c06b3cf6a17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.212000;font-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_306fd4a5b6a864b14db093cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.186000;font-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_c976c9b77a272ae341e7c4a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.812000;font-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_d5e7cccd8cc55ddf8b00ee22.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.212000;font-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_b67609f323af6e5c71fa4930.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.212000;font-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_b3bf95016f39c2f7bf8990f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.048000;font-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_37b9f6ea26b6e2a10e0e9d33.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911176;font-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_264874e83f98dc06f7911077.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;font-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_5ccc9d594c80e76328a2b754.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.858398;font-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_a6c8f43b37b57379a41b90b2.woff2')format("woff");}.fff{font-family:fff;line-height:0.773000;font-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_8187ee948d0756d5f049abcf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740000;font-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_4ae1d18ff1465380ab8b0d8e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031000;font-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_7f5c02e29c028f342fb0c05e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.067000;font-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_3abb4e440a47644f61765951.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.750000;font-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_239ed1984b0573991a834c4f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.809000;font-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_e693a235eae68f18051fc95b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.120000;font-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_50dbc636af2a662f83a347b8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.057000;font-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_2f317aa45f00c812775695eb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.762000;font-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_ae55d9cbef8b0b820170de3a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_bde6037bc10389e8f748538b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.041176;font-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_d7f5fdb66faaa7555e2ab408.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.034000;font-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_f7c248c042d7597e3bca16fc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.988281;font-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_860e40f00d0121f535c29c99.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.944336;font-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_8940c53cdbadb210f3145135.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.944336;font-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_082b704ee75221890c337af7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.958008;font-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_0db1825d3eef410a031455a6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.212000;font-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_71b9bf3a3d73c0156aee3508.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.212000;font-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_0d1dec58cef48a1f37b208b4.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.188000;font-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_f76f0bde4ae52b7c03de5862.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.763672;font-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_b39f9030de66f9d4cdd24e7a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.076000;font-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_e5990086f40091d5e7460944.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_8f2357f2af4e3ee1ddd5c33c.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.212000;font-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_e4ba171dd81e214959d5244f.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.768000;font-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_d06ac7160e0a322998614868.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.998000;font-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_3e82a3005248253924311490.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_f229270feb0fb7cded9f4e16.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_cb651648132933b17230507e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_f229270feb0fb7cded9f4e16.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_fcf0e2bed86b540daff57ebd.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_c24ea3a9a20c924bd42bea4d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_b6036fd0425b6fe877c49c93.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_997f4ab81872aa44772e320c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_0bc3a214654dc019b413b5f3.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_370cff4d7ab8c166fb0f70d2.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_1777fc38681d8695e94957a0.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_9b011c9bcae6145c7858eacb.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_c65e7960fec17bf6e60d9eb6.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_9b4515b6d0b22efb569940f9.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_5a050f5739e49924146adf77.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.985352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_8549dfa09136500cc88ac5ba.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_b0e686a031f18d9bd81bc8df.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.188000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_b6036fd0425b6fe877c49c93.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_997f4ab81872aa44772e320c.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_0bc3a214654dc019b413b5f3.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_1777fc38681d8695e94957a0.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.056000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_370cff4d7ab8c166fb0f70d2.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_a75d04d2e400ec0aeaebda99.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_703376b92bfdacbc2e255d9e.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_a0abb903786d88ba37f52426.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_f18f7ecb24263e5dc6414529.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.204000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_07dc811c413975ff02e9be4f.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.034000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_de6737e63005dcd0aa5bcb78.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_571331143035f6dd5f4ee597.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.220000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_6314be8719a46012d0714647.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_0747a14b925777132d0714a1.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_5253c09263cb2df5bc4ee489.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_2fd4b492c706d9741652135e.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.066000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_50448855038eefeefd185c5c.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_3ab2a57582e884d95f3afc08.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_feee8accebdfbf2d9eadf7cb.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_bf7fc0f39a7a977286232320.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.768066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_ab4cf6e6a5a7bc65ea4f4707.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_a7d89defbd9d309fc16c2e63.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_a2712378d4e685a79742d16d.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249824,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248787,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249688,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249689,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m9{transform:matrix(0.250171,-0.001485,0.001486,0.249996,0,0);-ms-transform:matrix(0.250171,-0.001485,0.001486,0.249996,0,0);-webkit-transform:matrix(0.250171,-0.001485,0.001486,0.249996,0,0);}
.m8{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v6{vertical-align:-69.120000px;}
.vd{vertical-align:-36.000000px;}
.v8{vertical-align:-24.553271px;}
.va{vertical-align:-21.364071px;}
.v7{vertical-align:-9.470490px;}
.vc{vertical-align:-6.023671px;}
.vb{vertical-align:-1.497151px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.940550px;}
.v9{vertical-align:5.326350px;}
.vf{vertical-align:16.477311px;}
.ve{vertical-align:24.451485px;}
.v1{vertical-align:30.240000px;}
.v10{vertical-align:34.318195px;}
.v4{vertical-align:41.760000px;}
.v3{vertical-align:56.008610px;}
.v5{vertical-align:64.800000px;}
.ls50{letter-spacing:-2.666400px;}
.ls6a{letter-spacing:-2.204400px;}
.ls69{letter-spacing:-1.742400px;}
.ls6{letter-spacing:-1.623600px;}
.ls9b{letter-spacing:-1.161520px;}
.lscc{letter-spacing:-0.529752px;}
.lsb1{letter-spacing:-0.370475px;}
.ls97{letter-spacing:-0.363000px;}
.ls44{letter-spacing:-0.360000px;}
.ls78{letter-spacing:-0.356400px;}
.lsd8{letter-spacing:-0.346800px;}
.ls18{letter-spacing:-0.345839px;}
.lsca{letter-spacing:-0.345600px;}
.lsc1{letter-spacing:-0.344400px;}
.ls19{letter-spacing:-0.337403px;}
.ls95{letter-spacing:-0.336000px;}
.ls30{letter-spacing:-0.331200px;}
.ls4e{letter-spacing:-0.330000px;}
.ls62{letter-spacing:-0.326400px;}
.ls85{letter-spacing:-0.313200px;}
.ls61{letter-spacing:-0.297600px;}
.ls98{letter-spacing:-0.297000px;}
.lsbf{letter-spacing:-0.285600px;}
.ls79{letter-spacing:-0.280800px;}
.ls4f{letter-spacing:-0.273600px;}
.ls68{letter-spacing:-0.266400px;}
.ls42{letter-spacing:-0.264000px;}
.lscd{letter-spacing:-0.260400px;}
.ls6c{letter-spacing:-0.259200px;}
.ls66{letter-spacing:-0.249600px;}
.ls5a{letter-spacing:-0.247933px;}
.ls16{letter-spacing:-0.240076px;}
.ls52{letter-spacing:-0.240000px;}
.ls96{letter-spacing:-0.237600px;}
.ls28{letter-spacing:-0.236182px;}
.ls4{letter-spacing:-0.230400px;}
.lsda{letter-spacing:-0.224400px;}
.ls17{letter-spacing:-0.210877px;}
.ls26{letter-spacing:-0.202442px;}
.lsa9{letter-spacing:-0.201600px;}
.ls20{letter-spacing:-0.194007px;}
.ls81{letter-spacing:-0.183600px;}
.ls27{letter-spacing:-0.177137px;}
.ls7e{letter-spacing:-0.172800px;}
.ls1b{letter-spacing:-0.168702px;}
.ls56{letter-spacing:-0.165289px;}
.ls91{letter-spacing:-0.156600px;}
.lsa3{letter-spacing:-0.144000px;}
.ls5c{letter-spacing:-0.137604px;}
.ls11f{letter-spacing:-0.137269px;}
.lsa5{letter-spacing:-0.134400px;}
.ls87{letter-spacing:-0.129600px;}
.lsb7{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.118800px;}
.ls47{letter-spacing:-0.115200px;}
.ls124{letter-spacing:-0.114391px;}
.ls4d{letter-spacing:-0.105600px;}
.lsc0{letter-spacing:-0.100800px;}
.ls112{letter-spacing:-0.097770px;}
.ls10e{letter-spacing:-0.097536px;}
.lsc6{letter-spacing:-0.097200px;}
.ls2{letter-spacing:-0.096000px;}
.ls7f{letter-spacing:-0.086400px;}
.ls23{letter-spacing:-0.084351px;}
.ls57{letter-spacing:-0.082644px;}
.ls9{letter-spacing:-0.075600px;}
.ls126{letter-spacing:-0.074354px;}
.ls122{letter-spacing:-0.068635px;}
.ls25{letter-spacing:-0.067481px;}
.ls9a{letter-spacing:-0.067200px;}
.ls7d{letter-spacing:-0.064800px;}
.ls11e{letter-spacing:-0.062915px;}
.ls88{letter-spacing:-0.059400px;}
.ls125{letter-spacing:-0.057196px;}
.ls120{letter-spacing:-0.051476px;}
.ls6f{letter-spacing:-0.050400px;}
.ls111{letter-spacing:-0.048885px;}
.ls10d{letter-spacing:-0.048768px;}
.ls11c{letter-spacing:-0.045756px;}
.ls86{letter-spacing:-0.043200px;}
.lsa4{letter-spacing:-0.042000px;}
.ls123{letter-spacing:-0.040037px;}
.lsaa{letter-spacing:-0.038400px;}
.ls119{letter-spacing:-0.034317px;}
.lsbb{letter-spacing:-0.033600px;}
.ls9d{letter-spacing:-0.032485px;}
.ls89{letter-spacing:-0.032400px;}
.lsd9{letter-spacing:-0.030600px;}
.ls11d{letter-spacing:-0.028598px;}
.ls9c{letter-spacing:-0.025988px;}
.ls110{letter-spacing:-0.024080px;}
.ls10c{letter-spacing:-0.024023px;}
.ls10a{letter-spacing:-0.024000px;}
.ls11a{letter-spacing:-0.022878px;}
.ls77{letter-spacing:-0.021600px;}
.ls116{letter-spacing:-0.017159px;}
.ls1c{letter-spacing:-0.016870px;}
.ls115{letter-spacing:-0.011439px;}
.ls113{letter-spacing:-0.010863px;}
.ls10f{letter-spacing:-0.010837px;}
.ls2e{letter-spacing:-0.007200px;}
.ls117{letter-spacing:-0.005720px;}
.ls5{letter-spacing:0.000000px;}
.lsaf{letter-spacing:0.000015px;}
.lsad{letter-spacing:0.000044px;}
.lsae{letter-spacing:0.000089px;}
.ls4b{letter-spacing:0.004800px;}
.lsde{letter-spacing:0.005419px;}
.lsf0{letter-spacing:0.005432px;}
.ls100{letter-spacing:0.005720px;}
.ls41{letter-spacing:0.006003px;}
.lsbd{letter-spacing:0.008400px;}
.lsd7{letter-spacing:0.010200px;}
.lse5{letter-spacing:0.010837px;}
.lsf7{letter-spacing:0.010863px;}
.ls105{letter-spacing:0.011439px;}
.lse2{letter-spacing:0.016256px;}
.lsf4{letter-spacing:0.016295px;}
.ls103{letter-spacing:0.017159px;}
.lse6{letter-spacing:0.021675px;}
.lsf8{letter-spacing:0.021727px;}
.ls107{letter-spacing:0.022878px;}
.ls3{letter-spacing:0.024000px;}
.lsce{letter-spacing:0.025200px;}
.ls24{letter-spacing:0.025305px;}
.lse4{letter-spacing:0.027093px;}
.lsf6{letter-spacing:0.027158px;}
.ls46{letter-spacing:0.028800px;}
.lse3{letter-spacing:0.032512px;}
.lsf5{letter-spacing:0.032590px;}
.ls104{letter-spacing:0.034317px;}
.lse7{letter-spacing:0.037931px;}
.lsf9{letter-spacing:0.038022px;}
.ls99{letter-spacing:0.039600px;}
.ls29{letter-spacing:0.042175px;}
.lsdd{letter-spacing:0.043349px;}
.lsef{letter-spacing:0.043453px;}
.ls101{letter-spacing:0.045756px;}
.lse8{letter-spacing:0.048768px;}
.lsfa{letter-spacing:0.048885px;}
.ls2f{letter-spacing:0.050400px;}
.lsd5{letter-spacing:0.051000px;}
.ls102{letter-spacing:0.051476px;}
.lse1{letter-spacing:0.054187px;}
.lsf3{letter-spacing:0.054317px;}
.ls93{letter-spacing:0.057600px;}
.ls5e{letter-spacing:0.060000px;}
.lsdf{letter-spacing:0.065024px;}
.lsf1{letter-spacing:0.065180px;}
.lsc8{letter-spacing:0.070200px;}
.lse0{letter-spacing:0.070443px;}
.lsf2{letter-spacing:0.070612px;}
.ls7c{letter-spacing:0.075600px;}
.lseb{letter-spacing:0.075861px;}
.lsfd{letter-spacing:0.076043px;}
.ls65{letter-spacing:0.076800px;}
.ls43{letter-spacing:0.079200px;}
.lsec{letter-spacing:0.081280px;}
.lsfe{letter-spacing:0.081475px;}
.lsdc{letter-spacing:0.081677px;}
.lsee{letter-spacing:0.081873px;}
.lsbe{letter-spacing:0.084000px;}
.lsf{letter-spacing:0.084351px;}
.ls2c{letter-spacing:0.086400px;}
.lsea{letter-spacing:0.086699px;}
.lsfc{letter-spacing:0.086907px;}
.lsc2{letter-spacing:0.092400px;}
.lsa6{letter-spacing:0.093600px;}
.ls82{letter-spacing:0.097200px;}
.lse9{letter-spacing:0.097536px;}
.lsfb{letter-spacing:0.097770px;}
.ls1e{letter-spacing:0.101221px;}
.ls8c{letter-spacing:0.108000px;}
.lsb4{letter-spacing:0.114002px;}
.ls7{letter-spacing:0.115200px;}
.ls80{letter-spacing:0.118800px;}
.ls60{letter-spacing:0.124800px;}
.ls1f{letter-spacing:0.126526px;}
.ls7b{letter-spacing:0.140400px;}
.ls121{letter-spacing:0.142989px;}
.ls51{letter-spacing:0.151200px;}
.ls2a{letter-spacing:0.151832px;}
.ls108{letter-spacing:0.154428px;}
.ls2b{letter-spacing:0.160267px;}
.lsc9{letter-spacing:0.162000px;}
.ls58{letter-spacing:0.165289px;}
.lsd0{letter-spacing:0.165600px;}
.ls118{letter-spacing:0.165867px;}
.ls33{letter-spacing:0.168011px;}
.lsc{letter-spacing:0.168702px;}
.ls6e{letter-spacing:0.172800px;}
.lsa8{letter-spacing:0.182400px;}
.ls22{letter-spacing:0.185572px;}
.lscb{letter-spacing:0.187200px;}
.ls10b{letter-spacing:0.191400px;}
.ls5f{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.192060px;}
.lsd6{letter-spacing:0.193800px;}
.ls127{letter-spacing:0.201600px;}
.lsd4{letter-spacing:0.204000px;}
.ls84{letter-spacing:0.205200px;}
.ls1d{letter-spacing:0.210877px;}
.lsb5{letter-spacing:0.215403px;}
.ls90{letter-spacing:0.216000px;}
.lsb3{letter-spacing:0.216003px;}
.lsb2{letter-spacing:0.216603px;}
.lsba{letter-spacing:0.218400px;}
.ls5b{letter-spacing:0.220166px;}
.ls92{letter-spacing:0.221400px;}
.ls32{letter-spacing:0.230400px;}
.lsc7{letter-spacing:0.232200px;}
.ls31{letter-spacing:0.237600px;}
.lsc5{letter-spacing:0.240000px;}
.lsb9{letter-spacing:0.243600px;}
.lsd3{letter-spacing:0.244800px;}
.ls8f{letter-spacing:0.245400px;}
.ls74{letter-spacing:0.246000px;}
.ls8e{letter-spacing:0.246600px;}
.ls55{letter-spacing:0.247933px;}
.ls8b{letter-spacing:0.248400px;}
.ls45{letter-spacing:0.249600px;}
.lscf{letter-spacing:0.259200px;}
.ls54{letter-spacing:0.268800px;}
.lsc3{letter-spacing:0.269966px;}
.ls8a{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.276000px;}
.ls6d{letter-spacing:0.280800px;}
.ls0{letter-spacing:0.282006px;}
.ls8d{letter-spacing:0.288000px;}
.lsa2{letter-spacing:0.294000px;}
.ls21{letter-spacing:0.295228px;}
.lsc4{letter-spacing:0.297000px;}
.ls64{letter-spacing:0.297600px;}
.lsb8{letter-spacing:0.302400px;}
.ls2d{letter-spacing:0.309600px;}
.lsb0{letter-spacing:0.312000px;}
.lsa{letter-spacing:0.313200px;}
.lsdb{letter-spacing:0.318003px;}
.lsd1{letter-spacing:0.319200px;}
.ls67{letter-spacing:0.326400px;}
.ls4c{letter-spacing:0.330000px;}
.ls59{letter-spacing:0.330578px;}
.ls83{letter-spacing:0.334800px;}
.ls1{letter-spacing:0.336000px;}
.ls1a{letter-spacing:0.337403px;}
.ls75{letter-spacing:0.345600px;}
.ls72{letter-spacing:0.348000px;}
.ls6b{letter-spacing:0.356400px;}
.lsd2{letter-spacing:0.357000px;}
.ls70{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.360113px;}
.lsbc{letter-spacing:0.361200px;}
.ls76{letter-spacing:0.367200px;}
.lsa7{letter-spacing:0.374400px;}
.ls63{letter-spacing:0.393600px;}
.ls3a{letter-spacing:1.008000px;}
.ls48{letter-spacing:1.036800px;}
.ls49{letter-spacing:1.051200px;}
.ls4a{letter-spacing:1.058400px;}
.ls3c{letter-spacing:1.065600px;}
.ls37{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.087200px;}
.ls35{letter-spacing:1.094400px;}
.ls36{letter-spacing:1.101600px;}
.ls3d{letter-spacing:1.108800px;}
.ls40{letter-spacing:1.123200px;}
.ls3b{letter-spacing:1.130400px;}
.ls34{letter-spacing:1.137600px;}
.ls39{letter-spacing:1.144800px;}
.ls38{letter-spacing:1.152000px;}
.ls3f{letter-spacing:1.173600px;}
.lsac{letter-spacing:2.711876px;}
.ls11b{letter-spacing:5.685243px;}
.ls8{letter-spacing:17.917199px;}
.ls12{letter-spacing:21.762762px;}
.ls5d{letter-spacing:26.250005px;}
.lsa1{letter-spacing:41.933985px;}
.ls106{letter-spacing:44.383905px;}
.ls9f{letter-spacing:65.642917px;}
.lsb6{letter-spacing:105.600002px;}
.ls71{letter-spacing:124.199940px;}
.ls73{letter-spacing:124.200000px;}
.ls53{letter-spacing:142.562722px;}
.lsd{letter-spacing:208.515085px;}
.lsb{letter-spacing:214.250824px;}
.lse{letter-spacing:241.665093px;}
.ls10{letter-spacing:268.741839px;}
.ls11{letter-spacing:269.163954px;}
.ls109{letter-spacing:806.057574px;}
.lsed{letter-spacing:853.767482px;}
.lsff{letter-spacing:855.815423px;}
.ls114{letter-spacing:1282.069702px;}
.lsa0{letter-spacing:1411.219112px;}
.ls9e{letter-spacing:1766.310001px;}
.ls94{letter-spacing:1964.985001px;}
.lsab{letter-spacing:2169.264000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws52{word-spacing:-65.499513px;}
.ws3b{word-spacing:-62.567989px;}
.ws82{word-spacing:-57.480011px;}
.ws99{word-spacing:-57.312011px;}
.ws8{word-spacing:-57.137975px;}
.ws6d{word-spacing:-57.120011px;}
.ws6c{word-spacing:-56.976011px;}
.ws62{word-spacing:-45.983989px;}
.ws54{word-spacing:-45.772789px;}
.ws72{word-spacing:-45.465589px;}
.ws3{word-spacing:-35.725198px;}
.ws53{word-spacing:-33.099345px;}
.ws6b{word-spacing:-32.608266px;}
.ws92{word-spacing:-30.088800px;}
.ws93{word-spacing:-29.916000px;}
.ws7e{word-spacing:-29.041200px;}
.ws8e{word-spacing:-28.987200px;}
.ws7f{word-spacing:-28.522800px;}
.ws8f{word-spacing:-27.233999px;}
.ws7c{word-spacing:-24.746399px;}
.ws59{word-spacing:-23.230800px;}
.ws5a{word-spacing:-23.101200px;}
.ws2{word-spacing:-22.963198px;}
.ws5b{word-spacing:-22.636800px;}
.ws0{word-spacing:-22.617598px;}
.ws1b{word-spacing:-22.521680px;}
.ws10{word-spacing:-22.504809px;}
.ws7d{word-spacing:-22.327199px;}
.ws1c{word-spacing:-22.184276px;}
.ws73{word-spacing:-20.697598px;}
.ws4e{word-spacing:-19.667999px;}
.ws36{word-spacing:-19.533600px;}
.ws39{word-spacing:-19.461600px;}
.ws3a{word-spacing:-19.454400px;}
.ws37{word-spacing:-19.274400px;}
.ws56{word-spacing:-18.957600px;}
.ws38{word-spacing:-18.892800px;}
.ws80{word-spacing:-17.951999px;}
.ws81{word-spacing:-17.918999px;}
.wse{word-spacing:-17.882382px;}
.wsf{word-spacing:-17.713681px;}
.ws69{word-spacing:-17.701199px;}
.ws9{word-spacing:-17.671505px;}
.ws6a{word-spacing:-17.661599px;}
.ws55{word-spacing:-17.621999px;}
.ws8a{word-spacing:-17.547599px;}
.ws4a{word-spacing:-17.445600px;}
.ws44{word-spacing:-17.424000px;}
.ws45{word-spacing:-17.416800px;}
.ws3f{word-spacing:-17.409600px;}
.ws46{word-spacing:-17.402400px;}
.ws4b{word-spacing:-17.395200px;}
.ws66{word-spacing:-17.384399px;}
.ws4c{word-spacing:-17.380800px;}
.ws40{word-spacing:-17.373600px;}
.ws48{word-spacing:-17.366400px;}
.ws43{word-spacing:-17.359200px;}
.ws41{word-spacing:-17.352000px;}
.ws47{word-spacing:-17.337600px;}
.ws4d{word-spacing:-17.330400px;}
.ws68{word-spacing:-17.324999px;}
.ws49{word-spacing:-17.323200px;}
.ws42{word-spacing:-17.308800px;}
.ws67{word-spacing:-17.258999px;}
.ws77{word-spacing:-16.478719px;}
.ws3d{word-spacing:-16.272000px;}
.ws3e{word-spacing:-16.156800px;}
.ws50{word-spacing:-16.019997px;}
.ws57{word-spacing:-15.417599px;}
.ws5d{word-spacing:-14.731200px;}
.ws5f{word-spacing:-14.688000px;}
.ws60{word-spacing:-14.666400px;}
.ws83{word-spacing:-14.650200px;}
.ws65{word-spacing:-14.639400px;}
.ws63{word-spacing:-14.634000px;}
.ws61{word-spacing:-14.526000px;}
.ws86{word-spacing:-14.488200px;}
.ws5e{word-spacing:-14.385600px;}
.ws5c{word-spacing:-14.358600px;}
.ws64{word-spacing:-14.261400px;}
.ws4f{word-spacing:-13.991999px;}
.ws78{word-spacing:-13.388959px;}
.ws96{word-spacing:-11.604989px;}
.ws94{word-spacing:-11.456280px;}
.ws98{word-spacing:-11.444841px;}
.ws95{word-spacing:-11.439121px;}
.ws97{word-spacing:-11.381926px;}
.ws91{word-spacing:-10.868752px;}
.ws90{word-spacing:-10.842743px;}
.ws6e{word-spacing:-10.019980px;}
.ws70{word-spacing:-6.679987px;}
.ws7a{word-spacing:-6.403134px;}
.ws31{word-spacing:-3.036751px;}
.wsb{word-spacing:-2.699228px;}
.ws28{word-spacing:-2.530526px;}
.wsa{word-spacing:-2.083586px;}
.ws2e{word-spacing:-1.940070px;}
.ws32{word-spacing:-1.476501px;}
.ws30{word-spacing:-1.391669px;}
.ws2f{word-spacing:-1.113912px;}
.ws2d{word-spacing:-1.113431px;}
.ws1d{word-spacing:-1.096681px;}
.ws6{word-spacing:-0.768362px;}
.ws2a{word-spacing:-0.539966px;}
.ws2b{word-spacing:-0.464050px;}
.ws34{word-spacing:-0.438985px;}
.ws3c{word-spacing:-0.345600px;}
.ws17{word-spacing:-0.337283px;}
.ws8c{word-spacing:-0.331200px;}
.ws89{word-spacing:-0.259200px;}
.ws8d{word-spacing:-0.237600px;}
.ws85{word-spacing:-0.198000px;}
.ws25{word-spacing:-0.168702px;}
.ws2c{word-spacing:-0.168582px;}
.ws88{word-spacing:-0.072000px;}
.ws8b{word-spacing:-0.050400px;}
.ws7b{word-spacing:-0.049473px;}
.ws58{word-spacing:-0.033600px;}
.ws4{word-spacing:0.000000px;}
.ws33{word-spacing:0.000240px;}
.ws35{word-spacing:0.084351px;}
.ws29{word-spacing:0.084471px;}
.ws87{word-spacing:0.273600px;}
.ws84{word-spacing:0.288600px;}
.ws74{word-spacing:0.644400px;}
.ws75{word-spacing:0.692400px;}
.ws76{word-spacing:0.724800px;}
.ws5{word-spacing:1.248633px;}
.ws51{word-spacing:1.431357px;}
.ws1{word-spacing:1.557600px;}
.ws7{word-spacing:1.920845px;}
.ws26{word-spacing:166.382071px;}
.ws27{word-spacing:167.605038px;}
.wsd{word-spacing:194.681424px;}
.ws15{word-spacing:199.068029px;}
.ws12{word-spacing:219.269700px;}
.ws13{word-spacing:219.354651px;}
.ws20{word-spacing:224.879633px;}
.ws1f{word-spacing:245.250365px;}
.ws21{word-spacing:246.388862px;}
.ws14{word-spacing:246.979438px;}
.ws23{word-spacing:249.763016px;}
.ws24{word-spacing:250.690876px;}
.ws16{word-spacing:252.588409px;}
.ws1a{word-spacing:253.727026px;}
.ws19{word-spacing:254.065030px;}
.ws71{word-spacing:299.756738px;}
.ws6f{word-spacing:602.071594px;}
.wsc{word-spacing:1203.180665px;}
.ws79{word-spacing:1899.721435px;}
.ws11{word-spacing:2215.391103px;}
.ws18{word-spacing:2219.692877px;}
.ws1e{word-spacing:2242.045855px;}
.ws22{word-spacing:2247.106906px;}
._3f{margin-left:-3875.759937px;}
._2c{margin-left:-357.553439px;}
._16{margin-left:-164.491200px;}
._15{margin-left:-128.217600px;}
._1c{margin-left:-102.064935px;}
._1b{margin-left:-24.270188px;}
._1f{margin-left:-16.516508px;}
._32{margin-left:-5.715924px;}
._20{margin-left:-4.214037px;}
._7{margin-left:-2.581136px;}
._0{margin-left:-1.200000px;}
._1{width:1.200000px;}
._17{width:2.285999px;}
._1a{width:3.405449px;}
._35{width:4.690040px;}
._2e{width:5.719561px;}
._2d{width:7.092255px;}
._34{width:8.178972px;}
._33{width:9.322884px;}
._2f{width:10.352405px;}
._36{width:15.385618px;}
._30{width:17.100379px;}
._31{width:18.220420px;}
._14{width:19.942881px;}
._3b{width:22.477645px;}
._39{width:30.502695px;}
._19{width:31.611734px;}
._3a{width:33.076269px;}
._1e{width:34.454897px;}
._37{width:44.109366px;}
._3c{width:59.826605px;}
._3d{width:70.489133px;}
._26{width:89.949796px;}
._38{width:107.413350px;}
._28{width:117.024444px;}
._25{width:134.689283px;}
._27{width:142.673381px;}
._3{width:147.464151px;}
._24{width:160.338220px;}
._12{width:189.029916px;}
._21{width:190.968001px;}
._6{width:193.248060px;}
._3e{width:200.184624px;}
._18{width:246.958034px;}
._13{width:249.847727px;}
._5{width:277.588190px;}
._c{width:302.077660px;}
._9{width:303.241221px;}
._4{width:304.609923px;}
._23{width:317.750363px;}
._1d{width:322.016860px;}
._10{width:328.354450px;}
._e{width:330.191201px;}
._b{width:333.312302px;}
._8{width:356.616588px;}
._d{width:359.165721px;}
._f{width:360.599686px;}
._29{width:386.729935px;}
._2b{width:387.873352px;}
._a{width:1610.848130px;}
._2{width:1709.558085px;}
._22{width:1999.201091px;}
._2a{width:2003.996595px;}
._11{width:2031.590700px;}
.fc19{color:rgb(255,255,255);}
.fc17{color:rgb(34,34,34);}
.fc14{color:rgb(239,178,81);}
.fc13{color:rgb(164,210,132);}
.fc11{color:rgb(140,0,65);}
.fcf{color:rgb(143,143,143);}
.fce{color:rgb(0,112,192);}
.fc0{color:rgb(15,15,85);}
.fc1{color:rgb(97,198,255);}
.fc12{color:rgb(140,217,246);}
.fc3{color:rgb(0,183,241);}
.fc10{color:rgb(49,49,49);}
.fc4{color:rgb(49,49,49);}
.fc5{color:rgb(0,0,0);}
.fc9{color:rgb(166,166,166);}
.fcb{color:rgb(89,89,89);}
.fc2{color:rgb(65,232,255);}
.fc6{color:rgb(255,0,0);}
.fc18{color:rgb(0,32,96);}
.fc8{color:transparent;}
.fc16{color:rgb(237,81,92);}
.fca{color:rgb(192,0,0);}
.fc15{color:rgb(255,163,65);}
.fcd{color:rgb(72,185,255);}
.fc7{color:rgb(127,127,127);}
.fcc{color:rgb(72,185,255);}
.fs1a{font-size:13.487844px;}
.fs31{font-size:28.842945px;}
.fs2c{font-size:29.637984px;}
.fs23{font-size:30.089888px;}
.fs22{font-size:30.090031px;}
.fs1d{font-size:37.612202px;}
.fs29{font-size:43.966325px;}
.fs1c{font-size:45.135047px;}
.fs24{font-size:45.360968px;}
.fsa{font-size:47.999995px;}
.fs36{font-size:48.045473px;}
.fs39{font-size:48.160720px;}
.fs2e{font-size:48.161724px;}
.fs28{font-size:48.606143px;}
.fs1f{font-size:48.896132px;}
.fs30{font-size:49.473205px;}
.fs1e{font-size:52.657217px;}
.fs18{font-size:53.951376px;}
.fs12{font-size:54.000000px;}
.fs2f{font-size:54.089321px;}
.fs37{font-size:54.186624px;}
.fs3a{font-size:54.316602px;}
.fs20{font-size:56.418303px;}
.fs3c{font-size:57.195607px;}
.fs2a{font-size:59.275968px;}
.fsb{font-size:59.999990px;}
.fs17{font-size:60.239592px;}
.fs33{font-size:61.125178px;}
.fs3b{font-size:62.675426px;}
.fs21{font-size:63.941148px;}
.fs16{font-size:64.969722px;}
.fs2{font-size:65.999995px;}
.fs35{font-size:66.107681px;}
.fs38{font-size:66.266254px;}
.fs1b{font-size:67.439220px;}
.fs27{font-size:71.463318px;}
.fs7{font-size:72.000000px;}
.fs2d{font-size:74.094960px;}
.fs25{font-size:75.535973px;}
.fs26{font-size:75.589064px;}
.fs19{font-size:80.927064px;}
.fsf{font-size:82.644480px;}
.fs3{font-size:83.999995px;}
.fs6{font-size:84.350860px;}
.fs2b{font-size:88.913952px;}
.fs1{font-size:95.999990px;}
.fs13{font-size:101.633011px;}
.fs32{font-size:101.875296px;}
.fs34{font-size:101.999995px;}
.fs4{font-size:108.000000px;}
.fse{font-size:109.917924px;}
.fs15{font-size:110.912468px;}
.fs14{font-size:116.152013px;}
.fs11{font-size:123.967584px;}
.fs9{font-size:144.000000px;}
.fsd{font-size:168.000048px;}
.fsc{font-size:191.999952px;}
.fs0{font-size:240.000048px;}
.fs5{font-size:240.075524px;}
.fs8{font-size:263.999952px;}
.fs10{font-size:275.208036px;}
.y1e8{bottom:-492.915811px;}
.y26b{bottom:-354.938863px;}
.y225{bottom:-313.558086px;}
.y224{bottom:-292.696085px;}
.y223{bottom:-244.921696px;}
.y2bd{bottom:-232.327779px;}
.y228{bottom:-231.793101px;}
.y222{bottom:-218.912116px;}
.y2bb{bottom:-214.020903px;}
.y2b5{bottom:-205.241492px;}
.y221{bottom:-201.843330px;}
.y21e{bottom:-201.842727px;}
.y2ba{bottom:-196.476208px;}
.y2b4{bottom:-187.696654px;}
.y21f{bottom:-184.864854px;}
.y220{bottom:-184.774543px;}
.y21d{bottom:-184.773941px;}
.y2b9{bottom:-178.931513px;}
.y18d{bottom:-176.882538px;}
.y2b0{bottom:-170.166229px;}
.y2b3{bottom:-170.151959px;}
.y2bc{bottom:-170.094734px;}
.y21c{bottom:-167.795917px;}
.y18c{bottom:-161.693034px;}
.y2b8{bottom:-161.300910px;}
.y2b2{bottom:-152.607121px;}
.y18b{bottom:-146.503549px;}
.y2b7{bottom:-143.756215px;}
.y2b1{bottom:-135.062425px;}
.y21a{bottom:-131.942585px;}
.y2b6{bottom:-126.211376px;}
.y18a{bottom:-120.812474px;}
.y219{bottom:-114.873798px;}
.y2ad{bottom:-108.004536px;}
.y189{bottom:-105.437733px;}
.y2af{bottom:-99.527942px;}
.y218{bottom:-97.895172px;}
.y2ab{bottom:-90.451992px;}
.y188{bottom:-90.063029px;}
.y21b{bottom:-80.916847px;}
.y217{bottom:-80.826536px;}
.y2ac{bottom:-72.813826px;}
.y187{bottom:-69.437585px;}
.y216{bottom:-63.847910px;}
.y214{bottom:-54.816354px;}
.y186{bottom:-54.062881px;}
.y265{bottom:-52.005148px;}
.y215{bottom:-46.779274px;}
.y2aa{bottom:-46.011805px;}
.y213{bottom:-37.747568px;}
.y264{bottom:-31.093105px;}
.y212{bottom:-20.769544px;}
.y2a9{bottom:-11.336968px;}
.y96{bottom:-0.612958px;}
.y0{bottom:0.000000px;}
.y91{bottom:0.523411px;}
.y9f{bottom:4.001391px;}
.y2a8{bottom:6.986033px;}
.y93{bottom:7.427889px;}
.y11b{bottom:8.918702px;}
.y95{bottom:12.016411px;}
.ya2{bottom:14.340631px;}
.y8b{bottom:14.340804px;}
.y20e{bottom:15.084692px;}
.y296{bottom:15.719493px;}
.y263{bottom:16.795881px;}
.y1a3{bottom:18.854654px;}
.yd9{bottom:23.040000px;}
.ybe{bottom:24.480015px;}
.y2a7{bottom:24.538719px;}
.y11a{bottom:25.104115px;}
.y92{bottom:26.926957px;}
.y87{bottom:26.987391px;}
.y9a{bottom:28.115152px;}
.y9c{bottom:31.541306px;}
.y20d{bottom:32.153478px;}
.y8d{bottom:32.703674px;}
.y37{bottom:32.760000px;}
.y295{bottom:33.272037px;}
.y1a2{bottom:33.696615px;}
.y99{bottom:33.839871px;}
.y98{bottom:34.967632px;}
.y83{bottom:34.993459px;}
.y8a{bottom:35.002240px;}
.y9e{bottom:36.130000px;}
.y82{bottom:36.155655px;}
.y86{bottom:36.155827px;}
.ya0{bottom:36.164436px;}
.y77{bottom:39.240000px;}
.y97{bottom:40.770176px;}
.y7f{bottom:41.871938px;}
.y88{bottom:41.880719px;}
.y2a6{bottom:42.091121px;}
.y262{bottom:42.867850px;}
.y89{bottom:43.034306px;}
.y8c{bottom:43.042915px;}
.y19{bottom:43.200000px;}
.y84{bottom:44.196330px;}
.y85{bottom:45.358871px;}
.y81{bottom:46.495068px;}
.y8f{bottom:47.622656px;}
.y1b4{bottom:47.880000px;}
.y16e{bottom:48.240000px;}
.y1a1{bottom:48.538577px;}
.yd8{bottom:48.600000px;}
.y80{bottom:48.785025px;}
.yc1{bottom:48.960000px;}
.y20c{bottom:49.131502px;}
.y17{bottom:50.420324px;}
.y294{bottom:50.824724px;}
.y9b{bottom:51.074809px;}
.y1bf{bottom:55.080000px;}
.y8e{bottom:55.663332px;}
.y16d{bottom:55.800000px;}
.yf4{bottom:56.520000px;}
.y9d{bottom:57.953288px;}
.y2a5{bottom:59.643807px;}
.y261{bottom:59.977580px;}
.y25e{bottom:59.978183px;}
.y94{bottom:60.277681px;}
.yd4{bottom:60.480000px;}
.ybd{bottom:60.840015px;}
.y90{bottom:61.414050px;}
.y1a0{bottom:63.380538px;}
.y70{bottom:63.720000px;}
.y18{bottom:64.440000px;}
.yd5{bottom:65.520000px;}
.y20b{bottom:66.200289px;}
.yd7{bottom:68.040000px;}
.y1e5{bottom:68.400000px;}
.y293{bottom:68.462748px;}
.ya1{bottom:70.608485px;}
.y1b3{bottom:73.440000px;}
.y16{bottom:75.662319px;}
.y25f{bottom:76.996782px;}
.y260{bottom:77.087309px;}
.y25d{bottom:77.087913px;}
.y2a4{bottom:77.196209px;}
.y51{bottom:81.359985px;}
.y20a{bottom:83.269075px;}
.y292{bottom:86.015292px;}
.y16f{bottom:89.444550px;}
.yae{bottom:91.080000px;}
.yba{bottom:91.439985px;}
.yb3{bottom:91.440000px;}
.y65{bottom:91.799985px;}
.y7{bottom:92.880000px;}
.y25c{bottom:94.106662px;}
.y2a3{bottom:94.748753px;}
.yd6{bottom:95.040000px;}
.ybb{bottom:97.200015px;}
.y6c{bottom:98.640000px;}
.y1b2{bottom:99.000000px;}
.y1c{bottom:100.800015px;}
.y5f{bottom:101.160015px;}
.y291{bottom:103.567978px;}
.y54{bottom:105.480000px;}
.y6a{bottom:106.200015px;}
.y1ce{bottom:106.682970px;}
.y48{bottom:108.000015px;}
.y211{bottom:109.278203px;}
.y209{bottom:109.278655px;}
.y127{bottom:111.051848px;}
.yf5{bottom:111.087885px;}
.y68{bottom:111.240015px;}
.y138{bottom:111.825713px;}
.y2a2{bottom:112.301297px;}
.y46{bottom:113.040000px;}
.y126{bottom:113.717551px;}
.y78{bottom:114.427920px;}
.y1e3{bottom:117.000000px;}
.y20f{bottom:117.225575px;}
.y63{bottom:119.160015px;}
.y55{bottom:119.879985px;}
.y64{bottom:120.959985px;}
.y28a{bottom:121.120380px;}
.y1b1{bottom:122.760000px;}
.y42{bottom:123.839985px;}
.y6e{bottom:124.199985px;}
.y3f{bottom:125.280015px;}
.y4c{bottom:125.639985px;}
.y6{bottom:126.000000px;}
.y210{bottom:126.346990px;}
.y208{bottom:126.347441px;}
.y268{bottom:128.160000px;}
.y128{bottom:128.750596px;}
.y2a1{bottom:129.939463px;}
.y25a{bottom:130.045996px;}
.y3b{bottom:131.040015px;}
.y129{bottom:131.149915px;}
.yb9{bottom:133.560015px;}
.y58{bottom:134.279985px;}
.y14b{bottom:135.086680px;}
.y43{bottom:135.719985px;}
.y57{bottom:135.720015px;}
.y4d{bottom:136.439985px;}
.y3c{bottom:137.879985px;}
.y289{bottom:138.672924px;}
.y1d4{bottom:140.760000px;}
.y40{bottom:142.199985px;}
.y207{bottom:143.325465px;}
.y60{bottom:143.999985px;}
.y5c{bottom:145.079985px;}
.y15{bottom:146.622480px;}
.y4a{bottom:146.879985px;}
.y1e2{bottom:146.880000px;}
.y259{bottom:147.155726px;}
.y41{bottom:147.239985px;}
.yf3{bottom:147.304063px;}
.y2a0{bottom:147.492007px;}
.y59{bottom:147.599985px;}
.y4b{bottom:147.600015px;}
.y38{bottom:147.959985px;}
.y1b0{bottom:148.320000px;}
.y6d{bottom:149.400015px;}
.y66{bottom:150.119985px;}
.y61{bottom:150.479985px;}
.y5b{bottom:150.839985px;}
.y36{bottom:151.919985px;}
.y4e{bottom:152.279985px;}
.y69{bottom:152.639985px;}
.y5e{bottom:152.999985px;}
.yda{bottom:153.263850px;}
.y3e{bottom:153.359985px;}
.ye3{bottom:153.909900px;}
.y67{bottom:154.439985px;}
.y5a{bottom:154.799985px;}
.y49{bottom:155.159985px;}
.y62{bottom:155.519985px;}
.y286{bottom:156.225468px;}
.y44{bottom:156.239985px;}
.y5d{bottom:156.599985px;}
.y39{bottom:158.039985px;}
.y56{bottom:158.399985px;}
.y4f{bottom:158.759985px;}
.y50{bottom:159.119985px;}
.y3a{bottom:159.479985px;}
.y3d{bottom:159.839985px;}
.y47{bottom:160.199985px;}
.y52{bottom:160.559985px;}
.y45{bottom:164.160000px;}
.y258{bottom:164.175079px;}
.y1d3{bottom:164.880000px;}
.y29f{bottom:165.044551px;}
.y19f{bottom:166.841294px;}
.yf2{bottom:167.201040px;}
.y139{bottom:169.079587px;}
.yb8{bottom:169.920000px;}
.y267{bottom:170.280000px;}
.yd0{bottom:170.640000px;}
.y2ae{bottom:172.278524px;}
.y288{bottom:173.778012px;}
.y53{bottom:174.240000px;}
.y2c0{bottom:175.320000px;}
.y1cc{bottom:175.680000px;}
.yd3{bottom:176.760000px;}
.y184{bottom:176.786224px;}
.y1e1{bottom:178.560000px;}
.y205{bottom:179.180754px;}
.y25b{bottom:181.194130px;}
.y257{bottom:181.284658px;}
.y19e{bottom:181.683256px;}
.y29e{bottom:182.597095px;}
.y6b{bottom:183.240000px;}
.y79{bottom:183.943954px;}
.y12a{bottom:186.132943px;}
.yf1{bottom:186.295402px;}
.y14f{bottom:186.853531px;}
.y12b{bottom:186.868705px;}
.y14{bottom:187.237449px;}
.ybc{bottom:188.640000px;}
.y183{bottom:189.446460px;}
.y287{bottom:191.416178px;}
.y149{bottom:195.664128px;}
.y1be{bottom:195.840000px;}
.y204{bottom:196.249541px;}
.y135{bottom:196.348636px;}
.y19d{bottom:196.525217px;}
.y182{bottom:196.855956px;}
.y14e{bottom:197.554955px;}
.y256{bottom:198.304010px;}
.y1af{bottom:199.440000px;}
.y29d{bottom:200.149639px;}
.y266{bottom:201.600000px;}
.yf0{bottom:204.606511px;}
.y156{bottom:204.871604px;}
.y120{bottom:205.671096px;}
.yb7{bottom:206.280000px;}
.y4{bottom:206.640000px;}
.y2bf{bottom:207.000000px;}
.y254{bottom:207.357230px;}
.y1cb{bottom:207.360000px;}
.y1e0{bottom:208.440000px;}
.y290{bottom:208.968722px;}
.y14a{bottom:209.279432px;}
.y181{bottom:209.516376px;}
.y125{bottom:211.299068px;}
.y19c{bottom:211.367179px;}
.y13{bottom:212.479474px;}
.yac{bottom:212.510562px;}
.y203{bottom:213.227565px;}
.yd2{bottom:214.200000px;}
.y255{bottom:215.413589px;}
.y180{bottom:216.925872px;}
.y29c{bottom:217.702183px;}
.y13a{bottom:220.932255px;}
.y122{bottom:223.091490px;}
.yef{bottom:224.016215px;}
.y137{bottom:224.279769px;}
.y17f{bottom:224.335368px;}
.y253{bottom:224.466960px;}
.y121{bottom:224.680527px;}
.y1ae{bottom:225.000000px;}
.y19b{bottom:226.209140px;}
.y28f{bottom:226.521266px;}
.y1bd{bottom:227.160000px;}
.y202{bottom:230.296352px;}
.y134{bottom:230.576063px;}
.y17e{bottom:231.744864px;}
.y29b{bottom:235.254727px;}
.y12c{bottom:236.594676px;}
.y141{bottom:237.766264px;}
.y17d{bottom:239.154360px;}
.y1d{bottom:240.119985px;}
.y1ca{bottom:240.120000px;}
.y19a{bottom:241.051101px;}
.y252{bottom:241.485709px;}
.y7a{bottom:242.557722px;}
.y1e{bottom:242.639985px;}
.y5{bottom:242.640000px;}
.y124{bottom:243.258346px;}
.yee{bottom:243.425920px;}
.y28e{bottom:244.073810px;}
.y26a{bottom:245.092350px;}
.y1f{bottom:245.519985px;}
.y17c{bottom:246.563856px;}
.y201{bottom:247.274376px;}
.y1ad{bottom:248.760000px;}
.yab{bottom:249.700838px;}
.ycf{bottom:250.200000px;}
.y20{bottom:250.559985px;}
.y11e{bottom:252.134864px;}
.y136{bottom:252.564284px;}
.y29a{bottom:252.807271px;}
.y17b{bottom:253.973352px;}
.y12{bottom:254.929014px;}
.y21{bottom:258.119985px;}
.y1bc{bottom:260.280000px;}
.y22{bottom:260.639985px;}
.y17a{bottom:261.382848px;}
.y28d{bottom:261.626354px;}
.yed{bottom:262.835624px;}
.y23{bottom:263.519985px;}
.y1ff{bottom:264.252399px;}
.y200{bottom:264.343162px;}
.y123{bottom:267.354379px;}
.y24{bottom:268.559985px;}
.y179{bottom:268.792344px;}
.yc5{bottom:269.280000px;}
.y1df{bottom:270.000000px;}
.y299{bottom:270.445437px;}
.y15f{bottom:270.486256px;}
.y25{bottom:271.079985px;}
.y13d{bottom:271.212577px;}
.y226{bottom:272.207550px;}
.y26{bottom:273.599985px;}
.y27{bottom:276.119985px;}
.y178{bottom:276.201840px;}
.y24e{bottom:277.425948px;}
.y28{bottom:278.639985px;}
.yb6{bottom:279.000000px;}
.y28c{bottom:279.178898px;}
.ydf{bottom:279.561898px;}
.y11{bottom:280.171039px;}
.y29{bottom:281.159985px;}
.y1fe{bottom:281.321186px;}
.yec{bottom:282.212867px;}
.ye2{bottom:283.140452px;}
.y143{bottom:283.608748px;}
.y177{bottom:283.611336px;}
.y11d{bottom:286.423324px;}
.yaa{bottom:286.891113px;}
.yce{bottom:287.640000px;}
.y298{bottom:287.997981px;}
.y2a{bottom:289.079985px;}
.y176{bottom:291.020832px;}
.y24d{bottom:294.535678px;}
.y15e{bottom:296.194256px;}
.y28b{bottom:296.731442px;}
.y158{bottom:297.307340px;}
.y1c9{bottom:297.360000px;}
.y1fd{bottom:298.389973px;}
.y175{bottom:298.430328px;}
.y11f{bottom:299.552223px;}
.y7b{bottom:301.171490px;}
.yeb{bottom:301.622571px;}
.yc4{bottom:302.400000px;}
.y2b{bottom:304.559985px;}
.y297{bottom:305.550525px;}
.y174{bottom:305.839824px;}
.ydc{bottom:306.301917px;}
.y12f{bottom:306.445860px;}
.y147{bottom:308.845853px;}
.yde{bottom:310.414776px;}
.y15a{bottom:310.561507px;}
.y15d{bottom:310.776132px;}
.y24c{bottom:311.554427px;}
.y2c{bottom:312.119985px;}
.y159{bottom:312.906706px;}
.y173{bottom:313.249320px;}
.ye1{bottom:314.334618px;}
.yb5{bottom:315.360000px;}
.y1fc{bottom:315.367997px;}
.y206{bottom:315.368147px;}
.y2d{bottom:319.679985px;}
.y172{bottom:320.658816px;}
.yea{bottom:321.032276px;}
.y2e{bottom:322.559985px;}
.y10{bottom:322.620579px;}
.y283{bottom:323.788047px;}
.y144{bottom:324.157422px;}
.y1bb{bottom:324.720000px;}
.y2f{bottom:325.079985px;}
.y3{bottom:325.080000px;}
.ycd{bottom:325.440000px;}
.y161{bottom:327.139416px;}
.y171{bottom:328.068312px;}
.y24b{bottom:328.664157px;}
.y1c8{bottom:330.120000px;}
.y1ac{bottom:330.840000px;}
.y1fb{bottom:332.436783px;}
.y199{bottom:333.306256px;}
.y14d{bottom:334.123927px;}
.y30{bottom:335.159985px;}
.ydb{bottom:338.061870px;}
.y130{bottom:338.492472px;}
.y146{bottom:339.906166px;}
.ye9{bottom:340.441980px;}
.ya9{bottom:341.230237px;}
.ydd{bottom:341.267654px;}
.y282{bottom:341.340591px;}
.y160{bottom:341.721293px;}
.y13c{bottom:341.848922px;}
.ye0{bottom:345.528711px;}
.y24a{bottom:345.773887px;}
.y140{bottom:346.368698px;}
.yf{bottom:347.862604px;}
.y198{bottom:348.148218px;}
.y13f{bottom:349.723799px;}
.yb4{bottom:351.720000px;}
.y13e{bottom:354.075484px;}
.y1a7{bottom:355.320000px;}
.y154{bottom:355.607703px;}
.y1ab{bottom:356.400000px;}
.y132{bottom:357.169764px;}
.y1ba{bottom:357.840000px;}
.y31{bottom:358.199985px;}
.y281{bottom:358.978757px;}
.ye8{bottom:359.545501px;}
.y7c{bottom:359.785085px;}
.y1de{bottom:360.000000px;}
.y142{bottom:360.187669px;}
.yd1{bottom:361.440000px;}
.y1c7{bottom:361.800000px;}
.y14c{bottom:362.619864px;}
.y197{bottom:362.990179px;}
.y162{bottom:364.371766px;}
.y6f{bottom:365.760000px;}
.yc3{bottom:366.840000px;}
.y13b{bottom:367.109630px;}
.ycc{bottom:367.200000px;}
.y1f9{bottom:368.201310px;}
.y169{bottom:370.800000px;}
.y251{bottom:371.845403px;}
.y249{bottom:371.845856px;}
.y131{bottom:374.799387px;}
.y32{bottom:376.199985px;}
.y280{bottom:376.531301px;}
.y12d{bottom:376.968233px;}
.y1d2{bottom:377.192583px;}
.ye7{bottom:377.557151px;}
.y1d8{bottom:377.640000px;}
.y12e{bottom:377.703994px;}
.y196{bottom:377.832139px;}
.ya8{bottom:378.420512px;}
.y33{bottom:378.719985px;}
.y157{bottom:378.891262px;}
.y24f{bottom:379.811838px;}
.y1a6{bottom:380.880000px;}
.y1aa{bottom:381.600000px;}
.y155{bottom:383.168089px;}
.y1f8{bottom:385.270096px;}
.y15c{bottom:385.726733px;}
.y153{bottom:386.742367px;}
.yb2{bottom:388.080000px;}
.y250{bottom:388.955133px;}
.y248{bottom:388.955585px;}
.y1b9{bottom:389.160000px;}
.y2{bottom:389.880000px;}
.ye{bottom:390.312144px;}
.y27f{bottom:394.083845px;}
.y1d1{bottom:395.530136px;}
.ye6{bottom:395.538658px;}
.y1e6{bottom:398.538150px;}
.yc2{bottom:399.960000px;}
.y15b{bottom:400.308609px;}
.y133{bottom:401.734275px;}
.y11c{bottom:401.778616px;}
.y1f7{bottom:402.338883px;}
.y152{bottom:402.914967px;}
.ycb{bottom:404.640000px;}
.y247{bottom:405.974335px;}
.y1a5{bottom:406.080000px;}
.y1a9{bottom:407.160000px;}
.y1d7{bottom:408.960000px;}
.y145{bottom:409.135897px;}
.y27e{bottom:411.636389px;}
.ye5{bottom:413.550307px;}
.y1d0{bottom:413.867626px;}
.y150{bottom:414.966861px;}
.yd{bottom:415.554169px;}
.ya7{bottom:415.610788px;}
.y151{bottom:417.711806px;}
.y7d{bottom:418.398853px;}
.y1f6{bottom:419.407669px;}
.y1c6{bottom:420.120000px;}
.y277{bottom:420.455472px;}
.y168{bottom:421.560000px;}
.y34{bottom:422.639985px;}
.yc0{bottom:424.440000px;}
.y195{bottom:424.460634px;}
.yb1{bottom:424.800000px;}
.y27d{bottom:429.188933px;}
.y1a4{bottom:430.200000px;}
.y1a8{bottom:431.280000px;}
.ye4{bottom:431.879560px;}
.y148{bottom:434.870367px;}
.y1f5{bottom:436.385693px;}
.y194{bottom:439.302596px;}
.y245{bottom:441.915630px;}
.y1d6{bottom:442.080000px;}
.y1cf{bottom:442.132035px;}
.yca{bottom:442.440000px;}
.y27c{bottom:446.741620px;}
.y75{bottom:450.000000px;}
.y1dd{bottom:451.440000px;}
.y1c5{bottom:451.800000px;}
.ya6{bottom:452.801063px;}
.y1f3{bottom:453.363717px;}
.y1f4{bottom:453.454480px;}
.y1b8{bottom:453.960000px;}
.y193{bottom:454.144724px;}
.y35{bottom:455.759985px;}
.y1{bottom:455.760000px;}
.yc{bottom:458.003709px;}
.y244{bottom:459.025360px;}
.yb0{bottom:461.160000px;}
.y27b{bottom:464.294021px;}
.y192{bottom:468.986685px;}
.y1f2{bottom:470.432504px;}
.y167{bottom:472.680000px;}
.y243{bottom:476.044109px;}
.y7e{bottom:477.012621px;}
.y27a{bottom:481.932187px;}
.y1dc{bottom:483.120000px;}
.yb{bottom:483.245734px;}
.y1c4{bottom:484.560000px;}
.y1fa{bottom:487.410528px;}
.y1f1{bottom:487.501290px;}
.y74{bottom:488.880000px;}
.y191{bottom:490.069110px;}
.y242{bottom:493.153839px;}
.yc6{bottom:493.920000px;}
.yaf{bottom:497.520000px;}
.y279{bottom:499.484731px;}
.y1f0{bottom:504.479314px;}
.y190{bottom:504.911071px;}
.y285{bottom:505.221416px;}
.y241{bottom:510.172588px;}
.y73{bottom:513.000000px;}
.y278{bottom:517.037275px;}
.y1c3{bottom:517.680000px;}
.y284{bottom:519.520318px;}
.y18f{bottom:519.753032px;}
.y1b7{bottom:519.840000px;}
.ya3{bottom:521.436232px;}
.yc9{bottom:521.640000px;}
.y166{bottom:522.000000px;}
.ya{bottom:525.674096px;}
.y23f{bottom:527.191337px;}
.y240{bottom:527.282318px;}
.y1ec{bottom:531.301693px;}
.yad{bottom:533.880000px;}
.y18e{bottom:534.595031px;}
.y276{bottom:535.274797px;}
.y1ef{bottom:541.506841px;}
.y1db{bottom:542.880000px;}
.y23e{bottom:544.301067px;}
.y1ed{bottom:545.841771px;}
.y165{bottom:547.560000px;}
.y1eb{bottom:548.370480px;}
.y1c2{bottom:549.360000px;}
.y72{bottom:550.440000px;}
.ybf{bottom:552.240000px;}
.y275{bottom:552.827341px;}
.y1e9{bottom:554.331008px;}
.y16c{bottom:554.400000px;}
.yc8{bottom:559.440000px;}
.y23d{bottom:561.410797px;}
.y117{bottom:564.120848px;}
.y116{bottom:568.167016px;}
.y1ea{bottom:568.419531px;}
.y274{bottom:570.465507px;}
.y71{bottom:571.320000px;}
.y115{bottom:572.213352px;}
.y164{bottom:573.120000px;}
.y114{bottom:576.259722px;}
.y1ee{bottom:577.450635px;}
.y23c{bottom:578.429546px;}
.y246{bottom:578.429697px;}
.y113{bottom:580.306075px;}
.y185{bottom:581.258867px;}
.y2be{bottom:581.760000px;}
.y1c1{bottom:582.120000px;}
.y16b{bottom:582.840000px;}
.y1b6{bottom:584.280000px;}
.ya5{bottom:584.289863px;}
.y112{bottom:584.352597px;}
.y273{bottom:588.018051px;}
.y111{bottom:588.398934px;}
.y110{bottom:592.445287px;}
.y9{bottom:594.293581px;}
.y269{bottom:595.080000px;}
.y23b{bottom:595.539276px;}
.y10f{bottom:596.491640px;}
.yc7{bottom:596.880000px;}
.y163{bottom:598.680000px;}
.y1da{bottom:600.120000px;}
.y10e{bottom:600.537993px;}
.y10d{bottom:604.584346px;}
.y272{bottom:605.570595px;}
.y10c{bottom:608.630700px;}
.y10b{bottom:612.677053px;}
.y16a{bottom:612.720000px;}
.y10a{bottom:616.723406px;}
.y1b{bottom:619.200000px;}
.y109{bottom:620.769759px;}
.y271{bottom:623.123139px;}
.y108{bottom:624.816112px;}
.y107{bottom:628.862466px;}
.y239{bottom:631.389591px;}
.y106{bottom:632.908819px;}
.y119{bottom:633.047878px;}
.y105{bottom:636.955172px;}
.y270{bottom:640.675683px;}
.y104{bottom:641.001525px;}
.y170{bottom:643.446102px;}
.y103{bottom:645.047878px;}
.y238{bottom:648.499320px;}
.y102{bottom:649.094232px;}
.y101{bottom:653.140585px;}
.y118{bottom:653.279644px;}
.y100{bottom:657.186938px;}
.y26f{bottom:658.228227px;}
.y1e7{bottom:658.911193px;}
.yff{bottom:661.233291px;}
.y8{bottom:664.111340px;}
.yfe{bottom:665.279644px;}
.y1b5{bottom:665.280015px;}
.y237{bottom:665.609050px;}
.y1a{bottom:665.640015px;}
.y1d5{bottom:666.000015px;}
.y1e4{bottom:666.360015px;}
.y1d9{bottom:666.720015px;}
.ya4{bottom:666.921145px;}
.y1c0{bottom:667.080015px;}
.y1cd{bottom:668.880015px;}
.yfd{bottom:669.325998px;}
.yfc{bottom:673.372351px;}
.y26e{bottom:675.780771px;}
.yfb{bottom:677.418704px;}
.yfa{bottom:681.465057px;}
.y236{bottom:682.718780px;}
.yf9{bottom:685.511410px;}
.yf8{bottom:689.557764px;}
.y26d{bottom:693.419080px;}
.yf7{bottom:693.604100px;}
.y235{bottom:699.737529px;}
.y76{bottom:703.440015px;}
.yf6{bottom:708.194781px;}
.y26c{bottom:710.971481px;}
.y233{bottom:716.756278px;}
.y234{bottom:716.847259px;}
.y232{bottom:733.866008px;}
.y23a{bottom:750.884757px;}
.y231{bottom:750.975738px;}
.y230{bottom:767.994487px;}
.y22c{bottom:794.881205px;}
.y22f{bottom:805.110832px;}
.y22d{bottom:809.456160px;}
.y22b{bottom:811.990934px;}
.y229{bottom:817.965761px;}
.y22a{bottom:832.088077px;}
.y22e{bottom:841.140844px;}
.y227{bottom:922.796803px;}
.h9f{height:0.000000px;}
.h67{height:11.761400px;}
.h82{height:25.607218px;}
.h81{height:25.844322px;}
.h72{height:26.238383px;}
.h70{height:26.238507px;}
.h71{height:31.564857px;}
.h6b{height:32.797840px;}
.h79{height:35.579697px;}
.h85{height:36.214386px;}
.h45{height:36.671996px;}
.h86{height:37.590347px;}
.h7a{height:38.338635px;}
.h91{height:38.340288px;}
.h96{height:38.432255px;}
.h6a{height:39.357761px;}
.h73{height:39.554764px;}
.h63{height:41.179409px;}
.h9e{height:42.038771px;}
.h78{height:42.384557px;}
.h6d{height:42.637427px;}
.h92{height:43.240926px;}
.h64{height:43.269835px;}
.h97{height:43.344648px;}
.h62{height:44.412896px;}
.h6c{height:45.917094px;}
.h9d{height:46.500028px;}
.h69{height:46.613989px;}
.h84{height:46.733173px;}
.h47{height:48.059992px;}
.h11{height:48.972656px;}
.h6e{height:49.196760px;}
.h46{height:50.225996px;}
.h57{height:50.868000px;}
.h9c{height:50.955121px;}
.h90{height:52.753930px;}
.h49{height:52.865996px;}
.h95{height:52.880471px;}
.h48{height:53.784000px;}
.h8b{height:54.707034px;}
.h6f{height:55.756681px;}
.h4a{height:56.039991px;}
.h68{height:59.683710px;}
.h4f{height:60.167441px;}
.h58{height:62.171995px;}
.h77{height:62.316014px;}
.h56{height:62.999996px;}
.h8c{height:64.175996px;}
.h75{height:64.370218px;}
.h7b{height:64.845699px;}
.h74{height:65.867368px;}
.h76{height:65.913663px;}
.h83{height:67.074611px;}
.h7c{height:67.101559px;}
.h3{height:67.283996px;}
.h8{height:67.565039px;}
.hd{height:67.824000px;}
.h88{height:68.184000px;}
.h9{height:69.505589px;}
.h66{height:69.920983px;}
.h54{height:71.999993px;}
.h53{height:74.906243px;}
.h80{height:76.821655px;}
.h5b{height:76.834556px;}
.h93{height:77.559121px;}
.h98{height:77.745163px;}
.h8a{height:78.240227px;}
.h87{height:78.455996px;}
.h99{height:78.626953px;}
.h2{height:79.079996px;}
.ha{height:79.458510px;}
.h4e{height:80.023255px;}
.h9a{height:81.000000px;}
.h8e{height:81.191996px;}
.hc{height:81.398580px;}
.h4{height:84.672000px;}
.h7d{height:87.647991px;}
.h60{height:87.842675px;}
.h7e{height:89.328036px;}
.h5e{height:91.992394px;}
.h51{height:94.711234px;}
.h8d{height:96.083995px;}
.h55{height:98.604000px;}
.h5{height:101.736000px;}
.h5f{height:104.035895px;}
.h5d{height:108.950588px;}
.hf{height:112.799993px;}
.h94{height:118.500000px;}
.h4c{height:125.328036px;}
.hb{height:135.467120px;}
.h4b{height:150.527962px;}
.h8f{height:166.369650px;}
.h59{height:190.128036px;}
.h52{height:201.960000px;}
.he{height:206.975962px;}
.h50{height:213.885210px;}
.h1{height:221.760044px;}
.h7{height:221.829784px;}
.h43{height:230.400000px;}
.h28{height:246.240000px;}
.h1e{height:263.880000px;}
.h44{height:289.800000px;}
.h22{height:292.680000px;}
.h2c{height:313.920000px;}
.h9b{height:319.815450px;}
.h16{height:321.840000px;}
.h19{height:331.920000px;}
.h3a{height:342.360000px;}
.h41{height:356.400000px;}
.h20{height:362.160000px;}
.h42{height:365.400000px;}
.h33{height:374.040000px;}
.h27{height:375.120000px;}
.h1f{height:375.480000px;}
.h39{height:376.200000px;}
.h40{height:376.560000px;}
.h17{height:376.920000px;}
.h15{height:378.360000px;}
.h26{height:379.440000px;}
.h25{height:380.880000px;}
.h2b{height:381.960000px;}
.h14{height:382.320000px;}
.h31{height:386.640000px;}
.h1d{height:387.720000px;}
.h38{height:390.240000px;}
.h34{height:391.680000px;}
.h2e{height:392.040000px;}
.h3e{height:393.120000px;}
.h13{height:395.280000px;}
.h18{height:396.360000px;}
.h32{height:398.160000px;}
.h29{height:399.600000px;}
.h24{height:400.320000px;}
.h12{height:401.400000px;}
.h2f{height:404.640000px;}
.h36{height:405.000000px;}
.h3c{height:406.440000px;}
.h3d{height:413.640000px;}
.h2d{height:414.360000px;}
.h1a{height:415.440000px;}
.h21{height:416.160000px;}
.h30{height:420.840000px;}
.h3f{height:421.560000px;}
.h35{height:424.440000px;}
.h23{height:447.840000px;}
.h1c{height:449.640000px;}
.h37{height:479.520000px;}
.h1b{height:484.920000px;}
.h61{height:488.084400px;}
.h5a{height:488.729550px;}
.h5c{height:488.730450px;}
.h3b{height:493.560000px;}
.h2a{height:496.440000px;}
.h65{height:514.662000px;}
.h89{height:520.174530px;}
.h10{height:526.320000px;}
.h7f{height:552.697800px;}
.h4d{height:554.572200px;}
.h6{height:809.999967px;}
.h0{height:810.000000px;}
.w10{width:0.000000px;}
.w4{width:23.040000px;}
.w3{width:23.400000px;}
.wa{width:344.905200px;}
.wd{width:357.153135px;}
.w9{width:430.981050px;}
.w8{width:469.698000px;}
.wf{width:619.238850px;}
.we{width:673.591200px;}
.w7{width:775.800000px;}
.wc{width:886.542000px;}
.wb{width:894.330600px;}
.w6{width:1031.939850px;}
.w5{width:1037.121600px;}
.w2{width:1368.000000px;}
.w1{width:1439.999958px;}
.w0{width:1440.000000px;}
.xf4{left:-30.537939px;}
.xfb{left:-24.958262px;}
.xf5{left:-22.348414px;}
.x10d{left:-18.382800px;}
.xd6{left:-2.420825px;}
.x0{left:0.000000px;}
.x66{left:3.960333px;}
.x8e{left:4.990049px;}
.xfc{left:6.629908px;}
.x7{left:10.440000px;}
.xec{left:14.430017px;}
.x22{left:17.202000px;}
.x65{left:19.293776px;}
.x20{left:22.603635px;}
.x9e{left:26.375703px;}
.x5b{left:28.395150px;}
.x5a{left:30.600000px;}
.x64{left:34.627220px;}
.x9c{left:37.689147px;}
.x109{left:39.031145px;}
.xae{left:40.478304px;}
.x1f{left:45.532020px;}
.xa2{left:49.711703px;}
.x110{left:50.826120px;}
.xd2{left:51.987472px;}
.x59{left:53.280000px;}
.xa3{left:55.315113px;}
.xc7{left:56.482250px;}
.xa6{left:62.621002px;}
.xf3{left:65.597355px;}
.xba{left:67.391124px;}
.x1e{left:68.460405px;}
.xc6{left:71.720104px;}
.xd8{left:74.784865px;}
.x58{left:76.320000px;}
.xf6{left:77.455807px;}
.xd9{left:83.716294px;}
.x9d{left:85.156890px;}
.x1d{left:91.388790px;}
.xa1{left:96.862291px;}
.x63{left:98.157630px;}
.x57{left:99.360000px;}
.x3{left:104.544348px;}
.x6{left:106.299210px;}
.xeb{left:107.745120px;}
.x61{left:108.787560px;}
.x91{left:111.240000px;}
.x1c{left:114.317175px;}
.xa0{left:117.062216px;}
.x96{left:119.112165px;}
.x56{left:122.040000px;}
.x67{left:124.686115px;}
.xd7{left:131.158215px;}
.x1b{left:137.245575px;}
.x55{left:145.080000px;}
.x10c{left:146.266075px;}
.x68{left:147.948298px;}
.x1a{left:160.173900px;}
.x10a{left:161.275200px;}
.x1{left:169.095750px;}
.x2{left:171.937800px;}
.x19{left:183.102300px;}
.x54{left:191.160000px;}
.xfd{left:193.009566px;}
.x69{left:194.472664px;}
.x10f{left:197.531941px;}
.xc5{left:203.093895px;}
.x18{left:206.030700px;}
.x53{left:213.840000px;}
.x6a{left:217.734846px;}
.x111{left:232.905389px;}
.x52{left:236.880000px;}
.x6b{left:240.997029px;}
.xac{left:245.643534px;}
.x17{left:251.887500px;}
.xaa{left:254.096908px;}
.xf7{left:257.895359px;}
.x51{left:259.920000px;}
.x6c{left:264.259212px;}
.x8d{left:270.297941px;}
.xab{left:272.946596px;}
.x16{left:274.815900px;}
.xf2{left:280.932450px;}
.x50{left:282.600000px;}
.x6d{left:287.521395px;}
.xe8{left:292.657050px;}
.xea{left:294.645750px;}
.x4{left:296.178507px;}
.x15{left:297.744300px;}
.x4f{left:305.640000px;}
.x5{left:307.800300px;}
.x6e{left:310.783750px;}
.xe9{left:312.081300px;}
.xd5{left:314.229750px;}
.x93{left:315.741000px;}
.x14{left:320.672700px;}
.x4e{left:328.680000px;}
.x9a{left:330.820950px;}
.xad{left:332.470469px;}
.x6f{left:334.045933px;}
.x92{left:346.823400px;}
.x4d{left:351.360000px;}
.x9b{left:355.668450px;}
.x70{left:357.308288px;}
.x13{left:366.529500px;}
.x10b{left:372.775200px;}
.x4c{left:374.400000px;}
.x71{left:380.570298px;}
.x102{left:382.358153px;}
.xff{left:383.978059px;}
.x101{left:385.147991px;}
.x107{left:387.307866px;}
.x103{left:391.357631px;}
.x104{left:394.327459px;}
.x4b{left:397.440000px;}
.x113{left:399.861228px;}
.x72{left:403.832653px;}
.x114{left:409.089084px;}
.xfe{left:410.706511px;}
.x12{left:412.386150px;}
.xf8{left:414.756277px;}
.x4a{left:420.120000px;}
.xbf{left:422.035337px;}
.x73{left:427.094836px;}
.xf0{left:428.205300px;}
.xc2{left:435.749462px;}
.x49{left:443.160000px;}
.xa9{left:449.121936px;}
.x74{left:450.357019px;}
.xa8{left:451.735355px;}
.xc0{left:455.116603px;}
.x11{left:458.242950px;}
.x48{left:466.200000px;}
.x75{left:473.619202px;}
.xc8{left:474.826577px;}
.x10e{left:479.408764px;}
.x10{left:481.171350px;}
.x100{left:482.972327px;}
.xc9{left:483.972870px;}
.x106{left:485.942155px;}
.x47{left:489.240000px;}
.x105{left:490.261905px;}
.xbb{left:491.650148px;}
.x108{left:495.661592px;}
.x76{left:496.881385px;}
.xfa{left:499.531368px;}
.xf{left:504.099750px;}
.x46{left:511.920000px;}
.x115{left:513.756895px;}
.x77{left:520.143568px;}
.xb0{left:524.517987px;}
.xe{left:527.028150px;}
.xbe{left:531.366698px;}
.x45{left:534.960000px;}
.xce{left:536.574472px;}
.xed{left:538.340550px;}
.x78{left:543.405750px;}
.x5c{left:547.863900px;}
.xf9{left:552.358309px;}
.xd{left:554.505450px;}
.xa7{left:556.615299px;}
.x44{left:558.000000px;}
.xbd{left:562.682346px;}
.xb1{left:564.501448px;}
.x79{left:566.667933px;}
.xe3{left:568.194185px;}
.xaf{left:569.889579px;}
.xdb{left:571.765105px;}
.xc{left:577.433850px;}
.x43{left:580.680000px;}
.x7a{left:589.930116px;}
.xda{left:595.735122px;}
.x42{left:603.720000px;}
.xcb{left:606.068144px;}
.x7b{left:613.192299px;}
.xe4{left:620.507031px;}
.x41{left:626.760000px;}
.xe5{left:628.063468px;}
.x7c{left:636.454654px;}
.xdc{left:638.394727px;}
.xdd{left:641.826093px;}
.xb{left:646.218900px;}
.x40{left:649.440000px;}
.xb3{left:657.190946px;}
.x7d{left:659.716837px;}
.xca{left:665.481171px;}
.x3f{left:672.480000px;}
.xe1{left:677.217467px;}
.xa4{left:678.850270px;}
.x7e{left:682.979020px;}
.xbc{left:687.019020px;}
.xe2{left:692.714362px;}
.xe0{left:694.076998px;}
.x3e{left:695.520000px;}
.xb2{left:699.065887px;}
.xc4{left:701.000729px;}
.xc1{left:703.797374px;}
.x7f{left:706.241202px;}
.xb5{left:707.923675px;}
.xcd{left:710.594458px;}
.xde{left:714.479379px;}
.x3d{left:718.200000px;}
.xcc{left:719.858178px;}
.xb4{left:723.456396px;}
.x80{left:729.503385px;}
.xa{left:737.932500px;}
.x3c{left:741.240000px;}
.xdf{left:746.464157px;}
.xa5{left:748.194629px;}
.x81{left:752.765568px;}
.x3b{left:764.280000px;}
.x97{left:765.612150px;}
.x82{left:776.027751px;}
.x116{left:779.076600px;}
.xb6{left:780.356389px;}
.xb7{left:783.529273px;}
.x3a{left:786.960000px;}
.xb9{left:788.946424px;}
.xe7{left:794.014050px;}
.xb8{left:797.769625px;}
.x83{left:799.290106px;}
.x98{left:806.112150px;}
.xcf{left:807.561258px;}
.x39{left:810.000000px;}
.xc3{left:812.517476px;}
.xd0{left:821.156100px;}
.x84{left:822.552289px;}
.xd1{left:825.393248px;}
.x38{left:833.040000px;}
.x85{left:845.814472px;}
.x37{left:856.080000px;}
.x86{left:869.076654px;}
.x36{left:878.760000px;}
.x87{left:892.338837px;}
.x35{left:901.800000px;}
.x117{left:909.186450px;}
.x88{left:915.601020px;}
.x34{left:924.840000px;}
.x94{left:934.219200px;}
.x89{left:938.863203px;}
.x33{left:947.520000px;}
.x8a{left:962.125558px;}
.x32{left:970.560000px;}
.x8b{left:985.387568px;}
.x31{left:993.600000px;}
.x8c{left:1008.649751px;}
.xd3{left:1011.999900px;}
.x30{left:1016.280000px;}
.x118{left:1033.324200px;}
.x9{left:1036.001550px;}
.x2f{left:1039.320000px;}
.x2e{left:1062.360000px;}
.x8f{left:1066.740901px;}
.x9f{left:1069.970100px;}
.x2d{left:1085.040000px;}
.x2c{left:1108.080000px;}
.x90{left:1113.228421px;}
.x2b{left:1131.120000px;}
.x2a{left:1154.160000px;}
.x112{left:1172.294089px;}
.x29{left:1176.840000px;}
.x5d{left:1184.581800px;}
.x5f{left:1191.609450px;}
.x28{left:1199.880000px;}
.x27{left:1222.920000px;}
.x95{left:1234.765350px;}
.x5e{left:1241.769300px;}
.x60{left:1243.171800px;}
.x26{left:1245.600000px;}
.x25{left:1268.640000px;}
.x24{left:1291.680000px;}
.x23{left:1314.360000px;}
.x8{left:1334.070450px;}
.x21{left:1337.400000px;}
.xef{left:1352.536650px;}
.xf1{left:1355.536500px;}
.xe6{left:1360.974150px;}
.xee{left:1362.474000px;}
.xd4{left:1364.536500px;}
.x62{left:1376.911500px;}
.x99{left:1380.849000px;}
@media print{
.v6{vertical-align:-61.440000pt;}
.vd{vertical-align:-32.000000pt;}
.v8{vertical-align:-21.825130pt;}
.va{vertical-align:-18.990285pt;}
.v7{vertical-align:-8.418213pt;}
.vc{vertical-align:-5.354374pt;}
.vb{vertical-align:-1.330801pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.724934pt;}
.v9{vertical-align:4.734533pt;}
.vf{vertical-align:14.646499pt;}
.ve{vertical-align:21.734653pt;}
.v1{vertical-align:26.880000pt;}
.v10{vertical-align:30.505062pt;}
.v4{vertical-align:37.120000pt;}
.v3{vertical-align:49.785432pt;}
.v5{vertical-align:57.600000pt;}
.ls50{letter-spacing:-2.370133pt;}
.ls6a{letter-spacing:-1.959467pt;}
.ls69{letter-spacing:-1.548800pt;}
.ls6{letter-spacing:-1.443200pt;}
.ls9b{letter-spacing:-1.032462pt;}
.lscc{letter-spacing:-0.470890pt;}
.lsb1{letter-spacing:-0.329311pt;}
.ls97{letter-spacing:-0.322667pt;}
.ls44{letter-spacing:-0.320000pt;}
.ls78{letter-spacing:-0.316800pt;}
.lsd8{letter-spacing:-0.308267pt;}
.ls18{letter-spacing:-0.307412pt;}
.lsca{letter-spacing:-0.307200pt;}
.lsc1{letter-spacing:-0.306133pt;}
.ls19{letter-spacing:-0.299914pt;}
.ls95{letter-spacing:-0.298667pt;}
.ls30{letter-spacing:-0.294400pt;}
.ls4e{letter-spacing:-0.293333pt;}
.ls62{letter-spacing:-0.290133pt;}
.ls85{letter-spacing:-0.278400pt;}
.ls61{letter-spacing:-0.264533pt;}
.ls98{letter-spacing:-0.264000pt;}
.lsbf{letter-spacing:-0.253867pt;}
.ls79{letter-spacing:-0.249600pt;}
.ls4f{letter-spacing:-0.243200pt;}
.ls68{letter-spacing:-0.236800pt;}
.ls42{letter-spacing:-0.234667pt;}
.lscd{letter-spacing:-0.231467pt;}
.ls6c{letter-spacing:-0.230400pt;}
.ls66{letter-spacing:-0.221867pt;}
.ls5a{letter-spacing:-0.220385pt;}
.ls16{letter-spacing:-0.213400pt;}
.ls52{letter-spacing:-0.213333pt;}
.ls96{letter-spacing:-0.211200pt;}
.ls28{letter-spacing:-0.209940pt;}
.ls4{letter-spacing:-0.204800pt;}
.lsda{letter-spacing:-0.199467pt;}
.ls17{letter-spacing:-0.187446pt;}
.ls26{letter-spacing:-0.179949pt;}
.lsa9{letter-spacing:-0.179200pt;}
.ls20{letter-spacing:-0.172451pt;}
.ls81{letter-spacing:-0.163200pt;}
.ls27{letter-spacing:-0.157455pt;}
.ls7e{letter-spacing:-0.153600pt;}
.ls1b{letter-spacing:-0.149957pt;}
.ls56{letter-spacing:-0.146924pt;}
.ls91{letter-spacing:-0.139200pt;}
.lsa3{letter-spacing:-0.128000pt;}
.ls5c{letter-spacing:-0.122315pt;}
.ls11f{letter-spacing:-0.122017pt;}
.lsa5{letter-spacing:-0.119467pt;}
.ls87{letter-spacing:-0.115200pt;}
.lsb7{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.105600pt;}
.ls47{letter-spacing:-0.102400pt;}
.ls124{letter-spacing:-0.101681pt;}
.ls4d{letter-spacing:-0.093867pt;}
.lsc0{letter-spacing:-0.089600pt;}
.ls112{letter-spacing:-0.086907pt;}
.ls10e{letter-spacing:-0.086699pt;}
.lsc6{letter-spacing:-0.086400pt;}
.ls2{letter-spacing:-0.085333pt;}
.ls7f{letter-spacing:-0.076800pt;}
.ls23{letter-spacing:-0.074979pt;}
.ls57{letter-spacing:-0.073462pt;}
.ls9{letter-spacing:-0.067200pt;}
.ls126{letter-spacing:-0.066093pt;}
.ls122{letter-spacing:-0.061009pt;}
.ls25{letter-spacing:-0.059983pt;}
.ls9a{letter-spacing:-0.059733pt;}
.ls7d{letter-spacing:-0.057600pt;}
.ls11e{letter-spacing:-0.055925pt;}
.ls88{letter-spacing:-0.052800pt;}
.ls125{letter-spacing:-0.050841pt;}
.ls120{letter-spacing:-0.045756pt;}
.ls6f{letter-spacing:-0.044800pt;}
.ls111{letter-spacing:-0.043453pt;}
.ls10d{letter-spacing:-0.043349pt;}
.ls11c{letter-spacing:-0.040672pt;}
.ls86{letter-spacing:-0.038400pt;}
.lsa4{letter-spacing:-0.037333pt;}
.ls123{letter-spacing:-0.035588pt;}
.lsaa{letter-spacing:-0.034133pt;}
.ls119{letter-spacing:-0.030504pt;}
.lsbb{letter-spacing:-0.029867pt;}
.ls9d{letter-spacing:-0.028875pt;}
.ls89{letter-spacing:-0.028800pt;}
.lsd9{letter-spacing:-0.027200pt;}
.ls11d{letter-spacing:-0.025420pt;}
.ls9c{letter-spacing:-0.023100pt;}
.ls110{letter-spacing:-0.021405pt;}
.ls10c{letter-spacing:-0.021354pt;}
.ls10a{letter-spacing:-0.021333pt;}
.ls11a{letter-spacing:-0.020336pt;}
.ls77{letter-spacing:-0.019200pt;}
.ls116{letter-spacing:-0.015252pt;}
.ls1c{letter-spacing:-0.014996pt;}
.ls115{letter-spacing:-0.010168pt;}
.ls113{letter-spacing:-0.009656pt;}
.ls10f{letter-spacing:-0.009633pt;}
.ls2e{letter-spacing:-0.006400pt;}
.ls117{letter-spacing:-0.005084pt;}
.ls5{letter-spacing:0.000000pt;}
.lsaf{letter-spacing:0.000013pt;}
.lsad{letter-spacing:0.000040pt;}
.lsae{letter-spacing:0.000079pt;}
.ls4b{letter-spacing:0.004267pt;}
.lsde{letter-spacing:0.004817pt;}
.lsf0{letter-spacing:0.004828pt;}
.ls100{letter-spacing:0.005084pt;}
.ls41{letter-spacing:0.005336pt;}
.lsbd{letter-spacing:0.007467pt;}
.lsd7{letter-spacing:0.009067pt;}
.lse5{letter-spacing:0.009633pt;}
.lsf7{letter-spacing:0.009656pt;}
.ls105{letter-spacing:0.010168pt;}
.lse2{letter-spacing:0.014450pt;}
.lsf4{letter-spacing:0.014484pt;}
.ls103{letter-spacing:0.015252pt;}
.lse6{letter-spacing:0.019266pt;}
.lsf8{letter-spacing:0.019313pt;}
.ls107{letter-spacing:0.020336pt;}
.ls3{letter-spacing:0.021333pt;}
.lsce{letter-spacing:0.022400pt;}
.ls24{letter-spacing:0.022494pt;}
.lse4{letter-spacing:0.024083pt;}
.lsf6{letter-spacing:0.024141pt;}
.ls46{letter-spacing:0.025600pt;}
.lse3{letter-spacing:0.028900pt;}
.lsf5{letter-spacing:0.028969pt;}
.ls104{letter-spacing:0.030504pt;}
.lse7{letter-spacing:0.033716pt;}
.lsf9{letter-spacing:0.033797pt;}
.ls99{letter-spacing:0.035200pt;}
.ls29{letter-spacing:0.037489pt;}
.lsdd{letter-spacing:0.038533pt;}
.lsef{letter-spacing:0.038625pt;}
.ls101{letter-spacing:0.040672pt;}
.lse8{letter-spacing:0.043349pt;}
.lsfa{letter-spacing:0.043453pt;}
.ls2f{letter-spacing:0.044800pt;}
.lsd5{letter-spacing:0.045333pt;}
.ls102{letter-spacing:0.045756pt;}
.lse1{letter-spacing:0.048166pt;}
.lsf3{letter-spacing:0.048281pt;}
.ls93{letter-spacing:0.051200pt;}
.ls5e{letter-spacing:0.053333pt;}
.lsdf{letter-spacing:0.057799pt;}
.lsf1{letter-spacing:0.057938pt;}
.lsc8{letter-spacing:0.062400pt;}
.lse0{letter-spacing:0.062616pt;}
.lsf2{letter-spacing:0.062766pt;}
.ls7c{letter-spacing:0.067200pt;}
.lseb{letter-spacing:0.067432pt;}
.lsfd{letter-spacing:0.067594pt;}
.ls65{letter-spacing:0.068267pt;}
.ls43{letter-spacing:0.070400pt;}
.lsec{letter-spacing:0.072249pt;}
.lsfe{letter-spacing:0.072422pt;}
.lsdc{letter-spacing:0.072602pt;}
.lsee{letter-spacing:0.072776pt;}
.lsbe{letter-spacing:0.074667pt;}
.lsf{letter-spacing:0.074979pt;}
.ls2c{letter-spacing:0.076800pt;}
.lsea{letter-spacing:0.077065pt;}
.lsfc{letter-spacing:0.077250pt;}
.lsc2{letter-spacing:0.082133pt;}
.lsa6{letter-spacing:0.083200pt;}
.ls82{letter-spacing:0.086400pt;}
.lse9{letter-spacing:0.086699pt;}
.lsfb{letter-spacing:0.086907pt;}
.ls1e{letter-spacing:0.089974pt;}
.ls8c{letter-spacing:0.096000pt;}
.lsb4{letter-spacing:0.101335pt;}
.ls7{letter-spacing:0.102400pt;}
.ls80{letter-spacing:0.105600pt;}
.ls60{letter-spacing:0.110933pt;}
.ls1f{letter-spacing:0.112468pt;}
.ls7b{letter-spacing:0.124800pt;}
.ls121{letter-spacing:0.127101pt;}
.ls51{letter-spacing:0.134400pt;}
.ls2a{letter-spacing:0.134961pt;}
.ls108{letter-spacing:0.137269pt;}
.ls2b{letter-spacing:0.142459pt;}
.lsc9{letter-spacing:0.144000pt;}
.ls58{letter-spacing:0.146924pt;}
.lsd0{letter-spacing:0.147200pt;}
.ls118{letter-spacing:0.147438pt;}
.ls33{letter-spacing:0.149343pt;}
.lsc{letter-spacing:0.149957pt;}
.ls6e{letter-spacing:0.153600pt;}
.lsa8{letter-spacing:0.162133pt;}
.ls22{letter-spacing:0.164953pt;}
.lscb{letter-spacing:0.166400pt;}
.ls10b{letter-spacing:0.170133pt;}
.ls5f{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.170720pt;}
.lsd6{letter-spacing:0.172267pt;}
.ls127{letter-spacing:0.179200pt;}
.lsd4{letter-spacing:0.181333pt;}
.ls84{letter-spacing:0.182400pt;}
.ls1d{letter-spacing:0.187446pt;}
.lsb5{letter-spacing:0.191469pt;}
.ls90{letter-spacing:0.192000pt;}
.lsb3{letter-spacing:0.192002pt;}
.lsb2{letter-spacing:0.192536pt;}
.lsba{letter-spacing:0.194133pt;}
.ls5b{letter-spacing:0.195703pt;}
.ls92{letter-spacing:0.196800pt;}
.ls32{letter-spacing:0.204800pt;}
.lsc7{letter-spacing:0.206400pt;}
.ls31{letter-spacing:0.211200pt;}
.lsc5{letter-spacing:0.213333pt;}
.lsb9{letter-spacing:0.216533pt;}
.lsd3{letter-spacing:0.217600pt;}
.ls8f{letter-spacing:0.218133pt;}
.ls74{letter-spacing:0.218667pt;}
.ls8e{letter-spacing:0.219200pt;}
.ls55{letter-spacing:0.220385pt;}
.ls8b{letter-spacing:0.220800pt;}
.ls45{letter-spacing:0.221867pt;}
.lscf{letter-spacing:0.230400pt;}
.ls54{letter-spacing:0.238933pt;}
.lsc3{letter-spacing:0.239970pt;}
.ls8a{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.245333pt;}
.ls6d{letter-spacing:0.249600pt;}
.ls0{letter-spacing:0.250672pt;}
.ls8d{letter-spacing:0.256000pt;}
.lsa2{letter-spacing:0.261333pt;}
.ls21{letter-spacing:0.262425pt;}
.lsc4{letter-spacing:0.264000pt;}
.ls64{letter-spacing:0.264533pt;}
.lsb8{letter-spacing:0.268800pt;}
.ls2d{letter-spacing:0.275200pt;}
.lsb0{letter-spacing:0.277333pt;}
.lsa{letter-spacing:0.278400pt;}
.lsdb{letter-spacing:0.282670pt;}
.lsd1{letter-spacing:0.283733pt;}
.ls67{letter-spacing:0.290133pt;}
.ls4c{letter-spacing:0.293333pt;}
.ls59{letter-spacing:0.293847pt;}
.ls83{letter-spacing:0.297600pt;}
.ls1{letter-spacing:0.298667pt;}
.ls1a{letter-spacing:0.299914pt;}
.ls75{letter-spacing:0.307200pt;}
.ls72{letter-spacing:0.309333pt;}
.ls6b{letter-spacing:0.316800pt;}
.lsd2{letter-spacing:0.317333pt;}
.ls70{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.320101pt;}
.lsbc{letter-spacing:0.321067pt;}
.ls76{letter-spacing:0.326400pt;}
.lsa7{letter-spacing:0.332800pt;}
.ls63{letter-spacing:0.349867pt;}
.ls3a{letter-spacing:0.896000pt;}
.ls48{letter-spacing:0.921600pt;}
.ls49{letter-spacing:0.934400pt;}
.ls4a{letter-spacing:0.940800pt;}
.ls3c{letter-spacing:0.947200pt;}
.ls37{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.966400pt;}
.ls35{letter-spacing:0.972800pt;}
.ls36{letter-spacing:0.979200pt;}
.ls3d{letter-spacing:0.985600pt;}
.ls40{letter-spacing:0.998400pt;}
.ls3b{letter-spacing:1.004800pt;}
.ls34{letter-spacing:1.011200pt;}
.ls39{letter-spacing:1.017600pt;}
.ls38{letter-spacing:1.024000pt;}
.ls3f{letter-spacing:1.043200pt;}
.lsac{letter-spacing:2.410556pt;}
.ls11b{letter-spacing:5.053550pt;}
.ls8{letter-spacing:15.926399pt;}
.ls12{letter-spacing:19.344677pt;}
.ls5d{letter-spacing:23.333338pt;}
.lsa1{letter-spacing:37.274653pt;}
.ls106{letter-spacing:39.452360pt;}
.ls9f{letter-spacing:58.349260pt;}
.lsb6{letter-spacing:93.866668pt;}
.ls71{letter-spacing:110.399947pt;}
.ls73{letter-spacing:110.400000pt;}
.ls53{letter-spacing:126.722419pt;}
.lsd{letter-spacing:185.346742pt;}
.lsb{letter-spacing:190.445176pt;}
.lse{letter-spacing:214.813416pt;}
.ls10{letter-spacing:238.881635pt;}
.ls11{letter-spacing:239.256848pt;}
.ls109{letter-spacing:716.495621pt;}
.lsed{letter-spacing:758.904429pt;}
.lsff{letter-spacing:760.724820pt;}
.ls114{letter-spacing:1139.617513pt;}
.lsa0{letter-spacing:1254.416988pt;}
.ls9e{letter-spacing:1570.053334pt;}
.ls94{letter-spacing:1746.653334pt;}
.lsab{letter-spacing:1928.234667pt;}
.ws52{word-spacing:-58.221789pt;}
.ws3b{word-spacing:-55.615990pt;}
.ws82{word-spacing:-51.093344pt;}
.ws99{word-spacing:-50.944010pt;}
.ws8{word-spacing:-50.789311pt;}
.ws6d{word-spacing:-50.773343pt;}
.ws6c{word-spacing:-50.645343pt;}
.ws62{word-spacing:-40.874656pt;}
.ws54{word-spacing:-40.686923pt;}
.ws72{word-spacing:-40.413857pt;}
.ws3{word-spacing:-31.755732pt;}
.ws53{word-spacing:-29.421640pt;}
.ws6b{word-spacing:-28.985125pt;}
.ws92{word-spacing:-26.745600pt;}
.ws93{word-spacing:-26.592000pt;}
.ws7e{word-spacing:-25.814400pt;}
.ws8e{word-spacing:-25.766400pt;}
.ws7f{word-spacing:-25.353600pt;}
.ws8f{word-spacing:-24.207999pt;}
.ws7c{word-spacing:-21.996799pt;}
.ws59{word-spacing:-20.649600pt;}
.ws5a{word-spacing:-20.534400pt;}
.ws2{word-spacing:-20.411731pt;}
.ws5b{word-spacing:-20.121600pt;}
.ws0{word-spacing:-20.104531pt;}
.ws1b{word-spacing:-20.019271pt;}
.ws10{word-spacing:-20.004275pt;}
.ws7d{word-spacing:-19.846399pt;}
.ws1c{word-spacing:-19.719357pt;}
.ws73{word-spacing:-18.397865pt;}
.ws4e{word-spacing:-17.482665pt;}
.ws36{word-spacing:-17.363200pt;}
.ws39{word-spacing:-17.299200pt;}
.ws3a{word-spacing:-17.292800pt;}
.ws37{word-spacing:-17.132800pt;}
.ws56{word-spacing:-16.851200pt;}
.ws38{word-spacing:-16.793600pt;}
.ws80{word-spacing:-15.957332pt;}
.ws81{word-spacing:-15.927999pt;}
.wse{word-spacing:-15.895451pt;}
.wsf{word-spacing:-15.745494pt;}
.ws69{word-spacing:-15.734399pt;}
.ws9{word-spacing:-15.708005pt;}
.ws6a{word-spacing:-15.699199pt;}
.ws55{word-spacing:-15.663999pt;}
.ws8a{word-spacing:-15.597866pt;}
.ws4a{word-spacing:-15.507200pt;}
.ws44{word-spacing:-15.488000pt;}
.ws45{word-spacing:-15.481600pt;}
.ws3f{word-spacing:-15.475200pt;}
.ws46{word-spacing:-15.468800pt;}
.ws4b{word-spacing:-15.462400pt;}
.ws66{word-spacing:-15.452799pt;}
.ws4c{word-spacing:-15.449600pt;}
.ws40{word-spacing:-15.443200pt;}
.ws48{word-spacing:-15.436800pt;}
.ws43{word-spacing:-15.430400pt;}
.ws41{word-spacing:-15.424000pt;}
.ws47{word-spacing:-15.411200pt;}
.ws4d{word-spacing:-15.404800pt;}
.ws68{word-spacing:-15.399999pt;}
.ws49{word-spacing:-15.398400pt;}
.ws42{word-spacing:-15.385600pt;}
.ws67{word-spacing:-15.341332pt;}
.ws77{word-spacing:-14.647750pt;}
.ws3d{word-spacing:-14.464000pt;}
.ws3e{word-spacing:-14.361600pt;}
.ws50{word-spacing:-14.239998pt;}
.ws57{word-spacing:-13.704532pt;}
.ws5d{word-spacing:-13.094400pt;}
.ws5f{word-spacing:-13.056000pt;}
.ws60{word-spacing:-13.036800pt;}
.ws83{word-spacing:-13.022400pt;}
.ws65{word-spacing:-13.012800pt;}
.ws63{word-spacing:-13.008000pt;}
.ws61{word-spacing:-12.912000pt;}
.ws86{word-spacing:-12.878400pt;}
.ws5e{word-spacing:-12.787200pt;}
.ws5c{word-spacing:-12.763200pt;}
.ws64{word-spacing:-12.676800pt;}
.ws4f{word-spacing:-12.437332pt;}
.ws78{word-spacing:-11.901297pt;}
.ws96{word-spacing:-10.315545pt;}
.ws94{word-spacing:-10.183360pt;}
.ws98{word-spacing:-10.173192pt;}
.ws95{word-spacing:-10.168108pt;}
.ws97{word-spacing:-10.117267pt;}
.ws91{word-spacing:-9.661113pt;}
.ws90{word-spacing:-9.637994pt;}
.ws6e{word-spacing:-8.906649pt;}
.ws70{word-spacing:-5.937766pt;}
.ws7a{word-spacing:-5.691674pt;}
.ws31{word-spacing:-2.699334pt;}
.wsb{word-spacing:-2.399313pt;}
.ws28{word-spacing:-2.249356pt;}
.wsa{word-spacing:-1.852077pt;}
.ws2e{word-spacing:-1.724506pt;}
.ws32{word-spacing:-1.312445pt;}
.ws30{word-spacing:-1.237039pt;}
.ws2f{word-spacing:-0.990144pt;}
.ws2d{word-spacing:-0.989717pt;}
.ws1d{word-spacing:-0.974828pt;}
.ws6{word-spacing:-0.682988pt;}
.ws2a{word-spacing:-0.479969pt;}
.ws2b{word-spacing:-0.412489pt;}
.ws34{word-spacing:-0.390209pt;}
.ws3c{word-spacing:-0.307200pt;}
.ws17{word-spacing:-0.299807pt;}
.ws8c{word-spacing:-0.294400pt;}
.ws89{word-spacing:-0.230400pt;}
.ws8d{word-spacing:-0.211200pt;}
.ws85{word-spacing:-0.176000pt;}
.ws25{word-spacing:-0.149957pt;}
.ws2c{word-spacing:-0.149850pt;}
.ws88{word-spacing:-0.064000pt;}
.ws8b{word-spacing:-0.044800pt;}
.ws7b{word-spacing:-0.043976pt;}
.ws58{word-spacing:-0.029867pt;}
.ws4{word-spacing:0.000000pt;}
.ws33{word-spacing:0.000214pt;}
.ws35{word-spacing:0.074979pt;}
.ws29{word-spacing:0.075085pt;}
.ws87{word-spacing:0.243200pt;}
.ws84{word-spacing:0.256533pt;}
.ws74{word-spacing:0.572800pt;}
.ws75{word-spacing:0.615467pt;}
.ws76{word-spacing:0.644267pt;}
.ws5{word-spacing:1.109896pt;}
.ws51{word-spacing:1.272318pt;}
.ws1{word-spacing:1.384533pt;}
.ws7{word-spacing:1.707417pt;}
.ws26{word-spacing:147.895174pt;}
.ws27{word-spacing:148.982256pt;}
.wsd{word-spacing:173.050155pt;}
.ws15{word-spacing:176.949359pt;}
.ws12{word-spacing:194.906400pt;}
.ws13{word-spacing:194.981912pt;}
.ws20{word-spacing:199.893007pt;}
.ws1f{word-spacing:218.000325pt;}
.ws21{word-spacing:219.012321pt;}
.ws14{word-spacing:219.537278pt;}
.ws23{word-spacing:222.011570pt;}
.ws24{word-spacing:222.836334pt;}
.ws16{word-spacing:224.523031pt;}
.ws1a{word-spacing:225.535134pt;}
.ws19{word-spacing:225.835582pt;}
.ws71{word-spacing:266.450434pt;}
.ws6f{word-spacing:535.174751pt;}
.wsc{word-spacing:1069.493924pt;}
.ws79{word-spacing:1688.641276pt;}
.ws11{word-spacing:1969.236536pt;}
.ws18{word-spacing:1973.060335pt;}
.ws1e{word-spacing:1992.929648pt;}
.ws22{word-spacing:1997.428361pt;}
._3f{margin-left:-3445.119944pt;}
._2c{margin-left:-317.825279pt;}
._16{margin-left:-146.214400pt;}
._15{margin-left:-113.971200pt;}
._1c{margin-left:-90.724387pt;}
._1b{margin-left:-21.573500pt;}
._1f{margin-left:-14.681340pt;}
._32{margin-left:-5.080821pt;}
._20{margin-left:-3.745810pt;}
._7{margin-left:-2.294343pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.066667pt;}
._17{width:2.031999pt;}
._1a{width:3.027066pt;}
._35{width:4.168924pt;}
._2e{width:5.084054pt;}
._2d{width:6.304227pt;}
._34{width:7.270197pt;}
._33{width:8.287008pt;}
._2f{width:9.202138pt;}
._36{width:13.676105pt;}
._30{width:15.200337pt;}
._31{width:16.195928pt;}
._14{width:17.727006pt;}
._3b{width:19.980129pt;}
._39{width:27.113507pt;}
._19{width:28.099319pt;}
._3a{width:29.401128pt;}
._1e{width:30.626575pt;}
._37{width:39.208326pt;}
._3c{width:53.179204pt;}
._3d{width:62.657007pt;}
._26{width:79.955374pt;}
._38{width:95.478533pt;}
._28{width:104.021728pt;}
._25{width:119.723807pt;}
._27{width:126.820783pt;}
._3{width:131.079245pt;}
._24{width:142.522863pt;}
._12{width:168.026592pt;}
._21{width:169.749335pt;}
._6{width:171.776054pt;}
._3e{width:177.941888pt;}
._18{width:219.518252pt;}
._13{width:222.086869pt;}
._5{width:246.745058pt;}
._c{width:268.513475pt;}
._9{width:269.547752pt;}
._4{width:270.764376pt;}
._23{width:282.444767pt;}
._1d{width:286.237209pt;}
._10{width:291.870622pt;}
._e{width:293.503289pt;}
._b{width:296.277602pt;}
._8{width:316.992522pt;}
._d{width:319.258419pt;}
._f{width:320.533054pt;}
._29{width:343.759943pt;}
._2b{width:344.776313pt;}
._a{width:1431.865004pt;}
._2{width:1519.607186pt;}
._22{width:1777.067636pt;}
._2a{width:1781.330306pt;}
._11{width:1805.858400pt;}
.fs1a{font-size:11.989195pt;}
.fs31{font-size:25.638173pt;}
.fs2c{font-size:26.344875pt;}
.fs23{font-size:26.746567pt;}
.fs22{font-size:26.746694pt;}
.fs1d{font-size:33.433068pt;}
.fs29{font-size:39.081178pt;}
.fs1c{font-size:40.120042pt;}
.fs24{font-size:40.320861pt;}
.fsa{font-size:42.666662pt;}
.fs36{font-size:42.707087pt;}
.fs39{font-size:42.809529pt;}
.fs2e{font-size:42.810421pt;}
.fs28{font-size:43.205461pt;}
.fs1f{font-size:43.463229pt;}
.fs30{font-size:43.976182pt;}
.fs1e{font-size:46.806415pt;}
.fs18{font-size:47.956779pt;}
.fs12{font-size:48.000000pt;}
.fs2f{font-size:48.079396pt;}
.fs37{font-size:48.165888pt;}
.fs3a{font-size:48.281424pt;}
.fs20{font-size:50.149602pt;}
.fs3c{font-size:50.840539pt;}
.fs2a{font-size:52.689749pt;}
.fsb{font-size:53.333325pt;}
.fs17{font-size:53.546304pt;}
.fs33{font-size:54.333491pt;}
.fs3b{font-size:55.711489pt;}
.fs21{font-size:56.836576pt;}
.fs16{font-size:57.750864pt;}
.fs2{font-size:58.666662pt;}
.fs35{font-size:58.762383pt;}
.fs38{font-size:58.903337pt;}
.fs1b{font-size:59.945973pt;}
.fs27{font-size:63.522950pt;}
.fs7{font-size:64.000000pt;}
.fs2d{font-size:65.862187pt;}
.fs25{font-size:67.143087pt;}
.fs26{font-size:67.190279pt;}
.fs19{font-size:71.935168pt;}
.fsf{font-size:73.461760pt;}
.fs3{font-size:74.666662pt;}
.fs6{font-size:74.978542pt;}
.fs2b{font-size:79.034624pt;}
.fs1{font-size:85.333325pt;}
.fs13{font-size:90.340454pt;}
.fs32{font-size:90.555819pt;}
.fs34{font-size:90.666662pt;}
.fs4{font-size:96.000000pt;}
.fse{font-size:97.704822pt;}
.fs15{font-size:98.588861pt;}
.fs14{font-size:103.246234pt;}
.fs11{font-size:110.193408pt;}
.fs9{font-size:128.000000pt;}
.fsd{font-size:149.333376pt;}
.fsc{font-size:170.666624pt;}
.fs0{font-size:213.333376pt;}
.fs5{font-size:213.400466pt;}
.fs8{font-size:234.666624pt;}
.fs10{font-size:244.629366pt;}
.y1e8{bottom:-438.147388pt;}
.y26b{bottom:-315.501212pt;}
.y225{bottom:-278.718299pt;}
.y224{bottom:-260.174298pt;}
.y223{bottom:-217.708174pt;}
.y2bd{bottom:-206.513581pt;}
.y228{bottom:-206.038312pt;}
.y222{bottom:-194.588548pt;}
.y2bb{bottom:-190.240803pt;}
.y2b5{bottom:-182.436882pt;}
.y221{bottom:-179.416293pt;}
.y21e{bottom:-179.415758pt;}
.y2ba{bottom:-174.645518pt;}
.y2b4{bottom:-166.841470pt;}
.y21f{bottom:-164.324315pt;}
.y220{bottom:-164.244038pt;}
.y21d{bottom:-164.243503pt;}
.y2b9{bottom:-159.050234pt;}
.y18d{bottom:-157.228923pt;}
.y2b0{bottom:-151.258870pt;}
.y2b3{bottom:-151.246185pt;}
.y2bc{bottom:-151.195319pt;}
.y21c{bottom:-149.151926pt;}
.y18c{bottom:-143.727142pt;}
.y2b8{bottom:-143.378587pt;}
.y2b2{bottom:-135.650774pt;}
.y18b{bottom:-130.225377pt;}
.y2b7{bottom:-127.783302pt;}
.y2b1{bottom:-120.055489pt;}
.y21a{bottom:-117.282297pt;}
.y2b6{bottom:-112.187890pt;}
.y18a{bottom:-107.388866pt;}
.y219{bottom:-102.110043pt;}
.y2ad{bottom:-96.004032pt;}
.y189{bottom:-93.722429pt;}
.y2af{bottom:-88.469282pt;}
.y218{bottom:-87.017931pt;}
.y2ab{bottom:-80.401771pt;}
.y188{bottom:-80.056025pt;}
.y21b{bottom:-71.926086pt;}
.y217{bottom:-71.845810pt;}
.y2ac{bottom:-64.723401pt;}
.y187{bottom:-61.722298pt;}
.y216{bottom:-56.753698pt;}
.y214{bottom:-48.725648pt;}
.y186{bottom:-48.055894pt;}
.y265{bottom:-46.226798pt;}
.y215{bottom:-41.581577pt;}
.y2aa{bottom:-40.899382pt;}
.y213{bottom:-33.553394pt;}
.y264{bottom:-27.638316pt;}
.y212{bottom:-18.461817pt;}
.y2a9{bottom:-10.077305pt;}
.y96{bottom:-0.544852pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:0.465254pt;}
.y9f{bottom:3.556792pt;}
.y2a8{bottom:6.209807pt;}
.y93{bottom:6.602568pt;}
.y11b{bottom:7.927735pt;}
.y95{bottom:10.681255pt;}
.ya2{bottom:12.747228pt;}
.y8b{bottom:12.747381pt;}
.y20e{bottom:13.408615pt;}
.y296{bottom:13.972883pt;}
.y263{bottom:14.929672pt;}
.y1a3{bottom:16.759692pt;}
.yd9{bottom:20.480000pt;}
.ybe{bottom:21.760013pt;}
.y2a7{bottom:21.812195pt;}
.y11a{bottom:22.314769pt;}
.y92{bottom:23.935073pt;}
.y87{bottom:23.988792pt;}
.y9a{bottom:24.991246pt;}
.y9c{bottom:28.036716pt;}
.y20d{bottom:28.580870pt;}
.y8d{bottom:29.069933pt;}
.y37{bottom:29.120000pt;}
.y295{bottom:29.575144pt;}
.y1a2{bottom:29.952547pt;}
.y99{bottom:30.079886pt;}
.y98{bottom:31.082340pt;}
.y83{bottom:31.105297pt;}
.y8a{bottom:31.113102pt;}
.y9e{bottom:32.115556pt;}
.y82{bottom:32.138360pt;}
.y86{bottom:32.138513pt;}
.ya0{bottom:32.146165pt;}
.y77{bottom:34.880000pt;}
.y97{bottom:36.240156pt;}
.y7f{bottom:37.219500pt;}
.y88{bottom:37.227306pt;}
.y2a6{bottom:37.414329pt;}
.y262{bottom:38.104756pt;}
.y89{bottom:38.252717pt;}
.y8c{bottom:38.260369pt;}
.y19{bottom:38.400000pt;}
.y84{bottom:39.285627pt;}
.y85{bottom:40.318996pt;}
.y81{bottom:41.328949pt;}
.y8f{bottom:42.331250pt;}
.y1b4{bottom:42.560000pt;}
.y16e{bottom:42.880000pt;}
.y1a1{bottom:43.145401pt;}
.yd8{bottom:43.200000pt;}
.y80{bottom:43.364466pt;}
.yc1{bottom:43.520000pt;}
.y20c{bottom:43.672446pt;}
.y17{bottom:44.818066pt;}
.y294{bottom:45.177533pt;}
.y9b{bottom:45.399830pt;}
.y1bf{bottom:48.960000pt;}
.y8e{bottom:49.478517pt;}
.y16d{bottom:49.600000pt;}
.yf4{bottom:50.240000pt;}
.y9d{bottom:51.514034pt;}
.y2a5{bottom:53.016718pt;}
.y261{bottom:53.313404pt;}
.y25e{bottom:53.313941pt;}
.y94{bottom:53.580160pt;}
.yd4{bottom:53.760000pt;}
.ybd{bottom:54.080013pt;}
.y90{bottom:54.590267pt;}
.y1a0{bottom:56.338256pt;}
.y70{bottom:56.640000pt;}
.y18{bottom:57.280000pt;}
.yd5{bottom:58.240000pt;}
.y20b{bottom:58.844701pt;}
.yd7{bottom:60.480000pt;}
.y1e5{bottom:60.800000pt;}
.y293{bottom:60.855776pt;}
.ya1{bottom:62.763098pt;}
.y1b3{bottom:65.280000pt;}
.y16{bottom:67.255394pt;}
.y25f{bottom:68.441584pt;}
.y260{bottom:68.522053pt;}
.y25d{bottom:68.522589pt;}
.y2a4{bottom:68.618852pt;}
.y51{bottom:72.319987pt;}
.y20a{bottom:74.016956pt;}
.y292{bottom:76.458037pt;}
.y16f{bottom:79.506267pt;}
.yae{bottom:80.960000pt;}
.yba{bottom:81.279987pt;}
.yb3{bottom:81.280000pt;}
.y65{bottom:81.599987pt;}
.y7{bottom:82.560000pt;}
.y25c{bottom:83.650366pt;}
.y2a3{bottom:84.221113pt;}
.yd6{bottom:84.480000pt;}
.ybb{bottom:86.400013pt;}
.y6c{bottom:87.680000pt;}
.y1b2{bottom:88.000000pt;}
.y1c{bottom:89.600013pt;}
.y5f{bottom:89.920013pt;}
.y291{bottom:92.060425pt;}
.y54{bottom:93.760000pt;}
.y6a{bottom:94.400013pt;}
.y1ce{bottom:94.829307pt;}
.y48{bottom:96.000013pt;}
.y211{bottom:97.136181pt;}
.y209{bottom:97.136582pt;}
.y127{bottom:98.712753pt;}
.yf5{bottom:98.744787pt;}
.y68{bottom:98.880013pt;}
.y138{bottom:99.400633pt;}
.y2a2{bottom:99.823375pt;}
.y46{bottom:100.480000pt;}
.y126{bottom:101.082268pt;}
.y78{bottom:101.713707pt;}
.y1e3{bottom:104.000000pt;}
.y20f{bottom:104.200511pt;}
.y63{bottom:105.920013pt;}
.y55{bottom:106.559987pt;}
.y64{bottom:107.519987pt;}
.y28a{bottom:107.662560pt;}
.y1b1{bottom:109.120000pt;}
.y42{bottom:110.079987pt;}
.y6e{bottom:110.399987pt;}
.y3f{bottom:111.360013pt;}
.y4c{bottom:111.679987pt;}
.y6{bottom:112.000000pt;}
.y210{bottom:112.308435pt;}
.y208{bottom:112.308837pt;}
.y268{bottom:113.920000pt;}
.y128{bottom:114.444975pt;}
.y2a1{bottom:115.501745pt;}
.y25a{bottom:115.596441pt;}
.y3b{bottom:116.480013pt;}
.y129{bottom:116.577702pt;}
.yb9{bottom:118.720013pt;}
.y58{bottom:119.359987pt;}
.y14b{bottom:120.077049pt;}
.y43{bottom:120.639987pt;}
.y57{bottom:120.640013pt;}
.y4d{bottom:121.279987pt;}
.y3c{bottom:122.559987pt;}
.y289{bottom:123.264821pt;}
.y1d4{bottom:125.120000pt;}
.y40{bottom:126.399987pt;}
.y207{bottom:127.400414pt;}
.y60{bottom:127.999987pt;}
.y5c{bottom:128.959987pt;}
.y15{bottom:130.331093pt;}
.y4a{bottom:130.559987pt;}
.y1e2{bottom:130.560000pt;}
.y259{bottom:130.805090pt;}
.y41{bottom:130.879987pt;}
.yf3{bottom:130.936945pt;}
.y2a0{bottom:131.104006pt;}
.y59{bottom:131.199987pt;}
.y4b{bottom:131.200013pt;}
.y38{bottom:131.519987pt;}
.y1b0{bottom:131.840000pt;}
.y6d{bottom:132.800013pt;}
.y66{bottom:133.439987pt;}
.y61{bottom:133.759987pt;}
.y5b{bottom:134.079987pt;}
.y36{bottom:135.039987pt;}
.y4e{bottom:135.359987pt;}
.y69{bottom:135.679987pt;}
.y5e{bottom:135.999987pt;}
.yda{bottom:136.234533pt;}
.y3e{bottom:136.319987pt;}
.ye3{bottom:136.808800pt;}
.y67{bottom:137.279987pt;}
.y5a{bottom:137.599987pt;}
.y49{bottom:137.919987pt;}
.y62{bottom:138.239987pt;}
.y286{bottom:138.867083pt;}
.y44{bottom:138.879987pt;}
.y5d{bottom:139.199987pt;}
.y39{bottom:140.479987pt;}
.y56{bottom:140.799987pt;}
.y4f{bottom:141.119987pt;}
.y50{bottom:141.439987pt;}
.y3a{bottom:141.759987pt;}
.y3d{bottom:142.079987pt;}
.y47{bottom:142.399987pt;}
.y52{bottom:142.719987pt;}
.y45{bottom:145.920000pt;}
.y258{bottom:145.933403pt;}
.y1d3{bottom:146.560000pt;}
.y29f{bottom:146.706268pt;}
.y19f{bottom:148.303373pt;}
.yf2{bottom:148.623147pt;}
.y139{bottom:150.292966pt;}
.yb8{bottom:151.040000pt;}
.y267{bottom:151.360000pt;}
.yd0{bottom:151.680000pt;}
.y2ae{bottom:153.136466pt;}
.y288{bottom:154.469344pt;}
.y53{bottom:154.880000pt;}
.y2c0{bottom:155.840000pt;}
.y1cc{bottom:156.160000pt;}
.yd3{bottom:157.120000pt;}
.y184{bottom:157.143310pt;}
.y1e1{bottom:158.720000pt;}
.y205{bottom:159.271782pt;}
.y25b{bottom:161.061449pt;}
.y257{bottom:161.141918pt;}
.y19e{bottom:161.496227pt;}
.y29e{bottom:162.308529pt;}
.y6b{bottom:162.880000pt;}
.y79{bottom:163.505737pt;}
.y12a{bottom:165.451505pt;}
.yf1{bottom:165.595913pt;}
.y14f{bottom:166.092027pt;}
.y12b{bottom:166.105515pt;}
.y14{bottom:166.433288pt;}
.ybc{bottom:167.680000pt;}
.y183{bottom:168.396853pt;}
.y287{bottom:170.147714pt;}
.y149{bottom:173.923669pt;}
.y1be{bottom:174.080000pt;}
.y204{bottom:174.444036pt;}
.y135{bottom:174.532121pt;}
.y19d{bottom:174.689082pt;}
.y182{bottom:174.983072pt;}
.y14e{bottom:175.604404pt;}
.y256{bottom:176.270232pt;}
.y1af{bottom:177.280000pt;}
.y29d{bottom:177.910790pt;}
.y266{bottom:179.200000pt;}
.yf0{bottom:181.872454pt;}
.y156{bottom:182.108093pt;}
.y120{bottom:182.818752pt;}
.yb7{bottom:183.360000pt;}
.y4{bottom:183.680000pt;}
.y2bf{bottom:184.000000pt;}
.y254{bottom:184.317538pt;}
.y1cb{bottom:184.320000pt;}
.y1e0{bottom:185.280000pt;}
.y290{bottom:185.749975pt;}
.y14a{bottom:186.026162pt;}
.y181{bottom:186.236779pt;}
.y125{bottom:187.821394pt;}
.y19c{bottom:187.881936pt;}
.y13{bottom:188.870643pt;}
.yac{bottom:188.898278pt;}
.y203{bottom:189.535613pt;}
.yd2{bottom:190.400000pt;}
.y255{bottom:191.478746pt;}
.y180{bottom:192.822997pt;}
.y29c{bottom:193.513052pt;}
.y13a{bottom:196.384226pt;}
.y122{bottom:198.303547pt;}
.yef{bottom:199.125525pt;}
.y137{bottom:199.359795pt;}
.y17f{bottom:199.409216pt;}
.y253{bottom:199.526186pt;}
.y121{bottom:199.716024pt;}
.y1ae{bottom:200.000000pt;}
.y19b{bottom:201.074791pt;}
.y28f{bottom:201.352237pt;}
.y1bd{bottom:201.920000pt;}
.y202{bottom:204.707868pt;}
.y134{bottom:204.956501pt;}
.y17e{bottom:205.995435pt;}
.y29b{bottom:209.115313pt;}
.y12c{bottom:210.306379pt;}
.y141{bottom:211.347790pt;}
.y17d{bottom:212.581653pt;}
.y1d{bottom:213.439987pt;}
.y1ca{bottom:213.440000pt;}
.y19a{bottom:214.267646pt;}
.y252{bottom:214.653964pt;}
.y7a{bottom:215.606864pt;}
.y1e{bottom:215.679987pt;}
.y5{bottom:215.680000pt;}
.y124{bottom:216.229641pt;}
.yee{bottom:216.378595pt;}
.y28e{bottom:216.954498pt;}
.y26a{bottom:217.859867pt;}
.y1f{bottom:218.239987pt;}
.y17c{bottom:219.167872pt;}
.y201{bottom:219.799445pt;}
.y1ad{bottom:221.120000pt;}
.yab{bottom:221.956300pt;}
.ycf{bottom:222.400000pt;}
.y20{bottom:222.719987pt;}
.y11e{bottom:224.119879pt;}
.y136{bottom:224.501585pt;}
.y29a{bottom:224.717574pt;}
.y17b{bottom:225.754091pt;}
.y12{bottom:226.603568pt;}
.y21{bottom:229.439987pt;}
.y1bc{bottom:231.360000pt;}
.y22{bottom:231.679987pt;}
.y17a{bottom:232.340309pt;}
.y28d{bottom:232.556759pt;}
.yed{bottom:233.631666pt;}
.y23{bottom:234.239987pt;}
.y1ff{bottom:234.891022pt;}
.y200{bottom:234.971700pt;}
.y123{bottom:237.648337pt;}
.y24{bottom:238.719987pt;}
.y179{bottom:238.926528pt;}
.yc5{bottom:239.360000pt;}
.y1df{bottom:240.000000pt;}
.y299{bottom:240.395944pt;}
.y15f{bottom:240.432228pt;}
.y25{bottom:240.959987pt;}
.y13d{bottom:241.077846pt;}
.y226{bottom:241.962267pt;}
.y26{bottom:243.199987pt;}
.y27{bottom:245.439987pt;}
.y178{bottom:245.512747pt;}
.y24e{bottom:246.600843pt;}
.y28{bottom:247.679987pt;}
.yb6{bottom:248.000000pt;}
.y28c{bottom:248.159021pt;}
.ydf{bottom:248.499465pt;}
.y11{bottom:249.040923pt;}
.y29{bottom:249.919987pt;}
.y1fe{bottom:250.063276pt;}
.yec{bottom:250.855882pt;}
.ye2{bottom:251.680402pt;}
.y143{bottom:252.096665pt;}
.y177{bottom:252.098965pt;}
.y11d{bottom:254.598510pt;}
.yaa{bottom:255.014322pt;}
.yce{bottom:255.680000pt;}
.y298{bottom:255.998206pt;}
.y2a{bottom:256.959987pt;}
.y176{bottom:258.685184pt;}
.y24d{bottom:261.809492pt;}
.y15e{bottom:263.283783pt;}
.y28b{bottom:263.761282pt;}
.y158{bottom:264.273191pt;}
.y1c9{bottom:264.320000pt;}
.y1fd{bottom:265.235531pt;}
.y175{bottom:265.271403pt;}
.y11f{bottom:266.268643pt;}
.y7b{bottom:267.707991pt;}
.yeb{bottom:268.108952pt;}
.yc4{bottom:268.800000pt;}
.y2b{bottom:270.719987pt;}
.y297{bottom:271.600467pt;}
.y174{bottom:271.857621pt;}
.ydc{bottom:272.268370pt;}
.y12f{bottom:272.396320pt;}
.y147{bottom:274.529647pt;}
.yde{bottom:275.924245pt;}
.y15a{bottom:276.054673pt;}
.y15d{bottom:276.245451pt;}
.y24c{bottom:276.937269pt;}
.y2c{bottom:277.439987pt;}
.y159{bottom:278.139294pt;}
.y173{bottom:278.443840pt;}
.ye1{bottom:279.408549pt;}
.yb5{bottom:280.320000pt;}
.y1fc{bottom:280.327108pt;}
.y206{bottom:280.327242pt;}
.y2d{bottom:284.159987pt;}
.y172{bottom:285.030059pt;}
.yea{bottom:285.362023pt;}
.y2e{bottom:286.719987pt;}
.y10{bottom:286.773848pt;}
.y283{bottom:287.811597pt;}
.y144{bottom:288.139931pt;}
.y1bb{bottom:288.640000pt;}
.y2f{bottom:288.959987pt;}
.y3{bottom:288.960000pt;}
.ycd{bottom:289.280000pt;}
.y161{bottom:290.790592pt;}
.y171{bottom:291.616277pt;}
.y24b{bottom:292.145917pt;}
.y1c8{bottom:293.440000pt;}
.y1ac{bottom:294.080000pt;}
.y1fb{bottom:295.499363pt;}
.y199{bottom:296.272228pt;}
.y14d{bottom:296.999047pt;}
.y30{bottom:297.919987pt;}
.ydb{bottom:300.499440pt;}
.y130{bottom:300.882197pt;}
.y146{bottom:302.138814pt;}
.ye9{bottom:302.615093pt;}
.ya9{bottom:303.315766pt;}
.ydd{bottom:303.349026pt;}
.y282{bottom:303.413858pt;}
.y160{bottom:303.752260pt;}
.y13c{bottom:303.865708pt;}
.ye0{bottom:307.136632pt;}
.y24a{bottom:307.354566pt;}
.y140{bottom:307.883287pt;}
.yf{bottom:309.211203pt;}
.y198{bottom:309.465082pt;}
.y13f{bottom:310.865599pt;}
.yb4{bottom:312.640000pt;}
.y13e{bottom:314.733763pt;}
.y1a7{bottom:315.840000pt;}
.y154{bottom:316.095736pt;}
.y1ab{bottom:316.800000pt;}
.y132{bottom:317.484234pt;}
.y1ba{bottom:318.080000pt;}
.y31{bottom:318.399987pt;}
.y281{bottom:319.092228pt;}
.ye8{bottom:319.596001pt;}
.y7c{bottom:319.808965pt;}
.y1de{bottom:320.000000pt;}
.y142{bottom:320.166817pt;}
.yd1{bottom:321.280000pt;}
.y1c7{bottom:321.600000pt;}
.y14c{bottom:322.328768pt;}
.y197{bottom:322.657937pt;}
.y162{bottom:323.886015pt;}
.y6f{bottom:325.120000pt;}
.yc3{bottom:326.080000pt;}
.y13b{bottom:326.319671pt;}
.ycc{bottom:326.400000pt;}
.y1f9{bottom:327.290053pt;}
.y169{bottom:329.600000pt;}
.y251{bottom:330.529247pt;}
.y249{bottom:330.529649pt;}
.y131{bottom:333.155011pt;}
.y32{bottom:334.399987pt;}
.y280{bottom:334.694490pt;}
.y12d{bottom:335.082873pt;}
.y1d2{bottom:335.282296pt;}
.ye7{bottom:335.606356pt;}
.y1d8{bottom:335.680000pt;}
.y12e{bottom:335.736884pt;}
.y196{bottom:335.850790pt;}
.ya8{bottom:336.373789pt;}
.y33{bottom:336.639987pt;}
.y157{bottom:336.792233pt;}
.y24f{bottom:337.610523pt;}
.y1a6{bottom:338.560000pt;}
.y1aa{bottom:339.200000pt;}
.y155{bottom:340.593857pt;}
.y1f8{bottom:342.462308pt;}
.y15c{bottom:342.868207pt;}
.y153{bottom:343.770993pt;}
.yb2{bottom:344.960000pt;}
.y250{bottom:345.737896pt;}
.y248{bottom:345.738298pt;}
.y1b9{bottom:345.920000pt;}
.y2{bottom:346.560000pt;}
.ye{bottom:346.944128pt;}
.y27f{bottom:350.296751pt;}
.y1d1{bottom:351.582343pt;}
.ye6{bottom:351.589918pt;}
.y1e6{bottom:354.256133pt;}
.yc2{bottom:355.520000pt;}
.y15b{bottom:355.829875pt;}
.y133{bottom:357.097133pt;}
.y11c{bottom:357.136547pt;}
.y1f7{bottom:357.634562pt;}
.y152{bottom:358.146637pt;}
.ycb{bottom:359.680000pt;}
.y247{bottom:360.866075pt;}
.y1a5{bottom:360.960000pt;}
.y1a9{bottom:361.920000pt;}
.y1d7{bottom:363.520000pt;}
.y145{bottom:363.676353pt;}
.y27e{bottom:365.899012pt;}
.ye5{bottom:367.600273pt;}
.y1d0{bottom:367.882334pt;}
.y150{bottom:368.859432pt;}
.yd{bottom:369.381483pt;}
.ya7{bottom:369.431811pt;}
.y151{bottom:371.299383pt;}
.y7d{bottom:371.910091pt;}
.y1f6{bottom:372.806817pt;}
.y1c6{bottom:373.440000pt;}
.y277{bottom:373.738197pt;}
.y168{bottom:374.720000pt;}
.y34{bottom:375.679987pt;}
.yc0{bottom:377.280000pt;}
.y195{bottom:377.298342pt;}
.yb1{bottom:377.600000pt;}
.y27d{bottom:381.501274pt;}
.y1a4{bottom:382.400000pt;}
.y1a8{bottom:383.360000pt;}
.ye4{bottom:383.892942pt;}
.y148{bottom:386.551437pt;}
.y1f5{bottom:387.898394pt;}
.y194{bottom:390.491196pt;}
.y245{bottom:392.813893pt;}
.y1d6{bottom:392.960000pt;}
.y1cf{bottom:393.006254pt;}
.yca{bottom:393.280000pt;}
.y27c{bottom:397.103662pt;}
.y75{bottom:400.000000pt;}
.y1dd{bottom:401.280000pt;}
.y1c5{bottom:401.600000pt;}
.ya6{bottom:402.489834pt;}
.y1f3{bottom:402.989971pt;}
.y1f4{bottom:403.070649pt;}
.y1b8{bottom:403.520000pt;}
.y193{bottom:403.684199pt;}
.y35{bottom:405.119987pt;}
.y1{bottom:405.120000pt;}
.yc{bottom:407.114408pt;}
.y244{bottom:408.022542pt;}
.yb0{bottom:409.920000pt;}
.y27b{bottom:412.705797pt;}
.y192{bottom:416.877054pt;}
.y1f2{bottom:418.162226pt;}
.y167{bottom:420.160000pt;}
.y243{bottom:423.150319pt;}
.y7e{bottom:424.011218pt;}
.y27a{bottom:428.384167pt;}
.y1dc{bottom:429.440000pt;}
.yb{bottom:429.551763pt;}
.y1c4{bottom:430.720000pt;}
.y1fa{bottom:433.253802pt;}
.y1f1{bottom:433.334480pt;}
.y74{bottom:434.560000pt;}
.y191{bottom:435.616986pt;}
.y242{bottom:438.358968pt;}
.yc6{bottom:439.040000pt;}
.yaf{bottom:442.240000pt;}
.y279{bottom:443.986428pt;}
.y1f0{bottom:448.426057pt;}
.y190{bottom:448.809841pt;}
.y285{bottom:449.085704pt;}
.y241{bottom:453.486745pt;}
.y73{bottom:456.000000pt;}
.y278{bottom:459.588689pt;}
.y1c3{bottom:460.160000pt;}
.y284{bottom:461.795838pt;}
.y18f{bottom:462.002696pt;}
.y1b7{bottom:462.080000pt;}
.ya3{bottom:463.498873pt;}
.yc9{bottom:463.680000pt;}
.y166{bottom:464.000000pt;}
.ya{bottom:467.265863pt;}
.y23f{bottom:468.614522pt;}
.y240{bottom:468.695393pt;}
.y1ec{bottom:472.268172pt;}
.yad{bottom:474.560000pt;}
.y18e{bottom:475.195583pt;}
.y276{bottom:475.799819pt;}
.y1ef{bottom:481.339414pt;}
.y1db{bottom:482.560000pt;}
.y23e{bottom:483.823171pt;}
.y1ed{bottom:485.192685pt;}
.y165{bottom:486.720000pt;}
.y1eb{bottom:487.440426pt;}
.y1c2{bottom:488.320000pt;}
.y72{bottom:489.280000pt;}
.ybf{bottom:490.880000pt;}
.y275{bottom:491.402081pt;}
.y1e9{bottom:492.738674pt;}
.y16c{bottom:492.800000pt;}
.yc8{bottom:497.280000pt;}
.y23d{bottom:499.031819pt;}
.y117{bottom:501.440754pt;}
.y116{bottom:505.037347pt;}
.y1ea{bottom:505.261805pt;}
.y274{bottom:507.080451pt;}
.y71{bottom:507.840000pt;}
.y115{bottom:508.634091pt;}
.y164{bottom:509.440000pt;}
.y114{bottom:512.230864pt;}
.y1ee{bottom:513.289453pt;}
.y23c{bottom:514.159596pt;}
.y246{bottom:514.159730pt;}
.y113{bottom:515.827623pt;}
.y185{bottom:516.674548pt;}
.y2be{bottom:517.120000pt;}
.y1c1{bottom:517.440000pt;}
.y16b{bottom:518.080000pt;}
.y1b6{bottom:519.360000pt;}
.ya5{bottom:519.368767pt;}
.y112{bottom:519.424531pt;}
.y273{bottom:522.682712pt;}
.y111{bottom:523.021274pt;}
.y110{bottom:526.618033pt;}
.y9{bottom:528.260960pt;}
.y269{bottom:528.960000pt;}
.y23b{bottom:529.368245pt;}
.y10f{bottom:530.214791pt;}
.yc7{bottom:530.560000pt;}
.y163{bottom:532.160000pt;}
.y1da{bottom:533.440000pt;}
.y10e{bottom:533.811549pt;}
.y10d{bottom:537.408308pt;}
.y272{bottom:538.284973pt;}
.y10c{bottom:541.005066pt;}
.y10b{bottom:544.601825pt;}
.y16a{bottom:544.640000pt;}
.y10a{bottom:548.198583pt;}
.y1b{bottom:550.400000pt;}
.y109{bottom:551.795341pt;}
.y271{bottom:553.887235pt;}
.y108{bottom:555.392100pt;}
.y107{bottom:558.988858pt;}
.y239{bottom:561.235192pt;}
.y106{bottom:562.585617pt;}
.y119{bottom:562.709225pt;}
.y105{bottom:566.182375pt;}
.y270{bottom:569.489496pt;}
.y104{bottom:569.779133pt;}
.y170{bottom:571.952090pt;}
.y103{bottom:573.375892pt;}
.y238{bottom:576.443840pt;}
.y102{bottom:576.972650pt;}
.y101{bottom:580.569409pt;}
.y118{bottom:580.693017pt;}
.y100{bottom:584.166167pt;}
.y26f{bottom:585.091757pt;}
.y1e7{bottom:585.698838pt;}
.yff{bottom:587.762925pt;}
.y8{bottom:590.321191pt;}
.yfe{bottom:591.359684pt;}
.y1b5{bottom:591.360013pt;}
.y237{bottom:591.652489pt;}
.y1a{bottom:591.680013pt;}
.y1d5{bottom:592.000013pt;}
.y1e4{bottom:592.320013pt;}
.y1d9{bottom:592.640013pt;}
.ya4{bottom:592.818796pt;}
.y1c0{bottom:592.960013pt;}
.y1cd{bottom:594.560013pt;}
.yfd{bottom:594.956442pt;}
.yfc{bottom:598.553201pt;}
.y26e{bottom:600.694019pt;}
.yfb{bottom:602.149959pt;}
.yfa{bottom:605.746717pt;}
.y236{bottom:606.861137pt;}
.yf9{bottom:609.343476pt;}
.yf8{bottom:612.940234pt;}
.y26d{bottom:616.372516pt;}
.yf7{bottom:616.536978pt;}
.y235{bottom:621.988915pt;}
.y76{bottom:625.280013pt;}
.yf6{bottom:629.506472pt;}
.y26c{bottom:631.974650pt;}
.y233{bottom:637.116692pt;}
.y234{bottom:637.197563pt;}
.y232{bottom:652.325340pt;}
.y23a{bottom:667.453118pt;}
.y231{bottom:667.533989pt;}
.y230{bottom:682.661766pt;}
.y22c{bottom:706.561071pt;}
.y22f{bottom:715.654073pt;}
.y22d{bottom:719.516586pt;}
.y22b{bottom:721.769720pt;}
.y229{bottom:727.080676pt;}
.y22a{bottom:739.633846pt;}
.y22e{bottom:747.680750pt;}
.y227{bottom:820.263825pt;}
.h9f{height:0.000000pt;}
.h67{height:10.454578pt;}
.h82{height:22.761972pt;}
.h81{height:22.972731pt;}
.h72{height:23.323007pt;}
.h70{height:23.323118pt;}
.h71{height:28.057650pt;}
.h6b{height:29.153636pt;}
.h79{height:31.626397pt;}
.h85{height:32.190565pt;}
.h45{height:32.597330pt;}
.h86{height:33.413642pt;}
.h7a{height:34.078787pt;}
.h91{height:34.080256pt;}
.h96{height:34.162004pt;}
.h6a{height:34.984676pt;}
.h73{height:35.159790pt;}
.h63{height:36.603919pt;}
.h9e{height:37.367797pt;}
.h78{height:37.675162pt;}
.h6d{height:37.899935pt;}
.h92{height:38.436379pt;}
.h64{height:38.462075pt;}
.h97{height:38.528576pt;}
.h62{height:39.478130pt;}
.h6c{height:40.815194pt;}
.h9d{height:41.333359pt;}
.h69{height:41.434657pt;}
.h84{height:41.540598pt;}
.h47{height:42.719993pt;}
.h11{height:43.531250pt;}
.h6e{height:43.730453pt;}
.h46{height:44.645330pt;}
.h57{height:45.216000pt;}
.h9c{height:45.293441pt;}
.h90{height:46.892382pt;}
.h49{height:46.991997pt;}
.h95{height:47.004863pt;}
.h48{height:47.808000pt;}
.h8b{height:48.628475pt;}
.h6f{height:49.561494pt;}
.h4a{height:49.813325pt;}
.h68{height:53.052186pt;}
.h4f{height:53.482170pt;}
.h58{height:55.263996pt;}
.h77{height:55.392012pt;}
.h56{height:55.999997pt;}
.h8c{height:57.045330pt;}
.h75{height:57.217971pt;}
.h7b{height:57.640622pt;}
.h74{height:58.548772pt;}
.h76{height:58.589923pt;}
.h83{height:59.621876pt;}
.h7c{height:59.645830pt;}
.h3{height:59.807997pt;}
.h8{height:60.057812pt;}
.hd{height:60.288000pt;}
.h88{height:60.608000pt;}
.h9{height:61.782746pt;}
.h66{height:62.151985pt;}
.h54{height:63.999994pt;}
.h53{height:66.583327pt;}
.h80{height:68.285915pt;}
.h5b{height:68.297384pt;}
.h93{height:68.941441pt;}
.h98{height:69.106812pt;}
.h8a{height:69.546869pt;}
.h87{height:69.738663pt;}
.h99{height:69.890625pt;}
.h2{height:70.293330pt;}
.ha{height:70.629787pt;}
.h4e{height:71.131782pt;}
.h9a{height:72.000000pt;}
.h8e{height:72.170663pt;}
.hc{height:72.354293pt;}
.h4{height:75.264000pt;}
.h7d{height:77.909326pt;}
.h60{height:78.082378pt;}
.h7e{height:79.402698pt;}
.h5e{height:81.771017pt;}
.h51{height:84.187764pt;}
.h8d{height:85.407996pt;}
.h55{height:87.648000pt;}
.h5{height:90.432000pt;}
.h5f{height:92.476351pt;}
.h5d{height:96.844967pt;}
.hf{height:100.266660pt;}
.h94{height:105.333333pt;}
.h4c{height:111.402698pt;}
.hb{height:120.415218pt;}
.h4b{height:133.802633pt;}
.h8f{height:147.884133pt;}
.h59{height:169.002698pt;}
.h52{height:179.520000pt;}
.he{height:183.978633pt;}
.h50{height:190.120187pt;}
.h1{height:197.120039pt;}
.h7{height:197.182031pt;}
.h43{height:204.800000pt;}
.h28{height:218.880000pt;}
.h1e{height:234.560000pt;}
.h44{height:257.600000pt;}
.h22{height:260.160000pt;}
.h2c{height:279.040000pt;}
.h9b{height:284.280400pt;}
.h16{height:286.080000pt;}
.h19{height:295.040000pt;}
.h3a{height:304.320000pt;}
.h41{height:316.800000pt;}
.h20{height:321.920000pt;}
.h42{height:324.800000pt;}
.h33{height:332.480000pt;}
.h27{height:333.440000pt;}
.h1f{height:333.760000pt;}
.h39{height:334.400000pt;}
.h40{height:334.720000pt;}
.h17{height:335.040000pt;}
.h15{height:336.320000pt;}
.h26{height:337.280000pt;}
.h25{height:338.560000pt;}
.h2b{height:339.520000pt;}
.h14{height:339.840000pt;}
.h31{height:343.680000pt;}
.h1d{height:344.640000pt;}
.h38{height:346.880000pt;}
.h34{height:348.160000pt;}
.h2e{height:348.480000pt;}
.h3e{height:349.440000pt;}
.h13{height:351.360000pt;}
.h18{height:352.320000pt;}
.h32{height:353.920000pt;}
.h29{height:355.200000pt;}
.h24{height:355.840000pt;}
.h12{height:356.800000pt;}
.h2f{height:359.680000pt;}
.h36{height:360.000000pt;}
.h3c{height:361.280000pt;}
.h3d{height:367.680000pt;}
.h2d{height:368.320000pt;}
.h1a{height:369.280000pt;}
.h21{height:369.920000pt;}
.h30{height:374.080000pt;}
.h3f{height:374.720000pt;}
.h35{height:377.280000pt;}
.h23{height:398.080000pt;}
.h1c{height:399.680000pt;}
.h37{height:426.240000pt;}
.h1b{height:431.040000pt;}
.h61{height:433.852800pt;}
.h5a{height:434.426267pt;}
.h5c{height:434.427067pt;}
.h3b{height:438.720000pt;}
.h2a{height:441.280000pt;}
.h65{height:457.477333pt;}
.h89{height:462.377360pt;}
.h10{height:467.840000pt;}
.h7f{height:491.286933pt;}
.h4d{height:492.953067pt;}
.h6{height:719.999971pt;}
.h0{height:720.000000pt;}
.w10{width:0.000000pt;}
.w4{width:20.480000pt;}
.w3{width:20.800000pt;}
.wa{width:306.582400pt;}
.wd{width:317.469453pt;}
.w9{width:383.094267pt;}
.w8{width:417.509333pt;}
.wf{width:550.434533pt;}
.we{width:598.747733pt;}
.w7{width:689.600000pt;}
.wc{width:788.037333pt;}
.wb{width:794.960533pt;}
.w6{width:917.279867pt;}
.w5{width:921.885867pt;}
.w2{width:1216.000000pt;}
.w1{width:1279.999963pt;}
.w0{width:1280.000000pt;}
.xf4{left:-27.144835pt;}
.xfb{left:-22.185122pt;}
.xf5{left:-19.865257pt;}
.x10d{left:-16.340267pt;}
.xd6{left:-2.151845pt;}
.x0{left:0.000000pt;}
.x66{left:3.520296pt;}
.x8e{left:4.435599pt;}
.xfc{left:5.893252pt;}
.x7{left:9.280000pt;}
.xec{left:12.826682pt;}
.x22{left:15.290667pt;}
.x65{left:17.150023pt;}
.x20{left:20.092120pt;}
.x9e{left:23.445070pt;}
.x5b{left:25.240133pt;}
.x5a{left:27.200000pt;}
.x64{left:30.779751pt;}
.x9c{left:33.501464pt;}
.x109{left:34.694351pt;}
.xae{left:35.980715pt;}
.x1f{left:40.472907pt;}
.xa2{left:44.188180pt;}
.x110{left:45.178773pt;}
.xd2{left:46.211086pt;}
.x59{left:47.360000pt;}
.xa3{left:49.168989pt;}
.xc7{left:50.206444pt;}
.xa6{left:55.663113pt;}
.xf3{left:58.308760pt;}
.xba{left:59.903222pt;}
.x1e{left:60.853693pt;}
.xc6{left:63.751204pt;}
.xd8{left:66.475436pt;}
.x58{left:67.840000pt;}
.xf6{left:68.849607pt;}
.xd9{left:74.414484pt;}
.x9d{left:75.695013pt;}
.x1d{left:81.234480pt;}
.xa1{left:86.099814pt;}
.x63{left:87.251227pt;}
.x57{left:88.320000pt;}
.x3{left:92.928309pt;}
.x6{left:94.488187pt;}
.xeb{left:95.773440pt;}
.x61{left:96.700053pt;}
.x91{left:98.880000pt;}
.x1c{left:101.615267pt;}
.xa0{left:104.055303pt;}
.x96{left:105.877480pt;}
.x56{left:108.480000pt;}
.x67{left:110.832102pt;}
.xd7{left:116.585080pt;}
.x1b{left:121.996067pt;}
.x55{left:128.960000pt;}
.x10c{left:130.014288pt;}
.x68{left:131.509598pt;}
.x1a{left:142.376800pt;}
.x10a{left:143.355733pt;}
.x1{left:150.307333pt;}
.x2{left:152.833600pt;}
.x19{left:162.757600pt;}
.x54{left:169.920000pt;}
.xfd{left:171.564059pt;}
.x69{left:172.864590pt;}
.x10f{left:175.583948pt;}
.xc5{left:180.527906pt;}
.x18{left:183.138400pt;}
.x53{left:190.080000pt;}
.x6a{left:193.542086pt;}
.x111{left:207.027013pt;}
.x52{left:210.560000pt;}
.x6b{left:214.219581pt;}
.xac{left:218.349808pt;}
.x17{left:223.900000pt;}
.xaa{left:225.863918pt;}
.xf7{left:229.240319pt;}
.x51{left:231.040000pt;}
.x6c{left:234.897077pt;}
.x8d{left:240.264836pt;}
.xab{left:242.619196pt;}
.x16{left:244.280800pt;}
.xf2{left:249.717733pt;}
.x50{left:251.200000pt;}
.x6d{left:255.574573pt;}
.xe8{left:260.139600pt;}
.xea{left:261.907333pt;}
.x4{left:263.269784pt;}
.x15{left:264.661600pt;}
.x4f{left:271.680000pt;}
.x5{left:273.600267pt;}
.x6e{left:276.252222pt;}
.xe9{left:277.405600pt;}
.xd5{left:279.315333pt;}
.x93{left:280.658667pt;}
.x14{left:285.042400pt;}
.x4e{left:292.160000pt;}
.x9a{left:294.063067pt;}
.xad{left:295.529306pt;}
.x6f{left:296.929718pt;}
.x92{left:308.287467pt;}
.x4d{left:312.320000pt;}
.x9b{left:316.149733pt;}
.x70{left:317.607367pt;}
.x13{left:325.804000pt;}
.x10b{left:331.355733pt;}
.x4c{left:332.800000pt;}
.x71{left:338.284710pt;}
.x102{left:339.873913pt;}
.xff{left:341.313830pt;}
.x101{left:342.353770pt;}
.x107{left:344.273659pt;}
.x103{left:347.873450pt;}
.x104{left:350.513297pt;}
.x4b{left:353.280000pt;}
.x113{left:355.432203pt;}
.x72{left:358.962359pt;}
.x114{left:363.634741pt;}
.xfe{left:365.072454pt;}
.x12{left:366.565467pt;}
.xf8{left:368.672246pt;}
.x4a{left:373.440000pt;}
.xbf{left:375.142522pt;}
.x73{left:379.639854pt;}
.xf0{left:380.626933pt;}
.xc2{left:387.332855pt;}
.x49{left:393.920000pt;}
.xa9{left:399.219498pt;}
.x74{left:400.317350pt;}
.xa8{left:401.542538pt;}
.xc0{left:404.548092pt;}
.x11{left:407.327067pt;}
.x48{left:414.400000pt;}
.x75{left:420.994846pt;}
.xc8{left:422.068068pt;}
.x10e{left:426.141124pt;}
.x10{left:427.707867pt;}
.x100{left:429.308735pt;}
.xc9{left:430.198106pt;}
.x106{left:431.948582pt;}
.x47{left:434.880000pt;}
.x105{left:435.788360pt;}
.xbb{left:437.022353pt;}
.x108{left:440.588082pt;}
.x76{left:441.672342pt;}
.xfa{left:444.027882pt;}
.xf{left:448.088667pt;}
.x46{left:455.040000pt;}
.x115{left:456.672796pt;}
.x77{left:462.349838pt;}
.xb0{left:466.238211pt;}
.xe{left:468.469467pt;}
.xbe{left:472.325954pt;}
.x45{left:475.520000pt;}
.xce{left:476.955086pt;}
.xed{left:478.524933pt;}
.x78{left:483.027334pt;}
.x5c{left:486.990133pt;}
.xf9{left:490.985164pt;}
.xd{left:492.893733pt;}
.xa7{left:494.769154pt;}
.x44{left:496.000000pt;}
.xbd{left:500.162085pt;}
.xb1{left:501.779065pt;}
.x79{left:503.704829pt;}
.xe3{left:505.061497pt;}
.xaf{left:506.568515pt;}
.xdb{left:508.235649pt;}
.xc{left:513.274533pt;}
.x43{left:516.160000pt;}
.x7a{left:524.382325pt;}
.xda{left:529.542331pt;}
.x42{left:536.640000pt;}
.xcb{left:538.727239pt;}
.x7b{left:545.059821pt;}
.xe4{left:551.561806pt;}
.x41{left:557.120000pt;}
.xe5{left:558.278638pt;}
.x7c{left:565.737470pt;}
.xdc{left:567.461980pt;}
.xdd{left:570.512082pt;}
.xb{left:574.416800pt;}
.x40{left:577.280000pt;}
.xb3{left:584.169730pt;}
.x7d{left:586.414966pt;}
.xca{left:591.538819pt;}
.x3f{left:597.760000pt;}
.xe1{left:601.971082pt;}
.xa4{left:603.422463pt;}
.x7e{left:607.092462pt;}
.xbc{left:610.683573pt;}
.xe2{left:615.746099pt;}
.xe0{left:616.957331pt;}
.x3e{left:618.240000pt;}
.xb2{left:621.391900pt;}
.xc4{left:623.111759pt;}
.xc1{left:625.597666pt;}
.x7f{left:627.769958pt;}
.xb5{left:629.265489pt;}
.xcd{left:631.639518pt;}
.xde{left:635.092781pt;}
.x3d{left:638.400000pt;}
.xcc{left:639.873936pt;}
.xb4{left:643.072352pt;}
.x80{left:648.447453pt;}
.xa{left:655.940000pt;}
.x3c{left:658.880000pt;}
.xdf{left:663.523695pt;}
.xa5{left:665.061893pt;}
.x81{left:669.124949pt;}
.x3b{left:679.360000pt;}
.x97{left:680.544133pt;}
.x82{left:689.802445pt;}
.x116{left:692.512533pt;}
.xb6{left:693.650124pt;}
.xb7{left:696.470465pt;}
.x3a{left:699.520000pt;}
.xb9{left:701.285710pt;}
.xe7{left:705.790267pt;}
.xb8{left:709.128555pt;}
.x83{left:710.480094pt;}
.x98{left:716.544133pt;}
.xcf{left:717.832230pt;}
.x39{left:720.000000pt;}
.xc3{left:722.237756pt;}
.xd0{left:729.916534pt;}
.x84{left:731.157590pt;}
.xd1{left:733.682887pt;}
.x38{left:740.480000pt;}
.x85{left:751.835086pt;}
.x37{left:760.960000pt;}
.x86{left:772.512582pt;}
.x36{left:781.120000pt;}
.x87{left:793.190077pt;}
.x35{left:801.600000pt;}
.x117{left:808.165733pt;}
.x88{left:813.867573pt;}
.x34{left:822.080000pt;}
.x94{left:830.417067pt;}
.x89{left:834.545069pt;}
.x33{left:842.240000pt;}
.x8a{left:855.222718pt;}
.x32{left:862.720000pt;}
.x8b{left:875.900061pt;}
.x31{left:883.200000pt;}
.x8c{left:896.577557pt;}
.xd3{left:899.555467pt;}
.x30{left:903.360000pt;}
.x118{left:918.510400pt;}
.x9{left:920.890267pt;}
.x2f{left:923.840000pt;}
.x2e{left:944.320000pt;}
.x8f{left:948.214134pt;}
.x9f{left:951.084533pt;}
.x2d{left:964.480000pt;}
.x2c{left:984.960000pt;}
.x90{left:989.536374pt;}
.x2b{left:1005.440000pt;}
.x2a{left:1025.920000pt;}
.x112{left:1042.039191pt;}
.x29{left:1046.080000pt;}
.x5d{left:1052.961600pt;}
.x5f{left:1059.208400pt;}
.x28{left:1066.560000pt;}
.x27{left:1087.040000pt;}
.x95{left:1097.569200pt;}
.x5e{left:1103.794933pt;}
.x60{left:1105.041600pt;}
.x26{left:1107.200000pt;}
.x25{left:1127.680000pt;}
.x24{left:1148.160000pt;}
.x23{left:1168.320000pt;}
.x8{left:1185.840400pt;}
.x21{left:1188.800000pt;}
.xef{left:1202.254800pt;}
.xf1{left:1204.921333pt;}
.xe6{left:1209.754800pt;}
.xee{left:1211.088000pt;}
.xd4{left:1212.921333pt;}
.x62{left:1223.921333pt;}
.x99{left:1227.421333pt;}
}




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