
    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_bcf89686eca89a9c8b8b89f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_840893fd7f0539006a7e6859.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_0e3ac71491406d8d9d90fd92.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fa096778c7bec7a64456e434.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_01db709e38714a24f87d3678.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;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_c2d982ded58aaed316c9f640.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.887000;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_b9de48dd4df7662e00633745.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_882fa6b06576fe75ad245bba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9df84e16ffeeffdf319ad721.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.663000;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_d17db6794bd38872b5fd44a0.woff2')format("woff");}.fff{font-family:fff;line-height:0.493000;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_60518bb2d0dc0c1924c10a76.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_a696e7a55f1a26c3d80f84bb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;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_afd72adc1ec99dc73c2e3390.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;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_60518bb2d0dc0c1924c10a76.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a696e7a55f1a26c3d80f84bb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_afd72adc1ec99dc73c2e3390.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;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_98edf03cf421d954d6ca32a6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.698000;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_fb884ed55d4e0631e1e2c9e9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_cabc3eb27b84b80bf0bb48b1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;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_d3eecb934365c1dea58066bd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.011230;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_9c85b8d0ab0d5bdac3bebe37.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_78d3eea063e56d2423188de6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_d47863738cf57c398a0bc3b4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_361fcae188bd5cd25b73a165.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5ee18561214b645da52db6d0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_78d3eea063e56d2423188de6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_d47863738cf57c398a0bc3b4.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_361fcae188bd5cd25b73a165.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5ee18561214b645da52db6d0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_78d3eea063e56d2423188de6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_60518bb2d0dc0c1924c10a76.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_c1b090f10d080a9f466d1a3b.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_5794804344fb3f2d03518305.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_c4aaaa6c84273bc99d68a427.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3{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);}
.m19{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);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m28{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);}
.mf{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);}
.m11{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);}
.m17{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);}
.m4{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);}
.m2b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m2a{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);}
.m7{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);}
.m1a{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);}
.m14{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);}
.m9{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);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m23{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);}
.m21{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);}
.m8{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);}
.m15{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);}
.m20{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);}
.mc{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);}
.m18{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);}
.m12{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);}
.m16{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.ma{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);}
.md{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);}
.m29{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);}
.me{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);}
.m13{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);}
.m1b{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);}
.m1d{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);}
.m1c{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);}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v9{vertical-align:-11.760000px;}
.v6{vertical-align:-4.602000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.118000px;}
.vb{vertical-align:16.020000px;}
.v8{vertical-align:18.012000px;}
.v4{vertical-align:20.622000px;}
.v1{vertical-align:21.702000px;}
.va{vertical-align:24.684000px;}
.vd{vertical-align:27.858000px;}
.v5{vertical-align:37.896000px;}
.v3{vertical-align:40.470000px;}
.v7{vertical-align:44.928000px;}
.ls54{letter-spacing:-0.234468px;}
.ls4f{letter-spacing:-0.198396px;}
.ls50{letter-spacing:-0.168336px;}
.ls75{letter-spacing:-0.122645px;}
.ls39{letter-spacing:-0.120240px;}
.ls7c{letter-spacing:-0.112424px;}
.ls5a{letter-spacing:-0.108216px;}
.ls73{letter-spacing:-0.103421px;}
.ls79{letter-spacing:-0.094802px;}
.ls56{letter-spacing:-0.090180px;}
.ls87{letter-spacing:-0.088770px;}
.ls38{letter-spacing:-0.086184px;}
.ls3c{letter-spacing:-0.078156px;}
.ls88{letter-spacing:-0.074308px;}
.ls51{letter-spacing:-0.072144px;}
.ls7f{letter-spacing:-0.066132px;}
.ls53{letter-spacing:-0.060120px;}
.ls77{letter-spacing:-0.057715px;}
.ls3b{letter-spacing:-0.054108px;}
.ls7e{letter-spacing:-0.052906px;}
.ls3d{letter-spacing:-0.048096px;}
.ls78{letter-spacing:-0.045360px;}
.ls52{letter-spacing:-0.042084px;}
.ls80{letter-spacing:-0.041580px;}
.ls55{letter-spacing:-0.036072px;}
.ls7a{letter-spacing:-0.033066px;}
.ls3a{letter-spacing:-0.030060px;}
.ls58{letter-spacing:-0.027000px;}
.ls40{letter-spacing:-0.024048px;}
.ls76{letter-spacing:-0.021643px;}
.ls7d{letter-spacing:-0.019840px;}
.ls41{letter-spacing:-0.018036px;}
.ls3f{letter-spacing:-0.012024px;}
.ls3e{letter-spacing:-0.006012px;}
.ls4e{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000583px;}
.ls5{letter-spacing:0.000600px;}
.ls8c{letter-spacing:0.001102px;}
.ls20{letter-spacing:0.003389px;}
.ls1c{letter-spacing:0.004766px;}
.ls2e{letter-spacing:0.004788px;}
.ls8d{letter-spacing:0.004800px;}
.ls1e{letter-spacing:0.005108px;}
.ls86{letter-spacing:0.005562px;}
.ls33{letter-spacing:0.006012px;}
.ls71{letter-spacing:0.011880px;}
.ls36{letter-spacing:0.012024px;}
.ls65{letter-spacing:0.012960px;}
.ls6b{letter-spacing:0.013226px;}
.ls60{letter-spacing:0.014429px;}
.ls6e{letter-spacing:0.017820px;}
.ls32{letter-spacing:0.018036px;}
.ls62{letter-spacing:0.019440px;}
.ls6a{letter-spacing:0.019840px;}
.ls5f{letter-spacing:0.021643px;}
.ls35{letter-spacing:0.030060px;}
.ls30{letter-spacing:0.032400px;}
.ls6c{letter-spacing:0.033066px;}
.ls85{letter-spacing:0.033372px;}
.ls6d{letter-spacing:0.035640px;}
.ls4a{letter-spacing:0.036072px;}
.ls61{letter-spacing:0.038880px;}
.ls34{letter-spacing:0.042084px;}
.ls6f{letter-spacing:0.046292px;}
.ls72{letter-spacing:0.047520px;}
.ls31{letter-spacing:0.048096px;}
.ls44{letter-spacing:0.048600px;}
.ls84{letter-spacing:0.049539px;}
.ls63{letter-spacing:0.050501px;}
.ls66{letter-spacing:0.051840px;}
.ls70{letter-spacing:0.053460px;}
.ls45{letter-spacing:0.054108px;}
.ls64{letter-spacing:0.058320px;}
.ls57{letter-spacing:0.060120px;}
.ls83{letter-spacing:0.061924px;}
.ls48{letter-spacing:0.066132px;}
.ls5d{letter-spacing:0.072144px;}
.ls4c{letter-spacing:0.078156px;}
.ls47{letter-spacing:0.096192px;}
.ls59{letter-spacing:0.120240px;}
.ls49{letter-spacing:0.132264px;}
.ls46{letter-spacing:0.144288px;}
.ls2f{letter-spacing:0.181944px;}
.ls82{letter-spacing:0.187402px;}
.ls2d{letter-spacing:0.191520px;}
.ls37{letter-spacing:0.192384px;}
.ls81{letter-spacing:0.197266px;}
.ls68{letter-spacing:0.200138px;}
.ls67{letter-spacing:0.210672px;}
.ls7b{letter-spacing:0.211622px;}
.ls5c{letter-spacing:0.218333px;}
.ls5b{letter-spacing:0.229824px;}
.ls74{letter-spacing:0.230861px;}
.ls19{letter-spacing:0.548815px;}
.ls26{letter-spacing:0.742200px;}
.ls10{letter-spacing:0.748766px;}
.lsd{letter-spacing:0.750583px;}
.ls28{letter-spacing:1.135142px;}
.ls9{letter-spacing:1.275394px;}
.ls2a{letter-spacing:1.312115px;}
.ls17{letter-spacing:1.318115px;}
.lsf{letter-spacing:1.420741px;}
.ls18{letter-spacing:1.452571px;}
.ls13{letter-spacing:1.492766px;}
.ls3{letter-spacing:1.861130px;}
.ls21{letter-spacing:2.064017px;}
.ls1b{letter-spacing:2.149834px;}
.ls1f{letter-spacing:2.988571px;}
.ls1{letter-spacing:2.989200px;}
.lse{letter-spacing:3.733200px;}
.ls4{letter-spacing:10.371300px;}
.ls2c{letter-spacing:11.775793px;}
.ls8{letter-spacing:11.954850px;}
.ls25{letter-spacing:12.345483px;}
.ls14{letter-spacing:13.048741px;}
.ls15{letter-spacing:13.083483px;}
.ls12{letter-spacing:13.089483px;}
.ls24{letter-spacing:13.114766px;}
.ls8a{letter-spacing:13.256631px;}
.ls8b{letter-spacing:13.448400px;}
.ls89{letter-spacing:13.454400px;}
.ls8e{letter-spacing:13.663550px;}
.ls43{letter-spacing:13.688612px;}
.ls1a{letter-spacing:14.473200px;}
.ls4d{letter-spacing:15.242778px;}
.ls11{letter-spacing:15.355200px;}
.ls2b{letter-spacing:15.694483px;}
.ls29{letter-spacing:17.881200px;}
.ls2{letter-spacing:17.935200px;}
.ls22{letter-spacing:20.335200px;}
.lsb{letter-spacing:20.845834px;}
.ls16{letter-spacing:26.400583px;}
.ls27{letter-spacing:51.675483px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls4b{letter-spacing:65.759256px;}
.ls69{letter-spacing:72.335182px;}
.ls5e{letter-spacing:78.911107px;}
.lsa{letter-spacing:94.292700px;}
.ls42{letter-spacing:293.337300px;}
.lsc{letter-spacing:355.329483px;}
.ls23{letter-spacing:358.803483px;}
.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;}
}
.ws9d{word-spacing:-60.120000px;}
.wsd0{word-spacing:-18.266861px;}
.wsd2{word-spacing:-18.072072px;}
.wsd1{word-spacing:-18.057643px;}
.wsd4{word-spacing:-16.744622px;}
.wsd6{word-spacing:-16.566066px;}
.wsd5{word-spacing:-16.552840px;}
.ws9e{word-spacing:-15.222384px;}
.wsa2{word-spacing:-15.150240px;}
.wsa0{word-spacing:-15.108156px;}
.wsa3{word-spacing:-15.036012px;}
.wsa1{word-spacing:-15.030000px;}
.ws9f{word-spacing:-14.999940px;}
.ws68{word-spacing:-14.943900px;}
.wscf{word-spacing:-14.593824px;}
.ws12a{word-spacing:-13.449600px;}
.wsd3{word-spacing:-13.377672px;}
.wsfd{word-spacing:-12.526366px;}
.ws76{word-spacing:-12.161520px;}
.ws2b{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws95{word-spacing:-3.825638px;}
.ws67{word-spacing:-3.435000px;}
.wse3{word-spacing:-3.390768px;}
.wse4{word-spacing:-3.340267px;}
.ws6f{word-spacing:-3.168107px;}
.wsf6{word-spacing:-3.108204px;}
.wsf7{word-spacing:-3.061912px;}
.wsa5{word-spacing:-3.048556px;}
.ws11c{word-spacing:-3.012710px;}
.wse2{word-spacing:-2.885760px;}
.wse0{word-spacing:-2.849688px;}
.ws62{word-spacing:-2.689902px;}
.wsf5{word-spacing:-2.645280px;}
.wsf3{word-spacing:-2.612214px;}
.ws72{word-spacing:-2.510575px;}
.wsc7{word-spacing:-2.458908px;}
.ws4a{word-spacing:-2.450800px;}
.ws91{word-spacing:-2.434860px;}
.ws11f{word-spacing:-2.420928px;}
.ws90{word-spacing:-2.404800px;}
.wse1{word-spacing:-2.402395px;}
.ws4d{word-spacing:-2.391024px;}
.ws36{word-spacing:-2.331248px;}
.ws96{word-spacing:-2.271473px;}
.ws120{word-spacing:-2.205734px;}
.wsf4{word-spacing:-2.202196px;}
.ws7d{word-spacing:-2.110212px;}
.ws3{word-spacing:-1.908367px;}
.ws37{word-spacing:-1.853044px;}
.ws113{word-spacing:-1.793268px;}
.ws8b{word-spacing:-1.749492px;}
.wsc5{word-spacing:-1.737468px;}
.ws57{word-spacing:-1.733492px;}
.ws10d{word-spacing:-1.613941px;}
.ws29{word-spacing:-1.494390px;}
.ws115{word-spacing:-1.434614px;}
.ws92{word-spacing:-1.416381px;}
.ws93{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.255288px;}
.ws111{word-spacing:-1.135736px;}
.ws139{word-spacing:-1.129766px;}
.ws63{word-spacing:-1.075961px;}
.ws55{word-spacing:-1.016185px;}
.ws78{word-spacing:-0.956410px;}
.ws77{word-spacing:-0.900772px;}
.ws45{word-spacing:-0.896634px;}
.ws4f{word-spacing:-0.836858px;}
.ws20{word-spacing:-0.699379px;}
.ws110{word-spacing:-0.478205px;}
.ws70{word-spacing:-0.418429px;}
.ws128{word-spacing:-0.376589px;}
.wsb0{word-spacing:-0.360720px;}
.ws73{word-spacing:-0.358654px;}
.ws129{word-spacing:-0.322790px;}
.wsd8{word-spacing:-0.321754px;}
.wsbf{word-spacing:-0.318636px;}
.ws24{word-spacing:-0.298878px;}
.wseb{word-spacing:-0.294941px;}
.wsda{word-spacing:-0.281362px;}
.wsff{word-spacing:-0.276172px;}
.ws13a{word-spacing:-0.268992px;}
.ws7b{word-spacing:-0.268128px;}
.wsb4{word-spacing:-0.264528px;}
.wsed{word-spacing:-0.257915px;}
.wsb9{word-spacing:-0.246492px;}
.ws25{word-spacing:-0.239102px;}
.ws127{word-spacing:-0.215194px;}
.ws2d{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws33{word-spacing:-0.119551px;}
.ws131{word-spacing:-0.107597px;}
.wsd7{word-spacing:-0.103421px;}
.wsea{word-spacing:-0.094802px;}
.ws135{word-spacing:-0.092326px;}
.ws7a{word-spacing:-0.090972px;}
.wsfe{word-spacing:-0.088770px;}
.ws79{word-spacing:-0.086184px;}
.ws94{word-spacing:-0.063014px;}
.ws23{word-spacing:-0.059776px;}
.ws17{word-spacing:-0.053798px;}
.wsad{word-spacing:-0.048096px;}
.ws99{word-spacing:-0.041843px;}
.wsbc{word-spacing:-0.036072px;}
.ws133{word-spacing:-0.006288px;}
.ws142{word-spacing:-0.004339px;}
.ws130{word-spacing:-0.003600px;}
.ws134{word-spacing:-0.003466px;}
.ws13d{word-spacing:-0.002198px;}
.ws0{word-spacing:0.000000px;}
.ws6a{word-spacing:0.001424px;}
.wsb5{word-spacing:0.018036px;}
.wsb1{word-spacing:0.030060px;}
.wsbd{word-spacing:0.036072px;}
.ws102{word-spacing:0.049539px;}
.ws21{word-spacing:0.053798px;}
.wsc4{word-spacing:0.054108px;}
.ws27{word-spacing:0.059776px;}
.wsac{word-spacing:0.084168px;}
.wsc0{word-spacing:0.090180px;}
.wsb7{word-spacing:0.096192px;}
.wsb3{word-spacing:0.102204px;}
.ws1d{word-spacing:0.107597px;}
.wsb6{word-spacing:0.108216px;}
.wsbe{word-spacing:0.114228px;}
.ws2c{word-spacing:0.119551px;}
.ws8c{word-spacing:0.120240px;}
.wsf0{word-spacing:0.125651px;}
.wsba{word-spacing:0.132264px;}
.wsdd{word-spacing:0.137074px;}
.wsaf{word-spacing:0.138276px;}
.ws7c{word-spacing:0.151200px;}
.wsfc{word-spacing:0.154440px;}
.ws103{word-spacing:0.155736px;}
.wsb2{word-spacing:0.156312px;}
.ws16{word-spacing:0.161395px;}
.wsf1{word-spacing:0.166320px;}
.wsae{word-spacing:0.168336px;}
.wse9{word-spacing:0.168480px;}
.wsc1{word-spacing:0.174348px;}
.ws2f{word-spacing:0.179327px;}
.wsde{word-spacing:0.181440px;}
.ws105{word-spacing:0.183546px;}
.wsf2{word-spacing:0.184140px;}
.wsbb{word-spacing:0.186372px;}
.ws104{word-spacing:0.189108px;}
.wsdf{word-spacing:0.200880px;}
.ws8{word-spacing:0.209214px;}
.wsc2{word-spacing:0.210600px;}
.ws14{word-spacing:0.215194px;}
.ws4b{word-spacing:0.239102px;}
.ws12d{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws30{word-spacing:0.298878px;}
.ws1f{word-spacing:0.322790px;}
.wsb8{word-spacing:0.330660px;}
.ws38{word-spacing:0.358654px;}
.ws11d{word-spacing:0.376589px;}
.ws28{word-spacing:0.418429px;}
.ws8f{word-spacing:0.456912px;}
.ws8e{word-spacing:0.468936px;}
.wsa7{word-spacing:0.478205px;}
.wsef{word-spacing:0.502603px;}
.ws114{word-spacing:0.537980px;}
.wsdc{word-spacing:0.548294px;}
.ws121{word-spacing:0.645581px;}
.ws146{word-spacing:0.699379px;}
.ws50{word-spacing:0.717307px;}
.ws10e{word-spacing:0.777083px;}
.ws31{word-spacing:0.836858px;}
.ws5c{word-spacing:0.896634px;}
.ws137{word-spacing:0.914573px;}
.ws32{word-spacing:0.956410px;}
.ws124{word-spacing:0.968371px;}
.ws64{word-spacing:1.016185px;}
.ws26{word-spacing:1.075961px;}
.ws1c{word-spacing:1.075968px;}
.ws46{word-spacing:1.195512px;}
.ws49{word-spacing:1.255288px;}
.ws40{word-spacing:1.374839px;}
.ws15{word-spacing:1.398758px;}
.ws2e{word-spacing:1.434614px;}
.ws75{word-spacing:1.494390px;}
.ws136{word-spacing:1.506355px;}
.ws43{word-spacing:1.554166px;}
.ws145{word-spacing:1.560154px;}
.ws12f{word-spacing:1.613952px;}
.wsa6{word-spacing:1.673717px;}
.ws13f{word-spacing:1.775347px;}
.ws6e{word-spacing:1.793268px;}
.ws5e{word-spacing:1.853044px;}
.ws47{word-spacing:1.912819px;}
.ws9{word-spacing:2.008454px;}
.ws3a{word-spacing:2.032370px;}
.ws144{word-spacing:2.044339px;}
.ws4c{word-spacing:2.092146px;}
.wsf9{word-spacing:2.132460px;}
.wsf8{word-spacing:2.168100px;}
.wsfa{word-spacing:2.174040px;}
.ws125{word-spacing:2.205734px;}
.ws3d{word-spacing:2.211697px;}
.wsfb{word-spacing:2.227500px;}
.ws85{word-spacing:2.260512px;}
.ws86{word-spacing:2.266524px;}
.wse6{word-spacing:2.326320px;}
.ws3b{word-spacing:2.331248px;}
.wse5{word-spacing:2.365200px;}
.ws13c{word-spacing:2.367130px;}
.wse7{word-spacing:2.371680px;}
.ws39{word-spacing:2.391024px;}
.ws126{word-spacing:2.420928px;}
.wse8{word-spacing:2.430000px;}
.ws53{word-spacing:2.450800px;}
.ws5{word-spacing:2.510568px;}
.ws56{word-spacing:2.510575px;}
.ws6d{word-spacing:2.570351px;}
.ws5f{word-spacing:2.689902px;}
.ws122{word-spacing:2.743718px;}
.ws123{word-spacing:2.797517px;}
.ws61{word-spacing:2.809453px;}
.ws54{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws2a{word-spacing:2.929004px;}
.ws12e{word-spacing:2.958912px;}
.ws65{word-spacing:2.988780px;}
.ws12b{word-spacing:3.012710px;}
.ws71{word-spacing:3.108331px;}
.ws13e{word-spacing:3.120307px;}
.ws141{word-spacing:3.220512px;}
.ws11e{word-spacing:3.224822px;}
.ws140{word-spacing:3.225014px;}
.ws12c{word-spacing:3.227904px;}
.ws138{word-spacing:3.228278px;}
.ws132{word-spacing:3.229094px;}
.ws143{word-spacing:3.281702px;}
.ws112{word-spacing:3.287658px;}
.wscc{word-spacing:3.318624px;}
.ws107{word-spacing:3.347434px;}
.ws1a{word-spacing:3.389299px;}
.wscb{word-spacing:3.456900px;}
.ws74{word-spacing:3.466985px;}
.ws13b{word-spacing:3.496896px;}
.ws3c{word-spacing:3.526760px;}
.ws1e{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.wsec{word-spacing:3.604194px;}
.ws116{word-spacing:3.646312px;}
.wsc8{word-spacing:3.691368px;}
.ws5b{word-spacing:3.706087px;}
.wsc9{word-spacing:3.805596px;}
.ws19{word-spacing:3.873485px;}
.wsd9{word-spacing:3.931848px;}
.ws4e{word-spacing:3.945190px;}
.ws6b{word-spacing:4.004965px;}
.ws10b{word-spacing:4.064741px;}
.wsca{word-spacing:4.178340px;}
.ws106{word-spacing:4.363619px;}
.ws66{word-spacing:4.423394px;}
.ws35{word-spacing:4.483170px;}
.ws48{word-spacing:4.542946px;}
.ws44{word-spacing:4.662497px;}
.ws13{word-spacing:4.680461px;}
.ws147{word-spacing:4.734259px;}
.ws52{word-spacing:4.841824px;}
.ws51{word-spacing:4.901599px;}
.wsa4{word-spacing:5.200477px;}
.ws10f{word-spacing:5.260253px;}
.ws98{word-spacing:5.379840px;}
.ws109{word-spacing:5.439580px;}
.ws7e{word-spacing:5.476932px;}
.ws117{word-spacing:5.499355px;}
.ws1b{word-spacing:5.541235px;}
.ws7f{word-spacing:5.615208px;}
.ws5d{word-spacing:5.618906px;}
.ws97{word-spacing:5.756429px;}
.ws60{word-spacing:5.917784px;}
.ws34{word-spacing:5.977560px;}
.ws3f{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.ws10c{word-spacing:6.216662px;}
.ws11b{word-spacing:6.294413px;}
.ws5a{word-spacing:6.515540px;}
.ws58{word-spacing:6.575316px;}
.wsc6{word-spacing:6.577128px;}
.ws59{word-spacing:6.635092px;}
.ws11a{word-spacing:6.671002px;}
.ws119{word-spacing:6.694867px;}
.ws41{word-spacing:6.933970px;}
.ws10a{word-spacing:6.993745px;}
.ws118{word-spacing:7.053521px;}
.wscd{word-spacing:7.298568px;}
.ws3e{word-spacing:7.412174px;}
.ws108{word-spacing:7.471950px;}
.ws42{word-spacing:7.890379px;}
.ws100{word-spacing:7.963375px;}
.wsaa{word-spacing:8.062200px;}
.wsa8{word-spacing:8.078400px;}
.wsa9{word-spacing:8.110800px;}
.wse{word-spacing:8.661460px;}
.wsce{word-spacing:9.480924px;}
.ws7{word-spacing:10.293329px;}
.ws80{word-spacing:12.011976px;}
.ws81{word-spacing:12.036024px;}
.ws101{word-spacing:13.022533px;}
.ws84{word-spacing:13.370688px;}
.wsee{word-spacing:13.960465px;}
.ws89{word-spacing:14.861664px;}
.ws8a{word-spacing:14.867676px;}
.wsdb{word-spacing:15.229598px;}
.ws4{word-spacing:15.483541px;}
.ws88{word-spacing:15.937812px;}
.ws87{word-spacing:15.967872px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws83{word-spacing:17.068068px;}
.ws82{word-spacing:17.098128px;}
.wsd{word-spacing:17.699504px;}
.wsc3{word-spacing:24.907716px;}
.ws8d{word-spacing:24.913728px;}
.wsf{word-spacing:27.448877px;}
.wsab{word-spacing:151.195788px;}
.ws6c{word-spacing:647.967504px;}
.ws69{word-spacing:662.971180px;}
.ws9a{word-spacing:939.628195px;}
.ws9b{word-spacing:999.504192px;}
._19{margin-left:-22.311379px;}
._60{margin-left:-20.911087px;}
._5f{margin-left:-19.346032px;}
._5c{margin-left:-7.908365px;}
._4{margin-left:-6.653273px;}
._5e{margin-left:-5.648603px;}
._6{margin-left:-4.644551px;}
._1{margin-left:-3.489596px;}
._5{margin-left:-2.412897px;}
._0{margin-left:-1.241054px;}
._2{width:1.431164px;}
._3{width:2.996220px;}
._1d{width:4.423394px;}
._7{width:10.460700px;}
._10{width:11.955150px;}
._9{width:12.971268px;}
._a{width:14.402355px;}
._5a{width:15.832516px;}
._c{width:16.890535px;}
._14{width:18.105791px;}
._e{width:19.253959px;}
._d{width:21.194407px;}
._13{width:23.021246px;}
._15{width:24.328669px;}
._8{width:25.861250px;}
._f{width:27.765828px;}
._1a{width:29.216035px;}
._59{width:31.174397px;}
._b{width:32.637384px;}
._18{width:33.731620px;}
._1b{width:36.881545px;}
._5b{width:38.973691px;}
._16{width:39.989876px;}
._17{width:42.725321px;}
._3a{width:58.358484px;}
._5d{width:61.868160px;}
._1e{width:95.610798px;}
._25{width:201.584625px;}
._2d{width:230.804885px;}
._52{width:234.058337px;}
._3d{width:259.865270px;}
._3f{width:303.506378px;}
._54{width:315.301922px;}
._11{width:387.720992px;}
._47{width:408.163274px;}
._36{width:417.786373px;}
._4a{width:428.397084px;}
._50{width:438.860546px;}
._21{width:442.389939px;}
._4e{width:446.269913px;}
._4c{width:455.026814px;}
._23{width:471.805428px;}
._38{width:477.802933px;}
._43{width:519.844691px;}
._2b{width:543.621658px;}
._2e{width:559.717150px;}
._34{width:564.417529px;}
._32{width:570.442892px;}
._30{width:577.667712px;}
._45{width:581.510700px;}
._3b{width:593.618868px;}
._48{width:602.059716px;}
._40{width:614.306160px;}
._27{width:620.737938px;}
._51{width:661.001364px;}
._29{width:665.997862px;}
._1f{width:672.455639px;}
._3c{width:688.229712px;}
._41{width:708.285744px;}
._39{width:712.048948px;}
._53{width:726.592284px;}
._3e{width:746.576172px;}
._49{width:765.219384px;}
._24{width:779.949792px;}
._2c{width:810.034765px;}
._46{width:851.377356px;}
._4f{width:866.142828px;}
._4d{width:873.838188px;}
._4b{width:881.990460px;}
._42{width:962.298756px;}
._35{width:984.853984px;}
._20{width:1009.457550px;}
._44{width:1024.607124px;}
._37{width:1036.111414px;}
._22{width:1050.086909px;}
._2a{width:1122.809695px;}
._33{width:1133.186710px;}
._31{width:1139.212073px;}
._2f{width:1144.735322px;}
._26{width:1199.925976px;}
._28{width:1243.568016px;}
._1c{width:1556.288075px;}
._58{width:1578.254258px;}
._57{width:1684.383385px;}
._56{width:1837.769359px;}
._55{width:1967.050304px;}
._12{width:1990.960304px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.865600px;}
.fs6{font-size:38.962980px;}
.fsd{font-size:41.842800px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:44.529120px;}
.fsa{font-size:45.429600px;}
.fsb{font-size:47.236800px;}
.fs12{font-size:47.337600px;}
.fsf{font-size:47.820600px;}
.fs13{font-size:47.880000px;}
.fs1c{font-size:49.316400px;}
.fs19{font-size:52.668000px;}
.fs10{font-size:53.798400px;}
.fs15{font-size:54.000000px;}
.fs1e{font-size:55.620000px;}
.fs5{font-size:55.661400px;}
.fs16{font-size:57.456000px;}
.fs1b{font-size:59.400000px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs14{font-size:60.120000px;}
.fs1d{font-size:61.923600px;}
.fs11{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs18{font-size:64.800000px;}
.fs1a{font-size:66.132000px;}
.fs0{font-size:72.000000px;}
.fs17{font-size:72.144000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.y163{bottom:-736.718550px;}
.y162{bottom:-714.302538px;}
.y214{bottom:-677.634120px;}
.y213{bottom:-656.682660px;}
.y212{bottom:-629.788943px;}
.y161{bottom:-322.172844px;}
.y1e5{bottom:-307.171728px;}
.y160{bottom:-302.913402px;}
.y1e4{bottom:-287.912286px;}
.y15f{bottom:-283.653960px;}
.y1e3{bottom:-268.652844px;}
.y15e{bottom:-264.484698px;}
.y1e2{bottom:-249.483582px;}
.y15d{bottom:-245.225256px;}
.y1e1{bottom:-230.224140px;}
.y15c{bottom:-226.054491px;}
.y1e0{bottom:-211.054878px;}
.y15b{bottom:-206.795049px;}
.y1df{bottom:-191.795436px;}
.y15a{bottom:-187.535607px;}
.y1de{bottom:-172.535994px;}
.y159{bottom:-168.364842px;}
.y1dd{bottom:-153.366732px;}
.y158{bottom:-149.105400px;}
.y1dc{bottom:-134.107290px;}
.y157{bottom:-129.936138px;}
.y211{bottom:-120.461321px;}
.y1db{bottom:-114.847848px;}
.y156{bottom:-110.676696px;}
.y210{bottom:-97.349990px;}
.y1da{bottom:-95.678586px;}
.y155{bottom:-91.417254px;}
.y20f{bottom:-74.238660px;}
.y154{bottom:-72.247992px;}
.y1d9{bottom:-71.919162px;}
.y153{bottom:-52.988550px;}
.y1d8{bottom:-52.749900px;}
.y226{bottom:-40.201260px;}
.y231{bottom:-39.740336px;}
.y20e{bottom:-29.958660px;}
.y230{bottom:-21.848772px;}
.y225{bottom:-20.995755px;}
.y152{bottom:-16.088550px;}
.y1d7{bottom:-15.850050px;}
.y17a{bottom:-15.604050px;}
.y20d{bottom:-3.064036px;}
.y0{bottom:0.000000px;}
.y22f{bottom:1.233027px;}
.y2e{bottom:3.425340px;}
.y224{bottom:3.656819px;}
.y151{bottom:6.321450px;}
.y1d6{bottom:6.559950px;}
.y179{bottom:6.811962px;}
.y26{bottom:12.664592px;}
.y2d{bottom:14.151273px;}
.y25{bottom:26.023328px;}
.y6d{bottom:31.890000px;}
.y6{bottom:66.525004px;}
.y188{bottom:88.993500px;}
.yf3{bottom:95.935500px;}
.y5{bottom:97.125005px;}
.y267{bottom:100.867500px;}
.y45{bottom:102.823500px;}
.y2e8{bottom:103.557000px;}
.y28a{bottom:106.246500px;}
.yd9{bottom:106.695000px;}
.y121{bottom:107.143500px;}
.y2b3{bottom:107.188500px;}
.y187{bottom:107.823000px;}
.ya3{bottom:108.919500px;}
.yf2{bottom:114.765000px;}
.y266{bottom:119.697000px;}
.y44{bottom:120.711000px;}
.y2e7{bottom:120.817500px;}
.y2b2{bottom:124.449000px;}
.y289{bottom:125.076000px;}
.y6c{bottom:125.398500px;}
.yd8{bottom:125.524500px;}
.y120{bottom:125.973000px;}
.y186{bottom:126.652500px;}
.ya2{bottom:127.749000px;}
.yf1{bottom:133.594500px;}
.y2e6{bottom:138.078000px;}
.y265{bottom:138.526500px;}
.y43{bottom:138.600000px;}
.y23{bottom:139.264499px;}
.y2b1{bottom:141.709500px;}
.y288{bottom:143.905500px;}
.y6b{bottom:144.228000px;}
.yd7{bottom:144.354000px;}
.y11f{bottom:144.802500px;}
.y185{bottom:145.482000px;}
.ya1{bottom:146.578500px;}
.y2e5{bottom:155.338500px;}
.y42{bottom:156.487500px;}
.yf0{bottom:156.907500px;}
.y264{bottom:157.356000px;}
.y2b0{bottom:158.970000px;}
.y287{bottom:162.735000px;}
.y6a{bottom:163.057500px;}
.yd6{bottom:163.183500px;}
.y232{bottom:163.573500px;}
.y11e{bottom:163.632000px;}
.y184{bottom:164.311500px;}
.ya0{bottom:165.406500px;}
.y14d{bottom:168.163500px;}
.y2e4{bottom:172.599000px;}
.y41{bottom:174.375000px;}
.yef{bottom:175.737000px;}
.y263{bottom:176.185500px;}
.y2af{bottom:176.230500px;}
.y286{bottom:181.564500px;}
.y69{bottom:181.887000px;}
.yd5{bottom:182.013000px;}
.y11d{bottom:182.461500px;}
.y9f{bottom:184.236000px;}
.y229{bottom:186.002846px;}
.y14c{bottom:186.993000px;}
.y183{bottom:187.624500px;}
.y2e3{bottom:189.858000px;}
.y40{bottom:192.264000px;}
.y2ae{bottom:193.491000px;}
.yee{bottom:194.566500px;}
.y262{bottom:195.015000px;}
.y1a{bottom:196.933500px;}
.y285{bottom:200.394000px;}
.y68{bottom:200.716500px;}
.yd4{bottom:200.842500px;}
.y11c{bottom:201.291000px;}
.y9e{bottom:203.065500px;}
.y14b{bottom:205.822500px;}
.y182{bottom:206.454000px;}
.y2e2{bottom:207.118500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y3f{bottom:210.151500px;}
.y2ad{bottom:210.751500px;}
.yed{bottom:213.396000px;}
.y261{bottom:213.844500px;}
.y1b5{bottom:216.777000px;}
.y284{bottom:219.223500px;}
.y67{bottom:219.546000px;}
.yd3{bottom:219.672000px;}
.y11b{bottom:220.120500px;}
.y9d{bottom:221.895000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y2e1{bottom:224.379000px;}
.y14a{bottom:224.650500px;}
.y181{bottom:225.283500px;}
.y2ac{bottom:228.012000px;}
.y3e{bottom:228.039000px;}
.yec{bottom:232.225500px;}
.y260{bottom:232.672500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1b4{bottom:235.606500px;}
.y228{bottom:236.793000px;}
.y283{bottom:238.053000px;}
.y66{bottom:238.375500px;}
.yd2{bottom:238.501500px;}
.y11a{bottom:238.950000px;}
.y9c{bottom:240.724500px;}
.y2e0{bottom:241.639500px;}
.y149{bottom:243.480000px;}
.y180{bottom:244.113000px;}
.y2ab{bottom:245.271000px;}
.yeb{bottom:251.055000px;}
.y25f{bottom:251.502000px;}
.y1b3{bottom:254.436000px;}
.y203{bottom:255.373500px;}
.y227{bottom:256.026000px;}
.y282{bottom:256.882500px;}
.y65{bottom:257.205000px;}
.yd1{bottom:257.331000px;}
.y119{bottom:257.779500px;}
.y2df{bottom:258.900000px;}
.y9b{bottom:259.554000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y148{bottom:262.309500px;}
.y17f{bottom:262.942500px;}
.y2aa{bottom:267.015000px;}
.y25e{bottom:270.331500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1b2{bottom:273.265500px;}
.y202{bottom:274.203000px;}
.yea{bottom:274.366500px;}
.y281{bottom:275.712000px;}
.y64{bottom:276.034500px;}
.yd0{bottom:276.160500px;}
.y118{bottom:276.609000px;}
.y9a{bottom:278.383500px;}
.y216{bottom:278.455500px;}
.y147{bottom:281.139000px;}
.y17e{bottom:281.772000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y25d{bottom:289.161000px;}
.y1d5{bottom:290.330274px;}
.y201{bottom:293.032500px;}
.ye9{bottom:293.196000px;}
.y2de{bottom:293.421000px;}
.y280{bottom:294.541500px;}
.y63{bottom:294.864000px;}
.ycf{bottom:294.990000px;}
.y117{bottom:295.438500px;}
.y99{bottom:297.213000px;}
.y146{bottom:299.968500px;}
.y17d{bottom:300.601500px;}
.y2a9{bottom:300.639000px;}
.y3d{bottom:307.299000px;}
.y25c{bottom:307.990500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1d4{bottom:310.580193px;}
.y2dd{bottom:310.681500px;}
.y200{bottom:311.862000px;}
.ye8{bottom:312.025500px;}
.y27f{bottom:313.371000px;}
.yce{bottom:313.819500px;}
.y116{bottom:314.268000px;}
.y98{bottom:316.042500px;}
.y1b1{bottom:317.382000px;}
.y62{bottom:318.177000px;}
.y145{bottom:318.798000px;}
.y17c{bottom:319.429500px;}
.y1d0{bottom:320.750544px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y3c{bottom:325.186500px;}
.y25b{bottom:326.820000px;}
.y2a8{bottom:327.180000px;}
.y2dc{bottom:327.940500px;}
.y1b0{bottom:329.337000px;}
.y1ff{bottom:330.691500px;}
.y1d3{bottom:330.830112px;}
.ye7{bottom:330.855000px;}
.y27e{bottom:332.200500px;}
.ycd{bottom:332.649000px;}
.y115{bottom:333.097500px;}
.y97{bottom:334.872000px;}
.y144{bottom:337.627500px;}
.y150{bottom:340.221810px;}
.y1cf{bottom:341.000463px;}
.y1af{bottom:341.292000px;}
.y1ab{bottom:341.374500px;}
.y3b{bottom:343.074000px;}
.y2a7{bottom:344.754000px;}
.y2db{bottom:345.201000px;}
.y25a{bottom:345.649500px;}
.y1ac{bottom:346.372500px;}
.y11{bottom:348.133500px;}
.y1fe{bottom:349.521000px;}
.ye6{bottom:349.684500px;}
.y14f{bottom:349.941450px;}
.y27d{bottom:351.030000px;}
.y1d2{bottom:351.080031px;}
.ycc{bottom:351.478500px;}
.y114{bottom:351.927000px;}
.y17b{bottom:352.753500px;}
.y1ae{bottom:353.247000px;}
.y1aa{bottom:353.329500px;}
.y96{bottom:353.701500px;}
.y143{bottom:356.457000px;}
.y3a{bottom:360.963000px;}
.y1ce{bottom:361.160202px;}
.y2a6{bottom:362.328000px;}
.y2da{bottom:362.461500px;}
.y259{bottom:364.479000px;}
.y1ad{bottom:365.203500px;}
.y1fd{bottom:368.350500px;}
.ye5{bottom:368.514000px;}
.y27c{bottom:369.859500px;}
.ycb{bottom:370.308000px;}
.y113{bottom:370.756500px;}
.y1d1{bottom:371.329950px;}
.y95{bottom:372.531000px;}
.y165{bottom:375.183000px;}
.y142{bottom:375.286500px;}
.y20c{bottom:375.367316px;}
.y1a9{bottom:377.158500px;}
.y2d9{bottom:379.722000px;}
.y2a5{bottom:379.902000px;}
.y258{bottom:383.308500px;}
.y10{bottom:386.785499px;}
.ye4{bottom:387.343500px;}
.y27b{bottom:388.689000px;}
.yca{bottom:389.137500px;}
.y112{bottom:389.586000px;}
.y94{bottom:391.360500px;}
.y1cd{bottom:391.580922px;}
.y1fc{bottom:391.662000px;}
.y61{bottom:393.327000px;}
.y141{bottom:394.116000px;}
.y1a8{bottom:396.315000px;}
.y2d8{bottom:396.982500px;}
.y2a4{bottom:397.476000px;}
.y20b{bottom:398.478647px;}
.y178{bottom:398.941656px;}
.y39{bottom:399.024000px;}
.y257{bottom:402.138000px;}
.ye3{bottom:406.173000px;}
.y27a{bottom:407.518500px;}
.yc9{bottom:407.967000px;}
.yf{bottom:408.044999px;}
.y1a7{bottom:408.270000px;}
.y111{bottom:408.415500px;}
.y93{bottom:410.190000px;}
.y1fb{bottom:410.491500px;}
.y1cc{bottom:412.550778px;}
.y60{bottom:412.783500px;}
.y140{bottom:412.945500px;}
.y2d7{bottom:414.243000px;}
.y2a3{bottom:415.050000px;}
.y38{bottom:416.913000px;}
.y177{bottom:418.201098px;}
.y1a6{bottom:420.226500px;}
.y256{bottom:420.967500px;}
.y20a{bottom:421.481761px;}
.y1cb{bottom:422.631399px;}
.ye2{bottom:425.002500px;}
.y1a0{bottom:426.285000px;}
.y279{bottom:426.348000px;}
.yc8{bottom:426.796500px;}
.y110{bottom:427.245000px;}
.y92{bottom:429.019500px;}
.y1fa{bottom:429.321000px;}
.y2d6{bottom:431.503500px;}
.y13f{bottom:431.775000px;}
.y1a5{bottom:432.181500px;}
.y2a2{bottom:432.624000px;}
.y37{bottom:434.800500px;}
.y1a1{bottom:437.262000px;}
.y176{bottom:437.460540px;}
.y19f{bottom:438.240000px;}
.y255{bottom:439.797000px;}
.ye1{bottom:443.832000px;}
.y1a4{bottom:444.136500px;}
.y209{bottom:444.593092px;}
.y278{bottom:445.177500px;}
.yc7{bottom:445.626000px;}
.y10f{bottom:446.073000px;}
.y91{bottom:447.849000px;}
.y1f9{bottom:448.150500px;}
.y2d5{bottom:448.764000px;}
.y5f{bottom:450.174000px;}
.y19e{bottom:450.195000px;}
.y13e{bottom:450.604500px;}
.y1ca{bottom:453.050616px;}
.y1a3{bottom:456.091500px;}
.y175{bottom:456.629802px;}
.y254{bottom:458.626500px;}
.y2a1{bottom:459.165000px;}
.ye0{bottom:462.661500px;}
.y1c3{bottom:463.490643px;}
.y277{bottom:464.007000px;}
.yc6{bottom:464.454000px;}
.y2d4{bottom:466.024500px;}
.y90{bottom:466.678500px;}
.y1f8{bottom:466.980000px;}
.y208{bottom:467.704422px;}
.y1a2{bottom:468.046500px;}
.y10e{bottom:469.386000px;}
.y5e{bottom:469.630500px;}
.y223{bottom:470.540473px;}
.y36{bottom:470.622000px;}
.y1c9{bottom:473.210355px;}
.y13d{bottom:473.917500px;}
.y174{bottom:475.889244px;}
.y253{bottom:477.456000px;}
.y19d{bottom:480.001500px;}
.ydf{bottom:481.491000px;}
.y276{bottom:482.836500px;}
.yc5{bottom:483.283500px;}
.y1c2{bottom:483.740562px;}
.ye{bottom:484.864502px;}
.y8f{bottom:485.508000px;}
.y2a0{bottom:485.706000px;}
.y1f7{bottom:485.809500px;}
.y35{bottom:488.509500px;}
.y5d{bottom:489.088500px;}
.y207{bottom:490.709340px;}
.y222{bottom:491.725859px;}
.y10d{bottom:492.699000px;}
.y1c8{bottom:493.460274px;}
.y173{bottom:495.060009px;}
.y252{bottom:496.285500px;}
.y19c{bottom:499.159500px;}
.yde{bottom:500.320500px;}
.y2d3{bottom:500.544000px;}
.y275{bottom:501.666000px;}
.yc4{bottom:502.113000px;}
.yd{bottom:502.864502px;}
.y1c1{bottom:503.990481px;}
.y8e{bottom:504.337500px;}
.y1f6{bottom:504.639000px;}
.y34{bottom:506.397000px;}
.y13c{bottom:507.541500px;}
.y5c{bottom:508.545000px;}
.y19b{bottom:511.405500px;}
.y10c{bottom:511.528500px;}
.y29f{bottom:512.245500px;}
.y221{bottom:512.911245px;}
.y1c7{bottom:513.710193px;}
.y172{bottom:514.319451px;}
.y251{bottom:515.115000px;}
.y2d2{bottom:517.804500px;}
.ydd{bottom:519.150000px;}
.y274{bottom:520.495500px;}
.yc{bottom:520.864502px;}
.yc3{bottom:520.942500px;}
.y8d{bottom:523.167000px;}
.y1f5{bottom:523.468500px;}
.y1c6{bottom:523.879491px;}
.y1c0{bottom:524.240400px;}
.y33{bottom:524.286000px;}
.y13b{bottom:526.371000px;}
.y5b{bottom:528.001500px;}
.y10b{bottom:530.358000px;}
.y171{bottom:533.578893px;}
.y250{bottom:533.944500px;}
.y2d1{bottom:535.065000px;}
.ydc{bottom:537.979500px;}
.y29e{bottom:538.786500px;}
.yb{bottom:538.864499px;}
.y273{bottom:539.323500px;}
.yc2{bottom:539.772000px;}
.y8c{bottom:541.996500px;}
.y32{bottom:542.173500px;}
.y1f4{bottom:542.298000px;}
.y1bf{bottom:544.490319px;}
.y13a{bottom:545.200500px;}
.y19a{bottom:546.798000px;}
.y5a{bottom:547.459500px;}
.y10a{bottom:549.187500px;}
.y2d0{bottom:552.325500px;}
.y170{bottom:552.749658px;}
.y24f{bottom:552.774000px;}
.y220{bottom:553.501245px;}
.y1c5{bottom:554.210031px;}
.y206{bottom:556.265772px;}
.ya{bottom:556.864499px;}
.y272{bottom:558.153000px;}
.yc1{bottom:558.601500px;}
.y31{bottom:560.061000px;}
.y8b{bottom:560.826000px;}
.y1f3{bottom:561.127500px;}
.ydb{bottom:561.292500px;}
.y139{bottom:564.030000px;}
.y29d{bottom:565.327500px;}
.y199{bottom:566.031000px;}
.y59{bottom:566.916000px;}
.y205{bottom:567.929340px;}
.y109{bottom:568.017000px;}
.y2cf{bottom:569.586000px;}
.y24e{bottom:571.603500px;}
.y16f{bottom:572.009100px;}
.y1c4{bottom:574.459950px;}
.y271{bottom:576.982500px;}
.yc0{bottom:577.431000px;}
.y30{bottom:577.950000px;}
.y21f{bottom:578.154651px;}
.y8a{bottom:579.655500px;}
.y1f2{bottom:579.957000px;}
.yda{bottom:581.466000px;}
.y138{bottom:582.859500px;}
.y29c{bottom:582.901500px;}
.y58{bottom:586.372500px;}
.y2ce{bottom:586.846500px;}
.y24d{bottom:590.433000px;}
.y16e{bottom:591.178362px;}
.y108{bottom:591.330000px;}
.y1be{bottom:595.429995px;}
.y270{bottom:595.812000px;}
.y2f{bottom:595.837500px;}
.ybf{bottom:596.260500px;}
.y89{bottom:598.485000px;}
.y1f1{bottom:598.786500px;}
.y29b{bottom:600.475500px;}
.y198{bottom:601.641000px;}
.y137{bottom:601.689000px;}
.y2cd{bottom:604.107000px;}
.y57{bottom:605.830500px;}
.y24c{bottom:609.262500px;}
.y107{bottom:610.159500px;}
.y16d{bottom:610.437804px;}
.y26f{bottom:614.641500px;}
.ybe{bottom:615.090000px;}
.y1bd{bottom:616.490031px;}
.y88{bottom:617.314500px;}
.y1f0{bottom:617.616000px;}
.y29a{bottom:618.049500px;}
.y2c{bottom:618.208464px;}
.y197{bottom:620.470500px;}
.y136{bottom:620.518500px;}
.y2cc{bottom:621.366000px;}
.y56{bottom:625.287000px;}
.y24b{bottom:628.092000px;}
.y106{bottom:628.989000px;}
.y16c{bottom:629.697246px;}
.y26e{bottom:633.471000px;}
.ybd{bottom:633.919500px;}
.y299{bottom:635.623500px;}
.y87{bottom:636.144000px;}
.y1ef{bottom:636.445500px;}
.y1bb{bottom:636.739950px;}
.y2cb{bottom:638.626500px;}
.y196{bottom:639.300000px;}
.y135{bottom:639.348000px;}
.y55{bottom:644.745000px;}
.y9{bottom:645.510000px;}
.y24a{bottom:646.921500px;}
.y105{bottom:647.817000px;}
.y16b{bottom:648.866508px;}
.y26d{bottom:652.300500px;}
.ybc{bottom:652.749000px;}
.y1ee{bottom:655.275000px;}
.y2ca{bottom:655.887000px;}
.y1bc{bottom:656.989869px;}
.y195{bottom:658.129500px;}
.y134{bottom:658.176000px;}
.y86{bottom:659.455500px;}
.y54{bottom:664.201500px;}
.y249{bottom:665.751000px;}
.y8{bottom:666.771000px;}
.y16a{bottom:668.125950px;}
.y104{bottom:671.130000px;}
.ybb{bottom:671.578500px;}
.y2c9{bottom:673.147500px;}
.y1ed{bottom:674.104500px;}
.y194{bottom:676.959000px;}
.y133{bottom:677.005500px;}
.y53{bottom:683.658000px;}
.y248{bottom:684.580500px;}
.y1ba{bottom:687.049500px;}
.y26c{bottom:689.959500px;}
.yba{bottom:690.408000px;}
.y1ec{bottom:692.934000px;}
.y85{bottom:693.079500px;}
.y193{bottom:695.788500px;}
.y132{bottom:695.835000px;}
.y52{bottom:703.116000px;}
.y247{bottom:703.410000px;}
.y1b9{bottom:704.419950px;}
.y103{bottom:704.754000px;}
.y169{bottom:705.025950px;}
.y2c8{bottom:707.668500px;}
.y26b{bottom:708.789000px;}
.yb9{bottom:709.237500px;}
.y1eb{bottom:711.763500px;}
.y84{bottom:711.909000px;}
.y192{bottom:714.618000px;}
.y130{bottom:718.533000px;}
.y131{bottom:719.185500px;}
.y246{bottom:722.239500px;}
.y51{bottom:722.572500px;}
.y102{bottom:723.583500px;}
.y2c7{bottom:724.929000px;}
.y7{bottom:726.298500px;}
.y168{bottom:727.435950px;}
.y26a{bottom:727.618500px;}
.yb8{bottom:728.067000px;}
.y12f{bottom:729.577500px;}
.y1ea{bottom:730.593000px;}
.y83{bottom:730.738500px;}
.y191{bottom:733.447500px;}
.y12e{bottom:735.861000px;}
.y245{bottom:741.067500px;}
.y50{bottom:742.029000px;}
.y2c6{bottom:742.189500px;}
.y101{bottom:742.413000px;}
.y269{bottom:746.448000px;}
.yb7{bottom:746.896500px;}
.y1e9{bottom:749.422500px;}
.y82{bottom:749.568000px;}
.y215{bottom:750.897000px;}
.y28b{bottom:750.931500px;}
.y190{bottom:752.277000px;}
.y4{bottom:752.599495px;}
.y1b8{bottom:757.430310px;}
.y2c5{bottom:759.450000px;}
.y244{bottom:759.897000px;}
.y12d{bottom:761.130000px;}
.y100{bottom:761.242500px;}
.y4f{bottom:761.487000px;}
.y298{bottom:765.277500px;}
.yb6{bottom:765.726000px;}
.y1b7{bottom:767.149950px;}
.y81{bottom:768.397500px;}
.y268{bottom:769.761000px;}
.y18f{bottom:771.105000px;}
.y1e8{bottom:772.734000px;}
.y204{bottom:773.326500px;}
.y2c4{bottom:776.709000px;}
.y243{bottom:778.726500px;}
.y12c{bottom:779.959500px;}
.yff{bottom:780.072000px;}
.y4e{bottom:780.943500px;}
.y297{bottom:784.107000px;}
.yb5{bottom:784.555500px;}
.y80{bottom:787.227000px;}
.y18e{bottom:789.934500px;}
.y164{bottom:790.905000px;}
.y1e7{bottom:791.563500px;}
.y2c3{bottom:793.969500px;}
.y242{bottom:797.556000px;}
.y12b{bottom:798.789000px;}
.yfe{bottom:798.901500px;}
.y296{bottom:802.936500px;}
.yb4{bottom:803.385000px;}
.y7f{bottom:806.056500px;}
.y18d{bottom:808.764000px;}
.y2c2{bottom:811.230000px;}
.y14e{bottom:813.333000px;}
.y241{bottom:816.385500px;}
.y12a{bottom:817.618500px;}
.yfd{bottom:817.731000px;}
.y4d{bottom:819.529500px;}
.y295{bottom:821.766000px;}
.yb3{bottom:822.214500px;}
.y7e{bottom:824.886000px;}
.y1e6{bottom:825.129000px;}
.y2c1{bottom:828.490500px;}
.y18c{bottom:832.077000px;}
.y240{bottom:835.215000px;}
.y4c{bottom:835.669500px;}
.y129{bottom:836.448000px;}
.yfc{bottom:836.560500px;}
.y294{bottom:840.595500px;}
.yb2{bottom:841.044000px;}
.y7d{bottom:843.715500px;}
.y2c0{bottom:845.751000px;}
.y1b6{bottom:847.558500px;}
.y18b{bottom:850.906500px;}
.y23f{bottom:854.044500px;}
.y128{bottom:855.277500px;}
.yfb{bottom:855.390000px;}
.y4b{bottom:856.147500px;}
.y293{bottom:859.425000px;}
.yb1{bottom:859.873500px;}
.y7c{bottom:862.545000px;}
.y2bf{bottom:863.011500px;}
.y4a{bottom:867.948000px;}
.y18a{bottom:869.736000px;}
.y23e{bottom:872.874000px;}
.y127{bottom:874.107000px;}
.yfa{bottom:874.219500px;}
.y292{bottom:878.254500px;}
.yb0{bottom:878.703000px;}
.y3{bottom:879.369000px;}
.y2be{bottom:880.272000px;}
.y7b{bottom:881.374500px;}
.y49{bottom:888.427500px;}
.y189{bottom:888.565500px;}
.y23d{bottom:891.703500px;}
.y126{bottom:892.936500px;}
.yf9{bottom:893.049000px;}
.y291{bottom:897.084000px;}
.yaf{bottom:897.532500px;}
.y7a{bottom:900.204000px;}
.y48{bottom:900.226500px;}
.y23c{bottom:910.533000px;}
.yf8{bottom:911.878500px;}
.y124{bottom:914.725500px;}
.y2e9{bottom:914.791500px;}
.y2bd{bottom:914.793000px;}
.y125{bottom:915.378000px;}
.y290{bottom:915.913500px;}
.yae{bottom:916.362000px;}
.y79{bottom:919.033500px;}
.y47{bottom:920.706000px;}
.y21e{bottom:925.050057px;}
.y123{bottom:925.768500px;}
.y23b{bottom:929.362500px;}
.yf7{bottom:930.708000px;}
.y122{bottom:932.052000px;}
.y28f{bottom:934.743000px;}
.yad{bottom:935.191500px;}
.y46{bottom:936.846000px;}
.y78{bottom:937.863000px;}
.y2{bottom:945.126001px;}
.y21d{bottom:946.235443px;}
.y23a{bottom:948.192000px;}
.y2bc{bottom:949.312500px;}
.yf6{bottom:949.537500px;}
.y22e{bottom:951.130215px;}
.y28e{bottom:953.572500px;}
.yac{bottom:954.021000px;}
.y77{bottom:956.692500px;}
.y2bb{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.y239{bottom:967.021500px;}
.y21c{bottom:967.321631px;}
.yf5{bottom:968.367000px;}
.y22d{bottom:970.967440px;}
.y28d{bottom:972.402000px;}
.yab{bottom:972.849000px;}
.y76{bottom:975.522000px;}
.y2b{bottom:977.038500px;}
.y2ba{bottom:983.833500px;}
.y238{bottom:985.851000px;}
.yf4{bottom:987.196500px;}
.y21b{bottom:988.507017px;}
.y22c{bottom:990.713328px;}
.yaa{bottom:991.678500px;}
.y75{bottom:994.351500px;}
.y28c{bottom:995.713500px;}
.y2a{bottom:995.868000px;}
.y2b9{bottom:1001.094000px;}
.y237{bottom:1004.680500px;}
.y21a{bottom:1009.692404px;}
.ya9{bottom:1010.508000px;}
.y74{bottom:1013.181000px;}
.y2b8{bottom:1018.354500px;}
.y236{bottom:1023.510000px;}
.ya8{bottom:1029.337500px;}
.y219{bottom:1030.780245px;}
.y73{bottom:1032.010500px;}
.y2b7{bottom:1035.615000px;}
.y29{bottom:1041.199500px;}
.y235{bottom:1042.339500px;}
.y22b{bottom:1046.982599px;}
.ya7{bottom:1048.167000px;}
.y72{bottom:1050.840000px;}
.y2b6{bottom:1052.875500px;}
.y22a{bottom:1056.993828px;}
.y234{bottom:1061.169000px;}
.y167{bottom:1061.336310px;}
.ya6{bottom:1066.996500px;}
.y28{bottom:1069.443000px;}
.y71{bottom:1069.669500px;}
.y2b5{bottom:1070.134500px;}
.y166{bottom:1071.055950px;}
.y233{bottom:1084.482000px;}
.ya5{bottom:1085.826000px;}
.y2b4{bottom:1087.395000px;}
.y70{bottom:1088.499000px;}
.y218{bottom:1090.873641px;}
.y27{bottom:1097.688000px;}
.y217{bottom:1101.565245px;}
.ya4{bottom:1104.655500px;}
.y6f{bottom:1107.327000px;}
.y24{bottom:1141.174500px;}
.y6e{bottom:1173.397500px;}
.hf{height:25.508090px;}
.h14{height:26.110157px;}
.h23{height:28.811839px;}
.h2b{height:30.126816px;}
.hb{height:30.190743px;}
.h12{height:30.461558px;}
.h13{height:30.670772px;}
.h7{height:32.130000px;}
.h1d{height:33.072749px;}
.h11{height:33.112997px;}
.h10{height:34.199443px;}
.h15{height:34.813397px;}
.h26{height:34.951465px;}
.h25{height:34.974844px;}
.h1a{height:35.052500px;}
.h40{height:36.000009px;}
.h3f{height:36.024089px;}
.ha{height:37.738429px;}
.h3a{height:38.446611px;}
.h39{height:38.472328px;}
.h16{height:38.734848px;}
.h17{height:39.165235px;}
.h2d{height:39.418945px;}
.h44{height:39.434227px;}
.h28{height:39.445312px;}
.h43{height:40.601514px;}
.h42{height:40.628672px;}
.h34{height:41.941758px;}
.h33{height:41.969812px;}
.h18{height:43.038432px;}
.h1b{height:43.164614px;}
.h3d{height:43.360840px;}
.h3c{height:43.389844px;}
.h19{height:43.516637px;}
.hc{height:43.815515px;}
.h27{height:43.886426px;}
.h2e{height:43.915781px;}
.h41{height:45.203019px;}
.h6{height:45.900000px;}
.h37{height:47.302734px;}
.h36{height:47.334375px;}
.h3{height:48.195000px;}
.h3b{height:48.275068px;}
.h9{height:51.022950px;}
.h35{height:52.663711px;}
.he{height:54.411312px;}
.h20{height:54.774749px;}
.h2{height:55.080000px;}
.h2a{height:57.774816px;}
.h1f{height:61.827515px;}
.h22{height:77.250749px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.h1e{height:78.227897px;}
.h30{height:84.208910px;}
.h2f{height:84.238265px;}
.h21{height:84.279515px;}
.h1c{height:84.285515px;}
.h31{height:84.563618px;}
.h4{height:119.055004px;}
.h2c{height:272.041500px;}
.h24{height:306.267000px;}
.h32{height:346.275000px;}
.h29{height:381.801000px;}
.h38{height:447.244050px;}
.h3e{height:933.600395px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:233.211061px;}
.w9{width:459.577800px;}
.w7{width:522.247500px;}
.wb{width:559.795215px;}
.w6{width:637.317900px;}
.w2{width:637.794021px;}
.w8{width:680.986050px;}
.wa{width:717.278925px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x87{left:-240.404400px;}
.x8c{left:-202.172400px;}
.x92{left:-194.191050px;}
.x63{left:-189.715500px;}
.x5d{left:-72.873600px;}
.x72{left:-51.039450px;}
.x74{left:-37.899450px;}
.x83{left:-34.929450px;}
.x78{left:-31.146647px;}
.x73{left:-19.179450px;}
.x65{left:-16.015500px;}
.x89{left:-5.720273px;}
.x84{left:-4.329450px;}
.x80{left:-2.980952px;}
.x0{left:0.000000px;}
.x7f{left:1.789168px;}
.x79{left:4.222854px;}
.x67{left:5.854606px;}
.x94{left:7.246159px;}
.x7c{left:13.041942px;}
.x7a{left:15.022105px;}
.x7b{left:17.002268px;}
.x7{left:29.274117px;}
.x88{left:32.511600px;}
.x66{left:37.714500px;}
.x93{left:40.061850px;}
.x5{left:54.000000px;}
.x6{left:56.951817px;}
.x6a{left:72.463500px;}
.x6b{left:75.876000px;}
.x68{left:85.446000px;}
.x8d{left:87.816825px;}
.x5f{left:100.826400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6c{left:115.770000px;}
.x6e{left:119.040000px;}
.x61{left:122.696506px;}
.x5c{left:127.799100px;}
.x69{left:142.447500px;}
.x86{left:144.530656px;}
.x6f{left:146.007000px;}
.x60{left:154.556400px;}
.x91{left:166.560000px;}
.x85{left:176.390550px;}
.x8e{left:177.801525px;}
.x81{left:194.118904px;}
.x4{left:203.484001px;}
.x62{left:228.207000px;}
.x7d{left:235.341553px;}
.xa{left:249.832500px;}
.x8{left:250.897500px;}
.x7e{left:267.918294px;}
.x9{left:270.622500px;}
.xd{left:282.786000px;}
.x4a{left:285.490500px;}
.x9c{left:291.129000px;}
.x2b{left:295.506000px;}
.x9d{left:306.073500px;}
.x2c{left:310.449000px;}
.xb{left:311.976000px;}
.x15{left:318.567000px;}
.xc{left:321.199500px;}
.x16{left:326.038500px;}
.x2d{left:332.887500px;}
.x2e{left:335.689500px;}
.x2f{left:339.496500px;}
.xab{left:348.159000px;}
.x27{left:352.860000px;}
.x30{left:354.441000px;}
.x31{left:358.248000px;}
.x70{left:362.812500px;}
.x28{left:367.803000px;}
.x5a{left:368.865000px;}
.x32{left:373.192500px;}
.x29{left:375.126000px;}
.x5b{left:380.665500px;}
.x2a{left:390.070500px;}
.x6d{left:391.417500px;}
.xac{left:397.032000px;}
.x9e{left:409.111500px;}
.x37{left:421.054500px;}
.x9f{left:424.056000px;}
.xa0{left:427.788000px;}
.x56{left:434.463000px;}
.x38{left:435.999000px;}
.x4e{left:437.692500px;}
.x39{left:443.455500px;}
.x10{left:447.340500px;}
.xa7{left:453.397500px;}
.x3{left:454.959000px;}
.x3a{left:458.400000px;}
.x8a{left:464.185976px;}
.xa8{left:468.342000px;}
.xa9{left:472.152000px;}
.x50{left:477.039000px;}
.x4f{left:479.878500px;}
.x40{left:485.875500px;}
.xaa{left:487.096500px;}
.x99{left:493.150500px;}
.x53{left:495.214500px;}
.x41{left:500.818500px;}
.x42{left:508.342500px;}
.x64{left:514.894500px;}
.x19{left:520.047000px;}
.x43{left:523.287000px;}
.x4d{left:526.134000px;}
.x1a{left:527.520000px;}
.x1b{left:531.330000px;}
.x13{left:536.148000px;}
.x1c{left:538.801500px;}
.x33{left:541.612500px;}
.x14{left:543.619500px;}
.x34{left:556.557000px;}
.x35{left:560.289000px;}
.x77{left:562.670944px;}
.x76{left:566.180550px;}
.x96{left:568.309500px;}
.x3b{left:572.370000px;}
.x8f{left:573.503036px;}
.x36{left:575.233500px;}
.x57{left:577.884000px;}
.x3c{left:579.991500px;}
.x3d{left:594.936000px;}
.xe{left:603.093000px;}
.x75{left:608.299316px;}
.xf{left:610.564500px;}
.x51{left:611.932500px;}
.x58{left:615.684000px;}
.x8b{left:618.303243px;}
.x4b{left:624.018000px;}
.x5e{left:631.736400px;}
.xa3{left:635.103000px;}
.x4c{left:638.962500px;}
.x9a{left:646.740000px;}
.x52{left:648.270000px;}
.x48{left:650.662500px;}
.x59{left:652.023000px;}
.x9b{left:654.712500px;}
.x49{left:665.607000px;}
.x82{left:667.606273px;}
.xa4{left:668.802000px;}
.x11{left:670.849500px;}
.xa5{left:672.612000px;}
.x17{left:676.963500px;}
.x12{left:678.321000px;}
.x18{left:684.435000px;}
.x95{left:685.594500px;}
.xa6{left:687.556500px;}
.x44{left:703.321500px;}
.x90{left:714.777198px;}
.x45{left:718.266000px;}
.xa1{left:722.233500px;}
.x46{left:725.790000px;}
.x54{left:729.450000px;}
.xa2{left:737.178000px;}
.x47{left:740.733000px;}
.x55{left:749.331000px;}
.x97{left:758.100000px;}
.x23{left:763.009500px;}
.x1d{left:764.146500px;}
.x98{left:766.072500px;}
.x24{left:770.481000px;}
.x1e{left:771.618000px;}
.x25{left:774.292500px;}
.x1f{left:775.369500px;}
.x71{left:780.708000px;}
.x3e{left:782.934000px;}
.x26{left:789.237000px;}
.x20{left:790.312500px;}
.x21{left:817.794000px;}
.x22{left:832.737000px;}
.x3f{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v9{vertical-align:-10.453333pt;}
.v6{vertical-align:-4.090667pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:4.549333pt;}
.vb{vertical-align:14.240000pt;}
.v8{vertical-align:16.010667pt;}
.v4{vertical-align:18.330667pt;}
.v1{vertical-align:19.290667pt;}
.va{vertical-align:21.941333pt;}
.vd{vertical-align:24.762667pt;}
.v5{vertical-align:33.685333pt;}
.v3{vertical-align:35.973333pt;}
.v7{vertical-align:39.936000pt;}
.ls54{letter-spacing:-0.208416pt;}
.ls4f{letter-spacing:-0.176352pt;}
.ls50{letter-spacing:-0.149632pt;}
.ls75{letter-spacing:-0.109018pt;}
.ls39{letter-spacing:-0.106880pt;}
.ls7c{letter-spacing:-0.099933pt;}
.ls5a{letter-spacing:-0.096192pt;}
.ls73{letter-spacing:-0.091930pt;}
.ls79{letter-spacing:-0.084269pt;}
.ls56{letter-spacing:-0.080160pt;}
.ls87{letter-spacing:-0.078906pt;}
.ls38{letter-spacing:-0.076608pt;}
.ls3c{letter-spacing:-0.069472pt;}
.ls88{letter-spacing:-0.066052pt;}
.ls51{letter-spacing:-0.064128pt;}
.ls7f{letter-spacing:-0.058784pt;}
.ls53{letter-spacing:-0.053440pt;}
.ls77{letter-spacing:-0.051302pt;}
.ls3b{letter-spacing:-0.048096pt;}
.ls7e{letter-spacing:-0.047027pt;}
.ls3d{letter-spacing:-0.042752pt;}
.ls78{letter-spacing:-0.040320pt;}
.ls52{letter-spacing:-0.037408pt;}
.ls80{letter-spacing:-0.036960pt;}
.ls55{letter-spacing:-0.032064pt;}
.ls7a{letter-spacing:-0.029392pt;}
.ls3a{letter-spacing:-0.026720pt;}
.ls58{letter-spacing:-0.024000pt;}
.ls40{letter-spacing:-0.021376pt;}
.ls76{letter-spacing:-0.019238pt;}
.ls7d{letter-spacing:-0.017635pt;}
.ls41{letter-spacing:-0.016032pt;}
.ls3f{letter-spacing:-0.010688pt;}
.ls3e{letter-spacing:-0.005344pt;}
.ls4e{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000518pt;}
.ls5{letter-spacing:0.000533pt;}
.ls8c{letter-spacing:0.000980pt;}
.ls20{letter-spacing:0.003012pt;}
.ls1c{letter-spacing:0.004237pt;}
.ls2e{letter-spacing:0.004256pt;}
.ls8d{letter-spacing:0.004267pt;}
.ls1e{letter-spacing:0.004541pt;}
.ls86{letter-spacing:0.004944pt;}
.ls33{letter-spacing:0.005344pt;}
.ls71{letter-spacing:0.010560pt;}
.ls36{letter-spacing:0.010688pt;}
.ls65{letter-spacing:0.011520pt;}
.ls6b{letter-spacing:0.011757pt;}
.ls60{letter-spacing:0.012826pt;}
.ls6e{letter-spacing:0.015840pt;}
.ls32{letter-spacing:0.016032pt;}
.ls62{letter-spacing:0.017280pt;}
.ls6a{letter-spacing:0.017635pt;}
.ls5f{letter-spacing:0.019238pt;}
.ls35{letter-spacing:0.026720pt;}
.ls30{letter-spacing:0.028800pt;}
.ls6c{letter-spacing:0.029392pt;}
.ls85{letter-spacing:0.029664pt;}
.ls6d{letter-spacing:0.031680pt;}
.ls4a{letter-spacing:0.032064pt;}
.ls61{letter-spacing:0.034560pt;}
.ls34{letter-spacing:0.037408pt;}
.ls6f{letter-spacing:0.041149pt;}
.ls72{letter-spacing:0.042240pt;}
.ls31{letter-spacing:0.042752pt;}
.ls44{letter-spacing:0.043200pt;}
.ls84{letter-spacing:0.044035pt;}
.ls63{letter-spacing:0.044890pt;}
.ls66{letter-spacing:0.046080pt;}
.ls70{letter-spacing:0.047520pt;}
.ls45{letter-spacing:0.048096pt;}
.ls64{letter-spacing:0.051840pt;}
.ls57{letter-spacing:0.053440pt;}
.ls83{letter-spacing:0.055043pt;}
.ls48{letter-spacing:0.058784pt;}
.ls5d{letter-spacing:0.064128pt;}
.ls4c{letter-spacing:0.069472pt;}
.ls47{letter-spacing:0.085504pt;}
.ls59{letter-spacing:0.106880pt;}
.ls49{letter-spacing:0.117568pt;}
.ls46{letter-spacing:0.128256pt;}
.ls2f{letter-spacing:0.161728pt;}
.ls82{letter-spacing:0.166580pt;}
.ls2d{letter-spacing:0.170240pt;}
.ls37{letter-spacing:0.171008pt;}
.ls81{letter-spacing:0.175347pt;}
.ls68{letter-spacing:0.177901pt;}
.ls67{letter-spacing:0.187264pt;}
.ls7b{letter-spacing:0.188109pt;}
.ls5c{letter-spacing:0.194074pt;}
.ls5b{letter-spacing:0.204288pt;}
.ls74{letter-spacing:0.205210pt;}
.ls19{letter-spacing:0.487835pt;}
.ls26{letter-spacing:0.659733pt;}
.ls10{letter-spacing:0.665570pt;}
.lsd{letter-spacing:0.667185pt;}
.ls28{letter-spacing:1.009015pt;}
.ls9{letter-spacing:1.133683pt;}
.ls2a{letter-spacing:1.166324pt;}
.ls17{letter-spacing:1.171658pt;}
.lsf{letter-spacing:1.262881pt;}
.ls18{letter-spacing:1.291174pt;}
.ls13{letter-spacing:1.326903pt;}
.ls3{letter-spacing:1.654338pt;}
.ls21{letter-spacing:1.834682pt;}
.ls1b{letter-spacing:1.910963pt;}
.ls1f{letter-spacing:2.656508pt;}
.ls1{letter-spacing:2.657067pt;}
.lse{letter-spacing:3.318400pt;}
.ls4{letter-spacing:9.218933pt;}
.ls2c{letter-spacing:10.467372pt;}
.ls8{letter-spacing:10.626533pt;}
.ls25{letter-spacing:10.973762pt;}
.ls14{letter-spacing:11.598881pt;}
.ls15{letter-spacing:11.629762pt;}
.ls12{letter-spacing:11.635096pt;}
.ls24{letter-spacing:11.657570pt;}
.ls8a{letter-spacing:11.783672pt;}
.ls8b{letter-spacing:11.954133pt;}
.ls89{letter-spacing:11.959467pt;}
.ls8e{letter-spacing:12.145378pt;}
.ls43{letter-spacing:12.167655pt;}
.ls1a{letter-spacing:12.865067pt;}
.ls4d{letter-spacing:13.549136pt;}
.ls11{letter-spacing:13.649067pt;}
.ls2b{letter-spacing:13.950652pt;}
.ls29{letter-spacing:15.894400pt;}
.ls2{letter-spacing:15.942400pt;}
.ls22{letter-spacing:18.075733pt;}
.lsb{letter-spacing:18.529630pt;}
.ls16{letter-spacing:23.467185pt;}
.ls27{letter-spacing:45.933762pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls4b{letter-spacing:58.452672pt;}
.ls69{letter-spacing:64.297939pt;}
.ls5e{letter-spacing:70.143206pt;}
.lsa{letter-spacing:83.815733pt;}
.ls42{letter-spacing:260.744267pt;}
.lsc{letter-spacing:315.848429pt;}
.ls23{letter-spacing:318.936429pt;}
.ws9d{word-spacing:-53.440000pt;}
.wsd0{word-spacing:-16.237210pt;}
.wsd2{word-spacing:-16.064064pt;}
.wsd1{word-spacing:-16.051238pt;}
.wsd4{word-spacing:-14.884109pt;}
.wsd6{word-spacing:-14.725392pt;}
.wsd5{word-spacing:-14.713635pt;}
.ws9e{word-spacing:-13.531008pt;}
.wsa2{word-spacing:-13.466880pt;}
.wsa0{word-spacing:-13.429472pt;}
.wsa3{word-spacing:-13.365344pt;}
.wsa1{word-spacing:-13.360000pt;}
.ws9f{word-spacing:-13.333280pt;}
.ws68{word-spacing:-13.283467pt;}
.wscf{word-spacing:-12.972288pt;}
.ws12a{word-spacing:-11.955200pt;}
.wsd3{word-spacing:-11.891264pt;}
.wsfd{word-spacing:-11.134547pt;}
.ws76{word-spacing:-10.810240pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws95{word-spacing:-3.400567pt;}
.ws67{word-spacing:-3.053333pt;}
.wse3{word-spacing:-3.014016pt;}
.wse4{word-spacing:-2.969126pt;}
.ws6f{word-spacing:-2.816095pt;}
.wsf6{word-spacing:-2.762848pt;}
.wsf7{word-spacing:-2.721699pt;}
.wsa5{word-spacing:-2.709827pt;}
.ws11c{word-spacing:-2.677965pt;}
.wse2{word-spacing:-2.565120pt;}
.wse0{word-spacing:-2.533056pt;}
.ws62{word-spacing:-2.391024pt;}
.wsf5{word-spacing:-2.351360pt;}
.wsf3{word-spacing:-2.321968pt;}
.ws72{word-spacing:-2.231622pt;}
.wsc7{word-spacing:-2.185696pt;}
.ws4a{word-spacing:-2.178489pt;}
.ws91{word-spacing:-2.164320pt;}
.ws11f{word-spacing:-2.151936pt;}
.ws90{word-spacing:-2.137600pt;}
.wse1{word-spacing:-2.135462pt;}
.ws4d{word-spacing:-2.125355pt;}
.ws36{word-spacing:-2.072221pt;}
.ws96{word-spacing:-2.019087pt;}
.ws120{word-spacing:-1.960653pt;}
.wsf4{word-spacing:-1.957507pt;}
.ws7d{word-spacing:-1.875744pt;}
.ws3{word-spacing:-1.696326pt;}
.ws37{word-spacing:-1.647150pt;}
.ws113{word-spacing:-1.594016pt;}
.ws8b{word-spacing:-1.555104pt;}
.wsc5{word-spacing:-1.544416pt;}
.ws57{word-spacing:-1.540882pt;}
.ws10d{word-spacing:-1.434614pt;}
.ws29{word-spacing:-1.328347pt;}
.ws115{word-spacing:-1.275213pt;}
.ws92{word-spacing:-1.259005pt;}
.ws93{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.115811pt;}
.ws111{word-spacing:-1.009543pt;}
.ws139{word-spacing:-1.004237pt;}
.ws63{word-spacing:-0.956410pt;}
.ws55{word-spacing:-0.903276pt;}
.ws78{word-spacing:-0.850142pt;}
.ws77{word-spacing:-0.800686pt;}
.ws45{word-spacing:-0.797008pt;}
.ws4f{word-spacing:-0.743874pt;}
.ws20{word-spacing:-0.621670pt;}
.ws110{word-spacing:-0.425071pt;}
.ws70{word-spacing:-0.371937pt;}
.ws128{word-spacing:-0.334746pt;}
.wsb0{word-spacing:-0.320640pt;}
.ws73{word-spacing:-0.318803pt;}
.ws129{word-spacing:-0.286925pt;}
.wsd8{word-spacing:-0.286003pt;}
.wsbf{word-spacing:-0.283232pt;}
.ws24{word-spacing:-0.265669pt;}
.wseb{word-spacing:-0.262170pt;}
.wsda{word-spacing:-0.250099pt;}
.wsff{word-spacing:-0.245486pt;}
.ws13a{word-spacing:-0.239104pt;}
.ws7b{word-spacing:-0.238336pt;}
.wsb4{word-spacing:-0.235136pt;}
.wsed{word-spacing:-0.229258pt;}
.wsb9{word-spacing:-0.219104pt;}
.ws25{word-spacing:-0.212535pt;}
.ws127{word-spacing:-0.191283pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws33{word-spacing:-0.106268pt;}
.ws131{word-spacing:-0.095642pt;}
.wsd7{word-spacing:-0.091930pt;}
.wsea{word-spacing:-0.084269pt;}
.ws135{word-spacing:-0.082068pt;}
.ws7a{word-spacing:-0.080864pt;}
.wsfe{word-spacing:-0.078906pt;}
.ws79{word-spacing:-0.076608pt;}
.ws94{word-spacing:-0.056012pt;}
.ws23{word-spacing:-0.053134pt;}
.ws17{word-spacing:-0.047821pt;}
.wsad{word-spacing:-0.042752pt;}
.ws99{word-spacing:-0.037194pt;}
.wsbc{word-spacing:-0.032064pt;}
.ws133{word-spacing:-0.005589pt;}
.ws142{word-spacing:-0.003857pt;}
.ws130{word-spacing:-0.003200pt;}
.ws134{word-spacing:-0.003081pt;}
.ws13d{word-spacing:-0.001954pt;}
.ws0{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.001266pt;}
.wsb5{word-spacing:0.016032pt;}
.wsb1{word-spacing:0.026720pt;}
.wsbd{word-spacing:0.032064pt;}
.ws102{word-spacing:0.044035pt;}
.ws21{word-spacing:0.047821pt;}
.wsc4{word-spacing:0.048096pt;}
.ws27{word-spacing:0.053134pt;}
.wsac{word-spacing:0.074816pt;}
.wsc0{word-spacing:0.080160pt;}
.wsb7{word-spacing:0.085504pt;}
.wsb3{word-spacing:0.090848pt;}
.ws1d{word-spacing:0.095642pt;}
.wsb6{word-spacing:0.096192pt;}
.wsbe{word-spacing:0.101536pt;}
.ws2c{word-spacing:0.106268pt;}
.ws8c{word-spacing:0.106880pt;}
.wsf0{word-spacing:0.111690pt;}
.wsba{word-spacing:0.117568pt;}
.wsdd{word-spacing:0.121843pt;}
.wsaf{word-spacing:0.122912pt;}
.ws7c{word-spacing:0.134400pt;}
.wsfc{word-spacing:0.137280pt;}
.ws103{word-spacing:0.138432pt;}
.wsb2{word-spacing:0.138944pt;}
.ws16{word-spacing:0.143462pt;}
.wsf1{word-spacing:0.147840pt;}
.wsae{word-spacing:0.149632pt;}
.wse9{word-spacing:0.149760pt;}
.wsc1{word-spacing:0.154976pt;}
.ws2f{word-spacing:0.159402pt;}
.wsde{word-spacing:0.161280pt;}
.ws105{word-spacing:0.163152pt;}
.wsf2{word-spacing:0.163680pt;}
.wsbb{word-spacing:0.165664pt;}
.ws104{word-spacing:0.168096pt;}
.wsdf{word-spacing:0.178560pt;}
.ws8{word-spacing:0.185968pt;}
.wsc2{word-spacing:0.187200pt;}
.ws14{word-spacing:0.191283pt;}
.ws4b{word-spacing:0.212535pt;}
.ws12d{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws30{word-spacing:0.265669pt;}
.ws1f{word-spacing:0.286925pt;}
.wsb8{word-spacing:0.293920pt;}
.ws38{word-spacing:0.318803pt;}
.ws11d{word-spacing:0.334746pt;}
.ws28{word-spacing:0.371937pt;}
.ws8f{word-spacing:0.406144pt;}
.ws8e{word-spacing:0.416832pt;}
.wsa7{word-spacing:0.425071pt;}
.wsef{word-spacing:0.446758pt;}
.ws114{word-spacing:0.478205pt;}
.wsdc{word-spacing:0.487373pt;}
.ws121{word-spacing:0.573850pt;}
.ws146{word-spacing:0.621670pt;}
.ws50{word-spacing:0.637606pt;}
.ws10e{word-spacing:0.690740pt;}
.ws31{word-spacing:0.743874pt;}
.ws5c{word-spacing:0.797008pt;}
.ws137{word-spacing:0.812954pt;}
.ws32{word-spacing:0.850142pt;}
.ws124{word-spacing:0.860774pt;}
.ws64{word-spacing:0.903276pt;}
.ws26{word-spacing:0.956410pt;}
.ws1c{word-spacing:0.956416pt;}
.ws46{word-spacing:1.062677pt;}
.ws49{word-spacing:1.115811pt;}
.ws40{word-spacing:1.222079pt;}
.ws15{word-spacing:1.243341pt;}
.ws2e{word-spacing:1.275213pt;}
.ws75{word-spacing:1.328347pt;}
.ws136{word-spacing:1.338982pt;}
.ws43{word-spacing:1.381481pt;}
.ws145{word-spacing:1.386803pt;}
.ws12f{word-spacing:1.434624pt;}
.wsa6{word-spacing:1.487748pt;}
.ws13f{word-spacing:1.578086pt;}
.ws6e{word-spacing:1.594016pt;}
.ws5e{word-spacing:1.647150pt;}
.ws47{word-spacing:1.700284pt;}
.ws9{word-spacing:1.785293pt;}
.ws3a{word-spacing:1.806551pt;}
.ws144{word-spacing:1.817190pt;}
.ws4c{word-spacing:1.859685pt;}
.wsf9{word-spacing:1.895520pt;}
.wsf8{word-spacing:1.927200pt;}
.wsfa{word-spacing:1.932480pt;}
.ws125{word-spacing:1.960653pt;}
.ws3d{word-spacing:1.965953pt;}
.wsfb{word-spacing:1.980000pt;}
.ws85{word-spacing:2.009344pt;}
.ws86{word-spacing:2.014688pt;}
.wse6{word-spacing:2.067840pt;}
.ws3b{word-spacing:2.072221pt;}
.wse5{word-spacing:2.102400pt;}
.ws13c{word-spacing:2.104115pt;}
.wse7{word-spacing:2.108160pt;}
.ws39{word-spacing:2.125355pt;}
.ws126{word-spacing:2.151936pt;}
.wse8{word-spacing:2.160000pt;}
.ws53{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231616pt;}
.ws56{word-spacing:2.231622pt;}
.ws6d{word-spacing:2.284756pt;}
.ws5f{word-spacing:2.391024pt;}
.ws122{word-spacing:2.438861pt;}
.ws123{word-spacing:2.486682pt;}
.ws61{word-spacing:2.497292pt;}
.ws54{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws2a{word-spacing:2.603559pt;}
.ws12e{word-spacing:2.630144pt;}
.ws65{word-spacing:2.656693pt;}
.ws12b{word-spacing:2.677965pt;}
.ws71{word-spacing:2.762961pt;}
.ws13e{word-spacing:2.773606pt;}
.ws141{word-spacing:2.862677pt;}
.ws11e{word-spacing:2.866509pt;}
.ws140{word-spacing:2.866679pt;}
.ws12c{word-spacing:2.869248pt;}
.ws138{word-spacing:2.869581pt;}
.ws132{word-spacing:2.870306pt;}
.ws143{word-spacing:2.917069pt;}
.ws112{word-spacing:2.922363pt;}
.wscc{word-spacing:2.949888pt;}
.ws107{word-spacing:2.975497pt;}
.ws1a{word-spacing:3.012710pt;}
.wscb{word-spacing:3.072800pt;}
.ws74{word-spacing:3.081764pt;}
.ws13b{word-spacing:3.108352pt;}
.ws3c{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.wsec{word-spacing:3.203728pt;}
.ws116{word-spacing:3.241166pt;}
.wsc8{word-spacing:3.281216pt;}
.ws5b{word-spacing:3.294300pt;}
.wsc9{word-spacing:3.382752pt;}
.ws19{word-spacing:3.443098pt;}
.wsd9{word-spacing:3.494976pt;}
.ws4e{word-spacing:3.506835pt;}
.ws6b{word-spacing:3.559969pt;}
.ws10b{word-spacing:3.613103pt;}
.wsca{word-spacing:3.714080pt;}
.ws106{word-spacing:3.878772pt;}
.ws66{word-spacing:3.931906pt;}
.ws35{word-spacing:3.985040pt;}
.ws48{word-spacing:4.038174pt;}
.ws44{word-spacing:4.144442pt;}
.ws13{word-spacing:4.160410pt;}
.ws147{word-spacing:4.208230pt;}
.ws52{word-spacing:4.303843pt;}
.ws51{word-spacing:4.356977pt;}
.wsa4{word-spacing:4.622646pt;}
.ws10f{word-spacing:4.675780pt;}
.ws98{word-spacing:4.782080pt;}
.ws109{word-spacing:4.835182pt;}
.ws7e{word-spacing:4.868384pt;}
.ws117{word-spacing:4.888316pt;}
.ws1b{word-spacing:4.925542pt;}
.ws7f{word-spacing:4.991296pt;}
.ws5d{word-spacing:4.994583pt;}
.ws97{word-spacing:5.116826pt;}
.ws60{word-spacing:5.260253pt;}
.ws34{word-spacing:5.313387pt;}
.ws3f{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.ws10c{word-spacing:5.525922pt;}
.ws11b{word-spacing:5.595034pt;}
.ws5a{word-spacing:5.791591pt;}
.ws58{word-spacing:5.844725pt;}
.wsc6{word-spacing:5.846336pt;}
.ws59{word-spacing:5.897859pt;}
.ws11a{word-spacing:5.929779pt;}
.ws119{word-spacing:5.950993pt;}
.ws41{word-spacing:6.163529pt;}
.ws10a{word-spacing:6.216662pt;}
.ws118{word-spacing:6.269796pt;}
.wscd{word-spacing:6.487616pt;}
.ws3e{word-spacing:6.588599pt;}
.ws108{word-spacing:6.641733pt;}
.ws42{word-spacing:7.013670pt;}
.ws100{word-spacing:7.078556pt;}
.wsaa{word-spacing:7.166400pt;}
.wsa8{word-spacing:7.180800pt;}
.wsa9{word-spacing:7.209600pt;}
.wse{word-spacing:7.699075pt;}
.wsce{word-spacing:8.427488pt;}
.ws7{word-spacing:9.149626pt;}
.ws80{word-spacing:10.677312pt;}
.ws81{word-spacing:10.698688pt;}
.ws101{word-spacing:11.575585pt;}
.ws84{word-spacing:11.885056pt;}
.wsee{word-spacing:12.409302pt;}
.ws89{word-spacing:13.210368pt;}
.ws8a{word-spacing:13.215712pt;}
.wsdb{word-spacing:13.537421pt;}
.ws4{word-spacing:13.763148pt;}
.ws88{word-spacing:14.166944pt;}
.ws87{word-spacing:14.193664pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws83{word-spacing:15.171616pt;}
.ws82{word-spacing:15.198336pt;}
.wsd{word-spacing:15.732893pt;}
.wsc3{word-spacing:22.140192pt;}
.ws8d{word-spacing:22.145536pt;}
.wsf{word-spacing:24.399002pt;}
.wsab{word-spacing:134.396256pt;}
.ws6c{word-spacing:575.971115pt;}
.ws69{word-spacing:589.307715pt;}
.ws9a{word-spacing:835.225062pt;}
.ws9b{word-spacing:888.448171pt;}
._19{margin-left:-19.832337pt;}
._60{margin-left:-18.587633pt;}
._5f{margin-left:-17.196473pt;}
._5c{margin-left:-7.029658pt;}
._4{margin-left:-5.914020pt;}
._5e{margin-left:-5.020981pt;}
._6{margin-left:-4.128490pt;}
._1{margin-left:-3.101863pt;}
._5{margin-left:-2.144797pt;}
._0{margin-left:-1.103159pt;}
._2{width:1.272146pt;}
._3{width:2.663307pt;}
._1d{width:3.931906pt;}
._7{width:9.298400pt;}
._10{width:10.626800pt;}
._9{width:11.530016pt;}
._a{width:12.802093pt;}
._5a{width:14.073348pt;}
._c{width:15.013809pt;}
._14{width:16.094037pt;}
._e{width:17.114630pt;}
._d{width:18.839473pt;}
._13{width:20.463330pt;}
._15{width:21.625484pt;}
._8{width:22.987778pt;}
._f{width:24.680736pt;}
._1a{width:25.969809pt;}
._59{width:27.710575pt;}
._b{width:29.011008pt;}
._18{width:29.983662pt;}
._1b{width:32.783596pt;}
._5b{width:34.643281pt;}
._16{width:35.546557pt;}
._17{width:37.978063pt;}
._3a{width:51.874208pt;}
._5d{width:54.993920pt;}
._1e{width:84.987376pt;}
._25{width:179.186333pt;}
._2d{width:205.159898pt;}
._52{width:208.051855pt;}
._3d{width:230.991351pt;}
._3f{width:269.783447pt;}
._54{width:280.268375pt;}
._11{width:344.640882pt;}
._47{width:362.811799pt;}
._36{width:371.365665pt;}
._4a{width:380.797408pt;}
._50{width:390.098263pt;}
._21{width:393.235501pt;}
._4e{width:396.684367pt;}
._4c{width:404.468279pt;}
._23{width:419.382602pt;}
._38{width:424.713718pt;}
._43{width:462.084170pt;}
._2b{width:483.219251pt;}
._2e{width:497.526356pt;}
._34{width:501.704470pt;}
._32{width:507.060349pt;}
._30{width:513.482410pt;}
._45{width:516.898400pt;}
._3b{width:527.661216pt;}
._48{width:535.164192pt;}
._40{width:546.049920pt;}
._27{width:551.767056pt;}
._51{width:587.556768pt;}
._29{width:591.998100pt;}
._1f{width:597.738346pt;}
._3c{width:611.759744pt;}
._41{width:629.587328pt;}
._39{width:632.932398pt;}
._53{width:645.859808pt;}
._3e{width:663.623264pt;}
._49{width:680.195008pt;}
._24{width:693.288704pt;}
._2c{width:720.030902pt;}
._46{width:756.779872pt;}
._4f{width:769.904736pt;}
._4d{width:776.745056pt;}
._4b{width:783.991520pt;}
._42{width:855.376672pt;}
._35{width:875.425763pt;}
._20{width:897.295600pt;}
._44{width:910.761888pt;}
._37{width:920.987923pt;}
._22{width:933.410586pt;}
._2a{width:998.053062pt;}
._33{width:1007.277075pt;}
._31{width:1012.632954pt;}
._2f{width:1017.542509pt;}
._26{width:1066.600867pt;}
._28{width:1105.393792pt;}
._1c{width:1383.367178pt;}
._58{width:1402.892674pt;}
._57{width:1497.229676pt;}
._56{width:1633.572764pt;}
._55{width:1748.489159pt;}
._12{width:1769.742493pt;}
.fse{font-size:31.880533pt;}
.fs6{font-size:34.633760pt;}
.fsd{font-size:37.193600pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:39.581440pt;}
.fsa{font-size:40.381867pt;}
.fsb{font-size:41.988267pt;}
.fs12{font-size:42.077867pt;}
.fsf{font-size:42.507200pt;}
.fs13{font-size:42.560000pt;}
.fs1c{font-size:43.836800pt;}
.fs19{font-size:46.816000pt;}
.fs10{font-size:47.820800pt;}
.fs15{font-size:48.000000pt;}
.fs1e{font-size:49.440000pt;}
.fs5{font-size:49.476800pt;}
.fs16{font-size:51.072000pt;}
.fs1b{font-size:52.800000pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs14{font-size:53.440000pt;}
.fs1d{font-size:55.043200pt;}
.fs11{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs18{font-size:57.600000pt;}
.fs1a{font-size:58.784000pt;}
.fs0{font-size:64.000000pt;}
.fs17{font-size:64.128000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.y163{bottom:-654.860933pt;}
.y162{bottom:-634.935589pt;}
.y214{bottom:-602.341440pt;}
.y213{bottom:-583.717920pt;}
.y212{bottom:-559.812394pt;}
.y161{bottom:-286.375861pt;}
.y1e5{bottom:-273.041536pt;}
.y160{bottom:-269.256357pt;}
.y1e4{bottom:-255.922032pt;}
.y15f{bottom:-252.136853pt;}
.y1e3{bottom:-238.802528pt;}
.y15e{bottom:-235.097509pt;}
.y1e2{bottom:-221.763184pt;}
.y15d{bottom:-217.978005pt;}
.y1e1{bottom:-204.643680pt;}
.y15c{bottom:-200.937325pt;}
.y1e0{bottom:-187.604336pt;}
.y15b{bottom:-183.817821pt;}
.y1df{bottom:-170.484832pt;}
.y15a{bottom:-166.698317pt;}
.y1de{bottom:-153.365328pt;}
.y159{bottom:-149.657637pt;}
.y1dd{bottom:-136.325984pt;}
.y158{bottom:-132.538133pt;}
.y1dc{bottom:-119.206480pt;}
.y157{bottom:-115.498789pt;}
.y211{bottom:-107.076730pt;}
.y1db{bottom:-102.086976pt;}
.y156{bottom:-98.379285pt;}
.y210{bottom:-86.533325pt;}
.y1da{bottom:-85.047632pt;}
.y155{bottom:-81.259781pt;}
.y20f{bottom:-65.989920pt;}
.y154{bottom:-64.220437pt;}
.y1d9{bottom:-63.928144pt;}
.y153{bottom:-47.100933pt;}
.y1d8{bottom:-46.888800pt;}
.y226{bottom:-35.734453pt;}
.y231{bottom:-35.324743pt;}
.y20e{bottom:-26.629920pt;}
.y230{bottom:-19.421131pt;}
.y225{bottom:-18.662893pt;}
.y152{bottom:-14.300933pt;}
.y1d7{bottom:-14.088933pt;}
.y17a{bottom:-13.870267pt;}
.y20d{bottom:-2.723587pt;}
.y0{bottom:0.000000pt;}
.y22f{bottom:1.096024pt;}
.y2e{bottom:3.044747pt;}
.y224{bottom:3.250506pt;}
.y151{bottom:5.619067pt;}
.y1d6{bottom:5.831067pt;}
.y179{bottom:6.055077pt;}
.y26{bottom:11.257415pt;}
.y2d{bottom:12.578910pt;}
.y25{bottom:23.131847pt;}
.y6d{bottom:28.346667pt;}
.y6{bottom:59.133337pt;}
.y188{bottom:79.105333pt;}
.yf3{bottom:85.276000pt;}
.y5{bottom:86.333337pt;}
.y267{bottom:89.660000pt;}
.y45{bottom:91.398667pt;}
.y2e8{bottom:92.050667pt;}
.y28a{bottom:94.441333pt;}
.yd9{bottom:94.840000pt;}
.y121{bottom:95.238667pt;}
.y2b3{bottom:95.278667pt;}
.y187{bottom:95.842667pt;}
.ya3{bottom:96.817333pt;}
.yf2{bottom:102.013333pt;}
.y266{bottom:106.397333pt;}
.y44{bottom:107.298667pt;}
.y2e7{bottom:107.393333pt;}
.y2b2{bottom:110.621333pt;}
.y289{bottom:111.178667pt;}
.y6c{bottom:111.465333pt;}
.yd8{bottom:111.577333pt;}
.y120{bottom:111.976000pt;}
.y186{bottom:112.580000pt;}
.ya2{bottom:113.554667pt;}
.yf1{bottom:118.750667pt;}
.y2e6{bottom:122.736000pt;}
.y265{bottom:123.134667pt;}
.y43{bottom:123.200000pt;}
.y23{bottom:123.790666pt;}
.y2b1{bottom:125.964000pt;}
.y288{bottom:127.916000pt;}
.y6b{bottom:128.202667pt;}
.yd7{bottom:128.314667pt;}
.y11f{bottom:128.713333pt;}
.y185{bottom:129.317333pt;}
.ya1{bottom:130.292000pt;}
.y2e5{bottom:138.078667pt;}
.y42{bottom:139.100000pt;}
.yf0{bottom:139.473333pt;}
.y264{bottom:139.872000pt;}
.y2b0{bottom:141.306667pt;}
.y287{bottom:144.653333pt;}
.y6a{bottom:144.940000pt;}
.yd6{bottom:145.052000pt;}
.y232{bottom:145.398667pt;}
.y11e{bottom:145.450667pt;}
.y184{bottom:146.054667pt;}
.ya0{bottom:147.028000pt;}
.y14d{bottom:149.478667pt;}
.y2e4{bottom:153.421333pt;}
.y41{bottom:155.000000pt;}
.yef{bottom:156.210667pt;}
.y263{bottom:156.609333pt;}
.y2af{bottom:156.649333pt;}
.y286{bottom:161.390667pt;}
.y69{bottom:161.677333pt;}
.yd5{bottom:161.789333pt;}
.y11d{bottom:162.188000pt;}
.y9f{bottom:163.765333pt;}
.y229{bottom:165.335863pt;}
.y14c{bottom:166.216000pt;}
.y183{bottom:166.777333pt;}
.y2e3{bottom:168.762667pt;}
.y40{bottom:170.901333pt;}
.y2ae{bottom:171.992000pt;}
.yee{bottom:172.948000pt;}
.y262{bottom:173.346667pt;}
.y1a{bottom:175.052000pt;}
.y285{bottom:178.128000pt;}
.y68{bottom:178.414667pt;}
.yd4{bottom:178.526667pt;}
.y11c{bottom:178.925333pt;}
.y9e{bottom:180.502667pt;}
.y14b{bottom:182.953333pt;}
.y182{bottom:183.514667pt;}
.y2e2{bottom:184.105333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y3f{bottom:186.801333pt;}
.y2ad{bottom:187.334667pt;}
.yed{bottom:189.685333pt;}
.y261{bottom:190.084000pt;}
.y1b5{bottom:192.690667pt;}
.y284{bottom:194.865333pt;}
.y67{bottom:195.152000pt;}
.yd3{bottom:195.264000pt;}
.y11b{bottom:195.662667pt;}
.y9d{bottom:197.240000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y2e1{bottom:199.448000pt;}
.y14a{bottom:199.689333pt;}
.y181{bottom:200.252000pt;}
.y2ac{bottom:202.677333pt;}
.y3e{bottom:202.701333pt;}
.yec{bottom:206.422667pt;}
.y260{bottom:206.820000pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1b4{bottom:209.428000pt;}
.y228{bottom:210.482667pt;}
.y283{bottom:211.602667pt;}
.y66{bottom:211.889333pt;}
.yd2{bottom:212.001333pt;}
.y11a{bottom:212.400000pt;}
.y9c{bottom:213.977333pt;}
.y2e0{bottom:214.790667pt;}
.y149{bottom:216.426667pt;}
.y180{bottom:216.989333pt;}
.y2ab{bottom:218.018667pt;}
.yeb{bottom:223.160000pt;}
.y25f{bottom:223.557333pt;}
.y1b3{bottom:226.165333pt;}
.y203{bottom:226.998667pt;}
.y227{bottom:227.578667pt;}
.y282{bottom:228.340000pt;}
.y65{bottom:228.626667pt;}
.yd1{bottom:228.738667pt;}
.y119{bottom:229.137333pt;}
.y2df{bottom:230.133333pt;}
.y9b{bottom:230.714667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y148{bottom:233.164000pt;}
.y17f{bottom:233.726667pt;}
.y2aa{bottom:237.346667pt;}
.y25e{bottom:240.294667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1b2{bottom:242.902667pt;}
.y202{bottom:243.736000pt;}
.yea{bottom:243.881333pt;}
.y281{bottom:245.077333pt;}
.y64{bottom:245.364000pt;}
.yd0{bottom:245.476000pt;}
.y118{bottom:245.874667pt;}
.y9a{bottom:247.452000pt;}
.y216{bottom:247.516000pt;}
.y147{bottom:249.901333pt;}
.y17e{bottom:250.464000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y25d{bottom:257.032000pt;}
.y1d5{bottom:258.071355pt;}
.y201{bottom:260.473333pt;}
.ye9{bottom:260.618667pt;}
.y2de{bottom:260.818667pt;}
.y280{bottom:261.814667pt;}
.y63{bottom:262.101333pt;}
.ycf{bottom:262.213333pt;}
.y117{bottom:262.612000pt;}
.y99{bottom:264.189333pt;}
.y146{bottom:266.638667pt;}
.y17d{bottom:267.201333pt;}
.y2a9{bottom:267.234667pt;}
.y3d{bottom:273.154667pt;}
.y25c{bottom:273.769333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1d4{bottom:276.071283pt;}
.y2dd{bottom:276.161333pt;}
.y200{bottom:277.210667pt;}
.ye8{bottom:277.356000pt;}
.y27f{bottom:278.552000pt;}
.yce{bottom:278.950667pt;}
.y116{bottom:279.349333pt;}
.y98{bottom:280.926667pt;}
.y1b1{bottom:282.117333pt;}
.y62{bottom:282.824000pt;}
.y145{bottom:283.376000pt;}
.y17c{bottom:283.937333pt;}
.y1d0{bottom:285.111595pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y3c{bottom:289.054667pt;}
.y25b{bottom:290.506667pt;}
.y2a8{bottom:290.826667pt;}
.y2dc{bottom:291.502667pt;}
.y1b0{bottom:292.744000pt;}
.y1ff{bottom:293.948000pt;}
.y1d3{bottom:294.071211pt;}
.ye7{bottom:294.093333pt;}
.y27e{bottom:295.289333pt;}
.ycd{bottom:295.688000pt;}
.y115{bottom:296.086667pt;}
.y97{bottom:297.664000pt;}
.y144{bottom:300.113333pt;}
.y150{bottom:302.419387pt;}
.y1cf{bottom:303.111523pt;}
.y1af{bottom:303.370667pt;}
.y1ab{bottom:303.444000pt;}
.y3b{bottom:304.954667pt;}
.y2a7{bottom:306.448000pt;}
.y2db{bottom:306.845333pt;}
.y25a{bottom:307.244000pt;}
.y1ac{bottom:307.886667pt;}
.y11{bottom:309.452000pt;}
.y1fe{bottom:310.685333pt;}
.ye6{bottom:310.830667pt;}
.y14f{bottom:311.059067pt;}
.y27d{bottom:312.026667pt;}
.y1d2{bottom:312.071139pt;}
.ycc{bottom:312.425333pt;}
.y114{bottom:312.824000pt;}
.y17b{bottom:313.558667pt;}
.y1ae{bottom:313.997333pt;}
.y1aa{bottom:314.070667pt;}
.y96{bottom:314.401333pt;}
.y143{bottom:316.850667pt;}
.y3a{bottom:320.856000pt;}
.y1ce{bottom:321.031291pt;}
.y2a6{bottom:322.069333pt;}
.y2da{bottom:322.188000pt;}
.y259{bottom:323.981333pt;}
.y1ad{bottom:324.625333pt;}
.y1fd{bottom:327.422667pt;}
.ye5{bottom:327.568000pt;}
.y27c{bottom:328.764000pt;}
.ycb{bottom:329.162667pt;}
.y113{bottom:329.561333pt;}
.y1d1{bottom:330.071067pt;}
.y95{bottom:331.138667pt;}
.y165{bottom:333.496000pt;}
.y142{bottom:333.588000pt;}
.y20c{bottom:333.659837pt;}
.y1a9{bottom:335.252000pt;}
.y2d9{bottom:337.530667pt;}
.y2a5{bottom:337.690667pt;}
.y258{bottom:340.718667pt;}
.y10{bottom:343.809333pt;}
.ye4{bottom:344.305333pt;}
.y27b{bottom:345.501333pt;}
.yca{bottom:345.900000pt;}
.y112{bottom:346.298667pt;}
.y94{bottom:347.876000pt;}
.y1cd{bottom:348.071931pt;}
.y1fc{bottom:348.144000pt;}
.y61{bottom:349.624000pt;}
.y141{bottom:350.325333pt;}
.y1a8{bottom:352.280000pt;}
.y2d8{bottom:352.873333pt;}
.y2a4{bottom:353.312000pt;}
.y20b{bottom:354.203242pt;}
.y178{bottom:354.614805pt;}
.y39{bottom:354.688000pt;}
.y257{bottom:357.456000pt;}
.ye3{bottom:361.042667pt;}
.y27a{bottom:362.238667pt;}
.yc9{bottom:362.637333pt;}
.yf{bottom:362.706666pt;}
.y1a7{bottom:362.906667pt;}
.y111{bottom:363.036000pt;}
.y93{bottom:364.613333pt;}
.y1fb{bottom:364.881333pt;}
.y1cc{bottom:366.711803pt;}
.y60{bottom:366.918667pt;}
.y140{bottom:367.062667pt;}
.y2d7{bottom:368.216000pt;}
.y2a3{bottom:368.933333pt;}
.y38{bottom:370.589333pt;}
.y177{bottom:371.734309pt;}
.y1a6{bottom:373.534667pt;}
.y256{bottom:374.193333pt;}
.y20a{bottom:374.650454pt;}
.y1cb{bottom:375.672355pt;}
.ye2{bottom:377.780000pt;}
.y1a0{bottom:378.920000pt;}
.y279{bottom:378.976000pt;}
.yc8{bottom:379.374667pt;}
.y110{bottom:379.773333pt;}
.y92{bottom:381.350667pt;}
.y1fa{bottom:381.618667pt;}
.y2d6{bottom:383.558667pt;}
.y13f{bottom:383.800000pt;}
.y1a5{bottom:384.161333pt;}
.y2a2{bottom:384.554667pt;}
.y37{bottom:386.489333pt;}
.y1a1{bottom:388.677333pt;}
.y176{bottom:388.853813pt;}
.y19f{bottom:389.546667pt;}
.y255{bottom:390.930667pt;}
.ye1{bottom:394.517333pt;}
.y1a4{bottom:394.788000pt;}
.y209{bottom:395.193859pt;}
.y278{bottom:395.713333pt;}
.yc7{bottom:396.112000pt;}
.y10f{bottom:396.509333pt;}
.y91{bottom:398.088000pt;}
.y1f9{bottom:398.356000pt;}
.y2d5{bottom:398.901333pt;}
.y5f{bottom:400.154667pt;}
.y19e{bottom:400.173333pt;}
.y13e{bottom:400.537333pt;}
.y1ca{bottom:402.711659pt;}
.y1a3{bottom:405.414667pt;}
.y175{bottom:405.893157pt;}
.y254{bottom:407.668000pt;}
.y2a1{bottom:408.146667pt;}
.ye0{bottom:411.254667pt;}
.y1c3{bottom:411.991683pt;}
.y277{bottom:412.450667pt;}
.yc6{bottom:412.848000pt;}
.y2d4{bottom:414.244000pt;}
.y90{bottom:414.825333pt;}
.y1f8{bottom:415.093333pt;}
.y208{bottom:415.737264pt;}
.y1a2{bottom:416.041333pt;}
.y10e{bottom:417.232000pt;}
.y5e{bottom:417.449333pt;}
.y223{bottom:418.258198pt;}
.y36{bottom:418.330667pt;}
.y1c9{bottom:420.631427pt;}
.y13d{bottom:421.260000pt;}
.y174{bottom:423.012661pt;}
.y253{bottom:424.405333pt;}
.y19d{bottom:426.668000pt;}
.ydf{bottom:427.992000pt;}
.y276{bottom:429.188000pt;}
.yc5{bottom:429.585333pt;}
.y1c2{bottom:429.991611pt;}
.ye{bottom:430.990669pt;}
.y8f{bottom:431.562667pt;}
.y2a0{bottom:431.738667pt;}
.y1f7{bottom:431.830667pt;}
.y35{bottom:434.230667pt;}
.y5d{bottom:434.745333pt;}
.y207{bottom:436.186080pt;}
.y222{bottom:437.089652pt;}
.y10d{bottom:437.954667pt;}
.y1c8{bottom:438.631355pt;}
.y173{bottom:440.053341pt;}
.y252{bottom:441.142667pt;}
.y19c{bottom:443.697333pt;}
.yde{bottom:444.729333pt;}
.y2d3{bottom:444.928000pt;}
.y275{bottom:445.925333pt;}
.yc4{bottom:446.322667pt;}
.yd{bottom:446.990669pt;}
.y1c1{bottom:447.991539pt;}
.y8e{bottom:448.300000pt;}
.y1f6{bottom:448.568000pt;}
.y34{bottom:450.130667pt;}
.y13c{bottom:451.148000pt;}
.y5c{bottom:452.040000pt;}
.y19b{bottom:454.582667pt;}
.y10c{bottom:454.692000pt;}
.y29f{bottom:455.329333pt;}
.y221{bottom:455.921107pt;}
.y1c7{bottom:456.631283pt;}
.y172{bottom:457.172845pt;}
.y251{bottom:457.880000pt;}
.y2d2{bottom:460.270667pt;}
.ydd{bottom:461.466667pt;}
.y274{bottom:462.662667pt;}
.yc{bottom:462.990669pt;}
.yc3{bottom:463.060000pt;}
.y8d{bottom:465.037333pt;}
.y1f5{bottom:465.305333pt;}
.y1c6{bottom:465.670659pt;}
.y1c0{bottom:465.991467pt;}
.y33{bottom:466.032000pt;}
.y13b{bottom:467.885333pt;}
.y5b{bottom:469.334667pt;}
.y10b{bottom:471.429333pt;}
.y171{bottom:474.292349pt;}
.y250{bottom:474.617333pt;}
.y2d1{bottom:475.613333pt;}
.ydc{bottom:478.204000pt;}
.y29e{bottom:478.921333pt;}
.yb{bottom:478.990666pt;}
.y273{bottom:479.398667pt;}
.yc2{bottom:479.797333pt;}
.y8c{bottom:481.774667pt;}
.y32{bottom:481.932000pt;}
.y1f4{bottom:482.042667pt;}
.y1bf{bottom:483.991395pt;}
.y13a{bottom:484.622667pt;}
.y19a{bottom:486.042667pt;}
.y5a{bottom:486.630667pt;}
.y10a{bottom:488.166667pt;}
.y2d0{bottom:490.956000pt;}
.y170{bottom:491.333029pt;}
.y24f{bottom:491.354667pt;}
.y220{bottom:492.001107pt;}
.y1c5{bottom:492.631139pt;}
.y206{bottom:494.458464pt;}
.ya{bottom:494.990666pt;}
.y272{bottom:496.136000pt;}
.yc1{bottom:496.534667pt;}
.y31{bottom:497.832000pt;}
.y8b{bottom:498.512000pt;}
.y1f3{bottom:498.780000pt;}
.ydb{bottom:498.926667pt;}
.y139{bottom:501.360000pt;}
.y29d{bottom:502.513333pt;}
.y199{bottom:503.138667pt;}
.y59{bottom:503.925333pt;}
.y205{bottom:504.826080pt;}
.y109{bottom:504.904000pt;}
.y2cf{bottom:506.298667pt;}
.y24e{bottom:508.092000pt;}
.y16f{bottom:508.452533pt;}
.y1c4{bottom:510.631067pt;}
.y271{bottom:512.873333pt;}
.yc0{bottom:513.272000pt;}
.y30{bottom:513.733333pt;}
.y21f{bottom:513.915245pt;}
.y8a{bottom:515.249333pt;}
.y1f2{bottom:515.517333pt;}
.yda{bottom:516.858667pt;}
.y138{bottom:518.097333pt;}
.y29c{bottom:518.134667pt;}
.y58{bottom:521.220000pt;}
.y2ce{bottom:521.641333pt;}
.y24d{bottom:524.829333pt;}
.y16e{bottom:525.491877pt;}
.y108{bottom:525.626667pt;}
.y1be{bottom:529.271107pt;}
.y270{bottom:529.610667pt;}
.y2f{bottom:529.633333pt;}
.ybf{bottom:530.009333pt;}
.y89{bottom:531.986667pt;}
.y1f1{bottom:532.254667pt;}
.y29b{bottom:533.756000pt;}
.y198{bottom:534.792000pt;}
.y137{bottom:534.834667pt;}
.y2cd{bottom:536.984000pt;}
.y57{bottom:538.516000pt;}
.y24c{bottom:541.566667pt;}
.y107{bottom:542.364000pt;}
.y16d{bottom:542.611381pt;}
.y26f{bottom:546.348000pt;}
.ybe{bottom:546.746667pt;}
.y1bd{bottom:547.991139pt;}
.y88{bottom:548.724000pt;}
.y1f0{bottom:548.992000pt;}
.y29a{bottom:549.377333pt;}
.y2c{bottom:549.518634pt;}
.y197{bottom:551.529333pt;}
.y136{bottom:551.572000pt;}
.y2cc{bottom:552.325333pt;}
.y56{bottom:555.810667pt;}
.y24b{bottom:558.304000pt;}
.y106{bottom:559.101333pt;}
.y16c{bottom:559.730885pt;}
.y26e{bottom:563.085333pt;}
.ybd{bottom:563.484000pt;}
.y299{bottom:564.998667pt;}
.y87{bottom:565.461333pt;}
.y1ef{bottom:565.729333pt;}
.y1bb{bottom:565.991067pt;}
.y2cb{bottom:567.668000pt;}
.y196{bottom:568.266667pt;}
.y135{bottom:568.309333pt;}
.y55{bottom:573.106667pt;}
.y9{bottom:573.786667pt;}
.y24a{bottom:575.041333pt;}
.y105{bottom:575.837333pt;}
.y16b{bottom:576.770229pt;}
.y26d{bottom:579.822667pt;}
.ybc{bottom:580.221333pt;}
.y1ee{bottom:582.466667pt;}
.y2ca{bottom:583.010667pt;}
.y1bc{bottom:583.990995pt;}
.y195{bottom:585.004000pt;}
.y134{bottom:585.045333pt;}
.y86{bottom:586.182667pt;}
.y54{bottom:590.401333pt;}
.y249{bottom:591.778667pt;}
.y8{bottom:592.685334pt;}
.y16a{bottom:593.889733pt;}
.y104{bottom:596.560000pt;}
.ybb{bottom:596.958667pt;}
.y2c9{bottom:598.353333pt;}
.y1ed{bottom:599.204000pt;}
.y194{bottom:601.741333pt;}
.y133{bottom:601.782667pt;}
.y53{bottom:607.696000pt;}
.y248{bottom:608.516000pt;}
.y1ba{bottom:610.710667pt;}
.y26c{bottom:613.297333pt;}
.yba{bottom:613.696000pt;}
.y1ec{bottom:615.941333pt;}
.y85{bottom:616.070667pt;}
.y193{bottom:618.478667pt;}
.y132{bottom:618.520000pt;}
.y52{bottom:624.992000pt;}
.y247{bottom:625.253333pt;}
.y1b9{bottom:626.151067pt;}
.y103{bottom:626.448000pt;}
.y169{bottom:626.689733pt;}
.y2c8{bottom:629.038667pt;}
.y26b{bottom:630.034667pt;}
.yb9{bottom:630.433333pt;}
.y1eb{bottom:632.678667pt;}
.y84{bottom:632.808000pt;}
.y192{bottom:635.216000pt;}
.y130{bottom:638.696000pt;}
.y131{bottom:639.276000pt;}
.y246{bottom:641.990667pt;}
.y51{bottom:642.286667pt;}
.y102{bottom:643.185333pt;}
.y2c7{bottom:644.381333pt;}
.y7{bottom:645.598667pt;}
.y168{bottom:646.609733pt;}
.y26a{bottom:646.772000pt;}
.yb8{bottom:647.170667pt;}
.y12f{bottom:648.513333pt;}
.y1ea{bottom:649.416000pt;}
.y83{bottom:649.545333pt;}
.y191{bottom:651.953333pt;}
.y12e{bottom:654.098667pt;}
.y245{bottom:658.726667pt;}
.y50{bottom:659.581333pt;}
.y2c6{bottom:659.724000pt;}
.y101{bottom:659.922667pt;}
.y269{bottom:663.509333pt;}
.yb7{bottom:663.908000pt;}
.y1e9{bottom:666.153333pt;}
.y82{bottom:666.282667pt;}
.y215{bottom:667.464000pt;}
.y28b{bottom:667.494667pt;}
.y190{bottom:668.690667pt;}
.y4{bottom:668.977329pt;}
.y1b8{bottom:673.271387pt;}
.y2c5{bottom:675.066667pt;}
.y244{bottom:675.464000pt;}
.y12d{bottom:676.560000pt;}
.y100{bottom:676.660000pt;}
.y4f{bottom:676.877333pt;}
.y298{bottom:680.246667pt;}
.yb6{bottom:680.645333pt;}
.y1b7{bottom:681.911067pt;}
.y81{bottom:683.020000pt;}
.y268{bottom:684.232000pt;}
.y18f{bottom:685.426667pt;}
.y1e8{bottom:686.874667pt;}
.y204{bottom:687.401333pt;}
.y2c4{bottom:690.408000pt;}
.y243{bottom:692.201333pt;}
.y12c{bottom:693.297333pt;}
.yff{bottom:693.397333pt;}
.y4e{bottom:694.172000pt;}
.y297{bottom:696.984000pt;}
.yb5{bottom:697.382667pt;}
.y80{bottom:699.757333pt;}
.y18e{bottom:702.164000pt;}
.y164{bottom:703.026667pt;}
.y1e7{bottom:703.612000pt;}
.y2c3{bottom:705.750667pt;}
.y242{bottom:708.938667pt;}
.y12b{bottom:710.034667pt;}
.yfe{bottom:710.134667pt;}
.y296{bottom:713.721333pt;}
.yb4{bottom:714.120000pt;}
.y7f{bottom:716.494667pt;}
.y18d{bottom:718.901333pt;}
.y2c2{bottom:721.093333pt;}
.y14e{bottom:722.962667pt;}
.y241{bottom:725.676000pt;}
.y12a{bottom:726.772000pt;}
.yfd{bottom:726.872000pt;}
.y4d{bottom:728.470667pt;}
.y295{bottom:730.458667pt;}
.yb3{bottom:730.857333pt;}
.y7e{bottom:733.232000pt;}
.y1e6{bottom:733.448000pt;}
.y2c1{bottom:736.436000pt;}
.y18c{bottom:739.624000pt;}
.y240{bottom:742.413333pt;}
.y4c{bottom:742.817333pt;}
.y129{bottom:743.509333pt;}
.yfc{bottom:743.609333pt;}
.y294{bottom:747.196000pt;}
.yb2{bottom:747.594667pt;}
.y7d{bottom:749.969333pt;}
.y2c0{bottom:751.778667pt;}
.y1b6{bottom:753.385333pt;}
.y18b{bottom:756.361333pt;}
.y23f{bottom:759.150667pt;}
.y128{bottom:760.246667pt;}
.yfb{bottom:760.346667pt;}
.y4b{bottom:761.020000pt;}
.y293{bottom:763.933333pt;}
.yb1{bottom:764.332000pt;}
.y7c{bottom:766.706667pt;}
.y2bf{bottom:767.121333pt;}
.y4a{bottom:771.509333pt;}
.y18a{bottom:773.098667pt;}
.y23e{bottom:775.888000pt;}
.y127{bottom:776.984000pt;}
.yfa{bottom:777.084000pt;}
.y292{bottom:780.670667pt;}
.yb0{bottom:781.069333pt;}
.y3{bottom:781.661334pt;}
.y2be{bottom:782.464000pt;}
.y7b{bottom:783.444000pt;}
.y49{bottom:789.713333pt;}
.y189{bottom:789.836000pt;}
.y23d{bottom:792.625333pt;}
.y126{bottom:793.721333pt;}
.yf9{bottom:793.821333pt;}
.y291{bottom:797.408000pt;}
.yaf{bottom:797.806667pt;}
.y7a{bottom:800.181333pt;}
.y48{bottom:800.201333pt;}
.y23c{bottom:809.362667pt;}
.yf8{bottom:810.558667pt;}
.y124{bottom:813.089333pt;}
.y2e9{bottom:813.148000pt;}
.y2bd{bottom:813.149333pt;}
.y125{bottom:813.669333pt;}
.y290{bottom:814.145333pt;}
.yae{bottom:814.544000pt;}
.y79{bottom:816.918667pt;}
.y47{bottom:818.405333pt;}
.y21e{bottom:822.266717pt;}
.y123{bottom:822.905333pt;}
.y23b{bottom:826.100000pt;}
.yf7{bottom:827.296000pt;}
.y122{bottom:828.490667pt;}
.y28f{bottom:830.882667pt;}
.yad{bottom:831.281333pt;}
.y46{bottom:832.752000pt;}
.y78{bottom:833.656000pt;}
.y2{bottom:840.112001pt;}
.y21d{bottom:841.098171pt;}
.y23a{bottom:842.837333pt;}
.y2bc{bottom:843.833333pt;}
.yf6{bottom:844.033333pt;}
.y22e{bottom:845.449080pt;}
.y28e{bottom:847.620000pt;}
.yac{bottom:848.018667pt;}
.y77{bottom:850.393333pt;}
.y2bb{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.y239{bottom:859.574667pt;}
.y21c{bottom:859.841450pt;}
.yf5{bottom:860.770667pt;}
.y22d{bottom:863.082169pt;}
.y28d{bottom:864.357333pt;}
.yab{bottom:864.754667pt;}
.y76{bottom:867.130667pt;}
.y2b{bottom:868.478667pt;}
.y2ba{bottom:874.518667pt;}
.y238{bottom:876.312000pt;}
.yf4{bottom:877.508000pt;}
.y21b{bottom:878.672904pt;}
.y22c{bottom:880.634069pt;}
.yaa{bottom:881.492000pt;}
.y75{bottom:883.868000pt;}
.y28c{bottom:885.078667pt;}
.y2a{bottom:885.216000pt;}
.y2b9{bottom:889.861333pt;}
.y237{bottom:893.049333pt;}
.y21a{bottom:897.504359pt;}
.ya9{bottom:898.229333pt;}
.y74{bottom:900.605333pt;}
.y2b8{bottom:905.204000pt;}
.y236{bottom:909.786667pt;}
.ya8{bottom:914.966667pt;}
.y219{bottom:916.249107pt;}
.y73{bottom:917.342667pt;}
.y2b7{bottom:920.546667pt;}
.y29{bottom:925.510667pt;}
.y235{bottom:926.524000pt;}
.y22b{bottom:930.651199pt;}
.ya7{bottom:931.704000pt;}
.y72{bottom:934.080000pt;}
.y2b6{bottom:935.889333pt;}
.y22a{bottom:939.550069pt;}
.y234{bottom:943.261333pt;}
.y167{bottom:943.410053pt;}
.ya6{bottom:948.441333pt;}
.y28{bottom:950.616000pt;}
.y71{bottom:950.817333pt;}
.y2b5{bottom:951.230667pt;}
.y166{bottom:952.049733pt;}
.y233{bottom:963.984000pt;}
.ya5{bottom:965.178667pt;}
.y2b4{bottom:966.573333pt;}
.y70{bottom:967.554667pt;}
.y218{bottom:969.665459pt;}
.y27{bottom:975.722667pt;}
.y217{bottom:979.169107pt;}
.ya4{bottom:981.916000pt;}
.y6f{bottom:984.290667pt;}
.y24{bottom:1014.377333pt;}
.y6e{bottom:1043.020000pt;}
.hf{height:22.673858pt;}
.h14{height:23.209028pt;}
.h23{height:25.610524pt;}
.h2b{height:26.779392pt;}
.hb{height:26.836216pt;}
.h12{height:27.076941pt;}
.h13{height:27.262909pt;}
.h7{height:28.560000pt;}
.h1d{height:29.397999pt;}
.h11{height:29.433775pt;}
.h10{height:30.399505pt;}
.h15{height:30.945242pt;}
.h26{height:31.067969pt;}
.h25{height:31.088750pt;}
.h1a{height:31.157778pt;}
.h40{height:32.000008pt;}
.h3f{height:32.021413pt;}
.ha{height:33.545270pt;}
.h3a{height:34.174766pt;}
.h39{height:34.197625pt;}
.h16{height:34.430976pt;}
.h17{height:34.813542pt;}
.h2d{height:35.039062pt;}
.h44{height:35.052646pt;}
.h28{height:35.062500pt;}
.h43{height:36.090234pt;}
.h42{height:36.114375pt;}
.h34{height:37.281562pt;}
.h33{height:37.306500pt;}
.h18{height:38.256384pt;}
.h1b{height:38.368546pt;}
.h3d{height:38.542969pt;}
.h3c{height:38.568750pt;}
.h19{height:38.681455pt;}
.hc{height:38.947124pt;}
.h27{height:39.010156pt;}
.h2e{height:39.036250pt;}
.h41{height:40.180461pt;}
.h6{height:40.800000pt;}
.h37{height:42.046875pt;}
.h36{height:42.075000pt;}
.h3{height:42.840000pt;}
.h3b{height:42.911172pt;}
.h9{height:45.353733pt;}
.h35{height:46.812187pt;}
.he{height:48.365611pt;}
.h20{height:48.688666pt;}
.h2{height:48.960000pt;}
.h2a{height:51.355392pt;}
.h1f{height:54.957791pt;}
.h22{height:68.667332pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.h1e{height:69.535908pt;}
.h30{height:74.852364pt;}
.h2f{height:74.878458pt;}
.h21{height:74.915124pt;}
.h1c{height:74.920458pt;}
.h31{height:75.167660pt;}
.h4{height:105.826671pt;}
.h2c{height:241.814667pt;}
.h24{height:272.237333pt;}
.h32{height:307.800000pt;}
.h29{height:339.378667pt;}
.h38{height:397.550267pt;}
.h3e{height:829.867017pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:207.298721pt;}
.w9{width:408.513600pt;}
.w7{width:464.220000pt;}
.wb{width:497.595747pt;}
.w6{width:566.504800pt;}
.w2{width:566.928019pt;}
.w8{width:605.320933pt;}
.wa{width:637.581267pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x87{left:-213.692800pt;}
.x8c{left:-179.708800pt;}
.x92{left:-172.614267pt;}
.x63{left:-168.636000pt;}
.x5d{left:-64.776533pt;}
.x72{left:-45.368400pt;}
.x74{left:-33.688400pt;}
.x83{left:-31.048400pt;}
.x78{left:-27.685908pt;}
.x73{left:-17.048400pt;}
.x65{left:-14.236000pt;}
.x89{left:-5.084687pt;}
.x84{left:-3.848400pt;}
.x80{left:-2.649735pt;}
.x0{left:0.000000pt;}
.x7f{left:1.590371pt;}
.x79{left:3.753648pt;}
.x67{left:5.204094pt;}
.x94{left:6.441030pt;}
.x7c{left:11.592837pt;}
.x7a{left:13.352982pt;}
.x7b{left:15.113127pt;}
.x7{left:26.021437pt;}
.x88{left:28.899200pt;}
.x66{left:33.524000pt;}
.x93{left:35.610533pt;}
.x5{left:48.000000pt;}
.x6{left:50.623837pt;}
.x6a{left:64.412000pt;}
.x6b{left:67.445333pt;}
.x68{left:75.952000pt;}
.x8d{left:78.059400pt;}
.x5f{left:89.623467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6c{left:102.906667pt;}
.x6e{left:105.813333pt;}
.x61{left:109.063561pt;}
.x5c{left:113.599200pt;}
.x69{left:126.620000pt;}
.x86{left:128.471694pt;}
.x6f{left:129.784000pt;}
.x60{left:137.383467pt;}
.x91{left:148.053333pt;}
.x85{left:156.791600pt;}
.x8e{left:158.045800pt;}
.x81{left:172.550137pt;}
.x4{left:180.874667pt;}
.x62{left:202.850667pt;}
.x7d{left:209.192492pt;}
.xa{left:222.073333pt;}
.x8{left:223.020000pt;}
.x7e{left:238.149595pt;}
.x9{left:240.553333pt;}
.xd{left:251.365333pt;}
.x4a{left:253.769333pt;}
.x9c{left:258.781333pt;}
.x2b{left:262.672000pt;}
.x9d{left:272.065333pt;}
.x2c{left:275.954667pt;}
.xb{left:277.312000pt;}
.x15{left:283.170667pt;}
.xc{left:285.510667pt;}
.x16{left:289.812000pt;}
.x2d{left:295.900000pt;}
.x2e{left:298.390667pt;}
.x2f{left:301.774667pt;}
.xab{left:309.474667pt;}
.x27{left:313.653333pt;}
.x30{left:315.058667pt;}
.x31{left:318.442667pt;}
.x70{left:322.500000pt;}
.x28{left:326.936000pt;}
.x5a{left:327.880000pt;}
.x32{left:331.726667pt;}
.x29{left:333.445333pt;}
.x5b{left:338.369333pt;}
.x2a{left:346.729333pt;}
.x6d{left:347.926667pt;}
.xac{left:352.917333pt;}
.x9e{left:363.654667pt;}
.x37{left:374.270667pt;}
.x9f{left:376.938667pt;}
.xa0{left:380.256000pt;}
.x56{left:386.189333pt;}
.x38{left:387.554667pt;}
.x4e{left:389.060000pt;}
.x39{left:394.182667pt;}
.x10{left:397.636000pt;}
.xa7{left:403.020000pt;}
.x3{left:404.408000pt;}
.x3a{left:407.466667pt;}
.x8a{left:412.609756pt;}
.xa8{left:416.304000pt;}
.xa9{left:419.690667pt;}
.x50{left:424.034667pt;}
.x4f{left:426.558667pt;}
.x40{left:431.889333pt;}
.xaa{left:432.974667pt;}
.x99{left:438.356000pt;}
.x53{left:440.190667pt;}
.x41{left:445.172000pt;}
.x42{left:451.860000pt;}
.x64{left:457.684000pt;}
.x19{left:462.264000pt;}
.x43{left:465.144000pt;}
.x4d{left:467.674667pt;}
.x1a{left:468.906667pt;}
.x1b{left:472.293333pt;}
.x13{left:476.576000pt;}
.x1c{left:478.934667pt;}
.x33{left:481.433333pt;}
.x14{left:483.217333pt;}
.x34{left:494.717333pt;}
.x35{left:498.034667pt;}
.x77{left:500.151950pt;}
.x76{left:503.271600pt;}
.x96{left:505.164000pt;}
.x3b{left:508.773333pt;}
.x8f{left:509.780476pt;}
.x36{left:511.318667pt;}
.x57{left:513.674667pt;}
.x3c{left:515.548000pt;}
.x3d{left:528.832000pt;}
.xe{left:536.082667pt;}
.x75{left:540.710503pt;}
.xf{left:542.724000pt;}
.x51{left:543.940000pt;}
.x58{left:547.274667pt;}
.x8b{left:549.602883pt;}
.x4b{left:554.682667pt;}
.x5e{left:561.543467pt;}
.xa3{left:564.536000pt;}
.x4c{left:567.966667pt;}
.x9a{left:574.880000pt;}
.x52{left:576.240000pt;}
.x48{left:578.366667pt;}
.x59{left:579.576000pt;}
.x9b{left:581.966667pt;}
.x49{left:591.650667pt;}
.x82{left:593.427798pt;}
.xa4{left:594.490667pt;}
.x11{left:596.310667pt;}
.xa5{left:597.877333pt;}
.x17{left:601.745333pt;}
.x12{left:602.952000pt;}
.x18{left:608.386667pt;}
.x95{left:609.417333pt;}
.xa6{left:611.161333pt;}
.x44{left:625.174667pt;}
.x90{left:635.357509pt;}
.x45{left:638.458667pt;}
.xa1{left:641.985333pt;}
.x46{left:645.146667pt;}
.x54{left:648.400000pt;}
.xa2{left:655.269333pt;}
.x47{left:658.429333pt;}
.x55{left:666.072000pt;}
.x97{left:673.866667pt;}
.x23{left:678.230667pt;}
.x1d{left:679.241333pt;}
.x98{left:680.953333pt;}
.x24{left:684.872000pt;}
.x1e{left:685.882667pt;}
.x25{left:688.260000pt;}
.x1f{left:689.217333pt;}
.x71{left:693.962667pt;}
.x3e{left:695.941333pt;}
.x26{left:701.544000pt;}
.x20{left:702.500000pt;}
.x21{left:726.928000pt;}
.x22{left:740.210667pt;}
.x3f{left:744.637333pt;}
}




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