
    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_ed5390755cdfb89183130ad8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_748d11f6261052695506afe2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_923afbf1e757b38556cc7254.woff')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_bba8293a4f8930198b3efc0c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_5f3b26713003abd71deef491.woff')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_e048400e1f93e78a267edd60.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9b4a8d39fa9212e9af306193.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9c2fef1d6af22e585fbab774.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_92a4993fd07cc8d3ccbe9a92.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e9d386ab8fc075ec2505ea53.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_504b1ddc732659c12fc53001.woff')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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_4ab67c37a012ab2b4eb688c2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.766602;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_da1875a7925eac8f01f889a0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_bc69dfbb06ace5692123e3cf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.740234;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_cda927f257856da25627116b.woff')format("woff");}.fff{font-family:fff;line-height:0.784180;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_f503a2f9c16f5d706f3585c9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.784180;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_3c28290e4b584874d1cfdf42.woff')format("woff");}.ff11{font-family:ff11;line-height:0.715820;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_5c5ad1cfbc8d1b032b5fcc6f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.730957;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_e78c92214c2322e342e5a50c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739841;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_6ab41299c5bc7011482fd966.woff')format("woff");}.ff14{font-family:ff14;line-height:0.740723;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_7a2241a798817cdbe8e72ee3.woff')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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_474d0d7c3a85f5a3cc9a0a8a.woff')format("woff");}.ff16{font-family:ff16;line-height:1.138184;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_9ce9a362f87aab3f0d29f0c2.woff')format("woff");}.ff17{font-family:ff17;line-height:0.726074;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_0290515e92ea5347a4a0aa84.woff')format("woff");}.ff18{font-family:ff18;line-height:0.960938;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_cd28c6a8109ff47fcd367b1a.woff')format("woff");}.ff19{font-family:ff19;line-height:0.965332;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_bce80ab97c837286754ff985.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.414000;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_04dd9b14e3e4694677375c08.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_71c938896c79d6db42b1fcb5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.250000;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_1cefbd424a787690789ff3a9.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.971191;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_3bf437867d50bc18506db967.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.919922;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_d69d0a317d89ac29c4aeb9eb.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.971191;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_8c6e81904c251336a76f91a1.woff')format("woff");}.ff20{font-family:ff20;line-height:0.960938;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_94bc3d648601bf7e430ebf3d.woff')format("woff");}.ff21{font-family:ff21;line-height:0.960938;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_bba41350341ae605acda6014.woff')format("woff");}.ff22{font-family:ff22;line-height:0.971191;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_e1447a41fbc21d5ab12672f3.woff')format("woff");}.ff23{font-family:ff23;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_5f3c419975047829e6ce4239.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_709c06336b777b7ea23c2630.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.866000;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_4f5df6a995d26ced6a6ae573.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.922000;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;}
.m4{transform:matrix(0.000000,-0.249846,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249846,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249846,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249848,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249843,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249843,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249843,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249844,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249844,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249844,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249851,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250324,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-65.479957px;}
.v15{vertical-align:-40.491920px;}
.v10{vertical-align:-20.795230px;}
.vb{vertical-align:-15.257670px;}
.va{vertical-align:-13.517646px;}
.vd{vertical-align:-11.877452px;}
.v2{vertical-align:-10.758000px;}
.v8{vertical-align:-8.910000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.725749px;}
.ve{vertical-align:5.170487px;}
.vc{vertical-align:12.764526px;}
.v11{vertical-align:17.321146px;}
.v9{vertical-align:23.814000px;}
.v1{vertical-align:26.028000px;}
.v17{vertical-align:30.751835px;}
.vf{vertical-align:33.517145px;}
.v16{vertical-align:35.144954px;}
.v4{vertical-align:37.764000px;}
.v3{vertical-align:48.528000px;}
.v14{vertical-align:54.631206px;}
.v7{vertical-align:78.822000px;}
.v6{vertical-align:86.970000px;}
.v5{vertical-align:97.734000px;}
.lsae{letter-spacing:-1.414212px;}
.lsa8{letter-spacing:-1.270854px;}
.lsb4{letter-spacing:-1.266979px;}
.ls7b{letter-spacing:-1.037298px;}
.ls7d{letter-spacing:-0.872217px;}
.ls81{letter-spacing:-0.798300px;}
.ls83{letter-spacing:-0.746559px;}
.lsa6{letter-spacing:-0.678047px;}
.lsa7{letter-spacing:-0.604430px;}
.lsbe{letter-spacing:-0.596244px;}
.ls5c{letter-spacing:-0.549391px;}
.lsa5{letter-spacing:-0.525326px;}
.lsb7{letter-spacing:-0.412528px;}
.lsc5{letter-spacing:-0.390312px;}
.lsaa{letter-spacing:-0.387068px;}
.lsb1{letter-spacing:-0.383968px;}
.lsbd{letter-spacing:-0.373551px;}
.ls5a{letter-spacing:-0.345492px;}
.lsc3{letter-spacing:-0.342421px;}
.ls58{letter-spacing:-0.328684px;}
.ls51{letter-spacing:-0.321214px;}
.lsb2{letter-spacing:-0.289993px;}
.lsb8{letter-spacing:-0.286858px;}
.ls7c{letter-spacing:-0.283347px;}
.ls77{letter-spacing:-0.224372px;}
.lsa3{letter-spacing:-0.210958px;}
.ls53{letter-spacing:-0.209163px;}
.ls39{letter-spacing:-0.201960px;}
.lsba{letter-spacing:-0.201193px;}
.ls78{letter-spacing:-0.171056px;}
.lsaf{letter-spacing:-0.165443px;}
.lsad{letter-spacing:-0.157307px;}
.ls50{letter-spacing:-0.149028px;}
.lsa4{letter-spacing:-0.131609px;}
.ls57{letter-spacing:-0.121763px;}
.lsa1{letter-spacing:-0.097329px;}
.lsac{letter-spacing:-0.087177px;}
.lsc8{letter-spacing:-0.060381px;}
.lsc9{letter-spacing:-0.060343px;}
.lsbf{letter-spacing:-0.058667px;}
.lsc0{letter-spacing:-0.028974px;}
.ls85{letter-spacing:-0.013880px;}
.ls86{letter-spacing:-0.013872px;}
.ls5d{letter-spacing:-0.010222px;}
.ls5e{letter-spacing:-0.010215px;}
.ls56{letter-spacing:-0.005957px;}
.ls5{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.000661px;}
.ls6a{letter-spacing:0.000739px;}
.ls45{letter-spacing:0.002008px;}
.ls4{letter-spacing:0.002400px;}
.ls15{letter-spacing:0.005779px;}
.ls6f{letter-spacing:0.006739px;}
.ls87{letter-spacing:0.008074px;}
.ls6b{letter-spacing:0.010042px;}
.ls13{letter-spacing:0.011021px;}
.ls88{letter-spacing:0.014074px;}
.ls22{letter-spacing:0.016042px;}
.ls7{letter-spacing:0.017722px;}
.lsa{letter-spacing:0.020256px;}
.ls38{letter-spacing:0.020573px;}
.ls4c{letter-spacing:0.023039px;}
.ls63{letter-spacing:0.023722px;}
.ls4b{letter-spacing:0.024938px;}
.ls49{letter-spacing:0.026856px;}
.ls48{letter-spacing:0.028775px;}
.ls4a{letter-spacing:0.034549px;}
.ls47{letter-spacing:0.036467px;}
.ls2a{letter-spacing:0.036557px;}
.lse{letter-spacing:0.038957px;}
.ls5f{letter-spacing:0.041443px;}
.ls25{letter-spacing:0.044957px;}
.ls3a{letter-spacing:0.045360px;}
.ls46{letter-spacing:0.046059px;}
.ls3e{letter-spacing:0.046720px;}
.ls44{letter-spacing:0.048180px;}
.ls2d{letter-spacing:0.052858px;}
.ls14{letter-spacing:0.054144px;}
.ls3b{letter-spacing:0.054507px;}
.ls66{letter-spacing:0.055766px;}
.ls1a{letter-spacing:0.060144px;}
.ls69{letter-spacing:0.061766px;}
.ls3f{letter-spacing:0.061853px;}
.ls2b{letter-spacing:0.063216px;}
.ls1c{letter-spacing:0.064022px;}
.ls36{letter-spacing:0.064800px;}
.ls41{letter-spacing:0.069072px;}
.lsc4{letter-spacing:0.083091px;}
.ls52{letter-spacing:0.087774px;}
.ls74{letter-spacing:0.121461px;}
.lsbb{letter-spacing:0.129306px;}
.ls7a{letter-spacing:0.142166px;}
.ls2e{letter-spacing:0.187380px;}
.ls9c{letter-spacing:0.189103px;}
.lsc6{letter-spacing:0.192762px;}
.ls54{letter-spacing:0.211030px;}
.lsbc{letter-spacing:0.239455px;}
.lsc7{letter-spacing:0.251586px;}
.ls35{letter-spacing:0.259200px;}
.ls59{letter-spacing:0.263321px;}
.ls5b{letter-spacing:0.302539px;}
.lsa2{letter-spacing:0.304451px;}
.ls7f{letter-spacing:0.413933px;}
.ls55{letter-spacing:0.425795px;}
.lsc1{letter-spacing:0.507646px;}
.ls82{letter-spacing:0.687425px;}
.lsb6{letter-spacing:0.691190px;}
.ls80{letter-spacing:0.712064px;}
.lsc2{letter-spacing:0.773441px;}
.lsb9{letter-spacing:0.838717px;}
.ls79{letter-spacing:0.953525px;}
.ls84{letter-spacing:0.988610px;}
.lsa9{letter-spacing:1.019008px;}
.ls7e{letter-spacing:1.148173px;}
.lsb0{letter-spacing:1.239857px;}
.lsab{letter-spacing:1.317348px;}
.lsb3{letter-spacing:1.465473px;}
.ls72{letter-spacing:1.970573px;}
.lsd1{letter-spacing:2.630133px;}
.lsda{letter-spacing:2.725774px;}
.lsd3{letter-spacing:2.821415px;}
.lse3{letter-spacing:2.869236px;}
.lsd6{letter-spacing:2.917057px;}
.lsd2{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.999261px;}
.ls1{letter-spacing:3.005261px;}
.lsd4{letter-spacing:3.012698px;}
.ls6c{letter-spacing:3.028623px;}
.lsd5{letter-spacing:3.108339px;}
.lsdf{letter-spacing:3.251801px;}
.lsdb{letter-spacing:3.299261px;}
.ls42{letter-spacing:3.436858px;}
.lsdc{letter-spacing:3.851261px;}
.lsd7{letter-spacing:4.121261px;}
.lsde{letter-spacing:4.127261px;}
.ls16{letter-spacing:4.853780px;}
.lsb{letter-spacing:4.859780px;}
.ls43{letter-spacing:5.701853px;}
.ls1e{letter-spacing:7.211443px;}
.ls17{letter-spacing:7.230144px;}
.ls6{letter-spacing:7.645200px;}
.ls9b{letter-spacing:11.068858px;}
.lscc{letter-spacing:11.954400px;}
.lsa0{letter-spacing:11.999443px;}
.lsca{letter-spacing:12.024845px;}
.lscb{letter-spacing:12.030845px;}
.ls60{letter-spacing:15.203261px;}
.ls8f{letter-spacing:15.924326px;}
.ls12{letter-spacing:15.984557px;}
.ls65{letter-spacing:15.994858px;}
.ls89{letter-spacing:15.996144px;}
.ls70{letter-spacing:16.030085px;}
.ls71{letter-spacing:16.060623px;}
.ls97{letter-spacing:17.280557px;}
.ls3{letter-spacing:17.929200px;}
.ls2{letter-spacing:17.935200px;}
.ls28{letter-spacing:17.944042px;}
.ls61{letter-spacing:17.969443px;}
.ls64{letter-spacing:18.970623px;}
.ls27{letter-spacing:19.904573px;}
.lscd{letter-spacing:19.956979px;}
.ls9{letter-spacing:19.962557px;}
.ls10{letter-spacing:19.968557px;}
.ls21{letter-spacing:19.971821px;}
.ls8c{letter-spacing:19.984858px;}
.ls8d{letter-spacing:19.986144px;}
.ls11{letter-spacing:20.795780px;}
.lsc{letter-spacing:20.801780px;}
.ls92{letter-spacing:20.933261px;}
.ls68{letter-spacing:20.962623px;}
.ls93{letter-spacing:21.287261px;}
.ls24{letter-spacing:21.444778px;}
.ls40{letter-spacing:21.523853px;}
.ls94{letter-spacing:21.605261px;}
.ls20{letter-spacing:21.902573px;}
.ls26{letter-spacing:22.787780px;}
.ls29{letter-spacing:22.793780px;}
.ls62{letter-spacing:22.954623px;}
.lsd{letter-spacing:23.148557px;}
.ls19{letter-spacing:23.154557px;}
.ls8a{letter-spacing:23.168458px;}
.ls8{letter-spacing:24.785780px;}
.ls2c{letter-spacing:24.805200px;}
.ls95{letter-spacing:25.541261px;}
.ls1d{letter-spacing:27.138557px;}
.lscf{letter-spacing:31.537200px;}
.lse5{letter-spacing:31.991261px;}
.lse4{letter-spacing:31.997261px;}
.lsd8{letter-spacing:32.267261px;}
.lse0{letter-spacing:32.359200px;}
.lsd0{letter-spacing:32.527200px;}
.lsd9{letter-spacing:32.813261px;}
.lsdd{letter-spacing:32.819261px;}
.ls96{letter-spacing:33.284400px;}
.ls23{letter-spacing:35.872080px;}
.ls18{letter-spacing:36.046886px;}
.ls4e{letter-spacing:46.839863px;}
.ls4d{letter-spacing:46.843598px;}
.lsf{letter-spacing:50.884886px;}
.ls4f{letter-spacing:59.905239px;}
.lse6{letter-spacing:60.683261px;}
.ls75{letter-spacing:67.077600px;}
.ls8b{letter-spacing:83.754845px;}
.ls90{letter-spacing:83.760845px;}
.ls76{letter-spacing:85.793091px;}
.lse1{letter-spacing:88.921200px;}
.lse2{letter-spacing:89.911200px;}
.ls91{letter-spacing:110.472845px;}
.ls9e{letter-spacing:130.269019px;}
.ls9d{letter-spacing:130.316910px;}
.ls6d{letter-spacing:133.306886px;}
.ls9f{letter-spacing:166.708205px;}
.ls37{letter-spacing:194.907600px;}
.ls34{letter-spacing:196.981200px;}
.ls99{letter-spacing:204.436445px;}
.ls98{letter-spacing:207.148632px;}
.ls8e{letter-spacing:242.484845px;}
.ls30{letter-spacing:247.903632px;}
.ls32{letter-spacing:251.629632px;}
.ls9a{letter-spacing:263.429553px;}
.ls31{letter-spacing:284.353200px;}
.ls33{letter-spacing:286.135200px;}
.ls2f{letter-spacing:287.571600px;}
.ls1b{letter-spacing:542.796845px;}
.lsce{letter-spacing:708.696845px;}
.ls3d{letter-spacing:742.978868px;}
.ls3c{letter-spacing:744.100146px;}
.ls6e{letter-spacing:978.204845px;}
.ls67{letter-spacing:1059.426845px;}
.ls73{letter-spacing:1392.811651px;}
.ls1f{letter-spacing:1581.060845px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws46{word-spacing:-64.800000px;}
.ws2{word-spacing:-46.696900px;}
.ws36{word-spacing:-45.621043px;}
.ws52{word-spacing:-35.880887px;}
.ws1{word-spacing:-35.865600px;}
.ws37{word-spacing:-33.713664px;}
.wsff{word-spacing:-29.887800px;}
.ws15a{word-spacing:-28.692000px;}
.ws148{word-spacing:-28.644539px;}
.ws115{word-spacing:-28.501078px;}
.ws113{word-spacing:-28.405436px;}
.ws111{word-spacing:-28.357616px;}
.ws126{word-spacing:-28.309795px;}
.ws14f{word-spacing:-28.261975px;}
.ws141{word-spacing:-28.118513px;}
.ws29{word-spacing:-26.850793px;}
.ws10{word-spacing:-26.756213px;}
.ws63{word-spacing:-26.754553px;}
.ws12c{word-spacing:-25.392739px;}
.ws93{word-spacing:-24.860477px;}
.ws6a{word-spacing:-24.678617px;}
.wse6{word-spacing:-23.814758px;}
.ws73{word-spacing:-23.671296px;}
.wsdf{word-spacing:-23.599565px;}
.wsef{word-spacing:-23.456102px;}
.ws6f{word-spacing:-23.430896px;}
.ws85{word-spacing:-23.312640px;}
.wsc5{word-spacing:-23.131957px;}
.ws67{word-spacing:-23.097446px;}
.ws91{word-spacing:-22.842922px;}
.ws92{word-spacing:-22.810522px;}
.ws58{word-spacing:-22.667059px;}
.ws1f{word-spacing:-22.595328px;}
.wse1{word-spacing:-22.451866px;}
.wsbe{word-spacing:-22.293343px;}
.ws8f{word-spacing:-22.164941px;}
.wsea{word-spacing:-21.878016px;}
.wsd9{word-spacing:-21.806285px;}
.ws8e{word-spacing:-21.734554px;}
.ws96{word-spacing:-21.644477px;}
.wsc3{word-spacing:-21.627073px;}
.wsc0{word-spacing:-21.613915px;}
.ws89{word-spacing:-21.375898px;}
.ws84{word-spacing:-21.304166px;}
.wsb9{word-spacing:-21.160704px;}
.ws82{word-spacing:-21.088973px;}
.wsa5{word-spacing:-21.017242px;}
.wsd{word-spacing:-20.945510px;}
.wsba{word-spacing:-20.873779px;}
.wsc7{word-spacing:-20.802048px;}
.ws9{word-spacing:-20.730317px;}
.wsb3{word-spacing:-20.676000px;}
.wsb2{word-spacing:-20.658586px;}
.ws66{word-spacing:-20.586854px;}
.wsce{word-spacing:-20.515123px;}
.ws2a{word-spacing:-20.443392px;}
.ws19{word-spacing:-20.371661px;}
.ws94{word-spacing:-20.299930px;}
.wsb4{word-spacing:-20.156467px;}
.ws57{word-spacing:-20.084736px;}
.wsf{word-spacing:-20.013005px;}
.wsa8{word-spacing:-19.949126px;}
.wsaf{word-spacing:-19.939450px;}
.wsaa{word-spacing:-19.927776px;}
.wsad{word-spacing:-19.869542px;}
.ws4e{word-spacing:-19.797811px;}
.ws4a{word-spacing:-19.726080px;}
.ws90{word-spacing:-19.654349px;}
.wse7{word-spacing:-19.582618px;}
.ws13{word-spacing:-19.367424px;}
.wsa{word-spacing:-19.295693px;}
.ws23{word-spacing:-19.223962px;}
.ws81{word-spacing:-19.152230px;}
.ws7{word-spacing:-19.080499px;}
.wsd8{word-spacing:-19.008768px;}
.ws71{word-spacing:-18.865306px;}
.ws16{word-spacing:-18.793574px;}
.ws31{word-spacing:-18.721843px;}
.ws117{word-spacing:-18.650034px;}
.ws149{word-spacing:-18.608142px;}
.wscf{word-spacing:-18.578381px;}
.ws13a{word-spacing:-18.560321px;}
.wsa2{word-spacing:-18.506650px;}
.ws167{word-spacing:-18.458752px;}
.ws34{word-spacing:-18.363187px;}
.ws103{word-spacing:-18.231558px;}
.ws32{word-spacing:-18.219725px;}
.ws102{word-spacing:-18.112007px;}
.ws74{word-spacing:-18.076262px;}
.ws0{word-spacing:-18.004531px;}
.ws98{word-spacing:-17.974032px;}
.ws8d{word-spacing:-17.940922px;}
.ws3c{word-spacing:-17.939453px;}
.ws3{word-spacing:-17.932800px;}
.ws65{word-spacing:-17.861069px;}
.ws2c{word-spacing:-17.789338px;}
.ws27{word-spacing:-17.645875px;}
.wsbb{word-spacing:-17.585453px;}
.ws30{word-spacing:-17.574144px;}
.wse{word-spacing:-17.502413px;}
.wsd4{word-spacing:-17.430682px;}
.ws80{word-spacing:-17.358950px;}
.ws12{word-spacing:-17.287219px;}
.wsbc{word-spacing:-17.267453px;}
.ws48{word-spacing:-17.215488px;}
.ws95{word-spacing:-17.143757px;}
.ws8c{word-spacing:-17.072026px;}
.ws8b{word-spacing:-17.000294px;}
.wsd0{word-spacing:-16.928563px;}
.wsf1{word-spacing:-16.785101px;}
.ws105{word-spacing:-16.737168px;}
.ws6{word-spacing:-16.713370px;}
.wsb5{word-spacing:-16.641638px;}
.wsb6{word-spacing:-16.623763px;}
.ws17{word-spacing:-16.569907px;}
.ws24{word-spacing:-16.498176px;}
.ws70{word-spacing:-16.426445px;}
.ws6c{word-spacing:-16.363650px;}
.ws68{word-spacing:-16.354714px;}
.wsae{word-spacing:-16.282982px;}
.ws8{word-spacing:-16.211251px;}
.ws20{word-spacing:-16.139520px;}
.ws1d{word-spacing:-16.067789px;}
.ws28{word-spacing:-15.996058px;}
.wsb1{word-spacing:-15.958474px;}
.wsac{word-spacing:-15.940800px;}
.wsd1{word-spacing:-15.924326px;}
.wsfe{word-spacing:-15.900310px;}
.ws64{word-spacing:-15.852595px;}
.wsfd{word-spacing:-15.840534px;}
.ws1a{word-spacing:-15.637402px;}
.wsf5{word-spacing:-15.541656px;}
.ws2e{word-spacing:-15.493939px;}
.ws4b{word-spacing:-15.422208px;}
.wsf6{word-spacing:-15.422105px;}
.ws2f{word-spacing:-15.350477px;}
.ws5a{word-spacing:-15.278746px;}
.ws69{word-spacing:-15.207014px;}
.wseb{word-spacing:-15.135283px;}
.wsf4{word-spacing:-15.123227px;}
.ws2d{word-spacing:-15.063552px;}
.wsfc{word-spacing:-15.003676px;}
.wsa3{word-spacing:-14.991821px;}
.wsf9{word-spacing:-14.943900px;}
.wsb{word-spacing:-14.920090px;}
.wsd5{word-spacing:-14.848358px;}
.ws83{word-spacing:-14.776627px;}
.wsb7{word-spacing:-14.704896px;}
.ws49{word-spacing:-14.633165px;}
.ws18{word-spacing:-14.561434px;}
.ws25{word-spacing:-14.489702px;}
.ws4c{word-spacing:-14.417971px;}
.ws3e{word-spacing:-14.346240px;}
.wsc{word-spacing:-14.202778px;}
.ws3d{word-spacing:-14.131046px;}
.wsca{word-spacing:-14.040881px;}
.wsee{word-spacing:-13.987584px;}
.wsa6{word-spacing:-13.915853px;}
.wscc{word-spacing:-13.860471px;}
.wsc8{word-spacing:-13.851778px;}
.ws4d{word-spacing:-13.844122px;}
.ws15{word-spacing:-13.772390px;}
.ws88{word-spacing:-13.700659px;}
.wsf3{word-spacing:-13.628928px;}
.ws35{word-spacing:-13.485466px;}
.wse0{word-spacing:-13.413734px;}
.ws26{word-spacing:-13.342003px;}
.wsbd{word-spacing:-13.337453px;}
.ws7c{word-spacing:-13.312367px;}
.wse9{word-spacing:-13.126810px;}
.wsfa{word-spacing:-13.090856px;}
.ws1e{word-spacing:-13.055078px;}
.ws5e{word-spacing:-12.983347px;}
.ws60{word-spacing:-12.917453px;}
.ws62{word-spacing:-12.911616px;}
.ws75{word-spacing:-12.839885px;}
.ws42{word-spacing:-12.768154px;}
.wsf8{word-spacing:-12.732203px;}
.ws21{word-spacing:-12.696422px;}
.ws3f{word-spacing:-12.552960px;}
.ws40{word-spacing:-12.409498px;}
.ws22{word-spacing:-12.194304px;}
.wsa1{word-spacing:-12.122573px;}
.ws4{word-spacing:-12.013526px;}
.ws4f{word-spacing:-11.979110px;}
.ws72{word-spacing:-11.907379px;}
.wsa0{word-spacing:-11.814000px;}
.ws9f{word-spacing:-11.763917px;}
.wsf7{word-spacing:-11.716018px;}
.ws47{word-spacing:-11.709360px;}
.wsf2{word-spacing:-11.692186px;}
.ws5d{word-spacing:-11.476992px;}
.ws2b{word-spacing:-11.261798px;}
.wsfb{word-spacing:-11.178037px;}
.ws104{word-spacing:-11.118262px;}
.ws33{word-spacing:-11.046605px;}
.ws5{word-spacing:-10.974874px;}
.ws14{word-spacing:-10.903142px;}
.wse8{word-spacing:-10.831411px;}
.ws10b{word-spacing:-10.805453px;}
.ws1b{word-spacing:-10.759680px;}
.ws97{word-spacing:-10.687949px;}
.ws11{word-spacing:-10.544486px;}
.ws108{word-spacing:-10.460730px;}
.ws107{word-spacing:-10.400954px;}
.wsb8{word-spacing:-10.257562px;}
.ws7f{word-spacing:-10.114099px;}
.ws106{word-spacing:-9.922750px;}
.wsd3{word-spacing:-9.898906px;}
.wsf0{word-spacing:-9.827174px;}
.wsda{word-spacing:-9.683712px;}
.wsa4{word-spacing:-9.468518px;}
.wsab{word-spacing:-9.364800px;}
.ws8a{word-spacing:-9.181594px;}
.ws101{word-spacing:-8.488135px;}
.ws100{word-spacing:-8.428360px;}
.ws9b{word-spacing:-7.239084px;}
.ws9d{word-spacing:-7.121878px;}
.ws99{word-spacing:-7.117623px;}
.ws79{word-spacing:-5.245374px;}
.ws76{word-spacing:-5.242137px;}
.ws55{word-spacing:-0.071731px;}
.ws44{word-spacing:-0.064800px;}
.ws41{word-spacing:-0.047821px;}
.ws7d{word-spacing:-0.036473px;}
.ws1c{word-spacing:0.000000px;}
.ws166{word-spacing:1.602326px;}
.ws135{word-spacing:1.673721px;}
.ws13c{word-spacing:1.769362px;}
.ws158{word-spacing:2.137692px;}
.ws119{word-spacing:2.168922px;}
.ws15c{word-spacing:2.328257px;}
.ws128{word-spacing:2.907642px;}
.ws124{word-spacing:2.913642px;}
.ws116{word-spacing:3.086922px;}
.ws151{word-spacing:3.127661px;}
.ws14d{word-spacing:3.205842px;}
.ws10f{word-spacing:3.211842px;}
.ws152{word-spacing:3.350922px;}
.ws14e{word-spacing:3.410922px;}
.ws110{word-spacing:3.488922px;}
.ws112{word-spacing:3.548922px;}
.ws114{word-spacing:3.626922px;}
.ws10e{word-spacing:3.675642px;}
.ws14c{word-spacing:3.681642px;}
.ws150{word-spacing:3.711642px;}
.ws10c{word-spacing:4.980720px;}
.ws10a{word-spacing:4.981152px;}
.ws109{word-spacing:5.499355px;}
.ws143{word-spacing:6.052523px;}
.ws13e{word-spacing:6.598523px;}
.ws13f{word-spacing:6.599243px;}
.ws11f{word-spacing:6.933987px;}
.ws13b{word-spacing:7.029628px;}
.ws162{word-spacing:7.125269px;}
.ws130{word-spacing:7.152037px;}
.ws15f{word-spacing:7.173090px;}
.ws12d{word-spacing:7.268731px;}
.ws12b{word-spacing:7.412193px;}
.ws138{word-spacing:7.426523px;}
.ws160{word-spacing:7.476215px;}
.ws132{word-spacing:7.555655px;}
.ws154{word-spacing:7.588523px;}
.ws144{word-spacing:7.594523px;}
.ws137{word-spacing:7.603475px;}
.ws140{word-spacing:7.698830px;}
.ws133{word-spacing:7.702523px;}
.ws139{word-spacing:7.765291px;}
.ws10d{word-spacing:7.780523px;}
.ws147{word-spacing:7.794758px;}
.ws11e{word-spacing:7.811753px;}
.ws156{word-spacing:7.834523px;}
.ws12f{word-spacing:7.842578px;}
.ws120{word-spacing:7.900315px;}
.ws164{word-spacing:7.918523px;}
.ws145{word-spacing:7.924523px;}
.ws13d{word-spacing:7.954523px;}
.ws153{word-spacing:7.986040px;}
.ws11d{word-spacing:8.129502px;}
.ws121{word-spacing:8.271524px;}
.ws5b{word-spacing:8.292934px;}
.ws15e{word-spacing:8.297857px;}
.ws123{word-spacing:8.439524px;}
.ws125{word-spacing:8.477857px;}
.ws14b{word-spacing:8.639753px;}
.ws161{word-spacing:8.733524px;}
.ws14a{word-spacing:8.769524px;}
.ws142{word-spacing:8.967057px;}
.ws59{word-spacing:11.707073px;}
.wsd2{word-spacing:12.010598px;}
.ws11a{word-spacing:13.600627px;}
.ws11b{word-spacing:13.605600px;}
.ws122{word-spacing:14.427600px;}
.ws118{word-spacing:14.595600px;}
.ws11c{word-spacing:14.889600px;}
.wsa9{word-spacing:15.852595px;}
.ws77{word-spacing:18.147108px;}
.ws54{word-spacing:18.643073px;}
.wsa7{word-spacing:19.797811px;}
.ws3b{word-spacing:22.786224px;}
.ws56{word-spacing:24.151073px;}
.ws5c{word-spacing:24.321445px;}
.ws39{word-spacing:24.778224px;}
.ws5f{word-spacing:25.959745px;}
.ws9a{word-spacing:26.389150px;}
.wsd7{word-spacing:28.243073px;}
.ws50{word-spacing:30.267445px;}
.ws61{word-spacing:31.248934px;}
.ws6d{word-spacing:35.757001px;}
.ws163{word-spacing:35.857360px;}
.wsc9{word-spacing:54.623526px;}
.ws78{word-spacing:63.878711px;}
.ws38{word-spacing:69.728746px;}
.ws15b{word-spacing:70.989600px;}
.ws155{word-spacing:71.812627px;}
.ws127{word-spacing:71.817600px;}
.ws159{word-spacing:71.979600px;}
.ws15d{word-spacing:72.087600px;}
.ws157{word-spacing:72.171600px;}
.ws165{word-spacing:72.273600px;}
.wsc1{word-spacing:89.561109px;}
.ws9c{word-spacing:89.645338px;}
.wsed{word-spacing:91.672474px;}
.ws7a{word-spacing:93.212546px;}
.wsdd{word-spacing:106.780850px;}
.wsdc{word-spacing:109.176295px;}
.wsec{word-spacing:109.605274px;}
.wsde{word-spacing:109.725097px;}
.wsdb{word-spacing:113.420237px;}
.ws7e{word-spacing:120.477389px;}
.wse4{word-spacing:125.959841px;}
.wse5{word-spacing:128.338042px;}
.ws129{word-spacing:128.373600px;}
.wse3{word-spacing:128.785534px;}
.ws12a{word-spacing:129.201600px;}
.ws136{word-spacing:129.363600px;}
.ws9e{word-spacing:129.395496px;}
.ws131{word-spacing:129.477600px;}
.ws146{word-spacing:129.555600px;}
.ws12e{word-spacing:129.615600px;}
.ws134{word-spacing:129.693600px;}
.wse2{word-spacing:133.791734px;}
.wsb0{word-spacing:161.431526px;}
.ws45{word-spacing:167.702400px;}
.ws43{word-spacing:167.737716px;}
.ws86{word-spacing:172.694029px;}
.wscb{word-spacing:177.624664px;}
.ws53{word-spacing:204.695459px;}
.wscd{word-spacing:253.294082px;}
.wsc2{word-spacing:282.216547px;}
.ws51{word-spacing:346.778477px;}
.wsc4{word-spacing:395.641703px;}
.wsd6{word-spacing:456.764303px;}
.ws7b{word-spacing:564.191343px;}
.ws6e{word-spacing:689.807001px;}
.ws6b{word-spacing:740.776242px;}
.ws87{word-spacing:1381.820094px;}
.ws3a{word-spacing:1777.760688px;}
.wsbf{word-spacing:4355.031873px;}
.wsc6{word-spacing:4360.126433px;}
._3e{margin-left:-26283.008270px;}
._38{margin-left:-25748.582836px;}
._4e{margin-left:-25189.316483px;}
._3b{margin-left:-24763.919449px;}
._48{margin-left:-24590.289330px;}
._4b{margin-left:-23745.850746px;}
._33{margin-left:-15712.049941px;}
._43{margin-left:-15002.200767px;}
._31{margin-left:-14234.283692px;}
._41{margin-left:-13596.835430px;}
._3f{margin-left:-13139.445901px;}
._39{margin-left:-12855.779956px;}
._4f{margin-left:-12595.778724px;}
._3c{margin-left:-12369.666426px;}
._49{margin-left:-12280.518004px;}
._4c{margin-left:-11864.196402px;}
._36{margin-left:-10573.323879px;}
._46{margin-left:-9982.307367px;}
._34{margin-left:-7822.886419px;}
._44{margin-left:-7470.392274px;}
._32{margin-left:-7072.805341px;}
._42{margin-left:-6758.317702px;}
._40{margin-left:-6541.395763px;}
._3a{margin-left:-6399.562790px;}
._50{margin-left:-6272.716903px;}
._3d{margin-left:-6157.516703px;}
._4a{margin-left:-6116.073326px;}
._4d{margin-left:-5908.441759px;}
._35{margin-left:-5799.743481px;}
._45{margin-left:-5515.726587px;}
._37{margin-left:-5253.693058px;}
._47{margin-left:-4960.499203px;}
._51{margin-left:-1655.196427px;}
._52{margin-left:-1432.373069px;}
._25{margin-left:-803.013224px;}
._1d{margin-left:-410.660201px;}
._26{margin-left:-302.108289px;}
._29{margin-left:-241.213963px;}
._27{margin-left:-180.319638px;}
._28{margin-left:-156.747641px;}
._30{margin-left:-15.555466px;}
._1{margin-left:-12.218185px;}
._3{margin-left:-9.038110px;}
._5f{margin-left:-7.902269px;}
._c{margin-left:-6.808022px;}
._4{margin-left:-4.832755px;}
._2{margin-left:-2.845331px;}
._0{margin-left:-1.010678px;}
._1a{width:1.058468px;}
._17{width:2.090218px;}
._18{width:3.869885px;}
._21{width:5.080880px;}
._1b{width:6.435266px;}
._1e{width:10.997818px;}
._56{width:12.409498px;}
._1f{width:14.221373px;}
._2c{width:16.283708px;}
._15{width:18.148720px;}
._20{width:19.517366px;}
._22{width:20.730317px;}
._8{width:21.734554px;}
._12{width:22.738064px;}
._5{width:23.886490px;}
._b{width:25.536307px;}
._16{width:26.540544px;}
._6{width:27.616512px;}
._7{width:29.051136px;}
._f{width:30.485760px;}
._62{width:31.565076px;}
._14{width:32.565965px;}
._9{width:33.833209px;}
._a{width:35.435213px;}
._e{width:36.439450px;}
._10{width:38.023978px;}
._11{width:39.452160px;}
._19{width:41.128742px;}
._2f{width:42.140170px;}
._13{width:43.858138px;}
._d{width:45.190656px;}
._2b{width:47.199130px;}
._2d{width:49.924915px;}
._57{width:71.659469px;}
._60{width:96.060750px;}
._5e{width:99.346986px;}
._59{width:127.538074px;}
._5b{width:135.212586px;}
._5c{width:145.470874px;}
._58{width:153.145386px;}
._5d{width:163.403674px;}
._54{width:171.067357px;}
._5a{width:181.336474px;}
._1c{width:190.781525px;}
._53{width:215.074079px;}
._61{width:377.901781px;}
._24{width:497.375274px;}
._2e{width:503.912939px;}
._23{width:814.812092px;}
._55{width:996.354304px;}
._2a{width:1432.790560px;}
.fcb{color:rgb(148,0,209);}
.fca{color:rgb(236,0,140);}
.fc9{color:rgb(0,153,0);}
.fc7{color:rgb(255,0,255);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,200);}
.fc4{color:transparent;}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(0,0,255);}
.fc8{color:rgb(128,128,128);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:17.891252px;}
.fs17{font-size:17.902302px;}
.fs1e{font-size:24.292229px;}
.fs1f{font-size:24.306750px;}
.fs26{font-size:30.849479px;}
.fs20{font-size:32.135210px;}
.fs2f{font-size:34.555800px;}
.fs31{font-size:35.069400px;}
.fs2e{font-size:35.331000px;}
.fs30{font-size:35.508600px;}
.fs33{font-size:35.865600px;}
.fs1a{font-size:36.473171px;}
.fs2d{font-size:36.704400px;}
.fsc{font-size:37.017925px;}
.fs1b{font-size:37.027853px;}
.fs14{font-size:39.286662px;}
.fsb{font-size:39.867653px;}
.fse{font-size:41.131028px;}
.fs9{font-size:42.120000px;}
.fs6{font-size:42.249600px;}
.fs13{font-size:43.215328px;}
.fs11{font-size:47.143994px;}
.fs2a{font-size:47.275693px;}
.fs2b{font-size:47.305363px;}
.fs2{font-size:47.820600px;}
.fsa{font-size:47.841183px;}
.fsd{font-size:49.357234px;}
.fs1c{font-size:52.059865px;}
.fs2c{font-size:52.717431px;}
.fs25{font-size:57.600000px;}
.fs18{font-size:58.904280px;}
.fs19{font-size:58.982819px;}
.fs32{font-size:59.775600px;}
.fs29{font-size:60.497073px;}
.fs12{font-size:62.858659px;}
.fs5{font-size:64.800000px;}
.fs4{font-size:64.929600px;}
.fs10{font-size:65.454600px;}
.fsf{font-size:65.809645px;}
.fs1d{font-size:71.230176px;}
.fs0{font-size:71.731200px;}
.fs23{font-size:73.767627px;}
.fs24{font-size:73.812536px;}
.fs8{font-size:75.816000px;}
.fs21{font-size:76.086493px;}
.fs22{font-size:77.822646px;}
.fs27{font-size:78.948659px;}
.fs28{font-size:78.995635px;}
.fs15{font-size:84.283800px;}
.fs3{font-size:96.239400px;}
.fs7{font-size:129.600000px;}
.fs1{font-size:167.372400px;}
.y2b3{bottom:-718.452943px;}
.y2b2{bottom:-705.369921px;}
.y2b1{bottom:-691.867379px;}
.y2b0{bottom:-678.358844px;}
.y2af{bottom:-664.856303px;}
.y2ae{bottom:-651.353761px;}
.y2ad{bottom:-637.845226px;}
.y2ac{bottom:-624.342684px;}
.y2ab{bottom:-611.259662px;}
.y2aa{bottom:-597.757120px;}
.y2a9{bottom:-584.248585px;}
.y2a8{bottom:-570.746044px;}
.y2a7{bottom:-557.243502px;}
.y2a6{bottom:-543.734967px;}
.y3aa{bottom:-540.358766px;}
.y2a5{bottom:-530.232425px;}
.y3a9{bottom:-526.890122px;}
.y2a4{bottom:-517.149403px;}
.y3a8{bottom:-513.435137px;}
.y2a3{bottom:-503.646861px;}
.y3a7{bottom:-499.966493px;}
.y2a2{bottom:-490.138326px;}
.y3a6{bottom:-486.497848px;}
.y2a1{bottom:-476.635785px;}
.y3a5{bottom:-473.029204px;}
.y2a0{bottom:-463.115264px;}
.y3a4{bottom:-459.560559px;}
.y29f{bottom:-449.612722px;}
.y3a3{bottom:-446.091915px;}
.y29e{bottom:-436.529700px;}
.y3a2{bottom:-432.623270px;}
.y29d{bottom:-423.021165px;}
.y3a1{bottom:-419.154626px;}
.y29c{bottom:-409.518623px;}
.y3a0{bottom:-405.685981px;}
.y29b{bottom:-396.016081px;}
.y39f{bottom:-392.217337px;}
.y29a{bottom:-382.507546px;}
.y39e{bottom:-378.748692px;}
.y299{bottom:-369.005005px;}
.y39d{bottom:-365.280048px;}
.y298{bottom:-355.502463px;}
.y39c{bottom:-351.811403px;}
.y297{bottom:-342.419441px;}
.y39b{bottom:-338.363249px;}
.y296{bottom:-328.910906px;}
.y39a{bottom:-324.894604px;}
.y295{bottom:-315.408364px;}
.y399{bottom:-311.425960px;}
.y294{bottom:-301.905822px;}
.y398{bottom:-297.957315px;}
.y293{bottom:-291.771424px;}
.y397{bottom:-284.488671px;}
.y292{bottom:-281.637027px;}
.y396{bottom:-271.020026px;}
.y395{bottom:-257.551382px;}
.y394{bottom:-244.082737px;}
.y393{bottom:-230.614093px;}
.y392{bottom:-217.145448px;}
.y391{bottom:-203.676804px;}
.y390{bottom:-190.208159px;}
.y38f{bottom:-176.739515px;}
.y26d{bottom:-174.869303px;}
.y26b{bottom:-173.179191px;}
.y38e{bottom:-163.291360px;}
.y38d{bottom:-149.822716px;}
.y291{bottom:-138.568822px;}
.y38c{bottom:-135.869145px;}
.y38b{bottom:-122.402550px;}
.y38a{bottom:-112.296969px;}
.y389{bottom:-102.191387px;}
.y26e{bottom:-101.848901px;}
.y26c{bottom:-101.848856px;}
.y227{bottom:-76.526041px;}
.y2b4{bottom:-66.830345px;}
.y111{bottom:-60.748717px;}
.y102{bottom:-56.285802px;}
.y110{bottom:-51.833625px;}
.y109{bottom:-47.158746px;}
.yf8{bottom:-44.190784px;}
.y101{bottom:-41.222821px;}
.y120{bottom:-39.314679px;}
.y11f{bottom:-35.063728px;}
.y103{bottom:-34.215872px;}
.y108{bottom:-32.095765px;}
.yf7{bottom:-28.915839px;}
.y11d{bottom:-26.996818px;}
.y10f{bottom:-19.788923px;}
.y271{bottom:-17.448978px;}
.yf9{bottom:-16.597652px;}
.yfb{bottom:-10.874158px;}
.y116{bottom:-8.742846px;}
.yde{bottom:-7.683027px;}
.yfa{bottom:-4.715064px;}
.yf3{bottom:-3.230850px;}
.y2e0{bottom:-2.584621px;}
.y0{bottom:0.000000px;}
.yfc{bottom:1.444029px;}
.y45b{bottom:1.512140px;}
.y497{bottom:1.534615px;}
.y44e{bottom:1.546062px;}
.y466{bottom:1.553834px;}
.y444{bottom:1.606162px;}
.y229{bottom:4.079861px;}
.y364{bottom:4.579077px;}
.y1e6{bottom:5.496541px;}
.y2fa{bottom:5.590687px;}
.y3bd{bottom:5.645186px;}
.yf2{bottom:5.896206px;}
.y362{bottom:6.020837px;}
.y409{bottom:6.031157px;}
.y31c{bottom:7.084800px;}
.y1cf{bottom:7.229271px;}
.y1d7{bottom:7.229273px;}
.ydd{bottom:7.379954px;}
.y3ef{bottom:9.401490px;}
.y403{bottom:9.401494px;}
.y3f7{bottom:9.401496px;}
.y79{bottom:9.428400px;}
.y1a7{bottom:9.828675px;}
.y121{bottom:10.147157px;}
.yc2{bottom:10.332497px;}
.y2c7{bottom:11.034435px;}
.y45a{bottom:13.323205px;}
.y496{bottom:13.521226px;}
.y44d{bottom:13.622088px;}
.y465{bottom:13.690563px;}
.y443{bottom:14.151611px;}
.y1de{bottom:14.177440px;}
.y3e3{bottom:14.891009px;}
.y3c6{bottom:15.310057px;}
.yf1{bottom:16.507010px;}
.y105{bottom:17.354866px;}
.y2f6{bottom:17.873022px;}
.y228{bottom:18.849364px;}
.y11b{bottom:19.263008px;}
.y123{bottom:19.486177px;}
.y147{bottom:20.885417px;}
.y146{bottom:21.580628px;}
.y1df{bottom:21.975651px;}
.y405{bottom:22.888819px;}
.y45c{bottom:23.006112px;}
.y1f0{bottom:24.143877px;}
.y104{bottom:24.150785px;}
.y31b{bottom:24.364800px;}
.y100{bottom:26.055659px;}
.ybe{bottom:27.029328px;}
.y44f{bottom:27.050501px;}
.y485{bottom:27.905636px;}
.y1ce{bottom:28.492640px;}
.y1a8{bottom:28.492641px;}
.y1d6{bottom:28.492643px;}
.yee{bottom:28.600161px;}
.y145{bottom:30.655126px;}
.y431{bottom:30.890505px;}
.y77{bottom:31.039200px;}
.y1ee{bottom:31.092045px;}
.y1f3{bottom:31.092046px;}
.y19e{bottom:31.243176px;}
.yf0{bottom:31.793626px;}
.ye2{bottom:33.278308px;}
.y11a{bottom:33.703169px;}
.y10a{bottom:34.762989px;}
.y47d{bottom:35.860623px;}
.y17c{bottom:36.207768px;}
.y10e{bottom:36.243002px;}
.y445{bottom:36.257431px;}
.yed{bottom:36.457767px;}
.y1d0{bottom:36.722032px;}
.yff{bottom:37.517587px;}
.y2eb{bottom:37.662305px;}
.y1d1{bottom:38.471394px;}
.y404{bottom:38.501316px;}
.y430{bottom:39.676743px;}
.yae{bottom:40.303674px;}
.yda{bottom:40.921149px;}
.y388{bottom:41.121961px;}
.yb2{bottom:41.331950px;}
.y415{bottom:42.709752px;}
.y467{bottom:42.868887px;}
.yef{bottom:43.465650px;}
.y78{bottom:44.452800px;}
.y10d{bottom:45.370525px;}
.y1dd{bottom:45.401087px;}
.y8f{bottom:45.915831px;}
.y433{bottom:46.266422px;}
.y2be{bottom:46.277564px;}
.y435{bottom:47.364702px;}
.y498{bottom:48.497530px;}
.y1c6{bottom:49.737532px;}
.yea{bottom:49.833907px;}
.y10c{bottom:50.468865px;}
.y3ee{bottom:51.144565px;}
.y3c5{bottom:51.144568px;}
.y402{bottom:51.144569px;}
.y3f6{bottom:51.144571px;}
.yec{bottom:51.528685px;}
.yd9{bottom:53.013366px;}
.y129{bottom:53.652993px;}
.y450{bottom:55.235399px;}
.y48f{bottom:55.268568px;}
.y118{bottom:55.557867px;}
.y412{bottom:55.778030px;}
.y418{bottom:55.778032px;}
.y486{bottom:55.982288px;}
.y2f5{bottom:56.763854px;}
.y365{bottom:57.493368px;}
.y2bc{bottom:57.676499px;}
.y1c8{bottom:57.985403px;}
.y128{bottom:58.961430px;}
.y144{bottom:59.200133px;}
.yeb{bottom:60.656207px;}
.y10b{bottom:61.716027px;}
.y45d{bottom:62.016041px;}
.y125{bottom:62.140889px;}
.y1f1{bottom:62.315690px;}
.ydc{bottom:62.565751px;}
.y305{bottom:63.573382px;}
.ye9{bottom:65.110252px;}
.y17f{bottom:66.576023px;}
.y124{bottom:66.594933px;}
.y1c7{bottom:66.664455px;}
.y1dc{bottom:66.664456px;}
.y2bb{bottom:67.810897px;}
.y3f0{bottom:68.002230px;}
.yaf{bottom:68.067118px;}
.y117{bottom:68.088952px;}
.y143{bottom:68.276162px;}
.y152{bottom:68.608671px;}
.y2bd{bottom:69.914504px;}
.y115{bottom:70.843550px;}
.y3f1{bottom:70.953519px;}
.yd8{bottom:71.268412px;}
.y119{bottom:73.177955px;}
.ydb{bottom:74.023009px;}
.ye3{bottom:74.662636px;}
.y1c9{bottom:75.331188px;}
.y12b{bottom:75.722456px;}
.y47e{bottom:76.074734px;}
.y1d3{bottom:76.193548px;}
.y2c6{bottom:76.543450px;}
.y11e{bottom:76.992372px;}
.y363{bottom:77.689464px;}
.y19f{bottom:79.746296px;}
.y107{bottom:81.030893px;}
.yb0{bottom:81.434702px;}
.y499{bottom:81.504657px;}
.yb4{bottom:82.462978px;}
.y434{bottom:82.509656px;}
.y166{bottom:82.763215px;}
.y451{bottom:83.420297px;}
.y113{bottom:84.000256px;}
.y303{bottom:84.040712px;}
.y487{bottom:84.058939px;}
.y401{bottom:84.440854px;}
.y1d2{bottom:85.741122px;}
.yd7{bottom:86.329992px;}
.y1f4{bottom:87.478165px;}
.y8c{bottom:87.776866px;}
.y106{bottom:87.828680px;}
.y1cd{bottom:88.777866px;}
.y446{bottom:88.839945px;}
.y1fb{bottom:90.077567px;}
.y22a{bottom:90.183284px;}
.y112{bottom:90.793374px;}
.y26{bottom:91.231500px;}
.y3e6{bottom:93.300704px;}
.y165{bottom:94.057313px;}
.y468{bottom:95.257235px;}
.yfe{bottom:95.882376px;}
.y1ef{bottom:96.588397px;}
.y26f{bottom:98.190118px;}
.y1ac{bottom:98.325439px;}
.y12a{bottom:99.920896px;}
.y1fc{bottom:100.487502px;}
.y45e{bottom:101.025969px;}
.y490{bottom:101.074773px;}
.y114{bottom:101.615674px;}
.y14d{bottom:101.724399px;}
.y2ea{bottom:103.142261px;}
.y31e{bottom:103.185631px;}
.y1cc{bottom:104.392768px;}
.yf5{bottom:104.585037px;}
.y164{bottom:105.388722px;}
.yc1{bottom:105.602652px;}
.y126{bottom:106.069719px;}
.yb3{bottom:107.141594px;}
.y135{bottom:107.287620px;}
.yfd{bottom:107.353641px;}
.ye7{bottom:107.563738px;}
.y1a4{bottom:109.172715px;}
.y1bb{bottom:109.172716px;}
.y3e8{bottom:109.314289px;}
.y8d{bottom:109.704075px;}
.ye1{bottom:110.533101px;}
.y142{bottom:110.800428px;}
.y14e{bottom:111.495639px;}
.ybb{bottom:111.495651px;}
.y452{bottom:111.605195px;}
.y488{bottom:112.135591px;}
.y3ab{bottom:113.273457px;}
.ydf{bottom:113.712560px;}
.y462{bottom:114.292067px;}
.y49a{bottom:114.511783px;}
.ye6{bottom:115.197242px;}
.ye0{bottom:115.832200px;}
.y47f{bottom:116.288844px;}
.y134{bottom:116.362118px;}
.y122{bottom:116.481164px;}
.y163{bottom:116.720131px;}
.y230{bottom:116.768860px;}
.y416{bottom:117.749108px;}
.yf6{bottom:118.175942px;}
.y49f{bottom:119.175794px;}
.y458{bottom:119.574844px;}
.yf4{bottom:119.660624px;}
.y181{bottom:119.720468px;}
.y141{bottom:119.839705px;}
.y46c{bottom:120.668321px;}
.ybc{bottom:121.317316px;}
.y2ba{bottom:121.407540px;}
.y1f7{bottom:121.750871px;}
.ye8{bottom:122.840083px;}
.y44a{bottom:124.201496px;}
.yad{bottom:124.622281px;}
.yb1{bottom:125.650557px;}
.y1a3{bottom:126.081159px;}
.y1b8{bottom:126.081161px;}
.y3e7{bottom:126.189913px;}
.y400{bottom:126.189915px;}
.ye5{bottom:126.243645px;}
.y162{bottom:128.014229px;}
.y2ec{bottom:129.053339px;}
.y1e8{bottom:129.980264px;}
.y273{bottom:130.271405px;}
.y1ba{bottom:130.417606px;}
.y1ea{bottom:133.017010px;}
.y2ed{bottom:133.819040px;}
.y11c{bottom:134.722203px;}
.y67{bottom:136.063500px;}
.y1b7{bottom:136.928436px;}
.y1ff{bottom:137.796954px;}
.yab{bottom:138.535500px;}
.yc0{bottom:138.996314px;}
.yb5{bottom:139.018141px;}
.y47b{bottom:139.137000px;}
.y180{bottom:139.242918px;}
.y161{bottom:139.345638px;}
.y56b{bottom:139.491000px;}
.y1a6{bottom:139.527837px;}
.y453{bottom:139.790094px;}
.y45f{bottom:140.035898px;}
.y489{bottom:140.212243px;}
.y149{bottom:140.735857px;}
.y447{bottom:141.422458px;}
.y8a{bottom:141.466500px;}
.yd5{bottom:142.435500px;}
.y127{bottom:142.579810px;}
.y3e9{bottom:142.622544px;}
.y2e2{bottom:142.701454px;}
.ye4{bottom:143.639630px;}
.y3f3{bottom:144.729750px;}
.y22b{bottom:145.044471px;}
.y1fe{bottom:145.163985px;}
.y491{bottom:146.880979px;}
.y1b9{bottom:146.894870px;}
.y42f{bottom:147.308165px;}
.y1e7{bottom:147.344528px;}
.y49b{bottom:147.518910px;}
.y469{bottom:147.645583px;}
.y4e1{bottom:148.155000px;}
.y14c{bottom:149.115143px;}
.y522{bottom:149.550000px;}
.y148{bottom:150.505566px;}
.y160{bottom:150.677046px;}
.y1e5{bottom:151.243634px;}
.y1a2{bottom:151.674815px;}
.y56a{bottom:152.977500px;}
.y22f{bottom:153.488821px;}
.y204{bottom:153.856500px;}
.y4b2{bottom:153.907500px;}
.y1a5{bottom:155.573920px;}
.y225{bottom:155.755500px;}
.y432{bottom:156.094404px;}
.y25{bottom:156.286500px;}
.y1ad{bottom:156.442441px;}
.y480{bottom:156.502954px;}
.y66{bottom:156.648000px;}
.y22d{bottom:158.547007px;}
.yaa{bottom:159.120000px;}
.y47a{bottom:159.723000px;}
.y1f9{bottom:160.341546px;}
.y15f{bottom:162.003791px;}
.y89{bottom:162.052500px;}
.y368{bottom:162.339761px;}
.y521{bottom:163.036500px;}
.y3f2{bottom:163.694623px;}
.y42e{bottom:163.782363px;}
.y72{bottom:164.106000px;}
.y4e0{bottom:165.190500px;}
.y8e{bottom:165.518788px;}
.y1d5{bottom:165.558834px;}
.y1f8{bottom:166.421195px;}
.y569{bottom:166.464000px;}
.y419{bottom:166.657887px;}
.y2e4{bottom:167.934484px;}
.y454{bottom:167.974992px;}
.y48a{bottom:168.288895px;}
.y3ed{bottom:168.759106px;}
.y1e3{bottom:170.757643px;}
.y421{bottom:171.710394px;}
.y233{bottom:172.049543px;}
.y1f6{bottom:172.925864px;}
.y1a1{bottom:172.925865px;}
.y15e{bottom:173.305662px;}
.yd4{bottom:173.820000px;}
.yb6{bottom:173.979515px;}
.y203{bottom:174.442500px;}
.y4b1{bottom:174.492000px;}
.y1d4{bottom:175.106407px;}
.y224{bottom:176.341500px;}
.y520{bottom:176.524500px;}
.y24{bottom:176.871000px;}
.y65{bottom:177.234000px;}
.y1c5{bottom:177.268473px;}
.y460{bottom:179.045826px;}
.y201{bottom:179.436693px;}
.y1b6{bottom:179.436695px;}
.y30b{bottom:179.519400px;}
.ya9{bottom:179.706000px;}
.y568{bottom:179.950500px;}
.y168{bottom:180.457500px;}
.y49c{bottom:180.526036px;}
.y306{bottom:181.592286px;}
.y1c1{bottom:181.604918px;}
.y140{bottom:181.872763px;}
.y4df{bottom:182.227500px;}
.y1e2{bottom:183.335800px;}
.y2f4{bottom:183.636113px;}
.y320{bottom:183.977022px;}
.y413{bottom:184.353644px;}
.y15d{bottom:184.638625px;}
.y137{bottom:185.348819px;}
.y235{bottom:185.558073px;}
.y1cb{bottom:186.372544px;}
.y3cb{bottom:188.568060px;}
.y1c3{bottom:189.852789px;}
.y51f{bottom:190.011000px;}
.y13f{bottom:190.938073px;}
.y479{bottom:191.107500px;}
.y14b{bottom:191.642472px;}
.y1b5{bottom:192.014853px;}
.y492{bottom:192.687184px;}
.y422{bottom:192.794448px;}
.y567{bottom:193.438500px;}
.y448{bottom:194.004972px;}
.y1e4{bottom:194.183075px;}
.y12d{bottom:194.285950px;}
.yd3{bottom:194.406000px;}
.y136{bottom:194.414129px;}
.y2e3{bottom:194.533295px;}
.y202{bottom:195.027000px;}
.y4b0{bottom:195.078000px;}
.y15c{bottom:195.971589px;}
.y455{bottom:196.159890px;}
.y48b{bottom:196.365547px;}
.y481{bottom:196.717065px;}
.y232{bottom:197.376577px;}
.y23{bottom:197.457000px;}
.y42c{bottom:197.818500px;}
.y1c4{bottom:198.519523px;}
.y31f{bottom:198.886774px;}
.y4de{bottom:199.263000px;}
.y1e1{bottom:199.381883px;}
.y3ec{bottom:199.948181px;}
.y46a{bottom:200.033931px;}
.ya8{bottom:200.290500px;}
.y1c2{bottom:200.681585px;}
.y167{bottom:201.042000px;}
.y1ca{bottom:202.430946px;}
.y1c0{bottom:202.862128px;}
.y14a{bottom:203.464126px;}
.y51e{bottom:203.497500px;}
.yb9{bottom:203.819305px;}
.y223{bottom:204.397500px;}
.y30a{bottom:206.137583px;}
.y17e{bottom:206.486910px;}
.y1ab{bottom:206.761232px;}
.y566{bottom:206.925000px;}
.y15b{bottom:207.257914px;}
.y88{bottom:208.381500px;}
.y64{bottom:208.618500px;}
.y1e0{bottom:208.929456px;}
.y3ca{bottom:209.227080px;}
.y3c2{bottom:209.227082px;}
.y3da{bottom:209.227084px;}
.y1e9{bottom:209.360638px;}
.y184{bottom:210.519000px;}
.y274{bottom:210.879122px;}
.y1a9{bottom:211.097678px;}
.y478{bottom:211.693500px;}
.y237{bottom:212.143632px;}
.y14f{bottom:213.233835px;}
.y200{bottom:213.265901px;}
.y49d{bottom:213.533163px;}
.y1aa{bottom:214.128263px;}
.yd2{bottom:214.990500px;}
.y1f5{bottom:215.427965px;}
.y4af{bottom:215.662500px;}
.y4dd{bottom:216.298500px;}
.y51d{bottom:216.984000px;}
.y22{bottom:218.041500px;}
.y461{bottom:218.055755px;}
.y42b{bottom:218.404500px;}
.y15a{bottom:218.590877px;}
.y565{bottom:220.411500px;}
.y2e5{bottom:220.444373px;}
.ya7{bottom:220.876500px;}
.y133{bottom:221.579432px;}
.y1fa{bottom:221.944953px;}
.y17d{bottom:222.755618px;}
.y19d{bottom:223.260750px;}
.y2ef{bottom:223.883039px;}
.y456{bottom:224.344788px;}
.y19c{bottom:224.380221px;}
.y48c{bottom:224.442199px;}
.y1a0{bottom:224.527251px;}
.y222{bottom:224.983500px;}
.y71{bottom:224.991000px;}
.y74{bottom:225.436500px;}
.y3b5{bottom:226.302158px;}
.y73{bottom:226.800000px;}
.y87{bottom:228.967500px;}
.y63{bottom:229.204500px;}
.y159{bottom:229.923840px;}
.y139{bottom:229.955656px;}
.y1fd{bottom:230.192824px;}
.y51c{bottom:230.472000px;}
.y183{bottom:231.105000px;}
.y13e{bottom:231.349141px;}
.y1ed{bottom:231.923708px;}
.y4a1{bottom:232.214114px;}
.y477{bottom:232.278000px;}
.y4dc{bottom:233.335500px;}
.y564{bottom:233.898000px;}
.y231{bottom:234.096539px;}
.y41d{bottom:234.525550px;}
.y46e{bottom:235.122303px;}
.yd1{bottom:235.576500px;}
.y150{bottom:236.188500px;}
.y4ae{bottom:236.248500px;}
.y482{bottom:236.931175px;}
.y3b3{bottom:237.851603px;}
.y22c{bottom:237.890175px;}
.yba{bottom:238.195134px;}
.y493{bottom:238.493389px;}
.y21{bottom:238.627500px;}
.y42a{bottom:238.989000px;}
.y138{bottom:239.036279px;}
.y239{bottom:239.154704px;}
.y13d{bottom:240.414451px;}
.y158{bottom:241.210166px;}
.ya6{bottom:241.461000px;}
.y441{bottom:242.220000px;}
.y3c1{bottom:242.541323px;}
.y3d7{bottom:242.541327px;}
.y4f{bottom:242.668500px;}
.y51b{bottom:243.958500px;}
.y4a0{bottom:245.077461px;}
.y270{bottom:245.914989px;}
.y6f{bottom:246.375000px;}
.y49e{bottom:246.540290px;}
.y449{bottom:246.587486px;}
.y563{bottom:247.386000px;}
.y3b2{bottom:247.959916px;}
.y46d{bottom:248.146747px;}
.y86{bottom:249.552000px;}
.y40b{bottom:249.695055px;}
.y62{bottom:249.789000px;}
.y3b4{bottom:249.879116px;}
.y4db{bottom:250.371000px;}
.y3d9{bottom:250.958186px;}
.y22e{bottom:251.392712px;}
.y46b{bottom:252.422279px;}
.y48d{bottom:252.518850px;}
.y457{bottom:252.529686px;}
.y157{bottom:252.543129px;}
.y23b{bottom:252.657241px;}
.y476{bottom:252.864000px;}
.y221{bottom:253.041000px;}
.y2ee{bottom:253.203724px;}
.y40d{bottom:255.609609px;}
.yd0{bottom:256.161000px;}
.y4ad{bottom:256.833000px;}
.y51a{bottom:257.445000px;}
.y308{bottom:257.969425px;}
.ybf{bottom:258.820632px;}
.y131{bottom:259.097369px;}
.y151{bottom:259.103583px;}
.y20{bottom:259.212000px;}
.y272{bottom:259.417525px;}
.y429{bottom:259.575000px;}
.y562{bottom:260.872500px;}
.y2e9{bottom:262.057079px;}
.y4e{bottom:263.254500px;}
.y156{bottom:263.876092px;}
.y3d6{bottom:264.026469px;}
.y234{bottom:264.895248px;}
.y425{bottom:265.714625px;}
.y23d{bottom:266.159778px;}
.y310{bottom:266.173792px;}
.y182{bottom:266.250000px;}
.y4da{bottom:267.406500px;}
.y3c4{bottom:268.677887px;}
.y321{bottom:270.075266px;}
.y13c{bottom:270.351412px;}
.y61{bottom:270.375000px;}
.y519{bottom:270.931500px;}
.y13b{bottom:271.790836px;}
.y275{bottom:272.920061px;}
.y475{bottom:273.448500px;}
.y220{bottom:273.625500px;}
.y561{bottom:274.359000px;}
.y155{bottom:275.209055px;}
.ybd{bottom:276.499629px;}
.ycf{bottom:276.747000px;}
.y440{bottom:277.107000px;}
.y236{bottom:277.978265px;}
.y17b{bottom:278.069225px;}
.y366{bottom:278.257535px;}
.y23f{bottom:279.242796px;}
.y132{bottom:279.432034px;}
.y424{bottom:280.058007px;}
.y13a{bottom:280.825520px;}
.y85{bottom:280.936500px;}
.y3d8{bottom:283.009302px;}
.y4d{bottom:283.839000px;}
.y40a{bottom:283.847391px;}
.y518{bottom:284.419500px;}
.y4d9{bottom:284.443500px;}
.y4ac{bottom:285.721500px;}
.y304{bottom:285.953388px;}
.y276{bottom:286.003078px;}
.y154{bottom:286.510927px;}
.ya5{bottom:287.790000px;}
.y560{bottom:287.845500px;}
.y173{bottom:288.731998px;}
.y1f{bottom:290.598000px;}
.y60{bottom:290.959500px;}
.y408{bottom:291.007110px;}
.y2cb{bottom:292.084869px;}
.y3c0{bottom:292.270239px;}
.y241{bottom:292.763313px;}
.y474{bottom:294.034500px;}
.y1b1{bottom:296.108040px;}
.y327{bottom:297.012545px;}
.yce{bottom:297.331500px;}
.y153{bottom:297.843890px;}
.y517{bottom:297.906000px;}
.y311{bottom:298.894397px;}
.y3c3{bottom:299.441929px;}
.y1bd{bottom:300.456807px;}
.y3cc{bottom:301.130090px;}
.y55f{bottom:301.333500px;}
.y4d8{bottom:301.479000px;}
.y84{bottom:301.522500px;}
.y21f{bottom:301.683000px;}
.y3b1{bottom:301.814002px;}
.y4c{bottom:304.425000px;}
.y1b4{bottom:304.793251px;}
.y238{bottom:304.989336px;}
.y243{bottom:306.271843px;}
.y1b0{bottom:306.955315px;}
.y1bf{bottom:306.955316px;}
.y41f{bottom:308.720827px;}
.y428{bottom:309.826500px;}
.y36a{bottom:310.481186px;}
.y2e8{bottom:310.508372px;}
.y1e{bottom:311.182500px;}
.y516{bottom:311.392500px;}
.y277{bottom:313.014150px;}
.y1ec{bottom:313.034964px;}
.y473{bottom:314.619000px;}
.y55e{bottom:314.820000px;}
.y1b2{bottom:317.371410px;}
.ycd{bottom:317.916000px;}
.y4d7{bottom:318.516000px;}
.y3f5{bottom:319.262856px;}
.y1db{bottom:319.539632px;}
.y1be{bottom:319.539634px;}
.y245{bottom:319.774381px;}
.y1f2{bottom:319.970814px;}
.y41e{bottom:321.370062px;}
.y43f{bottom:321.507000px;}
.y1bc{bottom:321.701697px;}
.y83{bottom:322.107000px;}
.y21e{bottom:322.269000px;}
.y1af{bottom:322.570217px;}
.ya4{bottom:323.320500px;}
.y2c3{bottom:324.815161px;}
.y515{bottom:324.879000px;}
.y4b{bottom:325.009500px;}
.y3e0{bottom:325.578496px;}
.y322{bottom:325.869063px;}
.y1b3{bottom:326.050460px;}
.y1d8{bottom:326.050461px;}
.y1da{bottom:326.918982px;}
.y55d{bottom:328.306500px;}
.y1d{bottom:331.768500px;}
.y23a{bottom:332.012394px;}
.y17a{bottom:332.298251px;}
.y247{bottom:333.276918px;}
.y41c{bottom:333.594264px;}
.y3bf{bottom:333.594266px;}
.y326{bottom:334.037657px;}
.y472{bottom:335.205000px;}
.y4d6{bottom:335.551500px;}
.y5f{bottom:335.845500px;}
.y3f4{bottom:337.808682px;}
.y1eb{bottom:338.185120px;}
.y514{bottom:338.367000px;}
.y76{bottom:338.445000px;}
.y4ab{bottom:338.803500px;}
.y3bc{bottom:339.180343px;}
.y324{bottom:339.337712px;}
.y278{bottom:340.025222px;}
.y55c{bottom:341.793000px;}
.y3e2{bottom:342.017113px;}
.y3e5{bottom:342.017116px;}
.y43e{bottom:342.093000px;}
.y1d9{bottom:342.527724px;}
.y82{bottom:342.693000px;}
.y406{bottom:344.136294px;}
.y23c{bottom:345.520924px;}
.y4a{bottom:345.595500px;}
.y427{bottom:346.243499px;}
.y3d5{bottom:346.243504px;}
.y1ae{bottom:346.432991px;}
.y70{bottom:346.653000px;}
.y249{bottom:346.785449px;}
.y179{bottom:348.566959px;}
.ycc{bottom:349.302000px;}
.y2b9{bottom:350.153675px;}
.y513{bottom:351.853500px;}
.y1c{bottom:352.353000px;}
.y4d5{bottom:352.587000px;}
.y32a{bottom:352.806362px;}
.y279{bottom:353.527758px;}
.y55b{bottom:355.281000px;}
.y471{bottom:355.789500px;}
.y21d{bottom:357.798000px;}
.y23e{bottom:358.603942px;}
.ya3{bottom:358.849500px;}
.y410{bottom:358.892738px;}
.y4aa{bottom:359.389500px;}
.y3eb{bottom:359.730830px;}
.y24b{bottom:359.868466px;}
.y2b8{bottom:359.868553px;}
.y43d{bottom:362.677500px;}
.y3e1{bottom:363.101167px;}
.y81{bottom:363.277500px;}
.y30c{bottom:364.374354px;}
.y512{bottom:365.340000px;}
.y3be{bottom:365.929569px;}
.y6c{bottom:366.120000px;}
.y49{bottom:366.180000px;}
.y32c{bottom:366.275011px;}
.y27a{bottom:366.610776px;}
.y3df{bottom:366.890551px;}
.y31a{bottom:367.980000px;}
.y55a{bottom:368.767500px;}
.y2b7{bottom:369.577438px;}
.y4d4{bottom:369.624000px;}
.ycb{bottom:369.886500px;}
.y5e{bottom:370.894500px;}
.y3d4{bottom:371.116941px;}
.y240{bottom:371.686960px;}
.y1b{bottom:372.939000px;}
.y24d{bottom:372.951484px;}
.y407{bottom:375.325368px;}
.y2c2{bottom:377.344422px;}
.y329{bottom:377.803922px;}
.y21c{bottom:378.382500px;}
.y511{bottom:378.826500px;}
.y27b{bottom:379.693794px;}
.y2b6{bottom:379.693857px;}
.y4a9{bottom:379.974000px;}
.y559{bottom:382.254000px;}
.y3e4{bottom:383.766177px;}
.y80{bottom:383.863500px;}
.y242{bottom:385.189497px;}
.y319{bottom:385.260000px;}
.y69{bottom:385.587000px;}
.y24f{bottom:386.454022px;}
.y6a{bottom:386.505000px;}
.y4d3{bottom:386.659500px;}
.y48{bottom:386.766000px;}
.y2fc{bottom:388.270663px;}
.y2b5{bottom:389.828254px;}
.y2d8{bottom:390.314491px;}
.yca{bottom:390.472500px;}
.y3ea{bottom:390.919905px;}
.y36b{bottom:391.272563px;}
.y510{bottom:392.314500px;}
.y32e{bottom:392.727378px;}
.y27c{bottom:393.196331px;}
.y1a{bottom:393.523500px;}
.y43c{bottom:394.063500px;}
.ya2{bottom:394.378500px;}
.y558{bottom:395.740500px;}
.y2fe{bottom:397.811752px;}
.y244{bottom:398.692035px;}
.y21b{bottom:398.968500px;}
.y470{bottom:399.601500px;}
.y251{bottom:399.956559px;}
.y3c9{bottom:400.198804px;}
.y4a8{bottom:400.560000px;}
.y6d{bottom:400.882500px;}
.y12f{bottom:402.766196px;}
.y4d2{bottom:403.695000px;}
.y7f{bottom:404.448000px;}
.y40c{bottom:404.832271px;}
.y50f{bottom:405.801000px;}
.y5d{bottom:405.942000px;}
.y27d{bottom:406.704862px;}
.y47{bottom:407.350500px;}
.y411{bottom:407.358525px;}
.y75{bottom:408.172500px;}
.y3c7{bottom:408.639609px;}
.y557{bottom:409.228500px;}
.y2d6{bottom:410.781820px;}
.yc9{bottom:411.057000px;}
.y246{bottom:412.200565px;}
.y426{bottom:412.848038px;}
.y253{bottom:413.465090px;}
.y314{bottom:413.503694px;}
.y19{bottom:414.109500px;}
.y328{bottom:414.364598px;}
.y3c8{bottom:414.530214px;}
.y43b{bottom:414.648000px;}
.y178{bottom:414.726371px;}
.y41a{bottom:416.637422px;}
.y323{bottom:418.209873px;}
.y2c5{bottom:418.957128px;}
.y12e{bottom:419.144858px;}
.y50e{bottom:419.287500px;}
.y21a{bottom:419.553000px;}
.y330{bottom:419.651012px;}
.y46f{bottom:420.187500px;}
.y27e{bottom:420.207399px;}
.y4d1{bottom:420.732000px;}
.y4a7{bottom:421.144500px;}
.y556{bottom:422.715000px;}
.y7e{bottom:425.034000px;}
.y248{bottom:425.703103px;}
.y367{bottom:426.392142px;}
.y255{bottom:426.967627px;}
.y46{bottom:427.936500px;}
.y420{bottom:429.705703px;}
.y177{bottom:430.995079px;}
.yc8{bottom:431.643000px;}
.y325{bottom:431.678522px;}
.y50d{bottom:432.774000px;}
.y332{bottom:433.119660px;}
.y27f{bottom:433.727916px;}
.y18{bottom:434.694000px;}
.y313{bottom:436.014851px;}
.y555{bottom:436.201500px;}
.y4d0{bottom:437.767500px;}
.y24a{bottom:439.205640px;}
.y369{bottom:439.860792px;}
.y219{bottom:440.139000px;}
.y257{bottom:440.470164px;}
.ya1{bottom:440.707500px;}
.y2d7{bottom:440.780552px;}
.y5c{bottom:440.989500px;}
.y4a6{bottom:441.729000px;}
.y2fb{bottom:442.824379px;}
.y32b{bottom:445.147172px;}
.y7d{bottom:445.618500px;}
.y423{bottom:446.156293px;}
.y50c{bottom:446.262000px;}
.y334{bottom:446.588309px;}
.y280{bottom:447.230454px;}
.y45{bottom:448.521000px;}
.y554{bottom:449.688000px;}
.y43a{bottom:450.628500px;}
.yc7{bottom:452.227500px;}
.y24c{bottom:452.288658px;}
.y36c{bottom:453.329441px;}
.y259{bottom:453.978694px;}
.y2f9{bottom:454.438353px;}
.y463{bottom:455.332500px;}
.y2c1{bottom:455.794447px;}
.y32d{bottom:458.615821px;}
.y50b{bottom:459.748500px;}
.y336{bottom:460.056957px;}
.y281{bottom:460.313471px;}
.y218{bottom:460.723500px;}
.ya0{bottom:461.292000px;}
.y4a5{bottom:462.315000px;}
.y553{bottom:463.176000px;}
.y17{bottom:463.582500px;}
.y4cf{bottom:464.551500px;}
.y24e{bottom:465.797189px;}
.y7c{bottom:466.204500px;}
.y36d{bottom:466.798090px;}
.y25b{bottom:467.061712px;}
.y2c4{bottom:467.379362px;}
.y3bb{bottom:468.936000px;}
.y44{bottom:469.107000px;}
.y2cc{bottom:470.130295px;}
.yc6{bottom:472.813500px;}
.y50a{bottom:473.235000px;}
.y338{bottom:473.525605px;}
.y282{bottom:473.822002px;}
.y439{bottom:475.696500px;}
.y5b{bottom:476.038500px;}
.y552{bottom:476.662500px;}
.y459{bottom:477.814083px;}
.y464{bottom:477.814998px;}
.y250{bottom:479.299726px;}
.y25d{bottom:480.564249px;}
.y30e{bottom:481.027478px;}
.y217{bottom:481.309500px;}
.y9f{bottom:481.878000px;}
.y4a4{bottom:482.899500px;}
.y6b{bottom:483.111000px;}
.y32f{bottom:485.553114px;}
.y509{bottom:486.721500px;}
.y7b{bottom:486.789000px;}
.y33a{bottom:486.994254px;}
.y283{bottom:487.324539px;}
.y3ba{bottom:489.520500px;}
.y43{bottom:489.691500px;}
.y551{bottom:490.149000px;}
.y252{bottom:492.802263px;}
.y36e{bottom:493.721724px;}
.y25f{bottom:494.066786px;}
.y176{bottom:494.985330px;}
.y2f1{bottom:497.407153px;}
.y318{bottom:499.812000px;}
.y508{bottom:500.209500px;}
.y33c{bottom:500.462902px;}
.y19b{bottom:500.796000px;}
.y30d{bottom:500.816760px;}
.y284{bottom:500.827077px;}
.y550{bottom:503.635500px;}
.yc5{bottom:504.198000px;}
.y254{bottom:506.310794px;}
.y261{bottom:507.575316px;}
.y2dd{bottom:507.626288px;}
.y3b9{bottom:510.106500px;}
.y42{bottom:510.277500px;}
.y9e{bottom:510.766500px;}
.y5a{bottom:511.086000px;}
.y438{bottom:511.153500px;}
.y175{bottom:511.254038px;}
.y331{bottom:512.490407px;}
.y507{bottom:513.696000px;}
.y33e{bottom:513.931550px;}
.y285{bottom:514.335607px;}
.y16{bottom:516.664500px;}
.y216{bottom:516.838500px;}
.y317{bottom:517.092000px;}
.y54f{bottom:517.123500px;}
.y4ce{bottom:517.633500px;}
.y256{bottom:519.813332px;}
.y2c0{bottom:520.596357px;}
.y36f{bottom:520.659017px;}
.y263{bottom:521.077853px;}
.y19a{bottom:521.380500px;}
.y333{bottom:525.959056px;}
.y2f0{bottom:526.727838px;}
.y506{bottom:527.182500px;}
.y340{bottom:527.400198px;}
.y286{bottom:527.838145px;}
.y54e{bottom:530.610000px;}
.y3b0{bottom:530.760457px;}
.y258{bottom:533.315868px;}
.y2df{bottom:533.566425px;}
.y370{bottom:534.127666px;}
.y265{bottom:534.580390px;}
.y4a3{bottom:536.896500px;}
.y2f7{bottom:536.976032px;}
.y215{bottom:537.423000px;}
.y4cd{bottom:538.219500px;}
.y335{bottom:539.427704px;}
.y437{bottom:540.042000px;}
.y2d5{bottom:540.375953px;}
.y505{bottom:540.669000px;}
.y7a{bottom:540.786000px;}
.y3af{bottom:540.868770px;}
.y342{bottom:540.868847px;}
.y287{bottom:541.340682px;}
.y41{bottom:541.662000px;}
.y199{bottom:541.966500px;}
.y3b8{bottom:542.845500px;}
.y54d{bottom:544.096500px;}
.y25a{bottom:546.398886px;}
.y371{bottom:547.596314px;}
.y267{bottom:547.663407px;}
.y15{bottom:548.049000px;}
.y3ae{bottom:550.956594px;}
.y6e{bottom:552.325500px;}
.y337{bottom:552.875863px;}
.y504{bottom:554.157000px;}
.y344{bottom:554.337495px;}
.y288{bottom:554.423699px;}
.y59{bottom:555.972000px;}
.y4a2{bottom:557.481000px;}
.y54c{bottom:557.583000px;}
.y214{bottom:558.009000px;}
.yc4{bottom:558.195000px;}
.y4cc{bottom:558.804000px;}
.y301{bottom:559.477502px;}
.y25c{bottom:559.907416px;}
.y3ad{bottom:561.064907px;}
.y372{bottom:561.064962px;}
.y269{bottom:561.171938px;}
.y2e7{bottom:561.521329px;}
.y40{bottom:562.248000px;}
.y198{bottom:562.551000px;}
.y3b7{bottom:563.430000px;}
.y9d{bottom:563.848500px;}
.y174{bottom:565.483065px;}
.y2de{bottom:566.296717px;}
.y339{bottom:566.344511px;}
.y503{bottom:567.643500px;}
.y346{bottom:567.806143px;}
.y289{bottom:567.932230px;}
.y14{bottom:568.635000px;}
.y68{bottom:570.139050px;}
.y54b{bottom:571.069500px;}
.y3ac{bottom:571.166390px;}
.y2dc{bottom:572.428198px;}
.y25e{bottom:573.409953px;}
.y373{bottom:574.533610px;}
.y3d0{bottom:575.156946px;}
.y3ff{bottom:575.156948px;}
.y213{bottom:578.593500px;}
.y2d4{bottom:579.266785px;}
.y4cb{bottom:579.388500px;}
.y33b{bottom:579.813159px;}
.y502{bottom:581.130000px;}
.y348{bottom:581.254302px;}
.y28a{bottom:581.434766px;}
.y3f{bottom:582.832500px;}
.y197{bottom:583.137000px;}
.y3dc{bottom:583.579795px;}
.y9c{bottom:584.433000px;}
.y54a{bottom:584.557500px;}
.y2f8{bottom:586.076313px;}
.y260{bottom:586.912491px;}
.y374{bottom:588.002259px;}
.y13{bottom:589.219500px;}
.y3d3{bottom:592.014608px;}
.y3f9{bottom:592.014610px;}
.y494{bottom:592.627500px;}
.y58{bottom:592.806000px;}
.y33d{bottom:593.281808px;}
.yc3{bottom:593.340000px;}
.y501{bottom:594.616500px;}
.y34a{bottom:594.722950px;}
.y28b{bottom:594.937304px;}
.y3fd{bottom:595.803992px;}
.y3cf{bottom:595.803994px;}
.y3de{bottom:595.803996px;}
.y549{bottom:598.044000px;}
.y2e1{bottom:599.046381px;}
.y212{bottom:599.179500px;}
.y4ca{bottom:599.974500px;}
.y262{bottom:600.433007px;}
.y375{bottom:601.470907px;}
.y3e{bottom:603.418500px;}
.y436{bottom:604.266000px;}
.y9b{bottom:605.019000px;}
.y33f{bottom:606.750456px;}
.y500{bottom:608.104500px;}
.y34c{bottom:608.191598px;}
.y28c{bottom:608.445834px;}
.y40f{bottom:608.453230px;}
.y12{bottom:609.805500px;}
.y2e6{bottom:610.631297px;}
.y548{bottom:611.530500px;}
.y55{bottom:613.194000px;}
.y3b6{bottom:613.707000px;}
.y264{bottom:613.935544px;}
.y376{bottom:614.939555px;}
.y495{bottom:615.108843px;}
.y48e{bottom:615.108893px;}
.y196{bottom:615.364500px;}
.y3d1{bottom:616.888049px;}
.y3fe{bottom:616.888050px;}
.y211{bottom:619.764000px;}
.y341{bottom:620.219104px;}
.y4c9{bottom:620.559000px;}
.y56{bottom:621.061500px;}
.y3fc{bottom:621.096476px;}
.y3dd{bottom:621.096480px;}
.y417{bottom:621.521513px;}
.y4ff{bottom:621.591000px;}
.y34e{bottom:621.660247px;}
.y28d{bottom:621.948371px;}
.y3d{bottom:624.003000px;}
.y2ca{bottom:624.957459px;}
.y547{bottom:625.017000px;}
.y3db{bottom:625.322870px;}
.y54{bottom:625.494000px;}
.y9a{bottom:625.603500px;}
.y3ce{bottom:626.166948px;}
.y266{bottom:627.444074px;}
.y194{bottom:627.666000px;}
.y377{bottom:628.401374px;}
.yb8{bottom:628.827013px;}
.y11{bottom:630.390000px;}
.y2fd{bottom:632.454720px;}
.y3d2{bottom:633.326663px;}
.y3f8{bottom:633.326665px;}
.y42d{bottom:633.619469px;}
.y343{bottom:633.687753px;}
.y3fb{bottom:634.589792px;}
.y4fe{bottom:635.077500px;}
.y350{bottom:635.128895px;}
.y28e{bottom:635.450908px;}
.y302{bottom:636.561747px;}
.y57{bottom:637.626000px;}
.y2c8{bottom:637.927527px;}
.y546{bottom:638.505000px;}
.y195{bottom:639.798000px;}
.y268{bottom:640.527091px;}
.y4c8{bottom:641.145000px;}
.y378{bottom:641.870022px;}
.y316{bottom:643.060200px;}
.y2bf{bottom:643.491048px;}
.y315{bottom:644.746742px;}
.y99{bottom:646.189500px;}
.y2c9{bottom:646.790569px;}
.y345{bottom:647.156401px;}
.y28f{bottom:648.533925px;}
.y4fd{bottom:648.564000px;}
.y352{bottom:648.597544px;}
.y309{bottom:650.878223px;}
.y10{bottom:650.976000px;}
.y545{bottom:651.991500px;}
.y3c{bottom:652.891500px;}
.y26a{bottom:654.029628px;}
.y210{bottom:655.293000px;}
.y379{bottom:655.325010px;}
.y53{bottom:657.228000px;}
.y41b{bottom:657.356023px;}
.y40e{bottom:657.356025px;}
.y347{bottom:660.625049px;}
.y4c7{bottom:661.729500px;}
.y290{bottom:662.042456px;}
.y4fc{bottom:662.052000px;}
.y354{bottom:662.066193px;}
.y544{bottom:665.478000px;}
.y414{bottom:665.790838px;}
.y3fa{bottom:665.790840px;}
.y37a{bottom:668.793659px;}
.y52{bottom:669.529500px;}
.y30f{bottom:670.657819px;}
.yf{bottom:671.560500px;}
.y130{bottom:672.762000px;}
.y3cd{bottom:673.794641px;}
.y349{bottom:674.093697px;}
.y356{bottom:675.534841px;}
.y4fb{bottom:675.538500px;}
.y20f{bottom:675.879000px;}
.y193{bottom:676.545000px;}
.y543{bottom:678.964500px;}
.y37b{bottom:682.262307px;}
.y34b{bottom:687.562346px;}
.y358{bottom:689.003490px;}
.y4fa{bottom:689.025000px;}
.ye{bottom:692.146500px;}
.y542{bottom:692.452500px;}
.y98{bottom:692.518500px;}
.y4c6{bottom:693.115500px;}
.y37c{bottom:695.730955px;}
.y20e{bottom:696.463500px;}
.y192{bottom:697.129500px;}
.y312{bottom:697.256630px;}
.y34d{bottom:701.030994px;}
.y12c{bottom:702.115758px;}
.y35a{bottom:702.472139px;}
.yd6{bottom:702.478223px;}
.y4f9{bottom:702.511500px;}
.y541{bottom:705.939000px;}
.y3b{bottom:705.973500px;}
.y37d{bottom:709.199604px;}
.yd{bottom:712.731000px;}
.y4c5{bottom:713.700000px;}
.y34f{bottom:714.499643px;}
.y35c{bottom:715.940788px;}
.y4f8{bottom:715.998000px;}
.y51{bottom:716.724000px;}
.y20d{bottom:717.049500px;}
.y191{bottom:717.715500px;}
.y540{bottom:719.425500px;}
.y37e{bottom:722.668252px;}
.y3a{bottom:726.558000px;}
.y351{bottom:727.954631px;}
.y97{bottom:728.047500px;}
.y35e{bottom:729.409436px;}
.y4f7{bottom:729.486000px;}
.y53f{bottom:732.912000px;}
.yc{bottom:733.317000px;}
.y4c4{bottom:734.286000px;}
.y37f{bottom:736.136901px;}
.y20c{bottom:737.634000px;}
.y190{bottom:738.300000px;}
.y353{bottom:741.423280px;}
.y360{bottom:742.864425px;}
.y4f6{bottom:742.972500px;}
.y53e{bottom:746.400000px;}
.y39{bottom:747.144000px;}
.y96{bottom:748.632000px;}
.y380{bottom:749.605549px;}
.yb{bottom:753.901500px;}
.y4c3{bottom:754.870500px;}
.y355{bottom:754.891929px;}
.y4f5{bottom:756.459000px;}
.y44b{bottom:757.719000px;}
.y53d{bottom:759.886500px;}
.y381{bottom:763.074198px;}
.y38{bottom:767.728500px;}
.y357{bottom:768.360577px;}
.y50{bottom:769.758000px;}
.y4f4{bottom:769.945500px;}
.y53c{bottom:773.373000px;}
.y20b{bottom:773.505000px;}
.y18f{bottom:773.829000px;}
.ya{bottom:774.487500px;}
.y4c2{bottom:775.456500px;}
.y382{bottom:776.542846px;}
.y44c{bottom:780.201269px;}
.y442{bottom:780.201397px;}
.y359{bottom:782.307322px;}
.y4f3{bottom:783.433500px;}
.y95{bottom:784.161000px;}
.y20a{bottom:785.806500px;}
.y53b{bottom:786.859500px;}
.y37{bottom:788.314500px;}
.y383{bottom:790.489591px;}
.y35b{bottom:795.775970px;}
.y4c1{bottom:796.041000px;}
.y4f2{bottom:796.920000px;}
.y18e{bottom:800.170500px;}
.y53a{bottom:800.347500px;}
.y384{bottom:803.958240px;}
.y94{bottom:804.747000px;}
.y35d{bottom:809.244619px;}
.y4f1{bottom:810.406500px;}
.y18d{bottom:812.470500px;}
.y539{bottom:813.834000px;}
.y9{bottom:814.375500px;}
.y4c0{bottom:816.627000px;}
.y385{bottom:817.426889px;}
.y36{bottom:819.699000px;}
.y35f{bottom:822.713268px;}
.y4f0{bottom:823.893000px;}
.y538{bottom:827.320500px;}
.y386{bottom:830.895537px;}
.y361{bottom:836.181916px;}
.y4bf{bottom:837.211500px;}
.y4ef{bottom:837.381000px;}
.y93{bottom:840.276000px;}
.y35{bottom:840.285000px;}
.y18c{bottom:840.427500px;}
.y537{bottom:840.807000px;}
.y387{bottom:844.350526px;}
.y536{bottom:854.295000px;}
.y4be{bottom:857.797500px;}
.y8{bottom:858.553500px;}
.y209{bottom:858.871500px;}
.y92{bottom:860.860500px;}
.y34{bottom:860.869500px;}
.y18b{bottom:861.013500px;}
.y4ee{bottom:864.052500px;}
.y535{bottom:867.781500px;}
.y4bd{bottom:878.382000px;}
.y7{bottom:879.138000px;}
.y208{bottom:879.457500px;}
.y534{bottom:881.268000px;}
.y91{bottom:881.446500px;}
.y33{bottom:881.455500px;}
.y18a{bottom:881.598000px;}
.y483{bottom:882.784500px;}
.y533{bottom:894.754500px;}
.y4ed{bottom:895.437000px;}
.y4bc{bottom:898.968000px;}
.y6{bottom:899.724000px;}
.y2d0{bottom:899.847353px;}
.y207{bottom:900.042000px;}
.y32{bottom:902.040000px;}
.y189{bottom:902.184000px;}
.y484{bottom:905.266089px;}
.y47c{bottom:905.266966px;}
.y532{bottom:908.242500px;}
.y2da{bottom:912.817422px;}
.y172{bottom:912.840000px;}
.y4ec{bottom:916.021500px;}
.y531{bottom:921.729000px;}
.y31{bottom:922.626000px;}
.y2d3{bottom:925.787490px;}
.y206{bottom:927.747000px;}
.y31d{bottom:929.794200px;}
.y4bb{bottom:930.352500px;}
.y5{bottom:931.108500px;}
.y2cf{bottom:932.606704px;}
.y171{bottom:933.426000px;}
.y530{bottom:935.215500px;}
.y90{bottom:935.442000px;}
.y4eb{bottom:936.607500px;}
.y205{bottom:940.048500px;}
.yb7{bottom:940.987500px;}
.y30{bottom:943.210500px;}
.y52f{bottom:948.702000px;}
.y300{bottom:951.708254px;}
.y188{bottom:952.996500px;}
.y170{bottom:954.010500px;}
.y4ea{bottom:957.192000px;}
.y52e{bottom:962.190000px;}
.y2f{bottom:963.796500px;}
.y2d1{bottom:964.649263px;}
.y8b{bottom:964.795500px;}
.y4{bottom:970.998000px;}
.y2db{bottom:971.487850px;}
.y307{bottom:972.165897px;}
.yac{bottom:972.258237px;}
.y187{bottom:973.581000px;}
.y16f{bottom:974.596500px;}
.y52d{bottom:975.676500px;}
.y2d9{bottom:978.297378px;}
.y2ce{bottom:980.341205px;}
.y2e{bottom:984.381000px;}
.y4e9{bottom:986.080500px;}
.y4ba{bottom:988.875000px;}
.y52c{bottom:989.163000px;}
.y2d2{bottom:991.267446px;}
.y2f3{bottom:993.311274px;}
.y16e{bottom:995.181000px;}
.y52b{bottom:1002.649500px;}
.y2d{bottom:1004.967000px;}
.y4b9{bottom:1009.461000px;}
.y16d{bottom:1015.767000px;}
.y52a{bottom:1016.137500px;}
.y3{bottom:1018.698000px;}
.y570{bottom:1024.993500px;}
.y2c{bottom:1025.551500px;}
.y2ff{bottom:1028.763439px;}
.y529{bottom:1029.624000px;}
.y4b8{bottom:1030.045500px;}
.y16c{bottom:1036.351500px;}
.y56f{bottom:1038.481500px;}
.y4e8{bottom:1040.610000px;}
.y2f2{bottom:1041.733508px;}
.y2b{bottom:1046.137500px;}
.y4b7{bottom:1050.631500px;}
.y56e{bottom:1051.968000px;}
.y528{bottom:1052.077500px;}
.y2cd{bottom:1054.703576px;}
.y16b{bottom:1056.936000px;}
.y4e7{bottom:1057.647000px;}
.y226{bottom:1058.446200px;}
.y56d{bottom:1065.454500px;}
.y2{bottom:1066.399500px;}
.y2a{bottom:1066.722000px;}
.y4b6{bottom:1071.216000px;}
.y4e6{bottom:1074.682500px;}
.y16a{bottom:1077.522000px;}
.y56c{bottom:1078.941000px;}
.y29{bottom:1087.308000px;}
.y4e5{bottom:1091.718000px;}
.y4b5{bottom:1091.800500px;}
.y527{bottom:1092.429000px;}
.y169{bottom:1098.106500px;}
.y526{bottom:1105.915500px;}
.y186{bottom:1107.892500px;}
.y4e4{bottom:1108.755000px;}
.y28{bottom:1118.692500px;}
.y525{bottom:1119.402000px;}
.y4b4{bottom:1121.398500px;}
.y4e3{bottom:1125.790500px;}
.y185{bottom:1128.478500px;}
.y524{bottom:1132.888500px;}
.y27{bottom:1139.277000px;}
.y4e2{bottom:1142.827500px;}
.y523{bottom:1146.376500px;}
.y1{bottom:1159.863000px;}
.y4b3{bottom:1163.386500px;}
.h25{height:13.680518px;}
.h26{height:13.688967px;}
.h28{height:14.548555px;}
.h36{height:18.575015px;}
.h37{height:18.586118px;}
.h39{height:20.311868px;}
.h47{height:23.589006px;}
.h3c{height:24.572138px;}
.h63{height:25.253025px;}
.h27{height:26.445043px;}
.h1c{height:26.498183px;}
.h1a{height:26.968137px;}
.h2d{height:27.711062px;}
.h30{height:28.295210px;}
.h22{height:31.466046px;}
.h5c{height:32.102338px;}
.h60{height:32.579473px;}
.h5a{height:32.822499px;}
.h5e{height:32.987489px;}
.h62{height:33.187496px;}
.h58{height:34.098388px;}
.hd{height:34.143908px;}
.h20{height:34.326595px;}
.h17{height:34.829689px;}
.h18{height:34.853049px;}
.h1b{height:35.330910px;}
.h38{height:35.896161px;}
.h4d{height:36.149285px;}
.h4e{height:36.171972px;}
.h50{height:37.858788px;}
.h32{height:37.926425px;}
.h52{height:38.405472px;}
.h61{height:42.088093px;}
.h45{height:43.762500px;}
.h21{height:45.762822px;}
.h4b{height:45.963596px;}
.h1e{height:46.086686px;}
.h1d{height:47.300682px;}
.h6{height:49.770525px;}
.h2{height:50.506050px;}
.h10{height:51.287808px;}
.h15{height:51.293808px;}
.he{height:53.798400px;}
.h40{height:56.406301px;}
.h41{height:56.440641px;}
.h4{height:57.828699px;}
.h3d{height:58.179418px;}
.h43{height:59.154465px;}
.h3e{height:59.506964px;}
.h2a{height:60.313611px;}
.h48{height:60.367969px;}
.h49{height:60.403889px;}
.h23{height:61.072832px;}
.h2e{height:61.228207px;}
.h2b{height:65.484098px;}
.h13{height:67.584375px;}
.h12{height:67.719544px;}
.h54{height:69.157307px;}
.h5{height:69.735971px;}
.h4f{height:69.888561px;}
.h34{height:72.934414px;}
.h55{height:73.550427px;}
.h46{height:81.636000px;}
.h4c{height:85.079040px;}
.h14{height:97.896094px;}
.h56{height:99.178050px;}
.h7{height:99.815808px;}
.hf{height:100.487808px;}
.ha{height:100.493808px;}
.hb{height:102.326400px;}
.h3a{height:103.004400px;}
.h53{height:104.302261px;}
.hc{height:110.622699px;}
.h42{height:111.037507px;}
.h4a{height:112.299955px;}
.h3b{height:119.058000px;}
.h3{height:121.279610px;}
.h24{height:136.469763px;}
.h8{height:149.021808px;}
.h9{height:151.532400px;}
.h19{height:197.268742px;}
.h16{height:213.000000px;}
.h51{height:224.329500px;}
.h35{height:237.503486px;}
.h3f{height:240.523152px;}
.h33{height:242.654445px;}
.h5b{height:256.576815px;}
.h5f{height:260.390295px;}
.h59{height:262.332675px;}
.h5d{height:263.651355px;}
.h57{height:272.530170px;}
.h1f{height:291.374988px;}
.h2c{height:310.793106px;}
.h2f{height:315.519581px;}
.h29{height:437.462403px;}
.h44{height:534.744000px;}
.h31{height:599.320800px;}
.h11{height:607.662000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:191.324374px;}
.wa{width:274.688700px;}
.w8{width:317.672716px;}
.w9{width:317.790716px;}
.w15{width:354.193275px;}
.w16{width:354.196950px;}
.w14{width:354.197460px;}
.w17{width:354.198285px;}
.w18{width:354.200940px;}
.w10{width:356.634000px;}
.wd{width:376.722000px;}
.we{width:380.975958px;}
.wf{width:385.271994px;}
.w2{width:585.629991px;}
.w5{width:592.874975px;}
.w4{width:602.437475px;}
.w3{width:691.500000px;}
.wc{width:721.929180px;}
.w12{width:722.025317px;}
.wb{width:722.831659px;}
.w13{width:722.839500px;}
.w7{width:722.853679px;}
.w11{width:722.855480px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x18c{left:-1183.389563px;}
.x1c3{left:-1133.323639px;}
.x1df{left:-1126.564808px;}
.x1e0{left:-1106.356656px;}
.x1de{left:-1099.597821px;}
.x1c8{left:-1097.677468px;}
.x18d{left:-1070.724150px;}
.x1f3{left:-1047.785918px;}
.x1f2{left:-1020.357050px;}
.x194{left:-1017.268560px;}
.x1c6{left:-977.788510px;}
.x20a{left:-931.301583px;}
.x1f4{left:-902.177504px;}
.x15c{left:-822.327159px;}
.x212{left:-809.737605px;}
.x204{left:-802.142103px;}
.x18e{left:-789.012778px;}
.x15b{left:-780.669737px;}
.x1c4{left:-740.388830px;}
.x18f{left:-728.354146px;}
.x1e1{left:-714.863820px;}
.x20c{left:-656.958989px;}
.x210{left:-646.817672px;}
.x208{left:-645.128453px;}
.x205{left:-643.864532px;}
.x17c{left:-640.674429px;}
.x1f8{left:-623.617847px;}
.x1f7{left:-599.136130px;}
.x15d{left:-595.576243px;}
.x1ec{left:-594.074460px;}
.x1ef{left:-579.716083px;}
.x1fe{left:-577.182251px;}
.x1f0{left:-568.748130px;}
.x190{left:-566.552234px;}
.x1ee{left:-548.902784px;}
.x1ea{left:-538.779443px;}
.x1c5{left:-524.659781px;}
.x191{left:-512.146718px;}
.x5a{left:-481.947927px;}
.x1ed{left:-460.697918px;}
.x182{left:-450.114488px;}
.x59{left:-442.070355px;}
.x81{left:-438.225552px;}
.x192{left:-431.245761px;}
.x1eb{left:-421.013217px;}
.x61{left:-414.983874px;}
.x67{left:-412.213563px;}
.x60{left:-405.177991px;}
.x66{left:-403.257928px;}
.x209{left:-393.159046px;}
.x1c7{left:-389.360142px;}
.x1f1{left:-385.563544px;}
.x84{left:-382.791235px;}
.x74{left:-380.020921px;}
.x193{left:-377.311791px;}
.x7c{left:-372.761113px;}
.x1fa{left:-365.724187px;}
.x1fb{left:-363.615656px;}
.x62{left:-361.679856px;}
.x5b{left:-352.504654px;}
.x88{left:-348.029169px;}
.x75{left:-340.353576px;}
.x87{left:-335.868755px;}
.x146{left:-331.420779px;}
.x7e{left:-327.132692px;}
.x7a{left:-316.686781px;}
.x147{left:-311.151344px;}
.x20d{left:-308.320641px;}
.x58{left:-303.891019px;}
.x129{left:-302.263974px;}
.x6e{left:-300.690900px;}
.x211{left:-298.197296px;}
.x195{left:-296.424502px;}
.x5d{left:-292.580844px;}
.x5e{left:-288.530487px;}
.x55{left:-283.844785px;}
.x5c{left:-281.284691px;}
.x1ff{left:-277.094023px;}
.xea{left:-275.643845px;}
.x56{left:-273.604433px;}
.x213{left:-259.782504px;}
.x214{left:-255.565444px;}
.x1c9{left:-254.518381px;}
.x1f5{left:-252.187004px;}
.x69{left:-244.822123px;}
.x196{left:-242.483698px;}
.x57{left:-240.556875px;}
.x20b{left:-230.239116px;}
.x7b{left:-224.135869px;}
.x5f{left:-221.580452px;}
.x83{left:-219.875282px;}
.x85{left:-211.975447px;}
.x200{left:-210.393773px;}
.x76{left:-209.205133px;}
.x86{left:-204.729654px;}
.x7d{left:-195.353565px;}
.x17a{left:-189.921307px;}
.x1f9{left:-188.457863px;}
.x128{left:-183.112064px;}
.x68{left:-180.636330px;}
.x207{left:-179.167151px;}
.xc0{left:-167.202084px;}
.x197{left:-161.582741px;}
.x162{left:-156.477126px;}
.x63{left:-154.410854px;}
.x202{left:-152.151605px;}
.x20e{left:-146.670622px;}
.x1f6{left:-129.359106px;}
.x77{left:-127.961594px;}
.x6f{left:-121.141387px;}
.x161{left:-118.909846px;}
.x7f{left:-116.026355px;}
.x155{left:-111.378954px;}
.x64{left:-109.632675px;}
.xc1{left:-106.837063px;}
.x201{left:-101.924249px;}
.x70{left:-96.621072px;}
.x158{left:-89.542228px;}
.x72{left:-75.295726px;}
.x159{left:-72.474123px;}
.xdf{left:-59.495813px;}
.x71{left:-56.959332px;}
.x4f{left:-53.974117px;}
.x157{left:-41.051747px;}
.x203{left:-35.665412px;}
.x73{left:-32.652511px;}
.x153{left:-24.671809px;}
.x0{left:0.000000px;}
.x24{left:1.846791px;}
.xaf{left:3.545503px;}
.x36{left:6.602196px;}
.xc4{left:9.564420px;}
.x4a{left:11.703664px;}
.x4e{left:12.980585px;}
.x4b{left:16.844687px;}
.x49{left:18.809020px;}
.x48{left:20.773353px;}
.x21e{left:22.177103px;}
.xde{left:23.450576px;}
.x23{left:24.980391px;}
.xc3{left:26.057696px;}
.x219{left:28.077670px;}
.xa2{left:30.247485px;}
.x78{left:32.811921px;}
.x1e5{left:34.405436px;}
.xbf{left:36.054742px;}
.x6a{left:37.511653px;}
.x1e{left:39.236391px;}
.x22{left:42.087591px;}
.x1c{left:47.595591px;}
.x20{left:49.021191px;}
.xba{left:50.378497px;}
.xbe{left:51.678978px;}
.x127{left:53.092846px;}
.x35{left:55.429220px;}
.xcd{left:58.625138px;}
.x90{left:60.928240px;}
.xeb{left:65.344461px;}
.x6d{left:67.148866px;}
.x223{left:68.601000px;}
.x21{left:70.923591px;}
.xa0{left:71.952996px;}
.x9d{left:73.783226px;}
.x9e{left:75.223684px;}
.x6b{left:77.164983px;}
.x79{left:79.094387px;}
.x51{left:80.159530px;}
.x50{left:81.224676px;}
.x9f{left:83.171626px;}
.xa{left:84.483000px;}
.x1e3{left:85.511446px;}
.x1b{left:87.317991px;}
.x221{left:90.018000px;}
.x9c{left:91.119567px;}
.x32{left:94.014000px;}
.x53{left:95.716271px;}
.xbd{left:96.850584px;}
.x31{left:98.997000px;}
.x27{left:100.707000px;}
.x2{left:103.203000px;}
.xa3{left:104.507358px;}
.x82{left:106.171527px;}
.xa6{left:107.455500px;}
.x54{left:111.072126px;}
.x34{left:112.241452px;}
.x94{left:113.428009px;}
.x19{left:114.627000px;}
.x216{left:117.913521px;}
.x9b{left:120.437135px;}
.x7{left:122.268000px;}
.x1f{left:124.772391px;}
.x26{left:129.871500px;}
.x6c{left:131.328590px;}
.x95{left:135.148562px;}
.x2a{left:136.449397px;}
.x4d{left:138.550500px;}
.xa1{left:141.416989px;}
.x21b{left:142.708500px;}
.x6{left:143.790000px;}
.x33{left:145.238099px;}
.x52{left:147.324467px;}
.x45{left:149.861999px;}
.x217{left:150.896237px;}
.x1a{left:153.645009px;}
.x186{left:157.010025px;}
.xe6{left:158.062500px;}
.x154{left:159.743228px;}
.x21f{left:160.911000px;}
.x92{left:162.421150px;}
.x1e4{left:164.391554px;}
.x4{left:166.324500px;}
.xc6{left:167.631147px;}
.xe8{left:169.323000px;}
.xad{left:170.544544px;}
.x5{left:174.064500px;}
.x3{left:176.019000px;}
.x80{left:178.026838px;}
.xd9{left:179.366272px;}
.x65{left:180.797152px;}
.x91{left:182.752544px;}
.xe9{left:184.924500px;}
.x1e7{left:189.292581px;}
.x8f{left:191.139627px;}
.xe3{left:193.204500px;}
.x2f{left:198.162000px;}
.x8d{left:200.937335px;}
.x25{left:202.182000px;}
.x17b{left:203.445738px;}
.x93{left:205.138544px;}
.xc2{left:207.594675px;}
.xe4{left:210.183000px;}
.xce{left:211.933712px;}
.xa4{left:213.028500px;}
.x15a{left:215.735551px;}
.x28{left:218.847742px;}
.x3d{left:220.483542px;}
.xe0{left:223.218912px;}
.x1{left:224.697000px;}
.x30{left:225.865500px;}
.x8c{left:231.051105px;}
.x29{left:234.623492px;}
.x4c{left:236.509500px;}
.x96{left:238.042897px;}
.x13{left:240.429000px;}
.xd4{left:241.900196px;}
.xd3{left:244.938756px;}
.xf{left:246.619500px;}
.x165{left:249.881462px;}
.x37{left:252.986689px;}
.x18{left:254.739000px;}
.xc5{left:256.223955px;}
.x18b{left:258.971994px;}
.xda{left:261.875797px;}
.x189{left:265.463994px;}
.x3a{left:268.282290px;}
.x1fc{left:271.597157px;}
.x1e9{left:273.286377px;}
.xcf{left:275.768115px;}
.x1e2{left:276.823500px;}
.x47{left:278.147030px;}
.x1d{left:280.097991px;}
.x8e{left:281.450270px;}
.x14{left:288.823500px;}
.x21d{left:299.311500px;}
.x89{left:301.280112px;}
.x15{left:305.386500px;}
.x198{left:310.312167px;}
.x9a{left:311.755500px;}
.x16{left:314.277000px;}
.x18a{left:315.473994px;}
.xd{left:322.762500px;}
.x38{left:325.094522px;}
.xae{left:326.305017px;}
.x3c{left:328.340018px;}
.xd0{left:335.263479px;}
.x17d{left:336.617677px;}
.x39{left:338.060441px;}
.x17{left:340.804500px;}
.xe{left:342.850500px;}
.x3b{left:345.145899px;}
.x1e6{left:347.576139px;}
.x10{left:349.336500px;}
.x181{left:352.997642px;}
.xb0{left:356.545723px;}
.x44{left:358.243500px;}
.xec{left:361.128325px;}
.x199{left:364.246137px;}
.xb{left:366.265500px;}
.xb5{left:369.569003px;}
.xb4{left:371.319411px;}
.x1e8{left:372.477168px;}
.x8{left:378.709500px;}
.x220{left:381.591000px;}
.xd5{left:384.342687px;}
.x16e{left:385.786607px;}
.xbc{left:389.982203px;}
.x222{left:391.653000px;}
.x21c{left:392.968500px;}
.xaa{left:394.113000px;}
.x9{left:397.222500px;}
.xa5{left:400.390500px;}
.xb2{left:403.886850px;}
.xc7{left:408.225888px;}
.xa7{left:414.418500px;}
.x2b{left:418.186005px;}
.x15e{left:424.710820px;}
.x43{left:427.166958px;}
.xcc{left:432.115252px;}
.xb1{left:437.754770px;}
.xc{left:441.973500px;}
.xbb{left:445.138529px;}
.xe5{left:447.478500px;}
.xd6{left:448.608529px;}
.xb8{left:450.346609px;}
.xb7{left:452.078526px;}
.xe7{left:453.715500px;}
.xdb{left:455.117087px;}
.xab{left:458.607000px;}
.x3e{left:459.670105px;}
.xdc{left:465.983172px;}
.x97{left:471.975671px;}
.xa8{left:474.556500px;}
.x41{left:475.993982px;}
.x8b{left:478.556358px;}
.xac{left:490.131000px;}
.x16f{left:491.626318px;}
.xb9{left:493.342534px;}
.xed{left:495.920083px;}
.xd8{left:497.250134px;}
.x184{left:499.137855px;}
.x183{left:504.623691px;}
.xb3{left:510.273412px;}
.x2c{left:513.042981px;}
.x215{left:514.287830px;}
.x172{left:516.225352px;}
.x11{left:517.312500px;}
.xa9{left:518.449500px;}
.xcb{left:521.570937px;}
.x19a{left:526.519597px;}
.x42{left:530.235525px;}
.xb6{left:531.555655px;}
.x3f{left:532.806214px;}
.x2d{left:534.798889px;}
.x21a{left:536.220847px;}
.x12a{left:537.754282px;}
.x174{left:539.428660px;}
.xd7{left:543.290782px;}
.x40{left:544.743857px;}
.xee{left:549.580120px;}
.x1fd{left:551.019393px;}
.x46{left:560.964949px;}
.x8a{left:563.853028px;}
.x1ca{left:568.405215px;}
.x19b{left:580.453567px;}
.x170{left:581.774225px;}
.x12{left:587.583000px;}
.x17e{left:590.642671px;}
.x218{left:593.125470px;}
.x163{left:600.228351px;}
.x164{left:602.961572px;}
.xc8{left:607.994226px;}
.xe1{left:616.240862px;}
.xe2{left:618.410381px;}
.x99{left:620.967000px;}
.xef{left:630.286063px;}
.x2e{left:632.972983px;}
.xca{left:635.353588px;}
.x206{left:637.966330px;}
.x20f{left:651.462124px;}
.x98{left:654.657921px;}
.xc9{left:661.412471px;}
.x12b{left:672.126259px;}
.xd2{left:675.736228px;}
.xd1{left:679.656155px;}
.xf0{left:684.371878px;}
.xdd{left:686.602314px;}
.x19c{left:688.314675px;}
.x19d{left:742.248646px;}
.xf1{left:751.566862px;}
.x171{left:765.481722px;}
.x1cb{left:784.134264px;}
.x12c{left:793.389068px;}
.x19e{left:796.182616px;}
.x125{left:801.412889px;}
.xf2{left:805.640683px;}
.x148{left:830.371556px;}
.x126{left:840.722404px;}
.x19f{left:850.102919px;}
.x177{left:858.372570px;}
.x14d{left:869.983921px;}
.xf3{left:872.829671px;}
.x1cc{left:892.487420px;}
.x1a0{left:904.522104px;}
.x12d{left:914.232095px;}
.x175{left:916.419627px;}
.xf4{left:926.495704px;}
.x156{left:935.532796px;}
.x1a1{left:958.456075px;}
.x14a{left:979.235308px;}
.x167{left:986.746819px;}
.x166{left:988.811274px;}
.xf5{left:993.672698px;}
.x1cd{left:1000.341694px;}
.x1a2{left:1012.390046px;}
.x12e{left:1035.512894px;}
.xf6{left:1047.758513px;}
.x16d{left:1063.238303px;}
.x1a3{left:1066.310349px;}
.x149{left:1080.325799px;}
.xf7{left:1101.424547px;}
.x1ce{left:1108.216469px;}
.x185{left:1109.674019px;}
.x176{left:1113.773859px;}
.x150{left:1118.552149px;}
.x1a4{left:1120.244319px;}
.x14f{left:1123.349828px;}
.x17f{left:1141.784556px;}
.x12f{left:1143.258747px;}
.xf8{left:1155.510362px;}
.x1a5{left:1174.178290px;}
.x152{left:1184.808587px;}
.x160{left:1193.677037px;}
.x15f{left:1197.088718px;}
.x179{left:1198.455321px;}
.xf9{left:1209.170400px;}
.x1cf{left:1216.070743px;}
.x1a6{left:1228.119095px;}
.x168{left:1248.302727px;}
.x130{left:1251.010596px;}
.xfa{left:1262.836433px;}
.x1a7{left:1282.039398px;}
.x14c{left:1300.912424px;}
.x14b{left:1302.957495px;}
.xfb{left:1316.922249px;}
.x1d0{left:1323.938685px;}
.x1a8{left:1336.451749px;}
.x16c{left:1337.772174px;}
.x131{left:1358.336667px;}
.x14e{left:1368.506387px;}
.xfc{left:1370.588282px;}
.x1a9{left:1390.385720px;}
.x178{left:1404.028603px;}
.x151{left:1406.752137px;}
.xfd{left:1424.674098px;}
.x1d1{left:1432.278172px;}
.x1aa{left:1444.306022px;}
.x132{left:1466.088516px;}
.xfe{left:1478.334135px;}
.x1ab{left:1498.246827px;}
.xff{left:1532.000169px;}
.x1d2{left:1540.146114px;}
.x1ac{left:1552.180798px;}
.x133{left:1573.840365px;}
.x100{left:1586.085984px;}
.x169{left:1602.749453px;}
.x1ad{left:1606.114769px;}
.x187{left:1629.383830px;}
.x188{left:1635.528736px;}
.x101{left:1639.746022px;}
.x1d3{left:1648.000388px;}
.x1ae{left:1660.035071px;}
.x134{left:1681.586218px;}
.x16b{left:1687.430912px;}
.x102{left:1693.831836px;}
.x1af{left:1727.459369px;}
.x103{left:1747.497871px;}
.x1d4{left:1769.351822px;}
.x16a{left:1776.890667px;}
.x1b0{left:1781.379671px;}
.x135{left:1789.338067px;}
.x104{left:1801.163904px;}
.x173{left:1812.412880px;}
.x1b1{left:1835.798857px;}
.x180{left:1845.192173px;}
.x105{left:1855.249720px;}
.x1d5{left:1877.684476px;}
.x1b2{left:1889.732827px;}
.x136{left:1896.664138px;}
.x106{left:1908.909757px;}
.x1b3{left:1957.143457px;}
.x107{left:1962.995572px;}
.x1d6{left:1999.035910px;}
.x137{left:2004.415987px;}
.x1b4{left:2011.084262px;}
.x108{left:2016.661606px;}
.x109{left:2070.327640px;}
.x1b5{left:2078.494891px;}
.x138{left:2112.149846px;}
.x1d7{left:2120.380510px;}
.x10a{left:2124.413455px;}
.x1b6{left:2132.428862px;}
.x10b{left:2178.073493px;}
.x1b7{left:2186.349165px;}
.x139{left:2219.895698px;}
.x1d8{left:2228.248452px;}
.x10c{left:2232.159307px;}
.x1b8{left:2240.283135px;}
.x10d{left:2285.825342px;}
.x1b9{left:2308.178980px;}
.x13a{left:2327.647547px;}
.x10e{left:2339.485378px;}
.x1d9{left:2350.078266px;}
.x1ba{left:2362.112950px;}
.x10f{left:2393.571194px;}
.x1bb{left:2429.523580px;}
.x13b{left:2434.973618px;}
.x110{left:2447.237228px;}
.x1da{left:2471.429701px;}
.x1bc{left:2483.457550px;}
.x111{left:2514.414221px;}
.x1bd{left:2550.868180px;}
.x13c{left:2556.254417px;}
.x112{left:2568.500036px;}
.x1db{left:2592.760633px;}
.x1be{left:2604.808985px;}
.x113{left:2622.166071px;}
.x13d{left:2664.006267px;}
.x1bf{left:2672.219614px;}
.x114{left:2676.251885px;}
.x1dc{left:2714.583614px;}
.x1c0{left:2726.631965px;}
.x115{left:2743.440873px;}
.x1c1{left:2780.572770px;}
.x13e{left:2785.269075px;}
.x116{left:2797.106906px;}
.x1dd{left:2822.458389px;}
.x1c2{left:2834.486239px;}
.x117{left:2864.709678px;}
.x13f{left:2906.124096px;}
.x118{left:2918.369715px;}
.x119{left:2972.035749px;}
.x140{left:3013.875945px;}
.x11a{left:3026.121564px;}
.x11b{left:3093.298558px;}
.x141{left:3135.138754px;}
.x11c{left:3146.964591px;}
.x11d{left:3214.579357px;}
.x142{left:3255.981781px;}
.x11e{left:3268.239394px;}
.x11f{left:3335.416387px;}
.x143{left:3377.256583px;}
.x120{left:3389.502202px;}
.x121{left:3456.697186px;}
.x144{left:3498.519392px;}
.x122{left:3510.363220px;}
.x123{left:3564.449036px;}
.x145{left:3605.851460px;}
.x124{left:3618.109072px;}
@media print{
.v13{vertical-align:-58.204406pt;}
.v15{vertical-align:-35.992818pt;}
.v10{vertical-align:-18.484649pt;}
.vb{vertical-align:-13.562373pt;}
.va{vertical-align:-12.015685pt;}
.vd{vertical-align:-10.557735pt;}
.v2{vertical-align:-9.562667pt;}
.v8{vertical-align:-7.920000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.533999pt;}
.ve{vertical-align:4.595988pt;}
.vc{vertical-align:11.346245pt;}
.v11{vertical-align:15.396574pt;}
.v9{vertical-align:21.168000pt;}
.v1{vertical-align:23.136000pt;}
.v17{vertical-align:27.334964pt;}
.vf{vertical-align:29.793018pt;}
.v16{vertical-align:31.239959pt;}
.v4{vertical-align:33.568000pt;}
.v3{vertical-align:43.136000pt;}
.v14{vertical-align:48.561072pt;}
.v7{vertical-align:70.064000pt;}
.v6{vertical-align:77.306667pt;}
.v5{vertical-align:86.874667pt;}
.lsae{letter-spacing:-1.257077pt;}
.lsa8{letter-spacing:-1.129648pt;}
.lsb4{letter-spacing:-1.126204pt;}
.ls7b{letter-spacing:-0.922042pt;}
.ls7d{letter-spacing:-0.775304pt;}
.ls81{letter-spacing:-0.709600pt;}
.ls83{letter-spacing:-0.663608pt;}
.lsa6{letter-spacing:-0.602708pt;}
.lsa7{letter-spacing:-0.537271pt;}
.lsbe{letter-spacing:-0.529995pt;}
.ls5c{letter-spacing:-0.488348pt;}
.lsa5{letter-spacing:-0.466957pt;}
.lsb7{letter-spacing:-0.366692pt;}
.lsc5{letter-spacing:-0.346944pt;}
.lsaa{letter-spacing:-0.344060pt;}
.lsb1{letter-spacing:-0.341305pt;}
.lsbd{letter-spacing:-0.332045pt;}
.ls5a{letter-spacing:-0.307104pt;}
.lsc3{letter-spacing:-0.304375pt;}
.ls58{letter-spacing:-0.292164pt;}
.ls51{letter-spacing:-0.285524pt;}
.lsb2{letter-spacing:-0.257772pt;}
.lsb8{letter-spacing:-0.254984pt;}
.ls7c{letter-spacing:-0.251864pt;}
.ls77{letter-spacing:-0.199441pt;}
.lsa3{letter-spacing:-0.187519pt;}
.ls53{letter-spacing:-0.185922pt;}
.ls39{letter-spacing:-0.179520pt;}
.lsba{letter-spacing:-0.178838pt;}
.ls78{letter-spacing:-0.152049pt;}
.lsaf{letter-spacing:-0.147061pt;}
.lsad{letter-spacing:-0.139828pt;}
.ls50{letter-spacing:-0.132470pt;}
.lsa4{letter-spacing:-0.116986pt;}
.ls57{letter-spacing:-0.108233pt;}
.lsa1{letter-spacing:-0.086514pt;}
.lsac{letter-spacing:-0.077491pt;}
.lsc8{letter-spacing:-0.053672pt;}
.lsc9{letter-spacing:-0.053638pt;}
.lsbf{letter-spacing:-0.052148pt;}
.lsc0{letter-spacing:-0.025755pt;}
.ls85{letter-spacing:-0.012338pt;}
.ls86{letter-spacing:-0.012330pt;}
.ls5d{letter-spacing:-0.009086pt;}
.ls5e{letter-spacing:-0.009080pt;}
.ls56{letter-spacing:-0.005295pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.000588pt;}
.ls6a{letter-spacing:0.000657pt;}
.ls45{letter-spacing:0.001785pt;}
.ls4{letter-spacing:0.002133pt;}
.ls15{letter-spacing:0.005137pt;}
.ls6f{letter-spacing:0.005990pt;}
.ls87{letter-spacing:0.007177pt;}
.ls6b{letter-spacing:0.008926pt;}
.ls13{letter-spacing:0.009796pt;}
.ls88{letter-spacing:0.012510pt;}
.ls22{letter-spacing:0.014259pt;}
.ls7{letter-spacing:0.015753pt;}
.lsa{letter-spacing:0.018005pt;}
.ls38{letter-spacing:0.018287pt;}
.ls4c{letter-spacing:0.020479pt;}
.ls63{letter-spacing:0.021086pt;}
.ls4b{letter-spacing:0.022167pt;}
.ls49{letter-spacing:0.023872pt;}
.ls48{letter-spacing:0.025577pt;}
.ls4a{letter-spacing:0.030710pt;}
.ls47{letter-spacing:0.032415pt;}
.ls2a{letter-spacing:0.032495pt;}
.lse{letter-spacing:0.034628pt;}
.ls5f{letter-spacing:0.036838pt;}
.ls25{letter-spacing:0.039962pt;}
.ls3a{letter-spacing:0.040320pt;}
.ls46{letter-spacing:0.040941pt;}
.ls3e{letter-spacing:0.041529pt;}
.ls44{letter-spacing:0.042826pt;}
.ls2d{letter-spacing:0.046985pt;}
.ls14{letter-spacing:0.048128pt;}
.ls3b{letter-spacing:0.048450pt;}
.ls66{letter-spacing:0.049570pt;}
.ls1a{letter-spacing:0.053461pt;}
.ls69{letter-spacing:0.054903pt;}
.ls3f{letter-spacing:0.054980pt;}
.ls2b{letter-spacing:0.056192pt;}
.ls1c{letter-spacing:0.056909pt;}
.ls36{letter-spacing:0.057600pt;}
.ls41{letter-spacing:0.061397pt;}
.lsc4{letter-spacing:0.073859pt;}
.ls52{letter-spacing:0.078021pt;}
.ls74{letter-spacing:0.107965pt;}
.lsbb{letter-spacing:0.114939pt;}
.ls7a{letter-spacing:0.126370pt;}
.ls2e{letter-spacing:0.166560pt;}
.ls9c{letter-spacing:0.168091pt;}
.lsc6{letter-spacing:0.171344pt;}
.ls54{letter-spacing:0.187582pt;}
.lsbc{letter-spacing:0.212849pt;}
.lsc7{letter-spacing:0.223632pt;}
.ls35{letter-spacing:0.230400pt;}
.ls59{letter-spacing:0.234063pt;}
.ls5b{letter-spacing:0.268923pt;}
.lsa2{letter-spacing:0.270624pt;}
.ls7f{letter-spacing:0.367941pt;}
.ls55{letter-spacing:0.378485pt;}
.lsc1{letter-spacing:0.451241pt;}
.ls82{letter-spacing:0.611045pt;}
.lsb6{letter-spacing:0.614391pt;}
.ls80{letter-spacing:0.632946pt;}
.lsc2{letter-spacing:0.687503pt;}
.lsb9{letter-spacing:0.745526pt;}
.ls79{letter-spacing:0.847578pt;}
.ls84{letter-spacing:0.878765pt;}
.lsa9{letter-spacing:0.905785pt;}
.ls7e{letter-spacing:1.020598pt;}
.lsb0{letter-spacing:1.102095pt;}
.lsab{letter-spacing:1.170976pt;}
.lsb3{letter-spacing:1.302643pt;}
.ls72{letter-spacing:1.751620pt;}
.lsd1{letter-spacing:2.337896pt;}
.lsda{letter-spacing:2.422910pt;}
.lsd3{letter-spacing:2.507925pt;}
.lse3{letter-spacing:2.550432pt;}
.lsd6{letter-spacing:2.592939pt;}
.lsd2{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.666010pt;}
.ls1{letter-spacing:2.671343pt;}
.lsd4{letter-spacing:2.677954pt;}
.ls6c{letter-spacing:2.692109pt;}
.lsd5{letter-spacing:2.762968pt;}
.lsdf{letter-spacing:2.890490pt;}
.lsdb{letter-spacing:2.932677pt;}
.ls42{letter-spacing:3.054985pt;}
.lsdc{letter-spacing:3.423343pt;}
.lsd7{letter-spacing:3.663343pt;}
.lsde{letter-spacing:3.668677pt;}
.ls16{letter-spacing:4.314471pt;}
.lsb{letter-spacing:4.319804pt;}
.ls43{letter-spacing:5.068314pt;}
.ls1e{letter-spacing:6.410172pt;}
.ls17{letter-spacing:6.426795pt;}
.ls6{letter-spacing:6.795733pt;}
.ls9b{letter-spacing:9.838985pt;}
.lscc{letter-spacing:10.626133pt;}
.lsa0{letter-spacing:10.666172pt;}
.lsca{letter-spacing:10.688751pt;}
.lscb{letter-spacing:10.694084pt;}
.ls60{letter-spacing:13.514010pt;}
.ls8f{letter-spacing:14.154957pt;}
.ls12{letter-spacing:14.208495pt;}
.ls65{letter-spacing:14.217651pt;}
.ls89{letter-spacing:14.218795pt;}
.ls70{letter-spacing:14.248965pt;}
.ls71{letter-spacing:14.276109pt;}
.ls97{letter-spacing:15.360495pt;}
.ls3{letter-spacing:15.937067pt;}
.ls2{letter-spacing:15.942400pt;}
.ls28{letter-spacing:15.950259pt;}
.ls61{letter-spacing:15.972838pt;}
.ls64{letter-spacing:16.862776pt;}
.ls27{letter-spacing:17.692954pt;}
.lscd{letter-spacing:17.739537pt;}
.ls9{letter-spacing:17.744495pt;}
.ls10{letter-spacing:17.749828pt;}
.ls21{letter-spacing:17.752730pt;}
.ls8c{letter-spacing:17.764318pt;}
.ls8d{letter-spacing:17.765461pt;}
.ls11{letter-spacing:18.485138pt;}
.lsc{letter-spacing:18.490471pt;}
.ls92{letter-spacing:18.607343pt;}
.ls68{letter-spacing:18.633443pt;}
.ls93{letter-spacing:18.922010pt;}
.ls24{letter-spacing:19.062025pt;}
.ls40{letter-spacing:19.132314pt;}
.ls94{letter-spacing:19.204677pt;}
.ls20{letter-spacing:19.468954pt;}
.ls26{letter-spacing:20.255804pt;}
.ls29{letter-spacing:20.261138pt;}
.ls62{letter-spacing:20.404109pt;}
.lsd{letter-spacing:20.576495pt;}
.ls19{letter-spacing:20.581828pt;}
.ls8a{letter-spacing:20.594185pt;}
.ls8{letter-spacing:22.031804pt;}
.ls2c{letter-spacing:22.049067pt;}
.ls95{letter-spacing:22.703343pt;}
.ls1d{letter-spacing:24.123162pt;}
.lscf{letter-spacing:28.033067pt;}
.lse5{letter-spacing:28.436677pt;}
.lse4{letter-spacing:28.442010pt;}
.lsd8{letter-spacing:28.682010pt;}
.lse0{letter-spacing:28.763733pt;}
.lsd0{letter-spacing:28.913067pt;}
.lsd9{letter-spacing:29.167343pt;}
.lsdd{letter-spacing:29.172677pt;}
.ls96{letter-spacing:29.586133pt;}
.ls23{letter-spacing:31.886293pt;}
.ls18{letter-spacing:32.041677pt;}
.ls4e{letter-spacing:41.635433pt;}
.ls4d{letter-spacing:41.638753pt;}
.lsf{letter-spacing:45.231010pt;}
.ls4f{letter-spacing:53.249101pt;}
.lse6{letter-spacing:53.940677pt;}
.ls75{letter-spacing:59.624534pt;}
.ls8b{letter-spacing:74.448751pt;}
.ls90{letter-spacing:74.454084pt;}
.ls76{letter-spacing:76.260525pt;}
.lse1{letter-spacing:79.041067pt;}
.lse2{letter-spacing:79.921067pt;}
.ls91{letter-spacing:98.198084pt;}
.ls9e{letter-spacing:115.794684pt;}
.ls9d{letter-spacing:115.837254pt;}
.ls6d{letter-spacing:118.495010pt;}
.ls9f{letter-spacing:148.185071pt;}
.ls37{letter-spacing:173.251200pt;}
.ls34{letter-spacing:175.094400pt;}
.ls99{letter-spacing:181.721284pt;}
.ls98{letter-spacing:184.132117pt;}
.ls8e{letter-spacing:215.542084pt;}
.ls30{letter-spacing:220.358784pt;}
.ls32{letter-spacing:223.670784pt;}
.ls9a{letter-spacing:234.159603pt;}
.ls31{letter-spacing:252.758400pt;}
.ls33{letter-spacing:254.342400pt;}
.ls2f{letter-spacing:255.619200pt;}
.ls1b{letter-spacing:482.486084pt;}
.lsce{letter-spacing:629.952751pt;}
.ls3d{letter-spacing:660.425661pt;}
.ls3c{letter-spacing:661.422352pt;}
.ls6e{letter-spacing:869.515418pt;}
.ls67{letter-spacing:941.712751pt;}
.ls73{letter-spacing:1238.054801pt;}
.ls1f{letter-spacing:1405.387418pt;}
.ws46{word-spacing:-57.600000pt;}
.ws2{word-spacing:-41.508355pt;}
.ws36{word-spacing:-40.552038pt;}
.ws52{word-spacing:-31.894122pt;}
.ws1{word-spacing:-31.880533pt;}
.ws37{word-spacing:-29.967701pt;}
.wsff{word-spacing:-26.566933pt;}
.ws15a{word-spacing:-25.504000pt;}
.ws148{word-spacing:-25.461813pt;}
.ws115{word-spacing:-25.334291pt;}
.ws113{word-spacing:-25.249277pt;}
.ws111{word-spacing:-25.206770pt;}
.ws126{word-spacing:-25.164262pt;}
.ws14f{word-spacing:-25.121755pt;}
.ws141{word-spacing:-24.994234pt;}
.ws29{word-spacing:-23.867371pt;}
.ws10{word-spacing:-23.783300pt;}
.ws63{word-spacing:-23.781825pt;}
.ws12c{word-spacing:-22.571323pt;}
.ws93{word-spacing:-22.098202pt;}
.ws6a{word-spacing:-21.936548pt;}
.wse6{word-spacing:-21.168674pt;}
.ws73{word-spacing:-21.041152pt;}
.wsdf{word-spacing:-20.977391pt;}
.wsef{word-spacing:-20.849869pt;}
.ws6f{word-spacing:-20.827463pt;}
.ws85{word-spacing:-20.722347pt;}
.wsc5{word-spacing:-20.561740pt;}
.ws67{word-spacing:-20.531063pt;}
.ws91{word-spacing:-20.304819pt;}
.ws92{word-spacing:-20.276019pt;}
.ws58{word-spacing:-20.148497pt;}
.ws1f{word-spacing:-20.084736pt;}
.wse1{word-spacing:-19.957214pt;}
.wsbe{word-spacing:-19.816304pt;}
.ws8f{word-spacing:-19.702170pt;}
.wsea{word-spacing:-19.447125pt;}
.wsd9{word-spacing:-19.383364pt;}
.ws8e{word-spacing:-19.319603pt;}
.ws96{word-spacing:-19.239535pt;}
.wsc3{word-spacing:-19.224065pt;}
.wsc0{word-spacing:-19.212369pt;}
.ws89{word-spacing:-19.000798pt;}
.ws84{word-spacing:-18.937037pt;}
.wsb9{word-spacing:-18.809515pt;}
.ws82{word-spacing:-18.745754pt;}
.wsa5{word-spacing:-18.681993pt;}
.wsd{word-spacing:-18.618231pt;}
.wsba{word-spacing:-18.554470pt;}
.wsc7{word-spacing:-18.490709pt;}
.ws9{word-spacing:-18.426948pt;}
.wsb3{word-spacing:-18.378667pt;}
.wsb2{word-spacing:-18.363187pt;}
.ws66{word-spacing:-18.299426pt;}
.wsce{word-spacing:-18.235665pt;}
.ws2a{word-spacing:-18.171904pt;}
.ws19{word-spacing:-18.108143pt;}
.ws94{word-spacing:-18.044382pt;}
.wsb4{word-spacing:-17.916860pt;}
.ws57{word-spacing:-17.853099pt;}
.wsf{word-spacing:-17.789338pt;}
.wsa8{word-spacing:-17.732557pt;}
.wsaf{word-spacing:-17.723955pt;}
.wsaa{word-spacing:-17.713579pt;}
.wsad{word-spacing:-17.661815pt;}
.ws4e{word-spacing:-17.598054pt;}
.ws4a{word-spacing:-17.534293pt;}
.ws90{word-spacing:-17.470532pt;}
.wse7{word-spacing:-17.406771pt;}
.ws13{word-spacing:-17.215488pt;}
.wsa{word-spacing:-17.151727pt;}
.ws23{word-spacing:-17.087966pt;}
.ws81{word-spacing:-17.024205pt;}
.ws7{word-spacing:-16.960444pt;}
.wsd8{word-spacing:-16.896683pt;}
.ws71{word-spacing:-16.769161pt;}
.ws16{word-spacing:-16.705399pt;}
.ws31{word-spacing:-16.641638pt;}
.ws117{word-spacing:-16.577808pt;}
.ws149{word-spacing:-16.540571pt;}
.wscf{word-spacing:-16.514116pt;}
.ws13a{word-spacing:-16.498063pt;}
.wsa2{word-spacing:-16.450355pt;}
.ws167{word-spacing:-16.407779pt;}
.ws34{word-spacing:-16.322833pt;}
.ws103{word-spacing:-16.205829pt;}
.ws32{word-spacing:-16.195311pt;}
.ws102{word-spacing:-16.099562pt;}
.ws74{word-spacing:-16.067789pt;}
.ws0{word-spacing:-16.004028pt;}
.ws98{word-spacing:-15.976917pt;}
.ws8d{word-spacing:-15.947486pt;}
.ws3c{word-spacing:-15.946180pt;}
.ws3{word-spacing:-15.940267pt;}
.ws65{word-spacing:-15.876506pt;}
.ws2c{word-spacing:-15.812745pt;}
.ws27{word-spacing:-15.685222pt;}
.wsbb{word-spacing:-15.631514pt;}
.ws30{word-spacing:-15.621461pt;}
.wse{word-spacing:-15.557700pt;}
.wsd4{word-spacing:-15.493939pt;}
.ws80{word-spacing:-15.430178pt;}
.ws12{word-spacing:-15.366417pt;}
.wsbc{word-spacing:-15.348847pt;}
.ws48{word-spacing:-15.302656pt;}
.ws95{word-spacing:-15.238895pt;}
.ws8c{word-spacing:-15.175134pt;}
.ws8b{word-spacing:-15.111373pt;}
.wsd0{word-spacing:-15.047612pt;}
.wsf1{word-spacing:-14.920090pt;}
.ws105{word-spacing:-14.877483pt;}
.ws6{word-spacing:-14.856329pt;}
.wsb5{word-spacing:-14.792567pt;}
.wsb6{word-spacing:-14.776678pt;}
.ws17{word-spacing:-14.728806pt;}
.ws24{word-spacing:-14.665045pt;}
.ws70{word-spacing:-14.601284pt;}
.ws6c{word-spacing:-14.545467pt;}
.ws68{word-spacing:-14.537523pt;}
.wsae{word-spacing:-14.473762pt;}
.ws8{word-spacing:-14.410001pt;}
.ws20{word-spacing:-14.346240pt;}
.ws1d{word-spacing:-14.282479pt;}
.ws28{word-spacing:-14.218718pt;}
.wsb1{word-spacing:-14.185310pt;}
.wsac{word-spacing:-14.169600pt;}
.wsd1{word-spacing:-14.154957pt;}
.wsfe{word-spacing:-14.133609pt;}
.ws64{word-spacing:-14.091196pt;}
.wsfd{word-spacing:-14.080475pt;}
.ws1a{word-spacing:-13.899913pt;}
.wsf5{word-spacing:-13.814805pt;}
.ws2e{word-spacing:-13.772390pt;}
.ws4b{word-spacing:-13.708629pt;}
.wsf6{word-spacing:-13.708538pt;}
.ws2f{word-spacing:-13.644868pt;}
.ws5a{word-spacing:-13.581107pt;}
.ws69{word-spacing:-13.517346pt;}
.wseb{word-spacing:-13.453585pt;}
.wsf4{word-spacing:-13.442868pt;}
.ws2d{word-spacing:-13.389824pt;}
.wsfc{word-spacing:-13.336601pt;}
.wsa3{word-spacing:-13.326063pt;}
.wsf9{word-spacing:-13.283467pt;}
.wsb{word-spacing:-13.262302pt;}
.wsd5{word-spacing:-13.198541pt;}
.ws83{word-spacing:-13.134780pt;}
.wsb7{word-spacing:-13.071019pt;}
.ws49{word-spacing:-13.007258pt;}
.ws18{word-spacing:-12.943497pt;}
.ws25{word-spacing:-12.879735pt;}
.ws4c{word-spacing:-12.815974pt;}
.ws3e{word-spacing:-12.752213pt;}
.wsc{word-spacing:-12.624691pt;}
.ws3d{word-spacing:-12.560930pt;}
.wsca{word-spacing:-12.480783pt;}
.wsee{word-spacing:-12.433408pt;}
.wsa6{word-spacing:-12.369647pt;}
.wscc{word-spacing:-12.320419pt;}
.wsc8{word-spacing:-12.312692pt;}
.ws4d{word-spacing:-12.305886pt;}
.ws15{word-spacing:-12.242125pt;}
.ws88{word-spacing:-12.178364pt;}
.wsf3{word-spacing:-12.114603pt;}
.ws35{word-spacing:-11.987081pt;}
.wse0{word-spacing:-11.923319pt;}
.ws26{word-spacing:-11.859558pt;}
.wsbd{word-spacing:-11.855514pt;}
.ws7c{word-spacing:-11.833215pt;}
.wse9{word-spacing:-11.668275pt;}
.wsfa{word-spacing:-11.636317pt;}
.ws1e{word-spacing:-11.604514pt;}
.ws5e{word-spacing:-11.540753pt;}
.ws60{word-spacing:-11.482180pt;}
.ws62{word-spacing:-11.476992pt;}
.ws75{word-spacing:-11.413231pt;}
.ws42{word-spacing:-11.349470pt;}
.wsf8{word-spacing:-11.317514pt;}
.ws21{word-spacing:-11.285709pt;}
.ws3f{word-spacing:-11.158187pt;}
.ws40{word-spacing:-11.030665pt;}
.ws22{word-spacing:-10.839381pt;}
.wsa1{word-spacing:-10.775620pt;}
.ws4{word-spacing:-10.678690pt;}
.ws4f{word-spacing:-10.648098pt;}
.ws72{word-spacing:-10.584337pt;}
.wsa0{word-spacing:-10.501333pt;}
.ws9f{word-spacing:-10.456815pt;}
.wsf7{word-spacing:-10.414238pt;}
.ws47{word-spacing:-10.408320pt;}
.wsf2{word-spacing:-10.393054pt;}
.ws5d{word-spacing:-10.201771pt;}
.ws2b{word-spacing:-10.010487pt;}
.wsfb{word-spacing:-9.936033pt;}
.ws104{word-spacing:-9.882899pt;}
.ws33{word-spacing:-9.819204pt;}
.ws5{word-spacing:-9.755443pt;}
.ws14{word-spacing:-9.691682pt;}
.wse8{word-spacing:-9.627921pt;}
.ws10b{word-spacing:-9.604847pt;}
.ws1b{word-spacing:-9.564160pt;}
.ws97{word-spacing:-9.500399pt;}
.ws11{word-spacing:-9.372877pt;}
.ws108{word-spacing:-9.298427pt;}
.ws107{word-spacing:-9.245293pt;}
.wsb8{word-spacing:-9.117833pt;}
.ws7f{word-spacing:-8.990310pt;}
.ws106{word-spacing:-8.820222pt;}
.wsd3{word-spacing:-8.799027pt;}
.wsf0{word-spacing:-8.735266pt;}
.wsda{word-spacing:-8.607744pt;}
.wsa4{word-spacing:-8.416461pt;}
.wsab{word-spacing:-8.324267pt;}
.ws8a{word-spacing:-8.161417pt;}
.ws101{word-spacing:-7.545009pt;}
.ws100{word-spacing:-7.491875pt;}
.ws9b{word-spacing:-6.434742pt;}
.ws9d{word-spacing:-6.330558pt;}
.ws99{word-spacing:-6.326776pt;}
.ws79{word-spacing:-4.662555pt;}
.ws76{word-spacing:-4.659677pt;}
.ws55{word-spacing:-0.063761pt;}
.ws44{word-spacing:-0.057600pt;}
.ws41{word-spacing:-0.042507pt;}
.ws7d{word-spacing:-0.032421pt;}
.ws1c{word-spacing:0.000000pt;}
.ws166{word-spacing:1.424290pt;}
.ws135{word-spacing:1.487752pt;}
.ws13c{word-spacing:1.572766pt;}
.ws158{word-spacing:1.900171pt;}
.ws119{word-spacing:1.927931pt;}
.ws15c{word-spacing:2.069562pt;}
.ws128{word-spacing:2.584571pt;}
.ws124{word-spacing:2.589904pt;}
.ws116{word-spacing:2.743931pt;}
.ws151{word-spacing:2.780143pt;}
.ws14d{word-spacing:2.849637pt;}
.ws10f{word-spacing:2.854971pt;}
.ws152{word-spacing:2.978597pt;}
.ws14e{word-spacing:3.031931pt;}
.ws110{word-spacing:3.101264pt;}
.ws112{word-spacing:3.154597pt;}
.ws114{word-spacing:3.223931pt;}
.ws10e{word-spacing:3.267237pt;}
.ws14c{word-spacing:3.272571pt;}
.ws150{word-spacing:3.299237pt;}
.ws10c{word-spacing:4.427307pt;}
.ws10a{word-spacing:4.427691pt;}
.ws109{word-spacing:4.888316pt;}
.ws143{word-spacing:5.380020pt;}
.ws13e{word-spacing:5.865354pt;}
.ws13f{word-spacing:5.865994pt;}
.ws11f{word-spacing:6.163544pt;}
.ws13b{word-spacing:6.248558pt;}
.ws162{word-spacing:6.333573pt;}
.ws130{word-spacing:6.357366pt;}
.ws15f{word-spacing:6.376080pt;}
.ws12d{word-spacing:6.461094pt;}
.ws12b{word-spacing:6.588616pt;}
.ws138{word-spacing:6.601354pt;}
.ws160{word-spacing:6.645524pt;}
.ws132{word-spacing:6.716138pt;}
.ws154{word-spacing:6.745354pt;}
.ws144{word-spacing:6.750687pt;}
.ws137{word-spacing:6.758645pt;}
.ws140{word-spacing:6.843405pt;}
.ws133{word-spacing:6.846687pt;}
.ws139{word-spacing:6.902481pt;}
.ws10d{word-spacing:6.916020pt;}
.ws147{word-spacing:6.928674pt;}
.ws11e{word-spacing:6.943780pt;}
.ws156{word-spacing:6.964020pt;}
.ws12f{word-spacing:6.971181pt;}
.ws120{word-spacing:7.022502pt;}
.ws164{word-spacing:7.038687pt;}
.ws145{word-spacing:7.044020pt;}
.ws13d{word-spacing:7.070687pt;}
.ws153{word-spacing:7.098702pt;}
.ws11d{word-spacing:7.226224pt;}
.ws121{word-spacing:7.352466pt;}
.ws5b{word-spacing:7.371497pt;}
.ws15e{word-spacing:7.375873pt;}
.ws123{word-spacing:7.501799pt;}
.ws125{word-spacing:7.535873pt;}
.ws14b{word-spacing:7.679780pt;}
.ws161{word-spacing:7.763132pt;}
.ws14a{word-spacing:7.795132pt;}
.ws142{word-spacing:7.970717pt;}
.ws59{word-spacing:10.406287pt;}
.wsd2{word-spacing:10.676087pt;}
.ws11a{word-spacing:12.089446pt;}
.ws11b{word-spacing:12.093867pt;}
.ws122{word-spacing:12.824533pt;}
.ws118{word-spacing:12.973867pt;}
.ws11c{word-spacing:13.235200pt;}
.wsa9{word-spacing:14.091196pt;}
.ws77{word-spacing:16.130762pt;}
.ws54{word-spacing:16.571621pt;}
.wsa7{word-spacing:17.598054pt;}
.ws3b{word-spacing:20.254421pt;}
.ws56{word-spacing:21.467621pt;}
.ws5c{word-spacing:21.619062pt;}
.ws39{word-spacing:22.025088pt;}
.ws5f{word-spacing:23.075329pt;}
.ws9a{word-spacing:23.457022pt;}
.wsd7{word-spacing:25.104954pt;}
.ws50{word-spacing:26.904396pt;}
.ws61{word-spacing:27.776830pt;}
.ws6d{word-spacing:31.784001pt;}
.ws163{word-spacing:31.873209pt;}
.wsc9{word-spacing:48.554245pt;}
.ws78{word-spacing:56.781076pt;}
.ws38{word-spacing:61.981107pt;}
.ws15b{word-spacing:63.101867pt;}
.ws155{word-spacing:63.833446pt;}
.ws127{word-spacing:63.837867pt;}
.ws159{word-spacing:63.981867pt;}
.ws15d{word-spacing:64.077867pt;}
.ws157{word-spacing:64.152533pt;}
.ws165{word-spacing:64.243200pt;}
.wsc1{word-spacing:79.609875pt;}
.ws9c{word-spacing:79.684745pt;}
.wsed{word-spacing:81.486643pt;}
.ws7a{word-spacing:82.855596pt;}
.wsdd{word-spacing:94.916311pt;}
.wsdc{word-spacing:97.045595pt;}
.wsec{word-spacing:97.426910pt;}
.wsde{word-spacing:97.533419pt;}
.wsdb{word-spacing:100.817989pt;}
.ws7e{word-spacing:107.091013pt;}
.wse4{word-spacing:111.964303pt;}
.wse5{word-spacing:114.078260pt;}
.ws129{word-spacing:114.109867pt;}
.wse3{word-spacing:114.476030pt;}
.ws12a{word-spacing:114.845867pt;}
.ws136{word-spacing:114.989867pt;}
.ws9e{word-spacing:115.018219pt;}
.ws131{word-spacing:115.091200pt;}
.ws146{word-spacing:115.160533pt;}
.ws12e{word-spacing:115.213867pt;}
.ws134{word-spacing:115.283200pt;}
.wse2{word-spacing:118.925986pt;}
.wsb0{word-spacing:143.494690pt;}
.ws45{word-spacing:149.068800pt;}
.ws43{word-spacing:149.100192pt;}
.ws86{word-spacing:153.505804pt;}
.wscb{word-spacing:157.888591pt;}
.ws53{word-spacing:181.951519pt;}
.wscd{word-spacing:225.150295pt;}
.wsc2{word-spacing:250.859153pt;}
.ws51{word-spacing:308.247535pt;}
.wsc4{word-spacing:351.681514pt;}
.wsd6{word-spacing:406.012713pt;}
.ws7b{word-spacing:501.503416pt;}
.ws6e{word-spacing:613.161779pt;}
.ws6b{word-spacing:658.467770pt;}
.ws87{word-spacing:1228.284528pt;}
.ws3a{word-spacing:1580.231723pt;}
.wsbf{word-spacing:3871.139442pt;}
.wsc6{word-spacing:3875.667940pt;}
._3e{margin-left:-23362.674018pt;}
._38{margin-left:-22887.629187pt;}
._4e{margin-left:-22390.503540pt;}
._3b{margin-left:-22012.372843pt;}
._48{margin-left:-21858.034960pt;}
._4b{margin-left:-21107.422885pt;}
._33{margin-left:-13966.266614pt;}
._43{margin-left:-13335.289570pt;}
._31{margin-left:-12652.696615pt;}
._41{margin-left:-12086.075938pt;}
._3f{margin-left:-11679.507468pt;}
._39{margin-left:-11427.359961pt;}
._4f{margin-left:-11196.247755pt;}
._3c{margin-left:-10995.259045pt;}
._49{margin-left:-10916.016004pt;}
._4c{margin-left:-10545.952357pt;}
._36{margin-left:-9398.510115pt;}
._46{margin-left:-8873.162104pt;}
._34{margin-left:-6953.676817pt;}
._44{margin-left:-6640.348688pt;}
._32{margin-left:-6286.938081pt;}
._42{margin-left:-6007.393513pt;}
._40{margin-left:-5814.574011pt;}
._3a{margin-left:-5688.500258pt;}
._50{margin-left:-5575.748358pt;}
._3d{margin-left:-5473.348181pt;}
._4a{margin-left:-5436.509623pt;}
._4d{margin-left:-5251.948230pt;}
._35{margin-left:-5155.327539pt;}
._45{margin-left:-4902.868077pt;}
._37{margin-left:-4669.949385pt;}
._47{margin-left:-4409.332625pt;}
._51{margin-left:-1471.285713pt;}
._52{margin-left:-1273.220506pt;}
._25{margin-left:-713.789532pt;}
._1d{margin-left:-365.031290pt;}
._26{margin-left:-268.540701pt;}
._29{margin-left:-214.412412pt;}
._27{margin-left:-160.284122pt;}
._28{margin-left:-139.331236pt;}
._30{margin-left:-13.827081pt;}
._1{margin-left:-10.860609pt;}
._3{margin-left:-8.033875pt;}
._5f{margin-left:-7.024239pt;}
._c{margin-left:-6.051575pt;}
._4{margin-left:-4.295782pt;}
._2{margin-left:-2.529183pt;}
._0{margin-left:-0.898381pt;}
._1a{width:0.940860pt;}
._17{width:1.857971pt;}
._18{width:3.439898pt;}
._21{width:4.516338pt;}
._1b{width:5.720236pt;}
._1e{width:9.775838pt;}
._56{width:11.030665pt;}
._1f{width:12.641221pt;}
._2c{width:14.474407pt;}
._15{width:16.132195pt;}
._20{width:17.348770pt;}
._22{width:18.426948pt;}
._8{width:19.319603pt;}
._12{width:20.211613pt;}
._5{width:21.232435pt;}
._b{width:22.698940pt;}
._16{width:23.591595pt;}
._6{width:24.548011pt;}
._7{width:25.823232pt;}
._f{width:27.098453pt;}
._62{width:28.057845pt;}
._14{width:28.947524pt;}
._9{width:30.073964pt;}
._a{width:31.497967pt;}
._e{width:32.390622pt;}
._10{width:33.799091pt;}
._11{width:35.068587pt;}
._19{width:36.558882pt;}
._2f{width:37.457929pt;}
._13{width:38.985011pt;}
._d{width:40.169472pt;}
._2b{width:41.954782pt;}
._2d{width:44.377702pt;}
._57{width:63.697306pt;}
._60{width:85.387333pt;}
._5e{width:88.308432pt;}
._59{width:113.367177pt;}
._5b{width:120.188965pt;}
._5c{width:129.307443pt;}
._58{width:136.129232pt;}
._5d{width:145.247710pt;}
._54{width:152.059873pt;}
._5a{width:161.187977pt;}
._1c{width:169.583578pt;}
._53{width:191.176959pt;}
._61{width:335.912694pt;}
._24{width:442.111355pt;}
._2e{width:447.922613pt;}
._23{width:724.277415pt;}
._55{width:885.648270pt;}
._2a{width:1273.591609pt;}
.fs16{font-size:15.903335pt;}
.fs17{font-size:15.913157pt;}
.fs1e{font-size:21.593093pt;}
.fs1f{font-size:21.606000pt;}
.fs26{font-size:27.421759pt;}
.fs20{font-size:28.564631pt;}
.fs2f{font-size:30.716267pt;}
.fs31{font-size:31.172800pt;}
.fs2e{font-size:31.405333pt;}
.fs30{font-size:31.563200pt;}
.fs33{font-size:31.880533pt;}
.fs1a{font-size:32.420597pt;}
.fs2d{font-size:32.626133pt;}
.fsc{font-size:32.904822pt;}
.fs1b{font-size:32.913647pt;}
.fs14{font-size:34.921477pt;}
.fsb{font-size:35.437913pt;}
.fse{font-size:36.560914pt;}
.fs9{font-size:37.440000pt;}
.fs6{font-size:37.555200pt;}
.fs13{font-size:38.413625pt;}
.fs11{font-size:41.905772pt;}
.fs2a{font-size:42.022838pt;}
.fs2b{font-size:42.049212pt;}
.fs2{font-size:42.507200pt;}
.fsa{font-size:42.525496pt;}
.fsd{font-size:43.873097pt;}
.fs1c{font-size:46.275436pt;}
.fs2c{font-size:46.859939pt;}
.fs25{font-size:51.200000pt;}
.fs18{font-size:52.359360pt;}
.fs19{font-size:52.429172pt;}
.fs32{font-size:53.133867pt;}
.fs29{font-size:53.775176pt;}
.fs12{font-size:55.874363pt;}
.fs5{font-size:57.600000pt;}
.fs4{font-size:57.715200pt;}
.fs10{font-size:58.181867pt;}
.fsf{font-size:58.497462pt;}
.fs1d{font-size:63.315712pt;}
.fs0{font-size:63.761067pt;}
.fs23{font-size:65.571224pt;}
.fs24{font-size:65.611143pt;}
.fs8{font-size:67.392000pt;}
.fs21{font-size:67.632438pt;}
.fs22{font-size:69.175685pt;}
.fs27{font-size:70.176586pt;}
.fs28{font-size:70.218343pt;}
.fs15{font-size:74.918933pt;}
.fs3{font-size:85.546133pt;}
.fs7{font-size:115.200000pt;}
.fs1{font-size:148.775467pt;}
.y2b3{bottom:-638.624838pt;}
.y2b2{bottom:-626.995485pt;}
.y2b1{bottom:-614.993226pt;}
.y2b0{bottom:-602.985640pt;}
.y2af{bottom:-590.983380pt;}
.y2ae{bottom:-578.981121pt;}
.y2ad{bottom:-566.973534pt;}
.y2ac{bottom:-554.971275pt;}
.y2ab{bottom:-543.341922pt;}
.y2aa{bottom:-531.339663pt;}
.y2a9{bottom:-519.332076pt;}
.y2a8{bottom:-507.329817pt;}
.y2a7{bottom:-495.327557pt;}
.y2a6{bottom:-483.319971pt;}
.y3aa{bottom:-480.318903pt;}
.y2a5{bottom:-471.317711pt;}
.y3a9{bottom:-468.346775pt;}
.y2a4{bottom:-459.688358pt;}
.y3a8{bottom:-456.386788pt;}
.y2a3{bottom:-447.686099pt;}
.y3a7{bottom:-444.414660pt;}
.y2a2{bottom:-435.678512pt;}
.y3a6{bottom:-432.442532pt;}
.y2a1{bottom:-423.676253pt;}
.y3a5{bottom:-420.470403pt;}
.y2a0{bottom:-411.658012pt;}
.y3a4{bottom:-408.498275pt;}
.y29f{bottom:-399.655753pt;}
.y3a3{bottom:-396.526146pt;}
.y29e{bottom:-388.026400pt;}
.y3a2{bottom:-384.554018pt;}
.y29d{bottom:-376.018813pt;}
.y3a1{bottom:-372.581889pt;}
.y29c{bottom:-364.016554pt;}
.y3a0{bottom:-360.609761pt;}
.y29b{bottom:-352.014294pt;}
.y39f{bottom:-348.637633pt;}
.y29a{bottom:-340.006708pt;}
.y39e{bottom:-336.665504pt;}
.y299{bottom:-328.004448pt;}
.y39d{bottom:-324.693376pt;}
.y298{bottom:-316.002189pt;}
.y39c{bottom:-312.721247pt;}
.y297{bottom:-304.372836pt;}
.y39b{bottom:-300.767332pt;}
.y296{bottom:-292.365250pt;}
.y39a{bottom:-288.795204pt;}
.y295{bottom:-280.362990pt;}
.y399{bottom:-276.823075pt;}
.y294{bottom:-268.360731pt;}
.y398{bottom:-264.850947pt;}
.y293{bottom:-259.352377pt;}
.y397{bottom:-252.878818pt;}
.y292{bottom:-250.344024pt;}
.y396{bottom:-240.906690pt;}
.y395{bottom:-228.934561pt;}
.y394{bottom:-216.962433pt;}
.y393{bottom:-204.990305pt;}
.y392{bottom:-193.018176pt;}
.y391{bottom:-181.046048pt;}
.y390{bottom:-169.073919pt;}
.y38f{bottom:-157.101791pt;}
.y26d{bottom:-155.439380pt;}
.y26b{bottom:-153.937059pt;}
.y38e{bottom:-145.147876pt;}
.y38d{bottom:-133.175747pt;}
.y291{bottom:-123.172286pt;}
.y38c{bottom:-120.772574pt;}
.y38b{bottom:-108.802267pt;}
.y38a{bottom:-99.819528pt;}
.y389{bottom:-90.836789pt;}
.y26e{bottom:-90.532357pt;}
.y26c{bottom:-90.532317pt;}
.y227{bottom:-68.023148pt;}
.y2b4{bottom:-59.404751pt;}
.y111{bottom:-53.998860pt;}
.y102{bottom:-50.031824pt;}
.y110{bottom:-46.074333pt;}
.y109{bottom:-41.918885pt;}
.yf8{bottom:-39.280697pt;}
.y101{bottom:-36.642508pt;}
.y120{bottom:-34.946381pt;}
.y11f{bottom:-31.167758pt;}
.y103{bottom:-30.414108pt;}
.y108{bottom:-28.529569pt;}
.yf7{bottom:-25.702968pt;}
.y11d{bottom:-23.997172pt;}
.y10f{bottom:-17.590154pt;}
.y271{bottom:-15.510203pt;}
.yf9{bottom:-14.753468pt;}
.yfb{bottom:-9.665918pt;}
.y116{bottom:-7.771419pt;}
.yde{bottom:-6.829357pt;}
.yfa{bottom:-4.191168pt;}
.yf3{bottom:-2.871866pt;}
.y2e0{bottom:-2.297441pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:1.283582pt;}
.y45b{bottom:1.344125pt;}
.y497{bottom:1.364102pt;}
.y44e{bottom:1.374278pt;}
.y466{bottom:1.381186pt;}
.y444{bottom:1.427699pt;}
.y229{bottom:3.626543pt;}
.y364{bottom:4.070291pt;}
.y1e6{bottom:4.885814pt;}
.y2fa{bottom:4.969499pt;}
.y3bd{bottom:5.017943pt;}
.yf2{bottom:5.241072pt;}
.y362{bottom:5.351856pt;}
.y409{bottom:5.361029pt;}
.y31c{bottom:6.297600pt;}
.y1cf{bottom:6.426018pt;}
.y1d7{bottom:6.426021pt;}
.ydd{bottom:6.559959pt;}
.y3ef{bottom:8.356880pt;}
.y403{bottom:8.356884pt;}
.y3f7{bottom:8.356885pt;}
.y79{bottom:8.380800pt;}
.y1a7{bottom:8.736600pt;}
.y121{bottom:9.019695pt;}
.yc2{bottom:9.184442pt;}
.y2c7{bottom:9.808386pt;}
.y45a{bottom:11.842849pt;}
.y496{bottom:12.018868pt;}
.y44d{bottom:12.108523pt;}
.y465{bottom:12.169389pt;}
.y443{bottom:12.579210pt;}
.y1de{bottom:12.602169pt;}
.y3e3{bottom:13.236452pt;}
.y3c6{bottom:13.608939pt;}
.yf1{bottom:14.672898pt;}
.y105{bottom:15.426547pt;}
.y2f6{bottom:15.887131pt;}
.y228{bottom:16.754990pt;}
.y11b{bottom:17.122674pt;}
.y123{bottom:17.321046pt;}
.y147{bottom:18.564815pt;}
.y146{bottom:19.182781pt;}
.y1df{bottom:19.533912pt;}
.y405{bottom:20.345617pt;}
.y45c{bottom:20.449878pt;}
.y1f0{bottom:21.461224pt;}
.y104{bottom:21.467364pt;}
.y31b{bottom:21.657600pt;}
.y100{bottom:23.160586pt;}
.ybe{bottom:24.026070pt;}
.y44f{bottom:24.044890pt;}
.y485{bottom:24.805010pt;}
.y1ce{bottom:25.326791pt;}
.y1a8{bottom:25.326792pt;}
.y1d6{bottom:25.326793pt;}
.yee{bottom:25.422365pt;}
.y145{bottom:27.249001pt;}
.y431{bottom:27.458226pt;}
.y77{bottom:27.590400pt;}
.y1ee{bottom:27.637373pt;}
.y1f3{bottom:27.637374pt;}
.y19e{bottom:27.771712pt;}
.yf0{bottom:28.261001pt;}
.ye2{bottom:29.580718pt;}
.y11a{bottom:29.958373pt;}
.y10a{bottom:30.900435pt;}
.y47d{bottom:31.876110pt;}
.y17c{bottom:32.184683pt;}
.y10e{bottom:32.216002pt;}
.y445{bottom:32.228827pt;}
.yed{bottom:32.406904pt;}
.y1d0{bottom:32.641806pt;}
.yff{bottom:33.348966pt;}
.y2eb{bottom:33.477604pt;}
.y1d1{bottom:34.196795pt;}
.y404{bottom:34.223392pt;}
.y430{bottom:35.268216pt;}
.yae{bottom:35.825488pt;}
.yda{bottom:36.374355pt;}
.y388{bottom:36.552854pt;}
.yb2{bottom:36.739511pt;}
.y415{bottom:37.964224pt;}
.y467{bottom:38.105677pt;}
.yef{bottom:38.636134pt;}
.y78{bottom:39.513600pt;}
.y10d{bottom:40.329355pt;}
.y1dd{bottom:40.356522pt;}
.y8f{bottom:40.814072pt;}
.y433{bottom:41.125709pt;}
.y2be{bottom:41.135613pt;}
.y435{bottom:42.101957pt;}
.y498{bottom:43.108915pt;}
.y1c6{bottom:44.211140pt;}
.yea{bottom:44.296806pt;}
.y10c{bottom:44.861213pt;}
.y3ee{bottom:45.461836pt;}
.y3c5{bottom:45.461838pt;}
.y402{bottom:45.461839pt;}
.y3f6{bottom:45.461841pt;}
.yec{bottom:45.803275pt;}
.yd9{bottom:47.122992pt;}
.y129{bottom:47.691549pt;}
.y450{bottom:49.098132pt;}
.y48f{bottom:49.127616pt;}
.y118{bottom:49.384771pt;}
.y412{bottom:49.580471pt;}
.y418{bottom:49.580473pt;}
.y486{bottom:49.762033pt;}
.y2f5{bottom:50.456759pt;}
.y365{bottom:51.105216pt;}
.y2bc{bottom:51.267999pt;}
.y1c8{bottom:51.542581pt;}
.y128{bottom:52.410160pt;}
.y144{bottom:52.622340pt;}
.yeb{bottom:53.916629pt;}
.y10b{bottom:54.858691pt;}
.y45d{bottom:55.125370pt;}
.y125{bottom:55.236346pt;}
.y1f1{bottom:55.391725pt;}
.ydc{bottom:55.614001pt;}
.y305{bottom:56.509673pt;}
.ye9{bottom:57.875779pt;}
.y17f{bottom:59.178687pt;}
.y124{bottom:59.195496pt;}
.y1c7{bottom:59.257294pt;}
.y1dc{bottom:59.257295pt;}
.y2bb{bottom:60.276352pt;}
.y3f0{bottom:60.446426pt;}
.yaf{bottom:60.504105pt;}
.y117{bottom:60.523513pt;}
.y143{bottom:60.689922pt;}
.y152{bottom:60.985485pt;}
.y2bd{bottom:62.146226pt;}
.y115{bottom:62.972045pt;}
.y3f1{bottom:63.069794pt;}
.yd8{bottom:63.349699pt;}
.y119{bottom:65.047071pt;}
.ydb{bottom:65.798231pt;}
.ye3{bottom:66.366788pt;}
.y1c9{bottom:66.961056pt;}
.y12b{bottom:67.308850pt;}
.y47e{bottom:67.621985pt;}
.y1d3{bottom:67.727598pt;}
.y2c6{bottom:68.038623pt;}
.y11e{bottom:68.437664pt;}
.y363{bottom:69.057301pt;}
.y19f{bottom:70.885597pt;}
.y107{bottom:72.027460pt;}
.yb0{bottom:72.386402pt;}
.y499{bottom:72.448584pt;}
.yb4{bottom:73.300425pt;}
.y434{bottom:73.341917pt;}
.y166{bottom:73.567302pt;}
.y451{bottom:74.151375pt;}
.y113{bottom:74.666894pt;}
.y303{bottom:74.702855pt;}
.y487{bottom:74.719057pt;}
.y401{bottom:75.058537pt;}
.y1d2{bottom:76.214330pt;}
.yd7{bottom:76.737770pt;}
.y1f4{bottom:77.758369pt;}
.y8c{bottom:78.023881pt;}
.y106{bottom:78.069937pt;}
.y1cd{bottom:78.913659pt;}
.y446{bottom:78.968840pt;}
.y1fb{bottom:80.068949pt;}
.y22a{bottom:80.162919pt;}
.y112{bottom:80.705221pt;}
.y26{bottom:81.094667pt;}
.y3e6{bottom:82.933959pt;}
.y165{bottom:83.606501pt;}
.y468{bottom:84.673098pt;}
.yfe{bottom:85.228779pt;}
.y1ef{bottom:85.856353pt;}
.y26f{bottom:87.280105pt;}
.y1ac{bottom:87.400390pt;}
.y12a{bottom:88.818575pt;}
.y1fc{bottom:89.322224pt;}
.y45e{bottom:89.800862pt;}
.y490{bottom:89.844243pt;}
.y114{bottom:90.325044pt;}
.y14d{bottom:90.421688pt;}
.y2ea{bottom:91.682010pt;}
.y31e{bottom:91.720561pt;}
.y1cc{bottom:92.793571pt;}
.yf5{bottom:92.964478pt;}
.y164{bottom:93.678864pt;}
.yc1{bottom:93.869024pt;}
.y126{bottom:94.284194pt;}
.yb3{bottom:95.236973pt;}
.y135{bottom:95.366773pt;}
.yfd{bottom:95.425459pt;}
.ye7{bottom:95.612211pt;}
.y1a4{bottom:97.042413pt;}
.y1bb{bottom:97.042414pt;}
.y3e8{bottom:97.168257pt;}
.y8d{bottom:97.514733pt;}
.ye1{bottom:98.251645pt;}
.y142{bottom:98.489269pt;}
.y14e{bottom:99.107235pt;}
.ybb{bottom:99.107245pt;}
.y452{bottom:99.204618pt;}
.y488{bottom:99.676081pt;}
.y3ab{bottom:100.687517pt;}
.ydf{bottom:101.077831pt;}
.y462{bottom:101.592948pt;}
.y49a{bottom:101.788252pt;}
.ye6{bottom:102.397548pt;}
.ye0{bottom:102.961955pt;}
.y47f{bottom:103.367861pt;}
.y134{bottom:103.432993pt;}
.y122{bottom:103.538813pt;}
.y163{bottom:103.751227pt;}
.y230{bottom:103.794542pt;}
.y416{bottom:104.665874pt;}
.yf6{bottom:105.045282pt;}
.y49f{bottom:105.934039pt;}
.y458{bottom:106.288750pt;}
.yf4{bottom:106.364999pt;}
.y181{bottom:106.418194pt;}
.y141{bottom:106.524182pt;}
.y46c{bottom:107.260729pt;}
.ybc{bottom:107.837614pt;}
.y2ba{bottom:107.917813pt;}
.y1f7{bottom:108.222997pt;}
.ye8{bottom:109.191185pt;}
.y44a{bottom:110.401330pt;}
.yad{bottom:110.775361pt;}
.yb1{bottom:111.689384pt;}
.y1a3{bottom:112.072141pt;}
.y1b8{bottom:112.072143pt;}
.y3e7{bottom:112.168811pt;}
.y400{bottom:112.168813pt;}
.ye5{bottom:112.216573pt;}
.y162{bottom:113.790426pt;}
.y2ec{bottom:114.714079pt;}
.y1e8{bottom:115.538013pt;}
.y273{bottom:115.796804pt;}
.y1ba{bottom:115.926761pt;}
.y1ea{bottom:118.237342pt;}
.y2ed{bottom:118.950257pt;}
.y11c{bottom:119.753070pt;}
.y67{bottom:120.945333pt;}
.y1b7{bottom:121.714165pt;}
.y1ff{bottom:122.486182pt;}
.yab{bottom:123.142667pt;}
.yc0{bottom:123.552279pt;}
.yb5{bottom:123.571681pt;}
.y47b{bottom:123.677333pt;}
.y180{bottom:123.771483pt;}
.y161{bottom:123.862789pt;}
.y56b{bottom:123.992000pt;}
.y1a6{bottom:124.024744pt;}
.y453{bottom:124.257861pt;}
.y45f{bottom:124.476354pt;}
.y489{bottom:124.633105pt;}
.y149{bottom:125.098539pt;}
.y447{bottom:125.708852pt;}
.y8a{bottom:125.748000pt;}
.yd5{bottom:126.609333pt;}
.y127{bottom:126.737609pt;}
.y3e9{bottom:126.775595pt;}
.y2e2{bottom:126.845737pt;}
.ye4{bottom:127.679671pt;}
.y3f3{bottom:128.648666pt;}
.y22b{bottom:128.928418pt;}
.y1fe{bottom:129.034653pt;}
.y491{bottom:130.560870pt;}
.y1b9{bottom:130.573218pt;}
.y42f{bottom:130.940591pt;}
.y1e7{bottom:130.972914pt;}
.y49b{bottom:131.127920pt;}
.y469{bottom:131.240518pt;}
.y4e1{bottom:131.693333pt;}
.y14c{bottom:132.546794pt;}
.y522{bottom:132.933333pt;}
.y148{bottom:133.782725pt;}
.y160{bottom:133.935152pt;}
.y1e5{bottom:134.438786pt;}
.y1a2{bottom:134.822058pt;}
.y56a{bottom:135.980000pt;}
.y22f{bottom:136.434508pt;}
.y204{bottom:136.761333pt;}
.y4b2{bottom:136.806667pt;}
.y1a5{bottom:138.287929pt;}
.y225{bottom:138.449333pt;}
.y432{bottom:138.750581pt;}
.y25{bottom:138.921333pt;}
.y1ad{bottom:139.059948pt;}
.y480{bottom:139.113737pt;}
.y66{bottom:139.242667pt;}
.y22d{bottom:140.930673pt;}
.yaa{bottom:141.440000pt;}
.y47a{bottom:141.976000pt;}
.y1f9{bottom:142.525819pt;}
.y15f{bottom:144.003370pt;}
.y89{bottom:144.046667pt;}
.y368{bottom:144.302010pt;}
.y521{bottom:144.921333pt;}
.y3f2{bottom:145.506331pt;}
.y42e{bottom:145.584322pt;}
.y72{bottom:145.872000pt;}
.y4e0{bottom:146.836000pt;}
.y8e{bottom:147.127812pt;}
.y1d5{bottom:147.163408pt;}
.y1f8{bottom:147.929951pt;}
.y569{bottom:147.968000pt;}
.y419{bottom:148.140344pt;}
.y2e4{bottom:149.275097pt;}
.y454{bottom:149.311104pt;}
.y48a{bottom:149.590129pt;}
.y3ed{bottom:150.008095pt;}
.y1e3{bottom:151.784571pt;}
.y421{bottom:152.631461pt;}
.y233{bottom:152.932927pt;}
.y1f6{bottom:153.711879pt;}
.y1a1{bottom:153.711880pt;}
.y15e{bottom:154.049478pt;}
.yd4{bottom:154.506667pt;}
.yb6{bottom:154.648458pt;}
.y203{bottom:155.060000pt;}
.y4b1{bottom:155.104000pt;}
.y1d4{bottom:155.650140pt;}
.y224{bottom:156.748000pt;}
.y520{bottom:156.910667pt;}
.y24{bottom:157.218667pt;}
.y65{bottom:157.541333pt;}
.y1c5{bottom:157.571976pt;}
.y460{bottom:159.151846pt;}
.y201{bottom:159.499283pt;}
.y1b6{bottom:159.499285pt;}
.y30b{bottom:159.572800pt;}
.ya9{bottom:159.738667pt;}
.y568{bottom:159.956000pt;}
.y168{bottom:160.406667pt;}
.y49c{bottom:160.467588pt;}
.y306{bottom:161.415365pt;}
.y1c1{bottom:161.426594pt;}
.y140{bottom:161.664678pt;}
.y4df{bottom:161.980000pt;}
.y1e2{bottom:162.965156pt;}
.y2f4{bottom:163.232100pt;}
.y320{bottom:163.535131pt;}
.y413{bottom:163.869906pt;}
.y15d{bottom:164.123223pt;}
.y137{bottom:164.754506pt;}
.y235{bottom:164.940509pt;}
.y1cb{bottom:165.664483pt;}
.y3cb{bottom:167.616053pt;}
.y1c3{bottom:168.758035pt;}
.y51f{bottom:168.898667pt;}
.y13f{bottom:169.722731pt;}
.y479{bottom:169.873333pt;}
.y14b{bottom:170.348864pt;}
.y1b5{bottom:170.679869pt;}
.y492{bottom:171.277497pt;}
.y422{bottom:171.372843pt;}
.y567{bottom:171.945333pt;}
.y448{bottom:172.448864pt;}
.y1e4{bottom:172.607178pt;}
.y12d{bottom:172.698622pt;}
.yd3{bottom:172.805333pt;}
.y136{bottom:172.812559pt;}
.y2e3{bottom:172.918485pt;}
.y202{bottom:173.357333pt;}
.y4b0{bottom:173.402667pt;}
.y15c{bottom:174.196968pt;}
.y455{bottom:174.364347pt;}
.y48b{bottom:174.547153pt;}
.y481{bottom:174.859613pt;}
.y232{bottom:175.445846pt;}
.y23{bottom:175.517333pt;}
.y42c{bottom:175.838667pt;}
.y1c4{bottom:176.461798pt;}
.y31f{bottom:176.788244pt;}
.y4de{bottom:177.122667pt;}
.y1e1{bottom:177.228340pt;}
.y3ec{bottom:177.731717pt;}
.y46a{bottom:177.807939pt;}
.ya8{bottom:178.036000pt;}
.y1c2{bottom:178.383631pt;}
.y167{bottom:178.704000pt;}
.y1ca{bottom:179.938619pt;}
.y1c0{bottom:180.321891pt;}
.y14a{bottom:180.857001pt;}
.y51e{bottom:180.886667pt;}
.yb9{bottom:181.172716pt;}
.y223{bottom:181.686667pt;}
.y30a{bottom:183.233407pt;}
.y17e{bottom:183.543920pt;}
.y1ab{bottom:183.787762pt;}
.y566{bottom:183.933333pt;}
.y15b{bottom:184.229257pt;}
.y88{bottom:185.228000pt;}
.y64{bottom:185.438667pt;}
.y1e0{bottom:185.715072pt;}
.y3ca{bottom:185.979627pt;}
.y3c2{bottom:185.979628pt;}
.y3da{bottom:185.979630pt;}
.y1e9{bottom:186.098345pt;}
.y184{bottom:187.128000pt;}
.y274{bottom:187.448108pt;}
.y1a9{bottom:187.642380pt;}
.y478{bottom:188.172000pt;}
.y237{bottom:188.572117pt;}
.y14f{bottom:189.541186pt;}
.y200{bottom:189.569690pt;}
.y49d{bottom:189.807256pt;}
.y1aa{bottom:190.336234pt;}
.yd2{bottom:191.102667pt;}
.y1f5{bottom:191.491524pt;}
.y4af{bottom:191.700000pt;}
.y4dd{bottom:192.265333pt;}
.y51d{bottom:192.874667pt;}
.y22{bottom:193.814667pt;}
.y461{bottom:193.827338pt;}
.y42b{bottom:194.137333pt;}
.y15a{bottom:194.303002pt;}
.y565{bottom:195.921333pt;}
.y2e5{bottom:195.950553pt;}
.ya7{bottom:196.334667pt;}
.y133{bottom:196.959495pt;}
.y1fa{bottom:197.284402pt;}
.y17d{bottom:198.004994pt;}
.y19d{bottom:198.454000pt;}
.y2ef{bottom:199.007146pt;}
.y456{bottom:199.417589pt;}
.y19c{bottom:199.449086pt;}
.y48c{bottom:199.504177pt;}
.y1a0{bottom:199.579779pt;}
.y222{bottom:199.985333pt;}
.y71{bottom:199.992000pt;}
.y74{bottom:200.388000pt;}
.y3b5{bottom:201.157474pt;}
.y73{bottom:201.600000pt;}
.y87{bottom:203.526667pt;}
.y63{bottom:203.737333pt;}
.y159{bottom:204.376747pt;}
.y139{bottom:204.405028pt;}
.y1fd{bottom:204.615844pt;}
.y51c{bottom:204.864000pt;}
.y183{bottom:205.426667pt;}
.y13e{bottom:205.643681pt;}
.y1ed{bottom:206.154407pt;}
.y4a1{bottom:206.412546pt;}
.y477{bottom:206.469333pt;}
.y4dc{bottom:207.409333pt;}
.y564{bottom:207.909333pt;}
.y231{bottom:208.085812pt;}
.y41d{bottom:208.467155pt;}
.y46e{bottom:208.997603pt;}
.yd1{bottom:209.401333pt;}
.y150{bottom:209.945333pt;}
.y4ae{bottom:209.998667pt;}
.y482{bottom:210.605489pt;}
.y3b3{bottom:211.423647pt;}
.y22c{bottom:211.457933pt;}
.yba{bottom:211.729008pt;}
.y493{bottom:211.994123pt;}
.y21{bottom:212.113333pt;}
.y42a{bottom:212.434667pt;}
.y138{bottom:212.476692pt;}
.y239{bottom:212.581959pt;}
.y13d{bottom:213.701734pt;}
.y158{bottom:214.409036pt;}
.ya6{bottom:214.632000pt;}
.y441{bottom:215.306667pt;}
.y3c1{bottom:215.592287pt;}
.y3d7{bottom:215.592291pt;}
.y4f{bottom:215.705333pt;}
.y51b{bottom:216.852000pt;}
.y4a0{bottom:217.846632pt;}
.y270{bottom:218.591101pt;}
.y6f{bottom:219.000000pt;}
.y49e{bottom:219.146924pt;}
.y449{bottom:219.188876pt;}
.y563{bottom:219.898667pt;}
.y3b2{bottom:220.408814pt;}
.y46d{bottom:220.574886pt;}
.y86{bottom:221.824000pt;}
.y40b{bottom:221.951160pt;}
.y62{bottom:222.034667pt;}
.y3b4{bottom:222.114770pt;}
.y4db{bottom:222.552000pt;}
.y3d9{bottom:223.073943pt;}
.y22e{bottom:223.460188pt;}
.y46b{bottom:224.375359pt;}
.y48d{bottom:224.461200pt;}
.y457{bottom:224.470832pt;}
.y157{bottom:224.482781pt;}
.y23b{bottom:224.584214pt;}
.y476{bottom:224.768000pt;}
.y221{bottom:224.925333pt;}
.y2ee{bottom:225.069977pt;}
.y40d{bottom:227.208541pt;}
.yd0{bottom:227.698667pt;}
.y4ad{bottom:228.296000pt;}
.y51a{bottom:228.840000pt;}
.y308{bottom:229.306155pt;}
.ybf{bottom:230.062784pt;}
.y131{bottom:230.308772pt;}
.y151{bottom:230.314296pt;}
.y20{bottom:230.410667pt;}
.y272{bottom:230.593355pt;}
.y429{bottom:230.733333pt;}
.y562{bottom:231.886667pt;}
.y2e9{bottom:232.939625pt;}
.y4e{bottom:234.004000pt;}
.y156{bottom:234.556526pt;}
.y3d6{bottom:234.690195pt;}
.y234{bottom:235.462443pt;}
.y425{bottom:236.190777pt;}
.y23d{bottom:236.586469pt;}
.y310{bottom:236.598926pt;}
.y182{bottom:236.666667pt;}
.y4da{bottom:237.694667pt;}
.y3c4{bottom:238.824789pt;}
.y321{bottom:240.066903pt;}
.y13c{bottom:240.312366pt;}
.y61{bottom:240.333333pt;}
.y519{bottom:240.828000pt;}
.y13b{bottom:241.591854pt;}
.y275{bottom:242.595610pt;}
.y475{bottom:243.065333pt;}
.y220{bottom:243.222667pt;}
.y561{bottom:243.874667pt;}
.y155{bottom:244.630271pt;}
.ybd{bottom:245.777448pt;}
.ycf{bottom:245.997333pt;}
.y440{bottom:246.317333pt;}
.y236{bottom:247.091791pt;}
.y17b{bottom:247.172645pt;}
.y366{bottom:247.340031pt;}
.y23f{bottom:248.215818pt;}
.y132{bottom:248.384031pt;}
.y424{bottom:248.940451pt;}
.y13a{bottom:249.622684pt;}
.y85{bottom:249.721333pt;}
.y3d8{bottom:251.563824pt;}
.y4d{bottom:252.301333pt;}
.y40a{bottom:252.308792pt;}
.y518{bottom:252.817333pt;}
.y4d9{bottom:252.838667pt;}
.y4ac{bottom:253.974667pt;}
.y304{bottom:254.180790pt;}
.y276{bottom:254.224958pt;}
.y154{bottom:254.676379pt;}
.ya5{bottom:255.813333pt;}
.y560{bottom:255.862667pt;}
.y173{bottom:256.650665pt;}
.y1f{bottom:258.309333pt;}
.y60{bottom:258.630667pt;}
.y408{bottom:258.672987pt;}
.y2cb{bottom:259.630995pt;}
.y3c0{bottom:259.795768pt;}
.y241{bottom:260.234056pt;}
.y474{bottom:261.364000pt;}
.y1b1{bottom:263.207147pt;}
.y327{bottom:264.011151pt;}
.yce{bottom:264.294667pt;}
.y153{bottom:264.750124pt;}
.y517{bottom:264.805333pt;}
.y311{bottom:265.683909pt;}
.y3c3{bottom:266.170603pt;}
.y1bd{bottom:267.072717pt;}
.y3cc{bottom:267.671191pt;}
.y55f{bottom:267.852000pt;}
.y4d8{bottom:267.981333pt;}
.y84{bottom:268.020000pt;}
.y21f{bottom:268.162667pt;}
.y3b1{bottom:268.279113pt;}
.y4c{bottom:270.600000pt;}
.y1b4{bottom:270.927334pt;}
.y238{bottom:271.101632pt;}
.y243{bottom:272.241638pt;}
.y1b0{bottom:272.849169pt;}
.y1bf{bottom:272.849170pt;}
.y41f{bottom:274.418513pt;}
.y428{bottom:275.401333pt;}
.y36a{bottom:275.983277pt;}
.y2e8{bottom:276.007442pt;}
.y1e{bottom:276.606667pt;}
.y516{bottom:276.793333pt;}
.y277{bottom:278.234800pt;}
.y1ec{bottom:278.253301pt;}
.y473{bottom:279.661333pt;}
.y55e{bottom:279.840000pt;}
.y1b2{bottom:282.107920pt;}
.ycd{bottom:282.592000pt;}
.y4d7{bottom:283.125333pt;}
.y3f5{bottom:283.789205pt;}
.y1db{bottom:284.035228pt;}
.y1be{bottom:284.035230pt;}
.y245{bottom:284.243894pt;}
.y1f2{bottom:284.418501pt;}
.y41e{bottom:285.662277pt;}
.y43f{bottom:285.784000pt;}
.y1bc{bottom:285.957064pt;}
.y83{bottom:286.317333pt;}
.y21e{bottom:286.461333pt;}
.y1af{bottom:286.729082pt;}
.ya4{bottom:287.396000pt;}
.y2c3{bottom:288.724588pt;}
.y515{bottom:288.781333pt;}
.y4b{bottom:288.897333pt;}
.y3e0{bottom:289.403108pt;}
.y322{bottom:289.661389pt;}
.y1b3{bottom:289.822631pt;}
.y1d8{bottom:289.822632pt;}
.y1da{bottom:290.594651pt;}
.y55d{bottom:291.828000pt;}
.y1d{bottom:294.905333pt;}
.y23a{bottom:295.122128pt;}
.y17a{bottom:295.376224pt;}
.y247{bottom:296.246149pt;}
.y41c{bottom:296.528234pt;}
.y3bf{bottom:296.528237pt;}
.y326{bottom:296.922362pt;}
.y472{bottom:297.960000pt;}
.y4d6{bottom:298.268000pt;}
.y5f{bottom:298.529333pt;}
.y3f4{bottom:300.274384pt;}
.y1eb{bottom:300.608996pt;}
.y514{bottom:300.770667pt;}
.y76{bottom:300.840000pt;}
.y4ab{bottom:301.158667pt;}
.y3bc{bottom:301.493638pt;}
.y324{bottom:301.633522pt;}
.y278{bottom:302.244641pt;}
.y55c{bottom:303.816000pt;}
.y3e2{bottom:304.015212pt;}
.y3e5{bottom:304.015214pt;}
.y43e{bottom:304.082667pt;}
.y1d9{bottom:304.469088pt;}
.y82{bottom:304.616000pt;}
.y406{bottom:305.898928pt;}
.y23c{bottom:307.129711pt;}
.y4a{bottom:307.196000pt;}
.y427{bottom:307.771999pt;}
.y3d5{bottom:307.772004pt;}
.y1ae{bottom:307.940436pt;}
.y70{bottom:308.136000pt;}
.y249{bottom:308.253732pt;}
.y179{bottom:309.837297pt;}
.ycc{bottom:310.490667pt;}
.y2b9{bottom:311.247712pt;}
.y513{bottom:312.758667pt;}
.y1c{bottom:313.202667pt;}
.y4d5{bottom:313.410667pt;}
.y32a{bottom:313.605655pt;}
.y279{bottom:314.246896pt;}
.y55b{bottom:315.805333pt;}
.y471{bottom:316.257333pt;}
.y21d{bottom:318.042667pt;}
.y23e{bottom:318.759060pt;}
.ya3{bottom:318.977333pt;}
.y410{bottom:319.015767pt;}
.y4aa{bottom:319.457333pt;}
.y3eb{bottom:319.760738pt;}
.y24b{bottom:319.883081pt;}
.y2b8{bottom:319.883159pt;}
.y43d{bottom:322.380000pt;}
.y3e1{bottom:322.756593pt;}
.y81{bottom:322.913333pt;}
.y30c{bottom:323.888315pt;}
.y512{bottom:324.746667pt;}
.y3be{bottom:325.270728pt;}
.y6c{bottom:325.440000pt;}
.y49{bottom:325.493333pt;}
.y32c{bottom:325.577787pt;}
.y27a{bottom:325.876245pt;}
.y3df{bottom:326.124934pt;}
.y31a{bottom:327.093333pt;}
.y55a{bottom:327.793333pt;}
.y2b7{bottom:328.513279pt;}
.y4d4{bottom:328.554667pt;}
.ycb{bottom:328.788000pt;}
.y5e{bottom:329.684000pt;}
.y3d4{bottom:329.881725pt;}
.y240{bottom:330.388409pt;}
.y1b{bottom:331.501333pt;}
.y24d{bottom:331.512430pt;}
.y407{bottom:333.622549pt;}
.y2c2{bottom:335.417264pt;}
.y329{bottom:335.825708pt;}
.y21c{bottom:336.340000pt;}
.y511{bottom:336.734667pt;}
.y27b{bottom:337.505595pt;}
.y2b6{bottom:337.505650pt;}
.y4a9{bottom:337.754667pt;}
.y559{bottom:339.781333pt;}
.y3e4{bottom:341.125490pt;}
.y80{bottom:341.212000pt;}
.y242{bottom:342.390664pt;}
.y319{bottom:342.453333pt;}
.y69{bottom:342.744000pt;}
.y24f{bottom:343.514686pt;}
.y6a{bottom:343.560000pt;}
.y4d3{bottom:343.697333pt;}
.y48{bottom:343.792000pt;}
.y2fc{bottom:345.129479pt;}
.y2b5{bottom:346.514004pt;}
.y2d8{bottom:346.946214pt;}
.yca{bottom:347.086667pt;}
.y3ea{bottom:347.484360pt;}
.y36b{bottom:347.797834pt;}
.y510{bottom:348.724000pt;}
.y32e{bottom:349.091003pt;}
.y27c{bottom:349.507850pt;}
.y1a{bottom:349.798667pt;}
.y43c{bottom:350.278667pt;}
.ya2{bottom:350.558667pt;}
.y558{bottom:351.769333pt;}
.y2fe{bottom:353.610446pt;}
.y244{bottom:354.392920pt;}
.y21b{bottom:354.638667pt;}
.y470{bottom:355.201333pt;}
.y251{bottom:355.516941pt;}
.y3c9{bottom:355.732270pt;}
.y4a8{bottom:356.053333pt;}
.y6d{bottom:356.340000pt;}
.y12f{bottom:358.014396pt;}
.y4d2{bottom:358.840000pt;}
.y7f{bottom:359.509333pt;}
.y40c{bottom:359.850908pt;}
.y50f{bottom:360.712000pt;}
.y5d{bottom:360.837333pt;}
.y27d{bottom:361.515433pt;}
.y47{bottom:362.089333pt;}
.y411{bottom:362.096466pt;}
.y75{bottom:362.820000pt;}
.y3c7{bottom:363.235208pt;}
.y557{bottom:363.758667pt;}
.y2d6{bottom:365.139396pt;}
.yc9{bottom:365.384000pt;}
.y246{bottom:366.400503pt;}
.y426{bottom:366.976033pt;}
.y253{bottom:367.524524pt;}
.y314{bottom:367.558839pt;}
.y19{bottom:368.097333pt;}
.y328{bottom:368.324087pt;}
.y3c8{bottom:368.471301pt;}
.y43b{bottom:368.576000pt;}
.y178{bottom:368.645664pt;}
.y41a{bottom:370.344375pt;}
.y323{bottom:371.742109pt;}
.y2c5{bottom:372.406336pt;}
.y12e{bottom:372.573207pt;}
.y50e{bottom:372.700000pt;}
.y21a{bottom:372.936000pt;}
.y330{bottom:373.023121pt;}
.y46f{bottom:373.500000pt;}
.y27e{bottom:373.517688pt;}
.y4d1{bottom:373.984000pt;}
.y4a7{bottom:374.350667pt;}
.y556{bottom:375.746667pt;}
.y7e{bottom:377.808000pt;}
.y248{bottom:378.402758pt;}
.y367{bottom:379.015238pt;}
.y255{bottom:379.526780pt;}
.y46{bottom:380.388000pt;}
.y420{bottom:381.960625pt;}
.y177{bottom:383.106737pt;}
.yc8{bottom:383.682667pt;}
.y325{bottom:383.714242pt;}
.y50d{bottom:384.688000pt;}
.y332{bottom:384.995254pt;}
.y27f{bottom:385.535926pt;}
.y18{bottom:386.394667pt;}
.y313{bottom:387.568756pt;}
.y555{bottom:387.734667pt;}
.y4d0{bottom:389.126667pt;}
.y24a{bottom:390.405014pt;}
.y369{bottom:390.987370pt;}
.y219{bottom:391.234667pt;}
.y257{bottom:391.529035pt;}
.ya1{bottom:391.740000pt;}
.y2d7{bottom:391.804935pt;}
.y5c{bottom:391.990667pt;}
.y4a6{bottom:392.648000pt;}
.y2fb{bottom:393.621670pt;}
.y32b{bottom:395.686375pt;}
.y7d{bottom:396.105333pt;}
.y423{bottom:396.583372pt;}
.y50c{bottom:396.677333pt;}
.y334{bottom:396.967386pt;}
.y280{bottom:397.538181pt;}
.y45{bottom:398.685333pt;}
.y554{bottom:399.722667pt;}
.y43a{bottom:400.558667pt;}
.yc7{bottom:401.980000pt;}
.y24c{bottom:402.034363pt;}
.y36c{bottom:402.959503pt;}
.y259{bottom:403.536617pt;}
.y2f9{bottom:403.945203pt;}
.y463{bottom:404.740000pt;}
.y2c1{bottom:405.150620pt;}
.y32d{bottom:407.658507pt;}
.y50b{bottom:408.665333pt;}
.y336{bottom:408.939517pt;}
.y281{bottom:409.167530pt;}
.y218{bottom:409.532000pt;}
.ya0{bottom:410.037333pt;}
.y4a5{bottom:410.946667pt;}
.y553{bottom:411.712000pt;}
.y17{bottom:412.073333pt;}
.y4cf{bottom:412.934667pt;}
.y24e{bottom:414.041945pt;}
.y7c{bottom:414.404000pt;}
.y36d{bottom:414.931636pt;}
.y25b{bottom:415.165966pt;}
.y2c4{bottom:415.448322pt;}
.y3bb{bottom:416.832000pt;}
.y44{bottom:416.984000pt;}
.y2cc{bottom:417.893596pt;}
.yc6{bottom:420.278667pt;}
.y50a{bottom:420.653333pt;}
.y338{bottom:420.911649pt;}
.y282{bottom:421.175113pt;}
.y439{bottom:422.841333pt;}
.y5b{bottom:423.145333pt;}
.y552{bottom:423.700000pt;}
.y459{bottom:424.723630pt;}
.y464{bottom:424.724443pt;}
.y250{bottom:426.044201pt;}
.y25d{bottom:427.168221pt;}
.y30e{bottom:427.579980pt;}
.y217{bottom:427.830667pt;}
.y9f{bottom:428.336000pt;}
.y4a4{bottom:429.244000pt;}
.y6b{bottom:429.432000pt;}
.y32f{bottom:431.602768pt;}
.y509{bottom:432.641333pt;}
.y7b{bottom:432.701333pt;}
.y33a{bottom:432.883781pt;}
.y283{bottom:433.177368pt;}
.y3ba{bottom:435.129333pt;}
.y43{bottom:435.281333pt;}
.y551{bottom:435.688000pt;}
.y252{bottom:438.046456pt;}
.y36e{bottom:438.863754pt;}
.y25f{bottom:439.170476pt;}
.y176{bottom:439.986960pt;}
.y2f1{bottom:442.139692pt;}
.y318{bottom:444.277333pt;}
.y508{bottom:444.630667pt;}
.y33c{bottom:444.855913pt;}
.y19b{bottom:445.152000pt;}
.y30d{bottom:445.170454pt;}
.y284{bottom:445.179624pt;}
.y550{bottom:447.676000pt;}
.yc5{bottom:448.176000pt;}
.y254{bottom:450.054039pt;}
.y261{bottom:451.178059pt;}
.y2dd{bottom:451.223367pt;}
.y3b9{bottom:453.428000pt;}
.y42{bottom:453.580000pt;}
.y9e{bottom:454.014667pt;}
.y5a{bottom:454.298667pt;}
.y438{bottom:454.358667pt;}
.y175{bottom:454.448034pt;}
.y331{bottom:455.547029pt;}
.y507{bottom:456.618667pt;}
.y33e{bottom:456.828045pt;}
.y285{bottom:457.187207pt;}
.y16{bottom:459.257333pt;}
.y216{bottom:459.412000pt;}
.y317{bottom:459.637333pt;}
.y54f{bottom:459.665333pt;}
.y4ce{bottom:460.118667pt;}
.y256{bottom:462.056295pt;}
.y2c0{bottom:462.752317pt;}
.y36f{bottom:462.808015pt;}
.y263{bottom:463.180314pt;}
.y19a{bottom:463.449333pt;}
.y333{bottom:467.519161pt;}
.y2f0{bottom:468.202522pt;}
.y506{bottom:468.606667pt;}
.y340{bottom:468.800176pt;}
.y286{bottom:469.189462pt;}
.y54e{bottom:471.653333pt;}
.y3b0{bottom:471.787073pt;}
.y258{bottom:474.058550pt;}
.y2df{bottom:474.281267pt;}
.y370{bottom:474.780147pt;}
.y265{bottom:475.182569pt;}
.y4a3{bottom:477.241333pt;}
.y2f7{bottom:477.312029pt;}
.y215{bottom:477.709333pt;}
.y4cd{bottom:478.417333pt;}
.y335{bottom:479.491293pt;}
.y437{bottom:480.037333pt;}
.y2d5{bottom:480.334180pt;}
.y505{bottom:480.594667pt;}
.y7a{bottom:480.698667pt;}
.y3af{bottom:480.772240pt;}
.y342{bottom:480.772308pt;}
.y287{bottom:481.191717pt;}
.y41{bottom:481.477333pt;}
.y199{bottom:481.748000pt;}
.y3b8{bottom:482.529333pt;}
.y54d{bottom:483.641333pt;}
.y25a{bottom:485.687899pt;}
.y371{bottom:486.752279pt;}
.y267{bottom:486.811917pt;}
.y15{bottom:487.154667pt;}
.y3ae{bottom:489.739194pt;}
.y6e{bottom:490.956000pt;}
.y337{bottom:491.445211pt;}
.y504{bottom:492.584000pt;}
.y344{bottom:492.744440pt;}
.y288{bottom:492.821066pt;}
.y59{bottom:494.197333pt;}
.y4a2{bottom:495.538667pt;}
.y54c{bottom:495.629333pt;}
.y214{bottom:496.008000pt;}
.yc4{bottom:496.173333pt;}
.y4cc{bottom:496.714667pt;}
.y301{bottom:497.313335pt;}
.y25c{bottom:497.695481pt;}
.y3ad{bottom:498.724362pt;}
.y372{bottom:498.724411pt;}
.y269{bottom:498.819500pt;}
.y2e7{bottom:499.130071pt;}
.y40{bottom:499.776000pt;}
.y198{bottom:500.045333pt;}
.y3b7{bottom:500.826667pt;}
.y9d{bottom:501.198667pt;}
.y174{bottom:502.651613pt;}
.y2de{bottom:503.374859pt;}
.y339{bottom:503.417343pt;}
.y503{bottom:504.572000pt;}
.y346{bottom:504.716572pt;}
.y289{bottom:504.828648pt;}
.y14{bottom:505.453333pt;}
.y68{bottom:506.790267pt;}
.y54b{bottom:507.617333pt;}
.y3ac{bottom:507.703458pt;}
.y2dc{bottom:508.825065pt;}
.y25e{bottom:509.697736pt;}
.y373{bottom:510.696543pt;}
.y3d0{bottom:511.250619pt;}
.y3ff{bottom:511.250620pt;}
.y213{bottom:514.305333pt;}
.y2d4{bottom:514.903809pt;}
.y4cb{bottom:515.012000pt;}
.y33b{bottom:515.389475pt;}
.y502{bottom:516.560000pt;}
.y348{bottom:516.670491pt;}
.y28a{bottom:516.830904pt;}
.y3f{bottom:518.073333pt;}
.y197{bottom:518.344000pt;}
.y3dc{bottom:518.737596pt;}
.y9c{bottom:519.496000pt;}
.y54a{bottom:519.606667pt;}
.y2f8{bottom:520.956723pt;}
.y260{bottom:521.699992pt;}
.y374{bottom:522.668674pt;}
.y13{bottom:523.750667pt;}
.y3d3{bottom:526.235208pt;}
.y3f9{bottom:526.235209pt;}
.y494{bottom:526.780000pt;}
.y58{bottom:526.938667pt;}
.y33d{bottom:527.361607pt;}
.yc3{bottom:527.413333pt;}
.y501{bottom:528.548000pt;}
.y34a{bottom:528.642622pt;}
.y28b{bottom:528.833159pt;}
.y3fd{bottom:529.603549pt;}
.y3cf{bottom:529.603550pt;}
.y3de{bottom:529.603552pt;}
.y549{bottom:531.594667pt;}
.y2e1{bottom:532.485672pt;}
.y212{bottom:532.604000pt;}
.y4ca{bottom:533.310667pt;}
.y262{bottom:533.718228pt;}
.y375{bottom:534.640806pt;}
.y3e{bottom:536.372000pt;}
.y436{bottom:537.125333pt;}
.y9b{bottom:537.794667pt;}
.y33f{bottom:539.333739pt;}
.y500{bottom:540.537333pt;}
.y34c{bottom:540.614754pt;}
.y28c{bottom:540.840741pt;}
.y40f{bottom:540.847316pt;}
.y12{bottom:542.049333pt;}
.y2e6{bottom:542.783375pt;}
.y548{bottom:543.582667pt;}
.y55{bottom:545.061333pt;}
.y3b6{bottom:545.517333pt;}
.y264{bottom:545.720483pt;}
.y376{bottom:546.612938pt;}
.y495{bottom:546.763416pt;}
.y48e{bottom:546.763460pt;}
.y196{bottom:546.990667pt;}
.y3d1{bottom:548.344932pt;}
.y3fe{bottom:548.344933pt;}
.y211{bottom:550.901333pt;}
.y341{bottom:551.305870pt;}
.y4c9{bottom:551.608000pt;}
.y56{bottom:552.054667pt;}
.y3fc{bottom:552.085757pt;}
.y3dd{bottom:552.085760pt;}
.y417{bottom:552.463567pt;}
.y4ff{bottom:552.525333pt;}
.y34e{bottom:552.586886pt;}
.y28d{bottom:552.842996pt;}
.y3d{bottom:554.669333pt;}
.y2ca{bottom:555.517741pt;}
.y547{bottom:555.570667pt;}
.y3db{bottom:555.842551pt;}
.y54{bottom:555.994667pt;}
.y9a{bottom:556.092000pt;}
.y3ce{bottom:556.592843pt;}
.y266{bottom:557.728066pt;}
.y194{bottom:557.925333pt;}
.y377{bottom:558.578999pt;}
.yb8{bottom:558.957345pt;}
.y11{bottom:560.346667pt;}
.y2fd{bottom:562.181974pt;}
.y3d2{bottom:562.957034pt;}
.y3f8{bottom:562.957036pt;}
.y42d{bottom:563.217306pt;}
.y343{bottom:563.278002pt;}
.y3fb{bottom:564.079815pt;}
.y4fe{bottom:564.513333pt;}
.y350{bottom:564.559018pt;}
.y28e{bottom:564.845251pt;}
.y302{bottom:565.832664pt;}
.y57{bottom:566.778667pt;}
.y2c8{bottom:567.046691pt;}
.y546{bottom:567.560000pt;}
.y195{bottom:568.709333pt;}
.y268{bottom:569.357414pt;}
.y4c8{bottom:569.906667pt;}
.y378{bottom:570.551131pt;}
.y316{bottom:571.609067pt;}
.y2bf{bottom:571.992043pt;}
.y315{bottom:573.108215pt;}
.y99{bottom:574.390667pt;}
.y2c9{bottom:574.924950pt;}
.y345{bottom:575.250134pt;}
.y28f{bottom:576.474600pt;}
.y4fd{bottom:576.501333pt;}
.y352{bottom:576.531150pt;}
.y309{bottom:578.558420pt;}
.y10{bottom:578.645333pt;}
.y545{bottom:579.548000pt;}
.y3c{bottom:580.348000pt;}
.y26a{bottom:581.359670pt;}
.y210{bottom:582.482667pt;}
.y379{bottom:582.511120pt;}
.y53{bottom:584.202667pt;}
.y41b{bottom:584.316465pt;}
.y40e{bottom:584.316467pt;}
.y347{bottom:587.222266pt;}
.y4c7{bottom:588.204000pt;}
.y290{bottom:588.482183pt;}
.y4fc{bottom:588.490667pt;}
.y354{bottom:588.503283pt;}
.y544{bottom:591.536000pt;}
.y414{bottom:591.814078pt;}
.y3fa{bottom:591.814080pt;}
.y37a{bottom:594.483252pt;}
.y52{bottom:595.137333pt;}
.y30f{bottom:596.140284pt;}
.yf{bottom:596.942667pt;}
.y130{bottom:598.010667pt;}
.y3cd{bottom:598.928570pt;}
.y349{bottom:599.194398pt;}
.y356{bottom:600.475414pt;}
.y4fb{bottom:600.478667pt;}
.y20f{bottom:600.781333pt;}
.y193{bottom:601.373333pt;}
.y543{bottom:603.524000pt;}
.y37b{bottom:606.455384pt;}
.y34b{bottom:611.166530pt;}
.y358{bottom:612.447547pt;}
.y4fa{bottom:612.466667pt;}
.ye{bottom:615.241333pt;}
.y542{bottom:615.513333pt;}
.y98{bottom:615.572000pt;}
.y4c6{bottom:616.102667pt;}
.y37c{bottom:618.427516pt;}
.y20e{bottom:619.078667pt;}
.y192{bottom:619.670667pt;}
.y312{bottom:619.783671pt;}
.y34d{bottom:623.138661pt;}
.y12c{bottom:624.102896pt;}
.y35a{bottom:624.419679pt;}
.yd6{bottom:624.425087pt;}
.y4f9{bottom:624.454667pt;}
.y541{bottom:627.501333pt;}
.y3b{bottom:627.532000pt;}
.y37d{bottom:630.399648pt;}
.yd{bottom:633.538667pt;}
.y4c5{bottom:634.400000pt;}
.y34f{bottom:635.110794pt;}
.y35c{bottom:636.391811pt;}
.y4f8{bottom:636.442667pt;}
.y51{bottom:637.088000pt;}
.y20d{bottom:637.377333pt;}
.y191{bottom:637.969333pt;}
.y540{bottom:639.489333pt;}
.y37e{bottom:642.371780pt;}
.y3a{bottom:645.829333pt;}
.y351{bottom:647.070783pt;}
.y97{bottom:647.153333pt;}
.y35e{bottom:648.363943pt;}
.y4f7{bottom:648.432000pt;}
.y53f{bottom:651.477333pt;}
.yc{bottom:651.837333pt;}
.y4c4{bottom:652.698667pt;}
.y37f{bottom:654.343912pt;}
.y20c{bottom:655.674667pt;}
.y190{bottom:656.266667pt;}
.y353{bottom:659.042916pt;}
.y360{bottom:660.323933pt;}
.y4f6{bottom:660.420000pt;}
.y53e{bottom:663.466667pt;}
.y39{bottom:664.128000pt;}
.y96{bottom:665.450667pt;}
.y380{bottom:666.316044pt;}
.yb{bottom:670.134667pt;}
.y4c3{bottom:670.996000pt;}
.y355{bottom:671.015048pt;}
.y4f5{bottom:672.408000pt;}
.y44b{bottom:673.528000pt;}
.y53d{bottom:675.454667pt;}
.y381{bottom:678.288176pt;}
.y38{bottom:682.425333pt;}
.y357{bottom:682.987180pt;}
.y50{bottom:684.229333pt;}
.y4f4{bottom:684.396000pt;}
.y53c{bottom:687.442667pt;}
.y20b{bottom:687.560000pt;}
.y18f{bottom:687.848000pt;}
.ya{bottom:688.433333pt;}
.y4c2{bottom:689.294667pt;}
.y382{bottom:690.260308pt;}
.y44c{bottom:693.512239pt;}
.y442{bottom:693.512353pt;}
.y359{bottom:695.384286pt;}
.y4f3{bottom:696.385333pt;}
.y95{bottom:697.032000pt;}
.y20a{bottom:698.494667pt;}
.y53b{bottom:699.430667pt;}
.y37{bottom:700.724000pt;}
.y383{bottom:702.657414pt;}
.y35b{bottom:707.356418pt;}
.y4c1{bottom:707.592000pt;}
.y4f2{bottom:708.373333pt;}
.y18e{bottom:711.262667pt;}
.y53a{bottom:711.420000pt;}
.y384{bottom:714.629547pt;}
.y94{bottom:715.330667pt;}
.y35d{bottom:719.328550pt;}
.y4f1{bottom:720.361333pt;}
.y18d{bottom:722.196000pt;}
.y539{bottom:723.408000pt;}
.y9{bottom:723.889333pt;}
.y4c0{bottom:725.890667pt;}
.y385{bottom:726.601679pt;}
.y36{bottom:728.621333pt;}
.y35f{bottom:731.300683pt;}
.y4f0{bottom:732.349333pt;}
.y538{bottom:735.396000pt;}
.y386{bottom:738.573811pt;}
.y361{bottom:743.272815pt;}
.y4bf{bottom:744.188000pt;}
.y4ef{bottom:744.338667pt;}
.y93{bottom:746.912000pt;}
.y35{bottom:746.920000pt;}
.y18c{bottom:747.046667pt;}
.y537{bottom:747.384000pt;}
.y387{bottom:750.533801pt;}
.y536{bottom:759.373333pt;}
.y4be{bottom:762.486667pt;}
.y8{bottom:763.158667pt;}
.y209{bottom:763.441333pt;}
.y92{bottom:765.209333pt;}
.y34{bottom:765.217333pt;}
.y18b{bottom:765.345333pt;}
.y4ee{bottom:768.046667pt;}
.y535{bottom:771.361333pt;}
.y4bd{bottom:780.784000pt;}
.y7{bottom:781.456000pt;}
.y208{bottom:781.740000pt;}
.y534{bottom:783.349333pt;}
.y91{bottom:783.508000pt;}
.y33{bottom:783.516000pt;}
.y18a{bottom:783.642667pt;}
.y483{bottom:784.697333pt;}
.y533{bottom:795.337333pt;}
.y4ed{bottom:795.944000pt;}
.y4bc{bottom:799.082667pt;}
.y6{bottom:799.754667pt;}
.y2d0{bottom:799.864314pt;}
.y207{bottom:800.037333pt;}
.y32{bottom:801.813333pt;}
.y189{bottom:801.941333pt;}
.y484{bottom:804.680968pt;}
.y47c{bottom:804.681747pt;}
.y532{bottom:807.326667pt;}
.y2da{bottom:811.393264pt;}
.y172{bottom:811.413333pt;}
.y4ec{bottom:814.241333pt;}
.y531{bottom:819.314667pt;}
.y31{bottom:820.112000pt;}
.y2d3{bottom:822.922213pt;}
.y206{bottom:824.664000pt;}
.y31d{bottom:826.483733pt;}
.y4bb{bottom:826.980000pt;}
.y5{bottom:827.652000pt;}
.y2cf{bottom:828.983737pt;}
.y171{bottom:829.712000pt;}
.y530{bottom:831.302667pt;}
.y90{bottom:831.504000pt;}
.y4eb{bottom:832.540000pt;}
.y205{bottom:835.598667pt;}
.yb7{bottom:836.433333pt;}
.y30{bottom:838.409333pt;}
.y52f{bottom:843.290667pt;}
.y300{bottom:845.962892pt;}
.y188{bottom:847.108000pt;}
.y170{bottom:848.009333pt;}
.y4ea{bottom:850.837333pt;}
.y52e{bottom:855.280000pt;}
.y2f{bottom:856.708000pt;}
.y2d1{bottom:857.466012pt;}
.y8b{bottom:857.596000pt;}
.y4{bottom:863.109333pt;}
.y2db{bottom:863.544756pt;}
.y307{bottom:864.147464pt;}
.yac{bottom:864.229544pt;}
.y187{bottom:865.405333pt;}
.y16f{bottom:866.308000pt;}
.y52d{bottom:867.268000pt;}
.y2d9{bottom:869.597669pt;}
.y2ce{bottom:871.414405pt;}
.y2e{bottom:875.005333pt;}
.y4e9{bottom:876.516000pt;}
.y4ba{bottom:879.000000pt;}
.y52c{bottom:879.256000pt;}
.y2d2{bottom:881.126619pt;}
.y2f3{bottom:882.943354pt;}
.y16e{bottom:884.605333pt;}
.y52b{bottom:891.244000pt;}
.y2d{bottom:893.304000pt;}
.y4b9{bottom:897.298667pt;}
.y16d{bottom:902.904000pt;}
.y52a{bottom:903.233333pt;}
.y3{bottom:905.509333pt;}
.y570{bottom:911.105333pt;}
.y2c{bottom:911.601333pt;}
.y2ff{bottom:914.456390pt;}
.y529{bottom:915.221333pt;}
.y4b8{bottom:915.596000pt;}
.y16c{bottom:921.201333pt;}
.y56f{bottom:923.094667pt;}
.y4e8{bottom:924.986667pt;}
.y2f2{bottom:925.985340pt;}
.y2b{bottom:929.900000pt;}
.y4b7{bottom:933.894667pt;}
.y56e{bottom:935.082667pt;}
.y528{bottom:935.180000pt;}
.y2cd{bottom:937.514290pt;}
.y16b{bottom:939.498667pt;}
.y4e7{bottom:940.130667pt;}
.y226{bottom:940.841067pt;}
.y56d{bottom:947.070667pt;}
.y2{bottom:947.910667pt;}
.y2a{bottom:948.197333pt;}
.y4b6{bottom:952.192000pt;}
.y4e6{bottom:955.273333pt;}
.y16a{bottom:957.797333pt;}
.y56c{bottom:959.058667pt;}
.y29{bottom:966.496000pt;}
.y4e5{bottom:970.416000pt;}
.y4b5{bottom:970.489333pt;}
.y527{bottom:971.048000pt;}
.y169{bottom:976.094667pt;}
.y526{bottom:983.036000pt;}
.y186{bottom:984.793333pt;}
.y4e4{bottom:985.560000pt;}
.y28{bottom:994.393333pt;}
.y525{bottom:995.024000pt;}
.y4b4{bottom:996.798667pt;}
.y4e3{bottom:1000.702667pt;}
.y185{bottom:1003.092000pt;}
.y524{bottom:1007.012000pt;}
.y27{bottom:1012.690667pt;}
.y4e2{bottom:1015.846667pt;}
.y523{bottom:1019.001333pt;}
.y1{bottom:1030.989333pt;}
.y4b3{bottom:1034.121333pt;}
.h25{height:12.160460pt;}
.h26{height:12.167971pt;}
.h28{height:12.932049pt;}
.h36{height:16.511125pt;}
.h37{height:16.520994pt;}
.h39{height:18.054994pt;}
.h47{height:20.968006pt;}
.h3c{height:21.841901pt;}
.h63{height:22.447133pt;}
.h27{height:23.506705pt;}
.h1c{height:23.553940pt;}
.h1a{height:23.971677pt;}
.h2d{height:24.632055pt;}
.h30{height:25.151298pt;}
.h22{height:27.969818pt;}
.h5c{height:28.535412pt;}
.h60{height:28.959531pt;}
.h5a{height:29.175555pt;}
.h5e{height:29.322213pt;}
.h62{height:29.499997pt;}
.h58{height:30.309678pt;}
.hd{height:30.350141pt;}
.h20{height:30.512529pt;}
.h17{height:30.959724pt;}
.h18{height:30.980488pt;}
.h1b{height:31.405254pt;}
.h38{height:31.907699pt;}
.h4d{height:32.132698pt;}
.h4e{height:32.152864pt;}
.h50{height:33.652256pt;}
.h32{height:33.712378pt;}
.h52{height:34.138198pt;}
.h61{height:37.411639pt;}
.h45{height:38.900000pt;}
.h21{height:40.678064pt;}
.h4b{height:40.856530pt;}
.h1e{height:40.965943pt;}
.h1d{height:42.045051pt;}
.h6{height:44.240467pt;}
.h2{height:44.894267pt;}
.h10{height:45.589163pt;}
.h15{height:45.594496pt;}
.he{height:47.820800pt;}
.h40{height:50.138934pt;}
.h41{height:50.169458pt;}
.h4{height:51.403288pt;}
.h3d{height:51.715038pt;}
.h43{height:52.581747pt;}
.h3e{height:52.895080pt;}
.h2a{height:53.612099pt;}
.h48{height:53.660417pt;}
.h49{height:53.692346pt;}
.h23{height:54.286961pt;}
.h2e{height:54.425073pt;}
.h2b{height:58.208087pt;}
.h13{height:60.075000pt;}
.h12{height:60.195150pt;}
.h54{height:61.473162pt;}
.h5{height:61.987530pt;}
.h4f{height:62.123165pt;}
.h34{height:64.830590pt;}
.h55{height:65.378157pt;}
.h46{height:72.565333pt;}
.h4c{height:75.625813pt;}
.h14{height:87.018750pt;}
.h56{height:88.158267pt;}
.h7{height:88.725163pt;}
.hf{height:89.322496pt;}
.ha{height:89.327829pt;}
.hb{height:90.956800pt;}
.h3a{height:91.559467pt;}
.h53{height:92.713121pt;}
.hc{height:98.331288pt;}
.h42{height:98.700006pt;}
.h4a{height:99.822182pt;}
.h3b{height:105.829333pt;}
.h3{height:107.804098pt;}
.h24{height:121.306456pt;}
.h8{height:132.463829pt;}
.h9{height:134.695467pt;}
.h19{height:175.349993pt;}
.h16{height:189.333333pt;}
.h51{height:199.404000pt;}
.h35{height:211.114210pt;}
.h3f{height:213.798357pt;}
.h33{height:215.692840pt;}
.h5b{height:228.068280pt;}
.h5f{height:231.458040pt;}
.h59{height:233.184600pt;}
.h5d{height:234.356760pt;}
.h57{height:242.249040pt;}
.h1f{height:258.999989pt;}
.h2c{height:276.260539pt;}
.h2f{height:280.461850pt;}
.h29{height:388.855469pt;}
.h44{height:475.328000pt;}
.h31{height:532.729600pt;}
.h11{height:540.144000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:170.066110pt;}
.wa{width:244.167733pt;}
.w8{width:282.375748pt;}
.w9{width:282.480636pt;}
.w15{width:314.838467pt;}
.w16{width:314.841733pt;}
.w14{width:314.842187pt;}
.w17{width:314.842920pt;}
.w18{width:314.845280pt;}
.w10{width:317.008000pt;}
.wd{width:334.864000pt;}
.we{width:338.645296pt;}
.wf{width:342.463995pt;}
.w2{width:520.559992pt;}
.w5{width:526.999978pt;}
.w4{width:535.499978pt;}
.w3{width:614.666667pt;}
.wc{width:641.714827pt;}
.w12{width:641.800282pt;}
.wb{width:642.517030pt;}
.w13{width:642.524000pt;}
.w7{width:642.536603pt;}
.w11{width:642.538205pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x18c{left:-1051.901834pt;}
.x1c3{left:-1007.398790pt;}
.x1df{left:-1001.390940pt;}
.x1e0{left:-983.428139pt;}
.x1de{left:-977.420286pt;}
.x1c8{left:-975.713305pt;}
.x18d{left:-951.754800pt;}
.x1f3{left:-931.365260pt;}
.x1f2{left:-906.984044pt;}
.x194{left:-904.238720pt;}
.x1c6{left:-869.145342pt;}
.x20a{left:-827.823629pt;}
.x1f4{left:-801.935559pt;}
.x15c{left:-730.957475pt;}
.x212{left:-719.766760pt;}
.x204{left:-713.015203pt;}
.x18e{left:-701.344692pt;}
.x15b{left:-693.928655pt;}
.x1c4{left:-658.123404pt;}
.x18f{left:-647.425908pt;}
.x1e1{left:-635.434506pt;}
.x20c{left:-583.963546pt;}
.x210{left:-574.949042pt;}
.x208{left:-573.447514pt;}
.x205{left:-572.324028pt;}
.x17c{left:-569.488381pt;}
.x1f8{left:-554.326975pt;}
.x1f7{left:-532.565449pt;}
.x15d{left:-529.401105pt;}
.x1ec{left:-528.066187pt;}
.x1ef{left:-515.303185pt;}
.x1fe{left:-513.050890pt;}
.x1f0{left:-505.553893pt;}
.x190{left:-503.601986pt;}
.x1ee{left:-487.913586pt;}
.x1ea{left:-478.915061pt;}
.x1c5{left:-466.364250pt;}
.x191{left:-455.241527pt;}
.x5a{left:-428.398157pt;}
.x1ed{left:-409.509260pt;}
.x182{left:-400.101767pt;}
.x59{left:-392.951427pt;}
.x81{left:-389.533824pt;}
.x192{left:-383.329565pt;}
.x1eb{left:-374.233970pt;}
.x61{left:-368.874555pt;}
.x67{left:-366.412056pt;}
.x60{left:-360.158214pt;}
.x66{left:-358.451492pt;}
.x209{left:-349.474708pt;}
.x1c7{left:-346.097904pt;}
.x1f1{left:-342.723150pt;}
.x84{left:-340.258876pt;}
.x74{left:-337.796375pt;}
.x193{left:-335.388258pt;}
.x7c{left:-331.343212pt;}
.x1fa{left:-325.088166pt;}
.x1fb{left:-323.213917pt;}
.x62{left:-321.493205pt;}
.x5b{left:-313.337470pt;}
.x88{left:-309.359262pt;}
.x75{left:-302.536512pt;}
.x87{left:-298.550005pt;}
.x146{left:-294.596248pt;}
.x7e{left:-290.784615pt;}
.x7a{left:-281.499361pt;}
.x147{left:-276.578972pt;}
.x20d{left:-274.062792pt;}
.x58{left:-270.125350pt;}
.x129{left:-268.679088pt;}
.x6e{left:-267.280800pt;}
.x211{left:-265.064264pt;}
.x195{left:-263.488446pt;}
.x5d{left:-260.071862pt;}
.x5e{left:-256.471544pt;}
.x55{left:-252.306475pt;}
.x5c{left:-250.030836pt;}
.x1ff{left:-246.305798pt;}
.xea{left:-245.016751pt;}
.x56{left:-243.203940pt;}
.x213{left:-230.917782pt;}
.x214{left:-227.169283pt;}
.x1c9{left:-226.238561pt;}
.x1f5{left:-224.166226pt;}
.x69{left:-217.619665pt;}
.x196{left:-215.541065pt;}
.x57{left:-213.828333pt;}
.x20b{left:-204.656992pt;}
.x7b{left:-199.231883pt;}
.x5f{left:-196.960402pt;}
.x83{left:-195.444695pt;}
.x85{left:-188.422620pt;}
.x200{left:-187.016687pt;}
.x76{left:-185.960118pt;}
.x86{left:-181.981915pt;}
.x7d{left:-173.647613pt;}
.x17a{left:-168.818940pt;}
.x1f9{left:-167.518100pt;}
.x128{left:-162.766279pt;}
.x68{left:-160.565626pt;}
.x207{left:-159.259690pt;}
.xc0{left:-148.624075pt;}
.x197{left:-143.629103pt;}
.x162{left:-139.090779pt;}
.x63{left:-137.254092pt;}
.x202{left:-135.245871pt;}
.x20e{left:-130.373886pt;}
.x1f6{left:-114.985872pt;}
.x77{left:-113.743639pt;}
.x6f{left:-107.681233pt;}
.x161{left:-105.697641pt;}
.x7f{left:-103.134538pt;}
.x155{left:-99.003514pt;}
.x64{left:-97.451267pt;}
.xc1{left:-94.966278pt;}
.x201{left:-90.599333pt;}
.x70{left:-85.885397pt;}
.x158{left:-79.593092pt;}
.x72{left:-66.929535pt;}
.x159{left:-64.421443pt;}
.xdf{left:-52.885168pt;}
.x71{left:-50.630517pt;}
.x4f{left:-47.976993pt;}
.x157{left:-36.490442pt;}
.x203{left:-31.702589pt;}
.x73{left:-29.024455pt;}
.x153{left:-21.930497pt;}
.x0{left:0.000000pt;}
.x24{left:1.641592pt;}
.xaf{left:3.151558pt;}
.x36{left:5.868619pt;}
.xc4{left:8.501706pt;}
.x4a{left:10.403256pt;}
.x4e{left:11.538297pt;}
.x4b{left:14.973055pt;}
.x49{left:16.719129pt;}
.x48{left:18.465202pt;}
.x21e{left:19.712981pt;}
.xde{left:20.844957pt;}
.x23{left:22.204792pt;}
.xc3{left:23.162396pt;}
.x219{left:24.957929pt;}
.xa2{left:26.886654pt;}
.x78{left:29.166152pt;}
.x1e5{left:30.582610pt;}
.xbf{left:32.048659pt;}
.x6a{left:33.343691pt;}
.x1e{left:34.876792pt;}
.x22{left:37.411192pt;}
.x1c{left:42.307192pt;}
.x20{left:43.574392pt;}
.xba{left:44.780886pt;}
.xbe{left:45.936869pt;}
.x127{left:47.193641pt;}
.x35{left:49.270418pt;}
.xcd{left:52.111234pt;}
.x90{left:54.158436pt;}
.xeb{left:58.083966pt;}
.x6d{left:59.687881pt;}
.x223{left:60.978667pt;}
.x21{left:63.043192pt;}
.xa0{left:63.958219pt;}
.x9d{left:65.585089pt;}
.x9e{left:66.865497pt;}
.x6b{left:68.591096pt;}
.x79{left:70.306121pt;}
.x51{left:71.252916pt;}
.x50{left:72.199712pt;}
.x9f{left:73.930334pt;}
.xa{left:75.096000pt;}
.x1e3{left:76.010174pt;}
.x1b{left:77.615992pt;}
.x221{left:80.016000pt;}
.x9c{left:80.995171pt;}
.x32{left:83.568000pt;}
.x53{left:85.081129pt;}
.xbd{left:86.089408pt;}
.x31{left:87.997333pt;}
.x27{left:89.517333pt;}
.x2{left:91.736000pt;}
.xa3{left:92.895430pt;}
.x82{left:94.374690pt;}
.xa6{left:95.516000pt;}
.x54{left:98.730779pt;}
.x34{left:99.770180pt;}
.x94{left:100.824897pt;}
.x19{left:101.890667pt;}
.x216{left:104.812019pt;}
.x9b{left:107.055231pt;}
.x7{left:108.682667pt;}
.x1f{left:110.908792pt;}
.x26{left:115.441333pt;}
.x6c{left:116.736525pt;}
.x95{left:120.132055pt;}
.x2a{left:121.288353pt;}
.x4d{left:123.156000pt;}
.xa1{left:125.703990pt;}
.x21b{left:126.852000pt;}
.x6{left:127.813333pt;}
.x33{left:129.100532pt;}
.x52{left:130.955081pt;}
.x45{left:133.210666pt;}
.x217{left:134.129989pt;}
.x1a{left:136.573341pt;}
.x186{left:139.564466pt;}
.xe6{left:140.500000pt;}
.x154{left:141.993980pt;}
.x21f{left:143.032000pt;}
.x92{left:144.374355pt;}
.x1e4{left:146.125826pt;}
.x4{left:147.844000pt;}
.xc6{left:149.005464pt;}
.xe8{left:150.509333pt;}
.xad{left:151.595150pt;}
.x5{left:154.724000pt;}
.x3{left:156.461333pt;}
.x80{left:158.246078pt;}
.xd9{left:159.436687pt;}
.x65{left:160.708579pt;}
.x91{left:162.446706pt;}
.xe9{left:164.377333pt;}
.x1e7{left:168.260072pt;}
.x8f{left:169.901891pt;}
.xe3{left:171.737333pt;}
.x2f{left:176.144000pt;}
.x8d{left:178.610965pt;}
.x25{left:179.717333pt;}
.x17b{left:180.840656pt;}
.x93{left:182.345372pt;}
.xc2{left:184.528600pt;}
.xe4{left:186.829333pt;}
.xce{left:188.385522pt;}
.xa4{left:189.358667pt;}
.x15a{left:191.764934pt;}
.x28{left:194.531326pt;}
.x3d{left:195.985371pt;}
.xe0{left:198.416810pt;}
.x1{left:199.730667pt;}
.x30{left:200.769333pt;}
.x8c{left:205.378760pt;}
.x29{left:208.554215pt;}
.x4c{left:210.230667pt;}
.x96{left:211.593686pt;}
.x13{left:213.714667pt;}
.xd4{left:215.022397pt;}
.xd3{left:217.723338pt;}
.xf{left:219.217333pt;}
.x165{left:222.116855pt;}
.x37{left:224.877057pt;}
.x18{left:226.434667pt;}
.xc5{left:227.754626pt;}
.x18b{left:230.197328pt;}
.xda{left:232.778486pt;}
.x189{left:235.967995pt;}
.x3a{left:238.473147pt;}
.x1fc{left:241.419695pt;}
.x1e9{left:242.921224pt;}
.xcf{left:245.127213pt;}
.x1e2{left:246.065333pt;}
.x47{left:247.241804pt;}
.x1d{left:248.975992pt;}
.x8e{left:250.178018pt;}
.x14{left:256.732000pt;}
.x21d{left:266.054667pt;}
.x89{left:267.804544pt;}
.x15{left:271.454667pt;}
.x198{left:275.833037pt;}
.x9a{left:277.116000pt;}
.x16{left:279.357333pt;}
.x18a{left:280.421328pt;}
.xd{left:286.900000pt;}
.x38{left:288.972909pt;}
.xae{left:290.048904pt;}
.x3c{left:291.857793pt;}
.xd0{left:298.011981pt;}
.x17d{left:299.215713pt;}
.x39{left:300.498170pt;}
.x17{left:302.937333pt;}
.xe{left:304.756000pt;}
.x3b{left:306.796354pt;}
.x1e6{left:308.956568pt;}
.x10{left:310.521333pt;}
.x181{left:313.775682pt;}
.xb0{left:316.929532pt;}
.x44{left:318.438667pt;}
.xec{left:321.002955pt;}
.x199{left:323.774344pt;}
.xb{left:325.569333pt;}
.xb5{left:328.505780pt;}
.xb4{left:330.061698pt;}
.x1e8{left:331.090816pt;}
.x8{left:336.630667pt;}
.x220{left:339.192000pt;}
.xd5{left:341.637944pt;}
.x16e{left:342.921429pt;}
.xbc{left:346.650847pt;}
.x222{left:348.136000pt;}
.x21c{left:349.305333pt;}
.xaa{left:350.322667pt;}
.x9{left:353.086667pt;}
.xa5{left:355.902667pt;}
.xb2{left:359.010534pt;}
.xc7{left:362.867456pt;}
.xa7{left:368.372000pt;}
.x2b{left:371.720893pt;}
.x15e{left:377.520729pt;}
.x43{left:379.703962pt;}
.xcc{left:384.102446pt;}
.xb1{left:389.115351pt;}
.xc{left:392.865333pt;}
.xbb{left:395.678693pt;}
.xe5{left:397.758667pt;}
.xd6{left:398.763137pt;}
.xb8{left:400.308097pt;}
.xb7{left:401.847579pt;}
.xe7{left:403.302667pt;}
.xdb{left:404.548522pt;}
.xab{left:407.650667pt;}
.x3e{left:408.595649pt;}
.xdc{left:414.207264pt;}
.x97{left:419.533930pt;}
.xa8{left:421.828000pt;}
.x41{left:423.105761pt;}
.x8b{left:425.383430pt;}
.xac{left:435.672000pt;}
.x16f{left:437.001171pt;}
.xb9{left:438.526697pt;}
.xed{left:440.817852pt;}
.xd8{left:442.000119pt;}
.x184{left:443.678093pt;}
.x183{left:448.554392pt;}
.xb3{left:453.576366pt;}
.x2c{left:456.038206pt;}
.x215{left:457.144738pt;}
.x172{left:458.866979pt;}
.x11{left:459.833333pt;}
.xa9{left:460.844000pt;}
.xcb{left:463.618611pt;}
.x19a{left:468.017419pt;}
.x42{left:471.320466pt;}
.xb6{left:472.493915pt;}
.x3f{left:473.605524pt;}
.x2d{left:475.376790pt;}
.x21a{left:476.640753pt;}
.x12a{left:478.003807pt;}
.x174{left:479.492142pt;}
.xd7{left:482.925139pt;}
.x40{left:484.216762pt;}
.xee{left:488.515662pt;}
.x1fd{left:489.795016pt;}
.x46{left:498.635510pt;}
.x8a{left:501.202692pt;}
.x1ca{left:505.249080pt;}
.x19b{left:515.958726pt;}
.x170{left:517.132645pt;}
.x12{left:522.296000pt;}
.x17e{left:525.015708pt;}
.x218{left:527.222640pt;}
.x163{left:533.536312pt;}
.x164{left:535.965842pt;}
.xc8{left:540.439312pt;}
.xe1{left:547.769655pt;}
.xe2{left:549.698117pt;}
.x99{left:551.970667pt;}
.xef{left:560.254279pt;}
.x2e{left:562.642652pt;}
.xca{left:564.758744pt;}
.x206{left:567.081182pt;}
.x20f{left:579.077444pt;}
.x98{left:581.918152pt;}
.xc9{left:587.922196pt;}
.x12b{left:597.445564pt;}
.xd2{left:600.654425pt;}
.xd1{left:604.138804pt;}
.xf0{left:608.330558pt;}
.xdd{left:610.313168pt;}
.x19c{left:611.835266pt;}
.x19d{left:659.776574pt;}
.xf1{left:668.059433pt;}
.x171{left:680.428197pt;}
.x1cb{left:697.008235pt;}
.x12c{left:705.234727pt;}
.x19e{left:707.717881pt;}
.x125{left:712.367013pt;}
.xf2{left:716.125052pt;}
.x148{left:738.108050pt;}
.x126{left:747.308804pt;}
.x19f{left:755.647039pt;}
.x177{left:762.997840pt;}
.x14d{left:773.319041pt;}
.xf3{left:775.848596pt;}
.x1cc{left:793.322151pt;}
.x1a0{left:804.019648pt;}
.x12d{left:812.650751pt;}
.x175{left:814.595224pt;}
.xf4{left:823.551737pt;}
.x156{left:831.584708pt;}
.x1a1{left:851.960956pt;}
.x14a{left:870.431385pt;}
.x167{left:877.108284pt;}
.x166{left:878.943355pt;}
.xf5{left:883.264621pt;}
.x1cd{left:889.192617pt;}
.x1a2{left:899.902263pt;}
.x12e{left:920.455906pt;}
.xf6{left:931.340900pt;}
.x16d{left:945.100714pt;}
.x1a3{left:947.831421pt;}
.x149{left:960.289599pt;}
.xf7{left:979.044042pt;}
.x1ce{left:985.081306pt;}
.x185{left:986.376906pt;}
.x176{left:990.021208pt;}
.x150{left:994.268577pt;}
.x1a4{left:995.772728pt;}
.x14f{left:998.533180pt;}
.x17f{left:1014.919605pt;}
.x12f{left:1016.229997pt;}
.xf8{left:1027.120322pt;}
.x1a5{left:1043.714036pt;}
.x152{left:1053.163189pt;}
.x160{left:1061.046255pt;}
.x15f{left:1064.078860pt;}
.x179{left:1065.293619pt;}
.xf9{left:1074.818133pt;}
.x1cf{left:1080.951772pt;}
.x1a6{left:1091.661417pt;}
.x168{left:1109.602424pt;}
.x130{left:1112.009418pt;}
.xfa{left:1122.521274pt;}
.x1a7{left:1139.590576pt;}
.x14c{left:1156.366600pt;}
.x14b{left:1158.184440pt;}
.xfb{left:1170.597555pt;}
.x1d0{left:1176.834386pt;}
.x1a8{left:1187.957110pt;}
.x16c{left:1189.130821pt;}
.x131{left:1207.410371pt;}
.x14e{left:1216.450122pt;}
.xfc{left:1218.300695pt;}
.x1a9{left:1235.898418pt;}
.x178{left:1248.025425pt;}
.x151{left:1250.446344pt;}
.xfd{left:1266.376976pt;}
.x1d1{left:1273.136153pt;}
.x1aa{left:1283.827575pt;}
.x132{left:1303.189792pt;}
.xfe{left:1314.074786pt;}
.x1ab{left:1331.774958pt;}
.xff{left:1361.777928pt;}
.x1d2{left:1369.018768pt;}
.x1ac{left:1379.716265pt;}
.x133{left:1398.969214pt;}
.x100{left:1409.854208pt;}
.x169{left:1424.666180pt;}
.x1ad{left:1427.657572pt;}
.x187{left:1448.341182pt;}
.x188{left:1453.803321pt;}
.x101{left:1457.552019pt;}
.x1d3{left:1464.889233pt;}
.x1ae{left:1475.586730pt;}
.x134{left:1494.743305pt;}
.x16b{left:1499.938589pt;}
.x102{left:1505.628299pt;}
.x1af{left:1535.519439pt;}
.x103{left:1553.331441pt;}
.x1d4{left:1572.757175pt;}
.x16a{left:1579.458371pt;}
.x1b0{left:1583.448597pt;}
.x135{left:1590.522726pt;}
.x104{left:1601.034582pt;}
.x173{left:1611.033671pt;}
.x1b1{left:1631.821206pt;}
.x180{left:1640.170821pt;}
.x105{left:1649.110862pt;}
.x1d5{left:1669.052867pt;}
.x1b2{left:1679.762513pt;}
.x136{left:1685.923678pt;}
.x106{left:1696.808673pt;}
.x1b3{left:1739.683073pt;}
.x107{left:1744.884953pt;}
.x1d6{left:1776.920809pt;}
.x137{left:1781.703100pt;}
.x1b4{left:1787.630455pt;}
.x108{left:1792.588094pt;}
.x109{left:1840.291236pt;}
.x1b5{left:1847.551015pt;}
.x138{left:1877.466529pt;}
.x1d7{left:1884.782676pt;}
.x10a{left:1888.367516pt;}
.x1b6{left:1895.492322pt;}
.x10b{left:1936.065327pt;}
.x1b7{left:1943.421480pt;}
.x139{left:1973.240620pt;}
.x1d8{left:1980.665290pt;}
.x10c{left:1984.141607pt;}
.x1b8{left:1991.362787pt;}
.x10d{left:2031.844748pt;}
.x1b9{left:2051.714649pt;}
.x13a{left:2069.020042pt;}
.x10e{left:2079.542559pt;}
.x1d9{left:2088.958459pt;}
.x1ba{left:2099.655956pt;}
.x10f{left:2127.618839pt;}
.x1bb{left:2159.576515pt;}
.x13b{left:2164.420994pt;}
.x110{left:2175.321980pt;}
.x1da{left:2196.826401pt;}
.x1bc{left:2207.517822pt;}
.x111{left:2235.034863pt;}
.x1bd{left:2267.438382pt;}
.x13c{left:2272.226149pt;}
.x112{left:2283.111143pt;}
.x1db{left:2304.676118pt;}
.x1be{left:2315.385764pt;}
.x113{left:2330.814285pt;}
.x13d{left:2368.005570pt;}
.x1bf{left:2375.306324pt;}
.x114{left:2378.890565pt;}
.x1dc{left:2412.963212pt;}
.x1c0{left:2423.672858pt;}
.x115{left:2438.614109pt;}
.x1c1{left:2471.620240pt;}
.x13e{left:2475.794733pt;}
.x116{left:2486.317250pt;}
.x1dd{left:2508.851901pt;}
.x1c2{left:2519.543323pt;}
.x117{left:2546.408603pt;}
.x13f{left:2583.221419pt;}
.x118{left:2594.106413pt;}
.x119{left:2641.809555pt;}
.x140{left:2679.000840pt;}
.x11a{left:2689.885835pt;}
.x11b{left:2749.598718pt;}
.x141{left:2786.790003pt;}
.x11c{left:2797.301859pt;}
.x11d{left:2857.403873pt;}
.x142{left:2894.206028pt;}
.x11e{left:2905.101683pt;}
.x11f{left:2964.814566pt;}
.x143{left:3002.005852pt;}
.x120{left:3012.890846pt;}
.x121{left:3072.619721pt;}
.x144{left:3109.795015pt;}
.x122{left:3120.322862pt;}
.x123{left:3168.399143pt;}
.x145{left:3205.201298pt;}
.x124{left:3216.096953pt;}
}




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