
    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_7c11eb785254ae580e224a8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_dd7e6385c4a2d7c2f0b7949d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_558fa17ed7b3ffb227a2d0c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_28adb8cf3611322aab03f456.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.743000;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_7d2c490b0150cb2fa6bc0e05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8956962d13e95e9ffbff52f9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_131fdb877f761aa51d425906.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_df4d55ee84701b9b43f0ce93.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_68bca1ab98ac12a9dbda9e8a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7f06dc976b47666c014bed7e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;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_5269428222301cb5a7148915.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8fe8b9d94b80b7f58093377f.woff2')format("woff");}.fff{font-family:fff;line-height:2.399000;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_6d3bcd58bc532a54defcef53.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_29086805489fe08e2474c33f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003418;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_6e9ce087413dbac92d5cb2e5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.211426;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_6d3bcd58bc532a54defcef53.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_9121e973ef5a483688e409c2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003418;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_a27297ba2e3c891533f6c7fe.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.211426;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_c1ba11f0534c8a335ce0b6a9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.995117;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_6d3bcd58bc532a54defcef53.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_207e6f3e67925e907af209d5.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003418;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_1ad00b9d8c031fdfbfd2475a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.211426;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_6d3bcd58bc532a54defcef53.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_65734885b1f2d53fd22c5ae5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.003418;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_4612c019ee7a9157094a0d47.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.211426;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_b856baa1225ce7ea4e710b4e.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_5f174e7ec59e9c6151793dda.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.003418;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_bf518446306848c49fc85045.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.211426;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_291621c6f38d38559fe72de3.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_243bd030ecfaa7526dcb100b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.003418;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_1d9df9d972f7b8cd49b49bee.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.211426;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_b2c8f9ad1671ac45d2d3d804.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.995117;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;}
.m3{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);}
.m18{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);}
.m25{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);}
.m1c{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);}
.m1a{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);}
.m7{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);}
.m2{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);}
.m27{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);}
.m29{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);}
.me{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);}
.m1d{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);}
.m11{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);}
.m2a{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);}
.m1{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);}
.m23{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);}
.m8{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);}
.m6{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);}
.m2b{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);}
.mc{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);}
.m1e{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);}
.m20{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);}
.m1f{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);}
.m21{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);}
.m9{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);}
.m22{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);}
.ma{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);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m1b{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);}
.m13{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);}
.m26{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);}
.mf{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);}
.m16{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);}
.m24{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);}
.m12{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);}
.m2c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m17{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);}
.m10{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);}
.m14{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);}
.m5{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);}
.mb{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:-21.696000px;}
.v3{vertical-align:-17.358000px;}
.v7{vertical-align:-10.464000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:30.006000px;}
.v5{vertical-align:39.840000px;}
.v9{vertical-align:41.634000px;}
.v4{vertical-align:84.312000px;}
.v8{vertical-align:125.316000px;}
.ls5b{letter-spacing:-0.502200px;}
.ls37{letter-spacing:-0.453600px;}
.ls8f{letter-spacing:-0.408240px;}
.ls63{letter-spacing:-0.399600px;}
.ls90{letter-spacing:-0.311040px;}
.ls4c{letter-spacing:-0.275400px;}
.ls4f{letter-spacing:-0.253800px;}
.ls5a{letter-spacing:-0.216000px;}
.ls82{letter-spacing:-0.202003px;}
.ls8b{letter-spacing:-0.181440px;}
.ls84{letter-spacing:-0.165931px;}
.ls7f{letter-spacing:-0.158717px;}
.ls4e{letter-spacing:-0.145800px;}
.ls31{letter-spacing:-0.140400px;}
.ls81{letter-spacing:-0.129859px;}
.ls5c{letter-spacing:-0.124200px;}
.ls87{letter-spacing:-0.122645px;}
.ls7c{letter-spacing:-0.109166px;}
.ls89{letter-spacing:-0.108216px;}
.ls8a{letter-spacing:-0.093787px;}
.ls2f{letter-spacing:-0.086184px;}
.ls8d{letter-spacing:-0.084240px;}
.ls3a{letter-spacing:-0.081000px;}
.ls4d{letter-spacing:-0.075600px;}
.ls85{letter-spacing:-0.072144px;}
.ls8e{letter-spacing:-0.064800px;}
.ls7b{letter-spacing:-0.063202px;}
.ls80{letter-spacing:-0.057715px;}
.ls83{letter-spacing:-0.050501px;}
.ls34{letter-spacing:-0.043200px;}
.ls2e{letter-spacing:-0.043092px;}
.ls8c{letter-spacing:-0.038880px;}
.ls36{letter-spacing:-0.037800px;}
.ls7e{letter-spacing:-0.028858px;}
.ls32{letter-spacing:-0.027000px;}
.ls91{letter-spacing:-0.025920px;}
.ls64{letter-spacing:-0.021600px;}
.ls7d{letter-spacing:-0.017237px;}
.ls38{letter-spacing:-0.016200px;}
.ls86{letter-spacing:-0.014429px;}
.ls39{letter-spacing:-0.010800px;}
.ls88{letter-spacing:-0.007214px;}
.ls35{letter-spacing:-0.005400px;}
.ls30{letter-spacing:-0.004788px;}
.lse{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000119px;}
.ls9e{letter-spacing:0.000412px;}
.ls55{letter-spacing:0.000422px;}
.lsa4{letter-spacing:0.000496px;}
.ls9c{letter-spacing:0.000800px;}
.ls12{letter-spacing:0.000810px;}
.ls56{letter-spacing:0.000845px;}
.ls9d{letter-spacing:0.001036px;}
.ls57{letter-spacing:0.001133px;}
.ls3c{letter-spacing:0.001139px;}
.ls9a{letter-spacing:0.001155px;}
.lsa1{letter-spacing:0.001319px;}
.ls9b{letter-spacing:0.001584px;}
.ls97{letter-spacing:0.001746px;}
.ls9{letter-spacing:0.001920px;}
.ls3e{letter-spacing:0.001996px;}
.lsa5{letter-spacing:0.002043px;}
.ls8{letter-spacing:0.002197px;}
.lsa2{letter-spacing:0.002220px;}
.ls11{letter-spacing:0.002372px;}
.ls59{letter-spacing:0.002458px;}
.ls9f{letter-spacing:0.002544px;}
.ls3d{letter-spacing:0.002667px;}
.lsa9{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.005400px;}
.ls78{letter-spacing:0.006480px;}
.ls94{letter-spacing:0.006624px;}
.ls69{letter-spacing:0.007214px;}
.ls20{letter-spacing:0.010800px;}
.ls68{letter-spacing:0.014429px;}
.ls1e{letter-spacing:0.016200px;}
.ls70{letter-spacing:0.019440px;}
.ls29{letter-spacing:0.021600px;}
.ls73{letter-spacing:0.025920px;}
.ls27{letter-spacing:0.027000px;}
.ls43{letter-spacing:0.032400px;}
.ls24{letter-spacing:0.037800px;}
.ls72{letter-spacing:0.038880px;}
.ls42{letter-spacing:0.043200px;}
.ls6e{letter-spacing:0.043286px;}
.ls75{letter-spacing:0.045360px;}
.ls26{letter-spacing:0.048600px;}
.ls21{letter-spacing:0.054000px;}
.ls6b{letter-spacing:0.057715px;}
.ls79{letter-spacing:0.058320px;}
.ls45{letter-spacing:0.059400px;}
.ls2b{letter-spacing:0.064800px;}
.ls40{letter-spacing:0.070200px;}
.ls6c{letter-spacing:0.072144px;}
.ls6d{letter-spacing:0.079358px;}
.ls2a{letter-spacing:0.081000px;}
.ls51{letter-spacing:0.086400px;}
.ls6f{letter-spacing:0.086573px;}
.ls23{letter-spacing:0.091800px;}
.ls6a{letter-spacing:0.093787px;}
.ls93{letter-spacing:0.097200px;}
.ls41{letter-spacing:0.102600px;}
.ls77{letter-spacing:0.103680px;}
.ls52{letter-spacing:0.113400px;}
.ls28{letter-spacing:0.118800px;}
.ls22{letter-spacing:0.124200px;}
.ls76{letter-spacing:0.129600px;}
.ls44{letter-spacing:0.135000px;}
.ls25{letter-spacing:0.145800px;}
.ls74{letter-spacing:0.149040px;}
.ls1d{letter-spacing:0.181944px;}
.ls65{letter-spacing:0.183600px;}
.ls1c{letter-spacing:0.191520px;}
.ls67{letter-spacing:0.206842px;}
.ls66{letter-spacing:0.218333px;}
.ls33{letter-spacing:0.383400px;}
.ls50{letter-spacing:0.486000px;}
.lsb{letter-spacing:0.503764px;}
.ls3b{letter-spacing:0.542815px;}
.ls13{letter-spacing:0.548815px;}
.ls16{letter-spacing:0.670741px;}
.ls18{letter-spacing:0.676741px;}
.ls17{letter-spacing:0.717483px;}
.ls92{letter-spacing:0.907200px;}
.lsf{letter-spacing:1.275394px;}
.ls14{letter-spacing:1.461483px;}
.ls5{letter-spacing:1.861130px;}
.ls5d{letter-spacing:1.987200px;}
.ls46{letter-spacing:2.705400px;}
.ls71{letter-spacing:2.805840px;}
.ls3{letter-spacing:2.983200px;}
.ls58{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls47{letter-spacing:3.067200px;}
.ls5e{letter-spacing:5.589000px;}
.ls15{letter-spacing:9.081181px;}
.ls6{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.lsab{letter-spacing:13.199368px;}
.ls7a{letter-spacing:13.241031px;}
.lsa0{letter-spacing:13.273889px;}
.ls62{letter-spacing:13.444800px;}
.lsc{letter-spacing:13.448400px;}
.ls2d{letter-spacing:13.450800px;}
.ls99{letter-spacing:13.454400px;}
.ls54{letter-spacing:13.462090px;}
.lsad{letter-spacing:13.469156px;}
.lsa8{letter-spacing:13.490520px;}
.ls60{letter-spacing:13.509461px;}
.ls61{letter-spacing:13.515509px;}
.ls5f{letter-spacing:13.557848px;}
.ls49{letter-spacing:13.618454px;}
.ls48{letter-spacing:13.624824px;}
.lsa6{letter-spacing:13.632301px;}
.ls96{letter-spacing:13.638242px;}
.ls53{letter-spacing:13.693972px;}
.lsac{letter-spacing:14.026871px;}
.ls95{letter-spacing:14.517501px;}
.ls4a{letter-spacing:14.676325px;}
.ls1b{letter-spacing:14.723223px;}
.ls2{letter-spacing:14.944200px;}
.ls4b{letter-spacing:14.976325px;}
.ls3f{letter-spacing:14.979670px;}
.lsa3{letter-spacing:15.179812px;}
.lsaa{letter-spacing:15.373929px;}
.lsa7{letter-spacing:15.415106px;}
.ls1a{letter-spacing:15.663483px;}
.ls19{letter-spacing:16.431181px;}
.ls98{letter-spacing:18.020988px;}
.ls2c{letter-spacing:20.546913px;}
.ls7{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.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;}
}
.wsb6{word-spacing:-54.000000px;}
.ws10a{word-spacing:-16.200000px;}
.ws4a{word-spacing:-14.943900px;}
.ws109{word-spacing:-14.582333px;}
.ws5{word-spacing:-14.355754px;}
.ws6c{word-spacing:-13.500000px;}
.ws31{word-spacing:-13.449600px;}
.ws6b{word-spacing:-12.161520px;}
.ws1e{word-spacing:-11.955150px;}
.wsb{word-spacing:-11.357400px;}
.wsf{word-spacing:-10.460700px;}
.ws126{word-spacing:-4.198781px;}
.ws125{word-spacing:-4.155494px;}
.ws128{word-spacing:-3.838061px;}
.ws12e{word-spacing:-3.787560px;}
.ws12d{word-spacing:-3.773131px;}
.wsbe{word-spacing:-3.159000px;}
.wsbc{word-spacing:-3.126600px;}
.wsbf{word-spacing:-3.099600px;}
.wsbd{word-spacing:-3.078000px;}
.wsbb{word-spacing:-3.051000px;}
.wsd9{word-spacing:-3.048556px;}
.wsd8{word-spacing:-2.988780px;}
.ws17a{word-spacing:-2.749678px;}
.ws57{word-spacing:-2.570351px;}
.wsa3{word-spacing:-2.510575px;}
.ws12a{word-spacing:-2.424038px;}
.ws156{word-spacing:-2.397600px;}
.wsb1{word-spacing:-2.391024px;}
.ws157{word-spacing:-2.359800px;}
.ws129{word-spacing:-2.359109px;}
.ws16b{word-spacing:-2.211697px;}
.ws167{word-spacing:-2.151922px;}
.ws12b{word-spacing:-2.128248px;}
.ws34{word-spacing:-2.092146px;}
.ws12c{word-spacing:-2.041675px;}
.ws168{word-spacing:-2.032370px;}
.ws14d{word-spacing:-2.019600px;}
.ws14b{word-spacing:-2.014200px;}
.ws14c{word-spacing:-2.008800px;}
.ws166{word-spacing:-1.972595px;}
.ws9b{word-spacing:-1.912819px;}
.wsd{word-spacing:-1.908367px;}
.ws9d{word-spacing:-1.853044px;}
.ws5f{word-spacing:-1.793268px;}
.ws62{word-spacing:-1.733492px;}
.ws41{word-spacing:-1.673717px;}
.ws2d{word-spacing:-1.667750px;}
.ws106{word-spacing:-1.657800px;}
.ws114{word-spacing:-1.637669px;}
.ws107{word-spacing:-1.630800px;}
.ws51{word-spacing:-1.613941px;}
.ws142{word-spacing:-1.613520px;}
.ws105{word-spacing:-1.593000px;}
.ws169{word-spacing:-1.554166px;}
.ws13f{word-spacing:-1.542240px;}
.ws140{word-spacing:-1.509840px;}
.ws63{word-spacing:-1.494390px;}
.ws198{word-spacing:-1.452557px;}
.ws9c{word-spacing:-1.434614px;}
.ws60{word-spacing:-1.374839px;}
.wsc{word-spacing:-1.322630px;}
.wsde{word-spacing:-1.315063px;}
.ws108{word-spacing:-1.279800px;}
.ws141{word-spacing:-1.198800px;}
.ws16a{word-spacing:-1.195512px;}
.ws58{word-spacing:-1.135736px;}
.ws144{word-spacing:-1.108080px;}
.ws143{word-spacing:-1.088640px;}
.wsda{word-spacing:-1.075961px;}
.ws124{word-spacing:-1.060517px;}
.ws38{word-spacing:-1.016185px;}
.ws5a{word-spacing:-0.983672px;}
.ws59{word-spacing:-0.983342px;}
.ws15a{word-spacing:-0.966600px;}
.ws5b{word-spacing:-0.956410px;}
.wsf2{word-spacing:-0.939600px;}
.ws158{word-spacing:-0.907200px;}
.ws159{word-spacing:-0.901800px;}
.wsf3{word-spacing:-0.820800px;}
.ws29{word-spacing:-0.806976px;}
.ws12f{word-spacing:-0.800798px;}
.ws37{word-spacing:-0.717307px;}
.ws2b{word-spacing:-0.699379px;}
.ws123{word-spacing:-0.685368px;}
.wsaa{word-spacing:-0.657532px;}
.wsf4{word-spacing:-0.621000px;}
.wsf5{word-spacing:-0.615600px;}
.wsca{word-spacing:-0.604800px;}
.ws16e{word-spacing:-0.597756px;}
.wsef{word-spacing:-0.594000px;}
.wsc7{word-spacing:-0.572400px;}
.wsc8{word-spacing:-0.556200px;}
.wsf0{word-spacing:-0.550800px;}
.wsa6{word-spacing:-0.537980px;}
.wsc9{word-spacing:-0.529200px;}
.ws1f{word-spacing:-0.526027px;}
.ws89{word-spacing:-0.518400px;}
.ws19f{word-spacing:-0.484186px;}
.ws4f{word-spacing:-0.478205px;}
.ws50{word-spacing:-0.418429px;}
.ws2a{word-spacing:-0.376589px;}
.ws45{word-spacing:-0.358654px;}
.ws17d{word-spacing:-0.322790px;}
.wsf1{word-spacing:-0.318600px;}
.ws111{word-spacing:-0.316008px;}
.ws19e{word-spacing:-0.312240px;}
.ws42{word-spacing:-0.298878px;}
.ws6f{word-spacing:-0.268992px;}
.ws77{word-spacing:-0.268128px;}
.wscb{word-spacing:-0.259200px;}
.ws8b{word-spacing:-0.253800px;}
.ws1d{word-spacing:-0.239103px;}
.ws164{word-spacing:-0.236846px;}
.ws10b{word-spacing:-0.215194px;}
.ws165{word-spacing:-0.208341px;}
.ws87{word-spacing:-0.194400px;}
.ws40{word-spacing:-0.179327px;}
.ws86{word-spacing:-0.167400px;}
.ws74{word-spacing:-0.161395px;}
.ws4c{word-spacing:-0.140108px;}
.ws85{word-spacing:-0.135000px;}
.ws4b{word-spacing:-0.134728px;}
.ws4d{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.ws110{word-spacing:-0.091930px;}
.ws76{word-spacing:-0.081396px;}
.ws88{word-spacing:-0.081000px;}
.ws9{word-spacing:-0.059776px;}
.ws2c{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.ws53{word-spacing:-0.016056px;}
.ws1a9{word-spacing:-0.009696px;}
.ws1aa{word-spacing:-0.009014px;}
.ws1ac{word-spacing:-0.008822px;}
.ws19d{word-spacing:-0.007056px;}
.ws18c{word-spacing:-0.004858px;}
.wse2{word-spacing:-0.003955px;}
.ws11{word-spacing:-0.003743px;}
.ws7{word-spacing:-0.002899px;}
.ws1b4{word-spacing:-0.002266px;}
.ws1a8{word-spacing:-0.002016px;}
.ws1b9{word-spacing:-0.000998px;}
.ws30{word-spacing:-0.000739px;}
.ws10{word-spacing:-0.000726px;}
.wsa{word-spacing:-0.000241px;}
.ws0{word-spacing:0.000000px;}
.ws32{word-spacing:0.000629px;}
.ws67{word-spacing:0.001225px;}
.ws8{word-spacing:0.003059px;}
.ws132{word-spacing:0.021643px;}
.ws71{word-spacing:0.053798px;}
.ws54{word-spacing:0.059776px;}
.wsf6{word-spacing:0.070200px;}
.wsd4{word-spacing:0.081000px;}
.ws113{word-spacing:0.093787px;}
.ws1c{word-spacing:0.095641px;}
.ws1a0{word-spacing:0.102298px;}
.ws26{word-spacing:0.107597px;}
.ws19c{word-spacing:0.111903px;}
.ws94{word-spacing:0.118800px;}
.ws3e{word-spacing:0.119551px;}
.ws8c{word-spacing:0.129600px;}
.ws92{word-spacing:0.135000px;}
.ws112{word-spacing:0.137074px;}
.ws1a2{word-spacing:0.143792px;}
.ws8a{word-spacing:0.145800px;}
.ws145{word-spacing:0.155520px;}
.wsf8{word-spacing:0.156600px;}
.wsb7{word-spacing:0.161395px;}
.ws136{word-spacing:0.168480px;}
.ws95{word-spacing:0.172800px;}
.ws93{word-spacing:0.178200px;}
.ws69{word-spacing:0.179327px;}
.ws137{word-spacing:0.181440px;}
.ws138{word-spacing:0.187920px;}
.ws131{word-spacing:0.202003px;}
.ws12{word-spacing:0.209214px;}
.ws147{word-spacing:0.213840px;}
.ws2e{word-spacing:0.215194px;}
.ws130{word-spacing:0.216432px;}
.wsb5{word-spacing:0.231701px;}
.ws3f{word-spacing:0.239102px;}
.ws146{word-spacing:0.239760px;}
.ws191{word-spacing:0.259918px;}
.ws91{word-spacing:0.264600px;}
.ws28{word-spacing:0.268992px;}
.ws14{word-spacing:0.292900px;}
.ws52{word-spacing:0.298878px;}
.wsf7{word-spacing:0.307800px;}
.ws182{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.ws187{word-spacing:0.376589px;}
.wsa5{word-spacing:0.418429px;}
.wse1{word-spacing:0.430387px;}
.wsd5{word-spacing:0.437400px;}
.ws1a6{word-spacing:0.484186px;}
.ws7a{word-spacing:0.491400px;}
.ws151{word-spacing:0.513000px;}
.wsba{word-spacing:0.518400px;}
.ws7b{word-spacing:0.529200px;}
.ws117{word-spacing:0.533866px;}
.ws16c{word-spacing:0.537980px;}
.wsdf{word-spacing:0.537984px;}
.ws152{word-spacing:0.545400px;}
.ws153{word-spacing:0.550800px;}
.ws148{word-spacing:0.645581px;}
.ws161{word-spacing:0.657532px;}
.ws116{word-spacing:0.699797px;}
.ws48{word-spacing:0.717307px;}
.ws47{word-spacing:0.777083px;}
.ws1b1{word-spacing:0.806976px;}
.ws155{word-spacing:0.810000px;}
.wsb2{word-spacing:0.836858px;}
.ws10c{word-spacing:0.860774px;}
.wsfb{word-spacing:0.874800px;}
.ws11c{word-spacing:0.880157px;}
.ws154{word-spacing:0.885600px;}
.ws78{word-spacing:0.891000px;}
.ws3a{word-spacing:0.896634px;}
.ws79{word-spacing:0.901800px;}
.wsa4{word-spacing:0.956410px;}
.ws11d{word-spacing:0.973944px;}
.ws9e{word-spacing:1.016185px;}
.ws149{word-spacing:1.075968px;}
.wsaf{word-spacing:1.135736px;}
.ws122{word-spacing:1.139875px;}
.ws160{word-spacing:1.177200px;}
.ws96{word-spacing:1.195512px;}
.ws82{word-spacing:1.225800px;}
.wsb8{word-spacing:1.237363px;}
.wsf9{word-spacing:1.247400px;}
.wsa7{word-spacing:1.255288px;}
.ws84{word-spacing:1.269000px;}
.wsfa{word-spacing:1.274400px;}
.ws83{word-spacing:1.306800px;}
.ws199{word-spacing:1.331866px;}
.ws183{word-spacing:1.344960px;}
.ws99{word-spacing:1.434614px;}
.ws15d{word-spacing:1.441800px;}
.wse0{word-spacing:1.452557px;}
.ws5c{word-spacing:1.494390px;}
.wsb9{word-spacing:1.506355px;}
.ws170{word-spacing:1.554166px;}
.ws15c{word-spacing:1.566000px;}
.ws15f{word-spacing:1.571400px;}
.ws15b{word-spacing:1.603800px;}
.ws15e{word-spacing:1.609200px;}
.ws18a{word-spacing:1.667750px;}
.ws17c{word-spacing:1.673717px;}
.ws179{word-spacing:1.793268px;}
.ws68{word-spacing:1.912819px;}
.wsea{word-spacing:1.922400px;}
.ws18d{word-spacing:1.936742px;}
.wseb{word-spacing:1.938600px;}
.wse9{word-spacing:1.949400px;}
.wsfc{word-spacing:1.954800px;}
.ws9a{word-spacing:1.972595px;}
.wsfd{word-spacing:1.976400px;}
.ws13{word-spacing:2.008454px;}
.wsd7{word-spacing:2.032370px;}
.ws55{word-spacing:2.092146px;}
.ws175{word-spacing:2.151922px;}
.ws1b5{word-spacing:2.151936px;}
.ws11e{word-spacing:2.171534px;}
.ws11f{word-spacing:2.207606px;}
.ws121{word-spacing:2.315822px;}
.ws16f{word-spacing:2.331248px;}
.wsfe{word-spacing:2.386800px;}
.ws120{word-spacing:2.467325px;}
.ws66{word-spacing:2.570351px;}
.ws6a{word-spacing:2.630126px;}
.wsc3{word-spacing:2.635200px;}
.wsc6{word-spacing:2.646000px;}
.wsc5{word-spacing:2.656800px;}
.wsce{word-spacing:2.662200px;}
.wse6{word-spacing:2.667600px;}
.wse5{word-spacing:2.678400px;}
.wsc4{word-spacing:2.683800px;}
.wse3{word-spacing:2.689200px;}
.ws4e{word-spacing:2.689902px;}
.ws1ba{word-spacing:2.689920px;}
.wse4{word-spacing:2.700000px;}
.wscf{word-spacing:2.705400px;}
.wsd6{word-spacing:2.749678px;}
.wscc{word-spacing:2.781000px;}
.wsdc{word-spacing:2.809453px;}
.wscd{word-spacing:2.851200px;}
.ws46{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.ws70{word-spacing:2.905114px;}
.ws14e{word-spacing:2.980800px;}
.wsd2{word-spacing:2.986200px;}
.wsa8{word-spacing:2.988780px;}
.wsd3{word-spacing:3.002400px;}
.wse7{word-spacing:3.024000px;}
.ws14f{word-spacing:3.029400px;}
.wsd0{word-spacing:3.034800px;}
.wse8{word-spacing:3.045600px;}
.wsd1{word-spacing:3.056400px;}
.ws18e{word-spacing:3.066509px;}
.ws150{word-spacing:3.083400px;}
.ws10d{word-spacing:3.108331px;}
.ws73{word-spacing:3.120307px;}
.ws98{word-spacing:3.168107px;}
.ws72{word-spacing:3.174106px;}
.ws13d{word-spacing:3.194640px;}
.ws135{word-spacing:3.201120px;}
.ws133{word-spacing:3.207600px;}
.ws1a4{word-spacing:3.218419px;}
.ws1ad{word-spacing:3.219571px;}
.ws2f{word-spacing:3.219667px;}
.ws134{word-spacing:3.220560px;}
.ws197{word-spacing:3.221808px;}
.ws188{word-spacing:3.222182px;}
.ws189{word-spacing:3.222365px;}
.ws1b8{word-spacing:3.222557px;}
.ws1a1{word-spacing:3.223229px;}
.ws193{word-spacing:3.224102px;}
.ws1b2{word-spacing:3.224189px;}
.ws1a3{word-spacing:3.224976px;}
.ws1b3{word-spacing:3.225254px;}
.ws192{word-spacing:3.225830px;}
.ws1af{word-spacing:3.226128px;}
.ws18f{word-spacing:3.226541px;}
.ws1a5{word-spacing:3.226579px;}
.wsb4{word-spacing:3.227882px;}
.ws186{word-spacing:3.227904px;}
.ws1b0{word-spacing:3.228672px;}
.ws194{word-spacing:3.230112px;}
.ws75{word-spacing:3.281702px;}
.ws16d{word-spacing:3.287658px;}
.ws1a7{word-spacing:3.335501px;}
.wsdb{word-spacing:3.347434px;}
.ws14a{word-spacing:3.389299px;}
.wsb3{word-spacing:3.407209px;}
.ws61{word-spacing:3.466985px;}
.ws127{word-spacing:3.491770px;}
.ws17e{word-spacing:3.496896px;}
.wsb0{word-spacing:3.526760px;}
.ws1ab{word-spacing:3.550694px;}
.ws33{word-spacing:3.586536px;}
.ws184{word-spacing:3.604493px;}
.ws5e{word-spacing:3.646312px;}
.ws13e{word-spacing:3.648240px;}
.ws190{word-spacing:3.658291px;}
.ws5d{word-spacing:3.706087px;}
.ws3b{word-spacing:3.765863px;}
.ws49{word-spacing:3.789586px;}
.ws27{word-spacing:3.819686px;}
.ws39{word-spacing:3.825638px;}
.ws18b{word-spacing:3.873485px;}
.wsa9{word-spacing:3.885414px;}
.ws97{word-spacing:3.945190px;}
.ws195{word-spacing:3.981082px;}
.wsab{word-spacing:4.004965px;}
.ws8f{word-spacing:4.066200px;}
.ws90{word-spacing:4.120200px;}
.ws10e{word-spacing:4.124516px;}
.ws8e{word-spacing:4.131000px;}
.ws8d{word-spacing:4.158000px;}
.ws36{word-spacing:4.184292px;}
.wsac{word-spacing:4.363619px;}
.wsae{word-spacing:4.423394px;}
.ws7f{word-spacing:4.455000px;}
.ws7e{word-spacing:4.471200px;}
.ws10f{word-spacing:4.542946px;}
.ws64{word-spacing:4.662497px;}
.ws43{word-spacing:4.722272px;}
.wsc2{word-spacing:4.730400px;}
.ws7c{word-spacing:4.773600px;}
.ws56{word-spacing:4.782048px;}
.ws162{word-spacing:4.841824px;}
.ws196{word-spacing:4.841856px;}
.ws7d{word-spacing:4.892400px;}
.ws1b7{word-spacing:4.895654px;}
.ws139{word-spacing:4.944240px;}
.ws1b6{word-spacing:4.949453px;}
.ws13a{word-spacing:5.009040px;}
.wsdd{word-spacing:5.021150px;}
.ws13c{word-spacing:5.034960px;}
.ws13b{word-spacing:5.054400px;}
.wsc1{word-spacing:5.162400px;}
.wsc0{word-spacing:5.194800px;}
.ws80{word-spacing:5.200200px;}
.ws104{word-spacing:5.205600px;}
.ws81{word-spacing:5.211000px;}
.wsa1{word-spacing:5.320028px;}
.ws25{word-spacing:5.326042px;}
.ws24{word-spacing:5.368432px;}
.ws17b{word-spacing:5.379804px;}
.ws17f{word-spacing:5.379840px;}
.ws180{word-spacing:5.435373px;}
.wsff{word-spacing:5.475600px;}
.ws181{word-spacing:5.487437px;}
.wsa2{word-spacing:5.499355px;}
.ws101{word-spacing:5.518800px;}
.ws100{word-spacing:5.529600px;}
.ws23{word-spacing:5.541235px;}
.ws173{word-spacing:5.559131px;}
.ws3c{word-spacing:5.618906px;}
.ws102{word-spacing:5.632200px;}
.ws103{word-spacing:5.664600px;}
.ws3d{word-spacing:5.678682px;}
.ws176{word-spacing:5.858009px;}
.ws44{word-spacing:5.977560px;}
.ws1a{word-spacing:6.067206px;}
.ws171{word-spacing:6.097111px;}
.ws1b{word-spacing:6.150892px;}
.ws163{word-spacing:6.216662px;}
.wsec{word-spacing:6.609600px;}
.wsed{word-spacing:6.647400px;}
.wsee{word-spacing:6.669000px;}
.ws6e{word-spacing:7.101389px;}
.ws172{word-spacing:7.471950px;}
.ws11a{word-spacing:7.510190px;}
.ws6d{word-spacing:7.531776px;}
.ws11b{word-spacing:7.582334px;}
.ws19a{word-spacing:7.686412px;}
.ws19b{word-spacing:7.693171px;}
.wsad{word-spacing:7.770828px;}
.ws9f{word-spacing:7.830604px;}
.ws119{word-spacing:7.878125px;}
.wsa0{word-spacing:7.890379px;}
.ws1ae{word-spacing:8.177357px;}
.ws115{word-spacing:8.224416px;}
.ws174{word-spacing:8.249033px;}
.ws118{word-spacing:8.347061px;}
.ws178{word-spacing:8.488135px;}
.ws18{word-spacing:8.661460px;}
.ws185{word-spacing:14.525568px;}
.wse{word-spacing:15.483541px;}
.ws15{word-spacing:16.142252px;}
.ws16{word-spacing:16.151321px;}
.ws17{word-spacing:17.699504px;}
.ws177{word-spacing:21.638767px;}
.ws2{word-spacing:26.788272px;}
.ws19{word-spacing:27.448877px;}
.ws3{word-spacing:40.049801px;}
.ws6{word-spacing:40.062708px;}
.ws4{word-spacing:40.068708px;}
.ws21{word-spacing:41.844000px;}
.ws65{word-spacing:332.352336px;}
._2{margin-left:-11.943245px;}
._3{margin-left:-9.683712px;}
._16{margin-left:-8.386050px;}
._4{margin-left:-6.635092px;}
._15{margin-left:-5.618906px;}
._9{margin-left:-4.602708px;}
._6{margin-left:-3.048833px;}
._0{margin-left:-1.959725px;}
._7{width:1.091170px;}
._5{width:2.888050px;}
._17{width:4.303811px;}
._21{width:5.831514px;}
._18{width:7.113671px;}
._1c{width:9.862974px;}
._24{width:11.917342px;}
._8{width:12.971268px;}
._e{width:14.822586px;}
._d{width:16.785101px;}
._b{width:17.968666px;}
._c{width:19.886000px;}
._11{width:21.698543px;}
._23{width:22.774504px;}
._19{width:24.674453px;}
._a{width:25.946136px;}
._14{width:27.197898px;}
._1d{width:29.170493px;}
._12{width:30.306229px;}
._25{width:32.265954px;}
._1{width:33.355008px;}
._1e{width:34.955856px;}
._13{width:36.044687px;}
._1b{width:38.224294px;}
._26{width:88.767360px;}
._f{width:897.592662px;}
._20{width:2104.188136px;}
._1a{width:2128.319656px;}
._1f{width:2489.054700px;}
._10{width:2512.964700px;}
._22{width:2524.376313px;}
.fc5{color:rgb(32,33,34);}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fs10{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs11{font-size:57.456000px;}
.fs1{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs13{font-size:64.800000px;}
.fs12{font-size:72.144000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y1a3{bottom:-273.262860px;}
.yc7{bottom:-252.145050px;}
.y146{bottom:-248.996550px;}
.y1d7{bottom:-233.230050px;}
.y17d{bottom:-212.419050px;}
.yd2{bottom:-188.696400px;}
.y14f{bottom:-178.437900px;}
.y193{bottom:-175.841550px;}
.y1bf{bottom:-175.090860px;}
.yd1{bottom:-171.325950px;}
.y1e2{bottom:-168.970500px;}
.y1e3{bottom:-168.970050px;}
.y14e{bottom:-161.067450px;}
.y1be{bottom:-154.354860px;}
.yd0{bottom:-154.045950px;}
.y1df{bottom:-151.600950px;}
.y1e0{bottom:-151.600050px;}
.y1e1{bottom:-147.820050px;}
.y14d{bottom:-143.697000px;}
.y186{bottom:-139.789350px;}
.y187{bottom:-139.789050px;}
.ycf{bottom:-136.765950px;}
.y1de{bottom:-134.230500px;}
.y1bd{bottom:-133.403400px;}
.y14c{bottom:-126.417000px;}
.y185{bottom:-122.418900px;}
.yce{bottom:-119.395500px;}
.y1dd{bottom:-117.040950px;}
.y1bc{bottom:-112.667400px;}
.y14b{bottom:-109.137000px;}
.y19a{bottom:-105.461550px;}
.y199{bottom:-105.461100px;}
.y183{bottom:-105.139500px;}
.y184{bottom:-105.138900px;}
.ycd{bottom:-102.115500px;}
.y1dc{bottom:-99.670500px;}
.y1bb{bottom:-91.931400px;}
.y14a{bottom:-91.857000px;}
.y198{bottom:-88.001550px;}
.y182{bottom:-87.859500px;}
.ycc{bottom:-84.925950px;}
.y1db{bottom:-82.390500px;}
.y149{bottom:-74.486550px;}
.y1ba{bottom:-71.195400px;}
.y197{bottom:-70.721550px;}
.y181{bottom:-70.579500px;}
.ycb{bottom:-67.555500px;}
.y1da{bottom:-65.020050px;}
.y148{bottom:-57.206550px;}
.y196{bottom:-53.441550px;}
.y180{bottom:-53.209050px;}
.y1b9{bottom:-50.350860px;}
.yca{bottom:-50.185050px;}
.y1d9{bottom:-47.740050px;}
.y195{bottom:-36.161550px;}
.y17f{bottom:-35.929050px;}
.yc9{bottom:-32.905050px;}
.y147{bottom:-26.067081px;}
.y1d8{bottom:-25.330581px;}
.y1b8{bottom:-23.451635px;}
.y194{bottom:-13.661838px;}
.y17e{bottom:-13.519545px;}
.yc8{bottom:-10.495716px;}
.y0{bottom:0.000000px;}
.yd{bottom:3.425340px;}
.yc{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y56{bottom:31.890000px;}
.ydc{bottom:85.300500px;}
.y118{bottom:100.419000px;}
.y20d{bottom:102.211500px;}
.y29{bottom:102.823500px;}
.y2a3{bottom:103.557000px;}
.ydb{bottom:104.533500px;}
.y1f1{bottom:112.632000px;}
.y236{bottom:113.241000px;}
.y19f{bottom:115.882500px;}
.y18f{bottom:116.515500px;}
.y117{bottom:119.248500px;}
.y26a{bottom:120.414000px;}
.y28{bottom:120.711000px;}
.y2a2{bottom:120.817500px;}
.y20c{bottom:121.041000px;}
.y8b{bottom:121.920000px;}
.yda{bottom:123.766500px;}
.y235{bottom:130.815000px;}
.y1ef{bottom:131.865000px;}
.y19e{bottom:135.115500px;}
.y18e{bottom:135.748500px;}
.y1f0{bottom:136.747500px;}
.y269{bottom:137.674500px;}
.y115{bottom:138.078000px;}
.y27{bottom:138.600000px;}
.y20b{bottom:139.870500px;}
.y8a{bottom:140.749500px;}
.yd9{bottom:142.999500px;}
.y116{bottom:143.502000px;}
.y157{bottom:144.267000px;}
.y1ee{bottom:148.476000px;}
.y1ed{bottom:151.098000px;}
.yc3{bottom:151.789500px;}
.y18d{bottom:152.358000px;}
.y19d{bottom:154.348500px;}
.y268{bottom:154.935000px;}
.y18c{bottom:154.981500px;}
.y2a1{bottom:155.338500px;}
.y26{bottom:156.487500px;}
.y114{bottom:156.907500px;}
.y234{bottom:157.356000px;}
.y20a{bottom:158.700000px;}
.y89{bottom:159.579000px;}
.yd8{bottom:162.232500px;}
.y156{bottom:163.500000px;}
.y1eb{bottom:167.709000px;}
.y1ea{bottom:170.331000px;}
.yc2{bottom:170.619000px;}
.y267{bottom:172.195500px;}
.y2a0{bottom:172.599000px;}
.y19c{bottom:173.581500px;}
.y18b{bottom:174.214500px;}
.y25{bottom:174.375000px;}
.y233{bottom:174.930000px;}
.y1ec{bottom:175.213500px;}
.y209{bottom:177.529500px;}
.y88{bottom:178.408500px;}
.y55{bottom:178.732500px;}
.y113{bottom:180.220500px;}
.yd7{bottom:181.465500px;}
.y155{bottom:182.733000px;}
.yc1{bottom:189.448500px;}
.y266{bottom:189.456000px;}
.y1e9{bottom:189.564000px;}
.y29f{bottom:189.858000px;}
.y24{bottom:192.264000px;}
.y232{bottom:192.504000px;}
.y19b{bottom:192.813000px;}
.y18a{bottom:193.447500px;}
.y208{bottom:196.359000px;}
.y87{bottom:197.238000px;}
.yd6{bottom:200.698500px;}
.y154{bottom:201.966000px;}
.y265{bottom:206.716500px;}
.y29e{bottom:207.118500px;}
.ybf{bottom:208.278000px;}
.y1e8{bottom:208.797000px;}
.y231{bottom:210.078000px;}
.y23{bottom:210.151500px;}
.y189{bottom:212.679000px;}
.yc0{bottom:213.702000px;}
.y112{bottom:213.844500px;}
.y207{bottom:215.188500px;}
.y190{bottom:215.242500px;}
.y86{bottom:216.067500px;}
.y54{bottom:216.121500px;}
.yd5{bottom:219.931500px;}
.y153{bottom:221.199000px;}
.y264{bottom:223.975500px;}
.y29d{bottom:224.379000px;}
.ybe{bottom:227.107500px;}
.y230{bottom:227.652000px;}
.y1e7{bottom:228.030000px;}
.y22{bottom:228.039000px;}
.y188{bottom:231.912000px;}
.y111{bottom:232.674000px;}
.y179{bottom:233.569500px;}
.y206{bottom:234.018000px;}
.y53{bottom:235.579500px;}
.yd4{bottom:239.163000px;}
.y85{bottom:239.380500px;}
.y152{bottom:240.432000px;}
.y263{bottom:241.236000px;}
.y29c{bottom:241.639500px;}
.y22f{bottom:245.226000px;}
.ybc{bottom:245.937000px;}
.y1e6{bottom:247.263000px;}
.ybd{bottom:251.361000px;}
.y110{bottom:251.503500px;}
.y178{bottom:252.399000px;}
.y205{bottom:252.847500px;}
.y17a{bottom:254.341500px;}
.y52{bottom:255.036000px;}
.yd3{bottom:258.396000px;}
.y262{bottom:258.496500px;}
.y29b{bottom:258.900000px;}
.y84{bottom:259.554000px;}
.y151{bottom:259.663500px;}
.y22e{bottom:262.800000px;}
.ybb{bottom:264.766500px;}
.y1e5{bottom:266.494500px;}
.y10f{bottom:270.333000px;}
.y177{bottom:271.228500px;}
.y204{bottom:271.677000px;}
.y51{bottom:274.492500px;}
.y261{bottom:275.757000px;}
.y29a{bottom:276.160500px;}
.y1d3{bottom:276.577500px;}
.y150{bottom:278.896500px;}
.y22d{bottom:280.374000px;}
.yc4{bottom:280.825500px;}
.yba{bottom:283.596000px;}
.y1e4{bottom:285.727500px;}
.y10e{bottom:289.162500px;}
.y176{bottom:290.058000px;}
.y203{bottom:290.506500px;}
.y142{bottom:292.747500px;}
.y260{bottom:293.017500px;}
.y83{bottom:293.178000px;}
.y299{bottom:293.421000px;}
.y50{bottom:293.950500px;}
.y1d2{bottom:295.407000px;}
.y22c{bottom:297.949500px;}
.y143{bottom:301.326000px;}
.yb9{bottom:302.425500px;}
.y21{bottom:307.299000px;}
.y10d{bottom:307.990500px;}
.y1d4{bottom:308.157000px;}
.y175{bottom:308.887500px;}
.y202{bottom:309.336000px;}
.y25f{bottom:310.278000px;}
.y298{bottom:310.681500px;}
.y141{bottom:311.577000px;}
.y82{bottom:312.007500px;}
.y4f{bottom:313.407000px;}
.y1d1{bottom:314.236500px;}
.y22b{bottom:315.523500px;}
.yb8{bottom:321.255000px;}
.y20{bottom:325.186500px;}
.y10c{bottom:326.820000px;}
.y25e{bottom:327.538500px;}
.y174{bottom:327.717000px;}
.y297{bottom:327.940500px;}
.y201{bottom:328.165500px;}
.y4e{bottom:330.241500px;}
.y140{bottom:330.406500px;}
.y81{bottom:330.837000px;}
.y4d{bottom:332.865000px;}
.y1d0{bottom:333.066000px;}
.yb7{bottom:340.084500px;}
.y1f{bottom:343.074000px;}
.y25d{bottom:344.799000px;}
.y296{bottom:345.201000px;}
.y10b{bottom:345.649500px;}
.y173{bottom:346.546500px;}
.y200{bottom:346.995000px;}
.y1cf{bottom:349.165500px;}
.y13f{bottom:349.236000px;}
.y80{bottom:349.666500px;}
.y22a{bottom:351.030000px;}
.y1ce{bottom:351.895500px;}
.y4c{bottom:352.321500px;}
.yb6{bottom:358.914000px;}
.y1e{bottom:360.963000px;}
.y10a{bottom:361.749000px;}
.y25c{bottom:362.059500px;}
.y295{bottom:362.461500px;}
.y109{bottom:364.479000px;}
.y172{bottom:365.376000px;}
.y1ff{bottom:365.824500px;}
.y13e{bottom:368.065500px;}
.y7f{bottom:368.496000px;}
.y229{bottom:369.859500px;}
.y1cd{bottom:370.725000px;}
.y4b{bottom:371.778000px;}
.yb5{bottom:377.742000px;}
.y25b{bottom:379.318500px;}
.y294{bottom:379.722000px;}
.y108{bottom:383.308500px;}
.y171{bottom:384.205500px;}
.y1fe{bottom:384.654000px;}
.y13d{bottom:386.895000px;}
.y7e{bottom:387.325500px;}
.y228{bottom:388.689000px;}
.y1cb{bottom:389.554500px;}
.y49{bottom:391.236000px;}
.y1cc{bottom:394.978500px;}
.y4a{bottom:396.117000px;}
.yb4{bottom:396.571500px;}
.y25a{bottom:396.579000px;}
.y293{bottom:396.982500px;}
.y1d{bottom:399.024000px;}
.y107{bottom:399.408000px;}
.y106{bottom:402.138000px;}
.y170{bottom:403.035000px;}
.y1fd{bottom:403.483500px;}
.y1ca{bottom:405.654000px;}
.y13c{bottom:405.724500px;}
.y7d{bottom:406.155000px;}
.y227{bottom:407.518500px;}
.y1c9{bottom:408.384000px;}
.y48{bottom:410.692500px;}
.y259{bottom:413.839500px;}
.y291{bottom:414.243000px;}
.yb3{bottom:415.401000px;}
.y1c{bottom:416.913000px;}
.y292{bottom:419.125500px;}
.y105{bottom:420.967500px;}
.y16f{bottom:421.864500px;}
.y1fc{bottom:422.313000px;}
.y13b{bottom:424.554000px;}
.y7c{bottom:424.984500px;}
.y226{bottom:426.348000px;}
.y1c8{bottom:427.213500px;}
.y47{bottom:430.149000px;}
.y258{bottom:431.100000px;}
.y290{bottom:431.503500px;}
.y1b{bottom:434.800500px;}
.yb2{bottom:438.714000px;}
.y16e{bottom:440.694000px;}
.y1fb{bottom:441.142500px;}
.y13a{bottom:443.383500px;}
.y7b{bottom:443.814000px;}
.y104{bottom:444.280500px;}
.y225{bottom:445.177500px;}
.y1c7{bottom:446.043000px;}
.y257{bottom:448.360500px;}
.y28f{bottom:448.764000px;}
.y46{bottom:449.607000px;}
.y16d{bottom:459.523500px;}
.y1fa{bottom:459.972000px;}
.y139{bottom:462.213000px;}
.y7a{bottom:462.643500px;}
.y224{bottom:464.007000px;}
.y256{bottom:465.621000px;}
.y28e{bottom:466.024500px;}
.y45{bottom:469.063500px;}
.y1a{bottom:470.622000px;}
.yb1{bottom:472.338000px;}
.y103{bottom:477.904500px;}
.y16c{bottom:478.353000px;}
.y1f9{bottom:478.801500px;}
.y1c6{bottom:479.608500px;}
.y138{bottom:481.042500px;}
.y79{bottom:481.473000px;}
.y223{bottom:482.836500px;}
.y255{bottom:482.881500px;}
.y28d{bottom:483.283500px;}
.y44{bottom:488.521500px;}
.yb0{bottom:491.167500px;}
.y102{bottom:496.734000px;}
.y16b{bottom:497.182500px;}
.y1f8{bottom:497.631000px;}
.y1c5{bottom:498.841500px;}
.y137{bottom:499.872000px;}
.y254{bottom:500.142000px;}
.y78{bottom:500.302500px;}
.y28c{bottom:500.544000px;}
.y222{bottom:501.666000px;}
.y19{bottom:506.442000px;}
.yaf{bottom:509.997000px;}
.y101{bottom:515.563500px;}
.y16a{bottom:516.012000px;}
.y1f7{bottom:516.460500px;}
.y253{bottom:517.401000px;}
.y28b{bottom:517.804500px;}
.y1c4{bottom:518.074500px;}
.y136{bottom:518.701500px;}
.y77{bottom:519.132000px;}
.y221{bottom:520.495500px;}
.y18{bottom:524.329500px;}
.y43{bottom:527.106000px;}
.yae{bottom:528.826500px;}
.y100{bottom:534.393000px;}
.y252{bottom:534.661500px;}
.y169{bottom:534.841500px;}
.y28a{bottom:535.065000px;}
.y1f6{bottom:535.290000px;}
.y1c3{bottom:537.307500px;}
.y135{bottom:537.531000px;}
.y76{bottom:537.961500px;}
.y220{bottom:539.323500px;}
.y17{bottom:542.218500px;}
.y42{bottom:543.246000px;}
.yad{bottom:544.926000px;}
.yac{bottom:547.656000px;}
.y251{bottom:551.922000px;}
.y289{bottom:552.325500px;}
.yff{bottom:553.222500px;}
.y168{bottom:553.671000px;}
.y1f5{bottom:554.118000px;}
.y134{bottom:556.360500px;}
.y1c2{bottom:556.539000px;}
.y75{bottom:556.791000px;}
.y21f{bottom:558.153000px;}
.y41{bottom:559.386000px;}
.y16{bottom:560.106000px;}
.y40{bottom:563.725500px;}
.yab{bottom:563.755500px;}
.yaa{bottom:566.485500px;}
.y250{bottom:569.182500px;}
.y288{bottom:569.586000px;}
.y167{bottom:572.500500px;}
.y1f4{bottom:572.947500px;}
.y133{bottom:575.190000px;}
.y3f{bottom:575.524500px;}
.y74{bottom:575.620500px;}
.y1c1{bottom:575.772000px;}
.yfe{bottom:576.535500px;}
.y21e{bottom:576.982500px;}
.y15{bottom:577.993500px;}
.y1b7{bottom:578.324916px;}
.ya9{bottom:585.315000px;}
.y24f{bottom:586.443000px;}
.y287{bottom:586.846500px;}
.y1f3{bottom:591.777000px;}
.y132{bottom:594.019500px;}
.y73{bottom:594.450000px;}
.y1c0{bottom:595.005000px;}
.y166{bottom:595.812000px;}
.y14{bottom:595.882500px;}
.y3e{bottom:596.004000px;}
.y1b6{bottom:601.436246px;}
.y24e{bottom:603.703500px;}
.y286{bottom:604.107000px;}
.y3d{bottom:607.804500px;}
.yfd{bottom:610.159500px;}
.y1f2{bottom:610.606500px;}
.y3c{bottom:612.144000px;}
.y131{bottom:612.849000px;}
.y72{bottom:613.279500px;}
.y13{bottom:613.770000px;}
.ya8{bottom:617.212500px;}
.y1a0{bottom:617.434500px;}
.y21d{bottom:619.125000px;}
.y24d{bottom:620.964000px;}
.y285{bottom:621.366000px;}
.y3b{bottom:623.943000px;}
.y1b5{bottom:624.439361px;}
.ya7{bottom:627.621000px;}
.y3a{bottom:628.282500px;}
.yfc{bottom:628.989000px;}
.y165{bottom:629.436000px;}
.y12{bottom:631.657500px;}
.y130{bottom:631.678500px;}
.y71{bottom:632.109000px;}
.y24c{bottom:638.224500px;}
.y284{bottom:638.626500px;}
.y39{bottom:644.422500px;}
.y1b4{bottom:647.550691px;}
.yfb{bottom:647.817000px;}
.y164{bottom:648.265500px;}
.y11{bottom:649.546500px;}
.y12f{bottom:650.508000px;}
.y70{bottom:650.938500px;}
.y21c{bottom:652.749000px;}
.y24b{bottom:655.483500px;}
.y283{bottom:655.887000px;}
.y38{bottom:656.223000px;}
.yfa{bottom:666.646500px;}
.y163{bottom:667.095000px;}
.y10{bottom:667.434000px;}
.y12e{bottom:669.337500px;}
.y6f{bottom:669.768000px;}
.y1b3{bottom:670.662022px;}
.ya6{bottom:670.681500px;}
.y21b{bottom:671.578500px;}
.y24a{bottom:672.744000px;}
.y282{bottom:673.147500px;}
.y37{bottom:676.702500px;}
.yf{bottom:685.321500px;}
.yf9{bottom:685.476000px;}
.y162{bottom:685.924500px;}
.y12d{bottom:688.167000px;}
.y6e{bottom:688.596000px;}
.ya5{bottom:689.511000px;}
.y249{bottom:690.004500px;}
.y21a{bottom:690.408000px;}
.y36{bottom:692.841000px;}
.y1b2{bottom:693.665136px;}
.ye{bottom:703.210500px;}
.yf8{bottom:704.305500px;}
.y35{bottom:704.641500px;}
.y161{bottom:704.754000px;}
.y12c{bottom:706.996500px;}
.y248{bottom:707.265000px;}
.y6d{bottom:707.425500px;}
.y281{bottom:707.668500px;}
.ya4{bottom:708.340500px;}
.y219{bottom:709.237500px;}
.y1b1{bottom:716.776466px;}
.yf7{bottom:720.405000px;}
.y34{bottom:720.781500px;}
.yf6{bottom:723.135000px;}
.y160{bottom:723.583500px;}
.y247{bottom:724.525500px;}
.y280{bottom:724.929000px;}
.yb{bottom:725.581464px;}
.y12b{bottom:725.826000px;}
.y6c{bottom:726.255000px;}
.ya2{bottom:727.170000px;}
.y218{bottom:728.067000px;}
.ya3{bottom:732.595500px;}
.y33{bottom:736.920000px;}
.yf5{bottom:739.234500px;}
.y1b0{bottom:739.781384px;}
.y32{bottom:741.259500px;}
.y246{bottom:741.786000px;}
.yf4{bottom:741.964500px;}
.y27f{bottom:742.189500px;}
.y15f{bottom:742.413000px;}
.y6b{bottom:745.084500px;}
.ya1{bottom:745.999500px;}
.y217{bottom:746.896500px;}
.y12a{bottom:749.137500px;}
.y31{bottom:757.399500px;}
.yf2{bottom:758.064000px;}
.y245{bottom:759.046500px;}
.y27e{bottom:759.450000px;}
.yf1{bottom:760.794000px;}
.y15e{bottom:761.242500px;}
.y1af{bottom:762.892715px;}
.y6a{bottom:763.914000px;}
.y9f{bottom:764.829000px;}
.y216{bottom:765.726000px;}
.yf3{bottom:766.219500px;}
.y30{bottom:769.200000px;}
.y129{bottom:769.312500px;}
.ya0{bottom:770.254500px;}
.y244{bottom:776.307000px;}
.y27d{bottom:776.709000px;}
.yf0{bottom:779.623500px;}
.y15d{bottom:780.072000px;}
.y69{bottom:782.743500px;}
.y9e{bottom:783.658500px;}
.y215{bottom:784.555500px;}
.y2f{bottom:785.338500px;}
.y1ae{bottom:786.004045px;}
.y243{bottom:793.567500px;}
.y27c{bottom:793.969500px;}
.y15c{bottom:798.901500px;}
.y9d{bottom:799.758000px;}
.y2e{bottom:801.478500px;}
.y68{bottom:801.573000px;}
.y9b{bottom:802.488000px;}
.yef{bottom:802.936500px;}
.y214{bottom:803.385000px;}
.y9c{bottom:807.913500px;}
.y1ad{bottom:809.007160px;}
.y27b{bottom:811.230000px;}
.y242{bottom:815.310000px;}
.y15b{bottom:817.731000px;}
.y67{bottom:820.402500px;}
.y9a{bottom:821.317500px;}
.y128{bottom:821.766000px;}
.y2d{bottom:821.958000px;}
.y213{bottom:822.214500px;}
.y27a{bottom:828.490500px;}
.y1ac{bottom:832.118490px;}
.y2c{bottom:833.757000px;}
.y15a{bottom:833.830500px;}
.yee{bottom:836.560500px;}
.y66{bottom:839.232000px;}
.y99{bottom:840.147000px;}
.y127{bottom:840.595500px;}
.y212{bottom:841.044000px;}
.y159{bottom:841.984500px;}
.y279{bottom:845.751000px;}
.y241{bottom:848.934000px;}
.y2b{bottom:849.897000px;}
.y158{bottom:852.660000px;}
.y1ab{bottom:855.229820px;}
.yec{bottom:855.390000px;}
.y65{bottom:858.061500px;}
.y98{bottom:858.976500px;}
.y126{bottom:859.425000px;}
.y211{bottom:859.873500px;}
.yed{bottom:860.814000px;}
.y278{bottom:863.011500px;}
.y2a{bottom:870.376500px;}
.yeb{bottom:874.219500px;}
.y240{bottom:875.475000px;}
.y64{bottom:876.891000px;}
.y1aa{bottom:878.234738px;}
.y125{bottom:878.254500px;}
.y210{bottom:878.703000px;}
.y277{bottom:880.272000px;}
.yc6{bottom:881.855535px;}
.y97{bottom:882.289500px;}
.y145{bottom:885.004035px;}
.yc5{bottom:891.664950px;}
.yea{bottom:893.049000px;}
.y144{bottom:894.813450px;}
.y63{bottom:895.720500px;}
.y20f{bottom:897.532500px;}
.y1d6{bottom:900.770535px;}
.y1a9{bottom:901.346069px;}
.y124{bottom:901.567500px;}
.ya{bottom:910.570500px;}
.y1d5{bottom:910.579950px;}
.ye8{bottom:911.878500px;}
.y62{bottom:914.550000px;}
.y275{bottom:914.791500px;}
.y276{bottom:914.793000px;}
.y96{bottom:915.913500px;}
.y20e{bottom:916.362000px;}
.ye9{bottom:917.302500px;}
.y23f{bottom:919.590000px;}
.y17c{bottom:921.581535px;}
.y1a8{bottom:924.350987px;}
.y9{bottom:929.400000px;}
.ye7{bottom:930.708000px;}
.y17b{bottom:931.390950px;}
.y274{bottom:932.052000px;}
.y61{bottom:933.379500px;}
.y95{bottom:934.743000px;}
.y123{bottom:935.191500px;}
.y23e{bottom:937.164000px;}
.y1a7{bottom:947.462317px;}
.y8{bottom:948.228000px;}
.y273{bottom:949.312500px;}
.ye6{bottom:949.537500px;}
.y60{bottom:952.209000px;}
.y94{bottom:953.572500px;}
.y122{bottom:954.021000px;}
.y192{bottom:958.159035px;}
.y23d{bottom:963.703500px;}
.y272{bottom:966.573000px;}
.y7{bottom:967.057500px;}
.y191{bottom:967.968450px;}
.ye5{bottom:968.367000px;}
.y1a6{bottom:970.573648px;}
.y5f{bottom:971.038500px;}
.y93{bottom:972.402000px;}
.y120{bottom:972.849000px;}
.y121{bottom:978.274500px;}
.y271{bottom:983.833500px;}
.ye4{bottom:987.196500px;}
.y5e{bottom:989.868000px;}
.y23c{bottom:990.244500px;}
.y92{bottom:991.231500px;}
.y11f{bottom:991.678500px;}
.y1a5{bottom:993.578566px;}
.y270{bottom:1001.094000px;}
.ye3{bottom:1006.026000px;}
.y23b{bottom:1007.818500px;}
.y5d{bottom:1008.697500px;}
.y90{bottom:1010.061000px;}
.y11e{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y91{bottom:1015.485000px;}
.y26f{bottom:1018.354500px;}
.y1a4{bottom:1022.089874px;}
.ye1{bottom:1024.855500px;}
.y23a{bottom:1025.392500px;}
.y5c{bottom:1027.527000px;}
.y8f{bottom:1028.890500px;}
.y11d{bottom:1029.337500px;}
.ye2{bottom:1030.279500px;}
.y26e{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y239{bottom:1042.966500px;}
.ydf{bottom:1043.685000px;}
.y5b{bottom:1046.356500px;}
.y11b{bottom:1048.167000px;}
.ye0{bottom:1049.109000px;}
.y8e{bottom:1052.202000px;}
.y26d{bottom:1052.875500px;}
.y11c{bottom:1053.592500px;}
.y238{bottom:1060.540500px;}
.yde{bottom:1062.513000px;}
.y5a{bottom:1065.186000px;}
.y11a{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y26c{bottom:1070.134500px;}
.ydd{bottom:1081.342500px;}
.y59{bottom:1084.015500px;}
.y8d{bottom:1085.826000px;}
.y237{bottom:1087.081500px;}
.y26b{bottom:1087.395000px;}
.y1a2{bottom:1087.537842px;}
.y3{bottom:1097.688000px;}
.y1a1{bottom:1099.309140px;}
.y119{bottom:1101.925500px;}
.y8c{bottom:1104.655500px;}
.y58{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y57{bottom:1173.397500px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.h2e{height:29.037733px;}
.hc{height:30.461558px;}
.hd{height:30.712615px;}
.h25{height:30.807422px;}
.h19{height:31.526842px;}
.h1a{height:33.072749px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h15{height:35.100320px;}
.h14{height:37.551283px;}
.h11{height:38.896243px;}
.h12{height:39.165235px;}
.h13{height:39.488026px;}
.h1b{height:41.482876px;}
.h1c{height:41.723369px;}
.h16{height:43.217759px;}
.h17{height:43.516637px;}
.h10{height:43.660208px;}
.h4{height:43.875290px;}
.h20{height:44.536816px;}
.h2d{height:49.117939px;}
.h22{height:50.229492px;}
.h2{height:50.931027px;}
.h2a{height:51.923953px;}
.h28{height:53.444180px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h18{height:54.575123px;}
.h21{height:55.922168px;}
.h2b{height:60.275391px;}
.h29{height:67.106602px;}
.h6{height:77.792486px;}
.h5{height:78.115277px;}
.h1d{height:86.703024px;}
.h3{height:102.503837px;}
.h1e{height:128.337024px;}
.h27{height:502.167600px;}
.h2c{height:811.444500px;}
.h23{height:818.275500px;}
.h1f{height:838.776000px;}
.h24{height:865.260000px;}
.h26{height:904.359000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w7{width:567.589950px;}
.w6{width:628.132800px;}
.w5{width:666.392550px;}
.w9{width:727.882200px;}
.w4{width:736.295250px;}
.w8{width:743.506200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xdb{left:-93.990600px;}
.xcc{left:-74.023050px;}
.xbb{left:-72.761700px;}
.xde{left:-55.758600px;}
.xcd{left:-42.163050px;}
.xbd{left:-40.901700px;}
.xa1{left:-30.087450px;}
.x56{left:-25.620750px;}
.xea{left:-22.729800px;}
.x0{left:0.000000px;}
.xa3{left:1.772550px;}
.x58{left:6.239250px;}
.xec{left:9.131004px;}
.xeb{left:19.840200px;}
.xed{left:24.520200px;}
.x3{left:29.274117px;}
.xee{left:35.140200px;}
.xef{left:39.280200px;}
.x1{left:54.000000px;}
.x2{left:58.056593px;}
.xda{left:74.706000px;}
.x55{left:78.309750px;}
.xe9{left:82.516800px;}
.x126{left:84.645000px;}
.x59{left:85.890000px;}
.x61{left:89.929500px;}
.x12d{left:93.262500px;}
.xfb{left:97.012500px;}
.xd5{left:98.106000px;}
.x62{left:99.639000px;}
.xfc{left:102.990000px;}
.xa0{left:113.260950px;}
.xfd{left:122.844000px;}
.xba{left:132.391200px;}
.x68{left:134.337000px;}
.xdc{left:140.693832px;}
.xa4{left:143.166000px;}
.x6e{left:144.226500px;}
.x69{left:145.540500px;}
.x5a{left:150.628500px;}
.x66{left:158.628000px;}
.xcb{left:162.662550px;}
.x67{left:166.105500px;}
.xbe{left:172.308300px;}
.xbf{left:176.448300px;}
.xdd{left:178.924741px;}
.xc0{left:187.068300px;}
.xa5{left:191.484000px;}
.xf6{left:197.340000px;}
.xa6{left:200.454000px;}
.xf7{left:207.804000px;}
.xc2{left:209.202000px;}
.xc3{left:218.172000px;}
.xc5{left:227.865000px;}
.x5d{left:229.957500px;}
.xc6{left:236.082000px;}
.xae{left:238.276500px;}
.xc7{left:241.587000px;}
.xaf{left:243.508500px;}
.xc8{left:247.564500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xdf{left:253.428000px;}
.xc9{left:258.346500px;}
.xca{left:267.868500px;}
.x5{left:271.221000px;}
.xc4{left:273.751500px;}
.x5e{left:274.878000px;}
.x42{left:277.213500px;}
.x109{left:281.220000px;}
.x10{left:282.786000px;}
.x43{left:286.444500px;}
.xce{left:292.186950px;}
.xf0{left:295.060200px;}
.xcf{left:296.326950px;}
.x94{left:298.900500px;}
.xfa{left:299.997000px;}
.xb1{left:301.674000px;}
.x95{left:305.326500px;}
.x87{left:306.655500px;}
.xf1{left:309.820200px;}
.xd0{left:310.996950px;}
.x7{left:312.394500px;}
.xf2{left:313.960200px;}
.x23{left:317.427000px;}
.x5f{left:320.080500px;}
.x44{left:321.198000px;}
.x24{left:324.898500px;}
.x60{left:329.052000px;}
.x75{left:331.378500px;}
.xd6{left:333.105000px;}
.xb2{left:335.908500px;}
.x45{left:336.966000px;}
.x11c{left:338.119500px;}
.xb6{left:340.321500px;}
.xb3{left:347.572500px;}
.x98{left:352.072500px;}
.x108{left:353.712000px;}
.x46{left:355.143000px;}
.xb4{left:357.723000px;}
.x99{left:358.878000px;}
.x96{left:361.311000px;}
.x7a{left:363.126000px;}
.x9d{left:364.410000px;}
.x91{left:365.932500px;}
.x6a{left:368.440500px;}
.x74{left:369.777000px;}
.x6d{left:371.103000px;}
.x123{left:373.665000px;}
.x92{left:375.162000px;}
.x21{left:376.728000px;}
.x7b{left:378.618000px;}
.x2b{left:380.563500px;}
.x2d{left:383.068500px;}
.x22{left:384.199500px;}
.xfe{left:385.926000px;}
.x8{left:387.642000px;}
.xb5{left:390.291000px;}
.x122{left:392.022000px;}
.x8e{left:394.212000px;}
.x2c{left:395.508000px;}
.x2e{left:398.013000px;}
.x63{left:399.835500px;}
.xa7{left:401.251500px;}
.x25{left:402.573000px;}
.x7c{left:403.575000px;}
.x9{left:405.321000px;}
.x7d{left:410.382000px;}
.xa8{left:412.455000px;}
.x118{left:415.240500px;}
.x26{left:417.517500px;}
.x48{left:423.319500px;}
.x15{left:424.891500px;}
.x93{left:428.926500px;}
.x8f{left:430.429500px;}
.x16{left:432.363000px;}
.x49{left:435.124500px;}
.x17{left:436.174500px;}
.x10f{left:438.139500px;}
.x90{left:439.659000px;}
.x4a{left:441.550500px;}
.x18{left:443.646000px;}
.x72{left:447.036000px;}
.x88{left:448.654500px;}
.xc1{left:451.128300px;}
.x19{left:454.645500px;}
.x3a{left:456.738000px;}
.x8c{left:458.923500px;}
.x1f{left:460.237500px;}
.x1a{left:462.117000px;}
.x11e{left:463.609500px;}
.x9b{left:465.037500px;}
.x73{left:466.546500px;}
.x20{left:467.709000px;}
.x47{left:470.064000px;}
.x3b{left:472.692000px;}
.x114{left:474.256500px;}
.x76{left:475.857000px;}
.xb7{left:479.544000px;}
.xf4{left:480.730200px;}
.x89{left:482.694000px;}
.x115{left:483.723000px;}
.xf5{left:484.870200px;}
.x3c{left:487.336500px;}
.xf8{left:488.422500px;}
.xe0{left:489.622500px;}
.x77{left:491.625000px;}
.xf3{left:493.600200px;}
.x3d{left:497.424000px;}
.x8a{left:499.186500px;}
.x10b{left:500.620500px;}
.x64{left:502.677000px;}
.x9c{left:504.342000px;}
.x8b{left:505.612500px;}
.xd3{left:506.650500px;}
.x81{left:508.414500px;}
.x65{left:510.895500px;}
.x119{left:513.150000px;}
.x11b{left:515.520000px;}
.xd4{left:517.854000px;}
.x1b{left:520.239000px;}
.x110{left:522.279000px;}
.x1c{left:527.710500px;}
.xff{left:528.744000px;}
.x101{left:530.323500px;}
.xb8{left:532.186500px;}
.xd7{left:533.653500px;}
.x102{left:536.301000px;}
.xe4{left:537.630000px;}
.xd8{left:544.857000px;}
.xb9{left:547.129500px;}
.x116{left:548.478000px;}
.x10c{left:549.882000px;}
.x103{left:552.702000px;}
.x29{left:554.245500px;}
.xe5{left:555.579000px;}
.x82{left:561.385500px;}
.x117{left:562.674000px;}
.x10d{left:564.078000px;}
.xa{left:567.399000px;}
.x2a{left:569.190000px;}
.xb{left:575.583000px;}
.x11d{left:576.999000px;}
.x13{left:578.881500px;}
.x35{left:581.640000px;}
.x9e{left:584.425500px;}
.x14{left:586.353000px;}
.x10e{left:589.882500px;}
.x52{left:591.676500px;}
.xf9{left:592.735500px;}
.x100{left:594.493500px;}
.x2f{left:596.137500px;}
.x9f{left:598.203000px;}
.x36{left:599.490000px;}
.xa9{left:601.402500px;}
.xab{left:603.423000px;}
.x53{left:606.621000px;}
.xaa{left:609.621000px;}
.x30{left:611.080500px;}
.x37{left:613.836000px;}
.x31{left:620.874000px;}
.x32{left:627.681000px;}
.xc{left:628.822500px;}
.xe6{left:633.166500px;}
.xd{left:634.800000px;}
.x3e{left:637.309500px;}
.x6f{left:639.438000px;}
.xd9{left:643.384500px;}
.xe{left:645.160500px;}
.x70{left:647.656500px;}
.xbc{left:649.665838px;}
.x104{left:651.000000px;}
.x3f{left:653.263500px;}
.xe2{left:654.369000px;}
.xf{left:656.875500px;}
.x11f{left:662.100000px;}
.xd1{left:663.585000px;}
.x40{left:667.908000px;}
.xac{left:669.010500px;}
.x41{left:677.997000px;}
.xad{left:680.214000px;}
.xa2{left:682.258984px;}
.x4b{left:687.588000px;}
.x127{left:692.634000px;}
.x4c{left:694.014000px;}
.x105{left:696.678000px;}
.x33{left:701.362500px;}
.x4d{left:705.994500px;}
.x12e{left:707.065500px;}
.x34{left:708.169500px;}
.x78{left:714.189000px;}
.x4e{left:716.892000px;}
.x128{left:719.533500px;}
.x9a{left:721.560000px;}
.x8d{left:724.257000px;}
.x79{left:729.957000px;}
.xe3{left:732.879000px;}
.x85{left:734.011500px;}
.xe1{left:735.579000px;}
.x38{left:737.461500px;}
.x57{left:739.646221px;}
.x54{left:742.129500px;}
.x39{left:744.118500px;}
.x86{left:746.253000px;}
.x120{left:749.343000px;}
.x11{left:750.436500px;}
.xb0{left:751.477500px;}
.x10a{left:752.566500px;}
.x4f{left:754.488000px;}
.x12{left:757.908000px;}
.x111{left:760.387500px;}
.x106{left:762.019500px;}
.x121{left:764.287500px;}
.x6b{left:765.421500px;}
.x83{left:767.503500px;}
.x6c{left:770.652000px;}
.x112{left:772.755000px;}
.x84{left:774.310500px;}
.x1d{left:775.563000px;}
.x107{left:776.964000px;}
.x124{left:781.662000px;}
.x1e{left:783.034500px;}
.x11a{left:784.894500px;}
.x129{left:789.246000px;}
.x12c{left:790.372500px;}
.x7e{left:791.445000px;}
.x5b{left:793.336500px;}
.xd2{left:795.009000px;}
.x5c{left:803.800500px;}
.x113{left:806.274000px;}
.x125{left:808.561500px;}
.x12b{left:810.363000px;}
.xe7{left:812.137500px;}
.x12a{left:816.145500px;}
.x27{left:817.698000px;}
.x50{left:819.543000px;}
.x7f{left:821.724000px;}
.x71{left:823.714500px;}
.x51{left:826.350000px;}
.x80{left:828.529500px;}
.x97{left:830.428500px;}
.x28{left:832.642500px;}
.xe8{left:836.970000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v3{vertical-align:-15.429333pt;}
.v7{vertical-align:-9.301333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:26.672000pt;}
.v5{vertical-align:35.413333pt;}
.v9{vertical-align:37.008000pt;}
.v4{vertical-align:74.944000pt;}
.v8{vertical-align:111.392000pt;}
.ls5b{letter-spacing:-0.446400pt;}
.ls37{letter-spacing:-0.403200pt;}
.ls8f{letter-spacing:-0.362880pt;}
.ls63{letter-spacing:-0.355200pt;}
.ls90{letter-spacing:-0.276480pt;}
.ls4c{letter-spacing:-0.244800pt;}
.ls4f{letter-spacing:-0.225600pt;}
.ls5a{letter-spacing:-0.192000pt;}
.ls82{letter-spacing:-0.179558pt;}
.ls8b{letter-spacing:-0.161280pt;}
.ls84{letter-spacing:-0.147494pt;}
.ls7f{letter-spacing:-0.141082pt;}
.ls4e{letter-spacing:-0.129600pt;}
.ls31{letter-spacing:-0.124800pt;}
.ls81{letter-spacing:-0.115430pt;}
.ls5c{letter-spacing:-0.110400pt;}
.ls87{letter-spacing:-0.109018pt;}
.ls7c{letter-spacing:-0.097037pt;}
.ls89{letter-spacing:-0.096192pt;}
.ls8a{letter-spacing:-0.083366pt;}
.ls2f{letter-spacing:-0.076608pt;}
.ls8d{letter-spacing:-0.074880pt;}
.ls3a{letter-spacing:-0.072000pt;}
.ls4d{letter-spacing:-0.067200pt;}
.ls85{letter-spacing:-0.064128pt;}
.ls8e{letter-spacing:-0.057600pt;}
.ls7b{letter-spacing:-0.056179pt;}
.ls80{letter-spacing:-0.051302pt;}
.ls83{letter-spacing:-0.044890pt;}
.ls34{letter-spacing:-0.038400pt;}
.ls2e{letter-spacing:-0.038304pt;}
.ls8c{letter-spacing:-0.034560pt;}
.ls36{letter-spacing:-0.033600pt;}
.ls7e{letter-spacing:-0.025651pt;}
.ls32{letter-spacing:-0.024000pt;}
.ls91{letter-spacing:-0.023040pt;}
.ls64{letter-spacing:-0.019200pt;}
.ls7d{letter-spacing:-0.015322pt;}
.ls38{letter-spacing:-0.014400pt;}
.ls86{letter-spacing:-0.012826pt;}
.ls39{letter-spacing:-0.009600pt;}
.ls88{letter-spacing:-0.006413pt;}
.ls35{letter-spacing:-0.004800pt;}
.ls30{letter-spacing:-0.004256pt;}
.lse{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000106pt;}
.ls9e{letter-spacing:0.000366pt;}
.ls55{letter-spacing:0.000375pt;}
.lsa4{letter-spacing:0.000441pt;}
.ls9c{letter-spacing:0.000711pt;}
.ls12{letter-spacing:0.000720pt;}
.ls56{letter-spacing:0.000751pt;}
.ls9d{letter-spacing:0.000921pt;}
.ls57{letter-spacing:0.001007pt;}
.ls3c{letter-spacing:0.001012pt;}
.ls9a{letter-spacing:0.001026pt;}
.lsa1{letter-spacing:0.001173pt;}
.ls9b{letter-spacing:0.001408pt;}
.ls97{letter-spacing:0.001552pt;}
.ls9{letter-spacing:0.001707pt;}
.ls3e{letter-spacing:0.001774pt;}
.lsa5{letter-spacing:0.001816pt;}
.ls8{letter-spacing:0.001953pt;}
.lsa2{letter-spacing:0.001973pt;}
.ls11{letter-spacing:0.002108pt;}
.ls59{letter-spacing:0.002185pt;}
.ls9f{letter-spacing:0.002262pt;}
.ls3d{letter-spacing:0.002370pt;}
.lsa9{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.004800pt;}
.ls78{letter-spacing:0.005760pt;}
.ls94{letter-spacing:0.005888pt;}
.ls69{letter-spacing:0.006413pt;}
.ls20{letter-spacing:0.009600pt;}
.ls68{letter-spacing:0.012826pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls70{letter-spacing:0.017280pt;}
.ls29{letter-spacing:0.019200pt;}
.ls73{letter-spacing:0.023040pt;}
.ls27{letter-spacing:0.024000pt;}
.ls43{letter-spacing:0.028800pt;}
.ls24{letter-spacing:0.033600pt;}
.ls72{letter-spacing:0.034560pt;}
.ls42{letter-spacing:0.038400pt;}
.ls6e{letter-spacing:0.038477pt;}
.ls75{letter-spacing:0.040320pt;}
.ls26{letter-spacing:0.043200pt;}
.ls21{letter-spacing:0.048000pt;}
.ls6b{letter-spacing:0.051302pt;}
.ls79{letter-spacing:0.051840pt;}
.ls45{letter-spacing:0.052800pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls40{letter-spacing:0.062400pt;}
.ls6c{letter-spacing:0.064128pt;}
.ls6d{letter-spacing:0.070541pt;}
.ls2a{letter-spacing:0.072000pt;}
.ls51{letter-spacing:0.076800pt;}
.ls6f{letter-spacing:0.076954pt;}
.ls23{letter-spacing:0.081600pt;}
.ls6a{letter-spacing:0.083366pt;}
.ls93{letter-spacing:0.086400pt;}
.ls41{letter-spacing:0.091200pt;}
.ls77{letter-spacing:0.092160pt;}
.ls52{letter-spacing:0.100800pt;}
.ls28{letter-spacing:0.105600pt;}
.ls22{letter-spacing:0.110400pt;}
.ls76{letter-spacing:0.115200pt;}
.ls44{letter-spacing:0.120000pt;}
.ls25{letter-spacing:0.129600pt;}
.ls74{letter-spacing:0.132480pt;}
.ls1d{letter-spacing:0.161728pt;}
.ls65{letter-spacing:0.163200pt;}
.ls1c{letter-spacing:0.170240pt;}
.ls67{letter-spacing:0.183859pt;}
.ls66{letter-spacing:0.194074pt;}
.ls33{letter-spacing:0.340800pt;}
.ls50{letter-spacing:0.432000pt;}
.lsb{letter-spacing:0.447791pt;}
.ls3b{letter-spacing:0.482502pt;}
.ls13{letter-spacing:0.487835pt;}
.ls16{letter-spacing:0.596214pt;}
.ls18{letter-spacing:0.601548pt;}
.ls17{letter-spacing:0.637762pt;}
.ls92{letter-spacing:0.806400pt;}
.lsf{letter-spacing:1.133683pt;}
.ls14{letter-spacing:1.299096pt;}
.ls5{letter-spacing:1.654338pt;}
.ls5d{letter-spacing:1.766400pt;}
.ls46{letter-spacing:2.404800pt;}
.ls71{letter-spacing:2.494080pt;}
.ls3{letter-spacing:2.651733pt;}
.ls58{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls47{letter-spacing:2.726400pt;}
.ls5e{letter-spacing:4.968000pt;}
.ls15{letter-spacing:8.072161pt;}
.ls6{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.lsab{letter-spacing:11.732771pt;}
.ls7a{letter-spacing:11.769805pt;}
.lsa0{letter-spacing:11.799012pt;}
.ls62{letter-spacing:11.950933pt;}
.lsc{letter-spacing:11.954133pt;}
.ls2d{letter-spacing:11.956267pt;}
.ls99{letter-spacing:11.959467pt;}
.ls54{letter-spacing:11.966302pt;}
.lsad{letter-spacing:11.972583pt;}
.lsa8{letter-spacing:11.991573pt;}
.ls60{letter-spacing:12.008409pt;}
.ls61{letter-spacing:12.013786pt;}
.ls5f{letter-spacing:12.051420pt;}
.ls49{letter-spacing:12.105292pt;}
.ls48{letter-spacing:12.110955pt;}
.lsa6{letter-spacing:12.117601pt;}
.ls96{letter-spacing:12.122881pt;}
.ls53{letter-spacing:12.172420pt;}
.lsac{letter-spacing:12.468329pt;}
.ls95{letter-spacing:12.904446pt;}
.ls4a{letter-spacing:13.045622pt;}
.ls1b{letter-spacing:13.087310pt;}
.ls2{letter-spacing:13.283733pt;}
.ls4b{letter-spacing:13.312289pt;}
.ls3f{letter-spacing:13.315262pt;}
.lsa3{letter-spacing:13.493166pt;}
.lsaa{letter-spacing:13.665715pt;}
.lsa7{letter-spacing:13.702316pt;}
.ls1a{letter-spacing:13.923096pt;}
.ls19{letter-spacing:14.605494pt;}
.ls98{letter-spacing:16.018656pt;}
.ls2c{letter-spacing:18.263923pt;}
.ls7{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.wsb6{word-spacing:-48.000000pt;}
.ws10a{word-spacing:-14.400000pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws109{word-spacing:-12.962074pt;}
.ws5{word-spacing:-12.760670pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws31{word-spacing:-11.955200pt;}
.ws6b{word-spacing:-10.810240pt;}
.ws1e{word-spacing:-10.626800pt;}
.wsb{word-spacing:-10.095467pt;}
.wsf{word-spacing:-9.298400pt;}
.ws126{word-spacing:-3.732250pt;}
.ws125{word-spacing:-3.693773pt;}
.ws128{word-spacing:-3.411610pt;}
.ws12e{word-spacing:-3.366720pt;}
.ws12d{word-spacing:-3.353894pt;}
.wsbe{word-spacing:-2.808000pt;}
.wsbc{word-spacing:-2.779200pt;}
.wsbf{word-spacing:-2.755200pt;}
.wsbd{word-spacing:-2.736000pt;}
.wsbb{word-spacing:-2.712000pt;}
.wsd9{word-spacing:-2.709827pt;}
.wsd8{word-spacing:-2.656693pt;}
.ws17a{word-spacing:-2.444158pt;}
.ws57{word-spacing:-2.284756pt;}
.wsa3{word-spacing:-2.231622pt;}
.ws12a{word-spacing:-2.154701pt;}
.ws156{word-spacing:-2.131200pt;}
.wsb1{word-spacing:-2.125355pt;}
.ws157{word-spacing:-2.097600pt;}
.ws129{word-spacing:-2.096986pt;}
.ws16b{word-spacing:-1.965953pt;}
.ws167{word-spacing:-1.912819pt;}
.ws12b{word-spacing:-1.891776pt;}
.ws34{word-spacing:-1.859685pt;}
.ws12c{word-spacing:-1.814822pt;}
.ws168{word-spacing:-1.806551pt;}
.ws14d{word-spacing:-1.795200pt;}
.ws14b{word-spacing:-1.790400pt;}
.ws14c{word-spacing:-1.785600pt;}
.ws166{word-spacing:-1.753418pt;}
.ws9b{word-spacing:-1.700284pt;}
.wsd{word-spacing:-1.696326pt;}
.ws9d{word-spacing:-1.647150pt;}
.ws5f{word-spacing:-1.594016pt;}
.ws62{word-spacing:-1.540882pt;}
.ws41{word-spacing:-1.487748pt;}
.ws2d{word-spacing:-1.482445pt;}
.ws106{word-spacing:-1.473600pt;}
.ws114{word-spacing:-1.455706pt;}
.ws107{word-spacing:-1.449600pt;}
.ws51{word-spacing:-1.434614pt;}
.ws142{word-spacing:-1.434240pt;}
.ws105{word-spacing:-1.416000pt;}
.ws169{word-spacing:-1.381481pt;}
.ws13f{word-spacing:-1.370880pt;}
.ws140{word-spacing:-1.342080pt;}
.ws63{word-spacing:-1.328347pt;}
.ws198{word-spacing:-1.291162pt;}
.ws9c{word-spacing:-1.275213pt;}
.ws60{word-spacing:-1.222079pt;}
.wsc{word-spacing:-1.175671pt;}
.wsde{word-spacing:-1.168945pt;}
.ws108{word-spacing:-1.137600pt;}
.ws141{word-spacing:-1.065600pt;}
.ws16a{word-spacing:-1.062677pt;}
.ws58{word-spacing:-1.009543pt;}
.ws144{word-spacing:-0.984960pt;}
.ws143{word-spacing:-0.967680pt;}
.wsda{word-spacing:-0.956410pt;}
.ws124{word-spacing:-0.942682pt;}
.ws38{word-spacing:-0.903276pt;}
.ws5a{word-spacing:-0.874375pt;}
.ws59{word-spacing:-0.874081pt;}
.ws15a{word-spacing:-0.859200pt;}
.ws5b{word-spacing:-0.850142pt;}
.wsf2{word-spacing:-0.835200pt;}
.ws158{word-spacing:-0.806400pt;}
.ws159{word-spacing:-0.801600pt;}
.wsf3{word-spacing:-0.729600pt;}
.ws29{word-spacing:-0.717312pt;}
.ws12f{word-spacing:-0.711821pt;}
.ws37{word-spacing:-0.637606pt;}
.ws2b{word-spacing:-0.621670pt;}
.ws123{word-spacing:-0.609216pt;}
.wsaa{word-spacing:-0.584473pt;}
.wsf4{word-spacing:-0.552000pt;}
.wsf5{word-spacing:-0.547200pt;}
.wsca{word-spacing:-0.537600pt;}
.ws16e{word-spacing:-0.531339pt;}
.wsef{word-spacing:-0.528000pt;}
.wsc7{word-spacing:-0.508800pt;}
.wsc8{word-spacing:-0.494400pt;}
.wsf0{word-spacing:-0.489600pt;}
.wsa6{word-spacing:-0.478205pt;}
.wsc9{word-spacing:-0.470400pt;}
.ws1f{word-spacing:-0.467579pt;}
.ws89{word-spacing:-0.460800pt;}
.ws19f{word-spacing:-0.430387pt;}
.ws4f{word-spacing:-0.425071pt;}
.ws50{word-spacing:-0.371937pt;}
.ws2a{word-spacing:-0.334746pt;}
.ws45{word-spacing:-0.318803pt;}
.ws17d{word-spacing:-0.286925pt;}
.wsf1{word-spacing:-0.283200pt;}
.ws111{word-spacing:-0.280896pt;}
.ws19e{word-spacing:-0.277546pt;}
.ws42{word-spacing:-0.265669pt;}
.ws6f{word-spacing:-0.239104pt;}
.ws77{word-spacing:-0.238336pt;}
.wscb{word-spacing:-0.230400pt;}
.ws8b{word-spacing:-0.225600pt;}
.ws1d{word-spacing:-0.212536pt;}
.ws164{word-spacing:-0.210530pt;}
.ws10b{word-spacing:-0.191283pt;}
.ws165{word-spacing:-0.185192pt;}
.ws87{word-spacing:-0.172800pt;}
.ws40{word-spacing:-0.159402pt;}
.ws86{word-spacing:-0.148800pt;}
.ws74{word-spacing:-0.143462pt;}
.ws4c{word-spacing:-0.124540pt;}
.ws85{word-spacing:-0.120000pt;}
.ws4b{word-spacing:-0.119758pt;}
.ws4d{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.ws110{word-spacing:-0.081715pt;}
.ws76{word-spacing:-0.072352pt;}
.ws88{word-spacing:-0.072000pt;}
.ws9{word-spacing:-0.053134pt;}
.ws2c{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.ws53{word-spacing:-0.014272pt;}
.ws1a9{word-spacing:-0.008619pt;}
.ws1aa{word-spacing:-0.008013pt;}
.ws1ac{word-spacing:-0.007842pt;}
.ws19d{word-spacing:-0.006272pt;}
.ws18c{word-spacing:-0.004318pt;}
.wse2{word-spacing:-0.003516pt;}
.ws11{word-spacing:-0.003327pt;}
.ws7{word-spacing:-0.002577pt;}
.ws1b4{word-spacing:-0.002014pt;}
.ws1a8{word-spacing:-0.001792pt;}
.ws1b9{word-spacing:-0.000887pt;}
.ws30{word-spacing:-0.000657pt;}
.ws10{word-spacing:-0.000645pt;}
.wsa{word-spacing:-0.000214pt;}
.ws0{word-spacing:0.000000pt;}
.ws32{word-spacing:0.000559pt;}
.ws67{word-spacing:0.001089pt;}
.ws8{word-spacing:0.002719pt;}
.ws132{word-spacing:0.019238pt;}
.ws71{word-spacing:0.047821pt;}
.ws54{word-spacing:0.053134pt;}
.wsf6{word-spacing:0.062400pt;}
.wsd4{word-spacing:0.072000pt;}
.ws113{word-spacing:0.083366pt;}
.ws1c{word-spacing:0.085014pt;}
.ws1a0{word-spacing:0.090931pt;}
.ws26{word-spacing:0.095642pt;}
.ws19c{word-spacing:0.099469pt;}
.ws94{word-spacing:0.105600pt;}
.ws3e{word-spacing:0.106268pt;}
.ws8c{word-spacing:0.115200pt;}
.ws92{word-spacing:0.120000pt;}
.ws112{word-spacing:0.121843pt;}
.ws1a2{word-spacing:0.127815pt;}
.ws8a{word-spacing:0.129600pt;}
.ws145{word-spacing:0.138240pt;}
.wsf8{word-spacing:0.139200pt;}
.wsb7{word-spacing:0.143462pt;}
.ws136{word-spacing:0.149760pt;}
.ws95{word-spacing:0.153600pt;}
.ws93{word-spacing:0.158400pt;}
.ws69{word-spacing:0.159402pt;}
.ws137{word-spacing:0.161280pt;}
.ws138{word-spacing:0.167040pt;}
.ws131{word-spacing:0.179558pt;}
.ws12{word-spacing:0.185968pt;}
.ws147{word-spacing:0.190080pt;}
.ws2e{word-spacing:0.191283pt;}
.ws130{word-spacing:0.192384pt;}
.wsb5{word-spacing:0.205956pt;}
.ws3f{word-spacing:0.212535pt;}
.ws146{word-spacing:0.213120pt;}
.ws191{word-spacing:0.231038pt;}
.ws91{word-spacing:0.235200pt;}
.ws28{word-spacing:0.239104pt;}
.ws14{word-spacing:0.260355pt;}
.ws52{word-spacing:0.265669pt;}
.wsf7{word-spacing:0.273600pt;}
.ws182{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.ws187{word-spacing:0.334746pt;}
.wsa5{word-spacing:0.371937pt;}
.wse1{word-spacing:0.382566pt;}
.wsd5{word-spacing:0.388800pt;}
.ws1a6{word-spacing:0.430387pt;}
.ws7a{word-spacing:0.436800pt;}
.ws151{word-spacing:0.456000pt;}
.wsba{word-spacing:0.460800pt;}
.ws7b{word-spacing:0.470400pt;}
.ws117{word-spacing:0.474547pt;}
.ws16c{word-spacing:0.478205pt;}
.wsdf{word-spacing:0.478208pt;}
.ws152{word-spacing:0.484800pt;}
.ws153{word-spacing:0.489600pt;}
.ws148{word-spacing:0.573850pt;}
.ws161{word-spacing:0.584473pt;}
.ws116{word-spacing:0.622042pt;}
.ws48{word-spacing:0.637606pt;}
.ws47{word-spacing:0.690740pt;}
.ws1b1{word-spacing:0.717312pt;}
.ws155{word-spacing:0.720000pt;}
.wsb2{word-spacing:0.743874pt;}
.ws10c{word-spacing:0.765133pt;}
.wsfb{word-spacing:0.777600pt;}
.ws11c{word-spacing:0.782362pt;}
.ws154{word-spacing:0.787200pt;}
.ws78{word-spacing:0.792000pt;}
.ws3a{word-spacing:0.797008pt;}
.ws79{word-spacing:0.801600pt;}
.wsa4{word-spacing:0.850142pt;}
.ws11d{word-spacing:0.865728pt;}
.ws9e{word-spacing:0.903276pt;}
.ws149{word-spacing:0.956416pt;}
.wsaf{word-spacing:1.009543pt;}
.ws122{word-spacing:1.013222pt;}
.ws160{word-spacing:1.046400pt;}
.ws96{word-spacing:1.062677pt;}
.ws82{word-spacing:1.089600pt;}
.wsb8{word-spacing:1.099878pt;}
.wsf9{word-spacing:1.108800pt;}
.wsa7{word-spacing:1.115811pt;}
.ws84{word-spacing:1.128000pt;}
.wsfa{word-spacing:1.132800pt;}
.ws83{word-spacing:1.161600pt;}
.ws199{word-spacing:1.183881pt;}
.ws183{word-spacing:1.195520pt;}
.ws99{word-spacing:1.275213pt;}
.ws15d{word-spacing:1.281600pt;}
.wse0{word-spacing:1.291162pt;}
.ws5c{word-spacing:1.328347pt;}
.wsb9{word-spacing:1.338982pt;}
.ws170{word-spacing:1.381481pt;}
.ws15c{word-spacing:1.392000pt;}
.ws15f{word-spacing:1.396800pt;}
.ws15b{word-spacing:1.425600pt;}
.ws15e{word-spacing:1.430400pt;}
.ws18a{word-spacing:1.482445pt;}
.ws17c{word-spacing:1.487748pt;}
.ws179{word-spacing:1.594016pt;}
.ws68{word-spacing:1.700284pt;}
.wsea{word-spacing:1.708800pt;}
.ws18d{word-spacing:1.721549pt;}
.wseb{word-spacing:1.723200pt;}
.wse9{word-spacing:1.732800pt;}
.wsfc{word-spacing:1.737600pt;}
.ws9a{word-spacing:1.753418pt;}
.wsfd{word-spacing:1.756800pt;}
.ws13{word-spacing:1.785293pt;}
.wsd7{word-spacing:1.806551pt;}
.ws55{word-spacing:1.859685pt;}
.ws175{word-spacing:1.912819pt;}
.ws1b5{word-spacing:1.912832pt;}
.ws11e{word-spacing:1.930253pt;}
.ws11f{word-spacing:1.962317pt;}
.ws121{word-spacing:2.058509pt;}
.ws16f{word-spacing:2.072221pt;}
.wsfe{word-spacing:2.121600pt;}
.ws120{word-spacing:2.193178pt;}
.ws66{word-spacing:2.284756pt;}
.ws6a{word-spacing:2.337890pt;}
.wsc3{word-spacing:2.342400pt;}
.wsc6{word-spacing:2.352000pt;}
.wsc5{word-spacing:2.361600pt;}
.wsce{word-spacing:2.366400pt;}
.wse6{word-spacing:2.371200pt;}
.wse5{word-spacing:2.380800pt;}
.wsc4{word-spacing:2.385600pt;}
.wse3{word-spacing:2.390400pt;}
.ws4e{word-spacing:2.391024pt;}
.ws1ba{word-spacing:2.391040pt;}
.wse4{word-spacing:2.400000pt;}
.wscf{word-spacing:2.404800pt;}
.wsd6{word-spacing:2.444158pt;}
.wscc{word-spacing:2.472000pt;}
.wsdc{word-spacing:2.497292pt;}
.wscd{word-spacing:2.534400pt;}
.ws46{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.ws70{word-spacing:2.582323pt;}
.ws14e{word-spacing:2.649600pt;}
.wsd2{word-spacing:2.654400pt;}
.wsa8{word-spacing:2.656693pt;}
.wsd3{word-spacing:2.668800pt;}
.wse7{word-spacing:2.688000pt;}
.ws14f{word-spacing:2.692800pt;}
.wsd0{word-spacing:2.697600pt;}
.wse8{word-spacing:2.707200pt;}
.wsd1{word-spacing:2.716800pt;}
.ws18e{word-spacing:2.725786pt;}
.ws150{word-spacing:2.740800pt;}
.ws10d{word-spacing:2.762961pt;}
.ws73{word-spacing:2.773606pt;}
.ws98{word-spacing:2.816095pt;}
.ws72{word-spacing:2.821427pt;}
.ws13d{word-spacing:2.839680pt;}
.ws135{word-spacing:2.845440pt;}
.ws133{word-spacing:2.851200pt;}
.ws1a4{word-spacing:2.860817pt;}
.ws1ad{word-spacing:2.861841pt;}
.ws2f{word-spacing:2.861926pt;}
.ws134{word-spacing:2.862720pt;}
.ws197{word-spacing:2.863829pt;}
.ws188{word-spacing:2.864162pt;}
.ws189{word-spacing:2.864324pt;}
.ws1b8{word-spacing:2.864495pt;}
.ws1a1{word-spacing:2.865092pt;}
.ws193{word-spacing:2.865869pt;}
.ws1b2{word-spacing:2.865946pt;}
.ws1a3{word-spacing:2.866645pt;}
.ws1b3{word-spacing:2.866893pt;}
.ws192{word-spacing:2.867405pt;}
.ws1af{word-spacing:2.867669pt;}
.ws18f{word-spacing:2.868036pt;}
.ws1a5{word-spacing:2.868070pt;}
.wsb4{word-spacing:2.869229pt;}
.ws186{word-spacing:2.869248pt;}
.ws1b0{word-spacing:2.869931pt;}
.ws194{word-spacing:2.871211pt;}
.ws75{word-spacing:2.917069pt;}
.ws16d{word-spacing:2.922363pt;}
.ws1a7{word-spacing:2.964890pt;}
.wsdb{word-spacing:2.975497pt;}
.ws14a{word-spacing:3.012710pt;}
.wsb3{word-spacing:3.028630pt;}
.ws61{word-spacing:3.081764pt;}
.ws127{word-spacing:3.103795pt;}
.ws17e{word-spacing:3.108352pt;}
.wsb0{word-spacing:3.134898pt;}
.ws1ab{word-spacing:3.156173pt;}
.ws33{word-spacing:3.188032pt;}
.ws184{word-spacing:3.203994pt;}
.ws5e{word-spacing:3.241166pt;}
.ws13e{word-spacing:3.242880pt;}
.ws190{word-spacing:3.251814pt;}
.ws5d{word-spacing:3.294300pt;}
.ws3b{word-spacing:3.347434pt;}
.ws49{word-spacing:3.368521pt;}
.ws27{word-spacing:3.395277pt;}
.ws39{word-spacing:3.400567pt;}
.ws18b{word-spacing:3.443098pt;}
.wsa9{word-spacing:3.453701pt;}
.ws97{word-spacing:3.506835pt;}
.ws195{word-spacing:3.538739pt;}
.wsab{word-spacing:3.559969pt;}
.ws8f{word-spacing:3.614400pt;}
.ws90{word-spacing:3.662400pt;}
.ws10e{word-spacing:3.666237pt;}
.ws8e{word-spacing:3.672000pt;}
.ws8d{word-spacing:3.696000pt;}
.ws36{word-spacing:3.719371pt;}
.wsac{word-spacing:3.878772pt;}
.wsae{word-spacing:3.931906pt;}
.ws7f{word-spacing:3.960000pt;}
.ws7e{word-spacing:3.974400pt;}
.ws10f{word-spacing:4.038174pt;}
.ws64{word-spacing:4.144442pt;}
.ws43{word-spacing:4.197575pt;}
.wsc2{word-spacing:4.204800pt;}
.ws7c{word-spacing:4.243200pt;}
.ws56{word-spacing:4.250709pt;}
.ws162{word-spacing:4.303843pt;}
.ws196{word-spacing:4.303872pt;}
.ws7d{word-spacing:4.348800pt;}
.ws1b7{word-spacing:4.351693pt;}
.ws139{word-spacing:4.394880pt;}
.ws1b6{word-spacing:4.399514pt;}
.ws13a{word-spacing:4.452480pt;}
.wsdd{word-spacing:4.463245pt;}
.ws13c{word-spacing:4.475520pt;}
.ws13b{word-spacing:4.492800pt;}
.wsc1{word-spacing:4.588800pt;}
.wsc0{word-spacing:4.617600pt;}
.ws80{word-spacing:4.622400pt;}
.ws104{word-spacing:4.627200pt;}
.ws81{word-spacing:4.632000pt;}
.wsa1{word-spacing:4.728914pt;}
.ws25{word-spacing:4.734259pt;}
.ws24{word-spacing:4.771939pt;}
.ws17b{word-spacing:4.782048pt;}
.ws17f{word-spacing:4.782080pt;}
.ws180{word-spacing:4.831443pt;}
.wsff{word-spacing:4.867200pt;}
.ws181{word-spacing:4.877722pt;}
.wsa2{word-spacing:4.888316pt;}
.ws101{word-spacing:4.905600pt;}
.ws100{word-spacing:4.915200pt;}
.ws23{word-spacing:4.925542pt;}
.ws173{word-spacing:4.941450pt;}
.ws3c{word-spacing:4.994583pt;}
.ws102{word-spacing:5.006400pt;}
.ws103{word-spacing:5.035200pt;}
.ws3d{word-spacing:5.047717pt;}
.ws176{word-spacing:5.207119pt;}
.ws44{word-spacing:5.313387pt;}
.ws1a{word-spacing:5.393072pt;}
.ws171{word-spacing:5.419654pt;}
.ws1b{word-spacing:5.467459pt;}
.ws163{word-spacing:5.525922pt;}
.wsec{word-spacing:5.875200pt;}
.wsed{word-spacing:5.908800pt;}
.wsee{word-spacing:5.928000pt;}
.ws6e{word-spacing:6.312346pt;}
.ws172{word-spacing:6.641733pt;}
.ws11a{word-spacing:6.675725pt;}
.ws6d{word-spacing:6.694912pt;}
.ws11b{word-spacing:6.739853pt;}
.ws19a{word-spacing:6.832367pt;}
.ws19b{word-spacing:6.838374pt;}
.wsad{word-spacing:6.907403pt;}
.ws9f{word-spacing:6.960537pt;}
.ws119{word-spacing:7.002778pt;}
.wsa0{word-spacing:7.013670pt;}
.ws1ae{word-spacing:7.268762pt;}
.ws115{word-spacing:7.310592pt;}
.ws174{word-spacing:7.332474pt;}
.ws118{word-spacing:7.419610pt;}
.ws178{word-spacing:7.545009pt;}
.ws18{word-spacing:7.699075pt;}
.ws185{word-spacing:12.911616pt;}
.wse{word-spacing:13.763148pt;}
.ws15{word-spacing:14.348669pt;}
.ws16{word-spacing:14.356730pt;}
.ws17{word-spacing:15.732893pt;}
.ws177{word-spacing:19.234460pt;}
.ws2{word-spacing:23.811797pt;}
.ws19{word-spacing:24.399002pt;}
.ws3{word-spacing:35.599823pt;}
.ws6{word-spacing:35.611296pt;}
.ws4{word-spacing:35.616629pt;}
.ws21{word-spacing:37.194667pt;}
.ws65{word-spacing:295.424299pt;}
._2{margin-left:-10.616218pt;}
._3{margin-left:-8.607744pt;}
._16{margin-left:-7.454267pt;}
._4{margin-left:-5.897859pt;}
._15{margin-left:-4.994583pt;}
._9{margin-left:-4.091296pt;}
._6{margin-left:-2.710074pt;}
._0{margin-left:-1.741978pt;}
._7{width:0.969929pt;}
._5{width:2.567155pt;}
._17{width:3.825610pt;}
._21{width:5.183568pt;}
._18{width:6.323263pt;}
._1c{width:8.767088pt;}
._24{width:10.593193pt;}
._8{width:11.530016pt;}
._e{width:13.175632pt;}
._d{width:14.920090pt;}
._b{width:15.972147pt;}
._c{width:17.676445pt;}
._11{width:19.287594pt;}
._23{width:20.244003pt;}
._19{width:21.932847pt;}
._a{width:23.063232pt;}
._14{width:24.175909pt;}
._1d{width:25.929327pt;}
._12{width:26.938870pt;}
._25{width:28.680848pt;}
._1{width:29.648896pt;}
._1e{width:31.071872pt;}
._13{width:32.039722pt;}
._1b{width:33.977151pt;}
._26{width:78.904320pt;}
._f{width:797.860144pt;}
._20{width:1870.389454pt;}
._1a{width:1891.839694pt;}
._1f{width:2212.493067pt;}
._10{width:2233.746400pt;}
._22{width:2243.890056pt;}
.fs10{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs11{font-size:51.072000pt;}
.fs1{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs13{font-size:57.600000pt;}
.fs12{font-size:64.128000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y1a3{bottom:-242.900320pt;}
.yc7{bottom:-224.128933pt;}
.y146{bottom:-221.330267pt;}
.y1d7{bottom:-207.315600pt;}
.y17d{bottom:-188.816933pt;}
.yd2{bottom:-167.730133pt;}
.y14f{bottom:-158.611467pt;}
.y193{bottom:-156.303600pt;}
.y1bf{bottom:-155.636320pt;}
.yd1{bottom:-152.289733pt;}
.y1e2{bottom:-150.196000pt;}
.y1e3{bottom:-150.195600pt;}
.y14e{bottom:-143.171067pt;}
.y1be{bottom:-137.204320pt;}
.yd0{bottom:-136.929733pt;}
.y1df{bottom:-134.756400pt;}
.y1e0{bottom:-134.755600pt;}
.y1e1{bottom:-131.395600pt;}
.y14d{bottom:-127.730667pt;}
.y186{bottom:-124.257200pt;}
.y187{bottom:-124.256933pt;}
.ycf{bottom:-121.569733pt;}
.y1de{bottom:-119.316000pt;}
.y1bd{bottom:-118.580800pt;}
.y14c{bottom:-112.370667pt;}
.y185{bottom:-108.816800pt;}
.yce{bottom:-106.129333pt;}
.y1dd{bottom:-104.036400pt;}
.y1bc{bottom:-100.148800pt;}
.y14b{bottom:-97.010667pt;}
.y19a{bottom:-93.743600pt;}
.y199{bottom:-93.743200pt;}
.y183{bottom:-93.457333pt;}
.y184{bottom:-93.456800pt;}
.ycd{bottom:-90.769333pt;}
.y1dc{bottom:-88.596000pt;}
.y1bb{bottom:-81.716800pt;}
.y14a{bottom:-81.650667pt;}
.y198{bottom:-78.223600pt;}
.y182{bottom:-78.097333pt;}
.ycc{bottom:-75.489733pt;}
.y1db{bottom:-73.236000pt;}
.y149{bottom:-66.210267pt;}
.y1ba{bottom:-63.284800pt;}
.y197{bottom:-62.863600pt;}
.y181{bottom:-62.737333pt;}
.ycb{bottom:-60.049333pt;}
.y1da{bottom:-57.795600pt;}
.y148{bottom:-50.850267pt;}
.y196{bottom:-47.503600pt;}
.y180{bottom:-47.296933pt;}
.y1b9{bottom:-44.756320pt;}
.yca{bottom:-44.608933pt;}
.y1d9{bottom:-42.435600pt;}
.y195{bottom:-32.143600pt;}
.y17f{bottom:-31.936933pt;}
.yc9{bottom:-29.248933pt;}
.y147{bottom:-23.170739pt;}
.y1d8{bottom:-22.516072pt;}
.y1b8{bottom:-20.845898pt;}
.y194{bottom:-12.143856pt;}
.y17e{bottom:-12.017373pt;}
.yc8{bottom:-9.329525pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.044747pt;}
.yc{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y56{bottom:28.346667pt;}
.ydc{bottom:75.822667pt;}
.y118{bottom:89.261333pt;}
.y20d{bottom:90.854667pt;}
.y29{bottom:91.398667pt;}
.y2a3{bottom:92.050667pt;}
.ydb{bottom:92.918667pt;}
.y1f1{bottom:100.117333pt;}
.y236{bottom:100.658667pt;}
.y19f{bottom:103.006667pt;}
.y18f{bottom:103.569333pt;}
.y117{bottom:105.998667pt;}
.y26a{bottom:107.034667pt;}
.y28{bottom:107.298667pt;}
.y2a2{bottom:107.393333pt;}
.y20c{bottom:107.592000pt;}
.y8b{bottom:108.373333pt;}
.yda{bottom:110.014667pt;}
.y235{bottom:116.280000pt;}
.y1ef{bottom:117.213333pt;}
.y19e{bottom:120.102667pt;}
.y18e{bottom:120.665333pt;}
.y1f0{bottom:121.553333pt;}
.y269{bottom:122.377333pt;}
.y115{bottom:122.736000pt;}
.y27{bottom:123.200000pt;}
.y20b{bottom:124.329333pt;}
.y8a{bottom:125.110667pt;}
.yd9{bottom:127.110667pt;}
.y116{bottom:127.557333pt;}
.y157{bottom:128.237333pt;}
.y1ee{bottom:131.978667pt;}
.y1ed{bottom:134.309333pt;}
.yc3{bottom:134.924000pt;}
.y18d{bottom:135.429333pt;}
.y19d{bottom:137.198667pt;}
.y268{bottom:137.720000pt;}
.y18c{bottom:137.761333pt;}
.y2a1{bottom:138.078667pt;}
.y26{bottom:139.100000pt;}
.y114{bottom:139.473333pt;}
.y234{bottom:139.872000pt;}
.y20a{bottom:141.066667pt;}
.y89{bottom:141.848000pt;}
.yd8{bottom:144.206667pt;}
.y156{bottom:145.333333pt;}
.y1eb{bottom:149.074667pt;}
.y1ea{bottom:151.405333pt;}
.yc2{bottom:151.661333pt;}
.y267{bottom:153.062667pt;}
.y2a0{bottom:153.421333pt;}
.y19c{bottom:154.294667pt;}
.y18b{bottom:154.857333pt;}
.y25{bottom:155.000000pt;}
.y233{bottom:155.493333pt;}
.y1ec{bottom:155.745333pt;}
.y209{bottom:157.804000pt;}
.y88{bottom:158.585333pt;}
.y55{bottom:158.873333pt;}
.y113{bottom:160.196000pt;}
.yd7{bottom:161.302667pt;}
.y155{bottom:162.429333pt;}
.yc1{bottom:168.398667pt;}
.y266{bottom:168.405333pt;}
.y1e9{bottom:168.501333pt;}
.y29f{bottom:168.762667pt;}
.y24{bottom:170.901333pt;}
.y232{bottom:171.114667pt;}
.y19b{bottom:171.389333pt;}
.y18a{bottom:171.953333pt;}
.y208{bottom:174.541333pt;}
.y87{bottom:175.322667pt;}
.yd6{bottom:178.398667pt;}
.y154{bottom:179.525333pt;}
.y265{bottom:183.748000pt;}
.y29e{bottom:184.105333pt;}
.ybf{bottom:185.136000pt;}
.y1e8{bottom:185.597333pt;}
.y231{bottom:186.736000pt;}
.y23{bottom:186.801333pt;}
.y189{bottom:189.048000pt;}
.yc0{bottom:189.957333pt;}
.y112{bottom:190.084000pt;}
.y207{bottom:191.278667pt;}
.y190{bottom:191.326667pt;}
.y86{bottom:192.060000pt;}
.y54{bottom:192.108000pt;}
.yd5{bottom:195.494667pt;}
.y153{bottom:196.621333pt;}
.y264{bottom:199.089333pt;}
.y29d{bottom:199.448000pt;}
.ybe{bottom:201.873333pt;}
.y230{bottom:202.357333pt;}
.y1e7{bottom:202.693333pt;}
.y22{bottom:202.701333pt;}
.y188{bottom:206.144000pt;}
.y111{bottom:206.821333pt;}
.y179{bottom:207.617333pt;}
.y206{bottom:208.016000pt;}
.y53{bottom:209.404000pt;}
.yd4{bottom:212.589333pt;}
.y85{bottom:212.782667pt;}
.y152{bottom:213.717333pt;}
.y263{bottom:214.432000pt;}
.y29c{bottom:214.790667pt;}
.y22f{bottom:217.978667pt;}
.ybc{bottom:218.610667pt;}
.y1e6{bottom:219.789333pt;}
.ybd{bottom:223.432000pt;}
.y110{bottom:223.558667pt;}
.y178{bottom:224.354667pt;}
.y205{bottom:224.753333pt;}
.y17a{bottom:226.081333pt;}
.y52{bottom:226.698667pt;}
.yd3{bottom:229.685333pt;}
.y262{bottom:229.774667pt;}
.y29b{bottom:230.133333pt;}
.y84{bottom:230.714667pt;}
.y151{bottom:230.812000pt;}
.y22e{bottom:233.600000pt;}
.ybb{bottom:235.348000pt;}
.y1e5{bottom:236.884000pt;}
.y10f{bottom:240.296000pt;}
.y177{bottom:241.092000pt;}
.y204{bottom:241.490667pt;}
.y51{bottom:243.993333pt;}
.y261{bottom:245.117333pt;}
.y29a{bottom:245.476000pt;}
.y1d3{bottom:245.846667pt;}
.y150{bottom:247.908000pt;}
.y22d{bottom:249.221333pt;}
.yc4{bottom:249.622667pt;}
.yba{bottom:252.085333pt;}
.y1e4{bottom:253.980000pt;}
.y10e{bottom:257.033333pt;}
.y176{bottom:257.829333pt;}
.y203{bottom:258.228000pt;}
.y142{bottom:260.220000pt;}
.y260{bottom:260.460000pt;}
.y83{bottom:260.602667pt;}
.y299{bottom:260.818667pt;}
.y50{bottom:261.289333pt;}
.y1d2{bottom:262.584000pt;}
.y22c{bottom:264.844000pt;}
.y143{bottom:267.845333pt;}
.yb9{bottom:268.822667pt;}
.y21{bottom:273.154667pt;}
.y10d{bottom:273.769333pt;}
.y1d4{bottom:273.917333pt;}
.y175{bottom:274.566667pt;}
.y202{bottom:274.965333pt;}
.y25f{bottom:275.802667pt;}
.y298{bottom:276.161333pt;}
.y141{bottom:276.957333pt;}
.y82{bottom:277.340000pt;}
.y4f{bottom:278.584000pt;}
.y1d1{bottom:279.321333pt;}
.y22b{bottom:280.465333pt;}
.yb8{bottom:285.560000pt;}
.y20{bottom:289.054667pt;}
.y10c{bottom:290.506667pt;}
.y25e{bottom:291.145333pt;}
.y174{bottom:291.304000pt;}
.y297{bottom:291.502667pt;}
.y201{bottom:291.702667pt;}
.y4e{bottom:293.548000pt;}
.y140{bottom:293.694667pt;}
.y81{bottom:294.077333pt;}
.y4d{bottom:295.880000pt;}
.y1d0{bottom:296.058667pt;}
.yb7{bottom:302.297333pt;}
.y1f{bottom:304.954667pt;}
.y25d{bottom:306.488000pt;}
.y296{bottom:306.845333pt;}
.y10b{bottom:307.244000pt;}
.y173{bottom:308.041333pt;}
.y200{bottom:308.440000pt;}
.y1cf{bottom:310.369333pt;}
.y13f{bottom:310.432000pt;}
.y80{bottom:310.814667pt;}
.y22a{bottom:312.026667pt;}
.y1ce{bottom:312.796000pt;}
.y4c{bottom:313.174667pt;}
.yb6{bottom:319.034667pt;}
.y1e{bottom:320.856000pt;}
.y10a{bottom:321.554667pt;}
.y25c{bottom:321.830667pt;}
.y295{bottom:322.188000pt;}
.y109{bottom:323.981333pt;}
.y172{bottom:324.778667pt;}
.y1ff{bottom:325.177333pt;}
.y13e{bottom:327.169333pt;}
.y7f{bottom:327.552000pt;}
.y229{bottom:328.764000pt;}
.y1cd{bottom:329.533333pt;}
.y4b{bottom:330.469333pt;}
.yb5{bottom:335.770667pt;}
.y25b{bottom:337.172000pt;}
.y294{bottom:337.530667pt;}
.y108{bottom:340.718667pt;}
.y171{bottom:341.516000pt;}
.y1fe{bottom:341.914667pt;}
.y13d{bottom:343.906667pt;}
.y7e{bottom:344.289333pt;}
.y228{bottom:345.501333pt;}
.y1cb{bottom:346.270667pt;}
.y49{bottom:347.765333pt;}
.y1cc{bottom:351.092000pt;}
.y4a{bottom:352.104000pt;}
.yb4{bottom:352.508000pt;}
.y25a{bottom:352.514667pt;}
.y293{bottom:352.873333pt;}
.y1d{bottom:354.688000pt;}
.y107{bottom:355.029333pt;}
.y106{bottom:357.456000pt;}
.y170{bottom:358.253333pt;}
.y1fd{bottom:358.652000pt;}
.y1ca{bottom:360.581333pt;}
.y13c{bottom:360.644000pt;}
.y7d{bottom:361.026667pt;}
.y227{bottom:362.238667pt;}
.y1c9{bottom:363.008000pt;}
.y48{bottom:365.060000pt;}
.y259{bottom:367.857333pt;}
.y291{bottom:368.216000pt;}
.yb3{bottom:369.245333pt;}
.y1c{bottom:370.589333pt;}
.y292{bottom:372.556000pt;}
.y105{bottom:374.193333pt;}
.y16f{bottom:374.990667pt;}
.y1fc{bottom:375.389333pt;}
.y13b{bottom:377.381333pt;}
.y7c{bottom:377.764000pt;}
.y226{bottom:378.976000pt;}
.y1c8{bottom:379.745333pt;}
.y47{bottom:382.354667pt;}
.y258{bottom:383.200000pt;}
.y290{bottom:383.558667pt;}
.y1b{bottom:386.489333pt;}
.yb2{bottom:389.968000pt;}
.y16e{bottom:391.728000pt;}
.y1fb{bottom:392.126667pt;}
.y13a{bottom:394.118667pt;}
.y7b{bottom:394.501333pt;}
.y104{bottom:394.916000pt;}
.y225{bottom:395.713333pt;}
.y1c7{bottom:396.482667pt;}
.y257{bottom:398.542667pt;}
.y28f{bottom:398.901333pt;}
.y46{bottom:399.650667pt;}
.y16d{bottom:408.465333pt;}
.y1fa{bottom:408.864000pt;}
.y139{bottom:410.856000pt;}
.y7a{bottom:411.238667pt;}
.y224{bottom:412.450667pt;}
.y256{bottom:413.885333pt;}
.y28e{bottom:414.244000pt;}
.y45{bottom:416.945333pt;}
.y1a{bottom:418.330667pt;}
.yb1{bottom:419.856000pt;}
.y103{bottom:424.804000pt;}
.y16c{bottom:425.202667pt;}
.y1f9{bottom:425.601333pt;}
.y1c6{bottom:426.318667pt;}
.y138{bottom:427.593333pt;}
.y79{bottom:427.976000pt;}
.y223{bottom:429.188000pt;}
.y255{bottom:429.228000pt;}
.y28d{bottom:429.585333pt;}
.y44{bottom:434.241333pt;}
.yb0{bottom:436.593333pt;}
.y102{bottom:441.541333pt;}
.y16b{bottom:441.940000pt;}
.y1f8{bottom:442.338667pt;}
.y1c5{bottom:443.414667pt;}
.y137{bottom:444.330667pt;}
.y254{bottom:444.570667pt;}
.y78{bottom:444.713333pt;}
.y28c{bottom:444.928000pt;}
.y222{bottom:445.925333pt;}
.y19{bottom:450.170667pt;}
.yaf{bottom:453.330667pt;}
.y101{bottom:458.278667pt;}
.y16a{bottom:458.677333pt;}
.y1f7{bottom:459.076000pt;}
.y253{bottom:459.912000pt;}
.y28b{bottom:460.270667pt;}
.y1c4{bottom:460.510667pt;}
.y136{bottom:461.068000pt;}
.y77{bottom:461.450667pt;}
.y221{bottom:462.662667pt;}
.y18{bottom:466.070667pt;}
.y43{bottom:468.538667pt;}
.yae{bottom:470.068000pt;}
.y100{bottom:475.016000pt;}
.y252{bottom:475.254667pt;}
.y169{bottom:475.414667pt;}
.y28a{bottom:475.613333pt;}
.y1f6{bottom:475.813333pt;}
.y1c3{bottom:477.606667pt;}
.y135{bottom:477.805333pt;}
.y76{bottom:478.188000pt;}
.y220{bottom:479.398667pt;}
.y17{bottom:481.972000pt;}
.y42{bottom:482.885333pt;}
.yad{bottom:484.378667pt;}
.yac{bottom:486.805333pt;}
.y251{bottom:490.597333pt;}
.y289{bottom:490.956000pt;}
.yff{bottom:491.753333pt;}
.y168{bottom:492.152000pt;}
.y1f5{bottom:492.549333pt;}
.y134{bottom:494.542667pt;}
.y1c2{bottom:494.701333pt;}
.y75{bottom:494.925333pt;}
.y21f{bottom:496.136000pt;}
.y41{bottom:497.232000pt;}
.y16{bottom:497.872000pt;}
.y40{bottom:501.089333pt;}
.yab{bottom:501.116000pt;}
.yaa{bottom:503.542667pt;}
.y250{bottom:505.940000pt;}
.y288{bottom:506.298667pt;}
.y167{bottom:508.889333pt;}
.y1f4{bottom:509.286667pt;}
.y133{bottom:511.280000pt;}
.y3f{bottom:511.577333pt;}
.y74{bottom:511.662667pt;}
.y1c1{bottom:511.797333pt;}
.yfe{bottom:512.476000pt;}
.y21e{bottom:512.873333pt;}
.y15{bottom:513.772000pt;}
.y1b7{bottom:514.066592pt;}
.ya9{bottom:520.280000pt;}
.y24f{bottom:521.282667pt;}
.y287{bottom:521.641333pt;}
.y1f3{bottom:526.024000pt;}
.y132{bottom:528.017333pt;}
.y73{bottom:528.400000pt;}
.y1c0{bottom:528.893333pt;}
.y166{bottom:529.610667pt;}
.y14{bottom:529.673333pt;}
.y3e{bottom:529.781333pt;}
.y1b6{bottom:534.609997pt;}
.y24e{bottom:536.625333pt;}
.y286{bottom:536.984000pt;}
.y3d{bottom:540.270667pt;}
.yfd{bottom:542.364000pt;}
.y1f2{bottom:542.761333pt;}
.y3c{bottom:544.128000pt;}
.y131{bottom:544.754667pt;}
.y72{bottom:545.137333pt;}
.y13{bottom:545.573333pt;}
.ya8{bottom:548.633333pt;}
.y1a0{bottom:548.830667pt;}
.y21d{bottom:550.333333pt;}
.y24d{bottom:551.968000pt;}
.y285{bottom:552.325333pt;}
.y3b{bottom:554.616000pt;}
.y1b5{bottom:555.057210pt;}
.ya7{bottom:557.885333pt;}
.y3a{bottom:558.473333pt;}
.yfc{bottom:559.101333pt;}
.y165{bottom:559.498667pt;}
.y12{bottom:561.473333pt;}
.y130{bottom:561.492000pt;}
.y71{bottom:561.874667pt;}
.y24c{bottom:567.310667pt;}
.y284{bottom:567.668000pt;}
.y39{bottom:572.820000pt;}
.y1b4{bottom:575.600614pt;}
.yfb{bottom:575.837333pt;}
.y164{bottom:576.236000pt;}
.y11{bottom:577.374667pt;}
.y12f{bottom:578.229333pt;}
.y70{bottom:578.612000pt;}
.y21c{bottom:580.221333pt;}
.y24b{bottom:582.652000pt;}
.y283{bottom:583.010667pt;}
.y38{bottom:583.309333pt;}
.yfa{bottom:592.574667pt;}
.y163{bottom:592.973333pt;}
.y10{bottom:593.274667pt;}
.y12e{bottom:594.966667pt;}
.y6f{bottom:595.349333pt;}
.y1b3{bottom:596.144019pt;}
.ya6{bottom:596.161333pt;}
.y21b{bottom:596.958667pt;}
.y24a{bottom:597.994667pt;}
.y282{bottom:598.353333pt;}
.y37{bottom:601.513333pt;}
.yf{bottom:609.174667pt;}
.yf9{bottom:609.312000pt;}
.y162{bottom:609.710667pt;}
.y12d{bottom:611.704000pt;}
.y6e{bottom:612.085333pt;}
.ya5{bottom:612.898667pt;}
.y249{bottom:613.337333pt;}
.y21a{bottom:613.696000pt;}
.y36{bottom:615.858667pt;}
.y1b2{bottom:616.591232pt;}
.ye{bottom:625.076000pt;}
.yf8{bottom:626.049333pt;}
.y35{bottom:626.348000pt;}
.y161{bottom:626.448000pt;}
.y12c{bottom:628.441333pt;}
.y248{bottom:628.680000pt;}
.y6d{bottom:628.822667pt;}
.y281{bottom:629.038667pt;}
.ya4{bottom:629.636000pt;}
.y219{bottom:630.433333pt;}
.y1b1{bottom:637.134637pt;}
.yf7{bottom:640.360000pt;}
.y34{bottom:640.694667pt;}
.yf6{bottom:642.786667pt;}
.y160{bottom:643.185333pt;}
.y247{bottom:644.022667pt;}
.y280{bottom:644.381333pt;}
.yb{bottom:644.961301pt;}
.y12b{bottom:645.178667pt;}
.y6c{bottom:645.560000pt;}
.ya2{bottom:646.373333pt;}
.y218{bottom:647.170667pt;}
.ya3{bottom:651.196000pt;}
.y33{bottom:655.040000pt;}
.yf5{bottom:657.097333pt;}
.y1b0{bottom:657.583453pt;}
.y32{bottom:658.897333pt;}
.y246{bottom:659.365333pt;}
.yf4{bottom:659.524000pt;}
.y27f{bottom:659.724000pt;}
.y15f{bottom:659.922667pt;}
.y6b{bottom:662.297333pt;}
.ya1{bottom:663.110667pt;}
.y217{bottom:663.908000pt;}
.y12a{bottom:665.900000pt;}
.y31{bottom:673.244000pt;}
.yf2{bottom:673.834667pt;}
.y245{bottom:674.708000pt;}
.y27e{bottom:675.066667pt;}
.yf1{bottom:676.261333pt;}
.y15e{bottom:676.660000pt;}
.y1af{bottom:678.126858pt;}
.y6a{bottom:679.034667pt;}
.y9f{bottom:679.848000pt;}
.y216{bottom:680.645333pt;}
.yf3{bottom:681.084000pt;}
.y30{bottom:683.733333pt;}
.y129{bottom:683.833333pt;}
.ya0{bottom:684.670667pt;}
.y244{bottom:690.050667pt;}
.y27d{bottom:690.408000pt;}
.yf0{bottom:692.998667pt;}
.y15d{bottom:693.397333pt;}
.y69{bottom:695.772000pt;}
.y9e{bottom:696.585333pt;}
.y215{bottom:697.382667pt;}
.y2f{bottom:698.078667pt;}
.y1ae{bottom:698.670262pt;}
.y243{bottom:705.393333pt;}
.y27c{bottom:705.750667pt;}
.y15c{bottom:710.134667pt;}
.y9d{bottom:710.896000pt;}
.y2e{bottom:712.425333pt;}
.y68{bottom:712.509333pt;}
.y9b{bottom:713.322667pt;}
.yef{bottom:713.721333pt;}
.y214{bottom:714.120000pt;}
.y9c{bottom:718.145333pt;}
.y1ad{bottom:719.117475pt;}
.y27b{bottom:721.093333pt;}
.y242{bottom:724.720000pt;}
.y15b{bottom:726.872000pt;}
.y67{bottom:729.246667pt;}
.y9a{bottom:730.060000pt;}
.y128{bottom:730.458667pt;}
.y2d{bottom:730.629333pt;}
.y213{bottom:730.857333pt;}
.y27a{bottom:736.436000pt;}
.y1ac{bottom:739.660880pt;}
.y2c{bottom:741.117333pt;}
.y15a{bottom:741.182667pt;}
.yee{bottom:743.609333pt;}
.y66{bottom:745.984000pt;}
.y99{bottom:746.797333pt;}
.y127{bottom:747.196000pt;}
.y212{bottom:747.594667pt;}
.y159{bottom:748.430667pt;}
.y279{bottom:751.778667pt;}
.y241{bottom:754.608000pt;}
.y2b{bottom:755.464000pt;}
.y158{bottom:757.920000pt;}
.y1ab{bottom:760.204285pt;}
.yec{bottom:760.346667pt;}
.y65{bottom:762.721333pt;}
.y98{bottom:763.534667pt;}
.y126{bottom:763.933333pt;}
.y211{bottom:764.332000pt;}
.yed{bottom:765.168000pt;}
.y278{bottom:767.121333pt;}
.y2a{bottom:773.668000pt;}
.yeb{bottom:777.084000pt;}
.y240{bottom:778.200000pt;}
.y64{bottom:779.458667pt;}
.y1aa{bottom:780.653101pt;}
.y125{bottom:780.670667pt;}
.y210{bottom:781.069333pt;}
.y277{bottom:782.464000pt;}
.yc6{bottom:783.871587pt;}
.y97{bottom:784.257333pt;}
.y145{bottom:786.670253pt;}
.yc5{bottom:792.591067pt;}
.yea{bottom:793.821333pt;}
.y144{bottom:795.389733pt;}
.y63{bottom:796.196000pt;}
.y20f{bottom:797.806667pt;}
.y1d6{bottom:800.684920pt;}
.y1a9{bottom:801.196506pt;}
.y124{bottom:801.393333pt;}
.ya{bottom:809.396000pt;}
.y1d5{bottom:809.404400pt;}
.ye8{bottom:810.558667pt;}
.y62{bottom:812.933333pt;}
.y275{bottom:813.148000pt;}
.y276{bottom:813.149333pt;}
.y96{bottom:814.145333pt;}
.y20e{bottom:814.544000pt;}
.ye9{bottom:815.380000pt;}
.y23f{bottom:817.413333pt;}
.y17c{bottom:819.183587pt;}
.y1a8{bottom:821.645322pt;}
.y9{bottom:826.133333pt;}
.ye7{bottom:827.296000pt;}
.y17b{bottom:827.903067pt;}
.y274{bottom:828.490667pt;}
.y61{bottom:829.670667pt;}
.y95{bottom:830.882667pt;}
.y123{bottom:831.281333pt;}
.y23e{bottom:833.034667pt;}
.y1a7{bottom:842.188726pt;}
.y8{bottom:842.869333pt;}
.y273{bottom:843.833333pt;}
.ye6{bottom:844.033333pt;}
.y60{bottom:846.408000pt;}
.y94{bottom:847.620000pt;}
.y122{bottom:848.018667pt;}
.y192{bottom:851.696920pt;}
.y23d{bottom:856.625333pt;}
.y272{bottom:859.176000pt;}
.y7{bottom:859.606667pt;}
.y191{bottom:860.416400pt;}
.ye5{bottom:860.770667pt;}
.y1a6{bottom:862.732131pt;}
.y5f{bottom:863.145333pt;}
.y93{bottom:864.357333pt;}
.y120{bottom:864.754667pt;}
.y121{bottom:869.577333pt;}
.y271{bottom:874.518667pt;}
.ye4{bottom:877.508000pt;}
.y5e{bottom:879.882667pt;}
.y23c{bottom:880.217333pt;}
.y92{bottom:881.094667pt;}
.y11f{bottom:881.492000pt;}
.y1a5{bottom:883.180947pt;}
.y270{bottom:889.861333pt;}
.ye3{bottom:894.245333pt;}
.y23b{bottom:895.838667pt;}
.y5d{bottom:896.620000pt;}
.y90{bottom:897.832000pt;}
.y11e{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y91{bottom:902.653333pt;}
.y26f{bottom:905.204000pt;}
.y1a4{bottom:908.524333pt;}
.ye1{bottom:910.982667pt;}
.y23a{bottom:911.460000pt;}
.y5c{bottom:913.357333pt;}
.y8f{bottom:914.569333pt;}
.y11d{bottom:914.966667pt;}
.ye2{bottom:915.804000pt;}
.y26e{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y239{bottom:927.081333pt;}
.ydf{bottom:927.720000pt;}
.y5b{bottom:930.094667pt;}
.y11b{bottom:931.704000pt;}
.ye0{bottom:932.541333pt;}
.y8e{bottom:935.290667pt;}
.y26d{bottom:935.889333pt;}
.y11c{bottom:936.526667pt;}
.y238{bottom:942.702667pt;}
.yde{bottom:944.456000pt;}
.y5a{bottom:946.832000pt;}
.y11a{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y26c{bottom:951.230667pt;}
.ydd{bottom:961.193333pt;}
.y59{bottom:963.569333pt;}
.y8d{bottom:965.178667pt;}
.y237{bottom:966.294667pt;}
.y26b{bottom:966.573333pt;}
.y1a2{bottom:966.700304pt;}
.y3{bottom:975.722667pt;}
.y1a1{bottom:977.163680pt;}
.y119{bottom:979.489333pt;}
.y8c{bottom:981.916000pt;}
.y58{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y57{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.h2e{height:25.811318pt;}
.hc{height:27.076941pt;}
.hd{height:27.300102pt;}
.h25{height:27.384375pt;}
.h19{height:28.023859pt;}
.h1a{height:29.397999pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h15{height:31.200285pt;}
.h14{height:33.378918pt;}
.h11{height:34.574438pt;}
.h12{height:34.813542pt;}
.h13{height:35.100467pt;}
.h1b{height:36.873667pt;}
.h1c{height:37.087439pt;}
.h16{height:38.415786pt;}
.h17{height:38.681455pt;}
.h10{height:38.809074pt;}
.h4{height:39.000258pt;}
.h20{height:39.588281pt;}
.h2d{height:43.660390pt;}
.h22{height:44.648438pt;}
.h2{height:45.272024pt;}
.h2a{height:46.154625pt;}
.h28{height:47.505937pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h18{height:48.511220pt;}
.h21{height:49.708594pt;}
.h2b{height:53.578125pt;}
.h29{height:59.650312pt;}
.h6{height:69.148877pt;}
.h5{height:69.435802pt;}
.h1d{height:77.069355pt;}
.h3{height:91.114522pt;}
.h1e{height:114.077355pt;}
.h27{height:446.371200pt;}
.h2c{height:721.284000pt;}
.h23{height:727.356000pt;}
.h1f{height:745.578667pt;}
.h24{height:769.120000pt;}
.h26{height:803.874667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w7{width:504.524400pt;}
.w6{width:558.340267pt;}
.w5{width:592.348933pt;}
.w9{width:647.006400pt;}
.w4{width:654.484667pt;}
.w8{width:660.894400pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xdb{left:-83.547200pt;}
.xcc{left:-65.798267pt;}
.xbb{left:-64.677067pt;}
.xde{left:-49.563200pt;}
.xcd{left:-37.478267pt;}
.xbd{left:-36.357067pt;}
.xa1{left:-26.744400pt;}
.x56{left:-22.774000pt;}
.xea{left:-20.204267pt;}
.x0{left:0.000000pt;}
.xa3{left:1.575600pt;}
.x58{left:5.546000pt;}
.xec{left:8.116448pt;}
.xeb{left:17.635733pt;}
.xed{left:21.795733pt;}
.x3{left:26.021437pt;}
.xee{left:31.235733pt;}
.xef{left:34.915733pt;}
.x1{left:48.000000pt;}
.x2{left:51.605861pt;}
.xda{left:66.405333pt;}
.x55{left:69.608667pt;}
.xe9{left:73.348267pt;}
.x126{left:75.240000pt;}
.x59{left:76.346667pt;}
.x61{left:79.937333pt;}
.x12d{left:82.900000pt;}
.xfb{left:86.233333pt;}
.xd5{left:87.205333pt;}
.x62{left:88.568000pt;}
.xfc{left:91.546667pt;}
.xa0{left:100.676400pt;}
.xfd{left:109.194667pt;}
.xba{left:117.681067pt;}
.x68{left:119.410667pt;}
.xdc{left:125.061184pt;}
.xa4{left:127.258667pt;}
.x6e{left:128.201333pt;}
.x69{left:129.369333pt;}
.x5a{left:133.892000pt;}
.x66{left:141.002667pt;}
.xcb{left:144.588933pt;}
.x67{left:147.649333pt;}
.xbe{left:153.162933pt;}
.xbf{left:156.842933pt;}
.xdd{left:159.044214pt;}
.xc0{left:166.282933pt;}
.xa5{left:170.208000pt;}
.xf6{left:175.413333pt;}
.xa6{left:178.181333pt;}
.xf7{left:184.714667pt;}
.xc2{left:185.957333pt;}
.xc3{left:193.930667pt;}
.xc5{left:202.546667pt;}
.x5d{left:204.406667pt;}
.xc6{left:209.850667pt;}
.xae{left:211.801333pt;}
.xc7{left:214.744000pt;}
.xaf{left:216.452000pt;}
.xc8{left:220.057333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xdf{left:225.269333pt;}
.xc9{left:229.641333pt;}
.xca{left:238.105333pt;}
.x5{left:241.085333pt;}
.xc4{left:243.334667pt;}
.x5e{left:244.336000pt;}
.x42{left:246.412000pt;}
.x109{left:249.973333pt;}
.x10{left:251.365333pt;}
.x43{left:254.617333pt;}
.xce{left:259.721733pt;}
.xf0{left:262.275733pt;}
.xcf{left:263.401733pt;}
.x94{left:265.689333pt;}
.xfa{left:266.664000pt;}
.xb1{left:268.154667pt;}
.x95{left:271.401333pt;}
.x87{left:272.582667pt;}
.xf1{left:275.395733pt;}
.xd0{left:276.441733pt;}
.x7{left:277.684000pt;}
.xf2{left:279.075733pt;}
.x23{left:282.157333pt;}
.x5f{left:284.516000pt;}
.x44{left:285.509333pt;}
.x24{left:288.798667pt;}
.x60{left:292.490667pt;}
.x75{left:294.558667pt;}
.xd6{left:296.093333pt;}
.xb2{left:298.585333pt;}
.x45{left:299.525333pt;}
.x11c{left:300.550667pt;}
.xb6{left:302.508000pt;}
.xb3{left:308.953333pt;}
.x98{left:312.953333pt;}
.x108{left:314.410667pt;}
.x46{left:315.682667pt;}
.xb4{left:317.976000pt;}
.x99{left:319.002667pt;}
.x96{left:321.165333pt;}
.x7a{left:322.778667pt;}
.x9d{left:323.920000pt;}
.x91{left:325.273333pt;}
.x6a{left:327.502667pt;}
.x74{left:328.690667pt;}
.x6d{left:329.869333pt;}
.x123{left:332.146667pt;}
.x92{left:333.477333pt;}
.x21{left:334.869333pt;}
.x7b{left:336.549333pt;}
.x2b{left:338.278667pt;}
.x2d{left:340.505333pt;}
.x22{left:341.510667pt;}
.xfe{left:343.045333pt;}
.x8{left:344.570667pt;}
.xb5{left:346.925333pt;}
.x122{left:348.464000pt;}
.x8e{left:350.410667pt;}
.x2c{left:351.562667pt;}
.x2e{left:353.789333pt;}
.x63{left:355.409333pt;}
.xa7{left:356.668000pt;}
.x25{left:357.842667pt;}
.x7c{left:358.733333pt;}
.x9{left:360.285333pt;}
.x7d{left:364.784000pt;}
.xa8{left:366.626667pt;}
.x118{left:369.102667pt;}
.x26{left:371.126667pt;}
.x48{left:376.284000pt;}
.x15{left:377.681333pt;}
.x93{left:381.268000pt;}
.x8f{left:382.604000pt;}
.x16{left:384.322667pt;}
.x49{left:386.777333pt;}
.x17{left:387.710667pt;}
.x10f{left:389.457333pt;}
.x90{left:390.808000pt;}
.x4a{left:392.489333pt;}
.x18{left:394.352000pt;}
.x72{left:397.365333pt;}
.x88{left:398.804000pt;}
.xc1{left:401.002933pt;}
.x19{left:404.129333pt;}
.x3a{left:405.989333pt;}
.x8c{left:407.932000pt;}
.x1f{left:409.100000pt;}
.x1a{left:410.770667pt;}
.x11e{left:412.097333pt;}
.x9b{left:413.366667pt;}
.x73{left:414.708000pt;}
.x20{left:415.741333pt;}
.x47{left:417.834667pt;}
.x3b{left:420.170667pt;}
.x114{left:421.561333pt;}
.x76{left:422.984000pt;}
.xb7{left:426.261333pt;}
.xf4{left:427.315733pt;}
.x89{left:429.061333pt;}
.x115{left:429.976000pt;}
.xf5{left:430.995733pt;}
.x3c{left:433.188000pt;}
.xf8{left:434.153333pt;}
.xe0{left:435.220000pt;}
.x77{left:437.000000pt;}
.xf3{left:438.755733pt;}
.x3d{left:442.154667pt;}
.x8a{left:443.721333pt;}
.x10b{left:444.996000pt;}
.x64{left:446.824000pt;}
.x9c{left:448.304000pt;}
.x8b{left:449.433333pt;}
.xd3{left:450.356000pt;}
.x81{left:451.924000pt;}
.x65{left:454.129333pt;}
.x119{left:456.133333pt;}
.x11b{left:458.240000pt;}
.xd4{left:460.314667pt;}
.x1b{left:462.434667pt;}
.x110{left:464.248000pt;}
.x1c{left:469.076000pt;}
.xff{left:469.994667pt;}
.x101{left:471.398667pt;}
.xb8{left:473.054667pt;}
.xd7{left:474.358667pt;}
.x102{left:476.712000pt;}
.xe4{left:477.893333pt;}
.xd8{left:484.317333pt;}
.xb9{left:486.337333pt;}
.x116{left:487.536000pt;}
.x10c{left:488.784000pt;}
.x103{left:491.290667pt;}
.x29{left:492.662667pt;}
.xe5{left:493.848000pt;}
.x82{left:499.009333pt;}
.x117{left:500.154667pt;}
.x10d{left:501.402667pt;}
.xa{left:504.354667pt;}
.x2a{left:505.946667pt;}
.xb{left:511.629333pt;}
.x11d{left:512.888000pt;}
.x13{left:514.561333pt;}
.x35{left:517.013333pt;}
.x9e{left:519.489333pt;}
.x14{left:521.202667pt;}
.x10e{left:524.340000pt;}
.x52{left:525.934667pt;}
.xf9{left:526.876000pt;}
.x100{left:528.438667pt;}
.x2f{left:529.900000pt;}
.x9f{left:531.736000pt;}
.x36{left:532.880000pt;}
.xa9{left:534.580000pt;}
.xab{left:536.376000pt;}
.x53{left:539.218667pt;}
.xaa{left:541.885333pt;}
.x30{left:543.182667pt;}
.x37{left:545.632000pt;}
.x31{left:551.888000pt;}
.x32{left:557.938667pt;}
.xc{left:558.953333pt;}
.xe6{left:562.814667pt;}
.xd{left:564.266667pt;}
.x3e{left:566.497333pt;}
.x6f{left:568.389333pt;}
.xd9{left:571.897333pt;}
.xe{left:573.476000pt;}
.x70{left:575.694667pt;}
.xbc{left:577.480745pt;}
.x104{left:578.666667pt;}
.x3f{left:580.678667pt;}
.xe2{left:581.661333pt;}
.xf{left:583.889333pt;}
.x11f{left:588.533333pt;}
.xd1{left:589.853333pt;}
.x40{left:593.696000pt;}
.xac{left:594.676000pt;}
.x41{left:602.664000pt;}
.xad{left:604.634667pt;}
.xa2{left:606.452430pt;}
.x4b{left:611.189333pt;}
.x127{left:615.674667pt;}
.x4c{left:616.901333pt;}
.x105{left:619.269333pt;}
.x33{left:623.433333pt;}
.x4d{left:627.550667pt;}
.x12e{left:628.502667pt;}
.x34{left:629.484000pt;}
.x78{left:634.834667pt;}
.x4e{left:637.237333pt;}
.x128{left:639.585333pt;}
.x9a{left:641.386667pt;}
.x8d{left:643.784000pt;}
.x79{left:648.850667pt;}
.xe3{left:651.448000pt;}
.x85{left:652.454667pt;}
.xe1{left:653.848000pt;}
.x38{left:655.521333pt;}
.x57{left:657.463308pt;}
.x54{left:659.670667pt;}
.x39{left:661.438667pt;}
.x86{left:663.336000pt;}
.x120{left:666.082667pt;}
.x11{left:667.054667pt;}
.xb0{left:667.980000pt;}
.x10a{left:668.948000pt;}
.x4f{left:670.656000pt;}
.x12{left:673.696000pt;}
.x111{left:675.900000pt;}
.x106{left:677.350667pt;}
.x121{left:679.366667pt;}
.x6b{left:680.374667pt;}
.x83{left:682.225333pt;}
.x6c{left:685.024000pt;}
.x112{left:686.893333pt;}
.x84{left:688.276000pt;}
.x1d{left:689.389333pt;}
.x107{left:690.634667pt;}
.x124{left:694.810667pt;}
.x1e{left:696.030667pt;}
.x11a{left:697.684000pt;}
.x129{left:701.552000pt;}
.x12c{left:702.553333pt;}
.x7e{left:703.506667pt;}
.x5b{left:705.188000pt;}
.xd2{left:706.674667pt;}
.x5c{left:714.489333pt;}
.x113{left:716.688000pt;}
.x125{left:718.721333pt;}
.x12b{left:720.322667pt;}
.xe7{left:721.900000pt;}
.x12a{left:725.462667pt;}
.x27{left:726.842667pt;}
.x50{left:728.482667pt;}
.x7f{left:730.421333pt;}
.x71{left:732.190667pt;}
.x51{left:734.533333pt;}
.x80{left:736.470667pt;}
.x97{left:738.158667pt;}
.x28{left:740.126667pt;}
.xe8{left:743.973333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  