
    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_e44c2363fd2d8238335ec7d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891602;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_5471e1454e37a13ff1d81723.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_14e3b2aec9bdd055ff9711aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a07c51bb1a487ba272b468f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_0d05f8fa2bf58f2f79749322.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0a201eabf2d1df75c9899d84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_642924cfdf8255e1c554218d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894531;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_ce7045ac43e5cdff4ec8aa4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27aed0b5693c030a1aca8627.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8f69549d8a655ace1f7c68d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896484;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_02cca4214bf107b5d9a90882.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d6bbdfd322e744f58a6bf874.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eb8f24bd0828e620e0565baa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b063f9b6689314c2c589285c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693359;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_c3dded238bc1fb3e4c53c558.woff2')format("woff");}.fff{font-family:fff;line-height:0.894531;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_84a14dd23a24d96c86dedafd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_619db4da32d764143ce7e0cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a1a4b27147bb4182d17faead.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.907227;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_8bdf6e4e26384ede477bece4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.964355;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_1a843891faf7fa4e03f2dfc1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.882324;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_f34730379d2e19ec3743bd39.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.896484;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_7058215e75cd688f929e489f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4ce18e830f43345e835ed72e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_269114f758c7d7305141bc12.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1305bedb42621c93859679a2.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.907227;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_e498c698279cba2b022062dc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_3687278d70ba1a63cd94b34e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.894531;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_d0d0fcb96e8c3b2540633831.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_86f9b3cb4bfaa2937cf87dc9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666992;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_efa71a2508590bbdbc11c483.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7ceaf23504450af24e2f1da2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_317cfe3290752092e29c6f9e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.896484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_6297991b9b73472d6300462e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_7e54b77cf1cb124373b98e20.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_175819d7009a426b00dc019d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_7517825f560746e6bd989147.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_b6e908b5c23d27189625f39d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.851074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_db02a331d09afe19973b8cd8.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.894531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_283b53c3f6f5280dd8f2c4b7.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_81a4829956d71ec274dc0652.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_86a267567c5f5084e65fb400.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7f1ad84233506090a89cfe56.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.907227;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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-8.637984px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.640600px;}
.v6{vertical-align:27.415464px;}
.v1{vertical-align:33.120000px;}
.lscc{letter-spacing:-1.211760px;}
.lsce{letter-spacing:-0.850608px;}
.lscf{letter-spacing:-0.798336px;}
.ls3a{letter-spacing:-0.560880px;}
.lsaf{letter-spacing:-0.506160px;}
.ls22{letter-spacing:-0.501840px;}
.ls5a{letter-spacing:-0.495936px;}
.ls46{letter-spacing:-0.484128px;}
.ls72{letter-spacing:-0.478224px;}
.ls8b{letter-spacing:-0.472320px;}
.lsb1{letter-spacing:-0.468864px;}
.ls45{letter-spacing:-0.466416px;}
.ls69{letter-spacing:-0.463536px;}
.ls7f{letter-spacing:-0.460512px;}
.ls7d{letter-spacing:-0.454608px;}
.ls50{letter-spacing:-0.448704px;}
.ls75{letter-spacing:-0.442800px;}
.ls6a{letter-spacing:-0.442224px;}
.ls7c{letter-spacing:-0.436896px;}
.ls53{letter-spacing:-0.430992px;}
.lsbe{letter-spacing:-0.427680px;}
.ls37{letter-spacing:-0.425088px;}
.ls61{letter-spacing:-0.419184px;}
.ls2d{letter-spacing:-0.413280px;}
.ls64{letter-spacing:-0.407376px;}
.ls54{letter-spacing:-0.401472px;}
.ls24{letter-spacing:-0.395568px;}
.ls49{letter-spacing:-0.389664px;}
.ls29{letter-spacing:-0.383760px;}
.ls5f{letter-spacing:-0.377856px;}
.ls4b{letter-spacing:-0.371952px;}
.ls4c{letter-spacing:-0.366048px;}
.lsc4{letter-spacing:-0.361152px;}
.ls3b{letter-spacing:-0.360144px;}
.ls26{letter-spacing:-0.354240px;}
.ls8c{letter-spacing:-0.348336px;}
.ls55{letter-spacing:-0.342432px;}
.ls36{letter-spacing:-0.336528px;}
.ls33{letter-spacing:-0.324720px;}
.ls74{letter-spacing:-0.318816px;}
.ls12{letter-spacing:-0.313632px;}
.ls90{letter-spacing:-0.307008px;}
.ls5b{letter-spacing:-0.301104px;}
.ls59{letter-spacing:-0.295200px;}
.ls32{letter-spacing:-0.289296px;}
.ls70{letter-spacing:-0.283392px;}
.lsc1{letter-spacing:-0.280368px;}
.lsa2{letter-spacing:-0.275616px;}
.lsa1{letter-spacing:-0.270864px;}
.lsbf{letter-spacing:-0.266112px;}
.lsac{letter-spacing:-0.261360px;}
.lsa0{letter-spacing:-0.256608px;}
.lsc6{letter-spacing:-0.251856px;}
.lsae{letter-spacing:-0.247104px;}
.ls9e{letter-spacing:-0.242352px;}
.ls31{letter-spacing:-0.237600px;}
.ls87{letter-spacing:-0.218448px;}
.ls13{letter-spacing:-0.079200px;}
.ls16{letter-spacing:-0.057600px;}
.ls11{letter-spacing:-0.028512px;}
.ls17{letter-spacing:-0.014400px;}
.lsab{letter-spacing:-0.014256px;}
.ls10{letter-spacing:0.000000px;}
.lsad{letter-spacing:0.009504px;}
.ls79{letter-spacing:0.011664px;}
.lsb2{letter-spacing:0.014256px;}
.ls9f{letter-spacing:0.019008px;}
.lsc5{letter-spacing:0.047520px;}
.lsc7{letter-spacing:0.052272px;}
.lsc0{letter-spacing:0.057024px;}
.lsb{letter-spacing:0.064944px;}
.ls7a{letter-spacing:0.112176px;}
.ls62{letter-spacing:0.135792px;}
.lsc9{letter-spacing:0.156816px;}
.ls73{letter-spacing:0.159408px;}
.lscd{letter-spacing:0.180576px;}
.lsca{letter-spacing:0.185328px;}
.ls81{letter-spacing:0.188928px;}
.ls8d{letter-spacing:0.200736px;}
.lsa3{letter-spacing:0.223344px;}
.lsbd{letter-spacing:0.228096px;}
.ls1{letter-spacing:0.237600px;}
.lscb{letter-spacing:0.242352px;}
.ls35{letter-spacing:0.283392px;}
.lsb9{letter-spacing:0.294624px;}
.lsa9{letter-spacing:0.304128px;}
.ls4a{letter-spacing:0.348336px;}
.ls7e{letter-spacing:0.360144px;}
.ls86{letter-spacing:0.448704px;}
.ls5e{letter-spacing:0.463536px;}
.ls99{letter-spacing:0.484128px;}
.ls3d{letter-spacing:0.501840px;}
.ls19{letter-spacing:0.506160px;}
.ls56{letter-spacing:0.507744px;}
.ls38{letter-spacing:0.513648px;}
.ls51{letter-spacing:0.519552px;}
.ls8a{letter-spacing:0.531360px;}
.lsba{letter-spacing:0.546480px;}
.lsa5{letter-spacing:0.551232px;}
.ls57{letter-spacing:0.560880px;}
.lsc8{letter-spacing:0.565488px;}
.ls27{letter-spacing:0.572688px;}
.ls3e{letter-spacing:0.573120px;}
.lsb4{letter-spacing:0.574992px;}
.lsa8{letter-spacing:0.579744px;}
.ls3f{letter-spacing:0.584496px;}
.ls9b{letter-spacing:0.589248px;}
.ls23{letter-spacing:0.590400px;}
.lsc3{letter-spacing:0.594000px;}
.ls8f{letter-spacing:0.596304px;}
.lsf{letter-spacing:0.598752px;}
.ls5c{letter-spacing:0.602208px;}
.ls9c{letter-spacing:0.603504px;}
.lsa7{letter-spacing:0.608256px;}
.ls15{letter-spacing:0.612000px;}
.lsbb{letter-spacing:0.613008px;}
.ls5{letter-spacing:0.614016px;}
.ls9a{letter-spacing:0.617760px;}
.ls88{letter-spacing:0.619920px;}
.lsa6{letter-spacing:0.622512px;}
.ls40{letter-spacing:0.625824px;}
.lsaa{letter-spacing:0.627264px;}
.ls60{letter-spacing:0.631728px;}
.ls43{letter-spacing:0.632016px;}
.ls14{letter-spacing:0.633600px;}
.ls9d{letter-spacing:0.636768px;}
.ls6e{letter-spacing:0.637632px;}
.lsb8{letter-spacing:0.641520px;}
.ls48{letter-spacing:0.643536px;}
.lsa4{letter-spacing:0.646272px;}
.ls25{letter-spacing:0.649440px;}
.ls65{letter-spacing:0.650016px;}
.ls95{letter-spacing:0.651024px;}
.ls39{letter-spacing:0.655344px;}
.ls2f{letter-spacing:0.655776px;}
.ls44{letter-spacing:0.660528px;}
.ls2b{letter-spacing:0.661248px;}
.ls98{letter-spacing:0.665280px;}
.ls7{letter-spacing:0.667152px;}
.lsb7{letter-spacing:0.670032px;}
.ls3c{letter-spacing:0.673056px;}
.ls94{letter-spacing:0.674784px;}
.ls8{letter-spacing:0.678960px;}
.lsb6{letter-spacing:0.679536px;}
.lsbc{letter-spacing:0.684288px;}
.lse{letter-spacing:0.684864px;}
.ls30{letter-spacing:0.689040px;}
.ls9{letter-spacing:0.690768px;}
.lsb5{letter-spacing:0.693792px;}
.ls6{letter-spacing:0.696672px;}
.ls93{letter-spacing:0.698544px;}
.lsa{letter-spacing:0.702576px;}
.ls96{letter-spacing:0.703296px;}
.lsc2{letter-spacing:0.708048px;}
.ls2a{letter-spacing:0.708480px;}
.ls84{letter-spacing:0.708624px;}
.lsb3{letter-spacing:0.712800px;}
.lsc{letter-spacing:0.714384px;}
.ls3{letter-spacing:0.719400px;}
.ls2{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.720288px;}
.ls4{letter-spacing:0.720600px;}
.ls0{letter-spacing:0.722304px;}
.ls18{letter-spacing:0.726192px;}
.ls80{letter-spacing:0.729936px;}
.ls2e{letter-spacing:0.732096px;}
.ls1e{letter-spacing:0.735264px;}
.ls34{letter-spacing:0.738000px;}
.ls28{letter-spacing:0.743904px;}
.ls1b{letter-spacing:0.745920px;}
.ls2c{letter-spacing:0.749808px;}
.ls1f{letter-spacing:0.751248px;}
.ls4e{letter-spacing:0.755712px;}
.lsb0{letter-spacing:0.756576px;}
.ls71{letter-spacing:0.761616px;}
.ls1c{letter-spacing:0.761904px;}
.ls1a{letter-spacing:0.767232px;}
.ls7b{letter-spacing:0.767520px;}
.ls1d{letter-spacing:0.772560px;}
.ls77{letter-spacing:0.773424px;}
.ls68{letter-spacing:0.777888px;}
.ls85{letter-spacing:0.783216px;}
.ls52{letter-spacing:0.785232px;}
.ls21{letter-spacing:0.788544px;}
.ls20{letter-spacing:0.793872px;}
.ls6b{letter-spacing:0.797040px;}
.ls91{letter-spacing:0.802944px;}
.ls78{letter-spacing:0.879696px;}
.ls4d{letter-spacing:0.938736px;}
.ls66{letter-spacing:0.948384px;}
.ls67{letter-spacing:0.985680px;}
.ls41{letter-spacing:1.015488px;}
.ls63{letter-spacing:1.021392px;}
.ls6f{letter-spacing:1.080432px;}
.ls76{letter-spacing:1.104048px;}
.ls58{letter-spacing:1.133568px;}
.ls47{letter-spacing:1.157184px;}
.ls89{letter-spacing:1.375632px;}
.ls6d{letter-spacing:1.476000px;}
.ls6c{letter-spacing:1.629504px;}
.ls5d{letter-spacing:1.854144px;}
.ls82{letter-spacing:1.942416px;}
.ls83{letter-spacing:2.160864px;}
.ls42{letter-spacing:14.039712px;}
.ls4f{letter-spacing:19.802016px;}
.ls97{letter-spacing:76.070016px;}
.ls92{letter-spacing:100.547568px;}
.ls8e{letter-spacing:126.144864px;}
.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;}
}
.ws154{word-spacing:-59.040000px;}
.ws1f8{word-spacing:-47.520000px;}
.ws153{word-spacing:-16.135632px;}
.ws5d{word-spacing:-15.480288px;}
.ws193{word-spacing:-15.456672px;}
.ws194{word-spacing:-15.450768px;}
.ws2{word-spacing:-15.438960px;}
.wsfc{word-spacing:-15.409440px;}
.wsf7{word-spacing:-15.374016px;}
.wsf9{word-spacing:-15.261840px;}
.ws3{word-spacing:-15.043392px;}
.wsfa{word-spacing:-14.824944px;}
.wsf8{word-spacing:-14.760000px;}
.ws155{word-spacing:-14.364432px;}
.ws5c{word-spacing:-14.334912px;}
.ws152{word-spacing:-14.299488px;}
.wsd3{word-spacing:-14.268384px;}
.ws1c4{word-spacing:-12.813840px;}
.ws0{word-spacing:-12.602304px;}
.ws1{word-spacing:-11.880000px;}
.ws1f9{word-spacing:-11.642400px;}
.ws1f7{word-spacing:-11.637648px;}
.ws1fa{word-spacing:-11.081664px;}
.wsfb{word-spacing:-9.731664px;}
.ws26b{word-spacing:-2.475792px;}
.ws26c{word-spacing:-2.380752px;}
.ws187{word-spacing:-1.517328px;}
.ws91{word-spacing:-1.298880px;}
.ws1a{word-spacing:-1.150848px;}
.ws1f6{word-spacing:-1.140192px;}
.wsf5{word-spacing:-1.129536px;}
.ws15d{word-spacing:-1.092240px;}
.ws11{word-spacing:-1.086336px;}
.ws5{word-spacing:-1.083456px;}
.ws9b{word-spacing:-1.080432px;}
.ws10{word-spacing:-1.074528px;}
.ws20a{word-spacing:-1.073952px;}
.ws22b{word-spacing:-1.069200px;}
.ws1db{word-spacing:-1.064448px;}
.ws4d{word-spacing:-1.062720px;}
.ws1d0{word-spacing:-1.059696px;}
.ws86{word-spacing:-1.056816px;}
.ws253{word-spacing:-1.054944px;}
.ws75{word-spacing:-1.050912px;}
.ws1e2{word-spacing:-1.050192px;}
.ws1cd{word-spacing:-1.045440px;}
.wsb8{word-spacing:-1.045008px;}
.ws221{word-spacing:-1.040688px;}
.ws1ae{word-spacing:-1.039104px;}
.ws1ef{word-spacing:-1.035936px;}
.ws1b{word-spacing:-1.033200px;}
.ws24c{word-spacing:-1.031184px;}
.ws1a3{word-spacing:-1.027296px;}
.ws1ea{word-spacing:-1.026432px;}
.ws5f{word-spacing:-1.021680px;}
.ws61{word-spacing:-1.021392px;}
.ws206{word-spacing:-1.016928px;}
.ws1a2{word-spacing:-1.015488px;}
.ws1a8{word-spacing:-1.009584px;}
.ws262{word-spacing:-1.007424px;}
.ws7f{word-spacing:-1.003680px;}
.ws1b2{word-spacing:-0.997776px;}
.ws5e{word-spacing:-0.993168px;}
.ws1a4{word-spacing:-0.991872px;}
.ws22a{word-spacing:-0.978912px;}
.ws1a7{word-spacing:-0.974160px;}
.ws4{word-spacing:-0.959904px;}
.ws1b1{word-spacing:-0.956448px;}
.ws269{word-spacing:-0.955152px;}
.ws26{word-spacing:-0.932832px;}
.wsba{word-spacing:-0.921024px;}
.ws26a{word-spacing:-0.907632px;}
.ws4e{word-spacing:-0.873792px;}
.ws165{word-spacing:-0.867888px;}
.ws69{word-spacing:-0.861984px;}
.ws103{word-spacing:-0.425088px;}
.ws246{word-spacing:-0.090288px;}
.ws8{word-spacing:-0.079200px;}
.ws24a{word-spacing:-0.076032px;}
.wsbe{word-spacing:-0.053136px;}
.ws10e{word-spacing:-0.005904px;}
.ws6{word-spacing:0.000000px;}
.ws90{word-spacing:0.005904px;}
.ws1bc{word-spacing:0.029520px;}
.ws1d{word-spacing:0.035424px;}
.ws1b0{word-spacing:0.053136px;}
.ws142{word-spacing:0.064944px;}
.wsf6{word-spacing:0.079920px;}
.wsc{word-spacing:0.086400px;}
.ws15c{word-spacing:0.095904px;}
.ws62{word-spacing:0.106272px;}
.wsd{word-spacing:0.108000px;}
.ws1a9{word-spacing:0.118080px;}
.ws96{word-spacing:0.123984px;}
.ws196{word-spacing:0.307008px;}
.ws1f1{word-spacing:0.309024px;}
.wsf2{word-spacing:0.314352px;}
.ws14{word-spacing:0.319680px;}
.ws124{word-spacing:0.324720px;}
.ws27{word-spacing:0.336528px;}
.wsb0{word-spacing:0.342432px;}
.ws16{word-spacing:0.346320px;}
.ws17e{word-spacing:0.348336px;}
.wsc6{word-spacing:0.360144px;}
.ws222{word-spacing:0.365904px;}
.ws78{word-spacing:0.366048px;}
.ws2e{word-spacing:0.371952px;}
.ws65{word-spacing:0.377856px;}
.ws211{word-spacing:0.380160px;}
.wsce{word-spacing:0.383760px;}
.ws213{word-spacing:0.384912px;}
.ws106{word-spacing:0.389664px;}
.ws49{word-spacing:0.395568px;}
.ws261{word-spacing:0.399168px;}
.ws7c{word-spacing:0.401472px;}
.ws92{word-spacing:0.407376px;}
.ws7b{word-spacing:0.413280px;}
.ws8f{word-spacing:0.419184px;}
.ws3b{word-spacing:0.422928px;}
.ws53{word-spacing:0.425088px;}
.wsbd{word-spacing:0.430992px;}
.ws1f0{word-spacing:0.431568px;}
.wsbf{word-spacing:0.436896px;}
.ws21a{word-spacing:0.441936px;}
.ws23f{word-spacing:0.451440px;}
.ws264{word-spacing:0.456192px;}
.ws1cc{word-spacing:0.460944px;}
.ws224{word-spacing:0.465696px;}
.wse8{word-spacing:0.478224px;}
.ws189{word-spacing:0.519552px;}
.wsf{word-spacing:0.734400px;}
.ws9{word-spacing:0.750816px;}
.wse{word-spacing:0.777600px;}
.wsb{word-spacing:0.792000px;}
.ws1dc{word-spacing:0.855360px;}
.ws133{word-spacing:0.968256px;}
.ws188{word-spacing:1.015488px;}
.wsa{word-spacing:1.045440px;}
.ws202{word-spacing:1.069200px;}
.ws1eb{word-spacing:1.092960px;}
.ws3d{word-spacing:1.316304px;}
.ws212{word-spacing:1.321056px;}
.ws258{word-spacing:1.330560px;}
.ws1ec{word-spacing:1.340064px;}
.ws1da{word-spacing:1.354320px;}
.ws228{word-spacing:1.359072px;}
.ws105{word-spacing:1.363824px;}
.wsd2{word-spacing:1.381536px;}
.ws29{word-spacing:1.464192px;}
.ws77{word-spacing:1.470096px;}
.wsc8{word-spacing:1.505520px;}
.ws14f{word-spacing:1.517328px;}
.wsc7{word-spacing:1.546848px;}
.ws19{word-spacing:1.752912px;}
.ws17{word-spacing:1.768896px;}
.ws185{word-spacing:1.777104px;}
.ws101{word-spacing:1.783008px;}
.ws120{word-spacing:1.788912px;}
.ws10b{word-spacing:1.794816px;}
.wsa6{word-spacing:1.800720px;}
.wsc4{word-spacing:1.806624px;}
.ws13e{word-spacing:1.812528px;}
.ws3f{word-spacing:1.818432px;}
.ws1df{word-spacing:1.820016px;}
.ws23{word-spacing:1.824336px;}
.ws21f{word-spacing:1.829520px;}
.wscf{word-spacing:1.830240px;}
.ws73{word-spacing:1.836144px;}
.ws33{word-spacing:1.842048px;}
.ws1d1{word-spacing:1.843776px;}
.wsa0{word-spacing:1.847952px;}
.ws22e{word-spacing:1.853280px;}
.wsda{word-spacing:1.853856px;}
.ws2f{word-spacing:1.859760px;}
.ws1e1{word-spacing:1.862784px;}
.ws1b7{word-spacing:1.871568px;}
.ws234{word-spacing:1.872288px;}
.ws12e{word-spacing:1.877472px;}
.ws23b{word-spacing:1.881792px;}
.ws18e{word-spacing:1.883376px;}
.ws15f{word-spacing:1.889280px;}
.ws265{word-spacing:1.896048px;}
.ws214{word-spacing:1.900800px;}
.ws266{word-spacing:1.905552px;}
.ws220{word-spacing:1.919808px;}
.ws217{word-spacing:1.929312px;}
.ws1de{word-spacing:1.967328px;}
.ws260{word-spacing:2.290464px;}
.ws254{word-spacing:2.333232px;}
.ws1e0{word-spacing:2.760912px;}
.ws267{word-spacing:2.765664px;}
.ws219{word-spacing:2.775168px;}
.ws71{word-spacing:2.804400px;}
.ws22{word-spacing:2.875248px;}
.ws1b9{word-spacing:2.916576px;}
.ws173{word-spacing:2.922480px;}
.ws1c7{word-spacing:2.946096px;}
.ws138{word-spacing:2.963808px;}
.ws1b4{word-spacing:2.969712px;}
.wscd{word-spacing:2.987424px;}
.wscc{word-spacing:3.016944px;}
.ws184{word-spacing:3.081888px;}
.ws15{word-spacing:3.186144px;}
.ws12{word-spacing:3.191472px;}
.ws114{word-spacing:3.199968px;}
.ws31{word-spacing:3.211776px;}
.ws13{word-spacing:3.212784px;}
.ws7e{word-spacing:3.223584px;}
.ws57{word-spacing:3.235392px;}
.ws118{word-spacing:3.241296px;}
.ws66{word-spacing:3.247200px;}
.ws6d{word-spacing:3.253104px;}
.ws58{word-spacing:3.259008px;}
.ws68{word-spacing:3.264912px;}
.ws3c{word-spacing:3.269376px;}
.ws6c{word-spacing:3.270816px;}
.ws5a{word-spacing:3.276720px;}
.ws233{word-spacing:3.278880px;}
.ws60{word-spacing:3.282624px;}
.ws81{word-spacing:3.288528px;}
.ws72{word-spacing:3.294432px;}
.ws147{word-spacing:3.312144px;}
.ws18f{word-spacing:3.318048px;}
.ws12d{word-spacing:3.323952px;}
.ws163{word-spacing:3.329856px;}
.ws223{word-spacing:3.331152px;}
.ws123{word-spacing:3.347568px;}
.ws23d{word-spacing:3.359664px;}
.ws232{word-spacing:3.369168px;}
.ws23c{word-spacing:3.373920px;}
.ws1e8{word-spacing:3.654288px;}
.ws259{word-spacing:3.716064px;}
.ws21d{word-spacing:3.735072px;}
.ws140{word-spacing:3.896640px;}
.ws22c{word-spacing:4.196016px;}
.ws257{word-spacing:4.210272px;}
.ws216{word-spacing:4.224528px;}
.ws22d{word-spacing:4.229280px;}
.ws119{word-spacing:4.244976px;}
.ws1c6{word-spacing:4.309920px;}
.wsc3{word-spacing:4.315824px;}
.ws98{word-spacing:4.321728px;}
.ws109{word-spacing:4.339440px;}
.ws70{word-spacing:4.357152px;}
.wse0{word-spacing:4.380768px;}
.ws10d{word-spacing:4.386672px;}
.ws14b{word-spacing:4.404384px;}
.ws18d{word-spacing:4.410288px;}
.ws13f{word-spacing:4.416192px;}
.ws1a1{word-spacing:4.428000px;}
.ws1f4{word-spacing:4.608720px;}
.wsf3{word-spacing:4.646016px;}
.ws121{word-spacing:4.652352px;}
.wsc1{word-spacing:4.664160px;}
.wscb{word-spacing:4.670064px;}
.wse6{word-spacing:4.675968px;}
.wsa2{word-spacing:4.681872px;}
.ws64{word-spacing:4.687776px;}
.ws51{word-spacing:4.693680px;}
.ws1e{word-spacing:4.699584px;}
.ws160{word-spacing:4.705488px;}
.ws4f{word-spacing:4.711392px;}
.ws218{word-spacing:4.713984px;}
.ws1ba{word-spacing:4.717296px;}
.wsb6{word-spacing:4.723200px;}
.ws1d2{word-spacing:4.723488px;}
.ws88{word-spacing:4.729104px;}
.ws145{word-spacing:4.740912px;}
.ws14e{word-spacing:4.746816px;}
.ws207{word-spacing:4.752000px;}
.ws79{word-spacing:4.758624px;}
.ws1d3{word-spacing:4.761504px;}
.ws17d{word-spacing:4.764528px;}
.ws251{word-spacing:4.766256px;}
.ws231{word-spacing:4.771008px;}
.ws208{word-spacing:4.780512px;}
.ws1f{word-spacing:4.788144px;}
.ws21{word-spacing:4.811760px;}
.ws263{word-spacing:5.217696px;}
.ws240{word-spacing:5.346000px;}
.ws1ed{word-spacing:5.388768px;}
.ws209{word-spacing:5.398272px;}
.ws241{word-spacing:5.640624px;}
.ws200{word-spacing:5.645376px;}
.ws25d{word-spacing:5.650128px;}
.ws1d6{word-spacing:5.654880px;}
.ws24b{word-spacing:5.659632px;}
.ws6b{word-spacing:5.685552px;}
.ws44{word-spacing:5.726880px;}
.ws122{word-spacing:5.738688px;}
.ws17f{word-spacing:5.762304px;}
.ws1c1{word-spacing:5.768208px;}
.ws198{word-spacing:5.774112px;}
.ws177{word-spacing:5.780016px;}
.ws100{word-spacing:5.785920px;}
.ws11a{word-spacing:5.797728px;}
.wsb4{word-spacing:5.803632px;}
.ws1ad{word-spacing:5.809536px;}
.ws48{word-spacing:5.827248px;}
.ws11f{word-spacing:5.844960px;}
.ws1c2{word-spacing:5.862672px;}
.ws1a6{word-spacing:5.868576px;}
.ws18{word-spacing:6.047280px;}
.ws1f2{word-spacing:6.084576px;}
.wsb7{word-spacing:6.092928px;}
.ws1f5{word-spacing:6.105888px;}
.ws244{word-spacing:6.115824px;}
.wsa9{word-spacing:6.116544px;}
.ws9f{word-spacing:6.122448px;}
.ws8b{word-spacing:6.128352px;}
.ws42{word-spacing:6.134256px;}
.ws1fd{word-spacing:6.134832px;}
.wsd4{word-spacing:6.140160px;}
.ws35{word-spacing:6.146064px;}
.ws252{word-spacing:6.149088px;}
.ws95{word-spacing:6.151968px;}
.ws6e{word-spacing:6.157872px;}
.ws9e{word-spacing:6.163776px;}
.ws1fb{word-spacing:6.168096px;}
.wsc9{word-spacing:6.169680px;}
.ws24{word-spacing:6.175584px;}
.ws1d8{word-spacing:6.187104px;}
.ws1dd{word-spacing:6.191856px;}
.ws39{word-spacing:6.193296px;}
.ws25b{word-spacing:6.196608px;}
.ws1e9{word-spacing:6.210864px;}
.ws12f{word-spacing:6.211008px;}
.ws1fe{word-spacing:6.220368px;}
.wsec{word-spacing:6.228720px;}
.ws242{word-spacing:6.234624px;}
.ws1ce{word-spacing:6.248880px;}
.ws21c{word-spacing:6.258384px;}
.ws20b{word-spacing:6.600528px;}
.ws243{word-spacing:6.610032px;}
.ws1d4{word-spacing:7.080480px;}
.ws1ee{word-spacing:7.085232px;}
.ws1d7{word-spacing:7.094736px;}
.ws1d9{word-spacing:7.108992px;}
.ws8d{word-spacing:7.120224px;}
.ws18c{word-spacing:7.202880px;}
.ws162{word-spacing:7.232400px;}
.wse9{word-spacing:7.250112px;}
.ws76{word-spacing:7.267824px;}
.ws169{word-spacing:7.273728px;}
.ws13a{word-spacing:7.279632px;}
.wsa1{word-spacing:7.285536px;}
.wseb{word-spacing:7.291440px;}
.wsef{word-spacing:7.294032px;}
.ws1f3{word-spacing:7.310016px;}
.ws15b{word-spacing:7.496496px;}
.wsf0{word-spacing:7.501824px;}
.wsa4{word-spacing:7.527600px;}
.ws85{word-spacing:7.533504px;}
.ws38{word-spacing:7.545312px;}
.ws67{word-spacing:7.551216px;}
.ws54{word-spacing:7.557120px;}
.ws13c{word-spacing:7.563024px;}
.ws55{word-spacing:7.568928px;}
.ws6f{word-spacing:7.574832px;}
.wsaf{word-spacing:7.580736px;}
.ws25a{word-spacing:7.584192px;}
.wsdf{word-spacing:7.586640px;}
.ws8e{word-spacing:7.592544px;}
.wsa8{word-spacing:7.604352px;}
.ws24f{word-spacing:7.607952px;}
.ws166{word-spacing:7.610256px;}
.ws13d{word-spacing:7.616160px;}
.ws1e5{word-spacing:7.617456px;}
.ws172{word-spacing:7.622064px;}
.ws1ab{word-spacing:7.627968px;}
.ws1b8{word-spacing:7.633872px;}
.ws21e{word-spacing:7.636464px;}
.ws1a5{word-spacing:7.639776px;}
.ws22f{word-spacing:7.655472px;}
.ws1e6{word-spacing:7.669728px;}
.ws268{word-spacing:7.693488px;}
.ws24e{word-spacing:7.712496px;}
.ws226{word-spacing:8.049888px;}
.ws250{word-spacing:8.121168px;}
.ws227{word-spacing:8.220960px;}
.ws23e{word-spacing:8.230464px;}
.ws1d5{word-spacing:8.258976px;}
.ws1e4{word-spacing:8.515584px;}
.ws215{word-spacing:8.520336px;}
.ws225{word-spacing:8.534592px;}
.wsde{word-spacing:8.560800px;}
.ws43{word-spacing:8.566704px;}
.ws47{word-spacing:8.613936px;}
.ws195{word-spacing:8.619840px;}
.ws12c{word-spacing:8.637552px;}
.ws8c{word-spacing:8.649360px;}
.ws10a{word-spacing:8.672976px;}
.wsf1{word-spacing:8.743248px;}
.ws128{word-spacing:8.944560px;}
.ws136{word-spacing:8.950464px;}
.ws14a{word-spacing:8.985888px;}
.wse7{word-spacing:8.991792px;}
.wsfd{word-spacing:8.997696px;}
.ws4c{word-spacing:9.003600px;}
.ws144{word-spacing:9.015408px;}
.ws25f{word-spacing:9.024048px;}
.ws3e{word-spacing:9.027216px;}
.ws40{word-spacing:9.033120px;}
.wse3{word-spacing:9.039024px;}
.wsdd{word-spacing:9.044928px;}
.wsc0{word-spacing:9.050832px;}
.ws10c{word-spacing:9.056736px;}
.ws24d{word-spacing:9.062064px;}
.ws10f{word-spacing:9.068544px;}
.ws25e{word-spacing:9.071568px;}
.ws1fc{word-spacing:9.085824px;}
.ws1ff{word-spacing:9.104832px;}
.ws204{word-spacing:9.114336px;}
.ws1c{word-spacing:9.127584px;}
.ws1e7{word-spacing:9.138096px;}
.ws16d{word-spacing:9.936432px;}
.ws201{word-spacing:9.960192px;}
.ws247{word-spacing:9.974448px;}
.ws245{word-spacing:9.979200px;}
.ws11c{word-spacing:10.001376px;}
.wsc5{word-spacing:10.013184px;}
.ws15e{word-spacing:10.072224px;}
.ws1c9{word-spacing:10.107648px;}
.ws135{word-spacing:10.143072px;}
.ws16e{word-spacing:10.148976px;}
.ws1aa{word-spacing:10.154880px;}
.ws139{word-spacing:10.408752px;}
.ws157{word-spacing:10.416240px;}
.ws146{word-spacing:10.420560px;}
.ws112{word-spacing:10.426464px;}
.ws183{word-spacing:10.432368px;}
.ws32{word-spacing:10.438272px;}
.wsdb{word-spacing:10.444176px;}
.ws130{word-spacing:10.450080px;}
.ws167{word-spacing:10.455984px;}
.ws84{word-spacing:10.461888px;}
.ws16f{word-spacing:10.467792px;}
.ws2d{word-spacing:10.473696px;}
.ws37{word-spacing:10.479600px;}
.ws1bb{word-spacing:10.485504px;}
.wsa7{word-spacing:10.491408px;}
.ws203{word-spacing:10.492416px;}
.ws14c{word-spacing:10.497312px;}
.ws21b{word-spacing:10.501920px;}
.ws20{word-spacing:10.509120px;}
.ws156{word-spacing:10.512144px;}
.wse4{word-spacing:10.526832px;}
.ws19f{word-spacing:10.532736px;}
.ws14d{word-spacing:10.544544px;}
.ws205{word-spacing:11.400048px;}
.wsd9{word-spacing:11.459664px;}
.ws141{word-spacing:11.495088px;}
.ws1a0{word-spacing:11.500992px;}
.ws126{word-spacing:11.512800px;}
.ws1b6{word-spacing:11.530512px;}
.ws11d{word-spacing:11.554128px;}
.ws134{word-spacing:11.624976px;}
.wsee{word-spacing:11.812176px;}
.ws45{word-spacing:11.861136px;}
.ws1c8{word-spacing:11.867040px;}
.ws9a{word-spacing:11.878848px;}
.ws4a{word-spacing:11.884752px;}
.ws16b{word-spacing:11.890656px;}
.ws158{word-spacing:11.892096px;}
.ws2c{word-spacing:11.896560px;}
.ws102{word-spacing:11.902464px;}
.ws178{word-spacing:11.908368px;}
.ws25{word-spacing:11.914272px;}
.ws8a{word-spacing:11.920176px;}
.ws137{word-spacing:11.926080px;}
.ws125{word-spacing:11.931984px;}
.ws20d{word-spacing:11.937024px;}
.ws197{word-spacing:11.943792px;}
.ws127{word-spacing:11.949696px;}
.wsed{word-spacing:11.950704px;}
.ws74{word-spacing:11.955600px;}
.ws25c{word-spacing:11.960784px;}
.ws1ca{word-spacing:11.967408px;}
.ws186{word-spacing:11.973312px;}
.ws1e3{word-spacing:11.975040px;}
.ws111{word-spacing:12.882528px;}
.ws110{word-spacing:12.941568px;}
.ws5b{word-spacing:12.959280px;}
.ws1b3{word-spacing:12.965184px;}
.wsd8{word-spacing:12.971088px;}
.ws16a{word-spacing:12.988800px;}
.wsac{word-spacing:13.024224px;}
.ws159{word-spacing:13.090896px;}
.ws15a{word-spacing:13.277376px;}
.wsd0{word-spacing:13.289904px;}
.ws176{word-spacing:13.307616px;}
.ws82{word-spacing:13.319424px;}
.ws59{word-spacing:13.325328px;}
.ws56{word-spacing:13.337136px;}
.ws1ac{word-spacing:13.348944px;}
.wse1{word-spacing:13.354848px;}
.ws113{word-spacing:13.360752px;}
.ws210{word-spacing:13.372128px;}
.ws107{word-spacing:13.372560px;}
.ws18a{word-spacing:13.378464px;}
.ws2a{word-spacing:13.390272px;}
.ws171{word-spacing:13.419792px;}
.ws230{word-spacing:13.424400px;}
.ws115{word-spacing:13.425696px;}
.ws170{word-spacing:13.437504px;}
.ws20e{word-spacing:13.467168px;}
.ws164{word-spacing:13.591008px;}
.ws20f{word-spacing:13.814064px;}
.ws11b{word-spacing:13.880304px;}
.ws46{word-spacing:13.974768px;}
.ws248{word-spacing:14.294016px;}
.ws117{word-spacing:14.393952px;}
.ws17b{word-spacing:14.417568px;}
.ws116{word-spacing:14.429376px;}
.ws13b{word-spacing:14.435280px;}
.ws34{word-spacing:14.452992px;}
.ws1c0{word-spacing:14.464800px;}
.wsae{word-spacing:14.470704px;}
.ws16c{word-spacing:14.506128px;}
.ws63{word-spacing:14.523840px;}
.ws161{word-spacing:14.541552px;}
.wsff{word-spacing:14.683248px;}
.wsad{word-spacing:14.695056px;}
.ws28{word-spacing:14.742288px;}
.ws17c{word-spacing:14.754096px;}
.ws50{word-spacing:14.760000px;}
.wsea{word-spacing:14.765904px;}
.wsca{word-spacing:14.777712px;}
.ws19d{word-spacing:14.783616px;}
.ws256{word-spacing:14.788224px;}
.ws89{word-spacing:14.795424px;}
.wsfe{word-spacing:14.801328px;}
.ws131{word-spacing:14.807232px;}
.ws2b{word-spacing:14.813136px;}
.ws1bf{word-spacing:14.830848px;}
.ws255{word-spacing:15.724368px;}
.ws11e{word-spacing:15.799104px;}
.wsb5{word-spacing:15.822720px;}
.ws83{word-spacing:15.905376px;}
.wsf4{word-spacing:16.170480px;}
.wsd1{word-spacing:16.171056px;}
.ws41{word-spacing:16.194672px;}
.ws132{word-spacing:16.200576px;}
.ws52{word-spacing:16.206480px;}
.ws7d{word-spacing:16.230096px;}
.ws1c5{word-spacing:16.236000px;}
.ws239{word-spacing:16.261344px;}
.ws19b{word-spacing:16.271424px;}
.ws238{word-spacing:16.285104px;}
.ws229{word-spacing:16.289856px;}
.wsbb{word-spacing:16.855920px;}
.ws23a{word-spacing:17.192736px;}
.ws174{word-spacing:17.204256px;}
.ws19c{word-spacing:17.334144px;}
.ws4b{word-spacing:17.345952px;}
.ws149{word-spacing:17.599824px;}
.ws235{word-spacing:17.639424px;}
.ws19a{word-spacing:17.664768px;}
.ws1be{word-spacing:17.670672px;}
.wse2{word-spacing:17.682480px;}
.ws237{word-spacing:17.691696px;}
.ws175{word-spacing:17.723808px;}
.wsdc{word-spacing:17.729712px;}
.ws1cf{word-spacing:17.758224px;}
.ws249{word-spacing:17.772480px;}
.wsb9{word-spacing:17.853696px;}
.ws236{word-spacing:18.604080px;}
.wsbc{word-spacing:18.727488px;}
.ws191{word-spacing:18.833760px;}
.ws148{word-spacing:19.040400px;}
.ws30{word-spacing:19.087632px;}
.ws36{word-spacing:19.099440px;}
.ws17a{word-spacing:19.105344px;}
.wsb1{word-spacing:19.111248px;}
.ws3a{word-spacing:19.117152px;}
.ws168{word-spacing:19.134864px;}
.ws1cb{word-spacing:19.170288px;}
.ws9d{word-spacing:19.176192px;}
.ws9c{word-spacing:19.217520px;}
.wsb2{word-spacing:19.737072px;}
.ws19e{word-spacing:20.557728px;}
.ws1b5{word-spacing:21.962880px;}
.wsa3{word-spacing:21.968784px;}
.ws190{word-spacing:22.004208px;}
.ws199{word-spacing:22.010112px;}
.wsd6{word-spacing:23.368032px;}
.ws94{word-spacing:23.385744px;}
.wsc2{word-spacing:23.468400px;}
.wsd5{word-spacing:24.052896px;}
.wsd7{word-spacing:24.495696px;}
.ws93{word-spacing:24.802704px;}
.ws108{word-spacing:24.832224px;}
.ws150{word-spacing:24.838128px;}
.ws1c3{word-spacing:24.844032px;}
.ws18b{word-spacing:24.879456px;}
.wse5{word-spacing:25.422624px;}
.ws192{word-spacing:25.906752px;}
.ws151{word-spacing:26.018928px;}
.ws129{word-spacing:26.278704px;}
.ws12a{word-spacing:26.314128px;}
.ws12b{word-spacing:27.559872px;}
.ws182{word-spacing:27.754704px;}
.ws179{word-spacing:27.760608px;}
.ws181{word-spacing:27.784224px;}
.ws180{word-spacing:28.734768px;}
.ws20c{word-spacing:29.196288px;}
.ws143{word-spacing:30.381984px;}
.ws7a{word-spacing:32.035104px;}
.wsab{word-spacing:33.522912px;}
.wsaa{word-spacing:69.259824px;}
.ws1af{word-spacing:69.484176px;}
.wsb3{word-spacing:69.531408px;}
.ws87{word-spacing:69.549120px;}
.ws1bd{word-spacing:69.578640px;}
.ws104{word-spacing:69.637680px;}
.wsa5{word-spacing:69.679008px;}
.ws80{word-spacing:69.850224px;}
.ws97{word-spacing:69.915168px;}
.ws6a{word-spacing:70.487856px;}
.ws99{word-spacing:92.533392px;}
.ws7{word-spacing:993.956832px;}
._11{margin-left:-70.020576px;}
._10{margin-left:-67.626864px;}
._c{margin-left:-65.887920px;}
._1f{margin-left:-60.317712px;}
._16{margin-left:-59.125104px;}
._12{margin-left:-36.152640px;}
._1b{margin-left:-25.307280px;}
._9{margin-left:-19.308240px;}
._13{margin-left:-3.722112px;}
._1{margin-left:-1.934064px;}
._3{width:1.012176px;}
._2{width:2.029104px;}
._6{width:3.623328px;}
._d{width:5.021280px;}
._19{width:9.786384px;}
._1d{width:12.633408px;}
._1c{width:17.048304px;}
._21{width:19.537344px;}
._1a{width:24.938496px;}
._f{width:50.396544px;}
._b{width:56.158848px;}
._20{width:57.599424px;}
._7{width:60.480576px;}
._18{width:61.921152px;}
._e{width:63.355824px;}
._15{width:64.796400px;}
._1e{width:66.236976px;}
._17{width:67.677552px;}
._8{width:69.118128px;}
._5{width:113.563296px;}
._14{width:549.849168px;}
._23{width:694.946736px;}
._22{width:799.652304px;}
._0{width:1019.522592px;}
._4{width:1189.439856px;}
._a{width:1607.910480px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:11.520000px;}
.fs6{font-size:23.040000px;}
.fs3{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs5{font-size:53.280000px;}
.fs4{font-size:59.040000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.040000px;}
.y0{bottom:0.000000px;}
.y3{bottom:64.980510px;}
.y2ec{bottom:71.100150px;}
.yeb{bottom:73.977882px;}
.y17c{bottom:76.134060px;}
.yf2{bottom:76.502670px;}
.y220{bottom:78.655254px;}
.y2{bottom:80.460150px;}
.y169{bottom:81.898854px;}
.y12e{bottom:83.340906px;}
.y1b9{bottom:84.778992px;}
.y92{bottom:84.781806px;}
.y23a{bottom:85.141446px;}
.y2eb{bottom:86.940294px;}
.yea{bottom:90.538602px;}
.y25a{bottom:91.266774px;}
.ycd{bottom:92.344830px;}
.y17b{bottom:92.694780px;}
.yf1{bottom:93.062094px;}
.y21f{bottom:95.215974px;}
.y168{bottom:98.459574px;}
.y239{bottom:98.461302px;}
.y12d{bottom:99.886284px;}
.y2ea{bottom:100.260150px;}
.y1b8{bottom:101.339712px;}
.y91{bottom:101.342526px;}
.y259{bottom:104.586630px;}
.y59{bottom:105.292950px;}
.y1e6{bottom:105.667776px;}
.ye9{bottom:107.099322px;}
.ycc{bottom:108.905550px;}
.yf0{bottom:109.621518px;}
.y21e{bottom:111.776694px;}
.y2e9{bottom:112.140150px;}
.y238{bottom:112.141122px;}
.y167{bottom:114.660150px;}
.y36{bottom:115.020510px;}
.y12c{bottom:116.447004px;}
.y2e8{bottom:117.180150px;}
.y1b7{bottom:117.900432px;}
.y17a{bottom:118.254672px;}
.y258{bottom:118.266450px;}
.y58{bottom:121.853670px;}
.y1e5{bottom:122.228496px;}
.ye8{bottom:123.660042px;}
.y237{bottom:125.460978px;}
.y90{bottom:125.461842px;}
.ycb{bottom:125.466270px;}
.yef{bottom:126.180942px;}
.y21d{bottom:128.337414px;}
.y35{bottom:128.700330px;}
.y166{bottom:131.220870px;}
.y257{bottom:131.586306px;}
.y12b{bottom:132.647580px;}
.y179{bottom:134.455248px;}
.y1b6{bottom:134.461152px;}
.y57{bottom:138.054246px;}
.y1e4{bottom:138.789216px;}
.y236{bottom:139.140798px;}
.y2e7{bottom:139.500150px;}
.ye7{bottom:140.220762px;}
.y8f{bottom:141.662418px;}
.yca{bottom:141.666846px;}
.y34{bottom:142.380150px;}
.yee{bottom:142.380726px;}
.y21c{bottom:144.898134px;}
.y256{bottom:145.266126px;}
.y165{bottom:147.781590px;}
.y12a{bottom:149.208300px;}
.y1b5{bottom:150.661728px;}
.y235{bottom:152.460654px;}
.y56{bottom:154.613490px;}
.y33{bottom:154.980150px;}
.ye6{bottom:156.421338px;}
.y8e{bottom:158.221662px;}
.yc9{bottom:158.227566px;}
.y255{bottom:158.585982px;}
.yed{bottom:158.940150px;}
.y178{bottom:160.375284px;}
.y21b{bottom:161.458854px;}
.y1e3{bottom:162.908532px;}
.y164{bottom:164.340834px;}
.y129{bottom:165.769020px;}
.y234{bottom:166.140474px;}
.y1b4{bottom:167.222448px;}
.y2e6{bottom:167.580150px;}
.y55{bottom:171.172734px;}
.y254{bottom:172.265802px;}
.y32{bottom:172.612230px;}
.ye5{bottom:172.982058px;}
.y8d{bottom:174.780906px;}
.yc8{bottom:174.788286px;}
.y177{bottom:176.936004px;}
.y21a{bottom:177.659430px;}
.yec{bottom:179.460150px;}
.y233{bottom:179.460330px;}
.y1e2{bottom:179.469252px;}
.y163{bottom:180.900078px;}
.y128{bottom:182.329740px;}
.y1b3{bottom:183.783168px;}
.y2e5{bottom:185.220150px;}
.y253{bottom:185.585658px;}
.y54{bottom:187.731978px;}
.y31{bottom:189.171474px;}
.ye4{bottom:189.542778px;}
.y8c{bottom:191.343672px;}
.yc7{bottom:191.349006px;}
.y176{bottom:193.136580px;}
.y232{bottom:193.140150px;}
.y219{bottom:194.220150px;}
.y1e1{bottom:195.669828px;}
.y162{bottom:197.460798px;}
.y127{bottom:198.890460px;}
.y252{bottom:199.265478px;}
.y1b2{bottom:200.343888px;}
.y2a2{bottom:201.063060px;}
.y53{bottom:204.291222px;}
.y30{bottom:205.730718px;}
.ye3{bottom:206.103498px;}
.yc6{bottom:207.909726px;}
.y175{bottom:209.697300px;}
.y218{bottom:210.784068px;}
.y1e0{bottom:212.230548px;}
.y251{bottom:212.585334px;}
.y161{bottom:213.661374px;}
.y2a1{bottom:214.382916px;}
.y2e4{bottom:214.385508px;}
.y126{bottom:215.451180px;}
.y8b{bottom:215.462988px;}
.y231{bottom:216.171402px;}
.y1b1{bottom:216.904608px;}
.y52{bottom:220.850466px;}
.y2f{bottom:222.289962px;}
.ye2{bottom:222.662742px;}
.yc5{bottom:224.470446px;}
.y174{bottom:226.258020px;}
.y250{bottom:226.265154px;}
.y217{bottom:227.344788px;}
.y2a0{bottom:228.062736px;}
.y2e3{bottom:228.065328px;}
.y160{bottom:230.222094px;}
.y125{bottom:231.651756px;}
.y8a{bottom:231.663564px;}
.y1b0{bottom:233.465328px;}
.y1df{bottom:236.349864px;}
.y51{bottom:237.051042px;}
.y2e{bottom:238.849206px;}
.y24f{bottom:239.585010px;}
.yc4{bottom:240.671022px;}
.y29f{bottom:241.382592px;}
.y2e2{bottom:241.385184px;}
.y230{bottom:242.091438px;}
.y173{bottom:242.818740px;}
.y216{bottom:243.905508px;}
.y15f{bottom:246.782814px;}
.y124{bottom:248.212476px;}
.ye1{bottom:248.222634px;}
.y89{bottom:248.224284px;}
.y1af{bottom:249.665904px;}
.y1de{bottom:252.910584px;}
.y24e{bottom:253.264830px;}
.y50{bottom:253.611762px;}
.y2d{bottom:255.049782px;}
.y29e{bottom:255.062412px;}
.y2e1{bottom:255.065004px;}
.yc3{bottom:257.231742px;}
.y22f{bottom:258.292014px;}
.y172{bottom:259.379460px;}
.y215{bottom:260.466228px;}
.y15e{bottom:263.343534px;}
.ye0{bottom:264.423210px;}
.y123{bottom:264.773196px;}
.y88{bottom:264.785004px;}
.y24d{bottom:266.584686px;}
.y29d{bottom:268.382268px;}
.y2e0{bottom:268.384860px;}
.y4f{bottom:270.172482px;}
.y2c{bottom:271.610502px;}
.y1ae{bottom:273.786696px;}
.yc2{bottom:273.792462px;}
.y22e{bottom:274.852734px;}
.y171{bottom:275.940180px;}
.y214{bottom:276.666804px;}
.y1dd{bottom:276.669756px;}
.y15d{bottom:279.904254px;}
.y24c{bottom:280.264506px;}
.y122{bottom:281.333916px;}
.y87{bottom:281.345724px;}
.y29c{bottom:282.062088px;}
.y2df{bottom:282.064680px;}
.y4e{bottom:286.733202px;}
.y2b{bottom:288.171222px;}
.ydf{bottom:289.983102px;}
.y1ad{bottom:290.347416px;}
.yc1{bottom:290.353182px;}
.y22d{bottom:291.413454px;}
.y170{bottom:292.140756px;}
.y213{bottom:293.226048px;}
.y1dc{bottom:293.230476px;}
.y24b{bottom:293.584362px;}
.y29b{bottom:295.381944px;}
.y2de{bottom:295.384536px;}
.y15c{bottom:296.464974px;}
.y121{bottom:297.894636px;}
.y86{bottom:297.906444px;}
.y4d{bottom:303.293922px;}
.y2a{bottom:304.731942px;}
.yde{bottom:306.543822px;}
.y1ac{bottom:306.908136px;}
.yc0{bottom:306.913902px;}
.y24a{bottom:307.264182px;}
.y16f{bottom:308.700000px;}
.y29a{bottom:309.061764px;}
.y2dd{bottom:309.064356px;}
.y212{bottom:309.785292px;}
.y1db{bottom:309.791196px;}
.y15b{bottom:312.665550px;}
.y120{bottom:314.455356px;}
.y85{bottom:314.467164px;}
.y22c{bottom:316.613202px;}
.y4c{bottom:319.854642px;}
.y249{bottom:320.584038px;}
.y29{bottom:321.292662px;}
.y299{bottom:322.381620px;}
.y2dc{bottom:322.384212px;}
.ydd{bottom:323.104542px;}
.y1ab{bottom:323.468856px;}
.ybf{bottom:323.474622px;}
.y211{bottom:326.344536px;}
.y15a{bottom:329.226270px;}
.y11f{bottom:330.655932px;}
.y16e{bottom:332.821518px;}
.y1da{bottom:333.910512px;}
.y248{bottom:334.263858px;}
.y4b{bottom:336.055218px;}
.y298{bottom:336.061440px;}
.y2db{bottom:336.064032px;}
.y28{bottom:337.853382px;}
.ydc{bottom:339.665262px;}
.y84{bottom:339.666912px;}
.y1aa{bottom:339.669432px;}
.ybe{bottom:339.675198px;}
.y22b{bottom:342.533238px;}
.y210{bottom:342.903780px;}
.y159{bottom:345.786990px;}
.y247{bottom:347.583714px;}
.y16d{bottom:349.380942px;}
.y297{bottom:349.381296px;}
.y2da{bottom:349.383888px;}
.y1d9{bottom:350.469756px;}
.y4a{bottom:352.614462px;}
.y27{bottom:354.053958px;}
.y11e{bottom:356.215824px;}
.ydb{bottom:356.225982px;}
.y1a9{bottom:356.230152px;}
.ybd{bottom:356.234442px;}
.y22a{bottom:359.093958px;}
.y20f{bottom:359.463024px;}
.y246{bottom:361.263534px;}
.y158{bottom:362.347710px;}
.y296{bottom:363.061116px;}
.y2d9{bottom:363.063708px;}
.y83{bottom:365.226804px;}
.y16c{bottom:365.940366px;}
.y49{bottom:369.173706px;}
.y26{bottom:370.614678px;}
.y11d{bottom:372.416400px;}
.yda{bottom:372.426558px;}
.y1a8{bottom:372.789396px;}
.ybc{bottom:372.793686px;}
.y1d8{bottom:374.230404px;}
.y245{bottom:374.583390px;}
.y229{bottom:375.294534px;}
.y20e{bottom:375.663600px;}
.y295{bottom:376.380972px;}
.y2d8{bottom:376.383564px;}
.y157{bottom:378.906954px;}
.y82{bottom:381.787524px;}
.y16b{bottom:382.140150px;}
.y48{bottom:385.732950px;}
.y25{bottom:387.175398px;}
.y244{bottom:388.263210px;}
.yd9{bottom:388.985802px;}
.y1a7{bottom:389.348640px;}
.ybb{bottom:389.352930px;}
.y294{bottom:390.060792px;}
.y2d7{bottom:390.063384px;}
.y1d7{bottom:390.791124px;}
.y228{bottom:391.855254px;}
.y20d{bottom:392.224320px;}
.y156{bottom:395.466198px;}
.y11c{bottom:398.336436px;}
.y81{bottom:398.348244px;}
.y243{bottom:401.583066px;}
.y16a{bottom:403.020150px;}
.y293{bottom:403.380648px;}
.y2d6{bottom:403.383240px;}
.y24{bottom:403.736118px;}
.yd8{bottom:405.545046px;}
.y1a6{bottom:405.907884px;}
.yba{bottom:405.912174px;}
.y1d6{bottom:407.351844px;}
.y227{bottom:408.415974px;}
.y20c{bottom:408.785040px;}
.y47{bottom:410.932698px;}
.y11b{bottom:414.895680px;}
.y80{bottom:414.907488px;}
.y242{bottom:415.262886px;}
.y292{bottom:417.060468px;}
.y2d5{bottom:417.063060px;}
.y23{bottom:420.296838px;}
.y155{bottom:420.665946px;}
.yd7{bottom:422.104290px;}
.y1a5{bottom:422.467128px;}
.yb9{bottom:422.471418px;}
.y226{bottom:424.976694px;}
.y241{bottom:428.582742px;}
.y291{bottom:430.380324px;}
.y2d4{bottom:430.382916px;}
.y11a{bottom:431.454924px;}
.y7f{bottom:431.466732px;}
.y1d5{bottom:431.471160px;}
.y20b{bottom:432.904356px;}
.y46{bottom:436.852734px;}
.y22{bottom:436.857558px;}
.y154{bottom:436.866522px;}
.yd6{bottom:438.663534px;}
.y1a4{bottom:438.667704px;}
.yb8{bottom:438.671994px;}
.y225{bottom:441.537414px;}
.y240{bottom:442.262562px;}
.y290{bottom:444.060144px;}
.y2d3{bottom:444.062736px;}
.y119{bottom:447.655500px;}
.y7e{bottom:447.667308px;}
.y1d4{bottom:447.671736px;}
.y20a{bottom:449.465076px;}
.y45{bottom:453.051834px;}
.y21{bottom:453.056658px;}
.yd5{bottom:455.222778px;}
.y1a3{bottom:455.226948px;}
.yb7{bottom:455.231238px;}
.y23f{bottom:455.582418px;}
.y28f{bottom:457.380000px;}
.y2d2{bottom:457.382592px;}
.y224{bottom:458.098134px;}
.y153{bottom:462.786558px;}
.y118{bottom:464.214744px;}
.y7d{bottom:464.226552px;}
.y209{bottom:465.665652px;}
.y23e{bottom:469.262238px;}
.y44{bottom:469.612554px;}
.y20{bottom:469.617378px;}
.y2d1{bottom:471.062412px;}
.y28e{bottom:471.066918px;}
.yd4{bottom:471.423354px;}
.y1a2{bottom:471.786192px;}
.yb6{bottom:471.790482px;}
.y1d3{bottom:471.791052px;}
.y223{bottom:474.298710px;}
.y152{bottom:479.347278px;}
.y117{bottom:480.775464px;}
.y208{bottom:482.226372px;}
.y23d{bottom:482.582094px;}
.y2d0{bottom:484.382268px;}
.y28d{bottom:484.386774px;}
.y43{bottom:486.173274px;}
.y1f{bottom:486.178098px;}
.yd3{bottom:487.982598px;}
.y1a1{bottom:488.345436px;}
.y7c{bottom:488.347344px;}
.yb5{bottom:488.349726px;}
.y222{bottom:490.859430px;}
.y151{bottom:495.906522px;}
.y1d2{bottom:495.910368px;}
.y23c{bottom:496.261914px;}
.y116{bottom:497.336184px;}
.y2cf{bottom:498.062088px;}
.y28c{bottom:498.066594px;}
.y207{bottom:498.787092px;}
.y42{bottom:502.733994px;}
.y1e{bottom:502.738818px;}
.yd2{bottom:504.541842px;}
.y1a0{bottom:504.904680px;}
.y7b{bottom:504.906588px;}
.yb4{bottom:504.908970px;}
.y221{bottom:507.420150px;}
.y23b{bottom:509.581770px;}
.y2ce{bottom:511.381944px;}
.y28b{bottom:511.386450px;}
.y150{bottom:512.465766px;}
.y115{bottom:513.896904px;}
.y206{bottom:515.347812px;}
.y41{bottom:519.294714px;}
.y1d1{bottom:519.671016px;}
.yd1{bottom:521.101086px;}
.y19f{bottom:521.463924px;}
.y7a{bottom:521.465832px;}
.yb3{bottom:521.468214px;}
.y2cd{bottom:525.061764px;}
.y28a{bottom:525.066270px;}
.y1d{bottom:526.858134px;}
.y14f{bottom:528.666342px;}
.y114{bottom:530.457624px;}
.y205{bottom:531.908532px;}
.y40{bottom:535.855434px;}
.y1d0{bottom:536.230260px;}
.yd0{bottom:537.660330px;}
.y19e{bottom:537.664500px;}
.y79{bottom:537.666408px;}
.y2cc{bottom:538.381620px;}
.y289{bottom:538.386126px;}
.y1c{bottom:543.058710px;}
.y25f{bottom:544.861728px;}
.y14e{bottom:545.227062px;}
.y113{bottom:546.658200px;}
.yb2{bottom:546.667962px;}
.y204{bottom:548.469252px;}
.y3f{bottom:552.056010px;}
.y2cb{bottom:552.061440px;}
.y288{bottom:552.065946px;}
.y1cf{bottom:552.789504px;}
.ycf{bottom:554.219574px;}
.y78{bottom:554.225652px;}
.y1b{bottom:559.619430px;}
.y25e{bottom:561.421152px;}
.y19d{bottom:561.783816px;}
.y14d{bottom:561.787782px;}
.yb1{bottom:562.868538px;}
.y112{bottom:563.217444px;}
.y203{bottom:564.669828px;}
.y2ca{bottom:565.381296px;}
.y287{bottom:565.385802px;}
.y3e{bottom:568.615254px;}
.y1ce{bottom:569.348748px;}
.yce{bottom:570.420150px;}
.y77{bottom:570.786372px;}
.y1a{bottom:576.177990px;}
.y25d{bottom:577.980576px;}
.y19c{bottom:578.343060px;}
.y2c9{bottom:579.061116px;}
.y286{bottom:579.065622px;}
.y111{bottom:579.778164px;}
.y202{bottom:581.230548px;}
.y3d{bottom:585.175974px;}
.y14c{bottom:585.907098px;}
.y1cd{bottom:585.907992px;}
.yb0{bottom:588.788574px;}
.y2c8{bottom:592.380972px;}
.y285{bottom:592.385478px;}
.y19{bottom:592.738710px;}
.y25c{bottom:594.540000px;}
.y19b{bottom:594.902304px;}
.y76{bottom:594.905688px;}
.y110{bottom:596.338884px;}
.y201{bottom:597.791268px;}
.y3c{bottom:601.736694px;}
.y14b{bottom:602.466342px;}
.y1cc{bottom:602.467236px;}
.yaf{bottom:605.349294px;}
.y2c7{bottom:606.060792px;}
.y284{bottom:606.065298px;}
.yf4{bottom:608.220000px;}
.y18{bottom:609.299430px;}
.y19a{bottom:611.461548px;}
.y75{bottom:611.464932px;}
.y200{bottom:614.351988px;}
.y25b{bottom:615.420150px;}
.y3b{bottom:618.297414px;}
.y14a{bottom:618.666918px;}
.y1cb{bottom:618.667812px;}
.y2c6{bottom:619.380648px;}
.y283{bottom:619.385154px;}
.y10f{bottom:620.458200px;}
.yae{bottom:621.910014px;}
.y17{bottom:625.859496px;}
.y199{bottom:627.662124px;}
.y74{bottom:627.665508px;}
.yf3{bottom:629.100150px;}
.y1ff{bottom:630.912708px;}
.y2c5{bottom:633.060468px;}
.y282{bottom:633.064974px;}
.y3a{bottom:634.858134px;}
.y149{bottom:635.226162px;}
.y1ca{bottom:635.227056px;}
.y10e{bottom:636.658776px;}
.yad{bottom:638.470734px;}
.y16{bottom:642.060072px;}
.y198{bottom:644.221368px;}
.y73{bottom:644.226228px;}
.y2c4{bottom:646.380324px;}
.y281{bottom:646.384830px;}
.y1fe{bottom:647.473428px;}
.y39{bottom:651.058710px;}
.y148{bottom:651.785406px;}
.y1c9{bottom:651.786300px;}
.y10d{bottom:653.219496px;}
.yac{bottom:654.671310px;}
.y15{bottom:658.620792px;}
.y2c3{bottom:660.060144px;}
.y280{bottom:660.064650px;}
.y197{bottom:660.782088px;}
.y72{bottom:660.786948px;}
.y1fd{bottom:663.674004px;}
.y38{bottom:667.619430px;}
.y147{bottom:668.344650px;}
.y1c8{bottom:668.345544px;}
.y10c{bottom:669.780216px;}
.yab{bottom:671.230554px;}
.y27f{bottom:673.384506px;}
.y2c2{bottom:673.388100px;}
.y196{bottom:677.342808px;}
.y71{bottom:677.346192px;}
.y1fc{bottom:680.233248px;}
.y37{bottom:684.180150px;}
.y14{bottom:684.180684px;}
.y146{bottom:684.903894px;}
.y1c7{bottom:684.904788px;}
.y10b{bottom:686.339460px;}
.y27e{bottom:687.064326px;}
.y2c1{bottom:687.067920px;}
.y195{bottom:693.902052px;}
.y70{bottom:693.905436px;}
.yaa{bottom:695.351346px;}
.y1fb{bottom:696.792492px;}
.y27d{bottom:700.384182px;}
.y2c0{bottom:700.387776px;}
.y145{bottom:701.463138px;}
.y1c6{bottom:701.464032px;}
.y10a{bottom:702.898704px;}
.y194{bottom:710.461296px;}
.y6f{bottom:710.464680px;}
.ya9{bottom:711.910590px;}
.y1fa{bottom:713.351736px;}
.y27c{bottom:714.064002px;}
.y2bf{bottom:714.067596px;}
.y144{bottom:717.663714px;}
.y109{bottom:719.457948px;}
.y13{bottom:723.060000px;}
.y1c5{bottom:725.224680px;}
.y193{bottom:726.661872px;}
.y6e{bottom:726.665256px;}
.y27b{bottom:727.383858px;}
.y2be{bottom:727.387452px;}
.ya8{bottom:728.469834px;}
.y1f9{bottom:729.910980px;}
.y143{bottom:734.224434px;}
.y108{bottom:735.658524px;}
.y27a{bottom:741.063678px;}
.y2bd{bottom:741.067272px;}
.y1c4{bottom:741.785400px;}
.y192{bottom:743.221116px;}
.y6d{bottom:743.224500px;}
.ya7{bottom:744.670410px;}
.y1f8{bottom:746.470224px;}
.y12{bottom:747.175074px;}
.y142{bottom:750.785154px;}
.y107{bottom:752.219244px;}
.y279{bottom:754.383534px;}
.y2bc{bottom:754.387128px;}
.y1c3{bottom:758.346120px;}
.y191{bottom:759.780360px;}
.ya6{bottom:761.229654px;}
.y1f7{bottom:762.670800px;}
.y11{bottom:763.735830px;}
.y6c{bottom:767.345292px;}
.y141{bottom:767.345874px;}
.y278{bottom:768.063354px;}
.y2bb{bottom:768.066948px;}
.y106{bottom:768.779964px;}
.y1c2{bottom:774.906840px;}
.y190{bottom:776.339604px;}
.ya5{bottom:777.788898px;}
.y1f6{bottom:779.230044px;}
.y10{bottom:780.296586px;}
.y277{bottom:781.383210px;}
.y2ba{bottom:781.386804px;}
.y6b{bottom:783.906012px;}
.y140{bottom:783.906594px;}
.y105{bottom:785.340684px;}
.y1c1{bottom:791.467560px;}
.y18f{bottom:792.898848px;}
.ya4{bottom:794.349618px;}
.y276{bottom:795.063030px;}
.y2b9{bottom:795.066624px;}
.y1f5{bottom:795.789288px;}
.yf{bottom:796.857342px;}
.y6a{bottom:800.466732px;}
.y13f{bottom:800.467314px;}
.y104{bottom:801.901404px;}
.y1c0{bottom:807.668136px;}
.y275{bottom:808.382886px;}
.y2b8{bottom:808.386480px;}
.y18e{bottom:809.459568px;}
.ye{bottom:813.057126px;}
.y69{bottom:816.667308px;}
.y13e{bottom:816.667890px;}
.y103{bottom:818.462124px;}
.ya3{bottom:818.470410px;}
.y1f4{bottom:820.989036px;}
.y274{bottom:822.062706px;}
.y2b7{bottom:822.066300px;}
.y1bf{bottom:824.227380px;}
.y18d{bottom:825.660144px;}
.yd{bottom:829.617882px;}
.y68{bottom:833.226552px;}
.y13d{bottom:833.227134px;}
.y102{bottom:834.662700px;}
.ya2{bottom:834.670986px;}
.y273{bottom:835.382562px;}
.y2b6{bottom:835.386156px;}
.y1be{bottom:840.786624px;}
.y18c{bottom:842.219388px;}
.yc{bottom:846.178638px;}
.y1f3{bottom:846.909072px;}
.y272{bottom:849.062382px;}
.y2b5{bottom:849.065976px;}
.y67{bottom:849.785796px;}
.y13c{bottom:849.786378px;}
.y101{bottom:851.221944px;}
.ya1{bottom:851.230230px;}
.y1bd{bottom:857.345868px;}
.y18b{bottom:858.778632px;}
.y271{bottom:862.382238px;}
.y2b4{bottom:862.385832px;}
.yb{bottom:862.739394px;}
.y1f2{bottom:863.469792px;}
.y66{bottom:866.345040px;}
.y13b{bottom:866.347098px;}
.y100{bottom:867.781188px;}
.ya0{bottom:867.789474px;}
.y1bc{bottom:873.905112px;}
.y18a{bottom:875.337876px;}
.y270{bottom:876.062058px;}
.y2b3{bottom:876.065652px;}
.ya{bottom:879.300150px;}
.y1f1{bottom:879.670368px;}
.y65{bottom:882.904284px;}
.y13a{bottom:882.906342px;}
.yff{bottom:884.340432px;}
.y9f{bottom:884.348718px;}
.y26f{bottom:889.381914px;}
.y2b2{bottom:889.385508px;}
.y1bb{bottom:890.464356px;}
.y189{bottom:891.897120px;}
.y64{bottom:899.463528px;}
.y139{bottom:899.465586px;}
.yfe{bottom:900.899676px;}
.y9e{bottom:900.907962px;}
.y26e{bottom:903.061734px;}
.y2b1{bottom:903.065328px;}
.y1f0{bottom:903.789684px;}
.y1ba{bottom:906.664932px;}
.y188{bottom:908.456364px;}
.y26d{bottom:916.381590px;}
.y2b0{bottom:916.385184px;}
.yfd{bottom:917.458920px;}
.y9d{bottom:917.467206px;}
.y1ef{bottom:920.348928px;}
.y9{bottom:920.700000px;}
.y63{bottom:923.224176px;}
.y187{bottom:924.656940px;}
.y138{bottom:924.665334px;}
.y26c{bottom:930.061410px;}
.y2af{bottom:930.065004px;}
.yfc{bottom:933.659496px;}
.y1ee{bottom:936.908172px;}
.y62{bottom:939.783420px;}
.y186{bottom:941.216184px;}
.y9c{bottom:941.227854px;}
.y26b{bottom:943.381266px;}
.y2ae{bottom:943.384860px;}
.y8{bottom:945.180150px;}
.yfb{bottom:950.218740px;}
.y137{bottom:950.225226px;}
.y61{bottom:956.342664px;}
.y26a{bottom:957.061086px;}
.y2ad{bottom:957.064680px;}
.y185{bottom:957.776904px;}
.y9b{bottom:957.787098px;}
.y1ed{bottom:960.668820px;}
.y136{bottom:966.784470px;}
.y269{bottom:970.380942px;}
.y2ac{bottom:970.384536px;}
.y60{bottom:972.901908px;}
.y184{bottom:974.337624px;}
.yfa{bottom:974.339532px;}
.y9a{bottom:974.346342px;}
.y1ec{bottom:977.228064px;}
.y135{bottom:983.343714px;}
.y268{bottom:984.060762px;}
.y2ab{bottom:984.064356px;}
.y5f{bottom:989.461152px;}
.y183{bottom:990.896868px;}
.yf9{bottom:990.898776px;}
.y99{bottom:990.905586px;}
.y7{bottom:991.620000px;}
.y267{bottom:997.380618px;}
.y2aa{bottom:997.384212px;}
.y134{bottom:999.902958px;}
.y1eb{bottom:1001.348856px;}
.y5e{bottom:1005.661728px;}
.y182{bottom:1007.456112px;}
.yf8{bottom:1007.458020px;}
.y98{bottom:1007.464830px;}
.y266{bottom:1011.060438px;}
.y2a9{bottom:1011.064032px;}
.y133{bottom:1016.462202px;}
.y5d{bottom:1022.220972px;}
.y181{bottom:1023.656688px;}
.yf7{bottom:1023.658596px;}
.y97{bottom:1023.665406px;}
.y265{bottom:1024.380294px;}
.y2a8{bottom:1024.383888px;}
.y1ea{bottom:1025.468172px;}
.y6{bottom:1027.618920px;}
.y264{bottom:1038.060114px;}
.y2a7{bottom:1038.063708px;}
.y180{bottom:1040.215932px;}
.yf6{bottom:1040.219316px;}
.y132{bottom:1040.222850px;}
.y96{bottom:1040.224650px;}
.y5c{bottom:1047.420720px;}
.y1e9{bottom:1049.227344px;}
.y263{bottom:1051.379970px;}
.y2a6{bottom:1051.383564px;}
.y5{bottom:1052.460000px;}
.y17f{bottom:1056.775176px;}
.yf5{bottom:1056.780036px;}
.y131{bottom:1056.782094px;}
.y95{bottom:1056.783894px;}
.y262{bottom:1065.059790px;}
.y2a5{bottom:1065.063384px;}
.y17e{bottom:1073.334420px;}
.y5b{bottom:1073.340756px;}
.y130{bottom:1073.341338px;}
.y94{bottom:1073.343138px;}
.y1e8{bottom:1073.348136px;}
.y261{bottom:1078.379646px;}
.y2a4{bottom:1078.383240px;}
.y4{bottom:1086.300150px;}
.y17d{bottom:1089.893664px;}
.y5a{bottom:1089.900000px;}
.y12f{bottom:1089.900582px;}
.y93{bottom:1089.902382px;}
.y1e7{bottom:1089.907380px;}
.y260{bottom:1092.059466px;}
.y2a3{bottom:1092.063060px;}
.y1{bottom:1120.860150px;}
.h15{height:8.004375px;}
.hd{height:16.008750px;}
.h7{height:26.995781px;}
.h3{height:32.205937px;}
.he{height:32.345156px;}
.h14{height:32.994844px;}
.h2{height:33.018047px;}
.h11{height:36.994219px;}
.h8{height:37.020234px;}
.ha{height:40.013438px;}
.h10{height:40.993594px;}
.h9{height:41.022422px;}
.hb{height:41.025038px;}
.hc{height:41.031062px;}
.h12{height:43.761094px;}
.hf{height:49.992188px;}
.h1{height:50.027344px;}
.h4{height:52.417969px;}
.h13{height:54.430230px;}
.h5{height:64.411875px;}
.h6{height:66.138047px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:95.820000px;}
.x7{left:97.620000px;}
.x9{left:138.299280px;}
.x3{left:159.540000px;}
.x8{left:464.820000px;}
.x4{left:496.139850px;}
.xa{left:538.620000px;}
.x2{left:750.300000px;}
.xb{left:824.100000px;}
.x5{left:844.260000px;}
.x6{left:848.220000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-7.678208pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.680533pt;}
.v6{vertical-align:24.369301pt;}
.v1{vertical-align:29.440000pt;}
.lscc{letter-spacing:-1.077120pt;}
.lsce{letter-spacing:-0.756096pt;}
.lscf{letter-spacing:-0.709632pt;}
.ls3a{letter-spacing:-0.498560pt;}
.lsaf{letter-spacing:-0.449920pt;}
.ls22{letter-spacing:-0.446080pt;}
.ls5a{letter-spacing:-0.440832pt;}
.ls46{letter-spacing:-0.430336pt;}
.ls72{letter-spacing:-0.425088pt;}
.ls8b{letter-spacing:-0.419840pt;}
.lsb1{letter-spacing:-0.416768pt;}
.ls45{letter-spacing:-0.414592pt;}
.ls69{letter-spacing:-0.412032pt;}
.ls7f{letter-spacing:-0.409344pt;}
.ls7d{letter-spacing:-0.404096pt;}
.ls50{letter-spacing:-0.398848pt;}
.ls75{letter-spacing:-0.393600pt;}
.ls6a{letter-spacing:-0.393088pt;}
.ls7c{letter-spacing:-0.388352pt;}
.ls53{letter-spacing:-0.383104pt;}
.lsbe{letter-spacing:-0.380160pt;}
.ls37{letter-spacing:-0.377856pt;}
.ls61{letter-spacing:-0.372608pt;}
.ls2d{letter-spacing:-0.367360pt;}
.ls64{letter-spacing:-0.362112pt;}
.ls54{letter-spacing:-0.356864pt;}
.ls24{letter-spacing:-0.351616pt;}
.ls49{letter-spacing:-0.346368pt;}
.ls29{letter-spacing:-0.341120pt;}
.ls5f{letter-spacing:-0.335872pt;}
.ls4b{letter-spacing:-0.330624pt;}
.ls4c{letter-spacing:-0.325376pt;}
.lsc4{letter-spacing:-0.321024pt;}
.ls3b{letter-spacing:-0.320128pt;}
.ls26{letter-spacing:-0.314880pt;}
.ls8c{letter-spacing:-0.309632pt;}
.ls55{letter-spacing:-0.304384pt;}
.ls36{letter-spacing:-0.299136pt;}
.ls33{letter-spacing:-0.288640pt;}
.ls74{letter-spacing:-0.283392pt;}
.ls12{letter-spacing:-0.278784pt;}
.ls90{letter-spacing:-0.272896pt;}
.ls5b{letter-spacing:-0.267648pt;}
.ls59{letter-spacing:-0.262400pt;}
.ls32{letter-spacing:-0.257152pt;}
.ls70{letter-spacing:-0.251904pt;}
.lsc1{letter-spacing:-0.249216pt;}
.lsa2{letter-spacing:-0.244992pt;}
.lsa1{letter-spacing:-0.240768pt;}
.lsbf{letter-spacing:-0.236544pt;}
.lsac{letter-spacing:-0.232320pt;}
.lsa0{letter-spacing:-0.228096pt;}
.lsc6{letter-spacing:-0.223872pt;}
.lsae{letter-spacing:-0.219648pt;}
.ls9e{letter-spacing:-0.215424pt;}
.ls31{letter-spacing:-0.211200pt;}
.ls87{letter-spacing:-0.194176pt;}
.ls13{letter-spacing:-0.070400pt;}
.ls16{letter-spacing:-0.051200pt;}
.ls11{letter-spacing:-0.025344pt;}
.ls17{letter-spacing:-0.012800pt;}
.lsab{letter-spacing:-0.012672pt;}
.ls10{letter-spacing:0.000000pt;}
.lsad{letter-spacing:0.008448pt;}
.ls79{letter-spacing:0.010368pt;}
.lsb2{letter-spacing:0.012672pt;}
.ls9f{letter-spacing:0.016896pt;}
.lsc5{letter-spacing:0.042240pt;}
.lsc7{letter-spacing:0.046464pt;}
.lsc0{letter-spacing:0.050688pt;}
.lsb{letter-spacing:0.057728pt;}
.ls7a{letter-spacing:0.099712pt;}
.ls62{letter-spacing:0.120704pt;}
.lsc9{letter-spacing:0.139392pt;}
.ls73{letter-spacing:0.141696pt;}
.lscd{letter-spacing:0.160512pt;}
.lsca{letter-spacing:0.164736pt;}
.ls81{letter-spacing:0.167936pt;}
.ls8d{letter-spacing:0.178432pt;}
.lsa3{letter-spacing:0.198528pt;}
.lsbd{letter-spacing:0.202752pt;}
.ls1{letter-spacing:0.211200pt;}
.lscb{letter-spacing:0.215424pt;}
.ls35{letter-spacing:0.251904pt;}
.lsb9{letter-spacing:0.261888pt;}
.lsa9{letter-spacing:0.270336pt;}
.ls4a{letter-spacing:0.309632pt;}
.ls7e{letter-spacing:0.320128pt;}
.ls86{letter-spacing:0.398848pt;}
.ls5e{letter-spacing:0.412032pt;}
.ls99{letter-spacing:0.430336pt;}
.ls3d{letter-spacing:0.446080pt;}
.ls19{letter-spacing:0.449920pt;}
.ls56{letter-spacing:0.451328pt;}
.ls38{letter-spacing:0.456576pt;}
.ls51{letter-spacing:0.461824pt;}
.ls8a{letter-spacing:0.472320pt;}
.lsba{letter-spacing:0.485760pt;}
.lsa5{letter-spacing:0.489984pt;}
.ls57{letter-spacing:0.498560pt;}
.lsc8{letter-spacing:0.502656pt;}
.ls27{letter-spacing:0.509056pt;}
.ls3e{letter-spacing:0.509440pt;}
.lsb4{letter-spacing:0.511104pt;}
.lsa8{letter-spacing:0.515328pt;}
.ls3f{letter-spacing:0.519552pt;}
.ls9b{letter-spacing:0.523776pt;}
.ls23{letter-spacing:0.524800pt;}
.lsc3{letter-spacing:0.528000pt;}
.ls8f{letter-spacing:0.530048pt;}
.lsf{letter-spacing:0.532224pt;}
.ls5c{letter-spacing:0.535296pt;}
.ls9c{letter-spacing:0.536448pt;}
.lsa7{letter-spacing:0.540672pt;}
.ls15{letter-spacing:0.544000pt;}
.lsbb{letter-spacing:0.544896pt;}
.ls5{letter-spacing:0.545792pt;}
.ls9a{letter-spacing:0.549120pt;}
.ls88{letter-spacing:0.551040pt;}
.lsa6{letter-spacing:0.553344pt;}
.ls40{letter-spacing:0.556288pt;}
.lsaa{letter-spacing:0.557568pt;}
.ls60{letter-spacing:0.561536pt;}
.ls43{letter-spacing:0.561792pt;}
.ls14{letter-spacing:0.563200pt;}
.ls9d{letter-spacing:0.566016pt;}
.ls6e{letter-spacing:0.566784pt;}
.lsb8{letter-spacing:0.570240pt;}
.ls48{letter-spacing:0.572032pt;}
.lsa4{letter-spacing:0.574464pt;}
.ls25{letter-spacing:0.577280pt;}
.ls65{letter-spacing:0.577792pt;}
.ls95{letter-spacing:0.578688pt;}
.ls39{letter-spacing:0.582528pt;}
.ls2f{letter-spacing:0.582912pt;}
.ls44{letter-spacing:0.587136pt;}
.ls2b{letter-spacing:0.587776pt;}
.ls98{letter-spacing:0.591360pt;}
.ls7{letter-spacing:0.593024pt;}
.lsb7{letter-spacing:0.595584pt;}
.ls3c{letter-spacing:0.598272pt;}
.ls94{letter-spacing:0.599808pt;}
.ls8{letter-spacing:0.603520pt;}
.lsb6{letter-spacing:0.604032pt;}
.lsbc{letter-spacing:0.608256pt;}
.lse{letter-spacing:0.608768pt;}
.ls30{letter-spacing:0.612480pt;}
.ls9{letter-spacing:0.614016pt;}
.lsb5{letter-spacing:0.616704pt;}
.ls6{letter-spacing:0.619264pt;}
.ls93{letter-spacing:0.620928pt;}
.lsa{letter-spacing:0.624512pt;}
.ls96{letter-spacing:0.625152pt;}
.lsc2{letter-spacing:0.629376pt;}
.ls2a{letter-spacing:0.629760pt;}
.ls84{letter-spacing:0.629888pt;}
.lsb3{letter-spacing:0.633600pt;}
.lsc{letter-spacing:0.635008pt;}
.ls3{letter-spacing:0.639467pt;}
.ls2{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.640256pt;}
.ls4{letter-spacing:0.640533pt;}
.ls0{letter-spacing:0.642048pt;}
.ls18{letter-spacing:0.645504pt;}
.ls80{letter-spacing:0.648832pt;}
.ls2e{letter-spacing:0.650752pt;}
.ls1e{letter-spacing:0.653568pt;}
.ls34{letter-spacing:0.656000pt;}
.ls28{letter-spacing:0.661248pt;}
.ls1b{letter-spacing:0.663040pt;}
.ls2c{letter-spacing:0.666496pt;}
.ls1f{letter-spacing:0.667776pt;}
.ls4e{letter-spacing:0.671744pt;}
.lsb0{letter-spacing:0.672512pt;}
.ls71{letter-spacing:0.676992pt;}
.ls1c{letter-spacing:0.677248pt;}
.ls1a{letter-spacing:0.681984pt;}
.ls7b{letter-spacing:0.682240pt;}
.ls1d{letter-spacing:0.686720pt;}
.ls77{letter-spacing:0.687488pt;}
.ls68{letter-spacing:0.691456pt;}
.ls85{letter-spacing:0.696192pt;}
.ls52{letter-spacing:0.697984pt;}
.ls21{letter-spacing:0.700928pt;}
.ls20{letter-spacing:0.705664pt;}
.ls6b{letter-spacing:0.708480pt;}
.ls91{letter-spacing:0.713728pt;}
.ls78{letter-spacing:0.781952pt;}
.ls4d{letter-spacing:0.834432pt;}
.ls66{letter-spacing:0.843008pt;}
.ls67{letter-spacing:0.876160pt;}
.ls41{letter-spacing:0.902656pt;}
.ls63{letter-spacing:0.907904pt;}
.ls6f{letter-spacing:0.960384pt;}
.ls76{letter-spacing:0.981376pt;}
.ls58{letter-spacing:1.007616pt;}
.ls47{letter-spacing:1.028608pt;}
.ls89{letter-spacing:1.222784pt;}
.ls6d{letter-spacing:1.312000pt;}
.ls6c{letter-spacing:1.448448pt;}
.ls5d{letter-spacing:1.648128pt;}
.ls82{letter-spacing:1.726592pt;}
.ls83{letter-spacing:1.920768pt;}
.ls42{letter-spacing:12.479744pt;}
.ls4f{letter-spacing:17.601792pt;}
.ls97{letter-spacing:67.617792pt;}
.ls92{letter-spacing:89.375616pt;}
.ls8e{letter-spacing:112.128768pt;}
.ws154{word-spacing:-52.480000pt;}
.ws1f8{word-spacing:-42.240000pt;}
.ws153{word-spacing:-14.342784pt;}
.ws5d{word-spacing:-13.760256pt;}
.ws193{word-spacing:-13.739264pt;}
.ws194{word-spacing:-13.734016pt;}
.ws2{word-spacing:-13.723520pt;}
.wsfc{word-spacing:-13.697280pt;}
.wsf7{word-spacing:-13.665792pt;}
.wsf9{word-spacing:-13.566080pt;}
.ws3{word-spacing:-13.371904pt;}
.wsfa{word-spacing:-13.177728pt;}
.wsf8{word-spacing:-13.120000pt;}
.ws155{word-spacing:-12.768384pt;}
.ws5c{word-spacing:-12.742144pt;}
.ws152{word-spacing:-12.710656pt;}
.wsd3{word-spacing:-12.683008pt;}
.ws1c4{word-spacing:-11.390080pt;}
.ws0{word-spacing:-11.202048pt;}
.ws1{word-spacing:-10.560000pt;}
.ws1f9{word-spacing:-10.348800pt;}
.ws1f7{word-spacing:-10.344576pt;}
.ws1fa{word-spacing:-9.850368pt;}
.wsfb{word-spacing:-8.650368pt;}
.ws26b{word-spacing:-2.200704pt;}
.ws26c{word-spacing:-2.116224pt;}
.ws187{word-spacing:-1.348736pt;}
.ws91{word-spacing:-1.154560pt;}
.ws1a{word-spacing:-1.022976pt;}
.ws1f6{word-spacing:-1.013504pt;}
.wsf5{word-spacing:-1.004032pt;}
.ws15d{word-spacing:-0.970880pt;}
.ws11{word-spacing:-0.965632pt;}
.ws5{word-spacing:-0.963072pt;}
.ws9b{word-spacing:-0.960384pt;}
.ws10{word-spacing:-0.955136pt;}
.ws20a{word-spacing:-0.954624pt;}
.ws22b{word-spacing:-0.950400pt;}
.ws1db{word-spacing:-0.946176pt;}
.ws4d{word-spacing:-0.944640pt;}
.ws1d0{word-spacing:-0.941952pt;}
.ws86{word-spacing:-0.939392pt;}
.ws253{word-spacing:-0.937728pt;}
.ws75{word-spacing:-0.934144pt;}
.ws1e2{word-spacing:-0.933504pt;}
.ws1cd{word-spacing:-0.929280pt;}
.wsb8{word-spacing:-0.928896pt;}
.ws221{word-spacing:-0.925056pt;}
.ws1ae{word-spacing:-0.923648pt;}
.ws1ef{word-spacing:-0.920832pt;}
.ws1b{word-spacing:-0.918400pt;}
.ws24c{word-spacing:-0.916608pt;}
.ws1a3{word-spacing:-0.913152pt;}
.ws1ea{word-spacing:-0.912384pt;}
.ws5f{word-spacing:-0.908160pt;}
.ws61{word-spacing:-0.907904pt;}
.ws206{word-spacing:-0.903936pt;}
.ws1a2{word-spacing:-0.902656pt;}
.ws1a8{word-spacing:-0.897408pt;}
.ws262{word-spacing:-0.895488pt;}
.ws7f{word-spacing:-0.892160pt;}
.ws1b2{word-spacing:-0.886912pt;}
.ws5e{word-spacing:-0.882816pt;}
.ws1a4{word-spacing:-0.881664pt;}
.ws22a{word-spacing:-0.870144pt;}
.ws1a7{word-spacing:-0.865920pt;}
.ws4{word-spacing:-0.853248pt;}
.ws1b1{word-spacing:-0.850176pt;}
.ws269{word-spacing:-0.849024pt;}
.ws26{word-spacing:-0.829184pt;}
.wsba{word-spacing:-0.818688pt;}
.ws26a{word-spacing:-0.806784pt;}
.ws4e{word-spacing:-0.776704pt;}
.ws165{word-spacing:-0.771456pt;}
.ws69{word-spacing:-0.766208pt;}
.ws103{word-spacing:-0.377856pt;}
.ws246{word-spacing:-0.080256pt;}
.ws8{word-spacing:-0.070400pt;}
.ws24a{word-spacing:-0.067584pt;}
.wsbe{word-spacing:-0.047232pt;}
.ws10e{word-spacing:-0.005248pt;}
.ws6{word-spacing:0.000000pt;}
.ws90{word-spacing:0.005248pt;}
.ws1bc{word-spacing:0.026240pt;}
.ws1d{word-spacing:0.031488pt;}
.ws1b0{word-spacing:0.047232pt;}
.ws142{word-spacing:0.057728pt;}
.wsf6{word-spacing:0.071040pt;}
.wsc{word-spacing:0.076800pt;}
.ws15c{word-spacing:0.085248pt;}
.ws62{word-spacing:0.094464pt;}
.wsd{word-spacing:0.096000pt;}
.ws1a9{word-spacing:0.104960pt;}
.ws96{word-spacing:0.110208pt;}
.ws196{word-spacing:0.272896pt;}
.ws1f1{word-spacing:0.274688pt;}
.wsf2{word-spacing:0.279424pt;}
.ws14{word-spacing:0.284160pt;}
.ws124{word-spacing:0.288640pt;}
.ws27{word-spacing:0.299136pt;}
.wsb0{word-spacing:0.304384pt;}
.ws16{word-spacing:0.307840pt;}
.ws17e{word-spacing:0.309632pt;}
.wsc6{word-spacing:0.320128pt;}
.ws222{word-spacing:0.325248pt;}
.ws78{word-spacing:0.325376pt;}
.ws2e{word-spacing:0.330624pt;}
.ws65{word-spacing:0.335872pt;}
.ws211{word-spacing:0.337920pt;}
.wsce{word-spacing:0.341120pt;}
.ws213{word-spacing:0.342144pt;}
.ws106{word-spacing:0.346368pt;}
.ws49{word-spacing:0.351616pt;}
.ws261{word-spacing:0.354816pt;}
.ws7c{word-spacing:0.356864pt;}
.ws92{word-spacing:0.362112pt;}
.ws7b{word-spacing:0.367360pt;}
.ws8f{word-spacing:0.372608pt;}
.ws3b{word-spacing:0.375936pt;}
.ws53{word-spacing:0.377856pt;}
.wsbd{word-spacing:0.383104pt;}
.ws1f0{word-spacing:0.383616pt;}
.wsbf{word-spacing:0.388352pt;}
.ws21a{word-spacing:0.392832pt;}
.ws23f{word-spacing:0.401280pt;}
.ws264{word-spacing:0.405504pt;}
.ws1cc{word-spacing:0.409728pt;}
.ws224{word-spacing:0.413952pt;}
.wse8{word-spacing:0.425088pt;}
.ws189{word-spacing:0.461824pt;}
.wsf{word-spacing:0.652800pt;}
.ws9{word-spacing:0.667392pt;}
.wse{word-spacing:0.691200pt;}
.wsb{word-spacing:0.704000pt;}
.ws1dc{word-spacing:0.760320pt;}
.ws133{word-spacing:0.860672pt;}
.ws188{word-spacing:0.902656pt;}
.wsa{word-spacing:0.929280pt;}
.ws202{word-spacing:0.950400pt;}
.ws1eb{word-spacing:0.971520pt;}
.ws3d{word-spacing:1.170048pt;}
.ws212{word-spacing:1.174272pt;}
.ws258{word-spacing:1.182720pt;}
.ws1ec{word-spacing:1.191168pt;}
.ws1da{word-spacing:1.203840pt;}
.ws228{word-spacing:1.208064pt;}
.ws105{word-spacing:1.212288pt;}
.wsd2{word-spacing:1.228032pt;}
.ws29{word-spacing:1.301504pt;}
.ws77{word-spacing:1.306752pt;}
.wsc8{word-spacing:1.338240pt;}
.ws14f{word-spacing:1.348736pt;}
.wsc7{word-spacing:1.374976pt;}
.ws19{word-spacing:1.558144pt;}
.ws17{word-spacing:1.572352pt;}
.ws185{word-spacing:1.579648pt;}
.ws101{word-spacing:1.584896pt;}
.ws120{word-spacing:1.590144pt;}
.ws10b{word-spacing:1.595392pt;}
.wsa6{word-spacing:1.600640pt;}
.wsc4{word-spacing:1.605888pt;}
.ws13e{word-spacing:1.611136pt;}
.ws3f{word-spacing:1.616384pt;}
.ws1df{word-spacing:1.617792pt;}
.ws23{word-spacing:1.621632pt;}
.ws21f{word-spacing:1.626240pt;}
.wscf{word-spacing:1.626880pt;}
.ws73{word-spacing:1.632128pt;}
.ws33{word-spacing:1.637376pt;}
.ws1d1{word-spacing:1.638912pt;}
.wsa0{word-spacing:1.642624pt;}
.ws22e{word-spacing:1.647360pt;}
.wsda{word-spacing:1.647872pt;}
.ws2f{word-spacing:1.653120pt;}
.ws1e1{word-spacing:1.655808pt;}
.ws1b7{word-spacing:1.663616pt;}
.ws234{word-spacing:1.664256pt;}
.ws12e{word-spacing:1.668864pt;}
.ws23b{word-spacing:1.672704pt;}
.ws18e{word-spacing:1.674112pt;}
.ws15f{word-spacing:1.679360pt;}
.ws265{word-spacing:1.685376pt;}
.ws214{word-spacing:1.689600pt;}
.ws266{word-spacing:1.693824pt;}
.ws220{word-spacing:1.706496pt;}
.ws217{word-spacing:1.714944pt;}
.ws1de{word-spacing:1.748736pt;}
.ws260{word-spacing:2.035968pt;}
.ws254{word-spacing:2.073984pt;}
.ws1e0{word-spacing:2.454144pt;}
.ws267{word-spacing:2.458368pt;}
.ws219{word-spacing:2.466816pt;}
.ws71{word-spacing:2.492800pt;}
.ws22{word-spacing:2.555776pt;}
.ws1b9{word-spacing:2.592512pt;}
.ws173{word-spacing:2.597760pt;}
.ws1c7{word-spacing:2.618752pt;}
.ws138{word-spacing:2.634496pt;}
.ws1b4{word-spacing:2.639744pt;}
.wscd{word-spacing:2.655488pt;}
.wscc{word-spacing:2.681728pt;}
.ws184{word-spacing:2.739456pt;}
.ws15{word-spacing:2.832128pt;}
.ws12{word-spacing:2.836864pt;}
.ws114{word-spacing:2.844416pt;}
.ws31{word-spacing:2.854912pt;}
.ws13{word-spacing:2.855808pt;}
.ws7e{word-spacing:2.865408pt;}
.ws57{word-spacing:2.875904pt;}
.ws118{word-spacing:2.881152pt;}
.ws66{word-spacing:2.886400pt;}
.ws6d{word-spacing:2.891648pt;}
.ws58{word-spacing:2.896896pt;}
.ws68{word-spacing:2.902144pt;}
.ws3c{word-spacing:2.906112pt;}
.ws6c{word-spacing:2.907392pt;}
.ws5a{word-spacing:2.912640pt;}
.ws233{word-spacing:2.914560pt;}
.ws60{word-spacing:2.917888pt;}
.ws81{word-spacing:2.923136pt;}
.ws72{word-spacing:2.928384pt;}
.ws147{word-spacing:2.944128pt;}
.ws18f{word-spacing:2.949376pt;}
.ws12d{word-spacing:2.954624pt;}
.ws163{word-spacing:2.959872pt;}
.ws223{word-spacing:2.961024pt;}
.ws123{word-spacing:2.975616pt;}
.ws23d{word-spacing:2.986368pt;}
.ws232{word-spacing:2.994816pt;}
.ws23c{word-spacing:2.999040pt;}
.ws1e8{word-spacing:3.248256pt;}
.ws259{word-spacing:3.303168pt;}
.ws21d{word-spacing:3.320064pt;}
.ws140{word-spacing:3.463680pt;}
.ws22c{word-spacing:3.729792pt;}
.ws257{word-spacing:3.742464pt;}
.ws216{word-spacing:3.755136pt;}
.ws22d{word-spacing:3.759360pt;}
.ws119{word-spacing:3.773312pt;}
.ws1c6{word-spacing:3.831040pt;}
.wsc3{word-spacing:3.836288pt;}
.ws98{word-spacing:3.841536pt;}
.ws109{word-spacing:3.857280pt;}
.ws70{word-spacing:3.873024pt;}
.wse0{word-spacing:3.894016pt;}
.ws10d{word-spacing:3.899264pt;}
.ws14b{word-spacing:3.915008pt;}
.ws18d{word-spacing:3.920256pt;}
.ws13f{word-spacing:3.925504pt;}
.ws1a1{word-spacing:3.936000pt;}
.ws1f4{word-spacing:4.096640pt;}
.wsf3{word-spacing:4.129792pt;}
.ws121{word-spacing:4.135424pt;}
.wsc1{word-spacing:4.145920pt;}
.wscb{word-spacing:4.151168pt;}
.wse6{word-spacing:4.156416pt;}
.wsa2{word-spacing:4.161664pt;}
.ws64{word-spacing:4.166912pt;}
.ws51{word-spacing:4.172160pt;}
.ws1e{word-spacing:4.177408pt;}
.ws160{word-spacing:4.182656pt;}
.ws4f{word-spacing:4.187904pt;}
.ws218{word-spacing:4.190208pt;}
.ws1ba{word-spacing:4.193152pt;}
.wsb6{word-spacing:4.198400pt;}
.ws1d2{word-spacing:4.198656pt;}
.ws88{word-spacing:4.203648pt;}
.ws145{word-spacing:4.214144pt;}
.ws14e{word-spacing:4.219392pt;}
.ws207{word-spacing:4.224000pt;}
.ws79{word-spacing:4.229888pt;}
.ws1d3{word-spacing:4.232448pt;}
.ws17d{word-spacing:4.235136pt;}
.ws251{word-spacing:4.236672pt;}
.ws231{word-spacing:4.240896pt;}
.ws208{word-spacing:4.249344pt;}
.ws1f{word-spacing:4.256128pt;}
.ws21{word-spacing:4.277120pt;}
.ws263{word-spacing:4.637952pt;}
.ws240{word-spacing:4.752000pt;}
.ws1ed{word-spacing:4.790016pt;}
.ws209{word-spacing:4.798464pt;}
.ws241{word-spacing:5.013888pt;}
.ws200{word-spacing:5.018112pt;}
.ws25d{word-spacing:5.022336pt;}
.ws1d6{word-spacing:5.026560pt;}
.ws24b{word-spacing:5.030784pt;}
.ws6b{word-spacing:5.053824pt;}
.ws44{word-spacing:5.090560pt;}
.ws122{word-spacing:5.101056pt;}
.ws17f{word-spacing:5.122048pt;}
.ws1c1{word-spacing:5.127296pt;}
.ws198{word-spacing:5.132544pt;}
.ws177{word-spacing:5.137792pt;}
.ws100{word-spacing:5.143040pt;}
.ws11a{word-spacing:5.153536pt;}
.wsb4{word-spacing:5.158784pt;}
.ws1ad{word-spacing:5.164032pt;}
.ws48{word-spacing:5.179776pt;}
.ws11f{word-spacing:5.195520pt;}
.ws1c2{word-spacing:5.211264pt;}
.ws1a6{word-spacing:5.216512pt;}
.ws18{word-spacing:5.375360pt;}
.ws1f2{word-spacing:5.408512pt;}
.wsb7{word-spacing:5.415936pt;}
.ws1f5{word-spacing:5.427456pt;}
.ws244{word-spacing:5.436288pt;}
.wsa9{word-spacing:5.436928pt;}
.ws9f{word-spacing:5.442176pt;}
.ws8b{word-spacing:5.447424pt;}
.ws42{word-spacing:5.452672pt;}
.ws1fd{word-spacing:5.453184pt;}
.wsd4{word-spacing:5.457920pt;}
.ws35{word-spacing:5.463168pt;}
.ws252{word-spacing:5.465856pt;}
.ws95{word-spacing:5.468416pt;}
.ws6e{word-spacing:5.473664pt;}
.ws9e{word-spacing:5.478912pt;}
.ws1fb{word-spacing:5.482752pt;}
.wsc9{word-spacing:5.484160pt;}
.ws24{word-spacing:5.489408pt;}
.ws1d8{word-spacing:5.499648pt;}
.ws1dd{word-spacing:5.503872pt;}
.ws39{word-spacing:5.505152pt;}
.ws25b{word-spacing:5.508096pt;}
.ws1e9{word-spacing:5.520768pt;}
.ws12f{word-spacing:5.520896pt;}
.ws1fe{word-spacing:5.529216pt;}
.wsec{word-spacing:5.536640pt;}
.ws242{word-spacing:5.541888pt;}
.ws1ce{word-spacing:5.554560pt;}
.ws21c{word-spacing:5.563008pt;}
.ws20b{word-spacing:5.867136pt;}
.ws243{word-spacing:5.875584pt;}
.ws1d4{word-spacing:6.293760pt;}
.ws1ee{word-spacing:6.297984pt;}
.ws1d7{word-spacing:6.306432pt;}
.ws1d9{word-spacing:6.319104pt;}
.ws8d{word-spacing:6.329088pt;}
.ws18c{word-spacing:6.402560pt;}
.ws162{word-spacing:6.428800pt;}
.wse9{word-spacing:6.444544pt;}
.ws76{word-spacing:6.460288pt;}
.ws169{word-spacing:6.465536pt;}
.ws13a{word-spacing:6.470784pt;}
.wsa1{word-spacing:6.476032pt;}
.wseb{word-spacing:6.481280pt;}
.wsef{word-spacing:6.483584pt;}
.ws1f3{word-spacing:6.497792pt;}
.ws15b{word-spacing:6.663552pt;}
.wsf0{word-spacing:6.668288pt;}
.wsa4{word-spacing:6.691200pt;}
.ws85{word-spacing:6.696448pt;}
.ws38{word-spacing:6.706944pt;}
.ws67{word-spacing:6.712192pt;}
.ws54{word-spacing:6.717440pt;}
.ws13c{word-spacing:6.722688pt;}
.ws55{word-spacing:6.727936pt;}
.ws6f{word-spacing:6.733184pt;}
.wsaf{word-spacing:6.738432pt;}
.ws25a{word-spacing:6.741504pt;}
.wsdf{word-spacing:6.743680pt;}
.ws8e{word-spacing:6.748928pt;}
.wsa8{word-spacing:6.759424pt;}
.ws24f{word-spacing:6.762624pt;}
.ws166{word-spacing:6.764672pt;}
.ws13d{word-spacing:6.769920pt;}
.ws1e5{word-spacing:6.771072pt;}
.ws172{word-spacing:6.775168pt;}
.ws1ab{word-spacing:6.780416pt;}
.ws1b8{word-spacing:6.785664pt;}
.ws21e{word-spacing:6.787968pt;}
.ws1a5{word-spacing:6.790912pt;}
.ws22f{word-spacing:6.804864pt;}
.ws1e6{word-spacing:6.817536pt;}
.ws268{word-spacing:6.838656pt;}
.ws24e{word-spacing:6.855552pt;}
.ws226{word-spacing:7.155456pt;}
.ws250{word-spacing:7.218816pt;}
.ws227{word-spacing:7.307520pt;}
.ws23e{word-spacing:7.315968pt;}
.ws1d5{word-spacing:7.341312pt;}
.ws1e4{word-spacing:7.569408pt;}
.ws215{word-spacing:7.573632pt;}
.ws225{word-spacing:7.586304pt;}
.wsde{word-spacing:7.609600pt;}
.ws43{word-spacing:7.614848pt;}
.ws47{word-spacing:7.656832pt;}
.ws195{word-spacing:7.662080pt;}
.ws12c{word-spacing:7.677824pt;}
.ws8c{word-spacing:7.688320pt;}
.ws10a{word-spacing:7.709312pt;}
.wsf1{word-spacing:7.771776pt;}
.ws128{word-spacing:7.950720pt;}
.ws136{word-spacing:7.955968pt;}
.ws14a{word-spacing:7.987456pt;}
.wse7{word-spacing:7.992704pt;}
.wsfd{word-spacing:7.997952pt;}
.ws4c{word-spacing:8.003200pt;}
.ws144{word-spacing:8.013696pt;}
.ws25f{word-spacing:8.021376pt;}
.ws3e{word-spacing:8.024192pt;}
.ws40{word-spacing:8.029440pt;}
.wse3{word-spacing:8.034688pt;}
.wsdd{word-spacing:8.039936pt;}
.wsc0{word-spacing:8.045184pt;}
.ws10c{word-spacing:8.050432pt;}
.ws24d{word-spacing:8.055168pt;}
.ws10f{word-spacing:8.060928pt;}
.ws25e{word-spacing:8.063616pt;}
.ws1fc{word-spacing:8.076288pt;}
.ws1ff{word-spacing:8.093184pt;}
.ws204{word-spacing:8.101632pt;}
.ws1c{word-spacing:8.113408pt;}
.ws1e7{word-spacing:8.122752pt;}
.ws16d{word-spacing:8.832384pt;}
.ws201{word-spacing:8.853504pt;}
.ws247{word-spacing:8.866176pt;}
.ws245{word-spacing:8.870400pt;}
.ws11c{word-spacing:8.890112pt;}
.wsc5{word-spacing:8.900608pt;}
.ws15e{word-spacing:8.953088pt;}
.ws1c9{word-spacing:8.984576pt;}
.ws135{word-spacing:9.016064pt;}
.ws16e{word-spacing:9.021312pt;}
.ws1aa{word-spacing:9.026560pt;}
.ws139{word-spacing:9.252224pt;}
.ws157{word-spacing:9.258880pt;}
.ws146{word-spacing:9.262720pt;}
.ws112{word-spacing:9.267968pt;}
.ws183{word-spacing:9.273216pt;}
.ws32{word-spacing:9.278464pt;}
.wsdb{word-spacing:9.283712pt;}
.ws130{word-spacing:9.288960pt;}
.ws167{word-spacing:9.294208pt;}
.ws84{word-spacing:9.299456pt;}
.ws16f{word-spacing:9.304704pt;}
.ws2d{word-spacing:9.309952pt;}
.ws37{word-spacing:9.315200pt;}
.ws1bb{word-spacing:9.320448pt;}
.wsa7{word-spacing:9.325696pt;}
.ws203{word-spacing:9.326592pt;}
.ws14c{word-spacing:9.330944pt;}
.ws21b{word-spacing:9.335040pt;}
.ws20{word-spacing:9.341440pt;}
.ws156{word-spacing:9.344128pt;}
.wse4{word-spacing:9.357184pt;}
.ws19f{word-spacing:9.362432pt;}
.ws14d{word-spacing:9.372928pt;}
.ws205{word-spacing:10.133376pt;}
.wsd9{word-spacing:10.186368pt;}
.ws141{word-spacing:10.217856pt;}
.ws1a0{word-spacing:10.223104pt;}
.ws126{word-spacing:10.233600pt;}
.ws1b6{word-spacing:10.249344pt;}
.ws11d{word-spacing:10.270336pt;}
.ws134{word-spacing:10.333312pt;}
.wsee{word-spacing:10.499712pt;}
.ws45{word-spacing:10.543232pt;}
.ws1c8{word-spacing:10.548480pt;}
.ws9a{word-spacing:10.558976pt;}
.ws4a{word-spacing:10.564224pt;}
.ws16b{word-spacing:10.569472pt;}
.ws158{word-spacing:10.570752pt;}
.ws2c{word-spacing:10.574720pt;}
.ws102{word-spacing:10.579968pt;}
.ws178{word-spacing:10.585216pt;}
.ws25{word-spacing:10.590464pt;}
.ws8a{word-spacing:10.595712pt;}
.ws137{word-spacing:10.600960pt;}
.ws125{word-spacing:10.606208pt;}
.ws20d{word-spacing:10.610688pt;}
.ws197{word-spacing:10.616704pt;}
.ws127{word-spacing:10.621952pt;}
.wsed{word-spacing:10.622848pt;}
.ws74{word-spacing:10.627200pt;}
.ws25c{word-spacing:10.631808pt;}
.ws1ca{word-spacing:10.637696pt;}
.ws186{word-spacing:10.642944pt;}
.ws1e3{word-spacing:10.644480pt;}
.ws111{word-spacing:11.451136pt;}
.ws110{word-spacing:11.503616pt;}
.ws5b{word-spacing:11.519360pt;}
.ws1b3{word-spacing:11.524608pt;}
.wsd8{word-spacing:11.529856pt;}
.ws16a{word-spacing:11.545600pt;}
.wsac{word-spacing:11.577088pt;}
.ws159{word-spacing:11.636352pt;}
.ws15a{word-spacing:11.802112pt;}
.wsd0{word-spacing:11.813248pt;}
.ws176{word-spacing:11.828992pt;}
.ws82{word-spacing:11.839488pt;}
.ws59{word-spacing:11.844736pt;}
.ws56{word-spacing:11.855232pt;}
.ws1ac{word-spacing:11.865728pt;}
.wse1{word-spacing:11.870976pt;}
.ws113{word-spacing:11.876224pt;}
.ws210{word-spacing:11.886336pt;}
.ws107{word-spacing:11.886720pt;}
.ws18a{word-spacing:11.891968pt;}
.ws2a{word-spacing:11.902464pt;}
.ws171{word-spacing:11.928704pt;}
.ws230{word-spacing:11.932800pt;}
.ws115{word-spacing:11.933952pt;}
.ws170{word-spacing:11.944448pt;}
.ws20e{word-spacing:11.970816pt;}
.ws164{word-spacing:12.080896pt;}
.ws20f{word-spacing:12.279168pt;}
.ws11b{word-spacing:12.338048pt;}
.ws46{word-spacing:12.422016pt;}
.ws248{word-spacing:12.705792pt;}
.ws117{word-spacing:12.794624pt;}
.ws17b{word-spacing:12.815616pt;}
.ws116{word-spacing:12.826112pt;}
.ws13b{word-spacing:12.831360pt;}
.ws34{word-spacing:12.847104pt;}
.ws1c0{word-spacing:12.857600pt;}
.wsae{word-spacing:12.862848pt;}
.ws16c{word-spacing:12.894336pt;}
.ws63{word-spacing:12.910080pt;}
.ws161{word-spacing:12.925824pt;}
.wsff{word-spacing:13.051776pt;}
.wsad{word-spacing:13.062272pt;}
.ws28{word-spacing:13.104256pt;}
.ws17c{word-spacing:13.114752pt;}
.ws50{word-spacing:13.120000pt;}
.wsea{word-spacing:13.125248pt;}
.wsca{word-spacing:13.135744pt;}
.ws19d{word-spacing:13.140992pt;}
.ws256{word-spacing:13.145088pt;}
.ws89{word-spacing:13.151488pt;}
.wsfe{word-spacing:13.156736pt;}
.ws131{word-spacing:13.161984pt;}
.ws2b{word-spacing:13.167232pt;}
.ws1bf{word-spacing:13.182976pt;}
.ws255{word-spacing:13.977216pt;}
.ws11e{word-spacing:14.043648pt;}
.wsb5{word-spacing:14.064640pt;}
.ws83{word-spacing:14.138112pt;}
.wsf4{word-spacing:14.373760pt;}
.wsd1{word-spacing:14.374272pt;}
.ws41{word-spacing:14.395264pt;}
.ws132{word-spacing:14.400512pt;}
.ws52{word-spacing:14.405760pt;}
.ws7d{word-spacing:14.426752pt;}
.ws1c5{word-spacing:14.432000pt;}
.ws239{word-spacing:14.454528pt;}
.ws19b{word-spacing:14.463488pt;}
.ws238{word-spacing:14.475648pt;}
.ws229{word-spacing:14.479872pt;}
.wsbb{word-spacing:14.983040pt;}
.ws23a{word-spacing:15.282432pt;}
.ws174{word-spacing:15.292672pt;}
.ws19c{word-spacing:15.408128pt;}
.ws4b{word-spacing:15.418624pt;}
.ws149{word-spacing:15.644288pt;}
.ws235{word-spacing:15.679488pt;}
.ws19a{word-spacing:15.702016pt;}
.ws1be{word-spacing:15.707264pt;}
.wse2{word-spacing:15.717760pt;}
.ws237{word-spacing:15.725952pt;}
.ws175{word-spacing:15.754496pt;}
.wsdc{word-spacing:15.759744pt;}
.ws1cf{word-spacing:15.785088pt;}
.ws249{word-spacing:15.797760pt;}
.wsb9{word-spacing:15.869952pt;}
.ws236{word-spacing:16.536960pt;}
.wsbc{word-spacing:16.646656pt;}
.ws191{word-spacing:16.741120pt;}
.ws148{word-spacing:16.924800pt;}
.ws30{word-spacing:16.966784pt;}
.ws36{word-spacing:16.977280pt;}
.ws17a{word-spacing:16.982528pt;}
.wsb1{word-spacing:16.987776pt;}
.ws3a{word-spacing:16.993024pt;}
.ws168{word-spacing:17.008768pt;}
.ws1cb{word-spacing:17.040256pt;}
.ws9d{word-spacing:17.045504pt;}
.ws9c{word-spacing:17.082240pt;}
.wsb2{word-spacing:17.544064pt;}
.ws19e{word-spacing:18.273536pt;}
.ws1b5{word-spacing:19.522560pt;}
.wsa3{word-spacing:19.527808pt;}
.ws190{word-spacing:19.559296pt;}
.ws199{word-spacing:19.564544pt;}
.wsd6{word-spacing:20.771584pt;}
.ws94{word-spacing:20.787328pt;}
.wsc2{word-spacing:20.860800pt;}
.wsd5{word-spacing:21.380352pt;}
.wsd7{word-spacing:21.773952pt;}
.ws93{word-spacing:22.046848pt;}
.ws108{word-spacing:22.073088pt;}
.ws150{word-spacing:22.078336pt;}
.ws1c3{word-spacing:22.083584pt;}
.ws18b{word-spacing:22.115072pt;}
.wse5{word-spacing:22.597888pt;}
.ws192{word-spacing:23.028224pt;}
.ws151{word-spacing:23.127936pt;}
.ws129{word-spacing:23.358848pt;}
.ws12a{word-spacing:23.390336pt;}
.ws12b{word-spacing:24.497664pt;}
.ws182{word-spacing:24.670848pt;}
.ws179{word-spacing:24.676096pt;}
.ws181{word-spacing:24.697088pt;}
.ws180{word-spacing:25.542016pt;}
.ws20c{word-spacing:25.952256pt;}
.ws143{word-spacing:27.006208pt;}
.ws7a{word-spacing:28.475648pt;}
.wsab{word-spacing:29.798144pt;}
.wsaa{word-spacing:61.564288pt;}
.ws1af{word-spacing:61.763712pt;}
.wsb3{word-spacing:61.805696pt;}
.ws87{word-spacing:61.821440pt;}
.ws1bd{word-spacing:61.847680pt;}
.ws104{word-spacing:61.900160pt;}
.wsa5{word-spacing:61.936896pt;}
.ws80{word-spacing:62.089088pt;}
.ws97{word-spacing:62.146816pt;}
.ws6a{word-spacing:62.655872pt;}
.ws99{word-spacing:82.251904pt;}
.ws7{word-spacing:883.517184pt;}
._11{margin-left:-62.240512pt;}
._10{margin-left:-60.112768pt;}
._c{margin-left:-58.567040pt;}
._1f{margin-left:-53.615744pt;}
._16{margin-left:-52.555648pt;}
._12{margin-left:-32.135680pt;}
._1b{margin-left:-22.495360pt;}
._9{margin-left:-17.162880pt;}
._13{margin-left:-3.308544pt;}
._1{margin-left:-1.719168pt;}
._3{width:0.899712pt;}
._2{width:1.803648pt;}
._6{width:3.220736pt;}
._d{width:4.463360pt;}
._19{width:8.699008pt;}
._1d{width:11.229696pt;}
._1c{width:15.154048pt;}
._21{width:17.366528pt;}
._1a{width:22.167552pt;}
._f{width:44.796928pt;}
._b{width:49.918976pt;}
._20{width:51.199488pt;}
._7{width:53.760512pt;}
._18{width:55.041024pt;}
._e{width:56.316288pt;}
._15{width:57.596800pt;}
._1e{width:58.877312pt;}
._17{width:60.157824pt;}
._8{width:61.438336pt;}
._5{width:100.945152pt;}
._14{width:488.754816pt;}
._23{width:617.730432pt;}
._22{width:710.802048pt;}
._0{width:906.242304pt;}
._4{width:1057.279872pt;}
._a{width:1429.253760pt;}
.fs7{font-size:10.240000pt;}
.fs6{font-size:20.480000pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs5{font-size:47.360000pt;}
.fs4{font-size:52.480000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:84.480000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:57.760453pt;}
.y2ec{bottom:63.200133pt;}
.yeb{bottom:65.758117pt;}
.y17c{bottom:67.674720pt;}
.yf2{bottom:68.002373pt;}
.y220{bottom:69.915781pt;}
.y2{bottom:71.520133pt;}
.y169{bottom:72.798981pt;}
.y12e{bottom:74.080805pt;}
.y1b9{bottom:75.359104pt;}
.y92{bottom:75.361605pt;}
.y23a{bottom:75.681285pt;}
.y2eb{bottom:77.280261pt;}
.yea{bottom:80.478757pt;}
.y25a{bottom:81.126021pt;}
.ycd{bottom:82.084293pt;}
.y17b{bottom:82.395360pt;}
.yf1{bottom:82.721861pt;}
.y21f{bottom:84.636421pt;}
.y168{bottom:87.519621pt;}
.y239{bottom:87.521157pt;}
.y12d{bottom:88.787808pt;}
.y2ea{bottom:89.120133pt;}
.y1b8{bottom:90.079744pt;}
.y91{bottom:90.082245pt;}
.y259{bottom:92.965893pt;}
.y59{bottom:93.593733pt;}
.y1e6{bottom:93.926912pt;}
.ye9{bottom:95.199397pt;}
.ycc{bottom:96.804933pt;}
.yf0{bottom:97.441349pt;}
.y21e{bottom:99.357061pt;}
.y2e9{bottom:99.680133pt;}
.y238{bottom:99.680997pt;}
.y167{bottom:101.920133pt;}
.y36{bottom:102.240453pt;}
.y12c{bottom:103.508448pt;}
.y2e8{bottom:104.160133pt;}
.y1b7{bottom:104.800384pt;}
.y17a{bottom:105.115264pt;}
.y258{bottom:105.125733pt;}
.y58{bottom:108.314373pt;}
.y1e5{bottom:108.647552pt;}
.ye8{bottom:109.920037pt;}
.y237{bottom:111.520869pt;}
.y90{bottom:111.521637pt;}
.ycb{bottom:111.525573pt;}
.yef{bottom:112.160837pt;}
.y21d{bottom:114.077701pt;}
.y35{bottom:114.400293pt;}
.y166{bottom:116.640773pt;}
.y257{bottom:116.965605pt;}
.y12b{bottom:117.908960pt;}
.y179{bottom:119.515776pt;}
.y1b6{bottom:119.521024pt;}
.y57{bottom:122.714885pt;}
.y1e4{bottom:123.368192pt;}
.y236{bottom:123.680709pt;}
.y2e7{bottom:124.000133pt;}
.ye7{bottom:124.640677pt;}
.y8f{bottom:125.922149pt;}
.yca{bottom:125.926085pt;}
.y34{bottom:126.560133pt;}
.yee{bottom:126.560645pt;}
.y21c{bottom:128.798341pt;}
.y256{bottom:129.125445pt;}
.y165{bottom:131.361413pt;}
.y12a{bottom:132.629600pt;}
.y1b5{bottom:133.921536pt;}
.y235{bottom:135.520581pt;}
.y56{bottom:137.434213pt;}
.y33{bottom:137.760133pt;}
.ye6{bottom:139.041189pt;}
.y8e{bottom:140.641477pt;}
.yc9{bottom:140.646725pt;}
.y255{bottom:140.965317pt;}
.yed{bottom:141.280133pt;}
.y178{bottom:142.555808pt;}
.y21b{bottom:143.518981pt;}
.y1e3{bottom:144.807584pt;}
.y164{bottom:146.080741pt;}
.y129{bottom:147.350240pt;}
.y234{bottom:147.680421pt;}
.y1b4{bottom:148.642176pt;}
.y2e6{bottom:148.960133pt;}
.y55{bottom:152.153541pt;}
.y254{bottom:153.125157pt;}
.y32{bottom:153.433093pt;}
.ye5{bottom:153.761829pt;}
.y8d{bottom:155.360805pt;}
.yc8{bottom:155.367365pt;}
.y177{bottom:157.276448pt;}
.y21a{bottom:157.919493pt;}
.yec{bottom:159.520133pt;}
.y233{bottom:159.520293pt;}
.y1e2{bottom:159.528224pt;}
.y163{bottom:160.800069pt;}
.y128{bottom:162.070880pt;}
.y1b3{bottom:163.362816pt;}
.y2e5{bottom:164.640133pt;}
.y253{bottom:164.965029pt;}
.y54{bottom:166.872869pt;}
.y31{bottom:168.152421pt;}
.ye4{bottom:168.482469pt;}
.y8c{bottom:170.083264pt;}
.yc7{bottom:170.088005pt;}
.y176{bottom:171.676960pt;}
.y232{bottom:171.680133pt;}
.y219{bottom:172.640133pt;}
.y1e1{bottom:173.928736pt;}
.y162{bottom:175.520709pt;}
.y127{bottom:176.791520pt;}
.y252{bottom:177.124869pt;}
.y1b2{bottom:178.083456pt;}
.y2a2{bottom:178.722720pt;}
.y53{bottom:181.592197pt;}
.y30{bottom:182.871749pt;}
.ye3{bottom:183.203109pt;}
.yc6{bottom:184.808645pt;}
.y175{bottom:186.397600pt;}
.y218{bottom:187.363616pt;}
.y1e0{bottom:188.649376pt;}
.y251{bottom:188.964741pt;}
.y161{bottom:189.921221pt;}
.y2a1{bottom:190.562592pt;}
.y2e4{bottom:190.564896pt;}
.y126{bottom:191.512160pt;}
.y8b{bottom:191.522656pt;}
.y231{bottom:192.152357pt;}
.y1b1{bottom:192.804096pt;}
.y52{bottom:196.311525pt;}
.y2f{bottom:197.591077pt;}
.ye2{bottom:197.922437pt;}
.yc5{bottom:199.529285pt;}
.y174{bottom:201.118240pt;}
.y250{bottom:201.124581pt;}
.y217{bottom:202.084256pt;}
.y2a0{bottom:202.722432pt;}
.y2e3{bottom:202.724736pt;}
.y160{bottom:204.641861pt;}
.y125{bottom:205.912672pt;}
.y8a{bottom:205.923168pt;}
.y1b0{bottom:207.524736pt;}
.y1df{bottom:210.088768pt;}
.y51{bottom:210.712037pt;}
.y2e{bottom:212.310405pt;}
.y24f{bottom:212.964453pt;}
.yc4{bottom:213.929797pt;}
.y29f{bottom:214.562304pt;}
.y2e2{bottom:214.564608pt;}
.y230{bottom:215.192389pt;}
.y173{bottom:215.838880pt;}
.y216{bottom:216.804896pt;}
.y15f{bottom:219.362501pt;}
.y124{bottom:220.633312pt;}
.ye1{bottom:220.642341pt;}
.y89{bottom:220.643808pt;}
.y1af{bottom:221.925248pt;}
.y1de{bottom:224.809408pt;}
.y24e{bottom:225.124293pt;}
.y50{bottom:225.432677pt;}
.y2d{bottom:226.710917pt;}
.y29e{bottom:226.722144pt;}
.y2e1{bottom:226.724448pt;}
.yc3{bottom:228.650437pt;}
.y22f{bottom:229.592901pt;}
.y172{bottom:230.559520pt;}
.y215{bottom:231.525536pt;}
.y15e{bottom:234.083141pt;}
.ye0{bottom:235.042853pt;}
.y123{bottom:235.353952pt;}
.y88{bottom:235.364448pt;}
.y24d{bottom:236.964165pt;}
.y29d{bottom:238.562016pt;}
.y2e0{bottom:238.564320pt;}
.y4f{bottom:240.153317pt;}
.y2c{bottom:241.431557pt;}
.y1ae{bottom:243.365952pt;}
.yc2{bottom:243.371077pt;}
.y22e{bottom:244.313541pt;}
.y171{bottom:245.280160pt;}
.y214{bottom:245.926048pt;}
.y1dd{bottom:245.928672pt;}
.y15d{bottom:248.803781pt;}
.y24c{bottom:249.124005pt;}
.y122{bottom:250.074592pt;}
.y87{bottom:250.085088pt;}
.y29c{bottom:250.721856pt;}
.y2df{bottom:250.724160pt;}
.y4e{bottom:254.873957pt;}
.y2b{bottom:256.152197pt;}
.ydf{bottom:257.762757pt;}
.y1ad{bottom:258.086592pt;}
.yc1{bottom:258.091717pt;}
.y22d{bottom:259.034181pt;}
.y170{bottom:259.680672pt;}
.y213{bottom:260.645376pt;}
.y1dc{bottom:260.649312pt;}
.y24b{bottom:260.963877pt;}
.y29b{bottom:262.561728pt;}
.y2de{bottom:262.564032pt;}
.y15c{bottom:263.524421pt;}
.y121{bottom:264.795232pt;}
.y86{bottom:264.805728pt;}
.y4d{bottom:269.594597pt;}
.y2a{bottom:270.872837pt;}
.yde{bottom:272.483397pt;}
.y1ac{bottom:272.807232pt;}
.yc0{bottom:272.812357pt;}
.y24a{bottom:273.123717pt;}
.y16f{bottom:274.400000pt;}
.y29a{bottom:274.721568pt;}
.y2dd{bottom:274.723872pt;}
.y212{bottom:275.364704pt;}
.y1db{bottom:275.369952pt;}
.y15b{bottom:277.924933pt;}
.y120{bottom:279.515872pt;}
.y85{bottom:279.526368pt;}
.y22c{bottom:281.433957pt;}
.y4c{bottom:284.315237pt;}
.y249{bottom:284.963589pt;}
.y29{bottom:285.593477pt;}
.y299{bottom:286.561440pt;}
.y2dc{bottom:286.563744pt;}
.ydd{bottom:287.204037pt;}
.y1ab{bottom:287.527872pt;}
.ybf{bottom:287.532997pt;}
.y211{bottom:290.084032pt;}
.y15a{bottom:292.645573pt;}
.y11f{bottom:293.916384pt;}
.y16e{bottom:295.841349pt;}
.y1da{bottom:296.809344pt;}
.y248{bottom:297.123429pt;}
.y4b{bottom:298.715749pt;}
.y298{bottom:298.721280pt;}
.y2db{bottom:298.723584pt;}
.y28{bottom:300.314117pt;}
.ydc{bottom:301.924677pt;}
.y84{bottom:301.926144pt;}
.y1aa{bottom:301.928384pt;}
.ybe{bottom:301.933509pt;}
.y22b{bottom:304.473989pt;}
.y210{bottom:304.803360pt;}
.y159{bottom:307.366213pt;}
.y247{bottom:308.963301pt;}
.y16d{bottom:310.560837pt;}
.y297{bottom:310.561152pt;}
.y2da{bottom:310.563456pt;}
.y1d9{bottom:311.528672pt;}
.y4a{bottom:313.435077pt;}
.y27{bottom:314.714629pt;}
.y11e{bottom:316.636288pt;}
.ydb{bottom:316.645317pt;}
.y1a9{bottom:316.649024pt;}
.ybd{bottom:316.652837pt;}
.y22a{bottom:319.194629pt;}
.y20f{bottom:319.522688pt;}
.y246{bottom:321.123141pt;}
.y158{bottom:322.086853pt;}
.y296{bottom:322.720992pt;}
.y2d9{bottom:322.723296pt;}
.y83{bottom:324.646048pt;}
.y16c{bottom:325.280325pt;}
.y49{bottom:328.154405pt;}
.y26{bottom:329.435269pt;}
.y11d{bottom:331.036800pt;}
.yda{bottom:331.045829pt;}
.y1a8{bottom:331.368352pt;}
.ybc{bottom:331.372165pt;}
.y1d8{bottom:332.649248pt;}
.y245{bottom:332.963013pt;}
.y229{bottom:333.595141pt;}
.y20e{bottom:333.923200pt;}
.y295{bottom:334.560864pt;}
.y2d8{bottom:334.563168pt;}
.y157{bottom:336.806181pt;}
.y82{bottom:339.366688pt;}
.y16b{bottom:339.680133pt;}
.y48{bottom:342.873733pt;}
.y25{bottom:344.155909pt;}
.y244{bottom:345.122853pt;}
.yd9{bottom:345.765157pt;}
.y1a7{bottom:346.087680pt;}
.ybb{bottom:346.091493pt;}
.y294{bottom:346.720704pt;}
.y2d7{bottom:346.723008pt;}
.y1d7{bottom:347.369888pt;}
.y228{bottom:348.315781pt;}
.y20d{bottom:348.643840pt;}
.y156{bottom:351.525509pt;}
.y11c{bottom:354.076832pt;}
.y81{bottom:354.087328pt;}
.y243{bottom:356.962725pt;}
.y16a{bottom:358.240133pt;}
.y293{bottom:358.560576pt;}
.y2d6{bottom:358.562880pt;}
.y24{bottom:358.876549pt;}
.yd8{bottom:360.484485pt;}
.y1a6{bottom:360.807008pt;}
.yba{bottom:360.810821pt;}
.y1d6{bottom:362.090528pt;}
.y227{bottom:363.036421pt;}
.y20c{bottom:363.364480pt;}
.y47{bottom:365.273509pt;}
.y11b{bottom:368.796160pt;}
.y80{bottom:368.806656pt;}
.y242{bottom:369.122565pt;}
.y292{bottom:370.720416pt;}
.y2d5{bottom:370.722720pt;}
.y23{bottom:373.597189pt;}
.y155{bottom:373.925285pt;}
.yd7{bottom:375.203813pt;}
.y1a5{bottom:375.526336pt;}
.yb9{bottom:375.530149pt;}
.y226{bottom:377.757061pt;}
.y241{bottom:380.962437pt;}
.y291{bottom:382.560288pt;}
.y2d4{bottom:382.562592pt;}
.y11a{bottom:383.515488pt;}
.y7f{bottom:383.525984pt;}
.y1d5{bottom:383.529920pt;}
.y20b{bottom:384.803872pt;}
.y46{bottom:388.313541pt;}
.y22{bottom:388.317829pt;}
.y154{bottom:388.325797pt;}
.yd6{bottom:389.923141pt;}
.y1a4{bottom:389.926848pt;}
.yb8{bottom:389.930661pt;}
.y225{bottom:392.477701pt;}
.y240{bottom:393.122277pt;}
.y290{bottom:394.720128pt;}
.y2d3{bottom:394.722432pt;}
.y119{bottom:397.916000pt;}
.y7e{bottom:397.926496pt;}
.y1d4{bottom:397.930432pt;}
.y20a{bottom:399.524512pt;}
.y45{bottom:402.712741pt;}
.y21{bottom:402.717029pt;}
.yd5{bottom:404.642469pt;}
.y1a3{bottom:404.646176pt;}
.yb7{bottom:404.649989pt;}
.y23f{bottom:404.962149pt;}
.y28f{bottom:406.560000pt;}
.y2d2{bottom:406.562304pt;}
.y224{bottom:407.198341pt;}
.y153{bottom:411.365829pt;}
.y118{bottom:412.635328pt;}
.y7d{bottom:412.645824pt;}
.y209{bottom:413.925024pt;}
.y23e{bottom:417.121989pt;}
.y44{bottom:417.433381pt;}
.y20{bottom:417.437669pt;}
.y2d1{bottom:418.722144pt;}
.y28e{bottom:418.726149pt;}
.yd4{bottom:419.042981pt;}
.y1a2{bottom:419.365504pt;}
.yb6{bottom:419.369317pt;}
.y1d3{bottom:419.369824pt;}
.y223{bottom:421.598853pt;}
.y152{bottom:426.086469pt;}
.y117{bottom:427.355968pt;}
.y208{bottom:428.645664pt;}
.y23d{bottom:428.961861pt;}
.y2d0{bottom:430.562016pt;}
.y28d{bottom:430.566021pt;}
.y43{bottom:432.154021pt;}
.y1f{bottom:432.158309pt;}
.yd3{bottom:433.762309pt;}
.y1a1{bottom:434.084832pt;}
.y7c{bottom:434.086528pt;}
.yb5{bottom:434.088645pt;}
.y222{bottom:436.319493pt;}
.y151{bottom:440.805797pt;}
.y1d2{bottom:440.809216pt;}
.y23c{bottom:441.121701pt;}
.y116{bottom:442.076608pt;}
.y2cf{bottom:442.721856pt;}
.y28c{bottom:442.725861pt;}
.y207{bottom:443.366304pt;}
.y42{bottom:446.874661pt;}
.y1e{bottom:446.878949pt;}
.yd2{bottom:448.481637pt;}
.y1a0{bottom:448.804160pt;}
.y7b{bottom:448.805856pt;}
.yb4{bottom:448.807973pt;}
.y221{bottom:451.040133pt;}
.y23b{bottom:452.961573pt;}
.y2ce{bottom:454.561728pt;}
.y28b{bottom:454.565733pt;}
.y150{bottom:455.525125pt;}
.y115{bottom:456.797248pt;}
.y206{bottom:458.086944pt;}
.y41{bottom:461.595301pt;}
.y1d1{bottom:461.929792pt;}
.yd1{bottom:463.200965pt;}
.y19f{bottom:463.523488pt;}
.y7a{bottom:463.525184pt;}
.yb3{bottom:463.527301pt;}
.y2cd{bottom:466.721568pt;}
.y28a{bottom:466.725573pt;}
.y1d{bottom:468.318341pt;}
.y14f{bottom:469.925637pt;}
.y114{bottom:471.517888pt;}
.y205{bottom:472.807584pt;}
.y40{bottom:476.315941pt;}
.y1d0{bottom:476.649120pt;}
.yd0{bottom:477.920293pt;}
.y19e{bottom:477.924000pt;}
.y79{bottom:477.925696pt;}
.y2cc{bottom:478.561440pt;}
.y289{bottom:478.565445pt;}
.y1c{bottom:482.718853pt;}
.y25f{bottom:484.321536pt;}
.y14e{bottom:484.646277pt;}
.y113{bottom:485.918400pt;}
.yb2{bottom:485.927077pt;}
.y204{bottom:487.528224pt;}
.y3f{bottom:490.716453pt;}
.y2cb{bottom:490.721280pt;}
.y288{bottom:490.725285pt;}
.y1cf{bottom:491.368448pt;}
.ycf{bottom:492.639621pt;}
.y78{bottom:492.645024pt;}
.y1b{bottom:497.439493pt;}
.y25e{bottom:499.041024pt;}
.y19d{bottom:499.363392pt;}
.y14d{bottom:499.366917pt;}
.yb1{bottom:500.327589pt;}
.y112{bottom:500.637728pt;}
.y203{bottom:501.928736pt;}
.y2ca{bottom:502.561152pt;}
.y287{bottom:502.565157pt;}
.y3e{bottom:505.435781pt;}
.y1ce{bottom:506.087776pt;}
.yce{bottom:507.040133pt;}
.y77{bottom:507.365664pt;}
.y1a{bottom:512.158213pt;}
.y25d{bottom:513.760512pt;}
.y19c{bottom:514.082720pt;}
.y2c9{bottom:514.720992pt;}
.y286{bottom:514.724997pt;}
.y111{bottom:515.358368pt;}
.y202{bottom:516.649376pt;}
.y3d{bottom:520.156421pt;}
.y14c{bottom:520.806309pt;}
.y1cd{bottom:520.807104pt;}
.yb0{bottom:523.367621pt;}
.y2c8{bottom:526.560864pt;}
.y285{bottom:526.564869pt;}
.y19{bottom:526.878853pt;}
.y25c{bottom:528.480000pt;}
.y19b{bottom:528.802048pt;}
.y76{bottom:528.805056pt;}
.y110{bottom:530.079008pt;}
.y201{bottom:531.370016pt;}
.y3c{bottom:534.877061pt;}
.y14b{bottom:535.525637pt;}
.y1cc{bottom:535.526432pt;}
.yaf{bottom:538.088261pt;}
.y2c7{bottom:538.720704pt;}
.y284{bottom:538.724709pt;}
.yf4{bottom:540.640000pt;}
.y18{bottom:541.599493pt;}
.y19a{bottom:543.521376pt;}
.y75{bottom:543.524384pt;}
.y200{bottom:546.090656pt;}
.y25b{bottom:547.040133pt;}
.y3b{bottom:549.597701pt;}
.y14a{bottom:549.926149pt;}
.y1cb{bottom:549.926944pt;}
.y2c6{bottom:550.560576pt;}
.y283{bottom:550.564581pt;}
.y10f{bottom:551.518400pt;}
.yae{bottom:552.808901pt;}
.y17{bottom:556.319552pt;}
.y199{bottom:557.921888pt;}
.y74{bottom:557.924896pt;}
.yf3{bottom:559.200133pt;}
.y1ff{bottom:560.811296pt;}
.y2c5{bottom:562.720416pt;}
.y282{bottom:562.724421pt;}
.y3a{bottom:564.318341pt;}
.y149{bottom:564.645477pt;}
.y1ca{bottom:564.646272pt;}
.y10e{bottom:565.918912pt;}
.yad{bottom:567.529541pt;}
.y16{bottom:570.720064pt;}
.y198{bottom:572.641216pt;}
.y73{bottom:572.645536pt;}
.y2c4{bottom:574.560288pt;}
.y281{bottom:574.564293pt;}
.y1fe{bottom:575.531936pt;}
.y39{bottom:578.718853pt;}
.y148{bottom:579.364805pt;}
.y1c9{bottom:579.365600pt;}
.y10d{bottom:580.639552pt;}
.yac{bottom:581.930053pt;}
.y15{bottom:585.440704pt;}
.y2c3{bottom:586.720128pt;}
.y280{bottom:586.724133pt;}
.y197{bottom:587.361856pt;}
.y72{bottom:587.366176pt;}
.y1fd{bottom:589.932448pt;}
.y38{bottom:593.439493pt;}
.y147{bottom:594.084133pt;}
.y1c8{bottom:594.084928pt;}
.y10c{bottom:595.360192pt;}
.yab{bottom:596.649381pt;}
.y27f{bottom:598.564005pt;}
.y2c2{bottom:598.567200pt;}
.y196{bottom:602.082496pt;}
.y71{bottom:602.085504pt;}
.y1fc{bottom:604.651776pt;}
.y37{bottom:608.160133pt;}
.y14{bottom:608.160608pt;}
.y146{bottom:608.803461pt;}
.y1c7{bottom:608.804256pt;}
.y10b{bottom:610.079520pt;}
.y27e{bottom:610.723845pt;}
.y2c1{bottom:610.727040pt;}
.y195{bottom:616.801824pt;}
.y70{bottom:616.804832pt;}
.yaa{bottom:618.090085pt;}
.y1fb{bottom:619.371104pt;}
.y27d{bottom:622.563717pt;}
.y2c0{bottom:622.566912pt;}
.y145{bottom:623.522789pt;}
.y1c6{bottom:623.523584pt;}
.y10a{bottom:624.798848pt;}
.y194{bottom:631.521152pt;}
.y6f{bottom:631.524160pt;}
.ya9{bottom:632.809413pt;}
.y1fa{bottom:634.090432pt;}
.y27c{bottom:634.723557pt;}
.y2bf{bottom:634.726752pt;}
.y144{bottom:637.923301pt;}
.y109{bottom:639.518176pt;}
.y13{bottom:642.720000pt;}
.y1c5{bottom:644.644160pt;}
.y193{bottom:645.921664pt;}
.y6e{bottom:645.924672pt;}
.y27b{bottom:646.563429pt;}
.y2be{bottom:646.566624pt;}
.ya8{bottom:647.528741pt;}
.y1f9{bottom:648.809760pt;}
.y143{bottom:652.643941pt;}
.y108{bottom:653.918688pt;}
.y27a{bottom:658.723269pt;}
.y2bd{bottom:658.726464pt;}
.y1c4{bottom:659.364800pt;}
.y192{bottom:660.640992pt;}
.y6d{bottom:660.644000pt;}
.ya7{bottom:661.929253pt;}
.y1f8{bottom:663.529088pt;}
.y12{bottom:664.155621pt;}
.y142{bottom:667.364581pt;}
.y107{bottom:668.639328pt;}
.y279{bottom:670.563141pt;}
.y2bc{bottom:670.566336pt;}
.y1c3{bottom:674.085440pt;}
.y191{bottom:675.360320pt;}
.ya6{bottom:676.648581pt;}
.y1f7{bottom:677.929600pt;}
.y11{bottom:678.876293pt;}
.y6c{bottom:682.084704pt;}
.y141{bottom:682.085221pt;}
.y278{bottom:682.722981pt;}
.y2bb{bottom:682.726176pt;}
.y106{bottom:683.359968pt;}
.y1c2{bottom:688.806080pt;}
.y190{bottom:690.079648pt;}
.ya5{bottom:691.367909pt;}
.y1f6{bottom:692.648928pt;}
.y10{bottom:693.596965pt;}
.y277{bottom:694.562853pt;}
.y2ba{bottom:694.566048pt;}
.y6b{bottom:696.805344pt;}
.y140{bottom:696.805861pt;}
.y105{bottom:698.080608pt;}
.y1c1{bottom:703.526720pt;}
.y18f{bottom:704.798976pt;}
.ya4{bottom:706.088549pt;}
.y276{bottom:706.722693pt;}
.y2b9{bottom:706.725888pt;}
.y1f5{bottom:707.368256pt;}
.yf{bottom:708.317637pt;}
.y6a{bottom:711.525984pt;}
.y13f{bottom:711.526501pt;}
.y104{bottom:712.801248pt;}
.y1c0{bottom:717.927232pt;}
.y275{bottom:718.562565pt;}
.y2b8{bottom:718.565760pt;}
.y18e{bottom:719.519616pt;}
.ye{bottom:722.717445pt;}
.y69{bottom:725.926496pt;}
.y13e{bottom:725.927013pt;}
.y103{bottom:727.521888pt;}
.ya3{bottom:727.529253pt;}
.y1f4{bottom:729.768032pt;}
.y274{bottom:730.722405pt;}
.y2b7{bottom:730.725600pt;}
.y1bf{bottom:732.646560pt;}
.y18d{bottom:733.920128pt;}
.yd{bottom:737.438117pt;}
.y68{bottom:740.645824pt;}
.y13d{bottom:740.646341pt;}
.y102{bottom:741.922400pt;}
.ya2{bottom:741.929765pt;}
.y273{bottom:742.562277pt;}
.y2b6{bottom:742.565472pt;}
.y1be{bottom:747.365888pt;}
.y18c{bottom:748.639456pt;}
.yc{bottom:752.158789pt;}
.y1f3{bottom:752.808064pt;}
.y272{bottom:754.722117pt;}
.y2b5{bottom:754.725312pt;}
.y67{bottom:755.365152pt;}
.y13c{bottom:755.365669pt;}
.y101{bottom:756.641728pt;}
.ya1{bottom:756.649093pt;}
.y1bd{bottom:762.085216pt;}
.y18b{bottom:763.358784pt;}
.y271{bottom:766.561989pt;}
.y2b4{bottom:766.565184pt;}
.yb{bottom:766.879461pt;}
.y1f2{bottom:767.528704pt;}
.y66{bottom:770.084480pt;}
.y13b{bottom:770.086309pt;}
.y100{bottom:771.361056pt;}
.ya0{bottom:771.368421pt;}
.y1bc{bottom:776.804544pt;}
.y18a{bottom:778.078112pt;}
.y270{bottom:778.721829pt;}
.y2b3{bottom:778.725024pt;}
.ya{bottom:781.600133pt;}
.y1f1{bottom:781.929216pt;}
.y65{bottom:784.803808pt;}
.y13a{bottom:784.805637pt;}
.yff{bottom:786.080384pt;}
.y9f{bottom:786.087749pt;}
.y26f{bottom:790.561701pt;}
.y2b2{bottom:790.564896pt;}
.y1bb{bottom:791.523872pt;}
.y189{bottom:792.797440pt;}
.y64{bottom:799.523136pt;}
.y139{bottom:799.524965pt;}
.yfe{bottom:800.799712pt;}
.y9e{bottom:800.807077pt;}
.y26e{bottom:802.721541pt;}
.y2b1{bottom:802.724736pt;}
.y1f0{bottom:803.368608pt;}
.y1ba{bottom:805.924384pt;}
.y188{bottom:807.516768pt;}
.y26d{bottom:814.561413pt;}
.y2b0{bottom:814.564608pt;}
.yfd{bottom:815.519040pt;}
.y9d{bottom:815.526405pt;}
.y1ef{bottom:818.087936pt;}
.y9{bottom:818.400000pt;}
.y63{bottom:820.643712pt;}
.y187{bottom:821.917280pt;}
.y138{bottom:821.924741pt;}
.y26c{bottom:826.721253pt;}
.y2af{bottom:826.724448pt;}
.yfc{bottom:829.919552pt;}
.y1ee{bottom:832.807264pt;}
.y62{bottom:835.363040pt;}
.y186{bottom:836.636608pt;}
.y9c{bottom:836.646981pt;}
.y26b{bottom:838.561125pt;}
.y2ae{bottom:838.564320pt;}
.y8{bottom:840.160133pt;}
.yfb{bottom:844.638880pt;}
.y137{bottom:844.644645pt;}
.y61{bottom:850.082368pt;}
.y26a{bottom:850.720965pt;}
.y2ad{bottom:850.724160pt;}
.y185{bottom:851.357248pt;}
.y9b{bottom:851.366309pt;}
.y1ed{bottom:853.927840pt;}
.y136{bottom:859.363973pt;}
.y269{bottom:862.560837pt;}
.y2ac{bottom:862.564032pt;}
.y60{bottom:864.801696pt;}
.y184{bottom:866.077888pt;}
.yfa{bottom:866.079584pt;}
.y9a{bottom:866.085637pt;}
.y1ec{bottom:868.647168pt;}
.y135{bottom:874.083301pt;}
.y268{bottom:874.720677pt;}
.y2ab{bottom:874.723872pt;}
.y5f{bottom:879.521024pt;}
.y183{bottom:880.797216pt;}
.yf9{bottom:880.798912pt;}
.y99{bottom:880.804965pt;}
.y7{bottom:881.440000pt;}
.y267{bottom:886.560549pt;}
.y2aa{bottom:886.563744pt;}
.y134{bottom:888.802629pt;}
.y1eb{bottom:890.087872pt;}
.y5e{bottom:893.921536pt;}
.y182{bottom:895.516544pt;}
.yf8{bottom:895.518240pt;}
.y98{bottom:895.524293pt;}
.y266{bottom:898.720389pt;}
.y2a9{bottom:898.723584pt;}
.y133{bottom:903.521957pt;}
.y5d{bottom:908.640864pt;}
.y181{bottom:909.917056pt;}
.yf7{bottom:909.918752pt;}
.y97{bottom:909.924805pt;}
.y265{bottom:910.560261pt;}
.y2a8{bottom:910.563456pt;}
.y1ea{bottom:911.527264pt;}
.y6{bottom:913.439040pt;}
.y264{bottom:922.720101pt;}
.y2a7{bottom:922.723296pt;}
.y180{bottom:924.636384pt;}
.yf6{bottom:924.639392pt;}
.y132{bottom:924.642533pt;}
.y96{bottom:924.644133pt;}
.y5c{bottom:931.040640pt;}
.y1e9{bottom:932.646528pt;}
.y263{bottom:934.559973pt;}
.y2a6{bottom:934.563168pt;}
.y5{bottom:935.520000pt;}
.y17f{bottom:939.355712pt;}
.yf5{bottom:939.360032pt;}
.y131{bottom:939.361861pt;}
.y95{bottom:939.363461pt;}
.y262{bottom:946.719813pt;}
.y2a5{bottom:946.723008pt;}
.y17e{bottom:954.075040pt;}
.y5b{bottom:954.080672pt;}
.y130{bottom:954.081189pt;}
.y94{bottom:954.082789pt;}
.y1e8{bottom:954.087232pt;}
.y261{bottom:958.559685pt;}
.y2a4{bottom:958.562880pt;}
.y4{bottom:965.600133pt;}
.y17d{bottom:968.794368pt;}
.y5a{bottom:968.800000pt;}
.y12f{bottom:968.800517pt;}
.y93{bottom:968.802117pt;}
.y1e7{bottom:968.806560pt;}
.y260{bottom:970.719525pt;}
.y2a3{bottom:970.722720pt;}
.y1{bottom:996.320133pt;}
.h15{height:7.115000pt;}
.hd{height:14.230000pt;}
.h7{height:23.996250pt;}
.h3{height:28.627500pt;}
.he{height:28.751250pt;}
.h14{height:29.328750pt;}
.h2{height:29.349375pt;}
.h11{height:32.883750pt;}
.h8{height:32.906875pt;}
.ha{height:35.567500pt;}
.h10{height:36.438750pt;}
.h9{height:36.464375pt;}
.hb{height:36.466700pt;}
.hc{height:36.472055pt;}
.h12{height:38.898750pt;}
.hf{height:44.437500pt;}
.h1{height:44.468750pt;}
.h4{height:46.593750pt;}
.h13{height:48.382426pt;}
.h5{height:57.255000pt;}
.h6{height:58.789375pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.173333pt;}
.x7{left:86.773333pt;}
.x9{left:122.932693pt;}
.x3{left:141.813333pt;}
.x8{left:413.173333pt;}
.x4{left:441.013200pt;}
.xa{left:478.773333pt;}
.x2{left:666.933333pt;}
.xb{left:732.533333pt;}
.x5{left:750.453333pt;}
.x6{left:753.973333pt;}
}




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