
    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_4589e5c7b0f3eca5f5a3b3e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;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_79c53992f7dfb5669380c621.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901000;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_4c62742526a46fbe378be343.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e065aeb96826ad4a22d3beec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_3643deb83e453a11ec49a4d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dc9f3fffac85e82bc04fd293.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fad68a1e4d5dd3e907cbdfae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_577348e0ece3ca4331a91bf4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_be4dd398995774d9c57afc5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.457000;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_eb5b4024e9a325ce78dbe77c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.052000;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_499633f31e8ac9e3141fb3a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.400000;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_0bedb6bb25241920f5a408a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0778d9c31944cd282eaf9fdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3ab25ccd07383d82ec2085a7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f5ad1d5de282e9f404a43726.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_633beb8263ef980253edfd4b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_70ad207e7dda9b789d21108e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909000;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_e3420926fd326c11ee491ee1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.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:ff13;src:url('chunks/assets/font_2aedc56c29a6db4e0a3ec5c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.049000;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_5a8ee31fb450c8c0c93d6b5a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.908000;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_cfdcc6a7004df79aad0a6d0f.woff2')format("woff");}.ff15{font-family:ff15;line-height:2.400000;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_15331af161ee8e04b12cefef.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.705000;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_05eb9e295a9ad6e9dfdab657.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.899000;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_db2847211f59b025ae11a953.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_726fe258e303aea0962d2c81.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.908000;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_933a463bddd673621a357709.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.921000;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_82e8f28ec063e2dbf949a3de.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{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);}
.m1d{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);}
.m1e{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);}
.m23{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);}
.m24{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);}
.md{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);}
.m1f{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);}
.mf{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);}
.m3{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);}
.m10{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);}
.m1a{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);}
.m26{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);}
.m22{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);}
.me{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);}
.m1c{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);}
.m12{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);}
.m16{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);}
.m13{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);}
.m19{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);}
.m9{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);}
.m18{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);}
.mb{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);}
.m15{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);}
.m21{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);}
.m1{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);}
.m7{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);}
.m11{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m20{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);}
.mc{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);}
.m1b{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);}
.m14{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);}
.m2{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);}
.ma{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);}
.m17{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);}
.m4{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);}
.m6{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);}
.v22{vertical-align:-87.612000px;}
.v2e{vertical-align:-67.416000px;}
.v2d{vertical-align:-58.446000px;}
.v1e{vertical-align:-56.118000px;}
.v13{vertical-align:-51.108000px;}
.v10{vertical-align:-49.452000px;}
.v23{vertical-align:-45.612000px;}
.v21{vertical-align:-41.010000px;}
.v19{vertical-align:-24.888000px;}
.v8{vertical-align:-8.964000px;}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v2a{vertical-align:9.468000px;}
.v2f{vertical-align:11.880000px;}
.v16{vertical-align:14.778000px;}
.vc{vertical-align:17.268000px;}
.v25{vertical-align:19.290000px;}
.v1a{vertical-align:20.616000px;}
.v1f{vertical-align:21.696000px;}
.v27{vertical-align:22.854000px;}
.v15{vertical-align:24.684000px;}
.v5{vertical-align:25.842000px;}
.v29{vertical-align:28.818000px;}
.vd{vertical-align:31.476000px;}
.v2{vertical-align:34.794000px;}
.v3{vertical-align:36.486000px;}
.v1b{vertical-align:37.884000px;}
.v9{vertical-align:40.440000px;}
.v1d{vertical-align:44.148000px;}
.v30{vertical-align:46.014000px;}
.v11{vertical-align:47.658000px;}
.v12{vertical-align:49.446000px;}
.v2c{vertical-align:51.108000px;}
.v26{vertical-align:59.340000px;}
.v4{vertical-align:62.328000px;}
.va{vertical-align:65.688000px;}
.v1c{vertical-align:69.036000px;}
.v28{vertical-align:71.280000px;}
.vf{vertical-align:72.474000px;}
.v6{vertical-align:75.738000px;}
.ve{vertical-align:81.444000px;}
.v17{vertical-align:84.288000px;}
.v24{vertical-align:90.084000px;}
.v14{vertical-align:93.930000px;}
.vb{vertical-align:95.256000px;}
.v20{vertical-align:103.134000px;}
.v2b{vertical-align:107.358000px;}
.v7{vertical-align:112.224000px;}
.v18{vertical-align:125.286000px;}
.lse{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000300px;}
.lsa5{letter-spacing:0.000430px;}
.lsdf{letter-spacing:0.000944px;}
.ls28{letter-spacing:0.000993px;}
.ls1e{letter-spacing:0.001120px;}
.lsfa{letter-spacing:0.001494px;}
.ls9{letter-spacing:0.001670px;}
.lsa7{letter-spacing:0.001682px;}
.ls49{letter-spacing:0.002387px;}
.ls69{letter-spacing:0.002727px;}
.ls34{letter-spacing:0.002823px;}
.ls1a{letter-spacing:0.003031px;}
.ls72{letter-spacing:0.003181px;}
.ls108{letter-spacing:0.003414px;}
.ls2f{letter-spacing:0.003507px;}
.lsf6{letter-spacing:0.003573px;}
.ls31{letter-spacing:0.004200px;}
.lsc7{letter-spacing:0.004364px;}
.ls74{letter-spacing:0.004379px;}
.lsd3{letter-spacing:0.004383px;}
.lsef{letter-spacing:0.004893px;}
.ls0{letter-spacing:0.005092px;}
.lsf2{letter-spacing:0.005425px;}
.ls6b{letter-spacing:0.005968px;}
.ls32{letter-spacing:0.006993px;}
.ls90{letter-spacing:0.008355px;}
.lsbf{letter-spacing:0.008484px;}
.lsf8{letter-spacing:0.010308px;}
.ls10d{letter-spacing:0.011476px;}
.ls4d{letter-spacing:0.011784px;}
.ls100{letter-spacing:0.012015px;}
.lsa1{letter-spacing:0.012317px;}
.lsb9{letter-spacing:0.014206px;}
.ls8f{letter-spacing:0.014355px;}
.ls96{letter-spacing:0.017226px;}
.lsb6{letter-spacing:0.017631px;}
.lsb7{letter-spacing:0.017823px;}
.lsdd{letter-spacing:0.017836px;}
.ls5a{letter-spacing:0.018775px;}
.lsa3{letter-spacing:0.020483px;}
.lsed{letter-spacing:0.021313px;}
.ls25{letter-spacing:0.021382px;}
.ls89{letter-spacing:0.022982px;}
.lsc6{letter-spacing:0.024284px;}
.lse7{letter-spacing:0.025055px;}
.ls23{letter-spacing:0.025959px;}
.ls9f{letter-spacing:0.027151px;}
.lsa9{letter-spacing:0.028107px;}
.ls7b{letter-spacing:0.030403px;}
.lsc5{letter-spacing:1.537682px;}
.ls70{letter-spacing:1.655249px;}
.lsf0{letter-spacing:1.661249px;}
.lsab{letter-spacing:1.936742px;}
.lsf9{letter-spacing:1.941679px;}
.lsc3{letter-spacing:1.942466px;}
.lsc4{letter-spacing:1.958605px;}
.ls43{letter-spacing:2.133030px;}
.ls46{letter-spacing:2.142108px;}
.ls78{letter-spacing:2.144508px;}
.ls93{letter-spacing:2.148108px;}
.ls6a{letter-spacing:2.149908px;}
.ls80{letter-spacing:2.150508px;}
.ls13{letter-spacing:2.151922px;}
.ls44{letter-spacing:2.984525px;}
.ls40{letter-spacing:2.985089px;}
.lsa{letter-spacing:2.985959px;}
.ls35{letter-spacing:2.986340px;}
.ls12{letter-spacing:2.987967px;}
.lsaa{letter-spacing:2.988532px;}
.ls10b{letter-spacing:2.989663px;}
.ls47{letter-spacing:2.990525px;}
.lsac{letter-spacing:4.244068px;}
.lsb1{letter-spacing:4.276379px;}
.ls1d{letter-spacing:7.172400px;}
.ls3e{letter-spacing:7.173181px;}
.ls6{letter-spacing:7.175510px;}
.ls3a{letter-spacing:7.175823px;}
.ls61{letter-spacing:7.176843px;}
.ls5e{letter-spacing:7.179181px;}
.ls75{letter-spacing:7.679376px;}
.ls10e{letter-spacing:8.798832px;}
.ls2d{letter-spacing:9.318108px;}
.ls29{letter-spacing:9.324108px;}
.ls30{letter-spacing:9.419732px;}
.ls4c{letter-spacing:9.922750px;}
.ls82{letter-spacing:9.963181px;}
.ls52{letter-spacing:9.982525px;}
.lsc9{letter-spacing:12.093030px;}
.lsd9{letter-spacing:12.099030px;}
.ls4b{letter-spacing:12.134447px;}
.ls3{letter-spacing:12.266035px;}
.ls7{letter-spacing:12.287510px;}
.ls5{letter-spacing:12.319834px;}
.ls7e{letter-spacing:12.950525px;}
.ls39{letter-spacing:12.986400px;}
.lsce{letter-spacing:12.987181px;}
.lsb2{letter-spacing:13.176108px;}
.ls16{letter-spacing:13.270183px;}
.ls3f{letter-spacing:13.281181px;}
.ls5c{letter-spacing:13.287181px;}
.ls92{letter-spacing:13.329959px;}
.lsca{letter-spacing:13.886012px;}
.lsc{letter-spacing:14.202778px;}
.lsb0{letter-spacing:14.707908px;}
.lse3{letter-spacing:14.713908px;}
.lsa8{letter-spacing:15.332544px;}
.ls104{letter-spacing:15.368817px;}
.ls10a{letter-spacing:15.384835px;}
.ls106{letter-spacing:15.386342px;}
.ls19{letter-spacing:15.422105px;}
.ls87{letter-spacing:16.268525px;}
.ls91{letter-spacing:16.274525px;}
.lse6{letter-spacing:16.557841px;}
.ls1c{letter-spacing:16.602538px;}
.lscb{letter-spacing:16.604012px;}
.lscf{letter-spacing:16.605181px;}
.ls11{letter-spacing:16.617617px;}
.ls73{letter-spacing:16.619437px;}
.ls71{letter-spacing:16.868525px;}
.ls7d{letter-spacing:16.874525px;}
.lsd{letter-spacing:16.928492px;}
.lsad{letter-spacing:17.036046px;}
.ls36{letter-spacing:17.131243px;}
.lsb3{letter-spacing:17.551908px;}
.ls9a{letter-spacing:18.214200px;}
.lsd2{letter-spacing:18.231558px;}
.ls1{letter-spacing:18.348532px;}
.lscc{letter-spacing:18.574200px;}
.ls94{letter-spacing:18.883238px;}
.ls21{letter-spacing:18.906108px;}
.ls63{letter-spacing:19.267230px;}
.ls68{letter-spacing:19.307519px;}
.ls54{letter-spacing:19.546621px;}
.ls5d{letter-spacing:19.586525px;}
.ls38{letter-spacing:19.589535px;}
.ls14{letter-spacing:19.592525px;}
.ls6d{letter-spacing:19.595535px;}
.ls10{letter-spacing:19.725948px;}
.ls59{letter-spacing:19.905275px;}
.ls37{letter-spacing:19.965050px;}
.ls6c{letter-spacing:20.204153px;}
.ls66{letter-spacing:20.328993px;}
.ls42{letter-spacing:20.383480px;}
.ls86{letter-spacing:20.449463px;}
.ls84{letter-spacing:20.456338px;}
.ls6e{letter-spacing:20.861684px;}
.lse5{letter-spacing:20.921460px;}
.lsbc{letter-spacing:21.392788px;}
.ls95{letter-spacing:21.578992px;}
.lsff{letter-spacing:22.507167px;}
.ls2{letter-spacing:22.525559px;}
.lsb{letter-spacing:22.531559px;}
.ls24{letter-spacing:22.901967px;}
.ls5b{letter-spacing:22.904525px;}
.lse1{letter-spacing:22.910525px;}
.ls9e{letter-spacing:23.372260px;}
.ls81{letter-spacing:23.438525px;}
.ls79{letter-spacing:23.444525px;}
.lsaf{letter-spacing:23.759374px;}
.ls18{letter-spacing:23.772538px;}
.ls15{letter-spacing:23.778538px;}
.ls9d{letter-spacing:24.149342px;}
.ls7a{letter-spacing:24.209118px;}
.ls76{letter-spacing:24.281376px;}
.lsba{letter-spacing:24.462783px;}
.ls1b{letter-spacing:26.027732px;}
.ls85{letter-spacing:26.762525px;}
.ls7c{letter-spacing:27.593376px;}
.ls57{letter-spacing:27.858538px;}
.lsf{letter-spacing:29.887800px;}
.ls2c{letter-spacing:30.486538px;}
.ls4{letter-spacing:30.718886px;}
.lsae{letter-spacing:33.360879px;}
.ls8{letter-spacing:33.705959px;}
.ls3c{letter-spacing:34.415823px;}
.lsd0{letter-spacing:34.421823px;}
.ls8e{letter-spacing:35.022538px;}
.ls83{letter-spacing:35.428710px;}
.ls33{letter-spacing:37.398538px;}
.ls6f{letter-spacing:37.823437px;}
.lsb4{letter-spacing:42.210108px;}
.ls1f{letter-spacing:42.596525px;}
.lsf3{letter-spacing:45.468538px;}
.lsd5{letter-spacing:47.699823px;}
.ls27{letter-spacing:51.012538px;}
.lsbb{letter-spacing:53.143559px;}
.ls7f{letter-spacing:53.637181px;}
.lsc0{letter-spacing:54.588783px;}
.lsf4{letter-spacing:55.488108px;}
.lsb5{letter-spacing:57.151908px;}
.lsea{letter-spacing:58.174200px;}
.ls77{letter-spacing:70.236538px;}
.lse8{letter-spacing:73.753908px;}
.ls26{letter-spacing:76.022525px;}
.lsdb{letter-spacing:84.168538px;}
.lsda{letter-spacing:85.671181px;}
.ls51{letter-spacing:89.148538px;}
.lsd7{letter-spacing:102.276538px;}
.lsd6{letter-spacing:106.556338px;}
.ls50{letter-spacing:108.909263px;}
.ls9b{letter-spacing:108.982738px;}
.ls4a{letter-spacing:112.242538px;}
.ls9c{letter-spacing:117.886200px;}
.ls56{letter-spacing:150.420538px;}
.lsde{letter-spacing:155.400538px;}
.lsfb{letter-spacing:217.567534px;}
.ls103{letter-spacing:227.604334px;}
.ls109{letter-spacing:230.636832px;}
.lsfd{letter-spacing:231.763507px;}
.ls102{letter-spacing:232.722532px;}
.ls110{letter-spacing:240.209856px;}
.ls98{letter-spacing:275.116200px;}
.lsa4{letter-spacing:275.463462px;}
.lsa2{letter-spacing:278.430783px;}
.ls97{letter-spacing:279.394738px;}
.ls99{letter-spacing:279.400738px;}
.lsa0{letter-spacing:288.648457px;}
.ls8b{letter-spacing:297.981366px;}
.lsbe{letter-spacing:322.519002px;}
.ls60{letter-spacing:354.132538px;}
.lsa6{letter-spacing:389.598532px;}
.ls8a{letter-spacing:397.208862px;}
.ls8c{letter-spacing:486.872262px;}
.lsc1{letter-spacing:520.775781px;}
.lsc2{letter-spacing:521.809002px;}
.lsbd{letter-spacing:537.084783px;}
.ls88{letter-spacing:576.296560px;}
.lsee{letter-spacing:613.476983px;}
.ls5f{letter-spacing:641.750842px;}
.lsfe{letter-spacing:702.732334px;}
.lsfc{letter-spacing:759.775534px;}
.lse9{letter-spacing:783.179911px;}
.ls10f{letter-spacing:838.340467px;}
.lsf5{letter-spacing:843.433716px;}
.ls107{letter-spacing:861.312384px;}
.ls62{letter-spacing:885.402843px;}
.lsd8{letter-spacing:927.657536px;}
.lscd{letter-spacing:944.095826px;}
.lsdc{letter-spacing:950.432040px;}
.ls53{letter-spacing:962.865365px;}
.lsd1{letter-spacing:964.240204px;}
.lse0{letter-spacing:1006.680880px;}
.ls58{letter-spacing:1007.577514px;}
.ls67{letter-spacing:1008.533923px;}
.lse2{letter-spacing:1023.836477px;}
.ls41{letter-spacing:1032.205061px;}
.ls48{letter-spacing:1052.110336px;}
.ls105{letter-spacing:1054.287245px;}
.ls65{letter-spacing:1054.680686px;}
.ls64{letter-spacing:1076.498780px;}
.lsf1{letter-spacing:1079.846214px;}
.ls2a{letter-spacing:1086.899735px;}
.lse4{letter-spacing:1089.111432px;}
.ls8d{letter-spacing:1093.714153px;}
.lsf7{letter-spacing:1094.689843px;}
.lsd4{letter-spacing:1096.882260px;}
.lsec{letter-spacing:1098.555977px;}
.lsc8{letter-spacing:1112.722794px;}
.ls45{letter-spacing:1120.254520px;}
.ls4e{letter-spacing:1142.491043px;}
.ls3d{letter-spacing:1143.925657px;}
.ls2b{letter-spacing:1147.571969px;}
.ls4f{letter-spacing:1154.087509px;}
.ls101{letter-spacing:1174.530532px;}
.lseb{letter-spacing:1202.565521px;}
.ls20{letter-spacing:1224.682493px;}
.ls55{letter-spacing:1226.595312px;}
.ls22{letter-spacing:1242.017417px;}
.ls10c{letter-spacing:1249.428532px;}
.ls2e{letter-spacing:1256.483112px;}
.ls3b{letter-spacing:1264.493042px;}
.lsb8{letter-spacing:2064.150532px;}
.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;}
}
.ws20{word-spacing:-48.890463px;}
.ws5b{word-spacing:-47.324343px;}
.wsd7{word-spacing:-43.770378px;}
.ws22{word-spacing:-41.836942px;}
.ws21{word-spacing:-41.000084px;}
.ws31{word-spacing:-38.937826px;}
.wse{word-spacing:-36.071827px;}
.ws1f{word-spacing:-35.440953px;}
.ws1d{word-spacing:-32.571724px;}
.ws1c{word-spacing:-31.914193px;}
.ws62{word-spacing:-29.881822px;}
.wscc{word-spacing:-28.955301px;}
.ws1e{word-spacing:-28.566759px;}
.ws9f{word-spacing:-27.641618px;}
.ws8a{word-spacing:-24.711233px;}
.wsac{word-spacing:-20.646492px;}
.wsca{word-spacing:-19.899297px;}
.ws86{word-spacing:-18.972775px;}
.ws3c{word-spacing:-16.605662px;}
.wsdd{word-spacing:-16.013883px;}
.ws9{word-spacing:-15.359443px;}
.ws9a{word-spacing:-14.340166px;}
.ws5c{word-spacing:-13.682635px;}
.ws47{word-spacing:-13.503308px;}
.ws3e{word-spacing:-13.084879px;}
.ws54{word-spacing:-12.845776px;}
.wsde{word-spacing:-12.786001px;}
.ws65{word-spacing:-12.666450px;}
.ws34{word-spacing:-12.307796px;}
.ws79{word-spacing:-12.068694px;}
.ws7c{word-spacing:-11.949142px;}
.ws13{word-spacing:-11.932485px;}
.ws4e{word-spacing:-11.590489px;}
.ws4b{word-spacing:-11.172060px;}
.ws84{word-spacing:-11.112284px;}
.ws69{word-spacing:-10.992733px;}
.ws48{word-spacing:-10.813406px;}
.ws52{word-spacing:-10.693855px;}
.ws2f{word-spacing:-10.574304px;}
.ws2e{word-spacing:-10.454752px;}
.ws58{word-spacing:-10.394977px;}
.ws32{word-spacing:-10.335201px;}
.ws2a{word-spacing:-10.275426px;}
.ws29{word-spacing:-10.215650px;}
.ws27{word-spacing:-10.155874px;}
.ws26{word-spacing:-10.096099px;}
.ws5d{word-spacing:-10.036323px;}
.ws28{word-spacing:-9.976548px;}
.ws3f{word-spacing:-9.916772px;}
.ws93{word-spacing:-9.888146px;}
.ws53{word-spacing:-9.856996px;}
.ws7b{word-spacing:-9.797221px;}
.ws35{word-spacing:-9.737445px;}
.ws25{word-spacing:-9.677670px;}
.ws5{word-spacing:-9.619154px;}
.ws39{word-spacing:-9.617894px;}
.ws5f{word-spacing:-9.558118px;}
.ws2b{word-spacing:-9.498343px;}
.wsbe{word-spacing:-9.457759px;}
.ws96{word-spacing:-9.403960px;}
.ws68{word-spacing:-9.384769px;}
.ws2c{word-spacing:-9.378792px;}
.ws4{word-spacing:-9.296364px;}
.ws7{word-spacing:-9.242565px;}
.ws2{word-spacing:-9.205442px;}
.wsd{word-spacing:-9.188767px;}
.ws4c{word-spacing:-9.145667px;}
.ws60{word-spacing:-9.139689px;}
.ws61{word-spacing:-9.079914px;}
.ws6{word-spacing:-9.027372px;}
.wsbd{word-spacing:-8.973573px;}
.ws80{word-spacing:-8.840811px;}
.ws92{word-spacing:-8.758380px;}
.ws24{word-spacing:-8.661484px;}
.ws45{word-spacing:-8.541933px;}
.ws7a{word-spacing:-8.482158px;}
.wsdf{word-spacing:-8.478628px;}
.ws49{word-spacing:-8.422382px;}
.ws6d{word-spacing:-8.362606px;}
.ws6c{word-spacing:-8.302831px;}
.ws4d{word-spacing:-7.944177px;}
.ws38{word-spacing:-7.884402px;}
.ws46{word-spacing:-7.585524px;}
.ws2d{word-spacing:-7.525748px;}
.ws15{word-spacing:-7.413420px;}
.ws82{word-spacing:-7.286646px;}
.ws55{word-spacing:-7.167094px;}
.ws51{word-spacing:-6.748665px;}
.wsc2{word-spacing:-6.623136px;}
.ws83{word-spacing:-6.509563px;}
.ws59{word-spacing:-6.091134px;}
.ws7d{word-spacing:-5.971582px;}
.ws14{word-spacing:-5.745669px;}
.ws36{word-spacing:-5.493378px;}
.ws99{word-spacing:-5.369080px;}
.ws12{word-spacing:-5.207685px;}
.ws4a{word-spacing:-5.074948px;}
.ws5a{word-spacing:-5.015173px;}
.wse0{word-spacing:-4.992492px;}
.ws7f{word-spacing:-4.835846px;}
.ws33{word-spacing:-3.998988px;}
.ws87{word-spacing:-3.939212px;}
.ws37{word-spacing:-3.461007px;}
.ws74{word-spacing:-3.335478px;}
.ws76{word-spacing:-3.275703px;}
.wsb{word-spacing:-3.093408px;}
.wsa5{word-spacing:-3.039610px;}
.ws57{word-spacing:-2.923027px;}
.ws8f{word-spacing:-2.863251px;}
.ws30{word-spacing:-0.107596px;}
.ws18{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.wse1{word-spacing:-0.053798px;}
.ws41{word-spacing:-0.041843px;}
.wsb3{word-spacing:-0.035866px;}
.wsc{word-spacing:-0.026899px;}
.ws6a{word-spacing:-0.012917px;}
.ws17{word-spacing:0.000000px;}
.ws1b{word-spacing:0.005978px;}
.ws67{word-spacing:0.011955px;}
.wsd0{word-spacing:0.026899px;}
.ws6b{word-spacing:0.251058px;}
.ws90{word-spacing:0.310833px;}
.ws8b{word-spacing:0.526738px;}
.ws89{word-spacing:0.532738px;}
.ws5e{word-spacing:3.239838px;}
.ws8d{word-spacing:3.299613px;}
.ws3b{word-spacing:3.850738px;}
.ws85{word-spacing:3.851338px;}
.ws75{word-spacing:3.877710px;}
.ws9d{word-spacing:4.097568px;}
.ws8{word-spacing:4.100561px;}
.ws7e{word-spacing:7.005700px;}
.wsd1{word-spacing:7.135198px;}
.ws8e{word-spacing:7.158275px;}
.ws6f{word-spacing:7.164532px;}
.ws8c{word-spacing:7.172938px;}
.wsc1{word-spacing:10.123921px;}
.wsa{word-spacing:12.166625px;}
.ws11{word-spacing:12.169198px;}
.ws71{word-spacing:12.899772px;}
.ws44{word-spacing:12.905208px;}
.ws3d{word-spacing:12.905772px;}
.ws16{word-spacing:16.880672px;}
.ws95{word-spacing:18.183859px;}
.wsf{word-spacing:18.311553px;}
.wsa3{word-spacing:18.313457px;}
.wsbc{word-spacing:18.614246px;}
.ws91{word-spacing:18.829440px;}
.wsc8{word-spacing:19.540833px;}
.wscb{word-spacing:19.544573px;}
.ws6e{word-spacing:19.547166px;}
.ws4f{word-spacing:19.547250px;}
.ws66{word-spacing:19.548544px;}
.wsc7{word-spacing:19.549337px;}
.ws56{word-spacing:19.549921px;}
.ws40{word-spacing:19.550573px;}
.ws63{word-spacing:19.552464px;}
.ws42{word-spacing:19.553166px;}
.ws3a{word-spacing:19.553250px;}
.wsad{word-spacing:19.555734px;}
.wsc6{word-spacing:19.567984px;}
.ws73{word-spacing:20.405208px;}
.ws72{word-spacing:20.406784px;}
.ws78{word-spacing:20.456938px;}
.wsa1{word-spacing:21.142771px;}
.ws9b{word-spacing:21.196570px;}
.wsbb{word-spacing:21.379198px;}
.ws98{word-spacing:22.218739px;}
.ws1a{word-spacing:22.834279px;}
.wsbf{word-spacing:22.859772px;}
.wsc5{word-spacing:22.865166px;}
.wsc4{word-spacing:22.865208px;}
.ws50{word-spacing:22.865250px;}
.wsc9{word-spacing:22.866544px;}
.ws81{word-spacing:22.889166px;}
.ws1{word-spacing:26.827469px;}
.ws10{word-spacing:28.671564px;}
.wsd3{word-spacing:29.053730px;}
.wsc3{word-spacing:30.416938px;}
.ws43{word-spacing:30.422938px;}
.wsb9{word-spacing:31.749564px;}
.ws0{word-spacing:37.081972px;}
.ws88{word-spacing:45.202738px;}
.ws19{word-spacing:55.232654px;}
.ws77{word-spacing:58.669710px;}
.wsa4{word-spacing:64.961568px;}
.wsae{word-spacing:71.659469px;}
.wsda{word-spacing:71.713267px;}
.wsaf{word-spacing:74.680625px;}
.wsb2{word-spacing:74.683198px;}
.ws23{word-spacing:80.625869px;}
.ws70{word-spacing:90.536124px;}
.ws9e{word-spacing:101.938625px;}
.wsa7{word-spacing:106.432625px;}
.wsb7{word-spacing:122.110625px;}
.wsa0{word-spacing:127.531198px;}
.wsa2{word-spacing:136.150625px;}
.wsce{word-spacing:138.878122px;}
.wsa9{word-spacing:140.971198px;}
.wsab{word-spacing:153.421198px;}
.wsd6{word-spacing:155.843553px;}
.wsd2{word-spacing:160.055553px;}
.wsd5{word-spacing:168.193457px;}
.ws9c{word-spacing:173.128625px;}
.wsd8{word-spacing:180.871457px;}
.wscd{word-spacing:188.595016px;}
.wsd9{word-spacing:195.147821px;}
.wsdc{word-spacing:219.400635px;}
.wsdb{word-spacing:225.533652px;}
.wsb8{word-spacing:241.435198px;}
.wsba{word-spacing:294.025457px;}
.wsb6{word-spacing:332.626625px;}
.wsaa{word-spacing:334.199553px;}
.wsa8{word-spacing:362.745016px;}
.wsa6{word-spacing:381.726547px;}
.ws97{word-spacing:772.610099px;}
.wsd4{word-spacing:885.385198px;}
.wscf{word-spacing:1041.679457px;}
.wsc0{word-spacing:1123.219389px;}
.ws64{word-spacing:1149.879307px;}
.wsb4{word-spacing:1875.833159px;}
.wsb0{word-spacing:1913.921159px;}
.ws94{word-spacing:1932.298441px;}
.wsb1{word-spacing:2026.025553px;}
.wsb5{word-spacing:2054.571016px;}
._17{margin-left:-34.849175px;}
._19{margin-left:-31.501741px;}
._15{margin-left:-29.887800px;}
._1e{margin-left:-28.214083px;}
._1b{margin-left:-26.600142px;}
._1{margin-left:-12.601673px;}
._18{margin-left:-9.982525px;}
._35{margin-left:-6.742733px;}
._d{margin-left:-5.738458px;}
._28{margin-left:-4.662497px;}
._0{margin-left:-3.098772px;}
._2{margin-left:-1.912819px;}
._3{width:1.506355px;}
._6{width:3.012710px;}
._2d{width:5.021150px;}
._5{width:7.169011px;}
._38{width:9.962185px;}
._3c{width:13.270183px;}
._1f{width:16.318739px;}
._3e{width:17.394700px;}
._32{width:18.589225px;}
._10{width:19.905275px;}
._9{width:21.250368px;}
._7{width:23.509901px;}
._4{width:24.916999px;}
._2b{width:26.230510px;}
._2c{width:27.248114px;}
._16{width:29.050942px;}
._1a{width:31.202863px;}
._24{width:32.448592px;}
._36{width:33.773214px;}
._8{width:34.953377px;}
._37{width:36.343565px;}
._21{width:37.658628px;}
._3a{width:38.708745px;}
._29{width:39.989876px;}
._30{width:41.902696px;}
._2e{width:44.383241px;}
._23{width:46.146763px;}
._33{width:47.210759px;}
._27{width:48.657338px;}
._25{width:50.560598px;}
._c{width:55.292430px;}
._12{width:56.786820px;}
._1c{width:57.838850px;}
._f{width:61.090663px;}
._42{width:72.179482px;}
._34{width:80.697600px;}
._13{width:86.017088px;}
._11{width:87.152825px;}
._40{width:91.493107px;}
._46{width:121.745779px;}
._43{width:129.473950px;}
._41{width:180.445786px;}
._3b{width:232.282444px;}
._4e{width:240.478848px;}
._4c{width:243.575232px;}
._48{width:257.222062px;}
._4d{width:263.127974px;}
._4a{width:273.564864px;}
._49{width:369.713371px;}
._39{width:381.921032px;}
._47{width:439.891553px;}
._3f{width:646.662720px;}
._45{width:673.107610px;}
._3d{width:805.029800px;}
._a{width:830.422539px;}
._4b{width:916.378022px;}
._2a{width:1371.132713px;}
._22{width:1589.772739px;}
._e{width:1611.012196px;}
._14{width:2026.939637px;}
._26{width:2133.778962px;}
._44{width:2184.747585px;}
._31{width:2226.162749px;}
._2f{width:2274.158964px;}
._b{width:2435.081446px;}
._20{width:2484.832688px;}
._1d{width:2500.093398px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y18{bottom:55.935000px;}
.y1df{bottom:84.328500px;}
.y6c{bottom:91.800000px;}
.y23b{bottom:92.581500px;}
.y1de{bottom:94.579500px;}
.y20c{bottom:100.630500px;}
.y6b{bottom:109.734000px;}
.y23a{bottom:110.757000px;}
.y20d{bottom:110.881500px;}
.y14c{bottom:114.027000px;}
.ycb{bottom:116.467500px;}
.y1dd{bottom:123.339000px;}
.yca{bottom:126.718500px;}
.y6a{bottom:127.666500px;}
.y239{bottom:128.932500px;}
.y9c{bottom:129.414000px;}
.y14b{bottom:131.959500px;}
.y20b{bottom:135.603000px;}
.y166{bottom:136.149060px;}
.y9b{bottom:139.665000px;}
.y1dc{bottom:141.621000px;}
.y1a5{bottom:144.922500px;}
.y238{bottom:147.106500px;}
.y1db{bottom:151.872000px;}
.y69{bottom:152.031000px;}
.y20a{bottom:153.535500px;}
.y165{bottom:154.081560px;}
.y14a{bottom:156.325500px;}
.yf9{bottom:157.084500px;}
.yc9{bottom:160.833000px;}
.y237{bottom:165.282000px;}
.y1a4{bottom:169.191000px;}
.y1da{bottom:172.815000px;}
.yf8{bottom:175.017000px;}
.y209{bottom:178.753500px;}
.y9a{bottom:181.282500px;}
.y236{bottom:181.720500px;}
.y208{bottom:182.448000px;}
.yc8{bottom:182.677500px;}
.y120{bottom:183.300000px;}
.y68{bottom:185.073000px;}
.y149{bottom:185.139000px;}
.y1d9{bottom:190.747500px;}
.yc7{bottom:192.928500px;}
.y1a3{bottom:193.461000px;}
.y148{bottom:195.390000px;}
.yf7{bottom:197.775000px;}
.y235{bottom:199.896000px;}
.y11f{bottom:201.232500px;}
.y67{bottom:203.005500px;}
.y99{bottom:204.039000px;}
.y207{bottom:211.362000px;}
.y1d8{bottom:214.273500px;}
.y163{bottom:214.807560px;}
.y1a2{bottom:217.729500px;}
.y234{bottom:218.071500px;}
.y11e{bottom:219.166500px;}
.y66{bottom:220.939500px;}
.yc6{bottom:223.017000px;}
.yf6{bottom:223.867500px;}
.y1d7{bottom:224.524500px;}
.y16e{bottom:226.078500px;}
.y206{bottom:229.294500px;}
.y98{bottom:231.621000px;}
.y147{bottom:234.474000px;}
.y233{bottom:236.247000px;}
.y167{bottom:236.587560px;}
.y65{bottom:238.872000px;}
.yf5{bottom:241.800000px;}
.y1a1{bottom:241.998000px;}
.y16d{bottom:242.517000px;}
.y11d{bottom:243.531000px;}
.yc5{bottom:245.775000px;}
.y97{bottom:249.553500px;}
.y232{bottom:252.684000px;}
.y146{bottom:255.226500px;}
.y64{bottom:256.804500px;}
.y205{bottom:256.921500px;}
.y1a0{bottom:258.646500px;}
.y16c{bottom:258.955500px;}
.y1d6{bottom:259.489500px;}
.yf3{bottom:259.732500px;}
.y161{bottom:261.873000px;}
.yf4{bottom:265.156500px;}
.y204{bottom:267.172500px;}
.y96{bottom:267.486000px;}
.yc4{bottom:270.859500px;}
.y63{bottom:274.737000px;}
.y145{bottom:275.587500px;}
.y11c{bottom:277.318500px;}
.yf2{bottom:277.665000px;}
.y160{bottom:278.311500px;}
.y19f{bottom:281.403000px;}
.y1d5{bottom:282.247500px;}
.y95{bottom:285.418500px;}
.yc3{bottom:288.792000px;}
.y231{bottom:289.035000px;}
.y144{bottom:292.150500px;}
.y62{bottom:292.669500px;}
.y16b{bottom:293.560500px;}
.y11b{bottom:295.251000px;}
.yf1{bottom:295.599000px;}
.y94{bottom:303.352500px;}
.y203{bottom:305.052000px;}
.y230{bottom:305.473500px;}
.y19d{bottom:309.046500px;}
.y61{bottom:310.602000px;}
.yc2{bottom:311.965500px;}
.y142{bottom:312.904500px;}
.y16a{bottom:312.984000px;}
.y11a{bottom:313.183500px;}
.yf0{bottom:313.531500px;}
.y1d4{bottom:319.080000px;}
.y19c{bottom:319.297500px;}
.y91{bottom:321.285000px;}
.yc1{bottom:322.216500px;}
.y141{bottom:323.155500px;}
.y202{bottom:324.339000px;}
.y19e{bottom:325.713000px;}
.y22f{bottom:328.344000px;}
.y60{bottom:328.536000px;}
.y119{bottom:331.116000px;}
.yef{bottom:331.464000px;}
.y169{bottom:332.407500px;}
.y143{bottom:333.264000px;}
.y93{bottom:333.646500px;}
.y92{bottom:334.062000px;}
.y201{bottom:334.590000px;}
.y1d3{bottom:335.518500px;}
.y90{bottom:341.028000px;}
.y5f{bottom:346.468500px;}
.y140{bottom:346.923000px;}
.y118{bottom:349.048500px;}
.yee{bottom:349.396500px;}
.y1d2{bottom:351.957000px;}
.y200{bottom:352.522500px;}
.yc0{bottom:356.331000px;}
.y39{bottom:358.003500px;}
.y8f{bottom:358.960500px;}
.y19b{bottom:360.252000px;}
.y22e{bottom:362.131500px;}
.y117{bottom:366.982500px;}
.yed{bottom:367.329000px;}
.y5e{bottom:371.467500px;}
.y13f{bottom:371.622000px;}
.y1ff{bottom:375.291000px;}
.y8e{bottom:376.893000px;}
.y1d1{bottom:377.644500px;}
.y13e{bottom:378.178500px;}
.ybf{bottom:379.750500px;}
.y22d{bottom:380.064000px;}
.y199{bottom:381.004500px;}
.y5d{bottom:381.718500px;}
.y13d{bottom:381.873000px;}
.y116{bottom:384.915000px;}
.yec{bottom:385.261500px;}
.y1fe{bottom:385.542000px;}
.y1cf{bottom:386.766000px;}
.y38{bottom:390.877500px;}
.y198{bottom:391.255500px;}
.y1d0{bottom:395.464500px;}
.y19a{bottom:397.656000px;}
.ybe{bottom:397.683000px;}
.y22c{bottom:397.996500px;}
.y8d{bottom:403.623000px;}
.y1ce{bottom:407.220000px;}
.yeb{bottom:408.534000px;}
.y1cd{bottom:409.587000px;}
.y13c{bottom:410.988000px;}
.y115{bottom:412.561500px;}
.y8c{bottom:413.874000px;}
.ybd{bottom:415.617000px;}
.y22b{bottom:415.929000px;}
.y197{bottom:417.265500px;}
.yea{bottom:418.785000px;}
.y5c{bottom:419.071500px;}
.y1fd{bottom:422.073000px;}
.y114{bottom:422.811000px;}
.y37{bottom:423.750000px;}
.y17{bottom:426.207000px;}
.y1cc{bottom:426.757500px;}
.y13b{bottom:431.742000px;}
.y22a{bottom:433.861500px;}
.y162{bottom:436.009440px;}
.y196{bottom:438.018000px;}
.ybc{bottom:438.373500px;}
.y1cb{bottom:438.996000px;}
.y36{bottom:441.682500px;}
.y16{bottom:442.644000px;}
.y5b{bottom:444.933000px;}
.y1fc{bottom:445.753500px;}
.y1ca{bottom:448.117500px;}
.y195{bottom:448.269000px;}
.y8b{bottom:449.761500px;}
.y229{bottom:451.795500px;}
.ye9{bottom:454.410000px;}
.y1fb{bottom:456.004500px;}
.y15{bottom:459.082500px;}
.y35{bottom:459.615000px;}
.y113{bottom:461.895000px;}
.y5a{bottom:462.865500px;}
.y15e{bottom:463.189500px;}
.ybb{bottom:463.459500px;}
.y1c9{bottom:466.006500px;}
.y13a{bottom:466.132500px;}
.y228{bottom:469.728000px;}
.ye8{bottom:472.342500px;}
.y194{bottom:474.943500px;}
.y1c7{bottom:475.128000px;}
.y14{bottom:475.521000px;}
.y8a{bottom:476.491500px;}
.y34{bottom:477.549000px;}
.y59{bottom:480.798000px;}
.yba{bottom:482.974500px;}
.y1c8{bottom:483.826500px;}
.y164{bottom:485.932560px;}
.y89{bottom:486.742500px;}
.y112{bottom:488.626500px;}
.ye7{bottom:490.275000px;}
.y13{bottom:491.959500px;}
.y1fa{bottom:492.535500px;}
.y1c6{bottom:493.017000px;}
.yb9{bottom:493.225500px;}
.y227{bottom:494.092500px;}
.y33{bottom:495.481500px;}
.y139{bottom:496.809000px;}
.y193{bottom:497.700000px;}
.y58{bottom:498.730500px;}
.y111{bottom:498.876000px;}
.y1c4{bottom:502.140000px;}
.y138{bottom:507.060000px;}
.ye6{bottom:508.209000px;}
.y1c5{bottom:510.837000px;}
.y1f9{bottom:511.824000px;}
.y32{bottom:513.414000px;}
.y12{bottom:515.419500px;}
.y57{bottom:516.664500px;}
.yb8{bottom:517.365000px;}
.y1c3{bottom:520.027500px;}
.y1f8{bottom:522.075000px;}
.y11{bottom:524.541000px;}
.y88{bottom:525.826500px;}
.ye5{bottom:526.141500px;}
.y1c1{bottom:529.150500px;}
.y31{bottom:531.346500px;}
.y56{bottom:534.597000px;}
.yb7{bottom:534.637500px;}
.y1c2{bottom:537.849000px;}
.y110{bottom:537.960000px;}
.y192{bottom:541.489500px;}
.y87{bottom:543.759000px;}
.ye4{bottom:544.074000px;}
.yb6{bottom:544.888500px;}
.y1c0{bottom:546.516000px;}
.y1f7{bottom:546.795000px;}
.y30{bottom:549.279000px;}
.y137{bottom:552.489000px;}
.y1bf{bottom:555.637500px;}
.y10f{bottom:555.892500px;}
.y10{bottom:558.718500px;}
.y55{bottom:559.596000px;}
.y86{bottom:561.691500px;}
.ye3{bottom:562.006500px;}
.y1f6{bottom:564.729000px;}
.yb5{bottom:566.124000px;}
.y191{bottom:567.790500px;}
.y226{bottom:569.544000px;}
.y54{bottom:569.847000px;}
.y1be{bottom:570.126000px;}
.y136{bottom:575.247000px;}
.y1bc{bottom:579.249000px;}
.y85{bottom:579.625500px;}
.ye2{bottom:579.939000px;}
.y2f{bottom:582.153000px;}
.y10e{bottom:582.624000px;}
.yb4{bottom:584.056500px;}
.yf{bottom:585.834000px;}
.y225{bottom:585.981000px;}
.y1f5{bottom:587.496000px;}
.y1bd{bottom:587.947500px;}
.y10d{bottom:592.875000px;}
.y1bb{bottom:593.737500px;}
.y190{bottom:594.093000px;}
.ye{bottom:594.955500px;}
.y84{bottom:597.558000px;}
.y1f4{bottom:597.747000px;}
.y2e{bottom:600.085500px;}
.y135{bottom:601.977000px;}
.y224{bottom:602.419500px;}
.y1b9{bottom:602.859000px;}
.ye1{bottom:604.305000px;}
.y53{bottom:608.571000px;}
.yb3{bottom:611.134500px;}
.y1ba{bottom:611.557500px;}
.y134{bottom:612.228000px;}
.y83{bottom:615.490500px;}
.y2d{bottom:618.018000px;}
.y223{bottom:618.858000px;}
.y1b8{bottom:620.226000px;}
.y18f{bottom:620.394000px;}
.y52{bottom:626.503500px;}
.y10c{bottom:629.053500px;}
.y1b6{bottom:629.347500px;}
.yd{bottom:631.269000px;}
.y1f3{bottom:632.866500px;}
.y222{bottom:635.296500px;}
.ye0{bottom:636.603000px;}
.y1b7{bottom:638.046000px;}
.yb2{bottom:638.211000px;}
.y82{bottom:638.247000px;}
.y51{bottom:644.436000px;}
.y18e{bottom:646.695000px;}
.y10b{bottom:646.986000px;}
.y2c{bottom:650.890500px;}
.y133{bottom:651.312000px;}
.y221{bottom:651.735000px;}
.ydf{bottom:654.535500px;}
.yc{bottom:654.729000px;}
.y1b5{bottom:659.145000px;}
.y1f2{bottom:659.370000px;}
.y15f{bottom:660.663000px;}
.yb1{bottom:660.969000px;}
.y50{bottom:662.370000px;}
.yb{bottom:663.850500px;}
.y10a{bottom:664.918500px;}
.y81{bottom:665.829000px;}
.y220{bottom:668.173500px;}
.y2b{bottom:668.824500px;}
.y132{bottom:669.244500px;}
.y1f1{bottom:669.621000px;}
.yde{bottom:672.468000px;}
.y4f{bottom:680.302500px;}
.y18d{bottom:680.497500px;}
.y109{bottom:682.851000px;}
.y80{bottom:683.761500px;}
.yb0{bottom:686.055000px;}
.y2a{bottom:686.757000px;}
.ydd{bottom:690.400500px;}
.y21f{bottom:692.113500px;}
.y15d{bottom:694.408500px;}
.y131{bottom:695.974500px;}
.y1b4{bottom:696.714000px;}
.ya{bottom:698.028000px;}
.y4e{bottom:698.235000px;}
.y7f{bottom:701.695500px;}
.yaf{bottom:703.987500px;}
.y29{bottom:704.689500px;}
.y1f0{bottom:705.573000px;}
.y130{bottom:706.225500px;}
.y108{bottom:707.217000px;}
.y17b{bottom:712.203000px;}
.y15c{bottom:712.341000px;}
.ydc{bottom:713.158500px;}
.y9{bottom:714.466500px;}
.y1b3{bottom:714.646500px;}
.y4d{bottom:716.167500px;}
.y7e{bottom:719.628000px;}
.yae{bottom:721.920000px;}
.y17a{bottom:728.641500px;}
.y18c{bottom:730.777500px;}
.y8{bottom:730.903500px;}
.y15b{bottom:733.093500px;}
.y1ef{bottom:733.201500px;}
.y4c{bottom:734.100000px;}
.y21e{bottom:736.848000px;}
.y1b2{bottom:737.404500px;}
.y7d{bottom:737.560500px;}
.y28{bottom:737.562000px;}
.ydb{bottom:739.251000px;}
.yad{bottom:739.852500px;}
.y107{bottom:741.003000px;}
.y15a{bottom:743.344500px;}
.y1ee{bottom:743.452500px;}
.y179{bottom:745.080000px;}
.y12f{bottom:745.309500px;}
.y7{bottom:747.342000px;}
.y4b{bottom:752.032500px;}
.y7c{bottom:755.493000px;}
.yda{bottom:757.183500px;}
.y106{bottom:758.937000px;}
.y12e{bottom:763.242000px;}
.y6{bottom:763.780500px;}
.yac{bottom:764.218500px;}
.y159{bottom:767.484000px;}
.y1b1{bottom:768.726000px;}
.y4a{bottom:769.966500px;}
.y27{bottom:770.436000px;}
.y18b{bottom:770.659500px;}
.y7b{bottom:773.425500px;}
.y105{bottom:776.869500px;}
.y189{bottom:779.781000px;}
.y172{bottom:779.881500px;}
.yd9{bottom:780.943500px;}
.y1ed{bottom:781.332000px;}
.y157{bottom:785.418000px;}
.y12d{bottom:786.000000px;}
.y49{bottom:787.899000px;}
.y26{bottom:788.368500px;}
.y18a{bottom:788.479500px;}
.y158{bottom:790.840500px;}
.yd8{bottom:791.193000px;}
.y104{bottom:794.802000px;}
.y1b0{bottom:795.027000px;}
.y5{bottom:795.163500px;}
.yab{bottom:795.508500px;}
.y188{bottom:801.892500px;}
.y79{bottom:803.803500px;}
.y48{bottom:805.831500px;}
.y1ec{bottom:805.852500px;}
.y25{bottom:806.301000px;}
.y156{bottom:808.174500px;}
.y186{bottom:811.014000px;}
.y12c{bottom:811.381500px;}
.y21d{bottom:812.298000px;}
.y103{bottom:812.734500px;}
.y78{bottom:814.054500px;}
.y7a{bottom:814.503000px;}
.yaa{bottom:816.729000px;}
.yd7{bottom:817.509000px;}
.y187{bottom:819.712500px;}
.y1af{bottom:821.328000px;}
.y12b{bottom:821.632500px;}
.y47{bottom:823.764000px;}
.y1eb{bottom:823.786500px;}
.y16f{bottom:825.792000px;}
.ya9{bottom:826.978500px;}
.y21c{bottom:828.736500px;}
.y102{bottom:830.667000px;}
.y185{bottom:833.125500px;}
.y155{bottom:835.756500px;}
.yd6{bottom:836.187000px;}
.y24{bottom:839.173500px;}
.y46{bottom:841.696500px;}
.y183{bottom:842.247000px;}
.y170{bottom:842.713500px;}
.y1ea{bottom:844.402500px;}
.y21b{bottom:845.932500px;}
.y1ae{bottom:847.630500px;}
.y12a{bottom:847.842000px;}
.y184{bottom:850.945500px;}
.ya8{bottom:853.047000px;}
.y101{bottom:853.425000px;}
.y1e9{bottom:854.653500px;}
.y154{bottom:856.509000px;}
.y23{bottom:857.107500px;}
.y173{bottom:857.935500px;}
.y45{bottom:859.629000px;}
.y77{bottom:859.777500px;}
.y21a{bottom:863.503500px;}
.y182{bottom:864.358500px;}
.y129{bottom:868.596000px;}
.yd5{bottom:870.577500px;}
.ya7{bottom:870.979500px;}
.y181{bottom:873.480000px;}
.y1ad{bottom:873.931500px;}
.y22{bottom:875.040000px;}
.y4{bottom:875.043000px;}
.y153{bottom:876.870000px;}
.y44{bottom:877.563000px;}
.y1e8{bottom:878.793000px;}
.y128{bottom:878.845500px;}
.y219{bottom:879.942000px;}
.y76{bottom:880.530000px;}
.y100{bottom:881.007000px;}
.ya6{bottom:888.913500px;}
.y75{bottom:890.781000px;}
.y21{bottom:892.972500px;}
.y152{bottom:893.433000px;}
.yd4{bottom:893.850000px;}
.y43{bottom:895.495500px;}
.y180{bottom:895.590000px;}
.y218{bottom:897.513000px;}
.yff{bottom:898.939500px;}
.y127{bottom:900.081000px;}
.y1e7{bottom:901.560000px;}
.y3{bottom:901.942500px;}
.yd3{bottom:904.101000px;}
.y17e{bottom:904.713000px;}
.ya5{bottom:906.846000px;}
.y1ac{bottom:907.734000px;}
.y20{bottom:910.905000px;}
.y1e6{bottom:911.811000px;}
.y17f{bottom:913.410000px;}
.y42{bottom:913.428000px;}
.y217{bottom:913.951500px;}
.y74{bottom:915.502500px;}
.ya4{bottom:924.778500px;}
.y151{bottom:926.310000px;}
.y126{bottom:926.811000px;}
.y1f{bottom:928.837500px;}
.yd2{bottom:929.895000px;}
.y216{bottom:930.390000px;}
.y125{bottom:931.320000px;}
.y41{bottom:931.360500px;}
.yfe{bottom:931.816500px;}
.y73{bottom:933.435000px;}
.y124{bottom:941.569500px;}
.y1ab{bottom:941.575500px;}
.y215{bottom:942.264000px;}
.ya3{bottom:942.964500px;}
.y17d{bottom:943.446000px;}
.yd0{bottom:946.107000px;}
.y214{bottom:946.827000px;}
.yd1{bottom:947.154000px;}
.y1e5{bottom:947.761500px;}
.y171{bottom:947.992500px;}
.y150{bottom:948.726000px;}
.y168{bottom:949.263000px;}
.y40{bottom:949.293000px;}
.ya2{bottom:949.521000px;}
.yfd{bottom:949.749000px;}
.y72{bottom:951.367500px;}
.ya1{bottom:953.215500px;}
.y2{bottom:954.241500px;}
.y1e{bottom:961.711500px;}
.y213{bottom:963.265500px;}
.y3f{bottom:967.225500px;}
.y1aa{bottom:967.531500px;}
.y71{bottom:973.324500px;}
.ya0{bottom:974.451000px;}
.y212{bottom:975.141000px;}
.y1e4{bottom:976.675500px;}
.y178{bottom:978.148500px;}
.yfc{bottom:979.636500px;}
.y1d{bottom:979.644000px;}
.y211{bottom:979.704000px;}
.y14f{bottom:981.603000px;}
.ycf{bottom:982.563000px;}
.y70{bottom:983.575500px;}
.y3e{bottom:985.159500px;}
.y123{bottom:985.629000px;}
.y1{bottom:987.117000px;}
.y1a9{bottom:991.800000px;}
.y17c{bottom:993.442500px;}
.y177{bottom:995.631000px;}
.y210{bottom:996.142500px;}
.y9f{bottom:996.918000px;}
.yfb{bottom:997.569000px;}
.y1c{bottom:997.576500px;}
.y3d{bottom:1003.092000px;}
.y1e3{bottom:1005.589500px;}
.y9e{bottom:1007.167500px;}
.y14e{bottom:1008.333000px;}
.yce{bottom:1010.694000px;}
.y122{bottom:1012.360500px;}
.y20f{bottom:1012.581000px;}
.y6f{bottom:1012.983000px;}
.y176{bottom:1013.112000px;}
.yfa{bottom:1015.501500px;}
.y1b{bottom:1015.509000px;}
.y1a8{bottom:1016.070000px;}
.y14d{bottom:1018.584000px;}
.ycd{bottom:1020.945000px;}
.y3c{bottom:1021.024500px;}
.y121{bottom:1022.611500px;}
.y175{bottom:1030.930500px;}
.y1e2{bottom:1032.303000px;}
.y6e{bottom:1035.741000px;}
.y20e{bottom:1036.521000px;}
.y1e1{bottom:1038.859500px;}
.y3b{bottom:1038.957000px;}
.y1a7{bottom:1040.338500px;}
.y1e0{bottom:1042.554000px;}
.y23d{bottom:1044.904500px;}
.y9d{bottom:1045.390500px;}
.y1a{bottom:1048.383000px;}
.y3a{bottom:1056.889500px;}
.ycc{bottom:1058.497500px;}
.y23c{bottom:1063.080000px;}
.y6d{bottom:1063.323000px;}
.y1a6{bottom:1064.608500px;}
.y174{bottom:1080.927000px;}
.y19{bottom:1081.255500px;}
.h13{height:2.391024px;}
.h1e{height:4.569331px;}
.h2d{height:26.845402px;}
.h2c{height:29.080746px;}
.h23{height:29.457331px;}
.hb{height:36.917503px;}
.h6{height:40.348800px;}
.h5{height:40.402598px;}
.h4{height:41.902696px;}
.hc{height:44.831700px;}
.h3{height:44.891476px;}
.h3b{height:46.725331px;}
.h3e{height:47.293382px;}
.h34{height:48.103382px;}
.h41{height:48.327331px;}
.h25{height:50.043331px;}
.h2{height:50.283571px;}
.h37{height:51.091382px;}
.h2b{height:51.147331px;}
.h22{height:51.153331px;}
.h39{height:53.499024px;}
.h1b{height:54.135331px;}
.h17{height:54.141331px;}
.h38{height:57.571382px;}
.h3f{height:58.654598px;}
.h3d{height:59.669476px;}
.h30{height:64.181476px;}
.h40{height:66.355382px;}
.h42{height:71.365402px;}
.h1{height:72.511265px;}
.h1f{height:73.605331px;}
.h7{height:75.142800px;}
.h32{height:76.888598px;}
.h9{height:78.051331px;}
.h33{height:84.589382px;}
.h36{height:84.595382px;}
.h1c{height:85.265700px;}
.hd{height:85.271700px;}
.h24{height:85.835700px;}
.h16{height:85.889476px;}
.h10{height:85.895476px;}
.h1d{height:86.673024px;}
.h19{height:86.679024px;}
.h8{height:87.577382px;}
.h31{height:87.583382px;}
.h14{height:91.587331px;}
.h12{height:94.277700px;}
.h21{height:95.139331px;}
.he{height:95.145331px;}
.h15{height:96.321024px;}
.hf{height:97.647024px;}
.h18{height:100.049700px;}
.h3a{height:101.451024px;}
.h29{height:101.457024px;}
.h20{height:109.739476px;}
.h35{height:111.628800px;}
.ha{height:114.537331px;}
.h28{height:126.269700px;}
.h11{height:126.275700px;}
.h1a{height:127.677024px;}
.h3c{height:127.683024px;}
.h2a{height:132.591331px;}
.h2f{height:141.911700px;}
.h26{height:142.353331px;}
.h27{height:142.359331px;}
.h2e{height:483.555120px;}
.h0{height:1188.000000px;}
.w1{width:483.555120px;}
.w0{width:918.000000px;}
.xa8{left:-31.217940px;}
.x0{left:0.000000px;}
.x14{left:91.800000px;}
.x7a{left:97.618500px;}
.x79{left:101.767500px;}
.x72{left:104.005500px;}
.x6f{left:105.814500px;}
.x73{left:110.709000px;}
.x6{left:112.563000px;}
.x15{left:114.211500px;}
.x35{left:116.022000px;}
.xac{left:119.619000px;}
.xbc{left:123.183000px;}
.x24{left:126.486000px;}
.x33{left:127.684500px;}
.x78{left:129.160500px;}
.x92{left:134.226000px;}
.x2{left:141.355500px;}
.x1{left:146.647500px;}
.x17{left:151.057500px;}
.x25{left:153.394500px;}
.x93{left:157.623000px;}
.x18{left:166.416000px;}
.xad{left:175.062000px;}
.xab{left:178.597500px;}
.x64{left:187.714500px;}
.x9a{left:191.101500px;}
.x19{left:197.266500px;}
.xbd{left:202.005000px;}
.x1a{left:213.793500px;}
.xa5{left:217.222440px;}
.x3c{left:219.111000px;}
.x3d{left:234.535500px;}
.xc4{left:244.656000px;}
.x88{left:248.989500px;}
.xa7{left:252.136560px;}
.xd3{left:254.739000px;}
.x9c{left:257.103000px;}
.x67{left:258.700500px;}
.xbb{left:260.803500px;}
.x87{left:261.994500px;}
.x21{left:267.907500px;}
.xcf{left:269.986500px;}
.xa6{left:275.739060px;}
.x5c{left:277.048500px;}
.x22{left:279.403500px;}
.x99{left:281.260500px;}
.xb6{left:284.016000px;}
.xb9{left:290.761500px;}
.x68{left:296.752500px;}
.x12{left:304.203000px;}
.xb{left:305.278500px;}
.x74{left:307.162500px;}
.x8e{left:308.734500px;}
.x96{left:311.479500px;}
.x1c{left:317.478000px;}
.x9b{left:318.843000px;}
.x5d{left:320.145000px;}
.xd{left:323.214000px;}
.x36{left:325.687500px;}
.x57{left:326.773500px;}
.x41{left:328.537500px;}
.xb1{left:329.979000px;}
.x2d{left:332.224500px;}
.xb3{left:334.503000px;}
.x1d{left:335.599500px;}
.x9{left:339.375000px;}
.x4a{left:341.173500px;}
.x3{left:343.344000px;}
.xc{left:345.276000px;}
.x43{left:347.230500px;}
.x4f{left:348.727500px;}
.x5b{left:349.953000px;}
.x2e{left:351.460500px;}
.xc5{left:352.645500px;}
.xc9{left:354.223500px;}
.x51{left:357.337500px;}
.x7b{left:361.092000px;}
.xb2{left:363.159000px;}
.x8d{left:364.375500px;}
.x63{left:365.580000px;}
.x40{left:367.200000px;}
.x58{left:368.511000px;}
.xba{left:370.389000px;}
.xa{left:371.809500px;}
.x1f{left:373.824000px;}
.x97{left:375.546000px;}
.x7e{left:378.201000px;}
.x44{left:379.503000px;}
.x4{left:381.411000px;}
.x94{left:386.284500px;}
.x16{left:388.375500px;}
.x7c{left:389.706000px;}
.x5f{left:390.858000px;}
.xe{left:395.238000px;}
.x4b{left:396.676500px;}
.x65{left:397.878000px;}
.x60{left:399.501000px;}
.x98{left:401.002500px;}
.x4d{left:402.243000px;}
.x50{left:405.139500px;}
.x3b{left:406.344000px;}
.xf{left:407.449500px;}
.x5{left:410.740500px;}
.x91{left:413.923500px;}
.x1e{left:415.090500px;}
.x62{left:417.348000px;}
.x13{left:419.607000px;}
.xcd{left:422.070000px;}
.x2b{left:423.261000px;}
.x3e{left:425.265000px;}
.x95{left:426.430500px;}
.x7d{left:427.653000px;}
.x6e{left:429.058500px;}
.x1b{left:430.924500px;}
.xc0{left:432.096000px;}
.xcc{left:434.740500px;}
.x20{left:435.984000px;}
.x8a{left:437.650500px;}
.x52{left:439.345500px;}
.xc8{left:442.771500px;}
.x29{left:445.446000px;}
.x8b{left:451.338000px;}
.x27{left:453.213000px;}
.x2a{left:454.500000px;}
.x4e{left:458.109000px;}
.x9d{left:459.169500px;}
.xbe{left:461.886000px;}
.x37{left:463.284000px;}
.x89{left:465.867000px;}
.x69{left:468.643500px;}
.x2c{left:472.269000px;}
.x26{left:473.485500px;}
.x23{left:475.453500px;}
.x38{left:477.631500px;}
.xb7{left:480.015000px;}
.x8c{left:481.582500px;}
.xc1{left:483.861000px;}
.xbf{left:486.115500px;}
.x34{left:487.816500px;}
.x42{left:492.498000px;}
.xa1{left:494.764500px;}
.x53{left:496.993500px;}
.x3f{left:499.744500px;}
.x28{left:502.209000px;}
.x61{left:504.271500px;}
.xd0{left:506.721000px;}
.xae{left:507.840000px;}
.x49{left:511.002000px;}
.xce{left:512.764500px;}
.x4c{left:515.230500px;}
.x59{left:517.504500px;}
.xcb{left:519.996000px;}
.x7{left:521.152500px;}
.xd1{left:524.077500px;}
.x8{left:529.546500px;}
.xaf{left:532.627500px;}
.x7f{left:533.781000px;}
.xb0{left:535.482000px;}
.xc7{left:537.198000px;}
.x5e{left:538.909500px;}
.x5a{left:545.338500px;}
.xc6{left:549.088500px;}
.x54{left:556.512000px;}
.xca{left:559.626000px;}
.xb5{left:561.025500px;}
.x75{left:562.749000px;}
.x80{left:565.497000px;}
.xa4{left:567.870000px;}
.xb4{left:569.170500px;}
.x66{left:574.225500px;}
.x45{left:578.932500px;}
.x81{left:581.779500px;}
.xd2{left:586.371000px;}
.x76{left:591.201000px;}
.x82{left:602.422500px;}
.xb8{left:605.239500px;}
.x46{left:608.244000px;}
.x85{left:612.397500px;}
.x83{left:615.972000px;}
.x86{left:621.451500px;}
.x84{left:625.027500px;}
.x77{left:629.035500px;}
.x47{left:638.595000px;}
.x48{left:655.122000px;}
.x2f{left:664.542000px;}
.xa2{left:669.193500px;}
.x70{left:670.521000px;}
.x39{left:683.958000px;}
.x55{left:684.994500px;}
.x9e{left:690.237000px;}
.x3a{left:697.129500px;}
.x6a{left:703.012500px;}
.x30{left:706.183500px;}
.x56{left:712.284000px;}
.x9f{left:719.550000px;}
.x31{left:723.999000px;}
.x71{left:729.991500px;}
.x6b{left:734.188500px;}
.xa9{left:742.218000px;}
.xa0{left:749.877000px;}
.xa3{left:753.910500px;}
.xaa{left:755.209500px;}
.xc2{left:762.172500px;}
.x10{left:763.237500px;}
.x6c{left:767.307000px;}
.x32{left:776.643000px;}
.xc3{left:779.145000px;}
.x6d{left:783.834000px;}
.x11{left:793.608000px;}
.x8f{left:806.602500px;}
.x90{left:825.030000px;}
@media print{
.v22{vertical-align:-77.877333pt;}
.v2e{vertical-align:-59.925333pt;}
.v2d{vertical-align:-51.952000pt;}
.v1e{vertical-align:-49.882667pt;}
.v13{vertical-align:-45.429333pt;}
.v10{vertical-align:-43.957333pt;}
.v23{vertical-align:-40.544000pt;}
.v21{vertical-align:-36.453333pt;}
.v19{vertical-align:-22.122667pt;}
.v8{vertical-align:-7.968000pt;}
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v2a{vertical-align:8.416000pt;}
.v2f{vertical-align:10.560000pt;}
.v16{vertical-align:13.136000pt;}
.vc{vertical-align:15.349333pt;}
.v25{vertical-align:17.146667pt;}
.v1a{vertical-align:18.325333pt;}
.v1f{vertical-align:19.285333pt;}
.v27{vertical-align:20.314667pt;}
.v15{vertical-align:21.941333pt;}
.v5{vertical-align:22.970667pt;}
.v29{vertical-align:25.616000pt;}
.vd{vertical-align:27.978667pt;}
.v2{vertical-align:30.928000pt;}
.v3{vertical-align:32.432000pt;}
.v1b{vertical-align:33.674667pt;}
.v9{vertical-align:35.946667pt;}
.v1d{vertical-align:39.242667pt;}
.v30{vertical-align:40.901333pt;}
.v11{vertical-align:42.362667pt;}
.v12{vertical-align:43.952000pt;}
.v2c{vertical-align:45.429333pt;}
.v26{vertical-align:52.746667pt;}
.v4{vertical-align:55.402667pt;}
.va{vertical-align:58.389333pt;}
.v1c{vertical-align:61.365333pt;}
.v28{vertical-align:63.360000pt;}
.vf{vertical-align:64.421333pt;}
.v6{vertical-align:67.322667pt;}
.ve{vertical-align:72.394667pt;}
.v17{vertical-align:74.922667pt;}
.v24{vertical-align:80.074667pt;}
.v14{vertical-align:83.493333pt;}
.vb{vertical-align:84.672000pt;}
.v20{vertical-align:91.674667pt;}
.v2b{vertical-align:95.429333pt;}
.v7{vertical-align:99.754667pt;}
.v18{vertical-align:111.365333pt;}
.lse{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000267pt;}
.lsa5{letter-spacing:0.000382pt;}
.lsdf{letter-spacing:0.000839pt;}
.ls28{letter-spacing:0.000882pt;}
.ls1e{letter-spacing:0.000996pt;}
.lsfa{letter-spacing:0.001328pt;}
.ls9{letter-spacing:0.001485pt;}
.lsa7{letter-spacing:0.001495pt;}
.ls49{letter-spacing:0.002122pt;}
.ls69{letter-spacing:0.002424pt;}
.ls34{letter-spacing:0.002509pt;}
.ls1a{letter-spacing:0.002694pt;}
.ls72{letter-spacing:0.002827pt;}
.ls108{letter-spacing:0.003034pt;}
.ls2f{letter-spacing:0.003118pt;}
.lsf6{letter-spacing:0.003176pt;}
.ls31{letter-spacing:0.003733pt;}
.lsc7{letter-spacing:0.003879pt;}
.ls74{letter-spacing:0.003892pt;}
.lsd3{letter-spacing:0.003896pt;}
.lsef{letter-spacing:0.004349pt;}
.ls0{letter-spacing:0.004526pt;}
.lsf2{letter-spacing:0.004823pt;}
.ls6b{letter-spacing:0.005305pt;}
.ls32{letter-spacing:0.006216pt;}
.ls90{letter-spacing:0.007427pt;}
.lsbf{letter-spacing:0.007542pt;}
.lsf8{letter-spacing:0.009163pt;}
.ls10d{letter-spacing:0.010201pt;}
.ls4d{letter-spacing:0.010475pt;}
.ls100{letter-spacing:0.010680pt;}
.lsa1{letter-spacing:0.010948pt;}
.lsb9{letter-spacing:0.012628pt;}
.ls8f{letter-spacing:0.012760pt;}
.ls96{letter-spacing:0.015312pt;}
.lsb6{letter-spacing:0.015672pt;}
.lsb7{letter-spacing:0.015843pt;}
.lsdd{letter-spacing:0.015854pt;}
.ls5a{letter-spacing:0.016689pt;}
.lsa3{letter-spacing:0.018207pt;}
.lsed{letter-spacing:0.018945pt;}
.ls25{letter-spacing:0.019006pt;}
.ls89{letter-spacing:0.020429pt;}
.lsc6{letter-spacing:0.021586pt;}
.lse7{letter-spacing:0.022271pt;}
.ls23{letter-spacing:0.023075pt;}
.ls9f{letter-spacing:0.024134pt;}
.lsa9{letter-spacing:0.024984pt;}
.ls7b{letter-spacing:0.027025pt;}
.lsc5{letter-spacing:1.366828pt;}
.ls70{letter-spacing:1.471333pt;}
.lsf0{letter-spacing:1.476666pt;}
.lsab{letter-spacing:1.721549pt;}
.lsf9{letter-spacing:1.725937pt;}
.lsc3{letter-spacing:1.726636pt;}
.lsc4{letter-spacing:1.740983pt;}
.ls43{letter-spacing:1.896026pt;}
.ls46{letter-spacing:1.904096pt;}
.ls78{letter-spacing:1.906229pt;}
.ls93{letter-spacing:1.909429pt;}
.ls6a{letter-spacing:1.911029pt;}
.ls80{letter-spacing:1.911563pt;}
.ls13{letter-spacing:1.912819pt;}
.ls44{letter-spacing:2.652911pt;}
.ls40{letter-spacing:2.653413pt;}
.lsa{letter-spacing:2.654186pt;}
.ls35{letter-spacing:2.654524pt;}
.ls12{letter-spacing:2.655970pt;}
.lsaa{letter-spacing:2.656473pt;}
.ls10b{letter-spacing:2.657478pt;}
.ls47{letter-spacing:2.658245pt;}
.lsac{letter-spacing:3.772505pt;}
.lsb1{letter-spacing:3.801225pt;}
.ls1d{letter-spacing:6.375467pt;}
.ls3e{letter-spacing:6.376161pt;}
.ls6{letter-spacing:6.378231pt;}
.ls3a{letter-spacing:6.378510pt;}
.ls61{letter-spacing:6.379416pt;}
.ls5e{letter-spacing:6.381494pt;}
.ls75{letter-spacing:6.826112pt;}
.ls10e{letter-spacing:7.821184pt;}
.ls2d{letter-spacing:8.282763pt;}
.ls29{letter-spacing:8.288096pt;}
.ls30{letter-spacing:8.373095pt;}
.ls4c{letter-spacing:8.820222pt;}
.ls82{letter-spacing:8.856161pt;}
.ls52{letter-spacing:8.873356pt;}
.lsc9{letter-spacing:10.749360pt;}
.lsd9{letter-spacing:10.754693pt;}
.ls4b{letter-spacing:10.786175pt;}
.ls3{letter-spacing:10.903142pt;}
.ls7{letter-spacing:10.922231pt;}
.ls5{letter-spacing:10.950963pt;}
.ls7e{letter-spacing:11.511578pt;}
.ls39{letter-spacing:11.543467pt;}
.lsce{letter-spacing:11.544161pt;}
.lsb2{letter-spacing:11.712096pt;}
.ls16{letter-spacing:11.795718pt;}
.ls3f{letter-spacing:11.805494pt;}
.ls5c{letter-spacing:11.810827pt;}
.ls92{letter-spacing:11.848852pt;}
.lsca{letter-spacing:12.343121pt;}
.lsc{letter-spacing:12.624691pt;}
.lsb0{letter-spacing:13.073696pt;}
.lse3{letter-spacing:13.079029pt;}
.lsa8{letter-spacing:13.628928pt;}
.ls104{letter-spacing:13.661170pt;}
.ls10a{letter-spacing:13.675409pt;}
.ls106{letter-spacing:13.676749pt;}
.ls19{letter-spacing:13.708538pt;}
.ls87{letter-spacing:14.460911pt;}
.ls91{letter-spacing:14.466245pt;}
.lse6{letter-spacing:14.718081pt;}
.ls1c{letter-spacing:14.757812pt;}
.lscb{letter-spacing:14.759121pt;}
.lscf{letter-spacing:14.760161pt;}
.ls11{letter-spacing:14.771215pt;}
.ls73{letter-spacing:14.772833pt;}
.ls71{letter-spacing:14.994245pt;}
.ls7d{letter-spacing:14.999578pt;}
.lsd{letter-spacing:15.047549pt;}
.lsad{letter-spacing:15.143152pt;}
.ls36{letter-spacing:15.227772pt;}
.lsb3{letter-spacing:15.601696pt;}
.ls9a{letter-spacing:16.190400pt;}
.lsd2{letter-spacing:16.205829pt;}
.ls1{letter-spacing:16.309806pt;}
.lscc{letter-spacing:16.510400pt;}
.ls94{letter-spacing:16.785101pt;}
.ls21{letter-spacing:16.805429pt;}
.ls63{letter-spacing:17.126426pt;}
.ls68{letter-spacing:17.162239pt;}
.ls54{letter-spacing:17.374774pt;}
.ls5d{letter-spacing:17.410245pt;}
.ls38{letter-spacing:17.412920pt;}
.ls14{letter-spacing:17.415578pt;}
.ls6d{letter-spacing:17.418254pt;}
.ls10{letter-spacing:17.534176pt;}
.ls59{letter-spacing:17.693578pt;}
.ls37{letter-spacing:17.746711pt;}
.ls6c{letter-spacing:17.959247pt;}
.ls66{letter-spacing:18.070216pt;}
.ls42{letter-spacing:18.118649pt;}
.ls86{letter-spacing:18.177300pt;}
.ls84{letter-spacing:18.183412pt;}
.ls6e{letter-spacing:18.543719pt;}
.lse5{letter-spacing:18.596853pt;}
.lsbc{letter-spacing:19.015811pt;}
.ls95{letter-spacing:19.181326pt;}
.lsff{letter-spacing:20.006371pt;}
.ls2{letter-spacing:20.022719pt;}
.lsb{letter-spacing:20.028052pt;}
.ls24{letter-spacing:20.357304pt;}
.ls5b{letter-spacing:20.359578pt;}
.lse1{letter-spacing:20.364911pt;}
.ls9e{letter-spacing:20.775342pt;}
.ls81{letter-spacing:20.834245pt;}
.ls79{letter-spacing:20.839578pt;}
.lsaf{letter-spacing:21.119444pt;}
.ls18{letter-spacing:21.131145pt;}
.ls15{letter-spacing:21.136479pt;}
.ls9d{letter-spacing:21.466082pt;}
.ls7a{letter-spacing:21.519216pt;}
.ls76{letter-spacing:21.583445pt;}
.lsba{letter-spacing:21.744696pt;}
.ls1b{letter-spacing:23.135761pt;}
.ls85{letter-spacing:23.788911pt;}
.ls7c{letter-spacing:24.527445pt;}
.ls57{letter-spacing:24.763145pt;}
.lsf{letter-spacing:26.566933pt;}
.ls2c{letter-spacing:27.099145pt;}
.ls4{letter-spacing:27.305677pt;}
.lsae{letter-spacing:29.654115pt;}
.ls8{letter-spacing:29.960852pt;}
.ls3c{letter-spacing:30.591843pt;}
.lsd0{letter-spacing:30.597176pt;}
.ls8e{letter-spacing:31.131145pt;}
.ls83{letter-spacing:31.492187pt;}
.ls33{letter-spacing:33.243145pt;}
.ls6f{letter-spacing:33.620833pt;}
.lsb4{letter-spacing:37.520096pt;}
.ls1f{letter-spacing:37.863578pt;}
.lsf3{letter-spacing:40.416479pt;}
.lsd5{letter-spacing:42.399843pt;}
.ls27{letter-spacing:45.344479pt;}
.lsbb{letter-spacing:47.238719pt;}
.ls7f{letter-spacing:47.677494pt;}
.lsc0{letter-spacing:48.523363pt;}
.lsf4{letter-spacing:49.322763pt;}
.lsb5{letter-spacing:50.801696pt;}
.lsea{letter-spacing:51.710400pt;}
.ls77{letter-spacing:62.432479pt;}
.lse8{letter-spacing:65.559029pt;}
.ls26{letter-spacing:67.575578pt;}
.lsdb{letter-spacing:74.816479pt;}
.lsda{letter-spacing:76.152161pt;}
.ls51{letter-spacing:79.243145pt;}
.lsd7{letter-spacing:90.912479pt;}
.lsd6{letter-spacing:94.716745pt;}
.ls50{letter-spacing:96.808234pt;}
.ls9b{letter-spacing:96.873545pt;}
.ls4a{letter-spacing:99.771145pt;}
.ls9c{letter-spacing:104.787733pt;}
.ls56{letter-spacing:133.707145pt;}
.lsde{letter-spacing:138.133812pt;}
.lsfb{letter-spacing:193.393364pt;}
.ls103{letter-spacing:202.314964pt;}
.ls109{letter-spacing:205.010517pt;}
.lsfd{letter-spacing:206.012006pt;}
.ls102{letter-spacing:206.864473pt;}
.ls110{letter-spacing:213.519872pt;}
.ls98{letter-spacing:244.547733pt;}
.lsa4{letter-spacing:244.856410pt;}
.lsa2{letter-spacing:247.494030pt;}
.ls97{letter-spacing:248.350879pt;}
.ls99{letter-spacing:248.356212pt;}
.lsa0{letter-spacing:256.576406pt;}
.ls8b{letter-spacing:264.872325pt;}
.lsbe{letter-spacing:286.683558pt;}
.ls60{letter-spacing:314.784479pt;}
.lsa6{letter-spacing:346.309806pt;}
.ls8a{letter-spacing:353.074544pt;}
.ls8c{letter-spacing:432.775344pt;}
.lsc1{letter-spacing:462.911805pt;}
.lsc2{letter-spacing:463.830224pt;}
.lsbd{letter-spacing:477.408696pt;}
.ls88{letter-spacing:512.263609pt;}
.lsee{letter-spacing:545.312874pt;}
.ls5f{letter-spacing:570.445193pt;}
.lsfe{letter-spacing:624.650964pt;}
.lsfc{letter-spacing:675.356030pt;}
.lse9{letter-spacing:696.159921pt;}
.ls10f{letter-spacing:745.191526pt;}
.lsf5{letter-spacing:749.718859pt;}
.ls107{letter-spacing:765.611008pt;}
.ls62{letter-spacing:787.024749pt;}
.lsd8{letter-spacing:824.584477pt;}
.lscd{letter-spacing:839.196290pt;}
.lsdc{letter-spacing:844.828480pt;}
.ls53{letter-spacing:855.880324pt;}
.lsd1{letter-spacing:857.102403pt;}
.lse0{letter-spacing:894.827449pt;}
.ls58{letter-spacing:895.624457pt;}
.ls67{letter-spacing:896.474598pt;}
.lse2{letter-spacing:910.076868pt;}
.ls41{letter-spacing:917.515610pt;}
.ls48{letter-spacing:935.209187pt;}
.ls105{letter-spacing:937.144218pt;}
.ls65{letter-spacing:937.493943pt;}
.ls64{letter-spacing:956.887805pt;}
.lsf1{letter-spacing:959.863301pt;}
.ls2a{letter-spacing:966.133098pt;}
.lse4{letter-spacing:968.099051pt;}
.ls8d{letter-spacing:972.190358pt;}
.lsf7{letter-spacing:973.057638pt;}
.lsd4{letter-spacing:975.006453pt;}
.lsec{letter-spacing:976.494202pt;}
.lsc8{letter-spacing:989.086928pt;}
.ls45{letter-spacing:995.781795pt;}
.ls4e{letter-spacing:1015.547594pt;}
.ls3d{letter-spacing:1016.822806pt;}
.ls2b{letter-spacing:1020.063972pt;}
.ls4f{letter-spacing:1025.855564pt;}
.ls101{letter-spacing:1044.027139pt;}
.lseb{letter-spacing:1068.947130pt;}
.ls20{letter-spacing:1088.606660pt;}
.ls55{letter-spacing:1090.306944pt;}
.ls22{letter-spacing:1104.015482pt;}
.ls10c{letter-spacing:1110.603139pt;}
.ls2e{letter-spacing:1116.873877pt;}
.ls3b{letter-spacing:1123.993815pt;}
.lsb8{letter-spacing:1834.800473pt;}
.ws20{word-spacing:-43.458190pt;}
.ws5b{word-spacing:-42.066082pt;}
.wsd7{word-spacing:-38.907003pt;}
.ws22{word-spacing:-37.188393pt;}
.ws21{word-spacing:-36.444519pt;}
.ws31{word-spacing:-34.611401pt;}
.wse{word-spacing:-32.063846pt;}
.ws1f{word-spacing:-31.503070pt;}
.ws1d{word-spacing:-28.952644pt;}
.ws1c{word-spacing:-28.368171pt;}
.ws62{word-spacing:-26.561620pt;}
.wscc{word-spacing:-25.738045pt;}
.ws1e{word-spacing:-25.392675pt;}
.ws9f{word-spacing:-24.570327pt;}
.ws8a{word-spacing:-21.965540pt;}
.wsac{word-spacing:-18.352438pt;}
.wsca{word-spacing:-17.688264pt;}
.ws86{word-spacing:-16.864689pt;}
.ws3c{word-spacing:-14.760588pt;}
.wsdd{word-spacing:-14.234563pt;}
.ws9{word-spacing:-13.652838pt;}
.ws9a{word-spacing:-12.746815pt;}
.ws5c{word-spacing:-12.162342pt;}
.ws47{word-spacing:-12.002940pt;}
.ws3e{word-spacing:-11.631003pt;}
.ws54{word-spacing:-11.418468pt;}
.wsde{word-spacing:-11.365334pt;}
.ws65{word-spacing:-11.259066pt;}
.ws34{word-spacing:-10.940263pt;}
.ws79{word-spacing:-10.727728pt;}
.ws7c{word-spacing:-10.621460pt;}
.ws13{word-spacing:-10.606653pt;}
.ws4e{word-spacing:-10.302657pt;}
.ws4b{word-spacing:-9.930720pt;}
.ws84{word-spacing:-9.877586pt;}
.ws69{word-spacing:-9.771318pt;}
.ws48{word-spacing:-9.611916pt;}
.ws52{word-spacing:-9.505649pt;}
.ws2f{word-spacing:-9.399381pt;}
.ws2e{word-spacing:-9.293113pt;}
.ws58{word-spacing:-9.239979pt;}
.ws32{word-spacing:-9.186846pt;}
.ws2a{word-spacing:-9.133712pt;}
.ws29{word-spacing:-9.080578pt;}
.ws27{word-spacing:-9.027444pt;}
.ws26{word-spacing:-8.974310pt;}
.ws5d{word-spacing:-8.921176pt;}
.ws28{word-spacing:-8.868042pt;}
.ws3f{word-spacing:-8.814908pt;}
.ws93{word-spacing:-8.789463pt;}
.ws53{word-spacing:-8.761775pt;}
.ws7b{word-spacing:-8.708641pt;}
.ws35{word-spacing:-8.655507pt;}
.ws25{word-spacing:-8.602373pt;}
.ws5{word-spacing:-8.550359pt;}
.ws39{word-spacing:-8.549239pt;}
.ws5f{word-spacing:-8.496105pt;}
.ws2b{word-spacing:-8.442971pt;}
.wsbe{word-spacing:-8.406897pt;}
.ws96{word-spacing:-8.359076pt;}
.ws68{word-spacing:-8.342017pt;}
.ws2c{word-spacing:-8.336704pt;}
.ws4{word-spacing:-8.263434pt;}
.ws7{word-spacing:-8.215613pt;}
.ws2{word-spacing:-8.182615pt;}
.wsd{word-spacing:-8.167793pt;}
.ws4c{word-spacing:-8.129482pt;}
.ws60{word-spacing:-8.124168pt;}
.ws61{word-spacing:-8.071034pt;}
.ws6{word-spacing:-8.024330pt;}
.wsbd{word-spacing:-7.976509pt;}
.ws80{word-spacing:-7.858499pt;}
.ws92{word-spacing:-7.785226pt;}
.ws24{word-spacing:-7.699097pt;}
.ws45{word-spacing:-7.592830pt;}
.ws7a{word-spacing:-7.539696pt;}
.wsdf{word-spacing:-7.536558pt;}
.ws49{word-spacing:-7.486562pt;}
.ws6d{word-spacing:-7.433428pt;}
.ws6c{word-spacing:-7.380294pt;}
.ws4d{word-spacing:-7.061491pt;}
.ws38{word-spacing:-7.008357pt;}
.ws46{word-spacing:-6.742688pt;}
.ws2d{word-spacing:-6.689554pt;}
.ws15{word-spacing:-6.589706pt;}
.ws82{word-spacing:-6.477018pt;}
.ws55{word-spacing:-6.370751pt;}
.ws51{word-spacing:-5.998814pt;}
.wsc2{word-spacing:-5.887232pt;}
.ws83{word-spacing:-5.786278pt;}
.ws59{word-spacing:-5.414341pt;}
.ws7d{word-spacing:-5.308073pt;}
.ws14{word-spacing:-5.107261pt;}
.ws36{word-spacing:-4.883002pt;}
.ws99{word-spacing:-4.772516pt;}
.ws12{word-spacing:-4.629053pt;}
.ws4a{word-spacing:-4.511065pt;}
.ws5a{word-spacing:-4.457931pt;}
.wse0{word-spacing:-4.437770pt;}
.ws7f{word-spacing:-4.298530pt;}
.ws33{word-spacing:-3.554656pt;}
.ws87{word-spacing:-3.501522pt;}
.ws37{word-spacing:-3.076451pt;}
.ws74{word-spacing:-2.964870pt;}
.ws76{word-spacing:-2.911736pt;}
.wsb{word-spacing:-2.749696pt;}
.wsa5{word-spacing:-2.701875pt;}
.ws57{word-spacing:-2.598246pt;}
.ws8f{word-spacing:-2.545112pt;}
.ws30{word-spacing:-0.095641pt;}
.ws18{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.wse1{word-spacing:-0.047821pt;}
.ws41{word-spacing:-0.037194pt;}
.wsb3{word-spacing:-0.031881pt;}
.wsc{word-spacing:-0.023910pt;}
.ws6a{word-spacing:-0.011482pt;}
.ws17{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.005313pt;}
.ws67{word-spacing:0.010627pt;}
.wsd0{word-spacing:0.023910pt;}
.ws6b{word-spacing:0.223162pt;}
.ws90{word-spacing:0.276296pt;}
.ws8b{word-spacing:0.468212pt;}
.ws89{word-spacing:0.473545pt;}
.ws5e{word-spacing:2.879856pt;}
.ws8d{word-spacing:2.932989pt;}
.ws3b{word-spacing:3.422879pt;}
.ws85{word-spacing:3.423412pt;}
.ws75{word-spacing:3.446854pt;}
.ws9d{word-spacing:3.642283pt;}
.ws8{word-spacing:3.644943pt;}
.ws7e{word-spacing:6.227289pt;}
.wsd1{word-spacing:6.342398pt;}
.ws8e{word-spacing:6.362911pt;}
.ws6f{word-spacing:6.368473pt;}
.ws8c{word-spacing:6.375945pt;}
.wsc1{word-spacing:8.999041pt;}
.wsa{word-spacing:10.814778pt;}
.ws11{word-spacing:10.817065pt;}
.ws71{word-spacing:11.466464pt;}
.ws44{word-spacing:11.471296pt;}
.ws3d{word-spacing:11.471797pt;}
.ws16{word-spacing:15.005042pt;}
.ws95{word-spacing:16.163430pt;}
.wsf{word-spacing:16.276936pt;}
.wsa3{word-spacing:16.278629pt;}
.wsbc{word-spacing:16.545997pt;}
.ws91{word-spacing:16.737280pt;}
.wsc8{word-spacing:17.369629pt;}
.wscb{word-spacing:17.372953pt;}
.ws6e{word-spacing:17.375259pt;}
.ws4f{word-spacing:17.375333pt;}
.ws66{word-spacing:17.376483pt;}
.wsc7{word-spacing:17.377188pt;}
.ws56{word-spacing:17.377708pt;}
.ws40{word-spacing:17.378287pt;}
.ws63{word-spacing:17.379968pt;}
.ws42{word-spacing:17.380592pt;}
.ws3a{word-spacing:17.380667pt;}
.wsad{word-spacing:17.382875pt;}
.wsc6{word-spacing:17.393763pt;}
.ws73{word-spacing:18.137963pt;}
.ws72{word-spacing:18.139364pt;}
.ws78{word-spacing:18.183945pt;}
.wsa1{word-spacing:18.793574pt;}
.ws9b{word-spacing:18.841395pt;}
.wsbb{word-spacing:19.003732pt;}
.ws98{word-spacing:19.749990pt;}
.ws1a{word-spacing:20.297137pt;}
.wsbf{word-spacing:20.319797pt;}
.wsc5{word-spacing:20.324592pt;}
.wsc4{word-spacing:20.324629pt;}
.ws50{word-spacing:20.324667pt;}
.wsc9{word-spacing:20.325817pt;}
.ws81{word-spacing:20.345926pt;}
.ws1{word-spacing:23.846639pt;}
.ws10{word-spacing:25.485834pt;}
.wsd3{word-spacing:25.825538pt;}
.wsc3{word-spacing:27.037279pt;}
.ws43{word-spacing:27.042612pt;}
.wsb9{word-spacing:28.221834pt;}
.ws0{word-spacing:32.961753pt;}
.ws88{word-spacing:40.180212pt;}
.ws19{word-spacing:49.095693pt;}
.ws77{word-spacing:52.150854pt;}
.wsa4{word-spacing:57.743616pt;}
.wsae{word-spacing:63.697306pt;}
.wsda{word-spacing:63.745126pt;}
.wsaf{word-spacing:66.382778pt;}
.wsb2{word-spacing:66.385065pt;}
.ws23{word-spacing:71.667439pt;}
.ws70{word-spacing:80.476554pt;}
.ws9e{word-spacing:90.612111pt;}
.wsa7{word-spacing:94.606778pt;}
.wsb7{word-spacing:108.542778pt;}
.wsa0{word-spacing:113.361065pt;}
.wsa2{word-spacing:121.022778pt;}
.wsce{word-spacing:123.447219pt;}
.wsa9{word-spacing:125.307732pt;}
.wsab{word-spacing:136.374398pt;}
.wsd6{word-spacing:138.527602pt;}
.wsd2{word-spacing:142.271602pt;}
.wsd5{word-spacing:149.505295pt;}
.ws9c{word-spacing:153.892111pt;}
.wsd8{word-spacing:160.774629pt;}
.wscd{word-spacing:167.640015pt;}
.wsd9{word-spacing:173.464730pt;}
.wsdc{word-spacing:195.022787pt;}
.wsdb{word-spacing:200.474358pt;}
.wsb8{word-spacing:214.609065pt;}
.wsba{word-spacing:261.355962pt;}
.wsb6{word-spacing:295.668111pt;}
.wsaa{word-spacing:297.066269pt;}
.wsa8{word-spacing:322.440015pt;}
.wsa6{word-spacing:339.312486pt;}
.ws97{word-spacing:686.764532pt;}
.wsd4{word-spacing:787.009065pt;}
.wscf{word-spacing:925.937295pt;}
.wsc0{word-spacing:998.417235pt;}
.ws64{word-spacing:1022.114940pt;}
.wsb4{word-spacing:1667.407252pt;}
.wsb0{word-spacing:1701.263252pt;}
.ws94{word-spacing:1717.598614pt;}
.wsb1{word-spacing:1800.911602pt;}
.wsb5{word-spacing:1826.285348pt;}
._17{margin-left:-30.977044pt;}
._19{margin-left:-28.001548pt;}
._15{margin-left:-26.566933pt;}
._1e{margin-left:-25.079185pt;}
._1b{margin-left:-23.644571pt;}
._1{margin-left:-11.201487pt;}
._18{margin-left:-8.873356pt;}
._35{margin-left:-5.993540pt;}
._d{margin-left:-5.100851pt;}
._28{margin-left:-4.144442pt;}
._0{margin-left:-2.754464pt;}
._2{margin-left:-1.700284pt;}
._3{width:1.338982pt;}
._6{width:2.677965pt;}
._2d{width:4.463245pt;}
._5{width:6.372454pt;}
._38{width:8.855275pt;}
._3c{width:11.795718pt;}
._1f{width:14.505546pt;}
._3e{width:15.461955pt;}
._32{width:16.523756pt;}
._10{width:17.693578pt;}
._9{width:18.889216pt;}
._7{width:20.897690pt;}
._4{width:22.148444pt;}
._2b{width:23.316009pt;}
._2c{width:24.220546pt;}
._16{width:25.823059pt;}
._1a{width:27.735878pt;}
._24{width:28.843193pt;}
._36{width:30.020635pt;}
._8{width:31.069668pt;}
._37{width:32.305391pt;}
._21{width:33.474336pt;}
._3a{width:34.407773pt;}
._29{width:35.546557pt;}
._30{width:37.246841pt;}
._2e{width:39.451770pt;}
._23{width:41.019345pt;}
._33{width:41.965119pt;}
._27{width:43.250967pt;}
._25{width:44.942754pt;}
._c{width:49.148827pt;}
._12{width:50.477173pt;}
._1c{width:51.412311pt;}
._f{width:54.302812pt;}
._42{width:64.159539pt;}
._34{width:71.731200pt;}
._13{width:76.459634pt;}
._11{width:77.469178pt;}
._40{width:81.327206pt;}
._46{width:108.218470pt;}
._43{width:115.087955pt;}
._41{width:160.396254pt;}
._3b{width:206.473284pt;}
._4e{width:213.758976pt;}
._4c{width:216.511317pt;}
._48{width:228.641833pt;}
._4d{width:233.891533pt;}
._4a{width:243.168768pt;}
._49{width:328.634108pt;}
._39{width:339.485361pt;}
._47{width:391.014714pt;}
._3f{width:574.811307pt;}
._45{width:598.317875pt;}
._3d{width:715.582045pt;}
._a{width:738.153368pt;}
._4b{width:814.558242pt;}
._2a{width:1218.784634pt;}
._22{width:1413.131324pt;}
._e{width:1432.010841pt;}
._14{width:1801.724121pt;}
._26{width:1896.692411pt;}
._44{width:1941.997853pt;}
._31{width:1978.811332pt;}
._2f{width:2021.474635pt;}
._b{width:2164.516841pt;}
._20{width:2208.740167pt;}
._1d{width:2222.305243pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:49.720000pt;}
.y1df{bottom:74.958667pt;}
.y6c{bottom:81.600000pt;}
.y23b{bottom:82.294667pt;}
.y1de{bottom:84.070667pt;}
.y20c{bottom:89.449333pt;}
.y6b{bottom:97.541333pt;}
.y23a{bottom:98.450667pt;}
.y20d{bottom:98.561333pt;}
.y14c{bottom:101.357333pt;}
.ycb{bottom:103.526667pt;}
.y1dd{bottom:109.634667pt;}
.yca{bottom:112.638667pt;}
.y6a{bottom:113.481333pt;}
.y239{bottom:114.606667pt;}
.y9c{bottom:115.034667pt;}
.y14b{bottom:117.297333pt;}
.y20b{bottom:120.536000pt;}
.y166{bottom:121.021387pt;}
.y9b{bottom:124.146667pt;}
.y1dc{bottom:125.885333pt;}
.y1a5{bottom:128.820000pt;}
.y238{bottom:130.761333pt;}
.y1db{bottom:134.997333pt;}
.y69{bottom:135.138667pt;}
.y20a{bottom:136.476000pt;}
.y165{bottom:136.961387pt;}
.y14a{bottom:138.956000pt;}
.yf9{bottom:139.630667pt;}
.yc9{bottom:142.962667pt;}
.y237{bottom:146.917333pt;}
.y1a4{bottom:150.392000pt;}
.y1da{bottom:153.613333pt;}
.yf8{bottom:155.570667pt;}
.y209{bottom:158.892000pt;}
.y9a{bottom:161.140000pt;}
.y236{bottom:161.529333pt;}
.y208{bottom:162.176000pt;}
.yc8{bottom:162.380000pt;}
.y120{bottom:162.933333pt;}
.y68{bottom:164.509333pt;}
.y149{bottom:164.568000pt;}
.y1d9{bottom:169.553333pt;}
.yc7{bottom:171.492000pt;}
.y1a3{bottom:171.965333pt;}
.y148{bottom:173.680000pt;}
.yf7{bottom:175.800000pt;}
.y235{bottom:177.685333pt;}
.y11f{bottom:178.873333pt;}
.y67{bottom:180.449333pt;}
.y99{bottom:181.368000pt;}
.y207{bottom:187.877333pt;}
.y1d8{bottom:190.465333pt;}
.y163{bottom:190.940053pt;}
.y1a2{bottom:193.537333pt;}
.y234{bottom:193.841333pt;}
.y11e{bottom:194.814667pt;}
.y66{bottom:196.390667pt;}
.yc6{bottom:198.237333pt;}
.yf6{bottom:198.993333pt;}
.y1d7{bottom:199.577333pt;}
.y16e{bottom:200.958667pt;}
.y206{bottom:203.817333pt;}
.y98{bottom:205.885333pt;}
.y147{bottom:208.421333pt;}
.y233{bottom:209.997333pt;}
.y167{bottom:210.300053pt;}
.y65{bottom:212.330667pt;}
.yf5{bottom:214.933333pt;}
.y1a1{bottom:215.109333pt;}
.y16d{bottom:215.570667pt;}
.y11d{bottom:216.472000pt;}
.yc5{bottom:218.466667pt;}
.y97{bottom:221.825333pt;}
.y232{bottom:224.608000pt;}
.y146{bottom:226.868000pt;}
.y64{bottom:228.270667pt;}
.y205{bottom:228.374667pt;}
.y1a0{bottom:229.908000pt;}
.y16c{bottom:230.182667pt;}
.y1d6{bottom:230.657333pt;}
.yf3{bottom:230.873333pt;}
.y161{bottom:232.776000pt;}
.yf4{bottom:235.694667pt;}
.y204{bottom:237.486667pt;}
.y96{bottom:237.765333pt;}
.yc4{bottom:240.764000pt;}
.y63{bottom:244.210667pt;}
.y145{bottom:244.966667pt;}
.y11c{bottom:246.505333pt;}
.yf2{bottom:246.813333pt;}
.y160{bottom:247.388000pt;}
.y19f{bottom:250.136000pt;}
.y1d5{bottom:250.886667pt;}
.y95{bottom:253.705333pt;}
.yc3{bottom:256.704000pt;}
.y231{bottom:256.920000pt;}
.y144{bottom:259.689333pt;}
.y62{bottom:260.150667pt;}
.y16b{bottom:260.942667pt;}
.y11b{bottom:262.445333pt;}
.yf1{bottom:262.754667pt;}
.y94{bottom:269.646667pt;}
.y203{bottom:271.157333pt;}
.y230{bottom:271.532000pt;}
.y19d{bottom:274.708000pt;}
.y61{bottom:276.090667pt;}
.yc2{bottom:277.302667pt;}
.y142{bottom:278.137333pt;}
.y16a{bottom:278.208000pt;}
.y11a{bottom:278.385333pt;}
.yf0{bottom:278.694667pt;}
.y1d4{bottom:283.626667pt;}
.y19c{bottom:283.820000pt;}
.y91{bottom:285.586667pt;}
.yc1{bottom:286.414667pt;}
.y141{bottom:287.249333pt;}
.y202{bottom:288.301333pt;}
.y19e{bottom:289.522667pt;}
.y22f{bottom:291.861333pt;}
.y60{bottom:292.032000pt;}
.y119{bottom:294.325333pt;}
.yef{bottom:294.634667pt;}
.y169{bottom:295.473333pt;}
.y143{bottom:296.234667pt;}
.y93{bottom:296.574667pt;}
.y92{bottom:296.944000pt;}
.y201{bottom:297.413333pt;}
.y1d3{bottom:298.238667pt;}
.y90{bottom:303.136000pt;}
.y5f{bottom:307.972000pt;}
.y140{bottom:308.376000pt;}
.y118{bottom:310.265333pt;}
.yee{bottom:310.574667pt;}
.y1d2{bottom:312.850667pt;}
.y200{bottom:313.353333pt;}
.yc0{bottom:316.738667pt;}
.y39{bottom:318.225333pt;}
.y8f{bottom:319.076000pt;}
.y19b{bottom:320.224000pt;}
.y22e{bottom:321.894667pt;}
.y117{bottom:326.206667pt;}
.yed{bottom:326.514667pt;}
.y5e{bottom:330.193333pt;}
.y13f{bottom:330.330667pt;}
.y1ff{bottom:333.592000pt;}
.y8e{bottom:335.016000pt;}
.y1d1{bottom:335.684000pt;}
.y13e{bottom:336.158667pt;}
.ybf{bottom:337.556000pt;}
.y22d{bottom:337.834667pt;}
.y199{bottom:338.670667pt;}
.y5d{bottom:339.305333pt;}
.y13d{bottom:339.442667pt;}
.y116{bottom:342.146667pt;}
.yec{bottom:342.454667pt;}
.y1fe{bottom:342.704000pt;}
.y1cf{bottom:343.792000pt;}
.y38{bottom:347.446667pt;}
.y198{bottom:347.782667pt;}
.y1d0{bottom:351.524000pt;}
.y19a{bottom:353.472000pt;}
.ybe{bottom:353.496000pt;}
.y22c{bottom:353.774667pt;}
.y8d{bottom:358.776000pt;}
.y1ce{bottom:361.973333pt;}
.yeb{bottom:363.141333pt;}
.y1cd{bottom:364.077333pt;}
.y13c{bottom:365.322667pt;}
.y115{bottom:366.721333pt;}
.y8c{bottom:367.888000pt;}
.ybd{bottom:369.437333pt;}
.y22b{bottom:369.714667pt;}
.y197{bottom:370.902667pt;}
.yea{bottom:372.253333pt;}
.y5c{bottom:372.508000pt;}
.y1fd{bottom:375.176000pt;}
.y114{bottom:375.832000pt;}
.y37{bottom:376.666667pt;}
.y17{bottom:378.850667pt;}
.y1cc{bottom:379.340000pt;}
.y13b{bottom:383.770667pt;}
.y22a{bottom:385.654667pt;}
.y162{bottom:387.563947pt;}
.y196{bottom:389.349333pt;}
.ybc{bottom:389.665333pt;}
.y1cb{bottom:390.218667pt;}
.y36{bottom:392.606667pt;}
.y16{bottom:393.461333pt;}
.y5b{bottom:395.496000pt;}
.y1fc{bottom:396.225333pt;}
.y1ca{bottom:398.326667pt;}
.y195{bottom:398.461333pt;}
.y8b{bottom:399.788000pt;}
.y229{bottom:401.596000pt;}
.ye9{bottom:403.920000pt;}
.y1fb{bottom:405.337333pt;}
.y15{bottom:408.073333pt;}
.y35{bottom:408.546667pt;}
.y113{bottom:410.573333pt;}
.y5a{bottom:411.436000pt;}
.y15e{bottom:411.724000pt;}
.ybb{bottom:411.964000pt;}
.y1c9{bottom:414.228000pt;}
.y13a{bottom:414.340000pt;}
.y228{bottom:417.536000pt;}
.ye8{bottom:419.860000pt;}
.y194{bottom:422.172000pt;}
.y1c7{bottom:422.336000pt;}
.y14{bottom:422.685333pt;}
.y8a{bottom:423.548000pt;}
.y34{bottom:424.488000pt;}
.y59{bottom:427.376000pt;}
.yba{bottom:429.310667pt;}
.y1c8{bottom:430.068000pt;}
.y164{bottom:431.940053pt;}
.y89{bottom:432.660000pt;}
.y112{bottom:434.334667pt;}
.ye7{bottom:435.800000pt;}
.y13{bottom:437.297333pt;}
.y1fa{bottom:437.809333pt;}
.y1c6{bottom:438.237333pt;}
.yb9{bottom:438.422667pt;}
.y227{bottom:439.193333pt;}
.y33{bottom:440.428000pt;}
.y139{bottom:441.608000pt;}
.y193{bottom:442.400000pt;}
.y58{bottom:443.316000pt;}
.y111{bottom:443.445333pt;}
.y1c4{bottom:446.346667pt;}
.y138{bottom:450.720000pt;}
.ye6{bottom:451.741333pt;}
.y1c5{bottom:454.077333pt;}
.y1f9{bottom:454.954667pt;}
.y32{bottom:456.368000pt;}
.y12{bottom:458.150667pt;}
.y57{bottom:459.257333pt;}
.yb8{bottom:459.880000pt;}
.y1c3{bottom:462.246667pt;}
.y1f8{bottom:464.066667pt;}
.y11{bottom:466.258667pt;}
.y88{bottom:467.401333pt;}
.ye5{bottom:467.681333pt;}
.y1c1{bottom:470.356000pt;}
.y31{bottom:472.308000pt;}
.y56{bottom:475.197333pt;}
.yb7{bottom:475.233333pt;}
.y1c2{bottom:478.088000pt;}
.y110{bottom:478.186667pt;}
.y192{bottom:481.324000pt;}
.y87{bottom:483.341333pt;}
.ye4{bottom:483.621333pt;}
.yb6{bottom:484.345333pt;}
.y1c0{bottom:485.792000pt;}
.y1f7{bottom:486.040000pt;}
.y30{bottom:488.248000pt;}
.y137{bottom:491.101333pt;}
.y1bf{bottom:493.900000pt;}
.y10f{bottom:494.126667pt;}
.y10{bottom:496.638667pt;}
.y55{bottom:497.418667pt;}
.y86{bottom:499.281333pt;}
.ye3{bottom:499.561333pt;}
.y1f6{bottom:501.981333pt;}
.yb5{bottom:503.221333pt;}
.y191{bottom:504.702667pt;}
.y226{bottom:506.261333pt;}
.y54{bottom:506.530667pt;}
.y1be{bottom:506.778667pt;}
.y136{bottom:511.330667pt;}
.y1bc{bottom:514.888000pt;}
.y85{bottom:515.222667pt;}
.ye2{bottom:515.501333pt;}
.y2f{bottom:517.469333pt;}
.y10e{bottom:517.888000pt;}
.yb4{bottom:519.161333pt;}
.yf{bottom:520.741333pt;}
.y225{bottom:520.872000pt;}
.y1f5{bottom:522.218667pt;}
.y1bd{bottom:522.620000pt;}
.y10d{bottom:527.000000pt;}
.y1bb{bottom:527.766667pt;}
.y190{bottom:528.082667pt;}
.ye{bottom:528.849333pt;}
.y84{bottom:531.162667pt;}
.y1f4{bottom:531.330667pt;}
.y2e{bottom:533.409333pt;}
.y135{bottom:535.090667pt;}
.y224{bottom:535.484000pt;}
.y1b9{bottom:535.874667pt;}
.ye1{bottom:537.160000pt;}
.y53{bottom:540.952000pt;}
.yb3{bottom:543.230667pt;}
.y1ba{bottom:543.606667pt;}
.y134{bottom:544.202667pt;}
.y83{bottom:547.102667pt;}
.y2d{bottom:549.349333pt;}
.y223{bottom:550.096000pt;}
.y1b8{bottom:551.312000pt;}
.y18f{bottom:551.461333pt;}
.y52{bottom:556.892000pt;}
.y10c{bottom:559.158667pt;}
.y1b6{bottom:559.420000pt;}
.yd{bottom:561.128000pt;}
.y1f3{bottom:562.548000pt;}
.y222{bottom:564.708000pt;}
.ye0{bottom:565.869333pt;}
.y1b7{bottom:567.152000pt;}
.yb2{bottom:567.298667pt;}
.y82{bottom:567.330667pt;}
.y51{bottom:572.832000pt;}
.y18e{bottom:574.840000pt;}
.y10b{bottom:575.098667pt;}
.y2c{bottom:578.569333pt;}
.y133{bottom:578.944000pt;}
.y221{bottom:579.320000pt;}
.ydf{bottom:581.809333pt;}
.yc{bottom:581.981333pt;}
.y1b5{bottom:585.906667pt;}
.y1f2{bottom:586.106667pt;}
.y15f{bottom:587.256000pt;}
.yb1{bottom:587.528000pt;}
.y50{bottom:588.773333pt;}
.yb{bottom:590.089333pt;}
.y10a{bottom:591.038667pt;}
.y81{bottom:591.848000pt;}
.y220{bottom:593.932000pt;}
.y2b{bottom:594.510667pt;}
.y132{bottom:594.884000pt;}
.y1f1{bottom:595.218667pt;}
.yde{bottom:597.749333pt;}
.y4f{bottom:604.713333pt;}
.y18d{bottom:604.886667pt;}
.y109{bottom:606.978667pt;}
.y80{bottom:607.788000pt;}
.yb0{bottom:609.826667pt;}
.y2a{bottom:610.450667pt;}
.ydd{bottom:613.689333pt;}
.y21f{bottom:615.212000pt;}
.y15d{bottom:617.252000pt;}
.y131{bottom:618.644000pt;}
.y1b4{bottom:619.301333pt;}
.ya{bottom:620.469333pt;}
.y4e{bottom:620.653333pt;}
.y7f{bottom:623.729333pt;}
.yaf{bottom:625.766667pt;}
.y29{bottom:626.390667pt;}
.y1f0{bottom:627.176000pt;}
.y130{bottom:627.756000pt;}
.y108{bottom:628.637333pt;}
.y17b{bottom:633.069333pt;}
.y15c{bottom:633.192000pt;}
.ydc{bottom:633.918667pt;}
.y9{bottom:635.081333pt;}
.y1b3{bottom:635.241333pt;}
.y4d{bottom:636.593333pt;}
.y7e{bottom:639.669333pt;}
.yae{bottom:641.706667pt;}
.y17a{bottom:647.681333pt;}
.y18c{bottom:649.580000pt;}
.y8{bottom:649.692000pt;}
.y15b{bottom:651.638667pt;}
.y1ef{bottom:651.734667pt;}
.y4c{bottom:652.533333pt;}
.y21e{bottom:654.976000pt;}
.y1b2{bottom:655.470667pt;}
.y7d{bottom:655.609333pt;}
.y28{bottom:655.610667pt;}
.ydb{bottom:657.112000pt;}
.yad{bottom:657.646667pt;}
.y107{bottom:658.669333pt;}
.y15a{bottom:660.750667pt;}
.y1ee{bottom:660.846667pt;}
.y179{bottom:662.293333pt;}
.y12f{bottom:662.497333pt;}
.y7{bottom:664.304000pt;}
.y4b{bottom:668.473333pt;}
.y7c{bottom:671.549333pt;}
.yda{bottom:673.052000pt;}
.y106{bottom:674.610667pt;}
.y12e{bottom:678.437333pt;}
.y6{bottom:678.916000pt;}
.yac{bottom:679.305333pt;}
.y159{bottom:682.208000pt;}
.y1b1{bottom:683.312000pt;}
.y4a{bottom:684.414667pt;}
.y27{bottom:684.832000pt;}
.y18b{bottom:685.030667pt;}
.y7b{bottom:687.489333pt;}
.y105{bottom:690.550667pt;}
.y189{bottom:693.138667pt;}
.y172{bottom:693.228000pt;}
.yd9{bottom:694.172000pt;}
.y1ed{bottom:694.517333pt;}
.y157{bottom:698.149333pt;}
.y12d{bottom:698.666667pt;}
.y49{bottom:700.354667pt;}
.y26{bottom:700.772000pt;}
.y18a{bottom:700.870667pt;}
.y158{bottom:702.969333pt;}
.yd8{bottom:703.282667pt;}
.y104{bottom:706.490667pt;}
.y1b0{bottom:706.690667pt;}
.y5{bottom:706.812000pt;}
.yab{bottom:707.118667pt;}
.y188{bottom:712.793333pt;}
.y79{bottom:714.492000pt;}
.y48{bottom:716.294667pt;}
.y1ec{bottom:716.313333pt;}
.y25{bottom:716.712000pt;}
.y156{bottom:718.377333pt;}
.y186{bottom:720.901333pt;}
.y12c{bottom:721.228000pt;}
.y21d{bottom:722.042667pt;}
.y103{bottom:722.430667pt;}
.y78{bottom:723.604000pt;}
.y7a{bottom:724.002667pt;}
.yaa{bottom:725.981333pt;}
.yd7{bottom:726.674667pt;}
.y187{bottom:728.633333pt;}
.y1af{bottom:730.069333pt;}
.y12b{bottom:730.340000pt;}
.y47{bottom:732.234667pt;}
.y1eb{bottom:732.254667pt;}
.y16f{bottom:734.037333pt;}
.ya9{bottom:735.092000pt;}
.y21c{bottom:736.654667pt;}
.y102{bottom:738.370667pt;}
.y185{bottom:740.556000pt;}
.y155{bottom:742.894667pt;}
.yd6{bottom:743.277333pt;}
.y24{bottom:745.932000pt;}
.y46{bottom:748.174667pt;}
.y183{bottom:748.664000pt;}
.y170{bottom:749.078667pt;}
.y1ea{bottom:750.580000pt;}
.y21b{bottom:751.940000pt;}
.y1ae{bottom:753.449333pt;}
.y12a{bottom:753.637333pt;}
.y184{bottom:756.396000pt;}
.ya8{bottom:758.264000pt;}
.y101{bottom:758.600000pt;}
.y1e9{bottom:759.692000pt;}
.y154{bottom:761.341333pt;}
.y23{bottom:761.873333pt;}
.y173{bottom:762.609333pt;}
.y45{bottom:764.114667pt;}
.y77{bottom:764.246667pt;}
.y21a{bottom:767.558667pt;}
.y182{bottom:768.318667pt;}
.y129{bottom:772.085333pt;}
.yd5{bottom:773.846667pt;}
.ya7{bottom:774.204000pt;}
.y181{bottom:776.426667pt;}
.y1ad{bottom:776.828000pt;}
.y22{bottom:777.813333pt;}
.y4{bottom:777.816000pt;}
.y153{bottom:779.440000pt;}
.y44{bottom:780.056000pt;}
.y1e8{bottom:781.149333pt;}
.y128{bottom:781.196000pt;}
.y219{bottom:782.170667pt;}
.y76{bottom:782.693333pt;}
.y100{bottom:783.117333pt;}
.ya6{bottom:790.145333pt;}
.y75{bottom:791.805333pt;}
.y21{bottom:793.753333pt;}
.y152{bottom:794.162667pt;}
.yd4{bottom:794.533333pt;}
.y43{bottom:795.996000pt;}
.y180{bottom:796.080000pt;}
.y218{bottom:797.789333pt;}
.yff{bottom:799.057333pt;}
.y127{bottom:800.072000pt;}
.y1e7{bottom:801.386667pt;}
.y3{bottom:801.726667pt;}
.yd3{bottom:803.645333pt;}
.y17e{bottom:804.189333pt;}
.ya5{bottom:806.085333pt;}
.y1ac{bottom:806.874667pt;}
.y20{bottom:809.693333pt;}
.y1e6{bottom:810.498667pt;}
.y17f{bottom:811.920000pt;}
.y42{bottom:811.936000pt;}
.y217{bottom:812.401333pt;}
.y74{bottom:813.780000pt;}
.ya4{bottom:822.025333pt;}
.y151{bottom:823.386667pt;}
.y126{bottom:823.832000pt;}
.y1f{bottom:825.633333pt;}
.yd2{bottom:826.573333pt;}
.y216{bottom:827.013333pt;}
.y125{bottom:827.840000pt;}
.y41{bottom:827.876000pt;}
.yfe{bottom:828.281333pt;}
.y73{bottom:829.720000pt;}
.y124{bottom:836.950667pt;}
.y1ab{bottom:836.956000pt;}
.y215{bottom:837.568000pt;}
.ya3{bottom:838.190667pt;}
.y17d{bottom:838.618667pt;}
.yd0{bottom:840.984000pt;}
.y214{bottom:841.624000pt;}
.yd1{bottom:841.914667pt;}
.y1e5{bottom:842.454667pt;}
.y171{bottom:842.660000pt;}
.y150{bottom:843.312000pt;}
.y168{bottom:843.789333pt;}
.y40{bottom:843.816000pt;}
.ya2{bottom:844.018667pt;}
.yfd{bottom:844.221333pt;}
.y72{bottom:845.660000pt;}
.ya1{bottom:847.302667pt;}
.y2{bottom:848.214667pt;}
.y1e{bottom:854.854667pt;}
.y213{bottom:856.236000pt;}
.y3f{bottom:859.756000pt;}
.y1aa{bottom:860.028000pt;}
.y71{bottom:865.177333pt;}
.ya0{bottom:866.178667pt;}
.y212{bottom:866.792000pt;}
.y1e4{bottom:868.156000pt;}
.y178{bottom:869.465333pt;}
.yfc{bottom:870.788000pt;}
.y1d{bottom:870.794667pt;}
.y211{bottom:870.848000pt;}
.y14f{bottom:872.536000pt;}
.ycf{bottom:873.389333pt;}
.y70{bottom:874.289333pt;}
.y3e{bottom:875.697333pt;}
.y123{bottom:876.114667pt;}
.y1{bottom:877.437333pt;}
.y1a9{bottom:881.600000pt;}
.y17c{bottom:883.060000pt;}
.y177{bottom:885.005333pt;}
.y210{bottom:885.460000pt;}
.y9f{bottom:886.149333pt;}
.yfb{bottom:886.728000pt;}
.y1c{bottom:886.734667pt;}
.y3d{bottom:891.637333pt;}
.y1e3{bottom:893.857333pt;}
.y9e{bottom:895.260000pt;}
.y14e{bottom:896.296000pt;}
.yce{bottom:898.394667pt;}
.y122{bottom:899.876000pt;}
.y20f{bottom:900.072000pt;}
.y6f{bottom:900.429333pt;}
.y176{bottom:900.544000pt;}
.yfa{bottom:902.668000pt;}
.y1b{bottom:902.674667pt;}
.y1a8{bottom:903.173333pt;}
.y14d{bottom:905.408000pt;}
.ycd{bottom:907.506667pt;}
.y3c{bottom:907.577333pt;}
.y121{bottom:908.988000pt;}
.y175{bottom:916.382667pt;}
.y1e2{bottom:917.602667pt;}
.y6e{bottom:920.658667pt;}
.y20e{bottom:921.352000pt;}
.y1e1{bottom:923.430667pt;}
.y3b{bottom:923.517333pt;}
.y1a7{bottom:924.745333pt;}
.y1e0{bottom:926.714667pt;}
.y23d{bottom:928.804000pt;}
.y9d{bottom:929.236000pt;}
.y1a{bottom:931.896000pt;}
.y3a{bottom:939.457333pt;}
.ycc{bottom:940.886667pt;}
.y23c{bottom:944.960000pt;}
.y6d{bottom:945.176000pt;}
.y1a6{bottom:946.318667pt;}
.y174{bottom:960.824000pt;}
.y19{bottom:961.116000pt;}
.h13{height:2.125355pt;}
.h1e{height:4.061628pt;}
.h2d{height:23.862579pt;}
.h2c{height:25.849552pt;}
.h23{height:26.184294pt;}
.hb{height:32.815558pt;}
.h6{height:35.865600pt;}
.h5{height:35.913421pt;}
.h4{height:37.246841pt;}
.hc{height:39.850400pt;}
.h3{height:39.903534pt;}
.h3b{height:41.533628pt;}
.h3e{height:42.038562pt;}
.h34{height:42.758562pt;}
.h41{height:42.957628pt;}
.h25{height:44.482961pt;}
.h2{height:44.696508pt;}
.h37{height:45.414562pt;}
.h2b{height:45.464294pt;}
.h22{height:45.469628pt;}
.h39{height:47.554688pt;}
.h1b{height:48.120294pt;}
.h17{height:48.125628pt;}
.h38{height:51.174562pt;}
.h3f{height:52.137421pt;}
.h3d{height:53.039534pt;}
.h30{height:57.050201pt;}
.h40{height:58.982562pt;}
.h42{height:63.435913pt;}
.h1{height:64.454458pt;}
.h1f{height:65.426961pt;}
.h7{height:66.793600pt;}
.h32{height:68.345421pt;}
.h9{height:69.378961pt;}
.h33{height:75.190562pt;}
.h36{height:75.195895pt;}
.h1c{height:75.791733pt;}
.hd{height:75.797067pt;}
.h24{height:76.298400pt;}
.h16{height:76.346201pt;}
.h10{height:76.351534pt;}
.h1d{height:77.042688pt;}
.h19{height:77.048021pt;}
.h8{height:77.846562pt;}
.h31{height:77.851895pt;}
.h14{height:81.410961pt;}
.h12{height:83.802400pt;}
.h21{height:84.568294pt;}
.he{height:84.573628pt;}
.h15{height:85.618688pt;}
.hf{height:86.797355pt;}
.h18{height:88.933067pt;}
.h3a{height:90.178688pt;}
.h29{height:90.184021pt;}
.h20{height:97.546201pt;}
.h35{height:99.225600pt;}
.ha{height:101.810961pt;}
.h28{height:112.239733pt;}
.h11{height:112.245067pt;}
.h1a{height:113.490688pt;}
.h3c{height:113.496021pt;}
.h2a{height:117.858961pt;}
.h2f{height:126.143733pt;}
.h26{height:126.536294pt;}
.h27{height:126.541628pt;}
.h2e{height:429.826773pt;}
.h0{height:1056.000000pt;}
.w1{width:429.826773pt;}
.w0{width:816.000000pt;}
.xa8{left:-27.749280pt;}
.x0{left:0.000000pt;}
.x14{left:81.600000pt;}
.x7a{left:86.772000pt;}
.x79{left:90.460000pt;}
.x72{left:92.449333pt;}
.x6f{left:94.057333pt;}
.x73{left:98.408000pt;}
.x6{left:100.056000pt;}
.x15{left:101.521333pt;}
.x35{left:103.130667pt;}
.xac{left:106.328000pt;}
.xbc{left:109.496000pt;}
.x24{left:112.432000pt;}
.x33{left:113.497333pt;}
.x78{left:114.809333pt;}
.x92{left:119.312000pt;}
.x2{left:125.649333pt;}
.x1{left:130.353333pt;}
.x17{left:134.273333pt;}
.x25{left:136.350667pt;}
.x93{left:140.109333pt;}
.x18{left:147.925333pt;}
.xad{left:155.610667pt;}
.xab{left:158.753333pt;}
.x64{left:166.857333pt;}
.x9a{left:169.868000pt;}
.x19{left:175.348000pt;}
.xbd{left:179.560000pt;}
.x1a{left:190.038667pt;}
.xa5{left:193.086613pt;}
.x3c{left:194.765333pt;}
.x3d{left:208.476000pt;}
.xc4{left:217.472000pt;}
.x88{left:221.324000pt;}
.xa7{left:224.121387pt;}
.xd3{left:226.434667pt;}
.x9c{left:228.536000pt;}
.x67{left:229.956000pt;}
.xbb{left:231.825333pt;}
.x87{left:232.884000pt;}
.x21{left:238.140000pt;}
.xcf{left:239.988000pt;}
.xa6{left:245.101387pt;}
.x5c{left:246.265333pt;}
.x22{left:248.358667pt;}
.x99{left:250.009333pt;}
.xb6{left:252.458667pt;}
.xb9{left:258.454667pt;}
.x68{left:263.780000pt;}
.x12{left:270.402667pt;}
.xb{left:271.358667pt;}
.x74{left:273.033333pt;}
.x8e{left:274.430667pt;}
.x96{left:276.870667pt;}
.x1c{left:282.202667pt;}
.x9b{left:283.416000pt;}
.x5d{left:284.573333pt;}
.xd{left:287.301333pt;}
.x36{left:289.500000pt;}
.x57{left:290.465333pt;}
.x41{left:292.033333pt;}
.xb1{left:293.314667pt;}
.x2d{left:295.310667pt;}
.xb3{left:297.336000pt;}
.x1d{left:298.310667pt;}
.x9{left:301.666667pt;}
.x4a{left:303.265333pt;}
.x3{left:305.194667pt;}
.xc{left:306.912000pt;}
.x43{left:308.649333pt;}
.x4f{left:309.980000pt;}
.x5b{left:311.069333pt;}
.x2e{left:312.409333pt;}
.xc5{left:313.462667pt;}
.xc9{left:314.865333pt;}
.x51{left:317.633333pt;}
.x7b{left:320.970667pt;}
.xb2{left:322.808000pt;}
.x8d{left:323.889333pt;}
.x63{left:324.960000pt;}
.x40{left:326.400000pt;}
.x58{left:327.565333pt;}
.xba{left:329.234667pt;}
.xa{left:330.497333pt;}
.x1f{left:332.288000pt;}
.x97{left:333.818667pt;}
.x7e{left:336.178667pt;}
.x44{left:337.336000pt;}
.x4{left:339.032000pt;}
.x94{left:343.364000pt;}
.x16{left:345.222667pt;}
.x7c{left:346.405333pt;}
.x5f{left:347.429333pt;}
.xe{left:351.322667pt;}
.x4b{left:352.601333pt;}
.x65{left:353.669333pt;}
.x60{left:355.112000pt;}
.x98{left:356.446667pt;}
.x4d{left:357.549333pt;}
.x50{left:360.124000pt;}
.x3b{left:361.194667pt;}
.xf{left:362.177333pt;}
.x5{left:365.102667pt;}
.x91{left:367.932000pt;}
.x1e{left:368.969333pt;}
.x62{left:370.976000pt;}
.x13{left:372.984000pt;}
.xcd{left:375.173333pt;}
.x2b{left:376.232000pt;}
.x3e{left:378.013333pt;}
.x95{left:379.049333pt;}
.x7d{left:380.136000pt;}
.x6e{left:381.385333pt;}
.x1b{left:383.044000pt;}
.xc0{left:384.085333pt;}
.xcc{left:386.436000pt;}
.x20{left:387.541333pt;}
.x8a{left:389.022667pt;}
.x52{left:390.529333pt;}
.xc8{left:393.574667pt;}
.x29{left:395.952000pt;}
.x8b{left:401.189333pt;}
.x27{left:402.856000pt;}
.x2a{left:404.000000pt;}
.x4e{left:407.208000pt;}
.x9d{left:408.150667pt;}
.xbe{left:410.565333pt;}
.x37{left:411.808000pt;}
.x89{left:414.104000pt;}
.x69{left:416.572000pt;}
.x2c{left:419.794667pt;}
.x26{left:420.876000pt;}
.x23{left:422.625333pt;}
.x38{left:424.561333pt;}
.xb7{left:426.680000pt;}
.x8c{left:428.073333pt;}
.xc1{left:430.098667pt;}
.xbf{left:432.102667pt;}
.x34{left:433.614667pt;}
.x42{left:437.776000pt;}
.xa1{left:439.790667pt;}
.x53{left:441.772000pt;}
.x3f{left:444.217333pt;}
.x28{left:446.408000pt;}
.x61{left:448.241333pt;}
.xd0{left:450.418667pt;}
.xae{left:451.413333pt;}
.x49{left:454.224000pt;}
.xce{left:455.790667pt;}
.x4c{left:457.982667pt;}
.x59{left:460.004000pt;}
.xcb{left:462.218667pt;}
.x7{left:463.246667pt;}
.xd1{left:465.846667pt;}
.x8{left:470.708000pt;}
.xaf{left:473.446667pt;}
.x7f{left:474.472000pt;}
.xb0{left:475.984000pt;}
.xc7{left:477.509333pt;}
.x5e{left:479.030667pt;}
.x5a{left:484.745333pt;}
.xc6{left:488.078667pt;}
.x54{left:494.677333pt;}
.xca{left:497.445333pt;}
.xb5{left:498.689333pt;}
.x75{left:500.221333pt;}
.x80{left:502.664000pt;}
.xa4{left:504.773333pt;}
.xb4{left:505.929333pt;}
.x66{left:510.422667pt;}
.x45{left:514.606667pt;}
.x81{left:517.137333pt;}
.xd2{left:521.218667pt;}
.x76{left:525.512000pt;}
.x82{left:535.486667pt;}
.xb8{left:537.990667pt;}
.x46{left:540.661333pt;}
.x85{left:544.353333pt;}
.x83{left:547.530667pt;}
.x86{left:552.401333pt;}
.x84{left:555.580000pt;}
.x77{left:559.142667pt;}
.x47{left:567.640000pt;}
.x48{left:582.330667pt;}
.x2f{left:590.704000pt;}
.xa2{left:594.838667pt;}
.x70{left:596.018667pt;}
.x39{left:607.962667pt;}
.x55{left:608.884000pt;}
.x9e{left:613.544000pt;}
.x3a{left:619.670667pt;}
.x6a{left:624.900000pt;}
.x30{left:627.718667pt;}
.x56{left:633.141333pt;}
.x9f{left:639.600000pt;}
.x31{left:643.554667pt;}
.x71{left:648.881333pt;}
.x6b{left:652.612000pt;}
.xa9{left:659.749333pt;}
.xa0{left:666.557333pt;}
.xa3{left:670.142667pt;}
.xaa{left:671.297333pt;}
.xc2{left:677.486667pt;}
.x10{left:678.433333pt;}
.x6c{left:682.050667pt;}
.x32{left:690.349333pt;}
.xc3{left:692.573333pt;}
.x6d{left:696.741333pt;}
.x11{left:705.429333pt;}
.x8f{left:716.980000pt;}
.x90{left:733.360000pt;}
}




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