
    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_3ca1b1184d19c13357eaf1d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_395a1a8513edc60e7904df87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_8620a7ae74603173ee2646f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_19f885c04f6d49fb408d05e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_9542ad4d7f9fdb26d81245b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_dd6e62d6bc557cba38bd1df4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_8f033c8e2198ad8292c9c191.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_b0cf70139b67d3f1e4ac7327.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.982422;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_7f21262aa6e94b4d23a3693d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_d763cbb90d21a7779ae31f20.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_b4863e95e1e0cee83e5df6ac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.755859;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_a2f1a14c5432f4ad43cb03ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.585840;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_26327fbb50e0e560b915b07e.woff2')format("woff");}.fff{font-family:fff;line-height:0.706543;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_b1313b25e8de2b82eddd16c8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.911621;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_36616d205d4e3524957f8d44.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712402;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_54639b94aad51a6fac1e6466.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.887971;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_ac8512f108ef66b513778bc2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.908691;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_f873de4a993945a62eb0b7fb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_e0b505102bef4529096a278b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.897461;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_a8f5723fa4af964a717b1265.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.906250;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_e661bff451899a1d43c84e62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.906738;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_012dbde0d0199727a3c64d34.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.906738;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_38653479765563929eaf3df9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.689941;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_e3897c73303f1cd161393a51.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984863;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_197abc4e9f0eebd352b18927.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.018066;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_a60a15d328318fc5728daa85.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.909668;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_4c180cc3a7366a342a7326b9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.906000;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_6cc701bd51d0f523f8993dea.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.754000;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_9b669436a10d82156d1e3bdd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-18.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v6{vertical-align:28.799820px;}
.v2{vertical-align:30.240000px;}
.v5{vertical-align:41.037948px;}
.ls7f{letter-spacing:-5.050656px;}
.ls86{letter-spacing:-4.677480px;}
.ls24{letter-spacing:-4.355208px;}
.ls93{letter-spacing:-4.319640px;}
.ls94{letter-spacing:-3.972024px;}
.ls81{letter-spacing:-3.966912px;}
.ls82{letter-spacing:-3.961800px;}
.ls6{letter-spacing:-3.960000px;}
.ls6f{letter-spacing:-3.685824px;}
.ls92{letter-spacing:-3.603960px;}
.ls97{letter-spacing:-3.598848px;}
.ls7{letter-spacing:-3.595500px;}
.ls36{letter-spacing:-3.321792px;}
.ls26{letter-spacing:-3.297996px;}
.ls19{letter-spacing:-3.246120px;}
.ls84{letter-spacing:-3.241008px;}
.ls11{letter-spacing:-3.240000px;}
.ls3d{letter-spacing:-2.952072px;}
.ls3e{letter-spacing:-2.946384px;}
.ls49{letter-spacing:-2.940696px;}
.ls28{letter-spacing:-2.931552px;}
.ls5f{letter-spacing:-2.923632px;}
.ls8c{letter-spacing:-2.893392px;}
.ls8e{letter-spacing:-2.888280px;}
.ls8b{letter-spacing:-2.883168px;}
.ls83{letter-spacing:-2.878056px;}
.ls2e{letter-spacing:-2.582352px;}
.lsb{letter-spacing:-2.576664px;}
.ls4b{letter-spacing:-2.570976px;}
.ls25{letter-spacing:-2.565108px;}
.ls5e{letter-spacing:-2.559600px;}
.ls79{letter-spacing:-2.535552px;}
.ls87{letter-spacing:-2.530440px;}
.ls8a{letter-spacing:-2.525328px;}
.ls14{letter-spacing:-2.522880px;}
.ls44{letter-spacing:-2.521800px;}
.ls7c{letter-spacing:-2.520216px;}
.lse{letter-spacing:-2.519100px;}
.ls51{letter-spacing:-2.518488px;}
.ls1c{letter-spacing:-2.515104px;}
.ls48{letter-spacing:-2.354400px;}
.ls23{letter-spacing:-2.221632px;}
.ls4a{letter-spacing:-2.218320px;}
.ls29{letter-spacing:-2.212632px;}
.ls37{letter-spacing:-2.206944px;}
.ls64{letter-spacing:-2.201256px;}
.ls5c{letter-spacing:-2.189880px;}
.ls8f{letter-spacing:-2.172600px;}
.ls12{letter-spacing:-2.170368px;}
.ls67{letter-spacing:-2.168964px;}
.ls1f{letter-spacing:-2.167488px;}
.ls15{letter-spacing:-2.163456px;}
.ls7b{letter-spacing:-2.162376px;}
.ls91{letter-spacing:-2.157264px;}
.ls41{letter-spacing:-2.150064px;}
.ls42{letter-spacing:-2.019240px;}
.ls5{letter-spacing:-1.848600px;}
.ls2b{letter-spacing:-1.842912px;}
.ls32{letter-spacing:-1.837224px;}
.ls27{letter-spacing:-1.832220px;}
.ls5a{letter-spacing:-1.825848px;}
.ls98{letter-spacing:-1.814760px;}
.ls21{letter-spacing:-1.809648px;}
.ls6a{letter-spacing:-1.805076px;}
.ls1d{letter-spacing:-1.804536px;}
.ls7e{letter-spacing:-1.799424px;}
.ls3c{letter-spacing:-1.780344px;}
.ls31{letter-spacing:-1.751904px;}
.ls3b{letter-spacing:-1.723464px;}
.ls70{letter-spacing:-1.712088px;}
.ls30{letter-spacing:-1.660896px;}
.ls62{letter-spacing:-1.641600px;}
.ls74{letter-spacing:-1.638144px;}
.ls71{letter-spacing:-1.632456px;}
.ls76{letter-spacing:-1.592640px;}
.ls75{letter-spacing:-1.581264px;}
.ls2a{letter-spacing:-1.478880px;}
.ls4{letter-spacing:-1.473192px;}
.ls5b{letter-spacing:-1.461816px;}
.ls95{letter-spacing:-1.451808px;}
.ls1a{letter-spacing:-1.446696px;}
.ls1e{letter-spacing:-1.441584px;}
.ls43{letter-spacing:-1.436400px;}
.ls17{letter-spacing:-1.435500px;}
.ls4c{letter-spacing:-1.177416px;}
.ls40{letter-spacing:-1.114848px;}
.ls9{letter-spacing:-1.109160px;}
.ls38{letter-spacing:-1.103472px;}
.ls3{letter-spacing:-1.097784px;}
.ls7d{letter-spacing:-1.093968px;}
.ls39{letter-spacing:-1.093608px;}
.ls13{letter-spacing:-1.092096px;}
.ls89{letter-spacing:-1.088856px;}
.ls66{letter-spacing:-1.086876px;}
.ls1b{letter-spacing:-1.083744px;}
.ls80{letter-spacing:-1.078632px;}
.ls16{letter-spacing:-1.075500px;}
.ls90{letter-spacing:-1.073520px;}
.ls8{letter-spacing:-0.745128px;}
.ls2d{letter-spacing:-0.739440px;}
.ls35{letter-spacing:-0.733752px;}
.ls3a{letter-spacing:-0.731268px;}
.ls20{letter-spacing:-0.731016px;}
.ls65{letter-spacing:-0.728064px;}
.ls69{letter-spacing:-0.727776px;}
.ls22{letter-spacing:-0.725904px;}
.ls99{letter-spacing:-0.720792px;}
.lsf{letter-spacing:-0.719316px;}
.ls7a{letter-spacing:-0.715680px;}
.ls4e{letter-spacing:-0.608616px;}
.ls4f{letter-spacing:-0.568800px;}
.ls6d{letter-spacing:-0.511920px;}
.ls6e{letter-spacing:-0.483480px;}
.ls50{letter-spacing:-0.477792px;}
.ls47{letter-spacing:-0.392472px;}
.ls3f{letter-spacing:-0.375516px;}
.lsa{letter-spacing:-0.375408px;}
.ls2c{letter-spacing:-0.369720px;}
.ls68{letter-spacing:-0.368676px;}
.ls59{letter-spacing:-0.364032px;}
.ls60{letter-spacing:-0.358344px;}
.lsd{letter-spacing:-0.358020px;}
.ls88{letter-spacing:-0.352728px;}
.ls58{letter-spacing:-0.349524px;}
.ls33{letter-spacing:-0.093600px;}
.ls1{letter-spacing:-0.072000px;}
.ls4d{letter-spacing:-0.057600px;}
.ls73{letter-spacing:-0.050400px;}
.ls77{letter-spacing:-0.028800px;}
.ls72{letter-spacing:-0.021600px;}
.ls2f{letter-spacing:-0.011376px;}
.ls54{letter-spacing:-0.009576px;}
.ls34{letter-spacing:-0.006588px;}
.ls2{letter-spacing:-0.005688px;}
.ls52{letter-spacing:-0.004788px;}
.lsc{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.004788px;}
.ls8d{letter-spacing:0.005112px;}
.ls5d{letter-spacing:0.005688px;}
.ls6c{letter-spacing:0.007200px;}
.ls57{letter-spacing:0.349524px;}
.ls61{letter-spacing:0.354312px;}
.ls53{letter-spacing:0.359100px;}
.ls45{letter-spacing:0.392472px;}
.ls85{letter-spacing:6.487128px;}
.ls9a{letter-spacing:7.202808px;}
.ls56{letter-spacing:8.469432px;}
.ls18{letter-spacing:9.499392px;}
.ls46{letter-spacing:10.312344px;}
.ls63{letter-spacing:11.046096px;}
.ls6b{letter-spacing:11.883816px;}
.ls96{letter-spacing:16.562880px;}
.ls78{letter-spacing:18.725256px;}
.ls10{letter-spacing:26.624700px;}
.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;}
}
.wsf{word-spacing:-30.942000px;}
.ws51{word-spacing:-18.367416px;}
.ws2f{word-spacing:-18.000000px;}
.ws17{word-spacing:-15.804612px;}
.ws3a{word-spacing:-14.770980px;}
.ws35{word-spacing:-14.411880px;}
.ws39{word-spacing:-14.402304px;}
.ws41{word-spacing:-14.328072px;}
.ws14{word-spacing:-14.322384px;}
.ws1{word-spacing:-14.025960px;}
.ws42{word-spacing:-12.933360px;}
.ws3d{word-spacing:-12.228552px;}
.ws3c{word-spacing:-12.223764px;}
.ws4c{word-spacing:-12.212568px;}
.ws2a{word-spacing:-11.879028px;}
.ws2c{word-spacing:-11.874240px;}
.ws25{word-spacing:-11.869452px;}
.ws3b{word-spacing:-11.864664px;}
.ws44{word-spacing:-11.849616px;}
.ws29{word-spacing:-11.524716px;}
.ws45{word-spacing:-11.491776px;}
.ws43{word-spacing:-11.486664px;}
.ws4a{word-spacing:-11.128824px;}
.ws8{word-spacing:-11.123712px;}
.ws4b{word-spacing:-11.118600px;}
.ws7{word-spacing:-10.765872px;}
.ws2{word-spacing:-10.441548px;}
.ws6{word-spacing:-10.418256px;}
.ws5{word-spacing:-9.687240px;}
.ws9{word-spacing:-8.824140px;}
.ws13{word-spacing:-1.465776px;}
.ws10{word-spacing:-1.441800px;}
.ws4d{word-spacing:-1.436472px;}
.ws2d{word-spacing:-1.092096px;}
.ws1d{word-spacing:-1.074600px;}
.ws1e{word-spacing:-0.728064px;}
.ws53{word-spacing:-0.725904px;}
.ws20{word-spacing:-0.722376px;}
.ws11{word-spacing:-0.720792px;}
.ws4e{word-spacing:-0.710568px;}
.ws1b{word-spacing:-0.449352px;}
.ws12{word-spacing:-0.373464px;}
.ws16{word-spacing:-0.364032px;}
.ws47{word-spacing:-0.362952px;}
.ws18{word-spacing:-0.358344px;}
.ws50{word-spacing:-0.357840px;}
.ws49{word-spacing:-0.352728px;}
.ws19{word-spacing:-0.352656px;}
.ws54{word-spacing:-0.347616px;}
.ws3{word-spacing:-0.044280px;}
.ws4{word-spacing:-0.027000px;}
.ws40{word-spacing:-0.014400px;}
.ws1f{word-spacing:-0.006588px;}
.ws4f{word-spacing:-0.005112px;}
.ws27{word-spacing:-0.004788px;}
.wse{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws48{word-spacing:0.005112px;}
.wsd{word-spacing:0.005688px;}
.wsa{word-spacing:0.011376px;}
.ws15{word-spacing:0.012636px;}
.ws1a{word-spacing:0.335592px;}
.ws36{word-spacing:0.349524px;}
.wsb{word-spacing:0.351000px;}
.ws2e{word-spacing:0.354312px;}
.ws52{word-spacing:0.362952px;}
.ws46{word-spacing:0.375408px;}
.wsc{word-spacing:0.711000px;}
.ws1c{word-spacing:1.120536px;}
.ws3f{word-spacing:99.734040px;}
.ws3e{word-spacing:124.574184px;}
.ws2b{word-spacing:135.711072px;}
.ws30{word-spacing:199.808028px;}
.ws32{word-spacing:211.677480px;}
.ws21{word-spacing:217.753452px;}
.ws31{word-spacing:219.596832px;}
.ws34{word-spacing:219.606408px;}
.ws33{word-spacing:223.566084px;}
.ws37{word-spacing:270.718308px;}
.ws38{word-spacing:274.687560px;}
.ws22{word-spacing:484.210440px;}
.ws23{word-spacing:496.448568px;}
.ws24{word-spacing:508.327596px;}
.ws26{word-spacing:520.206624px;}
.ws28{word-spacing:839.571012px;}
._5b{margin-left:-2378.903436px;}
._11{margin-left:-32.391900px;}
._10{margin-left:-30.585600px;}
._f{margin-left:-28.779300px;}
._12{margin-left:-26.997300px;}
._92{margin-left:-20.897856px;}
._93{margin-left:-19.440936px;}
._94{margin-left:-18.377640px;}
._97{margin-left:-16.925832px;}
._16{margin-left:-12.774384px;}
._1f{margin-left:-11.666088px;}
._1e{margin-left:-10.300968px;}
._20{margin-left:-9.021168px;}
._90{margin-left:-7.929072px;}
._95{margin-left:-6.493752px;}
._18{margin-left:-3.241008px;}
._13{margin-left:-2.186856px;}
._8{margin-left:-1.069344px;}
._2{width:1.006776px;}
._6{width:2.366208px;}
._c{width:4.041252px;}
._96{width:5.077368px;}
._7d{width:6.160428px;}
._9{width:7.485408px;}
._4{width:8.509248px;}
._3{width:9.567216px;}
._5{width:10.659312px;}
._b{width:11.663172px;}
._17{width:12.969144px;}
._21{width:14.034600px;}
._d{width:15.454296px;}
._15{width:17.386200px;}
._7{width:18.776088px;}
._1a{width:19.879560px;}
._1c{width:21.711096px;}
._a{width:23.089500px;}
._14{width:24.596208px;}
._0{width:26.142048px;}
._1{width:27.234144px;}
._19{width:29.088432px;}
._e{width:30.942000px;}
._91{width:32.398848px;}
._1d{width:33.479568px;}
._1b{width:34.617168px;}
._80{width:90.213156px;}
._4f{width:97.760736px;}
._4d{width:107.925120px;}
._8c{width:110.511828px;}
._84{width:120.202740px;}
._8b{width:122.675796px;}
._22{width:124.338384px;}
._50{width:129.188628px;}
._89{width:134.973720px;}
._88{width:142.744896px;}
._86{width:147.259728px;}
._8a{width:148.691340px;}
._85{width:154.805616px;}
._7f{width:162.404424px;}
._4e{width:163.729260px;}
._51{width:165.529296px;}
._87{width:173.890584px;}
._81{width:174.951828px;}
._77{width:181.431684px;}
._49{width:210.022236px;}
._6e{width:215.428680px;}
._73{width:223.401096px;}
._52{width:224.943588px;}
._65{width:242.641476px;}
._69{width:249.185880px;}
._6f{width:255.918600px;}
._6c{width:264.543408px;}
._7c{width:266.027796px;}
._67{width:268.214184px;}
._66{width:269.301060px;}
._8d{width:270.438912px;}
._6d{width:273.010788px;}
._6a{width:274.673196px;}
._64{width:279.967284px;}
._68{width:288.022140px;}
._71{width:293.891436px;}
._7a{width:300.180492px;}
._6b{width:301.829940px;}
._70{width:309.754080px;}
._53{width:310.903848px;}
._74{width:315.116640px;}
._75{width:319.845708px;}
._72{width:323.059932px;}
._76{width:333.728388px;}
._78{width:338.551848px;}
._4c{width:349.385256px;}
._8f{width:387.845856px;}
._23{width:412.189344px;}
._7b{width:417.024432px;}
._25{width:421.554672px;}
._60{width:441.275400px;}
._24{width:450.723168px;}
._83{width:456.568020px;}
._4b{width:458.388612px;}
._8e{width:461.618964px;}
._57{width:463.741344px;}
._79{width:475.648524px;}
._82{width:488.510064px;}
._2f{width:496.079892px;}
._3c{width:507.954132px;}
._37{width:514.512396px;}
._2b{width:519.833160px;}
._44{width:521.051544px;}
._4a{width:524.891988px;}
._46{width:532.076076px;}
._56{width:546.697584px;}
._41{width:568.173060px;}
._5f{width:574.472772px;}
._5d{width:608.915700px;}
._42{width:618.919524px;}
._3e{width:635.766552px;}
._39{width:638.098956px;}
._63{width:640.785276px;}
._45{width:648.017496px;}
._35{width:666.006012px;}
._2e{width:669.956112px;}
._5e{width:672.746472px;}
._2a{width:695.879892px;}
._38{width:709.632972px;}
._2c{width:713.890800px;}
._43{width:724.488840px;}
._3d{width:737.267436px;}
._3b{width:749.505564px;}
._40{width:753.208560px;}
._3f{width:777.349656px;}
._30{width:779.400216px;}
._62{width:792.958788px;}
._33{width:811.077624px;}
._36{width:813.596112px;}
._2d{width:817.929252px;}
._27{width:825.909552px;}
._32{width:844.191432px;}
._31{width:851.392584px;}
._28{width:854.638848px;}
._3a{width:856.793448px;}
._34{width:863.271612px;}
._29{width:866.876976px;}
._26{width:868.281480px;}
._48{width:878.899896px;}
._61{width:923.469444px;}
._55{width:928.660284px;}
._47{width:946.148652px;}
._58{width:950.276556px;}
._59{width:952.987464px;}
._54{width:970.076484px;}
._5c{width:980.158464px;}
._7e{width:988.209684px;}
._5a{width:1080.902772px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fsc{font-size:27.000000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:47.880000px;}
.fse{font-size:51.120000px;}
.fs10{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.519850px;}
.y49{bottom:3.239850px;}
.y42{bottom:5.399850px;}
.y5d{bottom:66.167850px;}
.y5{bottom:66.525004px;}
.y5f{bottom:73.817448px;}
.y5b{bottom:74.178000px;}
.y5a{bottom:76.697355px;}
.y59{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y2d{bottom:116.387850px;}
.y192{bottom:119.354826px;}
.y201{bottom:120.790515px;}
.y1c2{bottom:120.792018px;}
.y30b{bottom:120.796878px;}
.y286{bottom:120.796941px;}
.y178{bottom:123.407526px;}
.y8b{bottom:124.033206px;}
.y2ee{bottom:124.306446px;}
.y2c5{bottom:124.306986px;}
.y2bb{bottom:124.307742px;}
.y3a{bottom:125.386554px;}
.yb2{bottom:126.195258px;}
.yc0{bottom:127.816662px;}
.y342{bottom:128.620794px;}
.y379{bottom:128.621382px;}
.yfd{bottom:129.256122px;}
.y23f{bottom:129.527202px;}
.y21f{bottom:131.417310px;}
.y2c{bottom:131.597850px;}
.ye7{bottom:133.037742px;}
.y3b0{bottom:133.124772px;}
.y265{bottom:133.396950px;}
.y25c{bottom:133.937310px;}
.y123{bottom:134.477310px;}
.y22{bottom:139.264499px;}
.y191{bottom:139.424934px;}
.y30a{bottom:139.966878px;}
.y200{bottom:141.310686px;}
.y1c1{bottom:141.312189px;}
.y285{bottom:141.317112px;}
.y341{bottom:143.290956px;}
.y378{bottom:143.291544px;}
.y177{bottom:143.477634px;}
.y8a{bottom:144.103314px;}
.y1fe{bottom:144.281640px;}
.y2ed{bottom:144.376554px;}
.y2c4{bottom:144.377094px;}
.y2ba{bottom:144.377850px;}
.y39{bottom:145.456662px;}
.yb1{bottom:146.265366px;}
.y3af{bottom:147.794934px;}
.ybf{bottom:147.886770px;}
.yfc{bottom:149.326230px;}
.y23e{bottom:149.597310px;}
.y2b{bottom:149.687850px;}
.y21e{bottom:151.487418px;}
.ye6{bottom:153.107850px;}
.y264{bottom:153.467058px;}
.y25b{bottom:154.007418px;}
.y1bd{bottom:154.542630px;}
.y122{bottom:154.547418px;}
.y309{bottom:154.637040px;}
.y340{bottom:157.961118px;}
.y377{bottom:157.961706px;}
.y1fd{bottom:158.681550px;}
.y190{bottom:159.495042px;}
.y2b9{bottom:161.027850px;}
.y1ff{bottom:161.741082px;}
.y1c0{bottom:161.742585px;}
.y284{bottom:161.747508px;}
.y3ae{bottom:162.465096px;}
.y176{bottom:163.547742px;}
.y89{bottom:164.173422px;}
.y2ec{bottom:164.446662px;}
.y2c3{bottom:164.447202px;}
.y38{bottom:165.526770px;}
.yb0{bottom:166.335474px;}
.ybe{bottom:167.956878px;}
.y1bc{bottom:168.942540px;}
.y308{bottom:169.307202px;}
.yfb{bottom:169.396338px;}
.y23d{bottom:169.667418px;}
.y21d{bottom:171.557526px;}
.y263{bottom:173.537166px;}
.y25a{bottom:174.077526px;}
.y121{bottom:174.617526px;}
.y33f{bottom:177.131118px;}
.y376{bottom:177.131706px;}
.y3ad{bottom:177.135258px;}
.y18f{bottom:179.565150px;}
.y1fc{bottom:182.261253px;}
.y1bf{bottom:182.262756px;}
.y283{bottom:182.267679px;}
.y175{bottom:183.617850px;}
.y88{bottom:184.243530px;}
.y2eb{bottom:184.516770px;}
.y2c2{bottom:184.517310px;}
.y37{bottom:185.596878px;}
.yaf{bottom:186.405582px;}
.y2a{bottom:186.587202px;}
.ybd{bottom:188.026986px;}
.y307{bottom:188.477202px;}
.ye5{bottom:188.657850px;}
.yfa{bottom:189.466446px;}
.y23c{bottom:189.737526px;}
.y21c{bottom:191.627634px;}
.y33e{bottom:191.801280px;}
.y375{bottom:191.801868px;}
.y262{bottom:193.607274px;}
.y259{bottom:194.147634px;}
.y120{bottom:194.687634px;}
.y3ac{bottom:196.305258px;}
.y19{bottom:196.933500px;}
.y18e{bottom:199.635258px;}
.y1fb{bottom:202.781424px;}
.y1be{bottom:202.782927px;}
.y282{bottom:202.787850px;}
.y306{bottom:203.147364px;}
.y87{bottom:204.313638px;}
.y2ea{bottom:204.586878px;}
.y2c1{bottom:204.587418px;}
.y36{bottom:205.666986px;}
.y163{bottom:206.207742px;}
.y33d{bottom:206.471442px;}
.y374{bottom:206.472030px;}
.yae{bottom:206.475690px;}
.y29{bottom:206.657310px;}
.ybc{bottom:208.097094px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yf9{bottom:209.536554px;}
.y13d{bottom:209.537742px;}
.y23b{bottom:209.807634px;}
.y3ab{bottom:210.975420px;}
.y21b{bottom:211.697742px;}
.y261{bottom:213.677382px;}
.y258{bottom:214.217742px;}
.y11f{bottom:214.757742px;}
.y305{bottom:217.817526px;}
.y18d{bottom:219.705366px;}
.y174{bottom:219.977850px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1fa{bottom:223.211820px;}
.y1bb{bottom:223.212126px;}
.y2b8{bottom:224.379480px;}
.y86{bottom:224.383746px;}
.y2e9{bottom:224.656986px;}
.y2c0{bottom:224.657526px;}
.y33c{bottom:225.641442px;}
.y373{bottom:225.642030px;}
.y3aa{bottom:225.645582px;}
.y35{bottom:225.737094px;}
.y162{bottom:226.277850px;}
.yad{bottom:226.545798px;}
.y28{bottom:226.727418px;}
.ye4{bottom:228.165798px;}
.ybb{bottom:228.167202px;}
.y287{bottom:228.707850px;}
.yf8{bottom:229.606662px;}
.y13c{bottom:229.607850px;}
.y23a{bottom:229.877742px;}
.y219{bottom:231.767310px;}
.y21a{bottom:231.767850px;}
.y304{bottom:232.487688px;}
.y260{bottom:233.747490px;}
.y257{bottom:234.287850px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y11e{bottom:234.827850px;}
.y18c{bottom:239.775474px;}
.y33b{bottom:240.311604px;}
.y372{bottom:240.312192px;}
.y1f9{bottom:243.731991px;}
.y1ba{bottom:243.732297px;}
.y2b7{bottom:244.449588px;}
.y85{bottom:244.453854px;}
.y2e8{bottom:244.727094px;}
.y2bf{bottom:244.727634px;}
.y3a9{bottom:244.815582px;}
.y34{bottom:245.807202px;}
.yac{bottom:246.615906px;}
.y1f7{bottom:246.792720px;}
.y1b7{bottom:246.793026px;}
.y27{bottom:246.797526px;}
.y303{bottom:247.157850px;}
.ye3{bottom:248.235906px;}
.yba{bottom:248.237310px;}
.yf7{bottom:249.676770px;}
.y13b{bottom:249.677742px;}
.y238{bottom:249.947742px;}
.y239{bottom:249.947850px;}
.y218{bottom:251.837418px;}
.y25f{bottom:253.817598px;}
.y33a{bottom:254.981766px;}
.y371{bottom:254.982354px;}
.y3a8{bottom:259.485744px;}
.y18b{bottom:259.845582px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1f6{bottom:261.192630px;}
.y1b6{bottom:261.192936px;}
.y1f8{bottom:264.252162px;}
.y1b9{bottom:264.252468px;}
.y2b6{bottom:264.519696px;}
.y84{bottom:264.523962px;}
.y2e7{bottom:264.797202px;}
.y2be{bottom:264.797742px;}
.y33{bottom:265.877310px;}
.y161{bottom:266.414178px;}
.yab{bottom:266.686014px;}
.y26{bottom:266.867634px;}
.ye2{bottom:268.306014px;}
.yb9{bottom:268.307418px;}
.y339{bottom:269.651928px;}
.y370{bottom:269.652516px;}
.yf6{bottom:269.746878px;}
.y13a{bottom:269.747850px;}
.y236{bottom:270.017202px;}
.y237{bottom:270.017850px;}
.y11d{bottom:270.377850px;}
.y256{bottom:271.007850px;}
.y217{bottom:271.907526px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y25e{bottom:273.887706px;}
.y3a7{bottom:274.155906px;}
.y28b{bottom:278.117616px;}
.y18a{bottom:279.915690px;}
.y173{bottom:282.076446px;}
.y2b5{bottom:284.589804px;}
.y83{bottom:284.594070px;}
.y1f5{bottom:284.682558px;}
.y1b8{bottom:284.682864px;}
.y2e6{bottom:284.867310px;}
.y2bd{bottom:284.867850px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y32{bottom:285.947418px;}
.y160{bottom:286.484286px;}
.yaa{bottom:286.756122px;}
.y25{bottom:286.937742px;}
.ye1{bottom:288.376122px;}
.yb8{bottom:288.377526px;}
.y338{bottom:288.821928px;}
.y36f{bottom:288.822516px;}
.y3a6{bottom:288.826068px;}
.yf5{bottom:289.816986px;}
.y235{bottom:290.087310px;}
.y255{bottom:290.807850px;}
.y216{bottom:291.977634px;}
.y25d{bottom:293.957814px;}
.y28a{bottom:298.637787px;}
.y189{bottom:299.985798px;}
.y302{bottom:301.787850px;}
.y172{bottom:302.146554px;}
.y337{bottom:303.492090px;}
.y36e{bottom:303.492678px;}
.y2b4{bottom:304.659912px;}
.y82{bottom:304.664178px;}
.y2e5{bottom:304.937418px;}
.y1f4{bottom:305.202729px;}
.y1b5{bottom:305.203035px;}
.y31{bottom:306.017526px;}
.y15f{bottom:306.554394px;}
.ya9{bottom:306.826230px;}
.y24{bottom:307.007850px;}
.y3a5{bottom:307.996068px;}
.ye0{bottom:308.446230px;}
.yb7{bottom:308.447634px;}
.y139{bottom:309.886122px;}
.yf4{bottom:309.887094px;}
.y11c{bottom:309.887742px;}
.y234{bottom:310.157418px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y215{bottom:312.047742px;}
.y336{bottom:318.162252px;}
.y36d{bottom:318.162840px;}
.y289{bottom:319.068183px;}
.y188{bottom:320.055906px;}
.y2bc{bottom:321.587850px;}
.y171{bottom:322.216662px;}
.y3a4{bottom:322.666230px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2b3{bottom:324.730020px;}
.y81{bottom:324.734286px;}
.y2e4{bottom:325.007526px;}
.y1f3{bottom:325.722900px;}
.y1b4{bottom:325.723206px;}
.y30{bottom:326.087634px;}
.y15e{bottom:326.624502px;}
.ya8{bottom:326.896338px;}
.ydf{bottom:328.516338px;}
.yb6{bottom:328.517742px;}
.y138{bottom:329.956230px;}
.yf3{bottom:329.957202px;}
.y11b{bottom:329.957850px;}
.y233{bottom:330.227526px;}
.y213{bottom:332.117418px;}
.y214{bottom:332.117850px;}
.y335{bottom:337.332252px;}
.y36c{bottom:337.332840px;}
.y3a3{bottom:337.336392px;}
.y288{bottom:339.588354px;}
.y187{bottom:340.126014px;}
.y170{bottom:342.286770px;}
.y2b2{bottom:344.800128px;}
.y80{bottom:344.804394px;}
.y2e3{bottom:345.077634px;}
.y1f2{bottom:346.153296px;}
.y1b3{bottom:346.153602px;}
.y2f{bottom:346.157742px;}
.y15d{bottom:346.694610px;}
.ya7{bottom:346.966446px;}
.y274{bottom:347.327850px;}
.y10{bottom:348.133500px;}
.yde{bottom:348.586446px;}
.yb5{bottom:348.587850px;}
.y1f0{bottom:349.214025px;}
.y1af{bottom:349.214331px;}
.y137{bottom:350.026338px;}
.yf2{bottom:350.027310px;}
.y11a{bottom:350.027742px;}
.y232{bottom:350.297634px;}
.y334{bottom:352.002414px;}
.y36b{bottom:352.003002px;}
.y3a2{bottom:352.006554px;}
.y212{bottom:352.187526px;}
.y186{bottom:360.196122px;}
.y16f{bottom:362.356878px;}
.y23{bottom:362.987850px;}
.y1ef{bottom:363.613935px;}
.y1ae{bottom:363.614241px;}
.y2b1{bottom:364.870236px;}
.y7f{bottom:364.874502px;}
.y2e2{bottom:365.147742px;}
.y28c{bottom:365.507850px;}
.y2e{bottom:366.227850px;}
.y333{bottom:366.672576px;}
.y36a{bottom:366.673164px;}
.y1f1{bottom:366.673467px;}
.y1b2{bottom:366.673773px;}
.y15c{bottom:366.764718px;}
.ya6{bottom:367.036554px;}
.ydd{bottom:368.656554px;}
.y136{bottom:370.096446px;}
.yf1{bottom:370.097418px;}
.y119{bottom:370.097850px;}
.y231{bottom:370.367742px;}
.y3a1{bottom:371.176554px;}
.y211{bottom:372.257634px;}
.y185{bottom:380.266230px;}
.y332{bottom:381.342738px;}
.y369{bottom:381.343326px;}
.y16e{bottom:382.426986px;}
.y2b0{bottom:384.940344px;}
.y7e{bottom:384.944610px;}
.yb4{bottom:384.948264px;}
.y301{bottom:385.216014px;}
.y2e1{bottom:385.217850px;}
.y3a0{bottom:385.846716px;}
.yf{bottom:386.785499px;}
.y15b{bottom:386.834826px;}
.ya5{bottom:387.106662px;}
.y1ee{bottom:387.193638px;}
.y1b1{bottom:387.193944px;}
.ydc{bottom:388.726662px;}
.y135{bottom:390.166554px;}
.yf0{bottom:390.167526px;}
.y22f{bottom:390.437742px;}
.y230{bottom:390.437850px;}
.y210{bottom:392.327742px;}
.y184{bottom:400.336338px;}
.y331{bottom:400.512738px;}
.y368{bottom:400.513326px;}
.y39f{bottom:400.516878px;}
.y16d{bottom:402.497094px;}
.yb3{bottom:403.127850px;}
.y2af{bottom:405.010452px;}
.y7d{bottom:405.014718px;}
.y300{bottom:405.286122px;}
.y15a{bottom:406.904934px;}
.ya4{bottom:407.176770px;}
.y1ed{bottom:407.624034px;}
.y1b0{bottom:407.624340px;}
.ye{bottom:408.044999px;}
.ydb{bottom:408.796770px;}
.y118{bottom:410.235906px;}
.y134{bottom:410.236662px;}
.yef{bottom:410.237634px;}
.y22d{bottom:410.507202px;}
.y22e{bottom:410.507850px;}
.y20e{bottom:412.397310px;}
.y20f{bottom:412.397850px;}
.y330{bottom:415.182900px;}
.y367{bottom:415.183488px;}
.y29a{bottom:418.426023px;}
.y39e{bottom:419.686878px;}
.y183{bottom:420.406446px;}
.y2e0{bottom:421.937850px;}
.y16c{bottom:422.567202px;}
.y2ae{bottom:425.080560px;}
.y7c{bottom:425.084826px;}
.y2ff{bottom:425.356230px;}
.y159{bottom:426.975042px;}
.ya3{bottom:427.246878px;}
.y1ec{bottom:428.144205px;}
.y1ad{bottom:428.144511px;}
.yda{bottom:428.866878px;}
.y32f{bottom:429.853062px;}
.y366{bottom:429.853650px;}
.y117{bottom:430.306014px;}
.y133{bottom:430.306770px;}
.yee{bottom:430.307742px;}
.y22c{bottom:430.577310px;}
.y20d{bottom:432.467418px;}
.y39d{bottom:434.357040px;}
.y299{bottom:438.946194px;}
.y182{bottom:440.476554px;}
.y16b{bottom:442.637310px;}
.y365{bottom:444.523812px;}
.y2ad{bottom:445.150668px;}
.y7b{bottom:445.154934px;}
.y2fe{bottom:445.426338px;}
.y158{bottom:447.045150px;}
.ya2{bottom:447.316986px;}
.y1eb{bottom:448.664376px;}
.y1ac{bottom:448.664682px;}
.yd9{bottom:448.936986px;}
.y32e{bottom:449.023062px;}
.y39c{bottom:449.027202px;}
.y116{bottom:450.376122px;}
.y132{bottom:450.376878px;}
.yed{bottom:450.377850px;}
.y22b{bottom:450.647418px;}
.y1e9{bottom:451.635330px;}
.y58{bottom:452.357850px;}
.y20c{bottom:452.537526px;}
.y298{bottom:453.346104px;}
.y364{bottom:459.193974px;}
.y181{bottom:460.546662px;}
.y16a{bottom:462.707418px;}
.y32d{bottom:463.693224px;}
.y2ac{bottom:465.220776px;}
.y7a{bottom:465.225042px;}
.y2fd{bottom:465.496446px;}
.y1e8{bottom:466.035240px;}
.y157{bottom:467.115258px;}
.ya1{bottom:467.387094px;}
.y39b{bottom:468.197202px;}
.yd8{bottom:469.007094px;}
.y1ea{bottom:469.094772px;}
.y1ab{bottom:469.095078px;}
.y115{bottom:470.446230px;}
.y131{bottom:470.446986px;}
.y22a{bottom:470.717526px;}
.y20b{bottom:472.607634px;}
.y297{bottom:473.776500px;}
.y32c{bottom:478.363386px;}
.y363{bottom:478.363974px;}
.y180{bottom:480.616770px;}
.y293{bottom:480.976455px;}
.y169{bottom:482.777526px;}
.y39a{bottom:482.867364px;}
.yd{bottom:484.864502px;}
.y2ab{bottom:485.290884px;}
.y2df{bottom:485.294484px;}
.y79{bottom:485.295150px;}
.y2fc{bottom:485.566554px;}
.yec{bottom:485.927850px;}
.y156{bottom:487.185366px;}
.ya0{bottom:487.457202px;}
.y296{bottom:488.176410px;}
.yd7{bottom:489.077202px;}
.y1e7{bottom:489.614943px;}
.y1aa{bottom:489.615249px;}
.y1a6{bottom:489.616446px;}
.y114{bottom:490.516338px;}
.y130{bottom:490.517094px;}
.y229{bottom:490.787634px;}
.y20a{bottom:492.677742px;}
.y32b{bottom:493.033548px;}
.y362{bottom:493.034136px;}
.y399{bottom:497.537526px;}
.y57{bottom:498.528210px;}
.y17f{bottom:500.686878px;}
.y168{bottom:502.847634px;}
.yc{bottom:502.864502px;}
.y2aa{bottom:505.360992px;}
.y2de{bottom:505.364592px;}
.y78{bottom:505.365258px;}
.y2fb{bottom:505.636662px;}
.y155{bottom:507.255474px;}
.y9f{bottom:507.527310px;}
.y361{bottom:507.704298px;}
.y295{bottom:508.696581px;}
.yd6{bottom:509.147310px;}
.y1e6{bottom:510.135114px;}
.y1a9{bottom:510.135420px;}
.y113{bottom:510.586446px;}
.y12f{bottom:510.587202px;}
.y228{bottom:510.857742px;}
.y32a{bottom:512.203548px;}
.y398{bottom:512.207688px;}
.y208{bottom:512.747418px;}
.y209{bottom:512.747850px;}
.y56{bottom:513.737688px;}
.y17e{bottom:520.756986px;}
.yb{bottom:520.864502px;}
.y167{bottom:522.917742px;}
.y294{bottom:523.096491px;}
.y2a9{bottom:525.431100px;}
.y2dd{bottom:525.434700px;}
.y77{bottom:525.435366px;}
.yeb{bottom:525.437742px;}
.y2fa{bottom:525.706770px;}
.y329{bottom:526.873710px;}
.y360{bottom:526.874298px;}
.y397{bottom:526.877850px;}
.y154{bottom:527.325582px;}
.y9e{bottom:527.597418px;}
.y55{bottom:529.037904px;}
.yd5{bottom:529.217418px;}
.y1e5{bottom:530.565510px;}
.y1a8{bottom:530.565816px;}
.y112{bottom:530.656554px;}
.y12e{bottom:530.657310px;}
.y226{bottom:530.927526px;}
.y227{bottom:530.927850px;}
.y207{bottom:532.817526px;}
.ya{bottom:538.864499px;}
.y17d{bottom:540.827094px;}
.y328{bottom:541.543872px;}
.y35f{bottom:541.544460px;}
.y166{bottom:542.987850px;}
.y292{bottom:543.616662px;}
.y54{bottom:544.338120px;}
.y2a8{bottom:545.501208px;}
.y2dc{bottom:545.504808px;}
.y76{bottom:545.505474px;}
.yea{bottom:545.507850px;}
.y2f9{bottom:545.776878px;}
.y396{bottom:546.037908px;}
.y153{bottom:547.395690px;}
.y9d{bottom:547.667526px;}
.yd4{bottom:549.287526px;}
.y111{bottom:550.726662px;}
.y12d{bottom:550.727418px;}
.y225{bottom:550.997634px;}
.y1e4{bottom:551.085681px;}
.y1a7{bottom:551.085987px;}
.y206{bottom:552.887634px;}
.y1e2{bottom:554.146410px;}
.y327{bottom:556.214034px;}
.y9{bottom:556.864499px;}
.y53{bottom:559.547598px;}
.y395{bottom:560.708070px;}
.y35e{bottom:560.714460px;}
.y17c{bottom:560.897202px;}
.y291{bottom:564.047058px;}
.y2a7{bottom:565.571316px;}
.y2db{bottom:565.574916px;}
.y75{bottom:565.575582px;}
.ye9{bottom:565.577742px;}
.y2f8{bottom:565.846986px;}
.y152{bottom:567.465798px;}
.y9c{bottom:567.737634px;}
.y1e1{bottom:568.546320px;}
.yd3{bottom:569.357634px;}
.y110{bottom:570.796770px;}
.y12c{bottom:570.797526px;}
.y326{bottom:570.884196px;}
.y224{bottom:571.067742px;}
.y1e3{bottom:571.605852px;}
.y1a5{bottom:571.606158px;}
.y205{bottom:572.957742px;}
.y28e{bottom:574.307742px;}
.y52{bottom:574.847814px;}
.y394{bottom:575.378232px;}
.y35d{bottom:575.384622px;}
.y165{bottom:579.347850px;}
.y17b{bottom:580.967310px;}
.y290{bottom:584.567229px;}
.y2a6{bottom:585.641424px;}
.y2da{bottom:585.645024px;}
.y74{bottom:585.645690px;}
.ye8{bottom:585.647850px;}
.y2f7{bottom:585.917094px;}
.y151{bottom:587.535906px;}
.y9b{bottom:587.807742px;}
.yd2{bottom:589.427742px;}
.y325{bottom:590.054196px;}
.y35c{bottom:590.054784px;}
.y51{bottom:590.148030px;}
.y10f{bottom:590.866878px;}
.y12b{bottom:590.867634px;}
.y222{bottom:591.137112px;}
.y223{bottom:591.137850px;}
.y1e0{bottom:592.036248px;}
.y1a4{bottom:592.036554px;}
.y204{bottom:593.027850px;}
.y393{bottom:594.548232px;}
.y3cf{bottom:599.051904px;}
.y17a{bottom:601.037418px;}
.y1a1{bottom:602.297238px;}
.y324{bottom:604.724358px;}
.y35b{bottom:604.724946px;}
.y28f{bottom:605.087400px;}
.y50{bottom:605.357508px;}
.y2a5{bottom:605.711532px;}
.y2d9{bottom:605.715132px;}
.y73{bottom:605.715798px;}
.y2f6{bottom:605.987202px;}
.y150{bottom:607.606014px;}
.y9a{bottom:607.877850px;}
.y392{bottom:609.218394px;}
.yd1{bottom:609.497850px;}
.y10e{bottom:610.936986px;}
.y12a{bottom:610.937742px;}
.y221{bottom:611.207220px;}
.y1df{bottom:612.556419px;}
.y1a3{bottom:612.556725px;}
.y3ce{bottom:613.722066px;}
.y164{bottom:617.957850px;}
.y323{bottom:619.394520px;}
.y4f{bottom:620.657724px;}
.y179{bottom:621.107526px;}
.y391{bottom:623.888556px;}
.y35a{bottom:623.894946px;}
.y28d{bottom:625.517796px;}
.y2a4{bottom:625.781640px;}
.y2d8{bottom:625.785240px;}
.y72{bottom:625.785906px;}
.y2f5{bottom:626.057310px;}
.y14f{bottom:627.676122px;}
.y3cd{bottom:628.392228px;}
.y203{bottom:629.387850px;}
.y10d{bottom:631.007094px;}
.y129{bottom:631.007850px;}
.y220{bottom:631.277328px;}
.y1de{bottom:633.076590px;}
.y1a2{bottom:633.076896px;}
.y322{bottom:634.064682px;}
.y4e{bottom:635.957940px;}
.y359{bottom:638.565108px;}
.y390{bottom:643.058556px;}
.y3cc{bottom:643.062390px;}
.y99{bottom:644.237850px;}
.y8{bottom:645.510000px;}
.y2a3{bottom:645.851748px;}
.y2d7{bottom:645.855348px;}
.y71{bottom:645.856014px;}
.yd0{bottom:645.858264px;}
.y2f4{bottom:646.127418px;}
.y14e{bottom:647.746230px;}
.y10c{bottom:651.077202px;}
.y4d{bottom:651.167418px;}
.y29b{bottom:651.437850px;}
.y321{bottom:653.234682px;}
.y358{bottom:653.235270px;}
.y1dd{bottom:653.506986px;}
.y1a0{bottom:653.507292px;}
.y1db{bottom:656.567715px;}
.y38f{bottom:657.728718px;}
.y3cb{bottom:662.232390px;}
.ycf{bottom:664.037850px;}
.y2a2{bottom:665.921856px;}
.y2d6{bottom:665.925456px;}
.y70{bottom:665.926122px;}
.y2f3{bottom:666.197526px;}
.y4c{bottom:666.467634px;}
.y128{bottom:666.557850px;}
.y7{bottom:666.771000px;}
.y14d{bottom:667.816338px;}
.y320{bottom:667.904844px;}
.y357{bottom:667.905432px;}
.y193{bottom:670.247850px;}
.y1da{bottom:670.967625px;}
.y10b{bottom:671.147310px;}
.y38e{bottom:672.398880px;}
.y1dc{bottom:674.027157px;}
.y19f{bottom:674.027463px;}
.y3ca{bottom:676.902552px;}
.y4b{bottom:681.767850px;}
.y31f{bottom:682.575006px;}
.y3b5{bottom:682.575594px;}
.y98{bottom:682.847850px;}
.y253{bottom:683.474772px;}
.y2a1{bottom:685.991964px;}
.y2d5{bottom:685.995564px;}
.y6f{bottom:685.996230px;}
.y2f2{bottom:686.267634px;}
.y356{bottom:687.075432px;}
.y14c{bottom:687.886446px;}
.y10a{bottom:691.217418px;}
.y38d{bottom:691.568880px;}
.y3c9{bottom:691.572714px;}
.y1d9{bottom:694.547328px;}
.y19c{bottom:694.547634px;}
.y31e{bottom:697.245168px;}
.y281{bottom:697.427850px;}
.y355{bottom:701.745594px;}
.y252{bottom:703.994943px;}
.y48{bottom:705.978000px;}
.y2a0{bottom:706.062072px;}
.y2d4{bottom:706.065672px;}
.y6e{bottom:706.066338px;}
.y127{bottom:706.067742px;}
.y38c{bottom:706.239042px;}
.y3c8{bottom:706.242876px;}
.y2f1{bottom:706.337742px;}
.y250{bottom:707.055672px;}
.y14b{bottom:707.956554px;}
.y273{bottom:709.127850px;}
.y4a{bottom:709.217850px;}
.y109{bottom:711.287526px;}
.y1d8{bottom:714.977724px;}
.y19e{bottom:714.978030px;}
.y31d{bottom:716.415168px;}
.y354{bottom:716.415756px;}
.y272{bottom:719.657850px;}
.y38b{bottom:720.909204px;}
.y3c7{bottom:720.913038px;}
.y24f{bottom:721.455582px;}
.y251{bottom:724.425339px;}
.y29f{bottom:726.132180px;}
.y2d3{bottom:726.135780px;}
.yce{bottom:726.135960px;}
.y6d{bottom:726.136446px;}
.y126{bottom:726.137850px;}
.y6{bottom:726.298500px;}
.y2f0{bottom:726.407850px;}
.y14a{bottom:728.026662px;}
.y31c{bottom:731.085330px;}
.y353{bottom:731.085918px;}
.y108{bottom:731.357634px;}
.y1d6{bottom:735.497895px;}
.y19d{bottom:735.498201px;}
.y38a{bottom:735.579366px;}
.y271{bottom:738.825294px;}
.y3c6{bottom:740.083038px;}
.y1d5{bottom:742.697850px;}
.y24e{bottom:744.945510px;}
.y31b{bottom:745.755492px;}
.y29e{bottom:746.202288px;}
.y2d2{bottom:746.205888px;}
.ycd{bottom:746.206068px;}
.y6c{bottom:746.206554px;}
.y125{bottom:746.207742px;}
.y149{bottom:748.096770px;}
.y1d7{bottom:749.897805px;}
.y389{bottom:750.249528px;}
.y352{bottom:750.255918px;}
.y107{bottom:751.427742px;}
.y3{bottom:752.599495px;}
.y280{bottom:754.217850px;}
.y3c5{bottom:754.753200px;}
.y19b{bottom:756.017175px;}
.y270{bottom:759.345465px;}
.y31a{bottom:760.425654px;}
.y47{bottom:764.027850px;}
.y351{bottom:764.926080px;}
.y24d{bottom:765.465681px;}
.y97{bottom:766.272396px;}
.y2d1{bottom:766.275996px;}
.ycc{bottom:766.276176px;}
.y6b{bottom:766.276662px;}
.y27f{bottom:766.277634px;}
.y124{bottom:766.277850px;}
.y148{bottom:768.166878px;}
.y388{bottom:769.419528px;}
.y3c4{bottom:769.423362px;}
.y106{bottom:771.497850px;}
.y202{bottom:775.817850px;}
.y46{bottom:775.997850px;}
.y19a{bottom:776.447571px;}
.y319{bottom:779.595654px;}
.y350{bottom:779.596242px;}
.y26f{bottom:779.865636px;}
.y2ef{bottom:783.197850px;}
.y387{bottom:784.089690px;}
.y3c3{bottom:784.093524px;}
.y24c{bottom:785.896077px;}
.y96{bottom:786.342504px;}
.y2d0{bottom:786.346104px;}
.ycb{bottom:786.346284px;}
.y6a{bottom:786.346770px;}
.y27e{bottom:786.347742px;}
.y147{bottom:788.236986px;}
.y318{bottom:794.265816px;}
.y34f{bottom:794.266404px;}
.y197{bottom:796.967742px;}
.y386{bottom:798.759852px;}
.y24b{bottom:799.216293px;}
.y26e{bottom:800.296032px;}
.y45{bottom:801.377850px;}
.y3c2{bottom:803.263524px;}
.y95{bottom:806.412612px;}
.y2cf{bottom:806.416212px;}
.yca{bottom:806.416392px;}
.y69{bottom:806.416878px;}
.y27c{bottom:806.417742px;}
.y27d{bottom:806.417850px;}
.y105{bottom:807.047850px;}
.y146{bottom:808.307094px;}
.y29d{bottom:810.737940px;}
.y385{bottom:813.430014px;}
.y317{bottom:813.435816px;}
.y34e{bottom:813.436404px;}
.y24a{bottom:813.616203px;}
.y199{bottom:817.487913px;}
.y3c1{bottom:817.933686px;}
.y26d{bottom:820.816203px;}
.y29c{bottom:825.137850px;}
.y94{bottom:826.482720px;}
.y2ce{bottom:826.486320px;}
.yc9{bottom:826.486500px;}
.y68{bottom:826.486986px;}
.y27a{bottom:826.487160px;}
.y27b{bottom:826.487850px;}
.y249{bottom:826.936419px;}
.y384{bottom:828.100176px;}
.y316{bottom:828.105978px;}
.y34d{bottom:828.106566px;}
.y145{bottom:828.377202px;}
.y1cc{bottom:828.647634px;}
.y3c0{bottom:832.603848px;}
.y198{bottom:837.918309px;}
.y44{bottom:840.076950px;}
.y26c{bottom:841.336374px;}
.y34c{bottom:842.776728px;}
.y93{bottom:846.552828px;}
.y1d4{bottom:846.556302px;}
.y2cd{bottom:846.556428px;}
.yc8{bottom:846.556608px;}
.y67{bottom:846.557094px;}
.y279{bottom:846.557268px;}
.y104{bottom:846.557742px;}
.y383{bottom:847.270176px;}
.y3bf{bottom:847.274010px;}
.y315{bottom:847.275978px;}
.y248{bottom:847.366815px;}
.y144{bottom:848.447310px;}
.y1cb{bottom:848.717742px;}
.y41{bottom:855.648000px;}
.y196{bottom:858.437283px;}
.y43{bottom:861.047850px;}
.y26b{bottom:861.766770px;}
.y382{bottom:861.940338px;}
.y314{bottom:861.946140px;}
.y34b{bottom:861.946728px;}
.y3be{bottom:866.444010px;}
.y92{bottom:866.622936px;}
.y1d3{bottom:866.626410px;}
.y2cc{bottom:866.626536px;}
.yc7{bottom:866.626716px;}
.y66{bottom:866.627202px;}
.y278{bottom:866.627376px;}
.y103{bottom:866.627850px;}
.y247{bottom:867.886986px;}
.y143{bottom:868.517418px;}
.y195{bottom:868.697967px;}
.y1c9{bottom:868.787742px;}
.y1ca{bottom:868.787850px;}
.y381{bottom:876.610500px;}
.y313{bottom:876.616302px;}
.y34a{bottom:876.616890px;}
.y2{bottom:879.369000px;}
.y3bd{bottom:881.114172px;}
.y246{bottom:881.207202px;}
.y26a{bottom:882.286941px;}
.y91{bottom:886.693044px;}
.y1d2{bottom:886.696518px;}
.y2cb{bottom:886.696644px;}
.yc6{bottom:886.696824px;}
.y65{bottom:886.697310px;}
.y277{bottom:886.697484px;}
.y102{bottom:886.697742px;}
.y142{bottom:888.587526px;}
.y1c7{bottom:888.857742px;}
.y1c8{bottom:888.857850px;}
.y380{bottom:891.280662px;}
.y312{bottom:891.286464px;}
.y349{bottom:891.287052px;}
.y245{bottom:895.607112px;}
.y3bc{bottom:895.784334px;}
.y3b4{bottom:895.786890px;}
.y194{bottom:899.387850px;}
.y269{bottom:902.807112px;}
.y311{bottom:905.956626px;}
.y348{bottom:905.957214px;}
.y90{bottom:906.763152px;}
.y1d1{bottom:906.766626px;}
.y2ca{bottom:906.766752px;}
.yc5{bottom:906.766932px;}
.y64{bottom:906.767418px;}
.y276{bottom:906.767592px;}
.y101{bottom:906.767850px;}
.y141{bottom:908.657634px;}
.y244{bottom:908.837553px;}
.y1c6{bottom:908.927850px;}
.y37f{bottom:910.450662px;}
.y3bb{bottom:910.454496px;}
.y3b3{bottom:910.457052px;}
.y268{bottom:923.237508px;}
.y37e{bottom:925.120824px;}
.y310{bottom:925.126626px;}
.y347{bottom:925.127214px;}
.y1c3{bottom:925.307850px;}
.y40{bottom:926.567652px;}
.y8f{bottom:926.833260px;}
.y1d0{bottom:926.836734px;}
.y2c9{bottom:926.836860px;}
.yc4{bottom:926.837040px;}
.y63{bottom:926.837526px;}
.y275{bottom:926.837700px;}
.y140{bottom:928.727742px;}
.y243{bottom:929.357724px;}
.y3ba{bottom:929.624496px;}
.y3f{bottom:939.167850px;}
.y37d{bottom:939.790986px;}
.y30f{bottom:939.796788px;}
.y346{bottom:939.797376px;}
.y267{bottom:943.757679px;}
.y3b9{bottom:944.294658px;}
.y1c5{bottom:945.287850px;}
.y8e{bottom:946.903368px;}
.y100{bottom:946.906122px;}
.y1cf{bottom:946.906842px;}
.y2c8{bottom:946.906968px;}
.yc3{bottom:946.907148px;}
.y62{bottom:946.907634px;}
.y13f{bottom:948.797850px;}
.y241{bottom:949.877895px;}
.y37c{bottom:954.461148px;}
.y30e{bottom:954.466950px;}
.y345{bottom:954.467538px;}
.y240{bottom:957.077850px;}
.y3b8{bottom:958.964820px;}
.y3b2{bottom:958.967376px;}
.y3e{bottom:963.287850px;}
.y242{bottom:964.277805px;}
.y266{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.y8d{bottom:966.973476px;}
.yff{bottom:966.976230px;}
.y1ce{bottom:966.976950px;}
.y2c7{bottom:966.977076px;}
.yc2{bottom:966.977256px;}
.y61{bottom:966.977742px;}
.y37b{bottom:969.131310px;}
.y344{bottom:969.137700px;}
.y3b7{bottom:973.634982px;}
.y30d{bottom:973.636950px;}
.y3b1{bottom:973.637538px;}
.y1c4{bottom:983.897850px;}
.y13e{bottom:985.157850px;}
.y8c{bottom:987.043584px;}
.yfe{bottom:987.046338px;}
.y1cd{bottom:987.047058px;}
.y2c6{bottom:987.047184px;}
.yc1{bottom:987.047364px;}
.y60{bottom:987.047850px;}
.y37a{bottom:988.301310px;}
.y3b6{bottom:988.305144px;}
.y30c{bottom:988.307112px;}
.y343{bottom:988.307700px;}
.y254{bottom:990.197700px;}
.y3d{bottom:1000.637304px;}
.y3c{bottom:1013.237502px;}
.y3b{bottom:1025.837700px;}
.y5e{bottom:1032.767700px;}
.h16{height:11.880000px;}
.h12{height:14.670000px;}
.h11{height:18.720703px;}
.hf{height:24.660000px;}
.hc{height:29.163164px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h13{height:33.244805px;}
.h15{height:33.478594px;}
.hd{height:33.852305px;}
.h1e{height:35.287560px;}
.h14{height:35.644219px;}
.h1f{height:35.683987px;}
.h1a{height:36.868535px;}
.h18{height:37.441406px;}
.h19{height:38.521758px;}
.ha{height:39.604922px;}
.h1c{height:41.863680px;}
.h17{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1d{height:62.278414px;}
.h10{height:62.995957px;}
.h1b{height:74.516542px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:12.420000px;}
.w4{width:25.200000px;}
.w7{width:41.760000px;}
.w5{width:46.980000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:39.870000px;}
.xf{left:41.040000px;}
.x5{left:89.280000px;}
.x21{left:91.440000px;}
.x34{left:94.230216px;}
.x11{left:96.840000px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x29{left:111.330090px;}
.x51{left:114.479019px;}
.x4a{left:115.830000px;}
.x49{left:119.250000px;}
.x2a{left:121.049730px;}
.x18{left:124.560000px;}
.x27{left:126.269847px;}
.x19{left:130.049811px;}
.x12{left:132.300000px;}
.x1d{left:134.459405px;}
.x26{left:136.349784px;}
.x22{left:137.700000px;}
.x1e{left:140.040615px;}
.x23{left:143.009892px;}
.x2c{left:145.620000px;}
.x4c{left:147.780000px;}
.x25{left:150.749694px;}
.x28{left:152.369235px;}
.x2d{left:153.630000px;}
.x4f{left:156.240000px;}
.x52{left:159.658587px;}
.x50{left:165.779973px;}
.xa{left:183.240000px;}
.x38{left:191.160000px;}
.x4{left:203.484001px;}
.x37{left:222.300000px;}
.x24{left:235.979685px;}
.xb{left:252.180000px;}
.x2e{left:284.400000px;}
.xd{left:305.099865px;}
.x2b{left:313.200000px;}
.x39{left:324.000000px;}
.x3b{left:325.170000px;}
.x3a{left:336.690000px;}
.x4d{left:338.040000px;}
.x4e{left:346.590000px;}
.xc{left:401.760000px;}
.x53{left:412.470000px;}
.x8{left:416.610000px;}
.x9{left:431.640168px;}
.x17{left:434.610063px;}
.x41{left:443.340000px;}
.x1a{left:452.430000px;}
.x3{left:454.959000px;}
.x1f{left:457.650000px;}
.x1c{left:458.999957px;}
.x1b{left:460.350139px;}
.x20{left:463.230287px;}
.x15{left:469.080000px;}
.x3e{left:479.790000px;}
.x3c{left:487.350000px;}
.x3f{left:492.210000px;}
.x3d{left:501.570000px;}
.x2f{left:519.210702px;}
.x13{left:536.220000px;}
.x47{left:538.650000px;}
.x48{left:547.290000px;}
.x36{left:589.951008px;}
.x31{left:591.120477px;}
.x35{left:594.000459px;}
.x30{left:595.530225px;}
.x42{left:610.650000px;}
.x43{left:629.100000px;}
.x32{left:648.630342px;}
.x44{left:649.710000px;}
.xe{left:662.760000px;}
.x33{left:671.400873px;}
.x45{left:694.350000px;}
.x40{left:696.960000px;}
.x4b{left:699.479559px;}
.x46{left:702.900000px;}
.x16{left:704.789838px;}
.x10{left:709.650000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-16.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v6{vertical-align:25.599840pt;}
.v2{vertical-align:26.880000pt;}
.v5{vertical-align:36.478176pt;}
.ls7f{letter-spacing:-4.489472pt;}
.ls86{letter-spacing:-4.157760pt;}
.ls24{letter-spacing:-3.871296pt;}
.ls93{letter-spacing:-3.839680pt;}
.ls94{letter-spacing:-3.530688pt;}
.ls81{letter-spacing:-3.526144pt;}
.ls82{letter-spacing:-3.521600pt;}
.ls6{letter-spacing:-3.520000pt;}
.ls6f{letter-spacing:-3.276288pt;}
.ls92{letter-spacing:-3.203520pt;}
.ls97{letter-spacing:-3.198976pt;}
.ls7{letter-spacing:-3.196000pt;}
.ls36{letter-spacing:-2.952704pt;}
.ls26{letter-spacing:-2.931552pt;}
.ls19{letter-spacing:-2.885440pt;}
.ls84{letter-spacing:-2.880896pt;}
.ls11{letter-spacing:-2.880000pt;}
.ls3d{letter-spacing:-2.624064pt;}
.ls3e{letter-spacing:-2.619008pt;}
.ls49{letter-spacing:-2.613952pt;}
.ls28{letter-spacing:-2.605824pt;}
.ls5f{letter-spacing:-2.598784pt;}
.ls8c{letter-spacing:-2.571904pt;}
.ls8e{letter-spacing:-2.567360pt;}
.ls8b{letter-spacing:-2.562816pt;}
.ls83{letter-spacing:-2.558272pt;}
.ls2e{letter-spacing:-2.295424pt;}
.lsb{letter-spacing:-2.290368pt;}
.ls4b{letter-spacing:-2.285312pt;}
.ls25{letter-spacing:-2.280096pt;}
.ls5e{letter-spacing:-2.275200pt;}
.ls79{letter-spacing:-2.253824pt;}
.ls87{letter-spacing:-2.249280pt;}
.ls8a{letter-spacing:-2.244736pt;}
.ls14{letter-spacing:-2.242560pt;}
.ls44{letter-spacing:-2.241600pt;}
.ls7c{letter-spacing:-2.240192pt;}
.lse{letter-spacing:-2.239200pt;}
.ls51{letter-spacing:-2.238656pt;}
.ls1c{letter-spacing:-2.235648pt;}
.ls48{letter-spacing:-2.092800pt;}
.ls23{letter-spacing:-1.974784pt;}
.ls4a{letter-spacing:-1.971840pt;}
.ls29{letter-spacing:-1.966784pt;}
.ls37{letter-spacing:-1.961728pt;}
.ls64{letter-spacing:-1.956672pt;}
.ls5c{letter-spacing:-1.946560pt;}
.ls8f{letter-spacing:-1.931200pt;}
.ls12{letter-spacing:-1.929216pt;}
.ls67{letter-spacing:-1.927968pt;}
.ls1f{letter-spacing:-1.926656pt;}
.ls15{letter-spacing:-1.923072pt;}
.ls7b{letter-spacing:-1.922112pt;}
.ls91{letter-spacing:-1.917568pt;}
.ls41{letter-spacing:-1.911168pt;}
.ls42{letter-spacing:-1.794880pt;}
.ls5{letter-spacing:-1.643200pt;}
.ls2b{letter-spacing:-1.638144pt;}
.ls32{letter-spacing:-1.633088pt;}
.ls27{letter-spacing:-1.628640pt;}
.ls5a{letter-spacing:-1.622976pt;}
.ls98{letter-spacing:-1.613120pt;}
.ls21{letter-spacing:-1.608576pt;}
.ls6a{letter-spacing:-1.604512pt;}
.ls1d{letter-spacing:-1.604032pt;}
.ls7e{letter-spacing:-1.599488pt;}
.ls3c{letter-spacing:-1.582528pt;}
.ls31{letter-spacing:-1.557248pt;}
.ls3b{letter-spacing:-1.531968pt;}
.ls70{letter-spacing:-1.521856pt;}
.ls30{letter-spacing:-1.476352pt;}
.ls62{letter-spacing:-1.459200pt;}
.ls74{letter-spacing:-1.456128pt;}
.ls71{letter-spacing:-1.451072pt;}
.ls76{letter-spacing:-1.415680pt;}
.ls75{letter-spacing:-1.405568pt;}
.ls2a{letter-spacing:-1.314560pt;}
.ls4{letter-spacing:-1.309504pt;}
.ls5b{letter-spacing:-1.299392pt;}
.ls95{letter-spacing:-1.290496pt;}
.ls1a{letter-spacing:-1.285952pt;}
.ls1e{letter-spacing:-1.281408pt;}
.ls43{letter-spacing:-1.276800pt;}
.ls17{letter-spacing:-1.276000pt;}
.ls4c{letter-spacing:-1.046592pt;}
.ls40{letter-spacing:-0.990976pt;}
.ls9{letter-spacing:-0.985920pt;}
.ls38{letter-spacing:-0.980864pt;}
.ls3{letter-spacing:-0.975808pt;}
.ls7d{letter-spacing:-0.972416pt;}
.ls39{letter-spacing:-0.972096pt;}
.ls13{letter-spacing:-0.970752pt;}
.ls89{letter-spacing:-0.967872pt;}
.ls66{letter-spacing:-0.966112pt;}
.ls1b{letter-spacing:-0.963328pt;}
.ls80{letter-spacing:-0.958784pt;}
.ls16{letter-spacing:-0.956000pt;}
.ls90{letter-spacing:-0.954240pt;}
.ls8{letter-spacing:-0.662336pt;}
.ls2d{letter-spacing:-0.657280pt;}
.ls35{letter-spacing:-0.652224pt;}
.ls3a{letter-spacing:-0.650016pt;}
.ls20{letter-spacing:-0.649792pt;}
.ls65{letter-spacing:-0.647168pt;}
.ls69{letter-spacing:-0.646912pt;}
.ls22{letter-spacing:-0.645248pt;}
.ls99{letter-spacing:-0.640704pt;}
.lsf{letter-spacing:-0.639392pt;}
.ls7a{letter-spacing:-0.636160pt;}
.ls4e{letter-spacing:-0.540992pt;}
.ls4f{letter-spacing:-0.505600pt;}
.ls6d{letter-spacing:-0.455040pt;}
.ls6e{letter-spacing:-0.429760pt;}
.ls50{letter-spacing:-0.424704pt;}
.ls47{letter-spacing:-0.348864pt;}
.ls3f{letter-spacing:-0.333792pt;}
.lsa{letter-spacing:-0.333696pt;}
.ls2c{letter-spacing:-0.328640pt;}
.ls68{letter-spacing:-0.327712pt;}
.ls59{letter-spacing:-0.323584pt;}
.ls60{letter-spacing:-0.318528pt;}
.lsd{letter-spacing:-0.318240pt;}
.ls88{letter-spacing:-0.313536pt;}
.ls58{letter-spacing:-0.310688pt;}
.ls33{letter-spacing:-0.083200pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls4d{letter-spacing:-0.051200pt;}
.ls73{letter-spacing:-0.044800pt;}
.ls77{letter-spacing:-0.025600pt;}
.ls72{letter-spacing:-0.019200pt;}
.ls2f{letter-spacing:-0.010112pt;}
.ls54{letter-spacing:-0.008512pt;}
.ls34{letter-spacing:-0.005856pt;}
.ls2{letter-spacing:-0.005056pt;}
.ls52{letter-spacing:-0.004256pt;}
.lsc{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.004256pt;}
.ls8d{letter-spacing:0.004544pt;}
.ls5d{letter-spacing:0.005056pt;}
.ls6c{letter-spacing:0.006400pt;}
.ls57{letter-spacing:0.310688pt;}
.ls61{letter-spacing:0.314944pt;}
.ls53{letter-spacing:0.319200pt;}
.ls45{letter-spacing:0.348864pt;}
.ls85{letter-spacing:5.766336pt;}
.ls9a{letter-spacing:6.402496pt;}
.ls56{letter-spacing:7.528384pt;}
.ls18{letter-spacing:8.443904pt;}
.ls46{letter-spacing:9.166528pt;}
.ls63{letter-spacing:9.818752pt;}
.ls6b{letter-spacing:10.563392pt;}
.ls96{letter-spacing:14.722560pt;}
.ls78{letter-spacing:16.644672pt;}
.ls10{letter-spacing:23.666400pt;}
.wsf{word-spacing:-27.504000pt;}
.ws51{word-spacing:-16.326592pt;}
.ws2f{word-spacing:-16.000000pt;}
.ws17{word-spacing:-14.048544pt;}
.ws3a{word-spacing:-13.129760pt;}
.ws35{word-spacing:-12.810560pt;}
.ws39{word-spacing:-12.802048pt;}
.ws41{word-spacing:-12.736064pt;}
.ws14{word-spacing:-12.731008pt;}
.ws1{word-spacing:-12.467520pt;}
.ws42{word-spacing:-11.496320pt;}
.ws3d{word-spacing:-10.869824pt;}
.ws3c{word-spacing:-10.865568pt;}
.ws4c{word-spacing:-10.855616pt;}
.ws2a{word-spacing:-10.559136pt;}
.ws2c{word-spacing:-10.554880pt;}
.ws25{word-spacing:-10.550624pt;}
.ws3b{word-spacing:-10.546368pt;}
.ws44{word-spacing:-10.532992pt;}
.ws29{word-spacing:-10.244192pt;}
.ws45{word-spacing:-10.214912pt;}
.ws43{word-spacing:-10.210368pt;}
.ws4a{word-spacing:-9.892288pt;}
.ws8{word-spacing:-9.887744pt;}
.ws4b{word-spacing:-9.883200pt;}
.ws7{word-spacing:-9.569664pt;}
.ws2{word-spacing:-9.281376pt;}
.ws6{word-spacing:-9.260672pt;}
.ws5{word-spacing:-8.610880pt;}
.ws9{word-spacing:-7.843680pt;}
.ws13{word-spacing:-1.302912pt;}
.ws10{word-spacing:-1.281600pt;}
.ws4d{word-spacing:-1.276864pt;}
.ws2d{word-spacing:-0.970752pt;}
.ws1d{word-spacing:-0.955200pt;}
.ws1e{word-spacing:-0.647168pt;}
.ws53{word-spacing:-0.645248pt;}
.ws20{word-spacing:-0.642112pt;}
.ws11{word-spacing:-0.640704pt;}
.ws4e{word-spacing:-0.631616pt;}
.ws1b{word-spacing:-0.399424pt;}
.ws12{word-spacing:-0.331968pt;}
.ws16{word-spacing:-0.323584pt;}
.ws47{word-spacing:-0.322624pt;}
.ws18{word-spacing:-0.318528pt;}
.ws50{word-spacing:-0.318080pt;}
.ws49{word-spacing:-0.313536pt;}
.ws19{word-spacing:-0.313472pt;}
.ws54{word-spacing:-0.308992pt;}
.ws3{word-spacing:-0.039360pt;}
.ws4{word-spacing:-0.024000pt;}
.ws40{word-spacing:-0.012800pt;}
.ws1f{word-spacing:-0.005856pt;}
.ws4f{word-spacing:-0.004544pt;}
.ws27{word-spacing:-0.004256pt;}
.wse{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws48{word-spacing:0.004544pt;}
.wsd{word-spacing:0.005056pt;}
.wsa{word-spacing:0.010112pt;}
.ws15{word-spacing:0.011232pt;}
.ws1a{word-spacing:0.298304pt;}
.ws36{word-spacing:0.310688pt;}
.wsb{word-spacing:0.312000pt;}
.ws2e{word-spacing:0.314944pt;}
.ws52{word-spacing:0.322624pt;}
.ws46{word-spacing:0.333696pt;}
.wsc{word-spacing:0.632000pt;}
.ws1c{word-spacing:0.996032pt;}
.ws3f{word-spacing:88.652480pt;}
.ws3e{word-spacing:110.732608pt;}
.ws2b{word-spacing:120.632064pt;}
.ws30{word-spacing:177.607136pt;}
.ws32{word-spacing:188.157760pt;}
.ws21{word-spacing:193.558624pt;}
.ws31{word-spacing:195.197184pt;}
.ws34{word-spacing:195.205696pt;}
.ws33{word-spacing:198.725408pt;}
.ws37{word-spacing:240.638496pt;}
.ws38{word-spacing:244.166720pt;}
.ws22{word-spacing:430.409280pt;}
.ws23{word-spacing:441.287616pt;}
.ws24{word-spacing:451.846752pt;}
.ws26{word-spacing:462.405888pt;}
.ws28{word-spacing:746.285344pt;}
._5b{margin-left:-2114.580832pt;}
._11{margin-left:-28.792800pt;}
._10{margin-left:-27.187200pt;}
._f{margin-left:-25.581600pt;}
._12{margin-left:-23.997600pt;}
._92{margin-left:-18.575872pt;}
._93{margin-left:-17.280832pt;}
._94{margin-left:-16.335680pt;}
._97{margin-left:-15.045184pt;}
._16{margin-left:-11.355008pt;}
._1f{margin-left:-10.369856pt;}
._1e{margin-left:-9.156416pt;}
._20{margin-left:-8.018816pt;}
._90{margin-left:-7.048064pt;}
._95{margin-left:-5.772224pt;}
._18{margin-left:-2.880896pt;}
._13{margin-left:-1.943872pt;}
._8{margin-left:-0.950528pt;}
._2{width:0.894912pt;}
._6{width:2.103296pt;}
._c{width:3.592224pt;}
._96{width:4.513216pt;}
._7d{width:5.475936pt;}
._9{width:6.653696pt;}
._4{width:7.563776pt;}
._3{width:8.504192pt;}
._5{width:9.474944pt;}
._b{width:10.367264pt;}
._17{width:11.528128pt;}
._21{width:12.475200pt;}
._d{width:13.737152pt;}
._15{width:15.454400pt;}
._7{width:16.689856pt;}
._1a{width:17.670720pt;}
._1c{width:19.298752pt;}
._a{width:20.524000pt;}
._14{width:21.863296pt;}
._0{width:23.237376pt;}
._1{width:24.208128pt;}
._19{width:25.856384pt;}
._e{width:27.504000pt;}
._91{width:28.798976pt;}
._1d{width:29.759616pt;}
._1b{width:30.770816pt;}
._80{width:80.189472pt;}
._4f{width:86.898432pt;}
._4d{width:95.933440pt;}
._8c{width:98.232736pt;}
._84{width:106.846880pt;}
._8b{width:109.045152pt;}
._22{width:110.523008pt;}
._50{width:114.834336pt;}
._89{width:119.976640pt;}
._88{width:126.884352pt;}
._86{width:130.897536pt;}
._8a{width:132.170080pt;}
._85{width:137.604992pt;}
._7f{width:144.359488pt;}
._4e{width:145.537120pt;}
._51{width:147.137152pt;}
._87{width:154.569408pt;}
._81{width:155.512736pt;}
._77{width:161.272608pt;}
._49{width:186.686432pt;}
._6e{width:191.492160pt;}
._73{width:198.578752pt;}
._52{width:199.949856pt;}
._65{width:215.681312pt;}
._69{width:221.498560pt;}
._6f{width:227.483200pt;}
._6c{width:235.149696pt;}
._7c{width:236.469152pt;}
._67{width:238.412608pt;}
._66{width:239.378720pt;}
._8d{width:240.390144pt;}
._6d{width:242.676256pt;}
._6a{width:244.153952pt;}
._64{width:248.859808pt;}
._68{width:256.019680pt;}
._71{width:261.236832pt;}
._7a{width:266.827104pt;}
._6b{width:268.293280pt;}
._70{width:275.336960pt;}
._53{width:276.358976pt;}
._74{width:280.103680pt;}
._75{width:284.307296pt;}
._72{width:287.164384pt;}
._76{width:296.647456pt;}
._78{width:300.934976pt;}
._4c{width:310.564672pt;}
._8f{width:344.751872pt;}
._23{width:366.390528pt;}
._7b{width:370.688384pt;}
._25{width:374.715264pt;}
._60{width:392.244800pt;}
._24{width:400.642816pt;}
._83{width:405.838240pt;}
._4b{width:407.456544pt;}
._8e{width:410.327968pt;}
._57{width:412.214528pt;}
._79{width:422.798688pt;}
._82{width:434.231168pt;}
._2f{width:440.959904pt;}
._3c{width:451.514784pt;}
._37{width:457.344352pt;}
._2b{width:462.073920pt;}
._44{width:463.156928pt;}
._4a{width:466.570656pt;}
._46{width:472.956512pt;}
._56{width:485.953408pt;}
._41{width:505.042720pt;}
._5f{width:510.642464pt;}
._5d{width:541.258400pt;}
._42{width:550.150688pt;}
._3e{width:565.125824pt;}
._39{width:567.199072pt;}
._63{width:569.586912pt;}
._45{width:576.015552pt;}
._35{width:592.005344pt;}
._2e{width:595.516544pt;}
._5e{width:597.996864pt;}
._2a{width:618.559904pt;}
._38{width:630.784864pt;}
._2c{width:634.569600pt;}
._43{width:643.990080pt;}
._3d{width:655.348832pt;}
._3b{width:666.227168pt;}
._40{width:669.518720pt;}
._3f{width:690.977472pt;}
._30{width:692.800192pt;}
._62{width:704.852256pt;}
._33{width:720.957888pt;}
._36{width:723.196544pt;}
._2d{width:727.048224pt;}
._27{width:734.141824pt;}
._32{width:750.392384pt;}
._31{width:756.793408pt;}
._28{width:759.678976pt;}
._3a{width:761.594176pt;}
._34{width:767.352544pt;}
._29{width:770.557312pt;}
._26{width:771.805760pt;}
._48{width:781.244352pt;}
._61{width:820.861728pt;}
._55{width:825.475808pt;}
._47{width:841.021024pt;}
._58{width:844.690272pt;}
._59{width:847.099968pt;}
._54{width:862.290208pt;}
._5c{width:871.251968pt;}
._7e{width:878.408608pt;}
._5a{width:960.802464pt;}
.fs9{font-size:4.160000pt;}
.fsc{font-size:24.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:42.560000pt;}
.fse{font-size:45.440000pt;}
.fs10{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.239867pt;}
.y49{bottom:2.879867pt;}
.y42{bottom:4.799867pt;}
.y5d{bottom:58.815867pt;}
.y5{bottom:59.133337pt;}
.y5f{bottom:65.615509pt;}
.y5b{bottom:65.936000pt;}
.y5a{bottom:68.175427pt;}
.y59{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y2d{bottom:103.455867pt;}
.y192{bottom:106.093179pt;}
.y201{bottom:107.369347pt;}
.y1c2{bottom:107.370683pt;}
.y30b{bottom:107.375003pt;}
.y286{bottom:107.375059pt;}
.y178{bottom:109.695579pt;}
.y8b{bottom:110.251739pt;}
.y2ee{bottom:110.494619pt;}
.y2c5{bottom:110.495099pt;}
.y2bb{bottom:110.495771pt;}
.y3a{bottom:111.454715pt;}
.yb2{bottom:112.173563pt;}
.yc0{bottom:113.614811pt;}
.y342{bottom:114.329595pt;}
.y379{bottom:114.330117pt;}
.yfd{bottom:114.894331pt;}
.y23f{bottom:115.135291pt;}
.y21f{bottom:116.815387pt;}
.y2c{bottom:116.975867pt;}
.ye7{bottom:118.255771pt;}
.y3b0{bottom:118.333131pt;}
.y265{bottom:118.575067pt;}
.y25c{bottom:119.055387pt;}
.y123{bottom:119.535387pt;}
.y22{bottom:123.790666pt;}
.y191{bottom:123.933275pt;}
.y30a{bottom:124.415003pt;}
.y200{bottom:125.609499pt;}
.y1c1{bottom:125.610835pt;}
.y285{bottom:125.615211pt;}
.y341{bottom:127.369739pt;}
.y378{bottom:127.370261pt;}
.y177{bottom:127.535675pt;}
.y8a{bottom:128.091835pt;}
.y1fe{bottom:128.250347pt;}
.y2ed{bottom:128.334715pt;}
.y2c4{bottom:128.335195pt;}
.y2ba{bottom:128.335867pt;}
.y39{bottom:129.294811pt;}
.yb1{bottom:130.013659pt;}
.y3af{bottom:131.373275pt;}
.ybf{bottom:131.454907pt;}
.yfc{bottom:132.734427pt;}
.y23e{bottom:132.975387pt;}
.y2b{bottom:133.055867pt;}
.y21e{bottom:134.655483pt;}
.ye6{bottom:136.095867pt;}
.y264{bottom:136.415163pt;}
.y25b{bottom:136.895483pt;}
.y1bd{bottom:137.371227pt;}
.y122{bottom:137.375483pt;}
.y309{bottom:137.455147pt;}
.y340{bottom:140.409883pt;}
.y377{bottom:140.410405pt;}
.y1fd{bottom:141.050267pt;}
.y190{bottom:141.773371pt;}
.y2b9{bottom:143.135867pt;}
.y1ff{bottom:143.769851pt;}
.y1c0{bottom:143.771187pt;}
.y284{bottom:143.775563pt;}
.y3ae{bottom:144.413419pt;}
.y176{bottom:145.375771pt;}
.y89{bottom:145.931931pt;}
.y2ec{bottom:146.174811pt;}
.y2c3{bottom:146.175291pt;}
.y38{bottom:147.134907pt;}
.yb0{bottom:147.853755pt;}
.ybe{bottom:149.295003pt;}
.y1bc{bottom:150.171147pt;}
.y308{bottom:150.495291pt;}
.yfb{bottom:150.574523pt;}
.y23d{bottom:150.815483pt;}
.y21d{bottom:152.495579pt;}
.y263{bottom:154.255259pt;}
.y25a{bottom:154.735579pt;}
.y121{bottom:155.215579pt;}
.y33f{bottom:157.449883pt;}
.y376{bottom:157.450405pt;}
.y3ad{bottom:157.453563pt;}
.y18f{bottom:159.613467pt;}
.y1fc{bottom:162.010003pt;}
.y1bf{bottom:162.011339pt;}
.y283{bottom:162.015715pt;}
.y175{bottom:163.215867pt;}
.y88{bottom:163.772027pt;}
.y2eb{bottom:164.014907pt;}
.y2c2{bottom:164.015387pt;}
.y37{bottom:164.975003pt;}
.yaf{bottom:165.693851pt;}
.y2a{bottom:165.855291pt;}
.ybd{bottom:167.135099pt;}
.y307{bottom:167.535291pt;}
.ye5{bottom:167.695867pt;}
.yfa{bottom:168.414619pt;}
.y23c{bottom:168.655579pt;}
.y21c{bottom:170.335675pt;}
.y33e{bottom:170.490027pt;}
.y375{bottom:170.490549pt;}
.y262{bottom:172.095355pt;}
.y259{bottom:172.575675pt;}
.y120{bottom:173.055675pt;}
.y3ac{bottom:174.493563pt;}
.y19{bottom:175.052000pt;}
.y18e{bottom:177.453563pt;}
.y1fb{bottom:180.250155pt;}
.y1be{bottom:180.251491pt;}
.y282{bottom:180.255867pt;}
.y306{bottom:180.575435pt;}
.y87{bottom:181.612123pt;}
.y2ea{bottom:181.855003pt;}
.y2c1{bottom:181.855483pt;}
.y36{bottom:182.815099pt;}
.y163{bottom:183.295771pt;}
.y33d{bottom:183.530171pt;}
.y374{bottom:183.530693pt;}
.yae{bottom:183.533947pt;}
.y29{bottom:183.695387pt;}
.ybc{bottom:184.975195pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yf9{bottom:186.254715pt;}
.y13d{bottom:186.255771pt;}
.y23b{bottom:186.495675pt;}
.y3ab{bottom:187.533707pt;}
.y21b{bottom:188.175771pt;}
.y261{bottom:189.935451pt;}
.y258{bottom:190.415771pt;}
.y11f{bottom:190.895771pt;}
.y305{bottom:193.615579pt;}
.y18d{bottom:195.293659pt;}
.y174{bottom:195.535867pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1fa{bottom:198.410507pt;}
.y1bb{bottom:198.410779pt;}
.y2b8{bottom:199.448427pt;}
.y86{bottom:199.452219pt;}
.y2e9{bottom:199.695099pt;}
.y2c0{bottom:199.695579pt;}
.y33c{bottom:200.570171pt;}
.y373{bottom:200.570693pt;}
.y3aa{bottom:200.573851pt;}
.y35{bottom:200.655195pt;}
.y162{bottom:201.135867pt;}
.yad{bottom:201.374043pt;}
.y28{bottom:201.535483pt;}
.ye4{bottom:202.814043pt;}
.ybb{bottom:202.815291pt;}
.y287{bottom:203.295867pt;}
.yf8{bottom:204.094811pt;}
.y13c{bottom:204.095867pt;}
.y23a{bottom:204.335771pt;}
.y219{bottom:206.015387pt;}
.y21a{bottom:206.015867pt;}
.y304{bottom:206.655723pt;}
.y260{bottom:207.775547pt;}
.y257{bottom:208.255867pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y11e{bottom:208.735867pt;}
.y18c{bottom:213.133755pt;}
.y33b{bottom:213.610315pt;}
.y372{bottom:213.610837pt;}
.y1f9{bottom:216.650659pt;}
.y1ba{bottom:216.650931pt;}
.y2b7{bottom:217.288523pt;}
.y85{bottom:217.292315pt;}
.y2e8{bottom:217.535195pt;}
.y2bf{bottom:217.535675pt;}
.y3a9{bottom:217.613851pt;}
.y34{bottom:218.495291pt;}
.yac{bottom:219.214139pt;}
.y1f7{bottom:219.371307pt;}
.y1b7{bottom:219.371579pt;}
.y27{bottom:219.375579pt;}
.y303{bottom:219.695867pt;}
.ye3{bottom:220.654139pt;}
.yba{bottom:220.655387pt;}
.yf7{bottom:221.934907pt;}
.y13b{bottom:221.935771pt;}
.y238{bottom:222.175771pt;}
.y239{bottom:222.175867pt;}
.y218{bottom:223.855483pt;}
.y25f{bottom:225.615643pt;}
.y33a{bottom:226.650459pt;}
.y371{bottom:226.650981pt;}
.y3a8{bottom:230.653995pt;}
.y18b{bottom:230.973851pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1f6{bottom:232.171227pt;}
.y1b6{bottom:232.171499pt;}
.y1f8{bottom:234.890811pt;}
.y1b9{bottom:234.891083pt;}
.y2b6{bottom:235.128619pt;}
.y84{bottom:235.132411pt;}
.y2e7{bottom:235.375291pt;}
.y2be{bottom:235.375771pt;}
.y33{bottom:236.335387pt;}
.y161{bottom:236.812603pt;}
.yab{bottom:237.054235pt;}
.y26{bottom:237.215675pt;}
.ye2{bottom:238.494235pt;}
.yb9{bottom:238.495483pt;}
.y339{bottom:239.690603pt;}
.y370{bottom:239.691125pt;}
.yf6{bottom:239.775003pt;}
.y13a{bottom:239.775867pt;}
.y236{bottom:240.015291pt;}
.y237{bottom:240.015867pt;}
.y11d{bottom:240.335867pt;}
.y256{bottom:240.895867pt;}
.y217{bottom:241.695579pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y25e{bottom:243.455739pt;}
.y3a7{bottom:243.694139pt;}
.y28b{bottom:247.215659pt;}
.y18a{bottom:248.813947pt;}
.y173{bottom:250.734619pt;}
.y2b5{bottom:252.968715pt;}
.y83{bottom:252.972507pt;}
.y1f5{bottom:253.051163pt;}
.y1b8{bottom:253.051435pt;}
.y2e6{bottom:253.215387pt;}
.y2bd{bottom:253.215867pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y32{bottom:254.175483pt;}
.y160{bottom:254.652699pt;}
.yaa{bottom:254.894331pt;}
.y25{bottom:255.055771pt;}
.ye1{bottom:256.334331pt;}
.yb8{bottom:256.335579pt;}
.y338{bottom:256.730603pt;}
.y36f{bottom:256.731125pt;}
.y3a6{bottom:256.734283pt;}
.yf5{bottom:257.615099pt;}
.y235{bottom:257.855387pt;}
.y255{bottom:258.495867pt;}
.y216{bottom:259.535675pt;}
.y25d{bottom:261.295835pt;}
.y28a{bottom:265.455811pt;}
.y189{bottom:266.654043pt;}
.y302{bottom:268.255867pt;}
.y172{bottom:268.574715pt;}
.y337{bottom:269.770747pt;}
.y36e{bottom:269.771269pt;}
.y2b4{bottom:270.808811pt;}
.y82{bottom:270.812603pt;}
.y2e5{bottom:271.055483pt;}
.y1f4{bottom:271.291315pt;}
.y1b5{bottom:271.291587pt;}
.y31{bottom:272.015579pt;}
.y15f{bottom:272.492795pt;}
.ya9{bottom:272.734427pt;}
.y24{bottom:272.895867pt;}
.y3a5{bottom:273.774283pt;}
.ye0{bottom:274.174427pt;}
.yb7{bottom:274.175675pt;}
.y139{bottom:275.454331pt;}
.yf4{bottom:275.455195pt;}
.y11c{bottom:275.455771pt;}
.y234{bottom:275.695483pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y215{bottom:277.375771pt;}
.y336{bottom:282.810891pt;}
.y36d{bottom:282.811413pt;}
.y289{bottom:283.616163pt;}
.y188{bottom:284.494139pt;}
.y2bc{bottom:285.855867pt;}
.y171{bottom:286.414811pt;}
.y3a4{bottom:286.814427pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2b3{bottom:288.648907pt;}
.y81{bottom:288.652699pt;}
.y2e4{bottom:288.895579pt;}
.y1f3{bottom:289.531467pt;}
.y1b4{bottom:289.531739pt;}
.y30{bottom:289.855675pt;}
.y15e{bottom:290.332891pt;}
.ya8{bottom:290.574523pt;}
.ydf{bottom:292.014523pt;}
.yb6{bottom:292.015771pt;}
.y138{bottom:293.294427pt;}
.yf3{bottom:293.295291pt;}
.y11b{bottom:293.295867pt;}
.y233{bottom:293.535579pt;}
.y213{bottom:295.215483pt;}
.y214{bottom:295.215867pt;}
.y335{bottom:299.850891pt;}
.y36c{bottom:299.851413pt;}
.y3a3{bottom:299.854571pt;}
.y288{bottom:301.856315pt;}
.y187{bottom:302.334235pt;}
.y170{bottom:304.254907pt;}
.y2b2{bottom:306.489003pt;}
.y80{bottom:306.492795pt;}
.y2e3{bottom:306.735675pt;}
.y1f2{bottom:307.691819pt;}
.y1b3{bottom:307.692091pt;}
.y2f{bottom:307.695771pt;}
.y15d{bottom:308.172987pt;}
.ya7{bottom:308.414619pt;}
.y274{bottom:308.735867pt;}
.y10{bottom:309.452000pt;}
.yde{bottom:309.854619pt;}
.yb5{bottom:309.855867pt;}
.y1f0{bottom:310.412467pt;}
.y1af{bottom:310.412739pt;}
.y137{bottom:311.134523pt;}
.yf2{bottom:311.135387pt;}
.y11a{bottom:311.135771pt;}
.y232{bottom:311.375675pt;}
.y334{bottom:312.891035pt;}
.y36b{bottom:312.891557pt;}
.y3a2{bottom:312.894715pt;}
.y212{bottom:313.055579pt;}
.y186{bottom:320.174331pt;}
.y16f{bottom:322.095003pt;}
.y23{bottom:322.655867pt;}
.y1ef{bottom:323.212387pt;}
.y1ae{bottom:323.212659pt;}
.y2b1{bottom:324.329099pt;}
.y7f{bottom:324.332891pt;}
.y2e2{bottom:324.575771pt;}
.y28c{bottom:324.895867pt;}
.y2e{bottom:325.535867pt;}
.y333{bottom:325.931179pt;}
.y36a{bottom:325.931701pt;}
.y1f1{bottom:325.931971pt;}
.y1b2{bottom:325.932243pt;}
.y15c{bottom:326.013083pt;}
.ya6{bottom:326.254715pt;}
.ydd{bottom:327.694715pt;}
.y136{bottom:328.974619pt;}
.yf1{bottom:328.975483pt;}
.y119{bottom:328.975867pt;}
.y231{bottom:329.215771pt;}
.y3a1{bottom:329.934715pt;}
.y211{bottom:330.895675pt;}
.y185{bottom:338.014427pt;}
.y332{bottom:338.971323pt;}
.y369{bottom:338.971845pt;}
.y16e{bottom:339.935099pt;}
.y2b0{bottom:342.169195pt;}
.y7e{bottom:342.172987pt;}
.yb4{bottom:342.176235pt;}
.y301{bottom:342.414235pt;}
.y2e1{bottom:342.415867pt;}
.y3a0{bottom:342.974859pt;}
.yf{bottom:343.809333pt;}
.y15b{bottom:343.853179pt;}
.ya5{bottom:344.094811pt;}
.y1ee{bottom:344.172123pt;}
.y1b1{bottom:344.172395pt;}
.ydc{bottom:345.534811pt;}
.y135{bottom:346.814715pt;}
.yf0{bottom:346.815579pt;}
.y22f{bottom:347.055771pt;}
.y230{bottom:347.055867pt;}
.y210{bottom:348.735771pt;}
.y184{bottom:355.854523pt;}
.y331{bottom:356.011323pt;}
.y368{bottom:356.011845pt;}
.y39f{bottom:356.015003pt;}
.y16d{bottom:357.775195pt;}
.yb3{bottom:358.335867pt;}
.y2af{bottom:360.009291pt;}
.y7d{bottom:360.013083pt;}
.y300{bottom:360.254331pt;}
.y15a{bottom:361.693275pt;}
.ya4{bottom:361.934907pt;}
.y1ed{bottom:362.332475pt;}
.y1b0{bottom:362.332747pt;}
.ye{bottom:362.706666pt;}
.ydb{bottom:363.374907pt;}
.y118{bottom:364.654139pt;}
.y134{bottom:364.654811pt;}
.yef{bottom:364.655675pt;}
.y22d{bottom:364.895291pt;}
.y22e{bottom:364.895867pt;}
.y20e{bottom:366.575387pt;}
.y20f{bottom:366.575867pt;}
.y330{bottom:369.051467pt;}
.y367{bottom:369.051989pt;}
.y29a{bottom:371.934243pt;}
.y39e{bottom:373.055003pt;}
.y183{bottom:373.694619pt;}
.y2e0{bottom:375.055867pt;}
.y16c{bottom:375.615291pt;}
.y2ae{bottom:377.849387pt;}
.y7c{bottom:377.853179pt;}
.y2ff{bottom:378.094427pt;}
.y159{bottom:379.533371pt;}
.ya3{bottom:379.775003pt;}
.y1ec{bottom:380.572627pt;}
.y1ad{bottom:380.572899pt;}
.yda{bottom:381.215003pt;}
.y32f{bottom:382.091611pt;}
.y366{bottom:382.092133pt;}
.y117{bottom:382.494235pt;}
.y133{bottom:382.494907pt;}
.yee{bottom:382.495771pt;}
.y22c{bottom:382.735387pt;}
.y20d{bottom:384.415483pt;}
.y39d{bottom:386.095147pt;}
.y299{bottom:390.174395pt;}
.y182{bottom:391.534715pt;}
.y16b{bottom:393.455387pt;}
.y365{bottom:395.132277pt;}
.y2ad{bottom:395.689483pt;}
.y7b{bottom:395.693275pt;}
.y2fe{bottom:395.934523pt;}
.y158{bottom:397.373467pt;}
.ya2{bottom:397.615099pt;}
.y1eb{bottom:398.812779pt;}
.y1ac{bottom:398.813051pt;}
.yd9{bottom:399.055099pt;}
.y32e{bottom:399.131611pt;}
.y39c{bottom:399.135291pt;}
.y116{bottom:400.334331pt;}
.y132{bottom:400.335003pt;}
.yed{bottom:400.335867pt;}
.y22b{bottom:400.575483pt;}
.y1e9{bottom:401.453627pt;}
.y58{bottom:402.095867pt;}
.y20c{bottom:402.255579pt;}
.y298{bottom:402.974315pt;}
.y364{bottom:408.172421pt;}
.y181{bottom:409.374811pt;}
.y16a{bottom:411.295483pt;}
.y32d{bottom:412.171755pt;}
.y2ac{bottom:413.529579pt;}
.y7a{bottom:413.533371pt;}
.y2fd{bottom:413.774619pt;}
.y1e8{bottom:414.253547pt;}
.y157{bottom:415.213563pt;}
.ya1{bottom:415.455195pt;}
.y39b{bottom:416.175291pt;}
.yd8{bottom:416.895195pt;}
.y1ea{bottom:416.973131pt;}
.y1ab{bottom:416.973403pt;}
.y115{bottom:418.174427pt;}
.y131{bottom:418.175099pt;}
.y22a{bottom:418.415579pt;}
.y20b{bottom:420.095675pt;}
.y297{bottom:421.134667pt;}
.y32c{bottom:425.211899pt;}
.y363{bottom:425.212421pt;}
.y180{bottom:427.214907pt;}
.y293{bottom:427.534627pt;}
.y169{bottom:429.135579pt;}
.y39a{bottom:429.215435pt;}
.yd{bottom:430.990669pt;}
.y2ab{bottom:431.369675pt;}
.y2df{bottom:431.372875pt;}
.y79{bottom:431.373467pt;}
.y2fc{bottom:431.614715pt;}
.yec{bottom:431.935867pt;}
.y156{bottom:433.053659pt;}
.ya0{bottom:433.295291pt;}
.y296{bottom:433.934587pt;}
.yd7{bottom:434.735291pt;}
.y1e7{bottom:435.213283pt;}
.y1aa{bottom:435.213555pt;}
.y1a6{bottom:435.214619pt;}
.y114{bottom:436.014523pt;}
.y130{bottom:436.015195pt;}
.y229{bottom:436.255675pt;}
.y20a{bottom:437.935771pt;}
.y32b{bottom:438.252043pt;}
.y362{bottom:438.252565pt;}
.y399{bottom:442.255579pt;}
.y57{bottom:443.136187pt;}
.y17f{bottom:445.055003pt;}
.y168{bottom:446.975675pt;}
.yc{bottom:446.990669pt;}
.y2aa{bottom:449.209771pt;}
.y2de{bottom:449.212971pt;}
.y78{bottom:449.213563pt;}
.y2fb{bottom:449.454811pt;}
.y155{bottom:450.893755pt;}
.y9f{bottom:451.135387pt;}
.y361{bottom:451.292709pt;}
.y295{bottom:452.174739pt;}
.yd6{bottom:452.575387pt;}
.y1e6{bottom:453.453435pt;}
.y1a9{bottom:453.453707pt;}
.y113{bottom:453.854619pt;}
.y12f{bottom:453.855291pt;}
.y228{bottom:454.095771pt;}
.y32a{bottom:455.292043pt;}
.y398{bottom:455.295723pt;}
.y208{bottom:455.775483pt;}
.y209{bottom:455.775867pt;}
.y56{bottom:456.655723pt;}
.y17e{bottom:462.895099pt;}
.yb{bottom:462.990669pt;}
.y167{bottom:464.815771pt;}
.y294{bottom:464.974659pt;}
.y2a9{bottom:467.049867pt;}
.y2dd{bottom:467.053067pt;}
.y77{bottom:467.053659pt;}
.yeb{bottom:467.055771pt;}
.y2fa{bottom:467.294907pt;}
.y329{bottom:468.332187pt;}
.y360{bottom:468.332709pt;}
.y397{bottom:468.335867pt;}
.y154{bottom:468.733851pt;}
.y9e{bottom:468.975483pt;}
.y55{bottom:470.255915pt;}
.yd5{bottom:470.415483pt;}
.y1e5{bottom:471.613787pt;}
.y1a8{bottom:471.614059pt;}
.y112{bottom:471.694715pt;}
.y12e{bottom:471.695387pt;}
.y226{bottom:471.935579pt;}
.y227{bottom:471.935867pt;}
.y207{bottom:473.615579pt;}
.ya{bottom:478.990666pt;}
.y17d{bottom:480.735195pt;}
.y328{bottom:481.372331pt;}
.y35f{bottom:481.372853pt;}
.y166{bottom:482.655867pt;}
.y292{bottom:483.214811pt;}
.y54{bottom:483.856107pt;}
.y2a8{bottom:484.889963pt;}
.y2dc{bottom:484.893163pt;}
.y76{bottom:484.893755pt;}
.yea{bottom:484.895867pt;}
.y2f9{bottom:485.135003pt;}
.y396{bottom:485.367029pt;}
.y153{bottom:486.573947pt;}
.y9d{bottom:486.815579pt;}
.yd4{bottom:488.255579pt;}
.y111{bottom:489.534811pt;}
.y12d{bottom:489.535483pt;}
.y225{bottom:489.775675pt;}
.y1e4{bottom:489.853939pt;}
.y1a7{bottom:489.854211pt;}
.y206{bottom:491.455675pt;}
.y1e2{bottom:492.574587pt;}
.y327{bottom:494.412475pt;}
.y9{bottom:494.990666pt;}
.y53{bottom:497.375643pt;}
.y395{bottom:498.407173pt;}
.y35e{bottom:498.412853pt;}
.y17c{bottom:498.575291pt;}
.y291{bottom:501.375163pt;}
.y2a7{bottom:502.730059pt;}
.y2db{bottom:502.733259pt;}
.y75{bottom:502.733851pt;}
.ye9{bottom:502.735771pt;}
.y2f8{bottom:502.975099pt;}
.y152{bottom:504.414043pt;}
.y9c{bottom:504.655675pt;}
.y1e1{bottom:505.374507pt;}
.yd3{bottom:506.095675pt;}
.y110{bottom:507.374907pt;}
.y12c{bottom:507.375579pt;}
.y326{bottom:507.452619pt;}
.y224{bottom:507.615771pt;}
.y1e3{bottom:508.094091pt;}
.y1a5{bottom:508.094363pt;}
.y205{bottom:509.295771pt;}
.y28e{bottom:510.495771pt;}
.y52{bottom:510.975835pt;}
.y394{bottom:511.447317pt;}
.y35d{bottom:511.452997pt;}
.y165{bottom:514.975867pt;}
.y17b{bottom:516.415387pt;}
.y290{bottom:519.615315pt;}
.y2a6{bottom:520.570155pt;}
.y2da{bottom:520.573355pt;}
.y74{bottom:520.573947pt;}
.ye8{bottom:520.575867pt;}
.y2f7{bottom:520.815195pt;}
.y151{bottom:522.254139pt;}
.y9b{bottom:522.495771pt;}
.yd2{bottom:523.935771pt;}
.y325{bottom:524.492619pt;}
.y35c{bottom:524.493141pt;}
.y51{bottom:524.576027pt;}
.y10f{bottom:525.215003pt;}
.y12b{bottom:525.215675pt;}
.y222{bottom:525.455211pt;}
.y223{bottom:525.455867pt;}
.y1e0{bottom:526.254443pt;}
.y1a4{bottom:526.254715pt;}
.y204{bottom:527.135867pt;}
.y393{bottom:528.487317pt;}
.y3cf{bottom:532.490581pt;}
.y17a{bottom:534.255483pt;}
.y1a1{bottom:535.375323pt;}
.y324{bottom:537.532763pt;}
.y35b{bottom:537.533285pt;}
.y28f{bottom:537.855467pt;}
.y50{bottom:538.095563pt;}
.y2a5{bottom:538.410251pt;}
.y2d9{bottom:538.413451pt;}
.y73{bottom:538.414043pt;}
.y2f6{bottom:538.655291pt;}
.y150{bottom:540.094235pt;}
.y9a{bottom:540.335867pt;}
.y392{bottom:541.527461pt;}
.yd1{bottom:541.775867pt;}
.y10e{bottom:543.055099pt;}
.y12a{bottom:543.055771pt;}
.y221{bottom:543.295307pt;}
.y1df{bottom:544.494595pt;}
.y1a3{bottom:544.494867pt;}
.y3ce{bottom:545.530725pt;}
.y164{bottom:549.295867pt;}
.y323{bottom:550.572907pt;}
.y4f{bottom:551.695755pt;}
.y179{bottom:552.095579pt;}
.y391{bottom:554.567605pt;}
.y35a{bottom:554.573285pt;}
.y28d{bottom:556.015819pt;}
.y2a4{bottom:556.250347pt;}
.y2d8{bottom:556.253547pt;}
.y72{bottom:556.254139pt;}
.y2f5{bottom:556.495387pt;}
.y14f{bottom:557.934331pt;}
.y3cd{bottom:558.570869pt;}
.y203{bottom:559.455867pt;}
.y10d{bottom:560.895195pt;}
.y129{bottom:560.895867pt;}
.y220{bottom:561.135403pt;}
.y1de{bottom:562.734747pt;}
.y1a2{bottom:562.735019pt;}
.y322{bottom:563.613051pt;}
.y4e{bottom:565.295947pt;}
.y359{bottom:567.613429pt;}
.y390{bottom:571.607605pt;}
.y3cc{bottom:571.611013pt;}
.y99{bottom:572.655867pt;}
.y8{bottom:573.786667pt;}
.y2a3{bottom:574.090443pt;}
.y2d7{bottom:574.093643pt;}
.y71{bottom:574.094235pt;}
.yd0{bottom:574.096235pt;}
.y2f4{bottom:574.335483pt;}
.y14e{bottom:575.774427pt;}
.y10c{bottom:578.735291pt;}
.y4d{bottom:578.815483pt;}
.y29b{bottom:579.055867pt;}
.y321{bottom:580.653051pt;}
.y358{bottom:580.653573pt;}
.y1dd{bottom:580.895099pt;}
.y1a0{bottom:580.895371pt;}
.y1db{bottom:583.615747pt;}
.y38f{bottom:584.647749pt;}
.y3cb{bottom:588.651013pt;}
.ycf{bottom:590.255867pt;}
.y2a2{bottom:591.930539pt;}
.y2d6{bottom:591.933739pt;}
.y70{bottom:591.934331pt;}
.y2f3{bottom:592.175579pt;}
.y4c{bottom:592.415675pt;}
.y128{bottom:592.495867pt;}
.y7{bottom:592.685334pt;}
.y14d{bottom:593.614523pt;}
.y320{bottom:593.693195pt;}
.y357{bottom:593.693717pt;}
.y193{bottom:595.775867pt;}
.y1da{bottom:596.415667pt;}
.y10b{bottom:596.575387pt;}
.y38e{bottom:597.687893pt;}
.y1dc{bottom:599.135251pt;}
.y19f{bottom:599.135523pt;}
.y3ca{bottom:601.691157pt;}
.y4b{bottom:606.015867pt;}
.y31f{bottom:606.733339pt;}
.y3b5{bottom:606.733861pt;}
.y98{bottom:606.975867pt;}
.y253{bottom:607.533131pt;}
.y2a1{bottom:609.770635pt;}
.y2d5{bottom:609.773835pt;}
.y6f{bottom:609.774427pt;}
.y2f2{bottom:610.015675pt;}
.y356{bottom:610.733717pt;}
.y14c{bottom:611.454619pt;}
.y10a{bottom:614.415483pt;}
.y38d{bottom:614.727893pt;}
.y3c9{bottom:614.731301pt;}
.y1d9{bottom:617.375403pt;}
.y19c{bottom:617.375675pt;}
.y31e{bottom:619.773483pt;}
.y281{bottom:619.935867pt;}
.y355{bottom:623.773861pt;}
.y252{bottom:625.773283pt;}
.y48{bottom:627.536000pt;}
.y2a0{bottom:627.610731pt;}
.y2d4{bottom:627.613931pt;}
.y6e{bottom:627.614523pt;}
.y127{bottom:627.615771pt;}
.y38c{bottom:627.768037pt;}
.y3c8{bottom:627.771445pt;}
.y2f1{bottom:627.855771pt;}
.y250{bottom:628.493931pt;}
.y14b{bottom:629.294715pt;}
.y273{bottom:630.335867pt;}
.y4a{bottom:630.415867pt;}
.y109{bottom:632.255579pt;}
.y1d8{bottom:635.535755pt;}
.y19e{bottom:635.536027pt;}
.y31d{bottom:636.813483pt;}
.y354{bottom:636.814005pt;}
.y272{bottom:639.695867pt;}
.y38b{bottom:640.808181pt;}
.y3c7{bottom:640.811589pt;}
.y24f{bottom:641.293851pt;}
.y251{bottom:643.933635pt;}
.y29f{bottom:645.450827pt;}
.y2d3{bottom:645.454027pt;}
.yce{bottom:645.454187pt;}
.y6d{bottom:645.454619pt;}
.y126{bottom:645.455867pt;}
.y6{bottom:645.598667pt;}
.y2f0{bottom:645.695867pt;}
.y14a{bottom:647.134811pt;}
.y31c{bottom:649.853627pt;}
.y353{bottom:649.854149pt;}
.y108{bottom:650.095675pt;}
.y1d6{bottom:653.775907pt;}
.y19d{bottom:653.776179pt;}
.y38a{bottom:653.848325pt;}
.y271{bottom:656.733595pt;}
.y3c6{bottom:657.851589pt;}
.y1d5{bottom:660.175867pt;}
.y24e{bottom:662.173787pt;}
.y31b{bottom:662.893771pt;}
.y29e{bottom:663.290923pt;}
.y2d2{bottom:663.294123pt;}
.ycd{bottom:663.294283pt;}
.y6c{bottom:663.294715pt;}
.y125{bottom:663.295771pt;}
.y149{bottom:664.974907pt;}
.y1d7{bottom:666.575827pt;}
.y389{bottom:666.888469pt;}
.y352{bottom:666.894149pt;}
.y107{bottom:667.935771pt;}
.y3{bottom:668.977329pt;}
.y280{bottom:670.415867pt;}
.y3c5{bottom:670.891733pt;}
.y19b{bottom:672.015267pt;}
.y270{bottom:674.973747pt;}
.y31a{bottom:675.933915pt;}
.y47{bottom:679.135867pt;}
.y351{bottom:679.934293pt;}
.y24d{bottom:680.413939pt;}
.y97{bottom:681.131019pt;}
.y2d1{bottom:681.134219pt;}
.ycc{bottom:681.134379pt;}
.y6b{bottom:681.134811pt;}
.y27f{bottom:681.135675pt;}
.y124{bottom:681.135867pt;}
.y148{bottom:682.815003pt;}
.y388{bottom:683.928469pt;}
.y3c4{bottom:683.931877pt;}
.y106{bottom:685.775867pt;}
.y202{bottom:689.615867pt;}
.y46{bottom:689.775867pt;}
.y19a{bottom:690.175619pt;}
.y319{bottom:692.973915pt;}
.y350{bottom:692.974437pt;}
.y26f{bottom:693.213899pt;}
.y2ef{bottom:696.175867pt;}
.y387{bottom:696.968613pt;}
.y3c3{bottom:696.972021pt;}
.y24c{bottom:698.574291pt;}
.y96{bottom:698.971115pt;}
.y2d0{bottom:698.974315pt;}
.ycb{bottom:698.974475pt;}
.y6a{bottom:698.974907pt;}
.y27e{bottom:698.975771pt;}
.y147{bottom:700.655099pt;}
.y318{bottom:706.014059pt;}
.y34f{bottom:706.014581pt;}
.y197{bottom:708.415771pt;}
.y386{bottom:710.008757pt;}
.y24b{bottom:710.414483pt;}
.y26e{bottom:711.374251pt;}
.y45{bottom:712.335867pt;}
.y3c2{bottom:714.012021pt;}
.y95{bottom:716.811211pt;}
.y2cf{bottom:716.814411pt;}
.yca{bottom:716.814571pt;}
.y69{bottom:716.815003pt;}
.y27c{bottom:716.815771pt;}
.y27d{bottom:716.815867pt;}
.y105{bottom:717.375867pt;}
.y146{bottom:718.495195pt;}
.y29d{bottom:720.655947pt;}
.y385{bottom:723.048901pt;}
.y317{bottom:723.054059pt;}
.y34e{bottom:723.054581pt;}
.y24a{bottom:723.214403pt;}
.y199{bottom:726.655923pt;}
.y3c1{bottom:727.052165pt;}
.y26d{bottom:729.614403pt;}
.y29c{bottom:733.455867pt;}
.y94{bottom:734.651307pt;}
.y2ce{bottom:734.654507pt;}
.yc9{bottom:734.654667pt;}
.y68{bottom:734.655099pt;}
.y27a{bottom:734.655253pt;}
.y27b{bottom:734.655867pt;}
.y249{bottom:735.054595pt;}
.y384{bottom:736.089045pt;}
.y316{bottom:736.094203pt;}
.y34d{bottom:736.094725pt;}
.y145{bottom:736.335291pt;}
.y1cc{bottom:736.575675pt;}
.y3c0{bottom:740.092309pt;}
.y198{bottom:744.816275pt;}
.y44{bottom:746.735067pt;}
.y26c{bottom:747.854555pt;}
.y34c{bottom:749.134869pt;}
.y93{bottom:752.491403pt;}
.y1d4{bottom:752.494491pt;}
.y2cd{bottom:752.494603pt;}
.yc8{bottom:752.494763pt;}
.y67{bottom:752.495195pt;}
.y279{bottom:752.495349pt;}
.y104{bottom:752.495771pt;}
.y383{bottom:753.129045pt;}
.y3bf{bottom:753.132453pt;}
.y315{bottom:753.134203pt;}
.y248{bottom:753.214947pt;}
.y144{bottom:754.175387pt;}
.y1cb{bottom:754.415771pt;}
.y41{bottom:760.576000pt;}
.y196{bottom:763.055363pt;}
.y43{bottom:765.375867pt;}
.y26b{bottom:766.014907pt;}
.y382{bottom:766.169189pt;}
.y314{bottom:766.174347pt;}
.y34b{bottom:766.174869pt;}
.y3be{bottom:770.172453pt;}
.y92{bottom:770.331499pt;}
.y1d3{bottom:770.334587pt;}
.y2cc{bottom:770.334699pt;}
.yc7{bottom:770.334859pt;}
.y66{bottom:770.335291pt;}
.y278{bottom:770.335445pt;}
.y103{bottom:770.335867pt;}
.y247{bottom:771.455099pt;}
.y143{bottom:772.015483pt;}
.y195{bottom:772.175971pt;}
.y1c9{bottom:772.255771pt;}
.y1ca{bottom:772.255867pt;}
.y381{bottom:779.209333pt;}
.y313{bottom:779.214491pt;}
.y34a{bottom:779.215013pt;}
.y2{bottom:781.661334pt;}
.y3bd{bottom:783.212597pt;}
.y246{bottom:783.295291pt;}
.y26a{bottom:784.255059pt;}
.y91{bottom:788.171595pt;}
.y1d2{bottom:788.174683pt;}
.y2cb{bottom:788.174795pt;}
.yc6{bottom:788.174955pt;}
.y65{bottom:788.175387pt;}
.y277{bottom:788.175541pt;}
.y102{bottom:788.175771pt;}
.y142{bottom:789.855579pt;}
.y1c7{bottom:790.095771pt;}
.y1c8{bottom:790.095867pt;}
.y380{bottom:792.249477pt;}
.y312{bottom:792.254635pt;}
.y349{bottom:792.255157pt;}
.y245{bottom:796.095211pt;}
.y3bc{bottom:796.252741pt;}
.y3b4{bottom:796.255013pt;}
.y194{bottom:799.455867pt;}
.y269{bottom:802.495211pt;}
.y311{bottom:805.294779pt;}
.y348{bottom:805.295301pt;}
.y90{bottom:806.011691pt;}
.y1d1{bottom:806.014779pt;}
.y2ca{bottom:806.014891pt;}
.yc5{bottom:806.015051pt;}
.y64{bottom:806.015483pt;}
.y276{bottom:806.015637pt;}
.y101{bottom:806.015867pt;}
.y141{bottom:807.695675pt;}
.y244{bottom:807.855603pt;}
.y1c6{bottom:807.935867pt;}
.y37f{bottom:809.289477pt;}
.y3bb{bottom:809.292885pt;}
.y3b3{bottom:809.295157pt;}
.y268{bottom:820.655563pt;}
.y37e{bottom:822.329621pt;}
.y310{bottom:822.334779pt;}
.y347{bottom:822.335301pt;}
.y1c3{bottom:822.495867pt;}
.y40{bottom:823.615691pt;}
.y8f{bottom:823.851787pt;}
.y1d0{bottom:823.854875pt;}
.y2c9{bottom:823.854987pt;}
.yc4{bottom:823.855147pt;}
.y63{bottom:823.855579pt;}
.y275{bottom:823.855733pt;}
.y140{bottom:825.535771pt;}
.y243{bottom:826.095755pt;}
.y3ba{bottom:826.332885pt;}
.y3f{bottom:834.815867pt;}
.y37d{bottom:835.369765pt;}
.y30f{bottom:835.374923pt;}
.y346{bottom:835.375445pt;}
.y267{bottom:838.895715pt;}
.y3b9{bottom:839.373029pt;}
.y1c5{bottom:840.255867pt;}
.y8e{bottom:841.691883pt;}
.y100{bottom:841.694331pt;}
.y1cf{bottom:841.694971pt;}
.y2c8{bottom:841.695083pt;}
.yc3{bottom:841.695243pt;}
.y62{bottom:841.695675pt;}
.y13f{bottom:843.375867pt;}
.y241{bottom:844.335907pt;}
.y37c{bottom:848.409909pt;}
.y30e{bottom:848.415067pt;}
.y345{bottom:848.415589pt;}
.y240{bottom:850.735867pt;}
.y3b8{bottom:852.413173pt;}
.y3b2{bottom:852.415445pt;}
.y3e{bottom:856.255867pt;}
.y242{bottom:857.135827pt;}
.y266{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.y8d{bottom:859.531979pt;}
.yff{bottom:859.534427pt;}
.y1ce{bottom:859.535067pt;}
.y2c7{bottom:859.535179pt;}
.yc2{bottom:859.535339pt;}
.y61{bottom:859.535771pt;}
.y37b{bottom:861.450053pt;}
.y344{bottom:861.455733pt;}
.y3b7{bottom:865.453317pt;}
.y30d{bottom:865.455067pt;}
.y3b1{bottom:865.455589pt;}
.y1c4{bottom:874.575867pt;}
.y13e{bottom:875.695867pt;}
.y8c{bottom:877.372075pt;}
.yfe{bottom:877.374523pt;}
.y1cd{bottom:877.375163pt;}
.y2c6{bottom:877.375275pt;}
.yc1{bottom:877.375435pt;}
.y60{bottom:877.375867pt;}
.y37a{bottom:878.490053pt;}
.y3b6{bottom:878.493461pt;}
.y30c{bottom:878.495211pt;}
.y343{bottom:878.495733pt;}
.y254{bottom:880.175733pt;}
.y3d{bottom:889.455381pt;}
.y3c{bottom:900.655557pt;}
.y3b{bottom:911.855733pt;}
.y5e{bottom:918.015733pt;}
.h16{height:10.560000pt;}
.h12{height:13.040000pt;}
.h11{height:16.640625pt;}
.hf{height:21.920000pt;}
.hc{height:25.922812pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h13{height:29.550937pt;}
.h15{height:29.758750pt;}
.hd{height:30.090937pt;}
.h1e{height:31.366720pt;}
.h14{height:31.683750pt;}
.h1f{height:31.719099pt;}
.h1a{height:32.772031pt;}
.h18{height:33.281250pt;}
.h19{height:34.241563pt;}
.ha{height:35.204375pt;}
.h1c{height:37.212160pt;}
.h17{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1d{height:55.358590pt;}
.h10{height:55.996406pt;}
.h1b{height:66.236926pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:11.040000pt;}
.w4{width:22.400000pt;}
.w7{width:37.120000pt;}
.w5{width:41.760000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:35.440000pt;}
.xf{left:36.480000pt;}
.x5{left:79.360000pt;}
.x21{left:81.280000pt;}
.x34{left:83.760192pt;}
.x11{left:86.080000pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x29{left:98.960080pt;}
.x51{left:101.759128pt;}
.x4a{left:102.960000pt;}
.x49{left:106.000000pt;}
.x2a{left:107.599760pt;}
.x18{left:110.720000pt;}
.x27{left:112.239864pt;}
.x19{left:115.599832pt;}
.x12{left:117.600000pt;}
.x1d{left:119.519471pt;}
.x26{left:121.199808pt;}
.x22{left:122.400000pt;}
.x1e{left:124.480546pt;}
.x23{left:127.119904pt;}
.x2c{left:129.440000pt;}
.x4c{left:131.360000pt;}
.x25{left:133.999728pt;}
.x28{left:135.439320pt;}
.x2d{left:136.560000pt;}
.x4f{left:138.880000pt;}
.x52{left:141.918744pt;}
.x50{left:147.359976pt;}
.xa{left:162.880000pt;}
.x38{left:169.920000pt;}
.x4{left:180.874667pt;}
.x37{left:197.600000pt;}
.x24{left:209.759720pt;}
.xb{left:224.160000pt;}
.x2e{left:252.800000pt;}
.xd{left:271.199880pt;}
.x2b{left:278.400000pt;}
.x39{left:288.000000pt;}
.x3b{left:289.040000pt;}
.x3a{left:299.280000pt;}
.x4d{left:300.480000pt;}
.x4e{left:308.080000pt;}
.xc{left:357.120000pt;}
.x53{left:366.640000pt;}
.x8{left:370.320000pt;}
.x9{left:383.680149pt;}
.x17{left:386.320056pt;}
.x41{left:394.080000pt;}
.x1a{left:402.160000pt;}
.x3{left:404.408000pt;}
.x1f{left:406.800000pt;}
.x1c{left:407.999962pt;}
.x1b{left:409.200123pt;}
.x20{left:411.760256pt;}
.x15{left:416.960000pt;}
.x3e{left:426.480000pt;}
.x3c{left:433.200000pt;}
.x3f{left:437.520000pt;}
.x3d{left:445.840000pt;}
.x2f{left:461.520624pt;}
.x13{left:476.640000pt;}
.x47{left:478.800000pt;}
.x48{left:486.480000pt;}
.x36{left:524.400896pt;}
.x31{left:525.440424pt;}
.x35{left:528.000408pt;}
.x30{left:529.360200pt;}
.x42{left:542.800000pt;}
.x43{left:559.200000pt;}
.x32{left:576.560304pt;}
.x44{left:577.520000pt;}
.xe{left:589.120000pt;}
.x33{left:596.800776pt;}
.x45{left:617.200000pt;}
.x40{left:619.520000pt;}
.x4b{left:621.759608pt;}
.x46{left:624.800000pt;}
.x16{left:626.479856pt;}
.x10{left:630.800000pt;}
}




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