
    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_646b5e65cfce98d0391e5168.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_e8b5e1b592a3d3cc346785b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_cd8f0ff9bc2c38c13e9d78a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_05b9faa1f55ed03ac93d0ad5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_acc28a29be960508fe980238.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_cae94e8a8984def643c41f33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_9a5f390639bf81e527f879d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_2ede6707d0b96688ade8685c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_10d75a96940883380e986cc5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_6a3a0329d25fa9d86167c022.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.174316;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_41b1ee995724f1a98e0e5d9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_26ad476a372e0b83365adbcd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_98c622732ea5513c88d7eac0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_d9ccbcebfc54c347c79487cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.174316;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_5948de2c0ffc21c5886b8e5b.woff2')format("woff");}.fff{font-family:fff;line-height:1.184570;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_a7561975fb1126a8e13e4279.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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_2ede6707d0b96688ade8685c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_99dc4dfcc51074bbe1866b13.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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_341f4555c17aeb41b22b1ebd.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.174316;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_a7561975fb1126a8e13e4279.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.752441;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_799d038cba621a51697efb79.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.184570;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_2ede6707d0b96688ade8685c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006348;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_065fe5b89e322da639f98656.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;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_b90e2b8f0ba1328770cce729.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.174316;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_a7561975fb1126a8e13e4279.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.752441;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_1d164bdd77e2753cbc2bb9b1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_e3c01fbc5e4ff29c0e4ef960.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_83fd7f8d1f4f5f6f71151008.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.174316;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_70697f99e1d3426bce0a6417.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.752441;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_fe5cdd6ab40dd28560164230.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;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_380ad5041363bcea65884ce4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;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_15b09eefe2a1e51e41891a48.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.174316;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_3959c1843a152815b26c5f40.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.006348;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_fd4c0a5e0249c55076e41824.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.006348;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_3211585b0270e8841fdc9f68.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.174316;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_6ffce0c634cfbeb05ea4df5f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.184570;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_030adb69e38c7a6bb33f0200.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.734000;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;}
.m21{transform:matrix(0.000000,-0.248661,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248661,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248661,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.251360,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251360,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251360,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.253050,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253050,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253050,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.253063,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253063,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253063,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.253172,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253172,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253172,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254982,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.994000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.ls43{letter-spacing:-1.130256px;}
.ls46{letter-spacing:-1.053302px;}
.ls48{letter-spacing:-1.038874px;}
.ls47{letter-spacing:-1.010016px;}
.ls45{letter-spacing:-0.952301px;}
.ls8f{letter-spacing:-0.751500px;}
.ls44{letter-spacing:-0.721440px;}
.ls9a{letter-spacing:-0.709416px;}
.ls92{letter-spacing:-0.697392px;}
.ls91{letter-spacing:-0.685368px;}
.ls96{letter-spacing:-0.679356px;}
.ls99{letter-spacing:-0.673344px;}
.ls97{letter-spacing:-0.667332px;}
.ls93{letter-spacing:-0.655308px;}
.ls8e{letter-spacing:-0.643284px;}
.ls3a{letter-spacing:-0.637069px;}
.ls94{letter-spacing:-0.631260px;}
.ls98{letter-spacing:-0.625248px;}
.ls90{letter-spacing:-0.619236px;}
.ls95{letter-spacing:-0.613224px;}
.ls70{letter-spacing:-0.583200px;}
.ls71{letter-spacing:-0.552960px;}
.ls73{letter-spacing:-0.531360px;}
.ls75{letter-spacing:-0.527040px;}
.ls72{letter-spacing:-0.509760px;}
.ls74{letter-spacing:-0.496800px;}
.ls36{letter-spacing:-0.264528px;}
.ls35{letter-spacing:-0.228456px;}
.ls53{letter-spacing:-0.220834px;}
.ls6e{letter-spacing:-0.216432px;}
.ls2a{letter-spacing:-0.174348px;}
.ls8c{letter-spacing:-0.156312px;}
.ls7c{letter-spacing:-0.149098px;}
.ls8b{letter-spacing:-0.138276px;}
.ls81{letter-spacing:-0.134669px;}
.ls2c{letter-spacing:-0.132264px;}
.ls6f{letter-spacing:-0.126252px;}
.ls3c{letter-spacing:-0.125050px;}
.ls6d{letter-spacing:-0.120240px;}
.ls7d{letter-spacing:-0.115430px;}
.ls77{letter-spacing:-0.110621px;}
.ls2d{letter-spacing:-0.108216px;}
.ls7e{letter-spacing:-0.105811px;}
.ls29{letter-spacing:-0.102204px;}
.ls38{letter-spacing:-0.096192px;}
.ls69{letter-spacing:-0.090180px;}
.ls82{letter-spacing:-0.086573px;}
.ls67{letter-spacing:-0.084168px;}
.ls42{letter-spacing:-0.076954px;}
.ls32{letter-spacing:-0.075600px;}
.ls7f{letter-spacing:-0.072144px;}
.ls12{letter-spacing:-0.071820px;}
.ls34{letter-spacing:-0.066132px;}
.ls7b{letter-spacing:-0.062525px;}
.ls37{letter-spacing:-0.060120px;}
.ls79{letter-spacing:-0.057715px;}
.ls39{letter-spacing:-0.057456px;}
.ls78{letter-spacing:-0.052906px;}
.ls41{letter-spacing:-0.048096px;}
.ls57{letter-spacing:-0.047520px;}
.ls7a{letter-spacing:-0.043286px;}
.ls13{letter-spacing:-0.043200px;}
.ls8a{letter-spacing:-0.042084px;}
.ls3d{letter-spacing:-0.038477px;}
.ls64{letter-spacing:-0.036072px;}
.ls2f{letter-spacing:-0.030561px;}
.ls66{letter-spacing:-0.030060px;}
.ls76{letter-spacing:-0.028858px;}
.ls31{letter-spacing:-0.027000px;}
.ls2b{letter-spacing:-0.024048px;}
.ls30{letter-spacing:-0.021600px;}
.ls28{letter-spacing:-0.018036px;}
.ls3b{letter-spacing:-0.017280px;}
.ls40{letter-spacing:-0.014429px;}
.ls54{letter-spacing:-0.013833px;}
.ls65{letter-spacing:-0.012024px;}
.ls14{letter-spacing:-0.010800px;}
.ls83{letter-spacing:-0.009619px;}
.ls55{letter-spacing:-0.009222px;}
.ls56{letter-spacing:-0.008640px;}
.ls80{letter-spacing:-0.004810px;}
.ls58{letter-spacing:-0.004320px;}
.ls8{letter-spacing:0.000000px;}
.lsa3{letter-spacing:0.000676px;}
.ls9d{letter-spacing:0.000800px;}
.lsa9{letter-spacing:0.000823px;}
.lsa6{letter-spacing:0.001036px;}
.lsad{letter-spacing:0.001155px;}
.ls2{letter-spacing:0.002725px;}
.ls52{letter-spacing:0.004320px;}
.ls85{letter-spacing:0.004630px;}
.ls4{letter-spacing:0.004766px;}
.lsaa{letter-spacing:0.004800px;}
.ls60{letter-spacing:0.004810px;}
.ls10{letter-spacing:0.005400px;}
.ls17{letter-spacing:0.006012px;}
.ls25{letter-spacing:0.008640px;}
.ls1d{letter-spacing:0.010800px;}
.ls88{letter-spacing:0.012024px;}
.ls51{letter-spacing:0.012960px;}
.lsd{letter-spacing:0.016200px;}
.ls16{letter-spacing:0.018036px;}
.ls5a{letter-spacing:0.018209px;}
.ls24{letter-spacing:0.021600px;}
.ls5e{letter-spacing:0.024048px;}
.ls4d{letter-spacing:0.025920px;}
.ls21{letter-spacing:0.026813px;}
.lsc{letter-spacing:0.027000px;}
.ls59{letter-spacing:0.030060px;}
.ls4f{letter-spacing:0.030240px;}
.ls4a{letter-spacing:0.032205px;}
.lsa{letter-spacing:0.033516px;}
.ls63{letter-spacing:0.033667px;}
.ls19{letter-spacing:0.036072px;}
.ls4b{letter-spacing:0.036806px;}
.ls5f{letter-spacing:0.038477px;}
.ls18{letter-spacing:0.042084px;}
.ls4e{letter-spacing:0.043200px;}
.ls26{letter-spacing:0.043286px;}
.ls3f{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.048600px;}
.ls84{letter-spacing:0.052906px;}
.lse{letter-spacing:0.054000px;}
.ls87{letter-spacing:0.054108px;}
.ls62{letter-spacing:0.057715px;}
.ls1f{letter-spacing:0.060120px;}
.ls3e{letter-spacing:0.062525px;}
.ls1e{letter-spacing:0.064800px;}
.ls89{letter-spacing:0.066132px;}
.ls15{letter-spacing:0.072144px;}
.ls27{letter-spacing:0.076954px;}
.ls33{letter-spacing:0.078156px;}
.ls2e{letter-spacing:0.084168px;}
.ls50{letter-spacing:0.086400px;}
.ls4c{letter-spacing:0.086870px;}
.ls5c{letter-spacing:0.090180px;}
.ls22{letter-spacing:0.134064px;}
.ls5d{letter-spacing:0.137894px;}
.ls61{letter-spacing:0.144288px;}
.ls20{letter-spacing:0.145555px;}
.ls1b{letter-spacing:0.150300px;}
.ls1c{letter-spacing:0.160446px;}
.lsb{letter-spacing:0.167580px;}
.ls86{letter-spacing:0.172368px;}
.ls1a{letter-spacing:0.180360px;}
.ls9{letter-spacing:0.181944px;}
.ls23{letter-spacing:0.613254px;}
.ls6c{letter-spacing:0.837594px;}
.ls6a{letter-spacing:0.846698px;}
.ls5b{letter-spacing:0.887667px;}
.ls68{letter-spacing:2.248488px;}
.ls1{letter-spacing:2.998354px;}
.ls8d{letter-spacing:3.330648px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lsa0{letter-spacing:12.552441px;}
.lsa8{letter-spacing:13.177619px;}
.lsa1{letter-spacing:13.290557px;}
.lsa7{letter-spacing:13.293257px;}
.ls9c{letter-spacing:13.448400px;}
.ls9b{letter-spacing:13.454400px;}
.ls9e{letter-spacing:13.463313px;}
.lsab{letter-spacing:13.498937px;}
.lsa2{letter-spacing:13.544339px;}
.lsae{letter-spacing:13.636114px;}
.lsa4{letter-spacing:13.654482px;}
.ls49{letter-spacing:14.944424px;}
.lsac{letter-spacing:15.403341px;}
.ls9f{letter-spacing:18.609224px;}
.lsa5{letter-spacing:19.938635px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls6b{letter-spacing:309.377091px;}
.ls11{letter-spacing:848.970000px;}
.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;}
}
.ws163{word-spacing:-60.120000px;}
.ws7c{word-spacing:-59.539200px;}
.ws7d{word-spacing:-48.096000px;}
.wscb{word-spacing:-46.109280px;}
.wscd{word-spacing:-45.720960px;}
.ws75{word-spacing:-19.070139px;}
.ws7b{word-spacing:-15.498054px;}
.ws71{word-spacing:-14.943900px;}
.ws1b0{word-spacing:-13.449600px;}
.ws53{word-spacing:-12.151944px;}
.ws54{word-spacing:-11.970000px;}
.ws2f{word-spacing:-11.955150px;}
.wscc{word-spacing:-11.517110px;}
.wsca{word-spacing:-11.513487px;}
.ws14{word-spacing:-11.357400px;}
.wsc9{word-spacing:-11.280926px;}
.wsce{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.460700px;}
.ws79{word-spacing:-9.721555px;}
.ws7a{word-spacing:-9.576000px;}
.wsff{word-spacing:-3.559104px;}
.wse0{word-spacing:-3.496896px;}
.ws174{word-spacing:-3.420828px;}
.ws173{word-spacing:-3.372732px;}
.ws29{word-spacing:-3.108331px;}
.ws2a{word-spacing:-3.048556px;}
.ws8a{word-spacing:-2.873736px;}
.wsfc{word-spacing:-2.837664px;}
.ws11c{word-spacing:-2.803997px;}
.wse9{word-spacing:-2.771532px;}
.ws113{word-spacing:-2.746282px;}
.wsbd{word-spacing:-2.717424px;}
.ws89{word-spacing:-2.681352px;}
.wsbe{word-spacing:-2.616422px;}
.ws11b{word-spacing:-2.515421px;}
.ws120{word-spacing:-2.424038px;}
.wseb{word-spacing:-2.404800px;}
.ws36{word-spacing:-2.391024px;}
.wsbf{word-spacing:-2.375942px;}
.ws18{word-spacing:-2.367130px;}
.ws84{word-spacing:-2.326644px;}
.wsea{word-spacing:-2.320632px;}
.ws165{word-spacing:-2.313331px;}
.ws144{word-spacing:-2.271473px;}
.ws85{word-spacing:-2.254500px;}
.ws16a{word-spacing:-2.211697px;}
.ws1a9{word-spacing:-2.205734px;}
.ws194{word-spacing:-2.176344px;}
.ws9d{word-spacing:-2.164320px;}
.ws193{word-spacing:-2.158308px;}
.ws39{word-spacing:-2.151922px;}
.ws178{word-spacing:-2.122236px;}
.ws122{word-spacing:-2.121034px;}
.ws121{word-spacing:-2.096986px;}
.ws1ef{word-spacing:-2.059180px;}
.wsec{word-spacing:-2.056104px;}
.ws1b6{word-spacing:-2.044339px;}
.ws73{word-spacing:-1.972595px;}
.ws76{word-spacing:-1.829146px;}
.ws72{word-spacing:-1.793268px;}
.ws18c{word-spacing:-1.785564px;}
.ws184{word-spacing:-1.713420px;}
.ws111{word-spacing:-1.702598px;}
.ws1aa{word-spacing:-1.667750px;}
.ws77{word-spacing:-1.613952px;}
.ws150{word-spacing:-1.613941px;}
.ws183{word-spacing:-1.599192px;}
.ws1b4{word-spacing:-1.560154px;}
.wsc3{word-spacing:-1.554166px;}
.ws18b{word-spacing:-1.424844px;}
.ws118{word-spacing:-1.404403px;}
.ws105{word-spacing:-1.360800px;}
.ws104{word-spacing:-1.317600px;}
.ws44{word-spacing:-1.315063px;}
.ws1b{word-spacing:-1.291162px;}
.ws103{word-spacing:-1.287360px;}
.ws179{word-spacing:-1.226448px;}
.ws143{word-spacing:-1.195512px;}
.ws78{word-spacing:-1.183565px;}
.ws7{word-spacing:-1.171598px;}
.ws135{word-spacing:-1.135736px;}
.ws1c4{word-spacing:-1.129766px;}
.ws4f{word-spacing:-1.075961px;}
.ws185{word-spacing:-1.064124px;}
.ws9{word-spacing:-1.046070px;}
.wsef{word-spacing:-1.022040px;}
.ws155{word-spacing:-1.016185px;}
.ws37{word-spacing:-0.956410px;}
.ws1be{word-spacing:-0.914573px;}
.wsf0{word-spacing:-0.907812px;}
.wsdf{word-spacing:-0.896634px;}
.wsfd{word-spacing:-0.871740px;}
.wsb1{word-spacing:-0.870538px;}
.wsb0{word-spacing:-0.856109px;}
.ws157{word-spacing:-0.836858px;}
.ws12e{word-spacing:-0.827251px;}
.ws1cc{word-spacing:-0.806976px;}
.ws137{word-spacing:-0.777083px;}
.wsfe{word-spacing:-0.775548px;}
.ws1d{word-spacing:-0.753178px;}
.wsdc{word-spacing:-0.747360px;}
.wsdb{word-spacing:-0.734400px;}
.wsdd{word-spacing:-0.704160px;}
.ws156{word-spacing:-0.597756px;}
.ws1c8{word-spacing:-0.591782px;}
.ws1e8{word-spacing:-0.537984px;}
.ws151{word-spacing:-0.537980px;}
.ws1cb{word-spacing:-0.430387px;}
.ws8d{word-spacing:-0.420840px;}
.ws43{word-spacing:-0.418429px;}
.ws1f8{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.358654px;}
.ws81{word-spacing:-0.342684px;}
.ws18a{word-spacing:-0.336672px;}
.ws2{word-spacing:-0.334742px;}
.wse6{word-spacing:-0.322790px;}
.ws23{word-spacing:-0.298878px;}
.ws5b{word-spacing:-0.272916px;}
.ws1d9{word-spacing:-0.268992px;}
.wsf6{word-spacing:-0.240480px;}
.ws3b{word-spacing:-0.239102px;}
.wse7{word-spacing:-0.234468px;}
.wsf4{word-spacing:-0.227607px;}
.ws107{word-spacing:-0.224640px;}
.wsf5{word-spacing:-0.218503px;}
.wsa3{word-spacing:-0.218333px;}
.ws57{word-spacing:-0.215194px;}
.ws106{word-spacing:-0.190080px;}
.ws10a{word-spacing:-0.187574px;}
.ws3e{word-spacing:-0.179327px;}
.ws10d{word-spacing:-0.163526px;}
.ws1e{word-spacing:-0.161395px;}
.wsd2{word-spacing:-0.161025px;}
.wsab{word-spacing:-0.142560px;}
.wsd3{word-spacing:-0.138328px;}
.wsd4{word-spacing:-0.137163px;}
.ws5c{word-spacing:-0.124488px;}
.ws25{word-spacing:-0.119551px;}
.ws1d4{word-spacing:-0.107597px;}
.wsa4{word-spacing:-0.099590px;}
.wsc0{word-spacing:-0.076954px;}
.ws114{word-spacing:-0.067334px;}
.ws24{word-spacing:-0.059776px;}
.wse5{word-spacing:-0.053798px;}
.ws30{word-spacing:-0.047821px;}
.wsc1{word-spacing:-0.043286px;}
.ws6{word-spacing:-0.041843px;}
.ws5a{word-spacing:-0.019152px;}
.wsa2{word-spacing:-0.015322px;}
.ws13{word-spacing:-0.003583px;}
.ws12{word-spacing:-0.000917px;}
.ws15{word-spacing:-0.000008px;}
.ws1{word-spacing:0.000000px;}
.ws129{word-spacing:0.009619px;}
.wsa1{word-spacing:0.018036px;}
.ws99{word-spacing:0.030060px;}
.ws19d{word-spacing:0.042084px;}
.ws1ac{word-spacing:0.050629px;}
.ws164{word-spacing:0.053798px;}
.ws8c{word-spacing:0.054108px;}
.ws40{word-spacing:0.059776px;}
.ws180{word-spacing:0.072144px;}
.ws19e{word-spacing:0.078156px;}
.ws181{word-spacing:0.084168px;}
.wsf3{word-spacing:0.090180px;}
.ws109{word-spacing:0.090720px;}
.ws108{word-spacing:0.095040px;}
.wsfa{word-spacing:0.102204px;}
.ws1ae{word-spacing:0.107597px;}
.ws8e{word-spacing:0.114604px;}
.ws3d{word-spacing:0.119551px;}
.wsf7{word-spacing:0.126252px;}
.wsac{word-spacing:0.133920px;}
.wsde{word-spacing:0.138240px;}
.wsf9{word-spacing:0.138276px;}
.wse8{word-spacing:0.156312px;}
.ws17{word-spacing:0.161395px;}
.ws66{word-spacing:0.162000px;}
.ws182{word-spacing:0.162324px;}
.ws67{word-spacing:0.178200px;}
.ws38{word-spacing:0.179327px;}
.ws10c{word-spacing:0.182765px;}
.wsf8{word-spacing:0.186372px;}
.ws8b{word-spacing:0.198396px;}
.ws20{word-spacing:0.215194px;}
.ws42{word-spacing:0.239102px;}
.ws1ab{word-spacing:0.268992px;}
.ws35{word-spacing:0.298878px;}
.ws16{word-spacing:0.322790px;}
.ws4b{word-spacing:0.358654px;}
.wsa6{word-spacing:0.363189px;}
.wsa7{word-spacing:0.410400px;}
.ws4c{word-spacing:0.418429px;}
.wsa8{word-spacing:0.423360px;}
.ws1d0{word-spacing:0.430387px;}
.ws3c{word-spacing:0.478205px;}
.ws162{word-spacing:0.537980px;}
.ws80{word-spacing:0.591782px;}
.ws126{word-spacing:0.601200px;}
.ws58{word-spacing:0.645581px;}
.ws145{word-spacing:0.657532px;}
.ws52{word-spacing:0.717307px;}
.ws56{word-spacing:0.753178px;}
.ws31{word-spacing:0.777083px;}
.ws2d{word-spacing:0.836858px;}
.ws1f4{word-spacing:0.860774px;}
.ws130{word-spacing:0.884966px;}
.ws146{word-spacing:0.896634px;}
.ws127{word-spacing:0.942682px;}
.ws149{word-spacing:0.956410px;}
.ws8{word-spacing:1.004227px;}
.ws55{word-spacing:1.022170px;}
.ws12f{word-spacing:1.053302px;}
.ws15d{word-spacing:1.075961px;}
.ws4d{word-spacing:1.135736px;}
.ws17d{word-spacing:1.172340px;}
.ws167{word-spacing:1.183565px;}
.ws136{word-spacing:1.195512px;}
.ws166{word-spacing:1.237363px;}
.ws28{word-spacing:1.255288px;}
.ws116{word-spacing:1.337069px;}
.ws7f{word-spacing:1.344960px;}
.ws115{word-spacing:1.370736px;}
.ws6a{word-spacing:1.374839px;}
.ws41{word-spacing:1.434614px;}
.ws1f{word-spacing:1.452557px;}
.ws112{word-spacing:1.486166px;}
.ws1a4{word-spacing:1.494390px;}
.ws1ea{word-spacing:1.506355px;}
.ws17c{word-spacing:1.509012px;}
.ws4a{word-spacing:1.554166px;}
.ws7e{word-spacing:1.613952px;}
.ws33{word-spacing:1.673717px;}
.ws1a6{word-spacing:1.721549px;}
.ws48{word-spacing:1.733492px;}
.ws1a8{word-spacing:1.775347px;}
.wsd1{word-spacing:1.829146px;}
.ws195{word-spacing:1.851696px;}
.ws2c{word-spacing:1.853044px;}
.ws177{word-spacing:1.857708px;}
.ws196{word-spacing:1.869732px;}
.wsee{word-spacing:1.881756px;}
.ws95{word-spacing:1.917000px;}
.wsed{word-spacing:1.917828px;}
.ws61{word-spacing:1.927800px;}
.ws8f{word-spacing:1.954800px;}
.ws94{word-spacing:1.965600px;}
.ws90{word-spacing:1.971000px;}
.ws15b{word-spacing:1.972595px;}
.ws91{word-spacing:2.003400px;}
.ws2b{word-spacing:2.032370px;}
.ws15f{word-spacing:2.092146px;}
.ws134{word-spacing:2.101795px;}
.wsc5{word-spacing:2.151922px;}
.ws13d{word-spacing:2.271473px;}
.ws32{word-spacing:2.331248px;}
.ws1d7{word-spacing:2.367130px;}
.wsc2{word-spacing:2.391024px;}
.ws69{word-spacing:2.450800px;}
.ws191{word-spacing:2.507004px;}
.ws47{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws74{word-spacing:2.570351px;}
.ws190{word-spacing:2.585160px;}
.ws3f{word-spacing:2.630126px;}
.ws101{word-spacing:2.645280px;}
.ws154{word-spacing:2.689902px;}
.ws100{word-spacing:2.735460px;}
.ws147{word-spacing:2.749678px;}
.ws1a5{word-spacing:2.809453px;}
.ws1c{word-spacing:2.851315px;}
.ws1db{word-spacing:2.958912px;}
.ws1d6{word-spacing:3.012710px;}
.wsc8{word-spacing:3.108331px;}
.ws49{word-spacing:3.168107px;}
.ws117{word-spacing:3.193574px;}
.ws1f2{word-spacing:3.219149px;}
.ws1c1{word-spacing:3.219408px;}
.ws1e9{word-spacing:3.221914px;}
.ws1ec{word-spacing:3.222394px;}
.ws1f5{word-spacing:3.222922px;}
.ws14e{word-spacing:3.227882px;}
.ws1d8{word-spacing:3.227904px;}
.ws1a0{word-spacing:3.287658px;}
.ws128{word-spacing:3.294576px;}
.ws13f{word-spacing:3.347434px;}
.ws189{word-spacing:3.450888px;}
.ws138{word-spacing:3.466985px;}
.ws12d{word-spacing:3.467722px;}
.ws1a3{word-spacing:3.526760px;}
.ws59{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.ws1da{word-spacing:3.604493px;}
.ws14a{word-spacing:3.646312px;}
.ws15c{word-spacing:3.706087px;}
.ws5e{word-spacing:3.753000px;}
.ws5f{word-spacing:3.763800px;}
.ws13c{word-spacing:3.765863px;}
.ws1de{word-spacing:3.819686px;}
.ws60{word-spacing:3.823200px;}
.ws11d{word-spacing:3.866918px;}
.wscf{word-spacing:3.873485px;}
.ws15a{word-spacing:3.885414px;}
.ws1e4{word-spacing:3.927283px;}
.ws19f{word-spacing:3.945190px;}
.ws16c{word-spacing:4.022028px;}
.ws6b{word-spacing:4.064741px;}
.ws1b8{word-spacing:4.088678px;}
.ws62{word-spacing:4.093200px;}
.ws51{word-spacing:4.124516px;}
.ws21{word-spacing:4.142477px;}
.wsd9{word-spacing:4.147200px;}
.ws63{word-spacing:4.152600px;}
.wsda{word-spacing:4.181760px;}
.ws160{word-spacing:4.184292px;}
.ws1e2{word-spacing:4.196275px;}
.ws3a{word-spacing:4.244068px;}
.ws15e{word-spacing:4.303843px;}
.ws27{word-spacing:4.363619px;}
.ws83{word-spacing:4.388760px;}
.ws169{word-spacing:4.423394px;}
.ws1a7{word-spacing:4.465267px;}
.wsb2{word-spacing:4.487357px;}
.wsb3{word-spacing:4.492166px;}
.ws45{word-spacing:4.542946px;}
.ws14b{word-spacing:4.602721px;}
.ws1dd{word-spacing:4.626662px;}
.ws13b{word-spacing:4.662497px;}
.ws9a{word-spacing:4.689360px;}
.wsae{word-spacing:4.718218px;}
.wsf{word-spacing:4.770079px;}
.wsf2{word-spacing:4.785552px;}
.ws1ce{word-spacing:4.788058px;}
.wsad{word-spacing:4.804790px;}
.ws16e{word-spacing:4.809600px;}
.ws10{word-spacing:4.853765px;}
.wsf1{word-spacing:4.857696px;}
.ws12a{word-spacing:5.054890px;}
.ws19a{word-spacing:5.056092px;}
.ws14c{word-spacing:5.080926px;}
.ws199{word-spacing:5.092164px;}
.wsc6{word-spacing:5.140702px;}
.ws1ba{word-spacing:5.164646px;}
.ws142{word-spacing:5.200477px;}
.ws13a{word-spacing:5.260253px;}
.ws1e1{word-spacing:5.326042px;}
.wsa9{word-spacing:5.326560px;}
.ws125{word-spacing:5.343466px;}
.wsaa{word-spacing:5.343840px;}
.ws14d{word-spacing:5.379804px;}
.ws1f1{word-spacing:5.379840px;}
.ws152{word-spacing:5.499355px;}
.ws26{word-spacing:5.678682px;}
.ws161{word-spacing:5.738458px;}
.ws19b{word-spacing:5.753484px;}
.ws19c{word-spacing:5.759496px;}
.ws192{word-spacing:5.783544px;}
.ws148{word-spacing:5.798233px;}
.ws1b1{word-spacing:5.810227px;}
.ws1a1{word-spacing:5.858009px;}
.ws1a{word-spacing:6.133018px;}
.wsb7{word-spacing:6.156288px;}
.wsb8{word-spacing:6.165907px;}
.wsb9{word-spacing:6.194765px;}
.ws64{word-spacing:6.285600px;}
.ws65{word-spacing:6.296400px;}
.ws6c{word-spacing:6.336214px;}
.ws139{word-spacing:6.395989px;}
.ws6d{word-spacing:6.455765px;}
.ws1d2{word-spacing:6.509606px;}
.ws88{word-spacing:6.565104px;}
.ws141{word-spacing:6.694867px;}
.ws87{word-spacing:6.703380px;}
.ws19{word-spacing:6.778598px;}
.ws70{word-spacing:6.814418px;}
.ws1f0{word-spacing:6.886195px;}
.ws14f{word-spacing:6.933970px;}
.ws158{word-spacing:7.232848px;}
.ws170{word-spacing:7.286544px;}
.ws176{word-spacing:7.328628px;}
.ws93{word-spacing:7.333200px;}
.ws9b{word-spacing:7.358688px;}
.ws92{word-spacing:7.392600px;}
.ws140{word-spacing:7.412174px;}
.ws16f{word-spacing:7.424820px;}
.ws175{word-spacing:7.448868px;}
.wsc4{word-spacing:7.471950px;}
.wsb4{word-spacing:7.512595px;}
.ws9c{word-spacing:7.521012px;}
.ws4e{word-spacing:7.531726px;}
.ws188{word-spacing:7.581132px;}
.wsfb{word-spacing:7.611192px;}
.ws10f{word-spacing:7.618406px;}
.wsbb{word-spacing:7.704979px;}
.ws168{word-spacing:7.711052px;}
.wsd{word-spacing:7.782761px;}
.wsb5{word-spacing:7.863696px;}
.wsc7{word-spacing:7.890379px;}
.ws110{word-spacing:7.892554px;}
.ws1f7{word-spacing:7.908365px;}
.wsbc{word-spacing:7.935840px;}
.ws186{word-spacing:7.995960px;}
.ws153{word-spacing:8.009930px;}
.ws187{word-spacing:8.074116px;}
.ws131{word-spacing:8.113795px;}
.ws50{word-spacing:8.308808px;}
.ws1a2{word-spacing:8.368584px;}
.wsba{word-spacing:8.402371px;}
.ws159{word-spacing:8.428360px;}
.ws98{word-spacing:8.445600px;}
.ws13e{word-spacing:8.488135px;}
.ws96{word-spacing:8.488800px;}
.ws97{word-spacing:8.537400px;}
.wse4{word-spacing:8.547911px;}
.wsb6{word-spacing:8.666899px;}
.ws123{word-spacing:8.705376px;}
.wse2{word-spacing:8.966340px;}
.ws124{word-spacing:8.998762px;}
.wsd8{word-spacing:9.028800px;}
.ws82{word-spacing:9.108180px;}
.wsd7{word-spacing:9.119520px;}
.wsd0{word-spacing:9.199526px;}
.ws102{word-spacing:9.292550px;}
.wsa5{word-spacing:9.296381px;}
.wse1{word-spacing:9.922750px;}
.ws3{word-spacing:10.418857px;}
.ws11a{word-spacing:10.499357px;}
.ws119{word-spacing:10.513786px;}
.ws10e{word-spacing:10.537834px;}
.ws16d{word-spacing:10.623204px;}
.ws11f{word-spacing:10.759075px;}
.ws11e{word-spacing:10.802362px;}
.ws1b5{word-spacing:11.351462px;}
.ws16b{word-spacing:11.615688px;}
.ws5d{word-spacing:11.620476px;}
.ws133{word-spacing:11.668090px;}
.wsa0{word-spacing:11.705364px;}
.wsb{word-spacing:12.176255px;}
.ws1bd{word-spacing:12.212237px;}
.ws1bf{word-spacing:12.481229px;}
.ws1e7{word-spacing:12.588826px;}
.ws4{word-spacing:12.930542px;}
.ws86{word-spacing:13.076100px;}
.ws9f{word-spacing:13.112172px;}
.ws9e{word-spacing:13.184316px;}
.ws1c0{word-spacing:13.234406px;}
.ws1e3{word-spacing:13.387757px;}
.ws1bb{word-spacing:13.388995px;}
.ws1ca{word-spacing:13.391645px;}
.ws1d5{word-spacing:13.392336px;}
.ws1d3{word-spacing:13.392624px;}
.ws1dc{word-spacing:13.392941px;}
.ws1bc{word-spacing:13.393498px;}
.ws1ee{word-spacing:13.394602px;}
.ws1b7{word-spacing:13.394995px;}
.ws1b2{word-spacing:13.395802px;}
.ws1ad{word-spacing:13.449600px;}
.ws1c3{word-spacing:13.503398px;}
.wsaf{word-spacing:14.717376px;}
.ws2e{word-spacing:14.776565px;}
.ws17b{word-spacing:14.861664px;}
.ws6f{word-spacing:14.884124px;}
.ws17a{word-spacing:14.933808px;}
.ws10b{word-spacing:15.001142px;}
.wsd5{word-spacing:15.098400px;}
.wsd6{word-spacing:15.128640px;}
.ws1f6{word-spacing:15.709133px;}
.wsc{word-spacing:16.109478px;}
.ws132{word-spacing:16.160256px;}
.ws17e{word-spacing:16.280496px;}
.ws1f9{word-spacing:16.300915px;}
.ws1fa{word-spacing:16.408512px;}
.ws17f{word-spacing:16.418772px;}
.ws1ed{word-spacing:16.616995px;}
.ws1e6{word-spacing:16.618320px;}
.ws1f3{word-spacing:16.619174px;}
.ws1df{word-spacing:16.619232px;}
.ws1c6{word-spacing:16.619549px;}
.ws1c2{word-spacing:16.619914px;}
.ws1c9{word-spacing:16.621373px;}
.ws1c7{word-spacing:16.622467px;}
.ws1af{word-spacing:16.623706px;}
.ws18d{word-spacing:16.683300px;}
.ws1cf{word-spacing:16.731302px;}
.ws1cd{word-spacing:16.946496px;}
.ws1c5{word-spacing:17.000294px;}
.ws1b3{word-spacing:17.269286px;}
.ws198{word-spacing:17.675280px;}
.ws197{word-spacing:17.693316px;}
.ws46{word-spacing:17.753353px;}
.ws1e0{word-spacing:18.183859px;}
.ws68{word-spacing:18.470660px;}
.ws1eb{word-spacing:21.626957px;}
.ws12c{word-spacing:24.836774px;}
.ws12b{word-spacing:24.851203px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws18e{word-spacing:27.709308px;}
.ws18f{word-spacing:27.775440px;}
.ws171{word-spacing:28.172232px;}
.ws172{word-spacing:28.190268px;}
.ws1e5{word-spacing:28.782144px;}
.ws1b9{word-spacing:29.320128px;}
.wse3{word-spacing:31.083312px;}
.ws1d1{word-spacing:32.494234px;}
.ws11{word-spacing:40.042186px;}
.ws6e{word-spacing:393.527616px;}
._6{margin-left:-35.544868px;}
._44{margin-left:-20.216221px;}
._7{margin-left:-11.943245px;}
._42{margin-left:-8.421330px;}
._8{margin-left:-6.636508px;}
._0{margin-left:-5.397721px;}
._d{margin-left:-4.375530px;}
._38{margin-left:-3.340980px;}
._4{margin-left:-2.301354px;}
._c{margin-left:-1.022170px;}
._34{width:1.028052px;}
._3{width:2.301354px;}
._9{width:3.698936px;}
._37{width:5.397721px;}
._12{width:11.955150px;}
._1{width:12.971573px;}
._13{width:14.821397px;}
._b{width:15.822612px;}
._10{width:17.000294px;}
._11{width:18.590212px;}
._17{width:19.630298px;}
._f{width:21.142771px;}
._41{width:22.254476px;}
._16{width:23.372260px;}
._18{width:24.875108px;}
._2{width:25.940136px;}
._1a{width:27.706176px;}
._e{width:29.361949px;}
._5{width:30.587087px;}
._3e{width:31.866379px;}
._40{width:32.924357px;}
._3d{width:36.522892px;}
._1b{width:38.443111px;}
._20{width:40.187405px;}
._36{width:42.524389px;}
._3b{width:44.473046px;}
._43{width:61.868160px;}
._a{width:69.328236px;}
._1f{width:74.833574px;}
._2a{width:88.175578px;}
._30{width:109.587341px;}
._2c{width:114.321600px;}
._1e{width:121.315392px;}
._26{width:150.635520px;}
._27{width:153.702029px;}
._2e{width:158.490086px;}
._39{width:160.253998px;}
._32{width:161.879386px;}
._22{width:171.563098px;}
._23{width:176.781542px;}
._24{width:179.848051px;}
._21{width:202.550976px;}
._1c{width:225.972584px;}
._1d{width:262.858982px;}
._29{width:282.387802px;}
._2d{width:324.189158px;}
._2b{width:333.334886px;}
._28{width:337.638758px;}
._31{width:353.778278px;}
._25{width:366.851290px;}
._2f{width:377.449574px;}
._33{width:406.984896px;}
._14{width:872.917232px;}
._3a{width:1579.678438px;}
._35{width:1598.688713px;}
._3f{width:1973.827008px;}
._19{width:1997.344602px;}
._3c{width:2378.095511px;}
._15{width:2402.005511px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fsf{font-size:38.304000px;}
.fs0{font-size:41.842800px;}
.fs12{font-size:43.200000px;}
.fs6{font-size:45.429600px;}
.fs16{font-size:45.521400px;}
.fs15{font-size:45.720960px;}
.fs13{font-size:46.007040px;}
.fs14{font-size:46.109280px;}
.fs17{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs10{font-size:48.096000px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs2{font-size:56.694600px;}
.fs11{font-size:59.539200px;}
.fs4{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs3{font-size:68.033520px;}
.fse{font-size:76.402800px;}
.fs5{font-size:107.596800px;}
.y13f{bottom:-628.962840px;}
.yf5{bottom:-591.956040px;}
.y164{bottom:-575.165074px;}
.y163{bottom:-559.829664px;}
.y11d{bottom:-558.307050px;}
.y162{bottom:-544.422110px;}
.y161{bottom:-529.014557px;}
.yce{bottom:-525.907050px;}
.y160{bottom:-513.679147px;}
.y15f{bottom:-498.271594px;}
.y15e{bottom:-482.934982px;}
.y15d{bottom:-467.527428px;}
.y15c{bottom:-452.119874px;}
.y15b{bottom:-436.784465px;}
.y15a{bottom:-421.376911px;}
.y159{bottom:-406.041502px;}
.y158{bottom:-390.633948px;}
.y157{bottom:-375.226394px;}
.y156{bottom:-359.890985px;}
.y155{bottom:-344.483431px;}
.y154{bottom:-329.148022px;}
.y153{bottom:-313.740468px;}
.y152{bottom:-298.332914px;}
.y151{bottom:-282.997505px;}
.y150{bottom:-267.589951px;}
.ye5{bottom:-264.096180px;}
.y14f{bottom:-252.182398px;}
.ye4{bottom:-244.836738px;}
.y14e{bottom:-236.846988px;}
.ye3{bottom:-225.665973px;}
.y88{bottom:-222.524550px;}
.y14d{bottom:-221.439434px;}
.y104{bottom:-217.984649px;}
.y132{bottom:-208.384341px;}
.ye2{bottom:-206.406531px;}
.y14c{bottom:-206.104025px;}
.y103{bottom:-202.648037px;}
.y14b{bottom:-190.696471px;}
.y131{bottom:-189.124899px;}
.y102{bottom:-187.240483px;}
.ye1{bottom:-187.147089px;}
.y14a{bottom:-175.288918px;}
.y101{bottom:-171.832930px;}
.y130{bottom:-169.955637px;}
.ye0{bottom:-167.976324px;}
.y149{bottom:-159.953508px;}
.y100{bottom:-156.497520px;}
.y12f{bottom:-150.696195px;}
.y8f{bottom:-149.264550px;}
.y148{bottom:-144.545954px;}
.ydf{bottom:-144.216900px;}
.y10b{bottom:-142.203240px;}
.yff{bottom:-141.089966px;}
.y12e{bottom:-131.526933px;}
.y147{bottom:-129.209342px;}
.yfe{bottom:-125.754557px;}
.y146{bottom:-113.801789px;}
.y12d{bottom:-112.267491px;}
.yfd{bottom:-110.347003px;}
.y8e{bottom:-110.203650px;}
.yde{bottom:-107.407950px;}
.y145{bottom:-98.394235px;}
.yfc{bottom:-94.939450px;}
.y8d{bottom:-92.744100px;}
.ydd{bottom:-90.037500px;}
.y12c{bottom:-88.596744px;}
.y114{bottom:-86.547960px;}
.yfb{bottom:-79.604040px;}
.y144{bottom:-79.458840px;}
.y8c{bottom:-75.464100px;}
.ydc{bottom:-72.757500px;}
.y113{bottom:-72.651600px;}
.y1bb{bottom:-64.728150px;}
.y112{bottom:-58.827600px;}
.y8b{bottom:-58.184100px;}
.ydb{bottom:-55.387050px;}
.y12b{bottom:-51.066834px;}
.yfa{bottom:-50.156760px;}
.y143{bottom:-50.011560px;}
.y111{bottom:-44.931240px;}
.y8a{bottom:-40.904100px;}
.yda{bottom:-38.107050px;}
.yf9{bottom:-36.260400px;}
.y142{bottom:-36.115200px;}
.y110{bottom:-31.107240px;}
.y12a{bottom:-30.816915px;}
.yf8{bottom:-22.364040px;}
.y141{bottom:-22.218840px;}
.yd9{bottom:-15.787050px;}
.y10f{bottom:-13.179120px;}
.y89{bottom:-9.404550px;}
.yf7{bottom:-4.436040px;}
.y140{bottom:-4.290840px;}
.y0{bottom:0.000000px;}
.y1de{bottom:0.267582px;}
.y129{bottom:2.932950px;}
.y1f{bottom:9.473101px;}
.y128{bottom:14.813212px;}
.y1e{bottom:28.937869px;}
.y127{bottom:31.192950px;}
.y4d{bottom:31.890000px;}
.y1d{bottom:32.769195px;}
.y10e{bottom:66.812760px;}
.yca{bottom:91.665000px;}
.y167{bottom:93.370500px;}
.y119{bottom:101.136000px;}
.y4c{bottom:103.621500px;}
.y1b{bottom:104.646000px;}
.y84{bottom:107.641500px;}
.y249{bottom:108.582000px;}
.y107{bottom:109.678500px;}
.yc9{bottom:110.494500px;}
.y166{bottom:112.602000px;}
.y211{bottom:115.890000px;}
.yf6{bottom:116.019960px;}
.y118{bottom:120.367500px;}
.y27e{bottom:121.762500px;}
.y19b{bottom:121.987500px;}
.y4b{bottom:122.449500px;}
.y1a{bottom:122.535000px;}
.y248{bottom:125.842500px;}
.y83{bottom:126.471000px;}
.y106{bottom:128.911500px;}
.yc8{bottom:129.324000px;}
.y165{bottom:131.835000px;}
.yd8{bottom:132.442950px;}
.y27d{bottom:139.023000px;}
.y117{bottom:139.600500px;}
.y19{bottom:140.422500px;}
.y19a{bottom:140.817000px;}
.y4a{bottom:141.279000px;}
.y210{bottom:142.431000px;}
.y247{bottom:143.103000px;}
.y1b5{bottom:143.506500px;}
.y82{bottom:145.300500px;}
.y94{bottom:145.401000px;}
.y105{bottom:148.144500px;}
.yc7{bottom:148.153500px;}
.y13c{bottom:154.264500px;}
.y27c{bottom:156.283500px;}
.y18{bottom:158.310000px;}
.y116{bottom:158.833500px;}
.y199{bottom:159.646500px;}
.y20f{bottom:160.005000px;}
.y49{bottom:160.108500px;}
.y246{bottom:160.363500px;}
.y1b4{bottom:162.336000px;}
.y81{bottom:164.130000px;}
.y93{bottom:164.634000px;}
.yc6{bottom:166.983000px;}
.yf2{bottom:170.574000px;}
.y27b{bottom:173.544000px;}
.y17{bottom:176.199000px;}
.y245{bottom:177.624000px;}
.y115{bottom:178.066500px;}
.y198{bottom:178.476000px;}
.y48{bottom:178.938000px;}
.y1b3{bottom:181.165500px;}
.y80{bottom:182.959500px;}
.y92{bottom:183.867000px;}
.y1f0{bottom:185.812500px;}
.y20e{bottom:186.546000px;}
.yc5{bottom:190.296000px;}
.y27a{bottom:190.804500px;}
.y16{bottom:194.086500px;}
.y244{bottom:194.884500px;}
.y197{bottom:197.305500px;}
.y47{bottom:197.767500px;}
.y1b2{bottom:199.995000px;}
.y108{bottom:200.496000px;}
.y7f{bottom:201.789000px;}
.y91{bottom:203.100000px;}
.y20d{bottom:204.120000px;}
.y1ef{bottom:204.642000px;}
.y279{bottom:208.065000px;}
.y15{bottom:211.974000px;}
.y243{bottom:212.145000px;}
.y196{bottom:216.135000px;}
.y46{bottom:216.597000px;}
.y1b1{bottom:218.824500px;}
.y7e{bottom:220.618500px;}
.y20c{bottom:221.694000px;}
.y90{bottom:222.333000px;}
.y1ee{bottom:223.471500px;}
.y278{bottom:225.325500px;}
.y242{bottom:229.405500px;}
.y14{bottom:229.863000px;}
.yc4{bottom:232.614000px;}
.y195{bottom:234.964500px;}
.y45{bottom:235.426500px;}
.y1b0{bottom:237.654000px;}
.y20b{bottom:239.268000px;}
.y7d{bottom:239.446500px;}
.yc3{bottom:240.834000px;}
.y1ec{bottom:242.301000px;}
.y277{bottom:242.586000px;}
.y85{bottom:244.762500px;}
.y241{bottom:246.666000px;}
.y1ed{bottom:247.726500px;}
.y194{bottom:253.794000px;}
.y44{bottom:254.256000px;}
.y1af{bottom:256.483500px;}
.y7c{bottom:258.276000px;}
.y276{bottom:259.846500px;}
.y1eb{bottom:261.130500px;}
.y240{bottom:263.925000px;}
.yc2{bottom:265.491000px;}
.y20a{bottom:265.809000px;}
.y193{bottom:272.623500px;}
.y43{bottom:273.085500px;}
.y1ae{bottom:275.313000px;}
.y7b{bottom:277.105500px;}
.y13e{bottom:278.309268px;}
.y1ea{bottom:279.960000px;}
.y23f{bottom:281.185500px;}
.yc1{bottom:281.929500px;}
.y209{bottom:283.383000px;}
.y13d{bottom:286.013160px;}
.y192{bottom:291.453000px;}
.y42{bottom:291.915000px;}
.y1ad{bottom:294.142500px;}
.y275{bottom:294.366000px;}
.y7a{bottom:295.935000px;}
.yc0{bottom:298.368000px;}
.y23e{bottom:298.446000px;}
.y1e9{bottom:298.789500px;}
.y13{bottom:300.154500px;}
.y208{bottom:300.957000px;}
.y191{bottom:310.282500px;}
.y41{bottom:310.744500px;}
.y274{bottom:311.626500px;}
.y1ac{bottom:312.972000px;}
.y79{bottom:314.764500px;}
.ybf{bottom:314.806500px;}
.yf4{bottom:315.316068px;}
.y23d{bottom:315.706500px;}
.y1e8{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y207{bottom:318.531000px;}
.y10d{bottom:320.396760px;}
.yf3{bottom:323.019960px;}
.y273{bottom:328.887000px;}
.y190{bottom:329.112000px;}
.y40{bottom:329.574000px;}
.ybe{bottom:331.245000px;}
.y1ab{bottom:331.801500px;}
.y23c{bottom:332.967000px;}
.y78{bottom:333.594000px;}
.y11{bottom:335.931000px;}
.y206{bottom:336.105000px;}
.y1e7{bottom:336.448500px;}
.y272{bottom:346.147500px;}
.ybd{bottom:347.683500px;}
.y18f{bottom:347.940000px;}
.y23b{bottom:350.227500px;}
.y1a9{bottom:350.631000px;}
.y77{bottom:352.423500px;}
.y3f{bottom:352.887000px;}
.y205{bottom:353.679000px;}
.y10{bottom:353.818500px;}
.y1e6{bottom:355.278000px;}
.y1aa{bottom:356.055000px;}
.y1dd{bottom:357.747114px;}
.y271{bottom:363.408000px;}
.ybc{bottom:364.120500px;}
.y18e{bottom:366.769500px;}
.y126{bottom:367.256883px;}
.y23a{bottom:367.488000px;}
.y1a8{bottom:369.460500px;}
.y76{bottom:371.253000px;}
.y1e5{bottom:374.107500px;}
.y1dc{bottom:377.006556px;}
.ybb{bottom:380.559000px;}
.y270{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y239{bottom:384.748500px;}
.y18d{bottom:385.599000px;}
.y125{bottom:386.516325px;}
.y1a7{bottom:388.290000px;}
.y204{bottom:389.187000px;}
.y75{bottom:390.082500px;}
.y1e4{bottom:392.937000px;}
.yd7{bottom:395.156901px;}
.y1db{bottom:396.175818px;}
.yba{bottom:396.997500px;}
.y26f{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y238{bottom:402.007500px;}
.y18c{bottom:404.428500px;}
.y124{bottom:405.775767px;}
.y1a6{bottom:407.119500px;}
.y203{bottom:408.015000px;}
.y74{bottom:408.912000px;}
.y1e3{bottom:411.766500px;}
.yb9{bottom:413.436000px;}
.yd6{bottom:414.416343px;}
.y26e{bottom:415.188000px;}
.y13b{bottom:415.362000px;}
.y1da{bottom:415.435260px;}
.yd{bottom:416.449500px;}
.y237{bottom:419.268000px;}
.y18b{bottom:423.258000px;}
.y123{bottom:424.945029px;}
.y1a5{bottom:425.949000px;}
.y202{bottom:426.844500px;}
.y73{bottom:427.741500px;}
.y3e{bottom:428.037000px;}
.yb8{bottom:429.874500px;}
.y1e2{bottom:430.596000px;}
.y26d{bottom:432.448500px;}
.yd5{bottom:433.675785px;}
.y13a{bottom:434.191500px;}
.y1d9{bottom:434.604522px;}
.y236{bottom:436.528500px;}
.y18a{bottom:442.087500px;}
.y122{bottom:444.204471px;}
.y1a4{bottom:444.778500px;}
.yc{bottom:444.798000px;}
.y201{bottom:445.674000px;}
.yb7{bottom:446.313000px;}
.y72{bottom:446.571000px;}
.y3d{bottom:447.493500px;}
.y26c{bottom:449.709000px;}
.yd4{bottom:452.845047px;}
.y139{bottom:453.021000px;}
.y235{bottom:453.789000px;}
.y1d8{bottom:453.863964px;}
.yf1{bottom:455.599500px;}
.y189{bottom:460.917000px;}
.y1e1{bottom:462.210000px;}
.yb{bottom:462.685500px;}
.yb6{bottom:462.751500px;}
.y121{bottom:463.373733px;}
.y1a3{bottom:463.608000px;}
.y200{bottom:464.503500px;}
.y71{bottom:465.400500px;}
.y26b{bottom:466.969500px;}
.y234{bottom:471.049500px;}
.y138{bottom:471.850500px;}
.yd3{bottom:472.104489px;}
.y1d7{bottom:473.123406px;}
.yf0{bottom:474.429000px;}
.yb5{bottom:479.190000px;}
.y188{bottom:479.746500px;}
.y1e0{bottom:481.443000px;}
.y1a2{bottom:482.437500px;}
.y120{bottom:482.633175px;}
.y1ff{bottom:483.333000px;}
.y70{bottom:484.230000px;}
.y3c{bottom:484.884000px;}
.y233{bottom:488.310000px;}
.ya{bottom:489.540000px;}
.y137{bottom:490.680000px;}
.yd2{bottom:491.273751px;}
.y1d6{bottom:492.292668px;}
.yef{bottom:493.258500px;}
.yb4{bottom:495.628500px;}
.y187{bottom:498.576000px;}
.y1df{bottom:500.676000px;}
.y1a1{bottom:501.267000px;}
.y26a{bottom:501.490500px;}
.y11f{bottom:501.892617px;}
.y1fe{bottom:502.162500px;}
.y6f{bottom:503.059500px;}
.y3b{bottom:504.340500px;}
.y232{bottom:505.570500px;}
.y9{bottom:507.429000px;}
.y136{bottom:509.509500px;}
.yd1{bottom:510.533193px;}
.y1d5{bottom:511.552110px;}
.yb3{bottom:512.067000px;}
.yee{bottom:512.088000px;}
.y186{bottom:517.405500px;}
.y269{bottom:518.751000px;}
.y1a0{bottom:520.095000px;}
.y1fd{bottom:520.992000px;}
.y11e{bottom:521.063382px;}
.y6e{bottom:521.889000px;}
.y231{bottom:522.831000px;}
.y1b8{bottom:523.104600px;}
.y3a{bottom:523.798500px;}
.y8{bottom:525.316500px;}
.y135{bottom:528.339000px;}
.yb2{bottom:528.504000px;}
.yd0{bottom:529.792635px;}
.y1d4{bottom:530.811552px;}
.yed{bottom:530.917500px;}
.y268{bottom:536.011500px;}
.y185{bottom:536.235000px;}
.y19f{bottom:538.924500px;}
.y1fc{bottom:539.821500px;}
.y230{bottom:540.091500px;}
.y6d{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.y39{bottom:543.255000px;}
.yb1{bottom:544.942500px;}
.yec{bottom:549.747000px;}
.y1d3{bottom:549.980814px;}
.y134{bottom:551.652000px;}
.y267{bottom:553.272000px;}
.ycf{bottom:553.463382px;}
.y184{bottom:555.064500px;}
.y22f{bottom:557.350500px;}
.y19e{bottom:557.754000px;}
.y1fb{bottom:558.651000px;}
.y6c{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.yb0{bottom:561.381000px;}
.y38{bottom:562.711500px;}
.y1d2{bottom:569.240256px;}
.y266{bottom:570.531000px;}
.yeb{bottom:573.060000px;}
.y183{bottom:573.894000px;}
.y22e{bottom:574.611000px;}
.y10c{bottom:575.276760px;}
.y11c{bottom:575.783085px;}
.y1fa{bottom:577.480500px;}
.yaf{bottom:577.819500px;}
.y6b{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y19d{bottom:581.067000px;}
.y133{bottom:582.079500px;}
.y37{bottom:582.169500px;}
.y11b{bottom:585.412950px;}
.y265{bottom:587.791500px;}
.y22d{bottom:591.871500px;}
.y182{bottom:592.723500px;}
.y1d1{bottom:592.911003px;}
.yae{bottom:594.258000px;}
.y1f9{bottom:596.310000px;}
.y4{bottom:596.868000px;}
.y6a{bottom:597.207000px;}
.y19c{bottom:601.242000px;}
.y36{bottom:601.626000px;}
.yea{bottom:603.487500px;}
.y11a{bottom:604.507500px;}
.y264{bottom:605.052000px;}
.ycd{bottom:608.183085px;}
.y22c{bottom:609.132000px;}
.yad{bottom:610.696500px;}
.y181{bottom:611.553000px;}
.y3{bottom:614.757000px;}
.y1f8{bottom:615.139500px;}
.y69{bottom:616.036500px;}
.ycc{bottom:617.812950px;}
.y35{bottom:621.082500px;}
.y263{bottom:622.312500px;}
.ye9{bottom:622.719000px;}
.y22b{bottom:626.392500px;}
.yac{bottom:627.135000px;}
.y1d0{bottom:630.170373px;}
.y180{bottom:630.382500px;}
.y2{bottom:632.644500px;}
.y68{bottom:634.866000px;}
.y1f7{bottom:638.452500px;}
.y262{bottom:639.573000px;}
.y34{bottom:640.540500px;}
.ye8{bottom:641.952000px;}
.yab{bottom:643.573500px;}
.y22a{bottom:643.653000px;}
.y17f{bottom:649.212000px;}
.y1cf{bottom:649.429815px;}
.y1{bottom:650.532000px;}
.y67{bottom:653.695500px;}
.y261{bottom:656.833500px;}
.y33{bottom:659.997000px;}
.yaa{bottom:660.012000px;}
.y229{bottom:660.913500px;}
.ye7{bottom:661.185000px;}
.y17e{bottom:668.041500px;}
.y1ce{bottom:668.600580px;}
.y1f6{bottom:672.076500px;}
.y66{bottom:672.525000px;}
.y260{bottom:674.094000px;}
.ya9{bottom:676.450500px;}
.y228{bottom:678.174000px;}
.y32{bottom:679.455000px;}
.ye6{bottom:680.418000px;}
.y17d{bottom:686.871000px;}
.y1cd{bottom:687.860022px;}
.y1f5{bottom:690.906000px;}
.y65{bottom:691.354500px;}
.ya8{bottom:692.889000px;}
.y227{bottom:695.433000px;}
.y31{bottom:698.911500px;}
.ycb{bottom:702.847500px;}
.y17c{bottom:705.700500px;}
.y1cc{bottom:707.029284px;}
.y25f{bottom:708.613500px;}
.y1f4{bottom:709.735500px;}
.y64{bottom:710.184000px;}
.y226{bottom:712.693500px;}
.ya7{bottom:716.529000px;}
.y30{bottom:718.368000px;}
.y17b{bottom:724.530000px;}
.y25e{bottom:725.874000px;}
.y1cb{bottom:726.288726px;}
.y1f3{bottom:728.565000px;}
.y63{bottom:729.013500px;}
.y225{bottom:729.954000px;}
.y2f{bottom:737.826000px;}
.y25d{bottom:743.134500px;}
.y17a{bottom:743.359500px;}
.y1ca{bottom:745.548168px;}
.y224{bottom:747.214500px;}
.y1f2{bottom:747.394500px;}
.y62{bottom:747.843000px;}
.ya6{bottom:748.149000px;}
.y25c{bottom:760.395000px;}
.y179{bottom:762.189000px;}
.y223{bottom:764.475000px;}
.y1c9{bottom:764.718933px;}
.y10a{bottom:765.068868px;}
.y61{bottom:766.671000px;}
.ya5{bottom:767.382000px;}
.y1f1{bottom:770.706000px;}
.y109{bottom:772.772760px;}
.y2e{bottom:774.114000px;}
.y25b{bottom:777.655500px;}
.y178{bottom:781.018500px;}
.y222{bottom:781.735500px;}
.y1c8{bottom:783.978375px;}
.y60{bottom:785.500500px;}
.y2d{bottom:790.254000px;}
.y25a{bottom:794.916000px;}
.ya4{bottom:798.502500px;}
.y221{bottom:798.996000px;}
.y177{bottom:799.848000px;}
.y1c7{bottom:803.147637px;}
.y5f{bottom:804.330000px;}
.y2c{bottom:810.733500px;}
.y259{bottom:812.176500px;}
.y220{bottom:816.256500px;}
.ya3{bottom:817.332000px;}
.y176{bottom:818.677500px;}
.y1c6{bottom:822.407079px;}
.y5e{bottom:823.159500px;}
.y2b{bottom:826.873500px;}
.y258{bottom:829.437000px;}
.y21f{bottom:833.517000px;}
.ya2{bottom:836.161500px;}
.y175{bottom:837.507000px;}
.y1c5{bottom:841.666521px;}
.y5d{bottom:841.989000px;}
.y2a{bottom:843.012000px;}
.y257{bottom:846.697500px;}
.y21e{bottom:850.776000px;}
.y29{bottom:854.812500px;}
.ya1{bottom:854.991000px;}
.y174{bottom:856.335000px;}
.y5c{bottom:860.818500px;}
.y1c4{bottom:860.835783px;}
.y256{bottom:863.956500px;}
.y21d{bottom:868.036500px;}
.ya0{bottom:873.820500px;}
.y173{bottom:875.164500px;}
.y28{bottom:875.292000px;}
.y5b{bottom:879.648000px;}
.y1c3{bottom:880.095225px;}
.y255{bottom:881.217000px;}
.y21c{bottom:885.297000px;}
.y27{bottom:887.091000px;}
.y9f{bottom:892.650000px;}
.y172{bottom:893.994000px;}
.y5a{bottom:898.477500px;}
.y1c2{bottom:899.354667px;}
.y1b7{bottom:899.419500px;}
.y21b{bottom:902.557500px;}
.y26{bottom:907.570500px;}
.y9e{bottom:911.479500px;}
.y87{bottom:911.565585px;}
.y171{bottom:912.823500px;}
.y254{bottom:915.738000px;}
.y59{bottom:917.307000px;}
.y1c1{bottom:918.523929px;}
.y21a{bottom:919.818000px;}
.y86{bottom:921.195450px;}
.y9d{bottom:930.309000px;}
.y170{bottom:931.653000px;}
.y253{bottom:932.998500px;}
.y58{bottom:936.136500px;}
.y219{bottom:937.078500px;}
.y1c0{bottom:937.783371px;}
.y9c{bottom:949.138500px;}
.y25{bottom:949.951500px;}
.y252{bottom:950.259000px;}
.y16f{bottom:950.482500px;}
.y218{bottom:954.339000px;}
.y57{bottom:954.966000px;}
.y1bf{bottom:956.952633px;}
.y251{bottom:967.519500px;}
.y9b{bottom:967.968000px;}
.y24{bottom:968.781000px;}
.y16e{bottom:969.312000px;}
.y217{bottom:971.599500px;}
.y56{bottom:973.795500px;}
.y1be{bottom:976.212075px;}
.y250{bottom:984.780000px;}
.y9a{bottom:986.797500px;}
.y16d{bottom:988.141500px;}
.y216{bottom:988.860000px;}
.y55{bottom:992.625000px;}
.y1bd{bottom:995.471517px;}
.y27f{bottom:1002.039000px;}
.y24f{bottom:1002.040500px;}
.y99{bottom:1005.627000px;}
.y215{bottom:1006.119000px;}
.y16c{bottom:1006.971000px;}
.y23{bottom:1008.699000px;}
.y54{bottom:1011.454500px;}
.y1bc{bottom:1014.642282px;}
.y24e{bottom:1019.299500px;}
.y98{bottom:1024.456500px;}
.y16b{bottom:1025.800500px;}
.y214{bottom:1027.863000px;}
.y53{bottom:1030.284000px;}
.y24d{bottom:1036.560000px;}
.y22{bottom:1036.944000px;}
.y97{bottom:1043.284500px;}
.y16a{bottom:1044.630000px;}
.y52{bottom:1049.113500px;}
.y24c{bottom:1053.820500px;}
.y213{bottom:1061.487000px;}
.y96{bottom:1062.114000px;}
.y169{bottom:1063.459500px;}
.y21{bottom:1065.187500px;}
.y51{bottom:1067.943000px;}
.y1ba{bottom:1069.361985px;}
.y24b{bottom:1071.081000px;}
.y1b9{bottom:1078.991850px;}
.y168{bottom:1082.289000px;}
.y95{bottom:1085.427000px;}
.y50{bottom:1086.772500px;}
.y1b6{bottom:1087.713000px;}
.y212{bottom:1088.028000px;}
.y24a{bottom:1088.341500px;}
.y20{bottom:1093.432500px;}
.y4f{bottom:1105.602000px;}
.y1c{bottom:1136.919000px;}
.y4e{bottom:1168.366500px;}
.h29{height:30.106714px;}
.ha{height:31.131341px;}
.h24{height:33.665629px;}
.h22{height:33.876278px;}
.h23{height:33.951560px;}
.h1d{height:34.208016px;}
.h28{height:35.414438px;}
.h4{height:35.876343px;}
.h2{height:36.319550px;}
.h2b{height:37.551283px;}
.h20{height:38.580469px;}
.hc{height:38.896243px;}
.h5{height:39.402747px;}
.h16{height:39.614278px;}
.h14{height:39.761719px;}
.h26{height:40.653633px;}
.hb{height:41.508281px;}
.h10{height:41.723369px;}
.h12{height:42.760020px;}
.h1e{height:42.952922px;}
.he{height:43.217759px;}
.h1a{height:43.622227px;}
.h7{height:43.815515px;}
.h1f{height:43.840388px;}
.h6{height:46.126727px;}
.hd{height:46.697011px;}
.h15{height:48.225586px;}
.h3{height:50.931027px;}
.hf{height:51.885221px;}
.h13{height:53.691152px;}
.h9{height:54.541601px;}
.h1b{height:56.257530px;}
.h2c{height:58.691011px;}
.h8{height:77.792486px;}
.h17{height:79.571011px;}
.h18{height:79.577011px;}
.h27{height:243.433200px;}
.h1c{height:273.339600px;}
.h25{height:335.784000px;}
.h2a{height:336.348900px;}
.h19{height:350.511000px;}
.h21{height:720.964800px;}
.h11{height:875.785500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w6{width:237.126000px;}
.w8{width:249.319200px;}
.w9{width:286.948500px;}
.w4{width:354.436500px;}
.w5{width:443.784000px;}
.w7{width:454.584000px;}
.w3{width:538.039500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4f{left:-230.728500px;}
.x5c{left:-210.111000px;}
.xb4{left:-205.408500px;}
.x74{left:-194.401500px;}
.x6c{left:-159.948000px;}
.x62{left:-158.662800px;}
.x7d{left:-157.004400px;}
.x51{left:-35.158650px;}
.x5d{left:-14.540640px;}
.xb5{left:-9.838140px;}
.x6e{left:-3.492000px;}
.x64{left:-2.206800px;}
.x0{left:0.000000px;}
.x76{left:1.167357px;}
.x5e{left:17.319954px;}
.x63{left:20.545200px;}
.xb6{left:22.022454px;}
.x65{left:23.281200px;}
.x7f{left:24.940075px;}
.x5f{left:26.139000px;}
.x75{left:33.027951px;}
.x77{left:39.418500px;}
.x6d{left:50.580000px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.xc2{left:85.848000px;}
.xcd{left:135.375000px;}
.x2{left:181.274369px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x6f{left:253.714500px;}
.x7e{left:255.915600px;}
.x56{left:260.779500px;}
.xa4{left:262.216500px;}
.x70{left:264.178500px;}
.xb9{left:267.034500px;}
.x5{left:269.914500px;}
.x9{left:281.479500px;}
.xc{left:283.003500px;}
.x59{left:286.233000px;}
.xd{left:290.475000px;}
.xe{left:294.136500px;}
.x55{left:300.418500px;}
.xf{left:301.609500px;}
.x71{left:304.735500px;}
.x61{left:306.208500px;}
.x7{left:308.151000px;}
.xc0{left:309.421500px;}
.x8e{left:312.247500px;}
.x72{left:313.707000px;}
.x31{left:319.678500px;}
.x8{left:321.388500px;}
.x8f{left:323.478000px;}
.x32{left:334.621500px;}
.xa1{left:339.762000px;}
.x1a{left:344.329500px;}
.x8b{left:346.743000px;}
.x24{left:348.430500px;}
.x87{left:349.623000px;}
.x1b{left:351.801000px;}
.x8c{left:361.686000px;}
.x25{left:363.375000px;}
.x88{left:364.567500px;}
.x26{left:367.132500px;}
.x97{left:372.873000px;}
.xa5{left:375.072000px;}
.x89{left:380.715000px;}
.x27{left:382.077000px;}
.x3c{left:384.586500px;}
.x90{left:387.838500px;}
.xa6{left:390.015000px;}
.x98{left:391.575000px;}
.xbb{left:394.062000px;}
.x8a{left:395.658000px;}
.x60{left:397.749000px;}
.x3d{left:399.531000px;}
.x3e{left:403.192500px;}
.x7b{left:404.295000px;}
.x22{left:406.513500px;}
.x4d{left:412.164000px;}
.x3f{left:418.137000px;}
.x7c{left:419.239500px;}
.x23{left:421.456500px;}
.x2d{left:423.252000px;}
.x4e{left:427.107000px;}
.x29{left:434.280000px;}
.x2e{left:438.195000px;}
.x2f{left:441.909000px;}
.x2a{left:449.223000px;}
.x2b{left:453.004500px;}
.x82{left:455.290500px;}
.x30{left:456.853500px;}
.xba{left:461.427000px;}
.x33{left:463.330500px;}
.x2c{left:467.947500px;}
.x1c{left:471.084000px;}
.x34{left:478.275000px;}
.x1d{left:486.028500px;}
.x3a{left:490.342500px;}
.xc1{left:492.379500px;}
.x35{left:500.541000px;}
.xab{left:501.924000px;}
.x3b{left:503.977500px;}
.x94{left:517.576500px;}
.xa0{left:519.040500px;}
.xae{left:521.913000px;}
.xaf{left:528.720000px;}
.xa2{left:535.459500px;}
.x6a{left:542.487000px;}
.x92{left:545.338500px;}
.x20{left:546.384000px;}
.x83{left:548.310000px;}
.x6b{left:554.574000px;}
.xb1{left:556.809000px;}
.x54{left:557.832000px;}
.x50{left:558.841350px;}
.x93{left:560.283000px;}
.x21{left:561.327000px;}
.x84{left:563.254500px;}
.xb2{left:575.421000px;}
.x95{left:579.819000px;}
.xb3{left:582.226500px;}
.xb7{left:588.919500px;}
.x96{left:591.303000px;}
.x52{left:595.681500px;}
.xb8{left:597.228000px;}
.x53{left:607.972500px;}
.xbe{left:610.252500px;}
.x57{left:619.038000px;}
.x12{left:620.254500px;}
.xbf{left:623.817000px;}
.x13{left:627.726000px;}
.x14{left:631.470000px;}
.x9f{left:632.583000px;}
.x66{left:634.519500px;}
.xc5{left:636.733500px;}
.x15{left:638.941500px;}
.x16{left:641.169000px;}
.x5a{left:642.363000px;}
.xa{left:643.891500px;}
.xac{left:645.177000px;}
.x9d{left:646.821000px;}
.x17{left:648.640500px;}
.xb{left:651.363000px;}
.x5b{left:655.474500px;}
.x1e{left:660.289500px;}
.x9e{left:661.765500px;}
.x1f{left:675.234000px;}
.xc7{left:676.305000px;}
.x80{left:678.181500px;}
.x43{left:679.636500px;}
.x67{left:683.766000px;}
.xcb{left:686.563500px;}
.x81{left:693.124500px;}
.x68{left:694.873500px;}
.x73{left:697.366500px;}
.xa9{left:698.953500px;}
.x10{left:700.116000px;}
.xc8{left:703.204500px;}
.x11{left:707.587500px;}
.x85{left:713.944500px;}
.xaa{left:715.519500px;}
.xce{left:718.716000px;}
.x69{left:719.848500px;}
.x4a{left:722.641500px;}
.xbc{left:727.245000px;}
.x86{left:728.887500px;}
.x4b{left:730.128000px;}
.x44{left:735.474000px;}
.xbd{left:736.476000px;}
.xb0{left:737.509500px;}
.xc9{left:739.036500px;}
.x4c{left:745.072500px;}
.x91{left:746.176500px;}
.x45{left:750.418500px;}
.x46{left:754.083000px;}
.x58{left:759.441000px;}
.xa3{left:763.099500px;}
.xad{left:765.928500px;}
.x40{left:767.461500px;}
.x47{left:769.027500px;}
.x8d{left:770.455500px;}
.x99{left:771.951000px;}
.x78{left:774.024000px;}
.xc6{left:776.440500px;}
.x79{left:777.835500px;}
.x36{left:780.496500px;}
.x41{left:782.406000px;}
.x48{left:785.589000px;}
.x9a{left:786.894000px;}
.xa7{left:789.283500px;}
.x9b{left:790.555500px;}
.x7a{left:792.778500px;}
.x37{left:795.439500px;}
.xca{left:796.672500px;}
.x38{left:799.180500px;}
.x49{left:800.532000px;}
.xa8{left:804.228000px;}
.x9c{left:805.500000px;}
.xc3{left:810.265500px;}
.x39{left:814.123500px;}
.xcc{left:816.088500px;}
.x28{left:817.698000px;}
.x18{left:824.422500px;}
.x19{left:831.894000px;}
.x42{left:832.929000px;}
.xc4{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.661333pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.ls43{letter-spacing:-1.004672pt;}
.ls46{letter-spacing:-0.936269pt;}
.ls48{letter-spacing:-0.923443pt;}
.ls47{letter-spacing:-0.897792pt;}
.ls45{letter-spacing:-0.846490pt;}
.ls8f{letter-spacing:-0.668000pt;}
.ls44{letter-spacing:-0.641280pt;}
.ls9a{letter-spacing:-0.630592pt;}
.ls92{letter-spacing:-0.619904pt;}
.ls91{letter-spacing:-0.609216pt;}
.ls96{letter-spacing:-0.603872pt;}
.ls99{letter-spacing:-0.598528pt;}
.ls97{letter-spacing:-0.593184pt;}
.ls93{letter-spacing:-0.582496pt;}
.ls8e{letter-spacing:-0.571808pt;}
.ls3a{letter-spacing:-0.566284pt;}
.ls94{letter-spacing:-0.561120pt;}
.ls98{letter-spacing:-0.555776pt;}
.ls90{letter-spacing:-0.550432pt;}
.ls95{letter-spacing:-0.545088pt;}
.ls70{letter-spacing:-0.518400pt;}
.ls71{letter-spacing:-0.491520pt;}
.ls73{letter-spacing:-0.472320pt;}
.ls75{letter-spacing:-0.468480pt;}
.ls72{letter-spacing:-0.453120pt;}
.ls74{letter-spacing:-0.441600pt;}
.ls36{letter-spacing:-0.235136pt;}
.ls35{letter-spacing:-0.203072pt;}
.ls53{letter-spacing:-0.196297pt;}
.ls6e{letter-spacing:-0.192384pt;}
.ls2a{letter-spacing:-0.154976pt;}
.ls8c{letter-spacing:-0.138944pt;}
.ls7c{letter-spacing:-0.132531pt;}
.ls8b{letter-spacing:-0.122912pt;}
.ls81{letter-spacing:-0.119706pt;}
.ls2c{letter-spacing:-0.117568pt;}
.ls6f{letter-spacing:-0.112224pt;}
.ls3c{letter-spacing:-0.111155pt;}
.ls6d{letter-spacing:-0.106880pt;}
.ls7d{letter-spacing:-0.102605pt;}
.ls77{letter-spacing:-0.098330pt;}
.ls2d{letter-spacing:-0.096192pt;}
.ls7e{letter-spacing:-0.094054pt;}
.ls29{letter-spacing:-0.090848pt;}
.ls38{letter-spacing:-0.085504pt;}
.ls69{letter-spacing:-0.080160pt;}
.ls82{letter-spacing:-0.076954pt;}
.ls67{letter-spacing:-0.074816pt;}
.ls42{letter-spacing:-0.068403pt;}
.ls32{letter-spacing:-0.067200pt;}
.ls7f{letter-spacing:-0.064128pt;}
.ls12{letter-spacing:-0.063840pt;}
.ls34{letter-spacing:-0.058784pt;}
.ls7b{letter-spacing:-0.055578pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls79{letter-spacing:-0.051302pt;}
.ls39{letter-spacing:-0.051072pt;}
.ls78{letter-spacing:-0.047027pt;}
.ls41{letter-spacing:-0.042752pt;}
.ls57{letter-spacing:-0.042240pt;}
.ls7a{letter-spacing:-0.038477pt;}
.ls13{letter-spacing:-0.038400pt;}
.ls8a{letter-spacing:-0.037408pt;}
.ls3d{letter-spacing:-0.034202pt;}
.ls64{letter-spacing:-0.032064pt;}
.ls2f{letter-spacing:-0.027165pt;}
.ls66{letter-spacing:-0.026720pt;}
.ls76{letter-spacing:-0.025651pt;}
.ls31{letter-spacing:-0.024000pt;}
.ls2b{letter-spacing:-0.021376pt;}
.ls30{letter-spacing:-0.019200pt;}
.ls28{letter-spacing:-0.016032pt;}
.ls3b{letter-spacing:-0.015360pt;}
.ls40{letter-spacing:-0.012826pt;}
.ls54{letter-spacing:-0.012296pt;}
.ls65{letter-spacing:-0.010688pt;}
.ls14{letter-spacing:-0.009600pt;}
.ls83{letter-spacing:-0.008550pt;}
.ls55{letter-spacing:-0.008197pt;}
.ls56{letter-spacing:-0.007680pt;}
.ls80{letter-spacing:-0.004275pt;}
.ls58{letter-spacing:-0.003840pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa3{letter-spacing:0.000600pt;}
.ls9d{letter-spacing:0.000711pt;}
.lsa9{letter-spacing:0.000732pt;}
.lsa6{letter-spacing:0.000921pt;}
.lsad{letter-spacing:0.001026pt;}
.ls2{letter-spacing:0.002422pt;}
.ls52{letter-spacing:0.003840pt;}
.ls85{letter-spacing:0.004116pt;}
.ls4{letter-spacing:0.004237pt;}
.lsaa{letter-spacing:0.004267pt;}
.ls60{letter-spacing:0.004275pt;}
.ls10{letter-spacing:0.004800pt;}
.ls17{letter-spacing:0.005344pt;}
.ls25{letter-spacing:0.007680pt;}
.ls1d{letter-spacing:0.009600pt;}
.ls88{letter-spacing:0.010688pt;}
.ls51{letter-spacing:0.011520pt;}
.lsd{letter-spacing:0.014400pt;}
.ls16{letter-spacing:0.016032pt;}
.ls5a{letter-spacing:0.016185pt;}
.ls24{letter-spacing:0.019200pt;}
.ls5e{letter-spacing:0.021376pt;}
.ls4d{letter-spacing:0.023040pt;}
.ls21{letter-spacing:0.023834pt;}
.lsc{letter-spacing:0.024000pt;}
.ls59{letter-spacing:0.026720pt;}
.ls4f{letter-spacing:0.026880pt;}
.ls4a{letter-spacing:0.028627pt;}
.lsa{letter-spacing:0.029792pt;}
.ls63{letter-spacing:0.029926pt;}
.ls19{letter-spacing:0.032064pt;}
.ls4b{letter-spacing:0.032716pt;}
.ls5f{letter-spacing:0.034202pt;}
.ls18{letter-spacing:0.037408pt;}
.ls4e{letter-spacing:0.038400pt;}
.ls26{letter-spacing:0.038477pt;}
.ls3f{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.043200pt;}
.ls84{letter-spacing:0.047027pt;}
.lse{letter-spacing:0.048000pt;}
.ls87{letter-spacing:0.048096pt;}
.ls62{letter-spacing:0.051302pt;}
.ls1f{letter-spacing:0.053440pt;}
.ls3e{letter-spacing:0.055578pt;}
.ls1e{letter-spacing:0.057600pt;}
.ls89{letter-spacing:0.058784pt;}
.ls15{letter-spacing:0.064128pt;}
.ls27{letter-spacing:0.068403pt;}
.ls33{letter-spacing:0.069472pt;}
.ls2e{letter-spacing:0.074816pt;}
.ls50{letter-spacing:0.076800pt;}
.ls4c{letter-spacing:0.077218pt;}
.ls5c{letter-spacing:0.080160pt;}
.ls22{letter-spacing:0.119168pt;}
.ls5d{letter-spacing:0.122573pt;}
.ls61{letter-spacing:0.128256pt;}
.ls20{letter-spacing:0.129382pt;}
.ls1b{letter-spacing:0.133600pt;}
.ls1c{letter-spacing:0.142619pt;}
.lsb{letter-spacing:0.148960pt;}
.ls86{letter-spacing:0.153216pt;}
.ls1a{letter-spacing:0.160320pt;}
.ls9{letter-spacing:0.161728pt;}
.ls23{letter-spacing:0.545114pt;}
.ls6c{letter-spacing:0.744528pt;}
.ls6a{letter-spacing:0.752620pt;}
.ls5b{letter-spacing:0.789038pt;}
.ls68{letter-spacing:1.998656pt;}
.ls1{letter-spacing:2.665203pt;}
.ls8d{letter-spacing:2.960576pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lsa0{letter-spacing:11.157725pt;}
.lsa8{letter-spacing:11.713439pt;}
.lsa1{letter-spacing:11.813829pt;}
.lsa7{letter-spacing:11.816229pt;}
.ls9c{letter-spacing:11.954133pt;}
.ls9b{letter-spacing:11.959467pt;}
.ls9e{letter-spacing:11.967389pt;}
.lsab{letter-spacing:11.999055pt;}
.lsa2{letter-spacing:12.039413pt;}
.lsae{letter-spacing:12.120990pt;}
.lsa4{letter-spacing:12.137317pt;}
.ls49{letter-spacing:13.283933pt;}
.lsac{letter-spacing:13.691859pt;}
.ls9f{letter-spacing:16.541532pt;}
.lsa5{letter-spacing:17.723231pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls6b{letter-spacing:275.001859pt;}
.ls11{letter-spacing:754.640000pt;}
.ws163{word-spacing:-53.440000pt;}
.ws7c{word-spacing:-52.923733pt;}
.ws7d{word-spacing:-42.752000pt;}
.wscb{word-spacing:-40.986027pt;}
.wscd{word-spacing:-40.640853pt;}
.ws75{word-spacing:-16.951235pt;}
.ws7b{word-spacing:-13.776048pt;}
.ws71{word-spacing:-13.283467pt;}
.ws1b0{word-spacing:-11.955200pt;}
.ws53{word-spacing:-10.801728pt;}
.ws54{word-spacing:-10.640000pt;}
.ws2f{word-spacing:-10.626800pt;}
.wscc{word-spacing:-10.237431pt;}
.wsca{word-spacing:-10.234211pt;}
.ws14{word-spacing:-10.095467pt;}
.wsc9{word-spacing:-10.027490pt;}
.wsce{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.298400pt;}
.ws79{word-spacing:-8.641382pt;}
.ws7a{word-spacing:-8.512000pt;}
.wsff{word-spacing:-3.163648pt;}
.wse0{word-spacing:-3.108352pt;}
.ws174{word-spacing:-3.040736pt;}
.ws173{word-spacing:-2.997984pt;}
.ws29{word-spacing:-2.762961pt;}
.ws2a{word-spacing:-2.709827pt;}
.ws8a{word-spacing:-2.554432pt;}
.wsfc{word-spacing:-2.522368pt;}
.ws11c{word-spacing:-2.492442pt;}
.wse9{word-spacing:-2.463584pt;}
.ws113{word-spacing:-2.441139pt;}
.wsbd{word-spacing:-2.415488pt;}
.ws89{word-spacing:-2.383424pt;}
.wsbe{word-spacing:-2.325709pt;}
.ws11b{word-spacing:-2.235930pt;}
.ws120{word-spacing:-2.154701pt;}
.wseb{word-spacing:-2.137600pt;}
.ws36{word-spacing:-2.125355pt;}
.wsbf{word-spacing:-2.111949pt;}
.ws18{word-spacing:-2.104115pt;}
.ws84{word-spacing:-2.068128pt;}
.wsea{word-spacing:-2.062784pt;}
.ws165{word-spacing:-2.056294pt;}
.ws144{word-spacing:-2.019087pt;}
.ws85{word-spacing:-2.004000pt;}
.ws16a{word-spacing:-1.965953pt;}
.ws1a9{word-spacing:-1.960653pt;}
.ws194{word-spacing:-1.934528pt;}
.ws9d{word-spacing:-1.923840pt;}
.ws193{word-spacing:-1.918496pt;}
.ws39{word-spacing:-1.912819pt;}
.ws178{word-spacing:-1.886432pt;}
.ws122{word-spacing:-1.885363pt;}
.ws121{word-spacing:-1.863987pt;}
.ws1ef{word-spacing:-1.830383pt;}
.wsec{word-spacing:-1.827648pt;}
.ws1b6{word-spacing:-1.817190pt;}
.ws73{word-spacing:-1.753418pt;}
.ws76{word-spacing:-1.625907pt;}
.ws72{word-spacing:-1.594016pt;}
.ws18c{word-spacing:-1.587168pt;}
.ws184{word-spacing:-1.523040pt;}
.ws111{word-spacing:-1.513421pt;}
.ws1aa{word-spacing:-1.482445pt;}
.ws77{word-spacing:-1.434624pt;}
.ws150{word-spacing:-1.434614pt;}
.ws183{word-spacing:-1.421504pt;}
.ws1b4{word-spacing:-1.386803pt;}
.wsc3{word-spacing:-1.381481pt;}
.ws18b{word-spacing:-1.266528pt;}
.ws118{word-spacing:-1.248358pt;}
.ws105{word-spacing:-1.209600pt;}
.ws104{word-spacing:-1.171200pt;}
.ws44{word-spacing:-1.168945pt;}
.ws1b{word-spacing:-1.147699pt;}
.ws103{word-spacing:-1.144320pt;}
.ws179{word-spacing:-1.090176pt;}
.ws143{word-spacing:-1.062677pt;}
.ws78{word-spacing:-1.052058pt;}
.ws7{word-spacing:-1.041421pt;}
.ws135{word-spacing:-1.009543pt;}
.ws1c4{word-spacing:-1.004237pt;}
.ws4f{word-spacing:-0.956410pt;}
.ws185{word-spacing:-0.945888pt;}
.ws9{word-spacing:-0.929840pt;}
.wsef{word-spacing:-0.908480pt;}
.ws155{word-spacing:-0.903276pt;}
.ws37{word-spacing:-0.850142pt;}
.ws1be{word-spacing:-0.812954pt;}
.wsf0{word-spacing:-0.806944pt;}
.wsdf{word-spacing:-0.797008pt;}
.wsfd{word-spacing:-0.774880pt;}
.wsb1{word-spacing:-0.773811pt;}
.wsb0{word-spacing:-0.760986pt;}
.ws157{word-spacing:-0.743874pt;}
.ws12e{word-spacing:-0.735334pt;}
.ws1cc{word-spacing:-0.717312pt;}
.ws137{word-spacing:-0.690740pt;}
.wsfe{word-spacing:-0.689376pt;}
.ws1d{word-spacing:-0.669491pt;}
.wsdc{word-spacing:-0.664320pt;}
.wsdb{word-spacing:-0.652800pt;}
.wsdd{word-spacing:-0.625920pt;}
.ws156{word-spacing:-0.531339pt;}
.ws1c8{word-spacing:-0.526029pt;}
.ws1e8{word-spacing:-0.478208pt;}
.ws151{word-spacing:-0.478205pt;}
.ws1cb{word-spacing:-0.382566pt;}
.ws8d{word-spacing:-0.374080pt;}
.ws43{word-spacing:-0.371937pt;}
.ws1f8{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.318803pt;}
.ws81{word-spacing:-0.304608pt;}
.ws18a{word-spacing:-0.299264pt;}
.ws2{word-spacing:-0.297549pt;}
.wse6{word-spacing:-0.286925pt;}
.ws23{word-spacing:-0.265669pt;}
.ws5b{word-spacing:-0.242592pt;}
.ws1d9{word-spacing:-0.239104pt;}
.wsf6{word-spacing:-0.213760pt;}
.ws3b{word-spacing:-0.212535pt;}
.wse7{word-spacing:-0.208416pt;}
.wsf4{word-spacing:-0.202317pt;}
.ws107{word-spacing:-0.199680pt;}
.wsf5{word-spacing:-0.194225pt;}
.wsa3{word-spacing:-0.194074pt;}
.ws57{word-spacing:-0.191283pt;}
.ws106{word-spacing:-0.168960pt;}
.ws10a{word-spacing:-0.166733pt;}
.ws3e{word-spacing:-0.159402pt;}
.ws10d{word-spacing:-0.145357pt;}
.ws1e{word-spacing:-0.143462pt;}
.wsd2{word-spacing:-0.143133pt;}
.wsab{word-spacing:-0.126720pt;}
.wsd3{word-spacing:-0.122958pt;}
.wsd4{word-spacing:-0.121923pt;}
.ws5c{word-spacing:-0.110656pt;}
.ws25{word-spacing:-0.106268pt;}
.ws1d4{word-spacing:-0.095642pt;}
.wsa4{word-spacing:-0.088525pt;}
.wsc0{word-spacing:-0.068403pt;}
.ws114{word-spacing:-0.059853pt;}
.ws24{word-spacing:-0.053134pt;}
.wse5{word-spacing:-0.047821pt;}
.ws30{word-spacing:-0.042507pt;}
.wsc1{word-spacing:-0.038477pt;}
.ws6{word-spacing:-0.037194pt;}
.ws5a{word-spacing:-0.017024pt;}
.wsa2{word-spacing:-0.013619pt;}
.ws13{word-spacing:-0.003185pt;}
.ws12{word-spacing:-0.000815pt;}
.ws15{word-spacing:-0.000007pt;}
.ws1{word-spacing:0.000000pt;}
.ws129{word-spacing:0.008550pt;}
.wsa1{word-spacing:0.016032pt;}
.ws99{word-spacing:0.026720pt;}
.ws19d{word-spacing:0.037408pt;}
.ws1ac{word-spacing:0.045003pt;}
.ws164{word-spacing:0.047821pt;}
.ws8c{word-spacing:0.048096pt;}
.ws40{word-spacing:0.053134pt;}
.ws180{word-spacing:0.064128pt;}
.ws19e{word-spacing:0.069472pt;}
.ws181{word-spacing:0.074816pt;}
.wsf3{word-spacing:0.080160pt;}
.ws109{word-spacing:0.080640pt;}
.ws108{word-spacing:0.084480pt;}
.wsfa{word-spacing:0.090848pt;}
.ws1ae{word-spacing:0.095642pt;}
.ws8e{word-spacing:0.101870pt;}
.ws3d{word-spacing:0.106268pt;}
.wsf7{word-spacing:0.112224pt;}
.wsac{word-spacing:0.119040pt;}
.wsde{word-spacing:0.122880pt;}
.wsf9{word-spacing:0.122912pt;}
.wse8{word-spacing:0.138944pt;}
.ws17{word-spacing:0.143462pt;}
.ws66{word-spacing:0.144000pt;}
.ws182{word-spacing:0.144288pt;}
.ws67{word-spacing:0.158400pt;}
.ws38{word-spacing:0.159402pt;}
.ws10c{word-spacing:0.162458pt;}
.wsf8{word-spacing:0.165664pt;}
.ws8b{word-spacing:0.176352pt;}
.ws20{word-spacing:0.191283pt;}
.ws42{word-spacing:0.212535pt;}
.ws1ab{word-spacing:0.239104pt;}
.ws35{word-spacing:0.265669pt;}
.ws16{word-spacing:0.286925pt;}
.ws4b{word-spacing:0.318803pt;}
.wsa6{word-spacing:0.322835pt;}
.wsa7{word-spacing:0.364800pt;}
.ws4c{word-spacing:0.371937pt;}
.wsa8{word-spacing:0.376320pt;}
.ws1d0{word-spacing:0.382566pt;}
.ws3c{word-spacing:0.425071pt;}
.ws162{word-spacing:0.478205pt;}
.ws80{word-spacing:0.526029pt;}
.ws126{word-spacing:0.534400pt;}
.ws58{word-spacing:0.573850pt;}
.ws145{word-spacing:0.584473pt;}
.ws52{word-spacing:0.637606pt;}
.ws56{word-spacing:0.669491pt;}
.ws31{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.743874pt;}
.ws1f4{word-spacing:0.765133pt;}
.ws130{word-spacing:0.786637pt;}
.ws146{word-spacing:0.797008pt;}
.ws127{word-spacing:0.837939pt;}
.ws149{word-spacing:0.850142pt;}
.ws8{word-spacing:0.892646pt;}
.ws55{word-spacing:0.908595pt;}
.ws12f{word-spacing:0.936269pt;}
.ws15d{word-spacing:0.956410pt;}
.ws4d{word-spacing:1.009543pt;}
.ws17d{word-spacing:1.042080pt;}
.ws167{word-spacing:1.052058pt;}
.ws136{word-spacing:1.062677pt;}
.ws166{word-spacing:1.099878pt;}
.ws28{word-spacing:1.115811pt;}
.ws116{word-spacing:1.188506pt;}
.ws7f{word-spacing:1.195520pt;}
.ws115{word-spacing:1.218432pt;}
.ws6a{word-spacing:1.222079pt;}
.ws41{word-spacing:1.275213pt;}
.ws1f{word-spacing:1.291162pt;}
.ws112{word-spacing:1.321037pt;}
.ws1a4{word-spacing:1.328347pt;}
.ws1ea{word-spacing:1.338982pt;}
.ws17c{word-spacing:1.341344pt;}
.ws4a{word-spacing:1.381481pt;}
.ws7e{word-spacing:1.434624pt;}
.ws33{word-spacing:1.487748pt;}
.ws1a6{word-spacing:1.530266pt;}
.ws48{word-spacing:1.540882pt;}
.ws1a8{word-spacing:1.578086pt;}
.wsd1{word-spacing:1.625907pt;}
.ws195{word-spacing:1.645952pt;}
.ws2c{word-spacing:1.647150pt;}
.ws177{word-spacing:1.651296pt;}
.ws196{word-spacing:1.661984pt;}
.wsee{word-spacing:1.672672pt;}
.ws95{word-spacing:1.704000pt;}
.wsed{word-spacing:1.704736pt;}
.ws61{word-spacing:1.713600pt;}
.ws8f{word-spacing:1.737600pt;}
.ws94{word-spacing:1.747200pt;}
.ws90{word-spacing:1.752000pt;}
.ws15b{word-spacing:1.753418pt;}
.ws91{word-spacing:1.780800pt;}
.ws2b{word-spacing:1.806551pt;}
.ws15f{word-spacing:1.859685pt;}
.ws134{word-spacing:1.868262pt;}
.wsc5{word-spacing:1.912819pt;}
.ws13d{word-spacing:2.019087pt;}
.ws32{word-spacing:2.072221pt;}
.ws1d7{word-spacing:2.104115pt;}
.wsc2{word-spacing:2.125355pt;}
.ws69{word-spacing:2.178489pt;}
.ws191{word-spacing:2.228448pt;}
.ws47{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws74{word-spacing:2.284756pt;}
.ws190{word-spacing:2.297920pt;}
.ws3f{word-spacing:2.337890pt;}
.ws101{word-spacing:2.351360pt;}
.ws154{word-spacing:2.391024pt;}
.ws100{word-spacing:2.431520pt;}
.ws147{word-spacing:2.444158pt;}
.ws1a5{word-spacing:2.497292pt;}
.ws1c{word-spacing:2.534502pt;}
.ws1db{word-spacing:2.630144pt;}
.ws1d6{word-spacing:2.677965pt;}
.wsc8{word-spacing:2.762961pt;}
.ws49{word-spacing:2.816095pt;}
.ws117{word-spacing:2.838733pt;}
.ws1f2{word-spacing:2.861466pt;}
.ws1c1{word-spacing:2.861696pt;}
.ws1e9{word-spacing:2.863923pt;}
.ws1ec{word-spacing:2.864350pt;}
.ws1f5{word-spacing:2.864819pt;}
.ws14e{word-spacing:2.869229pt;}
.ws1d8{word-spacing:2.869248pt;}
.ws1a0{word-spacing:2.922363pt;}
.ws128{word-spacing:2.928512pt;}
.ws13f{word-spacing:2.975497pt;}
.ws189{word-spacing:3.067456pt;}
.ws138{word-spacing:3.081764pt;}
.ws12d{word-spacing:3.082419pt;}
.ws1a3{word-spacing:3.134898pt;}
.ws59{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.ws1da{word-spacing:3.203994pt;}
.ws14a{word-spacing:3.241166pt;}
.ws15c{word-spacing:3.294300pt;}
.ws5e{word-spacing:3.336000pt;}
.ws5f{word-spacing:3.345600pt;}
.ws13c{word-spacing:3.347434pt;}
.ws1de{word-spacing:3.395277pt;}
.ws60{word-spacing:3.398400pt;}
.ws11d{word-spacing:3.437261pt;}
.wscf{word-spacing:3.443098pt;}
.ws15a{word-spacing:3.453701pt;}
.ws1e4{word-spacing:3.490918pt;}
.ws19f{word-spacing:3.506835pt;}
.ws16c{word-spacing:3.575136pt;}
.ws6b{word-spacing:3.613103pt;}
.ws1b8{word-spacing:3.634381pt;}
.ws62{word-spacing:3.638400pt;}
.ws51{word-spacing:3.666237pt;}
.ws21{word-spacing:3.682202pt;}
.wsd9{word-spacing:3.686400pt;}
.ws63{word-spacing:3.691200pt;}
.wsda{word-spacing:3.717120pt;}
.ws160{word-spacing:3.719371pt;}
.ws1e2{word-spacing:3.730022pt;}
.ws3a{word-spacing:3.772505pt;}
.ws15e{word-spacing:3.825638pt;}
.ws27{word-spacing:3.878772pt;}
.ws83{word-spacing:3.901120pt;}
.ws169{word-spacing:3.931906pt;}
.ws1a7{word-spacing:3.969126pt;}
.wsb2{word-spacing:3.988762pt;}
.wsb3{word-spacing:3.993037pt;}
.ws45{word-spacing:4.038174pt;}
.ws14b{word-spacing:4.091308pt;}
.ws1dd{word-spacing:4.112589pt;}
.ws13b{word-spacing:4.144442pt;}
.ws9a{word-spacing:4.168320pt;}
.wsae{word-spacing:4.193971pt;}
.wsf{word-spacing:4.240070pt;}
.wsf2{word-spacing:4.253824pt;}
.ws1ce{word-spacing:4.256051pt;}
.wsad{word-spacing:4.270925pt;}
.ws16e{word-spacing:4.275200pt;}
.ws10{word-spacing:4.314458pt;}
.wsf1{word-spacing:4.317952pt;}
.ws12a{word-spacing:4.493235pt;}
.ws19a{word-spacing:4.494304pt;}
.ws14c{word-spacing:4.516379pt;}
.ws199{word-spacing:4.526368pt;}
.wsc6{word-spacing:4.569513pt;}
.ws1ba{word-spacing:4.590797pt;}
.ws142{word-spacing:4.622646pt;}
.ws13a{word-spacing:4.675780pt;}
.ws1e1{word-spacing:4.734259pt;}
.wsa9{word-spacing:4.734720pt;}
.ws125{word-spacing:4.749747pt;}
.wsaa{word-spacing:4.750080pt;}
.ws14d{word-spacing:4.782048pt;}
.ws1f1{word-spacing:4.782080pt;}
.ws152{word-spacing:4.888316pt;}
.ws26{word-spacing:5.047717pt;}
.ws161{word-spacing:5.100851pt;}
.ws19b{word-spacing:5.114208pt;}
.ws19c{word-spacing:5.119552pt;}
.ws192{word-spacing:5.140928pt;}
.ws148{word-spacing:5.153985pt;}
.ws1b1{word-spacing:5.164646pt;}
.ws1a1{word-spacing:5.207119pt;}
.ws1a{word-spacing:5.451571pt;}
.wsb7{word-spacing:5.472256pt;}
.wsb8{word-spacing:5.480806pt;}
.wsb9{word-spacing:5.506458pt;}
.ws64{word-spacing:5.587200pt;}
.ws65{word-spacing:5.596800pt;}
.ws6c{word-spacing:5.632190pt;}
.ws139{word-spacing:5.685324pt;}
.ws6d{word-spacing:5.738458pt;}
.ws1d2{word-spacing:5.786317pt;}
.ws88{word-spacing:5.835648pt;}
.ws141{word-spacing:5.950993pt;}
.ws87{word-spacing:5.958560pt;}
.ws19{word-spacing:6.025421pt;}
.ws70{word-spacing:6.057261pt;}
.ws1f0{word-spacing:6.121062pt;}
.ws14f{word-spacing:6.163529pt;}
.ws158{word-spacing:6.429198pt;}
.ws170{word-spacing:6.476928pt;}
.ws176{word-spacing:6.514336pt;}
.ws93{word-spacing:6.518400pt;}
.ws9b{word-spacing:6.541056pt;}
.ws92{word-spacing:6.571200pt;}
.ws140{word-spacing:6.588599pt;}
.ws16f{word-spacing:6.599840pt;}
.ws175{word-spacing:6.621216pt;}
.wsc4{word-spacing:6.641733pt;}
.wsb4{word-spacing:6.677862pt;}
.ws9c{word-spacing:6.685344pt;}
.ws4e{word-spacing:6.694867pt;}
.ws188{word-spacing:6.738784pt;}
.wsfb{word-spacing:6.765504pt;}
.ws10f{word-spacing:6.771917pt;}
.wsbb{word-spacing:6.848870pt;}
.ws168{word-spacing:6.854269pt;}
.wsd{word-spacing:6.918010pt;}
.wsb5{word-spacing:6.989952pt;}
.wsc7{word-spacing:7.013670pt;}
.ws110{word-spacing:7.015603pt;}
.ws1f7{word-spacing:7.029658pt;}
.wsbc{word-spacing:7.054080pt;}
.ws186{word-spacing:7.107520pt;}
.ws153{word-spacing:7.119938pt;}
.ws187{word-spacing:7.176992pt;}
.ws131{word-spacing:7.212262pt;}
.ws50{word-spacing:7.385607pt;}
.ws1a2{word-spacing:7.438741pt;}
.wsba{word-spacing:7.468774pt;}
.ws159{word-spacing:7.491875pt;}
.ws98{word-spacing:7.507200pt;}
.ws13e{word-spacing:7.545009pt;}
.ws96{word-spacing:7.545600pt;}
.ws97{word-spacing:7.588800pt;}
.wse4{word-spacing:7.598143pt;}
.wsb6{word-spacing:7.703910pt;}
.ws123{word-spacing:7.738112pt;}
.wse2{word-spacing:7.970080pt;}
.ws124{word-spacing:7.998899pt;}
.wsd8{word-spacing:8.025600pt;}
.ws82{word-spacing:8.096160pt;}
.wsd7{word-spacing:8.106240pt;}
.wsd0{word-spacing:8.177357pt;}
.ws102{word-spacing:8.260045pt;}
.wsa5{word-spacing:8.263450pt;}
.wse1{word-spacing:8.820222pt;}
.ws3{word-spacing:9.261206pt;}
.ws11a{word-spacing:9.332762pt;}
.ws119{word-spacing:9.345587pt;}
.ws10e{word-spacing:9.366963pt;}
.ws16d{word-spacing:9.442848pt;}
.ws11f{word-spacing:9.563622pt;}
.ws11e{word-spacing:9.602099pt;}
.ws1b5{word-spacing:10.090189pt;}
.ws16b{word-spacing:10.325056pt;}
.ws5d{word-spacing:10.329312pt;}
.ws133{word-spacing:10.371635pt;}
.wsa0{word-spacing:10.404768pt;}
.wsb{word-spacing:10.823338pt;}
.ws1bd{word-spacing:10.855322pt;}
.ws1bf{word-spacing:11.094426pt;}
.ws1e7{word-spacing:11.190067pt;}
.ws4{word-spacing:11.493815pt;}
.ws86{word-spacing:11.623200pt;}
.ws9f{word-spacing:11.655264pt;}
.ws9e{word-spacing:11.719392pt;}
.ws1c0{word-spacing:11.763917pt;}
.ws1e3{word-spacing:11.900228pt;}
.ws1bb{word-spacing:11.901329pt;}
.ws1ca{word-spacing:11.903684pt;}
.ws1d5{word-spacing:11.904299pt;}
.ws1d3{word-spacing:11.904555pt;}
.ws1dc{word-spacing:11.904836pt;}
.ws1bc{word-spacing:11.905331pt;}
.ws1ee{word-spacing:11.906313pt;}
.ws1b7{word-spacing:11.906662pt;}
.ws1b2{word-spacing:11.907379pt;}
.ws1ad{word-spacing:11.955200pt;}
.ws1c3{word-spacing:12.003021pt;}
.wsaf{word-spacing:13.082112pt;}
.ws2e{word-spacing:13.134725pt;}
.ws17b{word-spacing:13.210368pt;}
.ws6f{word-spacing:13.230333pt;}
.ws17a{word-spacing:13.274496pt;}
.ws10b{word-spacing:13.334349pt;}
.wsd5{word-spacing:13.420800pt;}
.wsd6{word-spacing:13.447680pt;}
.ws1f6{word-spacing:13.963674pt;}
.wsc{word-spacing:14.319536pt;}
.ws132{word-spacing:14.364672pt;}
.ws17e{word-spacing:14.471552pt;}
.ws1f9{word-spacing:14.489702pt;}
.ws1fa{word-spacing:14.585344pt;}
.ws17f{word-spacing:14.594464pt;}
.ws1ed{word-spacing:14.770662pt;}
.ws1e6{word-spacing:14.771840pt;}
.ws1f3{word-spacing:14.772599pt;}
.ws1df{word-spacing:14.772651pt;}
.ws1c6{word-spacing:14.772932pt;}
.ws1c2{word-spacing:14.773257pt;}
.ws1c9{word-spacing:14.774554pt;}
.ws1c7{word-spacing:14.775526pt;}
.ws1af{word-spacing:14.776627pt;}
.ws18d{word-spacing:14.829600pt;}
.ws1cf{word-spacing:14.872269pt;}
.ws1cd{word-spacing:15.063552pt;}
.ws1c5{word-spacing:15.111373pt;}
.ws1b3{word-spacing:15.350477pt;}
.ws198{word-spacing:15.711360pt;}
.ws197{word-spacing:15.727392pt;}
.ws46{word-spacing:15.780758pt;}
.ws1e0{word-spacing:16.163430pt;}
.ws68{word-spacing:16.418365pt;}
.ws1eb{word-spacing:19.223962pt;}
.ws12c{word-spacing:22.077133pt;}
.ws12b{word-spacing:22.089958pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws18e{word-spacing:24.630496pt;}
.ws18f{word-spacing:24.689280pt;}
.ws171{word-spacing:25.041984pt;}
.ws172{word-spacing:25.058016pt;}
.ws1e5{word-spacing:25.584128pt;}
.ws1b9{word-spacing:26.062336pt;}
.wse3{word-spacing:27.629611pt;}
.ws1d1{word-spacing:28.883763pt;}
.ws11{word-spacing:35.593054pt;}
.ws6e{word-spacing:349.802325pt;}
._6{margin-left:-31.595439pt;}
._44{margin-left:-17.969974pt;}
._7{margin-left:-10.616218pt;}
._42{margin-left:-7.485627pt;}
._8{margin-left:-5.899118pt;}
._0{margin-left:-4.797974pt;}
._d{margin-left:-3.889360pt;}
._38{margin-left:-2.969760pt;}
._4{margin-left:-2.045648pt;}
._c{margin-left:-0.908595pt;}
._34{width:0.913824pt;}
._3{width:2.045648pt;}
._9{width:3.287943pt;}
._37{width:4.797974pt;}
._12{width:10.626800pt;}
._1{width:11.530287pt;}
._13{width:13.174575pt;}
._b{width:14.064544pt;}
._10{width:15.111373pt;}
._11{width:16.524633pt;}
._17{width:17.449154pt;}
._f{width:18.793574pt;}
._41{width:19.781757pt;}
._16{width:20.775342pt;}
._18{width:22.111207pt;}
._2{width:23.057899pt;}
._1a{width:24.627712pt;}
._e{width:26.099510pt;}
._5{width:27.188522pt;}
._3e{width:28.325670pt;}
._40{width:29.266095pt;}
._3d{width:32.464793pt;}
._1b{width:34.171654pt;}
._20{width:35.722138pt;}
._36{width:37.799457pt;}
._3b{width:39.531597pt;}
._43{width:54.993920pt;}
._a{width:61.625099pt;}
._1f{width:66.518733pt;}
._2a{width:78.378291pt;}
._30{width:97.410970pt;}
._2c{width:101.619200pt;}
._1e{width:107.835904pt;}
._26{width:133.898240pt;}
._27{width:136.624026pt;}
._2e{width:140.880077pt;}
._39{width:142.447998pt;}
._32{width:143.892787pt;}
._22{width:152.500531pt;}
._23{width:157.139149pt;}
._24{width:159.864934pt;}
._21{width:180.045312pt;}
._1c{width:200.864519pt;}
._1d{width:233.652429pt;}
._29{width:251.011379pt;}
._2d{width:288.168141pt;}
._2b{width:296.297677pt;}
._28{width:300.123341pt;}
._31{width:314.469581pt;}
._25{width:326.090035pt;}
._2f{width:335.510733pt;}
._33{width:361.764352pt;}
._14{width:775.926429pt;}
._3a{width:1404.158611pt;}
._35{width:1421.056634pt;}
._3f{width:1754.512896pt;}
._19{width:1775.417424pt;}
._3c{width:2113.862676pt;}
._15{width:2135.116010pt;}
.fs7{font-size:31.880533pt;}
.fsf{font-size:34.048000pt;}
.fs0{font-size:37.193600pt;}
.fs12{font-size:38.400000pt;}
.fs6{font-size:40.381867pt;}
.fs16{font-size:40.463467pt;}
.fs15{font-size:40.640853pt;}
.fs13{font-size:40.895147pt;}
.fs14{font-size:40.986027pt;}
.fs17{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs10{font-size:42.752000pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs2{font-size:50.395200pt;}
.fs11{font-size:52.923733pt;}
.fs4{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs3{font-size:60.474240pt;}
.fse{font-size:67.913600pt;}
.fs5{font-size:95.641600pt;}
.y13f{bottom:-559.078080pt;}
.yf5{bottom:-526.183147pt;}
.y164{bottom:-511.257843pt;}
.y163{bottom:-497.626368pt;}
.y11d{bottom:-496.272933pt;}
.y162{bottom:-483.930765pt;}
.y161{bottom:-470.235162pt;}
.yce{bottom:-467.472933pt;}
.y160{bottom:-456.603686pt;}
.y15f{bottom:-442.908083pt;}
.y15e{bottom:-429.275539pt;}
.y15d{bottom:-415.579936pt;}
.y15c{bottom:-401.884333pt;}
.y15b{bottom:-388.252858pt;}
.y15a{bottom:-374.557254pt;}
.y159{bottom:-360.925779pt;}
.y158{bottom:-347.230176pt;}
.y157{bottom:-333.534573pt;}
.y156{bottom:-319.903098pt;}
.y155{bottom:-306.207494pt;}
.y154{bottom:-292.576019pt;}
.y153{bottom:-278.880416pt;}
.y152{bottom:-265.184813pt;}
.y151{bottom:-251.553338pt;}
.y150{bottom:-237.857734pt;}
.ye5{bottom:-234.752160pt;}
.y14f{bottom:-224.162131pt;}
.ye4{bottom:-217.632656pt;}
.y14e{bottom:-210.530656pt;}
.ye3{bottom:-200.591976pt;}
.y88{bottom:-197.799600pt;}
.y14d{bottom:-196.835053pt;}
.y104{bottom:-193.764132pt;}
.y132{bottom:-185.230525pt;}
.ye2{bottom:-183.472472pt;}
.y14c{bottom:-183.203578pt;}
.y103{bottom:-180.131588pt;}
.y14b{bottom:-169.507974pt;}
.y131{bottom:-168.111021pt;}
.y102{bottom:-166.435985pt;}
.ye1{bottom:-166.352968pt;}
.y14a{bottom:-155.812371pt;}
.y101{bottom:-152.740382pt;}
.y130{bottom:-151.071677pt;}
.ye0{bottom:-149.312288pt;}
.y149{bottom:-142.180896pt;}
.y100{bottom:-139.108907pt;}
.y12f{bottom:-133.952173pt;}
.y8f{bottom:-132.679600pt;}
.y148{bottom:-128.485293pt;}
.ydf{bottom:-128.192800pt;}
.y10b{bottom:-126.402880pt;}
.yff{bottom:-125.413303pt;}
.y12e{bottom:-116.912829pt;}
.y147{bottom:-114.852749pt;}
.yfe{bottom:-111.781828pt;}
.y146{bottom:-101.157146pt;}
.y12d{bottom:-99.793325pt;}
.yfd{bottom:-98.086225pt;}
.y8e{bottom:-97.958800pt;}
.yde{bottom:-95.473733pt;}
.y145{bottom:-87.461542pt;}
.yfc{bottom:-84.390622pt;}
.y8d{bottom:-82.439200pt;}
.ydd{bottom:-80.033333pt;}
.y12c{bottom:-78.752661pt;}
.y114{bottom:-76.931520pt;}
.yfb{bottom:-70.759147pt;}
.y144{bottom:-70.630080pt;}
.y8c{bottom:-67.079200pt;}
.ydc{bottom:-64.673333pt;}
.y113{bottom:-64.579200pt;}
.y1bb{bottom:-57.536133pt;}
.y112{bottom:-52.291200pt;}
.y8b{bottom:-51.719200pt;}
.ydb{bottom:-49.232933pt;}
.y12b{bottom:-45.392741pt;}
.yfa{bottom:-44.583787pt;}
.y143{bottom:-44.454720pt;}
.y111{bottom:-39.938880pt;}
.y8a{bottom:-36.359200pt;}
.yda{bottom:-33.872933pt;}
.yf9{bottom:-32.231467pt;}
.y142{bottom:-32.102400pt;}
.y110{bottom:-27.650880pt;}
.y12a{bottom:-27.392813pt;}
.yf8{bottom:-19.879147pt;}
.y141{bottom:-19.750080pt;}
.yd9{bottom:-14.032933pt;}
.y10f{bottom:-11.714773pt;}
.y89{bottom:-8.359600pt;}
.yf7{bottom:-3.943147pt;}
.y140{bottom:-3.814080pt;}
.y0{bottom:0.000000pt;}
.y1de{bottom:0.237851pt;}
.y129{bottom:2.607067pt;}
.y1f{bottom:8.420534pt;}
.y128{bottom:13.167300pt;}
.y1e{bottom:25.722550pt;}
.y127{bottom:27.727067pt;}
.y4d{bottom:28.346667pt;}
.y1d{bottom:29.128174pt;}
.y10e{bottom:59.389120pt;}
.yca{bottom:81.480000pt;}
.y167{bottom:82.996000pt;}
.y119{bottom:89.898667pt;}
.y4c{bottom:92.108000pt;}
.y1b{bottom:93.018667pt;}
.y84{bottom:95.681333pt;}
.y249{bottom:96.517333pt;}
.y107{bottom:97.492000pt;}
.yc9{bottom:98.217333pt;}
.y166{bottom:100.090667pt;}
.y211{bottom:103.013333pt;}
.yf6{bottom:103.128853pt;}
.y118{bottom:106.993333pt;}
.y27e{bottom:108.233333pt;}
.y19b{bottom:108.433333pt;}
.y4b{bottom:108.844000pt;}
.y1a{bottom:108.920000pt;}
.y248{bottom:111.860000pt;}
.y83{bottom:112.418667pt;}
.y106{bottom:114.588000pt;}
.yc8{bottom:114.954667pt;}
.y165{bottom:117.186667pt;}
.yd8{bottom:117.727067pt;}
.y27d{bottom:123.576000pt;}
.y117{bottom:124.089333pt;}
.y19{bottom:124.820000pt;}
.y19a{bottom:125.170667pt;}
.y4a{bottom:125.581333pt;}
.y210{bottom:126.605333pt;}
.y247{bottom:127.202667pt;}
.y1b5{bottom:127.561333pt;}
.y82{bottom:129.156000pt;}
.y94{bottom:129.245333pt;}
.y105{bottom:131.684000pt;}
.yc7{bottom:131.692000pt;}
.y13c{bottom:137.124000pt;}
.y27c{bottom:138.918667pt;}
.y18{bottom:140.720000pt;}
.y116{bottom:141.185333pt;}
.y199{bottom:141.908000pt;}
.y20f{bottom:142.226667pt;}
.y49{bottom:142.318667pt;}
.y246{bottom:142.545333pt;}
.y1b4{bottom:144.298667pt;}
.y81{bottom:145.893333pt;}
.y93{bottom:146.341333pt;}
.yc6{bottom:148.429333pt;}
.yf2{bottom:151.621333pt;}
.y27b{bottom:154.261333pt;}
.y17{bottom:156.621333pt;}
.y245{bottom:157.888000pt;}
.y115{bottom:158.281333pt;}
.y198{bottom:158.645333pt;}
.y48{bottom:159.056000pt;}
.y1b3{bottom:161.036000pt;}
.y80{bottom:162.630667pt;}
.y92{bottom:163.437333pt;}
.y1f0{bottom:165.166667pt;}
.y20e{bottom:165.818667pt;}
.yc5{bottom:169.152000pt;}
.y27a{bottom:169.604000pt;}
.y16{bottom:172.521333pt;}
.y244{bottom:173.230667pt;}
.y197{bottom:175.382667pt;}
.y47{bottom:175.793333pt;}
.y1b2{bottom:177.773333pt;}
.y108{bottom:178.218667pt;}
.y7f{bottom:179.368000pt;}
.y91{bottom:180.533333pt;}
.y20d{bottom:181.440000pt;}
.y1ef{bottom:181.904000pt;}
.y279{bottom:184.946667pt;}
.y15{bottom:188.421333pt;}
.y243{bottom:188.573333pt;}
.y196{bottom:192.120000pt;}
.y46{bottom:192.530667pt;}
.y1b1{bottom:194.510667pt;}
.y7e{bottom:196.105333pt;}
.y20c{bottom:197.061333pt;}
.y90{bottom:197.629333pt;}
.y1ee{bottom:198.641333pt;}
.y278{bottom:200.289333pt;}
.y242{bottom:203.916000pt;}
.y14{bottom:204.322667pt;}
.yc4{bottom:206.768000pt;}
.y195{bottom:208.857333pt;}
.y45{bottom:209.268000pt;}
.y1b0{bottom:211.248000pt;}
.y20b{bottom:212.682667pt;}
.y7d{bottom:212.841333pt;}
.yc3{bottom:214.074667pt;}
.y1ec{bottom:215.378667pt;}
.y277{bottom:215.632000pt;}
.y85{bottom:217.566667pt;}
.y241{bottom:219.258667pt;}
.y1ed{bottom:220.201333pt;}
.y194{bottom:225.594667pt;}
.y44{bottom:226.005333pt;}
.y1af{bottom:227.985333pt;}
.y7c{bottom:229.578667pt;}
.y276{bottom:230.974667pt;}
.y1eb{bottom:232.116000pt;}
.y240{bottom:234.600000pt;}
.yc2{bottom:235.992000pt;}
.y20a{bottom:236.274667pt;}
.y193{bottom:242.332000pt;}
.y43{bottom:242.742667pt;}
.y1ae{bottom:244.722667pt;}
.y7b{bottom:246.316000pt;}
.y13e{bottom:247.386016pt;}
.y1ea{bottom:248.853333pt;}
.y23f{bottom:249.942667pt;}
.yc1{bottom:250.604000pt;}
.y209{bottom:251.896000pt;}
.y13d{bottom:254.233920pt;}
.y192{bottom:259.069333pt;}
.y42{bottom:259.480000pt;}
.y1ad{bottom:261.460000pt;}
.y275{bottom:261.658667pt;}
.y7a{bottom:263.053333pt;}
.yc0{bottom:265.216000pt;}
.y23e{bottom:265.285333pt;}
.y1e9{bottom:265.590667pt;}
.y13{bottom:266.804000pt;}
.y208{bottom:267.517333pt;}
.y191{bottom:275.806667pt;}
.y41{bottom:276.217333pt;}
.y274{bottom:277.001333pt;}
.y1ac{bottom:278.197333pt;}
.y79{bottom:279.790667pt;}
.ybf{bottom:279.828000pt;}
.yf4{bottom:280.280949pt;}
.y23d{bottom:280.628000pt;}
.y1e8{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y207{bottom:283.138667pt;}
.y10d{bottom:284.797120pt;}
.yf3{bottom:287.128853pt;}
.y273{bottom:292.344000pt;}
.y190{bottom:292.544000pt;}
.y40{bottom:292.954667pt;}
.ybe{bottom:294.440000pt;}
.y1ab{bottom:294.934667pt;}
.y23c{bottom:295.970667pt;}
.y78{bottom:296.528000pt;}
.y11{bottom:298.605333pt;}
.y206{bottom:298.760000pt;}
.y1e7{bottom:299.065333pt;}
.y272{bottom:307.686667pt;}
.ybd{bottom:309.052000pt;}
.y18f{bottom:309.280000pt;}
.y23b{bottom:311.313333pt;}
.y1a9{bottom:311.672000pt;}
.y77{bottom:313.265333pt;}
.y3f{bottom:313.677333pt;}
.y205{bottom:314.381333pt;}
.y10{bottom:314.505333pt;}
.y1e6{bottom:315.802667pt;}
.y1aa{bottom:316.493333pt;}
.y1dd{bottom:317.997435pt;}
.y271{bottom:323.029333pt;}
.ybc{bottom:323.662667pt;}
.y18e{bottom:326.017333pt;}
.y126{bottom:326.450563pt;}
.y23a{bottom:326.656000pt;}
.y1a8{bottom:328.409333pt;}
.y76{bottom:330.002667pt;}
.y1e5{bottom:332.540000pt;}
.y1dc{bottom:335.116939pt;}
.ybb{bottom:338.274667pt;}
.y270{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y239{bottom:341.998667pt;}
.y18d{bottom:342.754667pt;}
.y125{bottom:343.570067pt;}
.y1a7{bottom:345.146667pt;}
.y204{bottom:345.944000pt;}
.y75{bottom:346.740000pt;}
.y1e4{bottom:349.277333pt;}
.yd7{bottom:351.250579pt;}
.y1db{bottom:352.156283pt;}
.yba{bottom:352.886667pt;}
.y26f{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y238{bottom:357.340000pt;}
.y18c{bottom:359.492000pt;}
.y124{bottom:360.689571pt;}
.y1a6{bottom:361.884000pt;}
.y203{bottom:362.680000pt;}
.y74{bottom:363.477333pt;}
.y1e3{bottom:366.014667pt;}
.yb9{bottom:367.498667pt;}
.yd6{bottom:368.370083pt;}
.y26e{bottom:369.056000pt;}
.y13b{bottom:369.210667pt;}
.y1da{bottom:369.275787pt;}
.yd{bottom:370.177333pt;}
.y237{bottom:372.682667pt;}
.y18b{bottom:376.229333pt;}
.y123{bottom:377.728915pt;}
.y1a5{bottom:378.621333pt;}
.y202{bottom:379.417333pt;}
.y73{bottom:380.214667pt;}
.y3e{bottom:380.477333pt;}
.yb8{bottom:382.110667pt;}
.y1e2{bottom:382.752000pt;}
.y26d{bottom:384.398667pt;}
.yd5{bottom:385.489587pt;}
.y13a{bottom:385.948000pt;}
.y1d9{bottom:386.315131pt;}
.y236{bottom:388.025333pt;}
.y18a{bottom:392.966667pt;}
.y122{bottom:394.848419pt;}
.y1a4{bottom:395.358667pt;}
.yc{bottom:395.376000pt;}
.y201{bottom:396.154667pt;}
.yb7{bottom:396.722667pt;}
.y72{bottom:396.952000pt;}
.y3d{bottom:397.772000pt;}
.y26c{bottom:399.741333pt;}
.yd4{bottom:402.528931pt;}
.y139{bottom:402.685333pt;}
.y235{bottom:403.368000pt;}
.y1d8{bottom:403.434635pt;}
.yf1{bottom:404.977333pt;}
.y189{bottom:409.704000pt;}
.y1e1{bottom:410.853333pt;}
.yb{bottom:411.276000pt;}
.yb6{bottom:411.334667pt;}
.y121{bottom:411.887763pt;}
.y1a3{bottom:412.096000pt;}
.y200{bottom:412.892000pt;}
.y71{bottom:413.689333pt;}
.y26b{bottom:415.084000pt;}
.y234{bottom:418.710667pt;}
.y138{bottom:419.422667pt;}
.yd3{bottom:419.648435pt;}
.y1d7{bottom:420.554139pt;}
.yf0{bottom:421.714667pt;}
.yb5{bottom:425.946667pt;}
.y188{bottom:426.441333pt;}
.y1e0{bottom:427.949333pt;}
.y1a2{bottom:428.833333pt;}
.y120{bottom:429.007267pt;}
.y1ff{bottom:429.629333pt;}
.y70{bottom:430.426667pt;}
.y3c{bottom:431.008000pt;}
.y233{bottom:434.053333pt;}
.ya{bottom:435.146667pt;}
.y137{bottom:436.160000pt;}
.yd2{bottom:436.687779pt;}
.y1d6{bottom:437.593483pt;}
.yef{bottom:438.452000pt;}
.yb4{bottom:440.558667pt;}
.y187{bottom:443.178667pt;}
.y1df{bottom:445.045333pt;}
.y1a1{bottom:445.570667pt;}
.y26a{bottom:445.769333pt;}
.y11f{bottom:446.126771pt;}
.y1fe{bottom:446.366667pt;}
.y6f{bottom:447.164000pt;}
.y3b{bottom:448.302667pt;}
.y232{bottom:449.396000pt;}
.y9{bottom:451.048000pt;}
.y136{bottom:452.897333pt;}
.yd1{bottom:453.807283pt;}
.y1d5{bottom:454.712987pt;}
.yb3{bottom:455.170667pt;}
.yee{bottom:455.189333pt;}
.y186{bottom:459.916000pt;}
.y269{bottom:461.112000pt;}
.y1a0{bottom:462.306667pt;}
.y1fd{bottom:463.104000pt;}
.y11e{bottom:463.167451pt;}
.y6e{bottom:463.901333pt;}
.y231{bottom:464.738667pt;}
.y1b8{bottom:464.981867pt;}
.y3a{bottom:465.598667pt;}
.y8{bottom:466.948000pt;}
.y135{bottom:469.634667pt;}
.yb2{bottom:469.781333pt;}
.yd0{bottom:470.926787pt;}
.y1d4{bottom:471.832491pt;}
.yed{bottom:471.926667pt;}
.y268{bottom:476.454667pt;}
.y185{bottom:476.653333pt;}
.y19f{bottom:479.044000pt;}
.y1fc{bottom:479.841333pt;}
.y230{bottom:480.081333pt;}
.y6d{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.y39{bottom:482.893333pt;}
.yb1{bottom:484.393333pt;}
.yec{bottom:488.664000pt;}
.y1d3{bottom:488.871835pt;}
.y134{bottom:490.357333pt;}
.y267{bottom:491.797333pt;}
.ycf{bottom:491.967451pt;}
.y184{bottom:493.390667pt;}
.y22f{bottom:495.422667pt;}
.y19e{bottom:495.781333pt;}
.y1fb{bottom:496.578667pt;}
.y6c{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.yb0{bottom:499.005333pt;}
.y38{bottom:500.188000pt;}
.y1d2{bottom:505.991339pt;}
.y266{bottom:507.138667pt;}
.yeb{bottom:509.386667pt;}
.y183{bottom:510.128000pt;}
.y22e{bottom:510.765333pt;}
.y10c{bottom:511.357120pt;}
.y11c{bottom:511.807187pt;}
.y1fa{bottom:513.316000pt;}
.yaf{bottom:513.617333pt;}
.y6b{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y19d{bottom:516.504000pt;}
.y133{bottom:517.404000pt;}
.y37{bottom:517.484000pt;}
.y11b{bottom:520.367067pt;}
.y265{bottom:522.481333pt;}
.y22d{bottom:526.108000pt;}
.y182{bottom:526.865333pt;}
.y1d1{bottom:527.032003pt;}
.yae{bottom:528.229333pt;}
.y1f9{bottom:530.053333pt;}
.y4{bottom:530.549333pt;}
.y6a{bottom:530.850667pt;}
.y19c{bottom:534.437333pt;}
.y36{bottom:534.778667pt;}
.yea{bottom:536.433333pt;}
.y11a{bottom:537.340000pt;}
.y264{bottom:537.824000pt;}
.ycd{bottom:540.607187pt;}
.y22c{bottom:541.450667pt;}
.yad{bottom:542.841333pt;}
.y181{bottom:543.602667pt;}
.y3{bottom:546.450667pt;}
.y1f8{bottom:546.790667pt;}
.y69{bottom:547.588000pt;}
.ycc{bottom:549.167067pt;}
.y35{bottom:552.073333pt;}
.y263{bottom:553.166667pt;}
.ye9{bottom:553.528000pt;}
.y22b{bottom:556.793333pt;}
.yac{bottom:557.453333pt;}
.y1d0{bottom:560.151443pt;}
.y180{bottom:560.340000pt;}
.y2{bottom:562.350667pt;}
.y68{bottom:564.325333pt;}
.y1f7{bottom:567.513333pt;}
.y262{bottom:568.509333pt;}
.y34{bottom:569.369333pt;}
.ye8{bottom:570.624000pt;}
.yab{bottom:572.065333pt;}
.y22a{bottom:572.136000pt;}
.y17f{bottom:577.077333pt;}
.y1cf{bottom:577.270947pt;}
.y1{bottom:578.250667pt;}
.y67{bottom:581.062667pt;}
.y261{bottom:583.852000pt;}
.y33{bottom:586.664000pt;}
.yaa{bottom:586.677333pt;}
.y229{bottom:587.478667pt;}
.ye7{bottom:587.720000pt;}
.y17e{bottom:593.814667pt;}
.y1ce{bottom:594.311627pt;}
.y1f6{bottom:597.401333pt;}
.y66{bottom:597.800000pt;}
.y260{bottom:599.194667pt;}
.ya9{bottom:601.289333pt;}
.y228{bottom:602.821333pt;}
.y32{bottom:603.960000pt;}
.ye6{bottom:604.816000pt;}
.y17d{bottom:610.552000pt;}
.y1cd{bottom:611.431131pt;}
.y1f5{bottom:614.138667pt;}
.y65{bottom:614.537333pt;}
.ya8{bottom:615.901333pt;}
.y227{bottom:618.162667pt;}
.y31{bottom:621.254667pt;}
.ycb{bottom:624.753333pt;}
.y17c{bottom:627.289333pt;}
.y1cc{bottom:628.470475pt;}
.y25f{bottom:629.878667pt;}
.y1f4{bottom:630.876000pt;}
.y64{bottom:631.274667pt;}
.y226{bottom:633.505333pt;}
.ya7{bottom:636.914667pt;}
.y30{bottom:638.549333pt;}
.y17b{bottom:644.026667pt;}
.y25e{bottom:645.221333pt;}
.y1cb{bottom:645.589979pt;}
.y1f3{bottom:647.613333pt;}
.y63{bottom:648.012000pt;}
.y225{bottom:648.848000pt;}
.y2f{bottom:655.845333pt;}
.y25d{bottom:660.564000pt;}
.y17a{bottom:660.764000pt;}
.y1ca{bottom:662.709483pt;}
.y224{bottom:664.190667pt;}
.y1f2{bottom:664.350667pt;}
.y62{bottom:664.749333pt;}
.ya6{bottom:665.021333pt;}
.y25c{bottom:675.906667pt;}
.y179{bottom:677.501333pt;}
.y223{bottom:679.533333pt;}
.y1c9{bottom:679.750163pt;}
.y10a{bottom:680.061216pt;}
.y61{bottom:681.485333pt;}
.ya5{bottom:682.117333pt;}
.y1f1{bottom:685.072000pt;}
.y109{bottom:686.909120pt;}
.y2e{bottom:688.101333pt;}
.y25b{bottom:691.249333pt;}
.y178{bottom:694.238667pt;}
.y222{bottom:694.876000pt;}
.y1c8{bottom:696.869667pt;}
.y60{bottom:698.222667pt;}
.y2d{bottom:702.448000pt;}
.y25a{bottom:706.592000pt;}
.ya4{bottom:709.780000pt;}
.y221{bottom:710.218667pt;}
.y177{bottom:710.976000pt;}
.y1c7{bottom:713.909011pt;}
.y5f{bottom:714.960000pt;}
.y2c{bottom:720.652000pt;}
.y259{bottom:721.934667pt;}
.y220{bottom:725.561333pt;}
.ya3{bottom:726.517333pt;}
.y176{bottom:727.713333pt;}
.y1c6{bottom:731.028515pt;}
.y5e{bottom:731.697333pt;}
.y2b{bottom:734.998667pt;}
.y258{bottom:737.277333pt;}
.y21f{bottom:740.904000pt;}
.ya2{bottom:743.254667pt;}
.y175{bottom:744.450667pt;}
.y1c5{bottom:748.148019pt;}
.y5d{bottom:748.434667pt;}
.y2a{bottom:749.344000pt;}
.y257{bottom:752.620000pt;}
.y21e{bottom:756.245333pt;}
.y29{bottom:759.833333pt;}
.ya1{bottom:759.992000pt;}
.y174{bottom:761.186667pt;}
.y5c{bottom:765.172000pt;}
.y1c4{bottom:765.187363pt;}
.y256{bottom:767.961333pt;}
.y21d{bottom:771.588000pt;}
.ya0{bottom:776.729333pt;}
.y173{bottom:777.924000pt;}
.y28{bottom:778.037333pt;}
.y5b{bottom:781.909333pt;}
.y1c3{bottom:782.306867pt;}
.y255{bottom:783.304000pt;}
.y21c{bottom:786.930667pt;}
.y27{bottom:788.525333pt;}
.y9f{bottom:793.466667pt;}
.y172{bottom:794.661333pt;}
.y5a{bottom:798.646667pt;}
.y1c2{bottom:799.426371pt;}
.y1b7{bottom:799.484000pt;}
.y21b{bottom:802.273333pt;}
.y26{bottom:806.729333pt;}
.y9e{bottom:810.204000pt;}
.y87{bottom:810.280520pt;}
.y171{bottom:811.398667pt;}
.y254{bottom:813.989333pt;}
.y59{bottom:815.384000pt;}
.y1c1{bottom:816.465715pt;}
.y21a{bottom:817.616000pt;}
.y86{bottom:818.840400pt;}
.y9d{bottom:826.941333pt;}
.y170{bottom:828.136000pt;}
.y253{bottom:829.332000pt;}
.y58{bottom:832.121333pt;}
.y219{bottom:832.958667pt;}
.y1c0{bottom:833.585219pt;}
.y9c{bottom:843.678667pt;}
.y25{bottom:844.401333pt;}
.y252{bottom:844.674667pt;}
.y16f{bottom:844.873333pt;}
.y218{bottom:848.301333pt;}
.y57{bottom:848.858667pt;}
.y1bf{bottom:850.624563pt;}
.y251{bottom:860.017333pt;}
.y9b{bottom:860.416000pt;}
.y24{bottom:861.138667pt;}
.y16e{bottom:861.610667pt;}
.y217{bottom:863.644000pt;}
.y56{bottom:865.596000pt;}
.y1be{bottom:867.744067pt;}
.y250{bottom:875.360000pt;}
.y9a{bottom:877.153333pt;}
.y16d{bottom:878.348000pt;}
.y216{bottom:878.986667pt;}
.y55{bottom:882.333333pt;}
.y1bd{bottom:884.863571pt;}
.y27f{bottom:890.701333pt;}
.y24f{bottom:890.702667pt;}
.y99{bottom:893.890667pt;}
.y215{bottom:894.328000pt;}
.y16c{bottom:895.085333pt;}
.y23{bottom:896.621333pt;}
.y54{bottom:899.070667pt;}
.y1bc{bottom:901.904251pt;}
.y24e{bottom:906.044000pt;}
.y98{bottom:910.628000pt;}
.y16b{bottom:911.822667pt;}
.y214{bottom:913.656000pt;}
.y53{bottom:915.808000pt;}
.y24d{bottom:921.386667pt;}
.y22{bottom:921.728000pt;}
.y97{bottom:927.364000pt;}
.y16a{bottom:928.560000pt;}
.y52{bottom:932.545333pt;}
.y24c{bottom:936.729333pt;}
.y213{bottom:943.544000pt;}
.y96{bottom:944.101333pt;}
.y169{bottom:945.297333pt;}
.y21{bottom:946.833333pt;}
.y51{bottom:949.282667pt;}
.y1ba{bottom:950.543987pt;}
.y24b{bottom:952.072000pt;}
.y1b9{bottom:959.103867pt;}
.y168{bottom:962.034667pt;}
.y95{bottom:964.824000pt;}
.y50{bottom:966.020000pt;}
.y1b6{bottom:966.856000pt;}
.y212{bottom:967.136000pt;}
.y24a{bottom:967.414667pt;}
.y20{bottom:971.940000pt;}
.y4f{bottom:982.757333pt;}
.y1c{bottom:1010.594667pt;}
.y4e{bottom:1038.548000pt;}
.h29{height:26.761523pt;}
.ha{height:27.672303pt;}
.h24{height:29.925003pt;}
.h22{height:30.112247pt;}
.h23{height:30.179164pt;}
.h1d{height:30.407125pt;}
.h28{height:31.479500pt;}
.h4{height:31.890083pt;}
.h2{height:32.284045pt;}
.h2b{height:33.378918pt;}
.h20{height:34.293750pt;}
.hc{height:34.574438pt;}
.h5{height:35.024664pt;}
.h16{height:35.212691pt;}
.h14{height:35.343750pt;}
.h26{height:36.136563pt;}
.hb{height:36.896250pt;}
.h10{height:37.087439pt;}
.h12{height:38.008906pt;}
.h1e{height:38.180375pt;}
.he{height:38.415786pt;}
.h1a{height:38.775312pt;}
.h7{height:38.947124pt;}
.h1f{height:38.969233pt;}
.h6{height:41.001535pt;}
.hd{height:41.508454pt;}
.h15{height:42.867188pt;}
.h3{height:45.272024pt;}
.hf{height:46.120196pt;}
.h13{height:47.725469pt;}
.h9{height:48.481423pt;}
.h1b{height:50.006694pt;}
.h2c{height:52.169788pt;}
.h8{height:69.148877pt;}
.h17{height:70.729788pt;}
.h18{height:70.735121pt;}
.h27{height:216.385067pt;}
.h1c{height:242.968533pt;}
.h25{height:298.474667pt;}
.h2a{height:298.976800pt;}
.h19{height:311.565333pt;}
.h21{height:640.857600pt;}
.h11{height:778.476000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w6{width:210.778667pt;}
.w8{width:221.617067pt;}
.w9{width:255.065333pt;}
.w4{width:315.054667pt;}
.w5{width:394.474667pt;}
.w7{width:404.074667pt;}
.w3{width:478.257333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4f{left:-205.092000pt;}
.x5c{left:-186.765333pt;}
.xb4{left:-182.585333pt;}
.x74{left:-172.801333pt;}
.x6c{left:-142.176000pt;}
.x62{left:-141.033600pt;}
.x7d{left:-139.559467pt;}
.x51{left:-31.252133pt;}
.x5d{left:-12.925013pt;}
.xb5{left:-8.745013pt;}
.x6e{left:-3.104000pt;}
.x64{left:-1.961600pt;}
.x0{left:0.000000pt;}
.x76{left:1.037651pt;}
.x5e{left:15.395515pt;}
.x63{left:18.262400pt;}
.xb6{left:19.575515pt;}
.x65{left:20.694400pt;}
.x7f{left:22.168956pt;}
.x5f{left:23.234667pt;}
.x75{left:29.358179pt;}
.x77{left:35.038667pt;}
.x6d{left:44.960000pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.xc2{left:76.309333pt;}
.xcd{left:120.333333pt;}
.x2{left:161.132773pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x6f{left:225.524000pt;}
.x7e{left:227.480533pt;}
.x56{left:231.804000pt;}
.xa4{left:233.081333pt;}
.x70{left:234.825333pt;}
.xb9{left:237.364000pt;}
.x5{left:239.924000pt;}
.x9{left:250.204000pt;}
.xc{left:251.558667pt;}
.x59{left:254.429333pt;}
.xd{left:258.200000pt;}
.xe{left:261.454667pt;}
.x55{left:267.038667pt;}
.xf{left:268.097333pt;}
.x71{left:270.876000pt;}
.x61{left:272.185333pt;}
.x7{left:273.912000pt;}
.xc0{left:275.041333pt;}
.x8e{left:277.553333pt;}
.x72{left:278.850667pt;}
.x31{left:284.158667pt;}
.x8{left:285.678667pt;}
.x8f{left:287.536000pt;}
.x32{left:297.441333pt;}
.xa1{left:302.010667pt;}
.x1a{left:306.070667pt;}
.x8b{left:308.216000pt;}
.x24{left:309.716000pt;}
.x87{left:310.776000pt;}
.x1b{left:312.712000pt;}
.x8c{left:321.498667pt;}
.x25{left:323.000000pt;}
.x88{left:324.060000pt;}
.x26{left:326.340000pt;}
.x97{left:331.442667pt;}
.xa5{left:333.397333pt;}
.x89{left:338.413333pt;}
.x27{left:339.624000pt;}
.x3c{left:341.854667pt;}
.x90{left:344.745333pt;}
.xa6{left:346.680000pt;}
.x98{left:348.066667pt;}
.xbb{left:350.277333pt;}
.x8a{left:351.696000pt;}
.x60{left:353.554667pt;}
.x3d{left:355.138667pt;}
.x3e{left:358.393333pt;}
.x7b{left:359.373333pt;}
.x22{left:361.345333pt;}
.x4d{left:366.368000pt;}
.x3f{left:371.677333pt;}
.x7c{left:372.657333pt;}
.x23{left:374.628000pt;}
.x2d{left:376.224000pt;}
.x4e{left:379.650667pt;}
.x29{left:386.026667pt;}
.x2e{left:389.506667pt;}
.x2f{left:392.808000pt;}
.x2a{left:399.309333pt;}
.x2b{left:402.670667pt;}
.x82{left:404.702667pt;}
.x30{left:406.092000pt;}
.xba{left:410.157333pt;}
.x33{left:411.849333pt;}
.x2c{left:415.953333pt;}
.x1c{left:418.741333pt;}
.x34{left:425.133333pt;}
.x1d{left:432.025333pt;}
.x3a{left:435.860000pt;}
.xc1{left:437.670667pt;}
.x35{left:444.925333pt;}
.xab{left:446.154667pt;}
.x3b{left:447.980000pt;}
.x94{left:460.068000pt;}
.xa0{left:461.369333pt;}
.xae{left:463.922667pt;}
.xaf{left:469.973333pt;}
.xa2{left:475.964000pt;}
.x6a{left:482.210667pt;}
.x92{left:484.745333pt;}
.x20{left:485.674667pt;}
.x83{left:487.386667pt;}
.x6b{left:492.954667pt;}
.xb1{left:494.941333pt;}
.x54{left:495.850667pt;}
.x50{left:496.747867pt;}
.x93{left:498.029333pt;}
.x21{left:498.957333pt;}
.x84{left:500.670667pt;}
.xb2{left:511.485333pt;}
.x95{left:515.394667pt;}
.xb3{left:517.534667pt;}
.xb7{left:523.484000pt;}
.x96{left:525.602667pt;}
.x52{left:529.494667pt;}
.xb8{left:530.869333pt;}
.x53{left:540.420000pt;}
.xbe{left:542.446667pt;}
.x57{left:550.256000pt;}
.x12{left:551.337333pt;}
.xbf{left:554.504000pt;}
.x13{left:557.978667pt;}
.x14{left:561.306667pt;}
.x9f{left:562.296000pt;}
.x66{left:564.017333pt;}
.xc5{left:565.985333pt;}
.x15{left:567.948000pt;}
.x16{left:569.928000pt;}
.x5a{left:570.989333pt;}
.xa{left:572.348000pt;}
.xac{left:573.490667pt;}
.x9d{left:574.952000pt;}
.x17{left:576.569333pt;}
.xb{left:578.989333pt;}
.x5b{left:582.644000pt;}
.x1e{left:586.924000pt;}
.x9e{left:588.236000pt;}
.x1f{left:600.208000pt;}
.xc7{left:601.160000pt;}
.x80{left:602.828000pt;}
.x43{left:604.121333pt;}
.x67{left:607.792000pt;}
.xcb{left:610.278667pt;}
.x81{left:616.110667pt;}
.x68{left:617.665333pt;}
.x73{left:619.881333pt;}
.xa9{left:621.292000pt;}
.x10{left:622.325333pt;}
.xc8{left:625.070667pt;}
.x11{left:628.966667pt;}
.x85{left:634.617333pt;}
.xaa{left:636.017333pt;}
.xce{left:638.858667pt;}
.x69{left:639.865333pt;}
.x4a{left:642.348000pt;}
.xbc{left:646.440000pt;}
.x86{left:647.900000pt;}
.x4b{left:649.002667pt;}
.x44{left:653.754667pt;}
.xbd{left:654.645333pt;}
.xb0{left:655.564000pt;}
.xc9{left:656.921333pt;}
.x4c{left:662.286667pt;}
.x91{left:663.268000pt;}
.x45{left:667.038667pt;}
.x46{left:670.296000pt;}
.x58{left:675.058667pt;}
.xa3{left:678.310667pt;}
.xad{left:680.825333pt;}
.x40{left:682.188000pt;}
.x47{left:683.580000pt;}
.x8d{left:684.849333pt;}
.x99{left:686.178667pt;}
.x78{left:688.021333pt;}
.xc6{left:690.169333pt;}
.x79{left:691.409333pt;}
.x36{left:693.774667pt;}
.x41{left:695.472000pt;}
.x48{left:698.301333pt;}
.x9a{left:699.461333pt;}
.xa7{left:701.585333pt;}
.x9b{left:702.716000pt;}
.x7a{left:704.692000pt;}
.x37{left:707.057333pt;}
.xca{left:708.153333pt;}
.x38{left:710.382667pt;}
.x49{left:711.584000pt;}
.xa8{left:714.869333pt;}
.x9c{left:716.000000pt;}
.xc3{left:720.236000pt;}
.x39{left:723.665333pt;}
.xcc{left:725.412000pt;}
.x28{left:726.842667pt;}
.x18{left:732.820000pt;}
.x19{left:739.461333pt;}
.x42{left:740.381333pt;}
.xc4{left:744.146667pt;}
}




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