
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8977a5c9e76c89837b4ffcb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0589308050c5c05573bff0c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_3083f21c6f8daa3a55d81a2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c29d1d23c340e63905d65076.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c7d0b1ba32c0207edf71925.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fd5c4875ce5aa85e37ae14e1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a87ed2c948d2adcfcf18bda0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c8ad4e560ec23dddb4c22eee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.014160;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_01a43b7d39ef0f58cde52c26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_2a62ef3759d6f64d1399d121.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4abad6f1f894e68eea8776a9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8bee67af63836f39a4e779cb.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;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_d3b0a4bc97c6686495f4ade3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_d1fe403f62f96c51a60b003b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_9f9876e34d17282cc65fe601.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_5b7f361ebc072e7d8c992b36.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.014160;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_97a59ad4f778ee7fb7121037.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.003906;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_b615cce3416990a733a07397.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_a5dbd94443328109d45db862.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.909180;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_d9494eb45f7aa3afab83da33.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.014160;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_42d2ca2c8c8dde0d7a657536.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.003906;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_de03fd74b8405d29a2985e0e.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_38f704ce5728c2f19473e5f2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.909180;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_2d02c8bbb53bd498c3218930.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.987000;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_4fb127046a0947d6ebfa7549.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_6417b788c5376542c5382a20.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_b6f6435e90f3885c0e579d7e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.199000;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_52d69a1975b9c8161a29c1c9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.014160;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_d188ea819faaa4381ae6236b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.003906;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_e046e0219bc42cc0dacd09da.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_00031d3061ea04f4ab8b9d51.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_52d69a1975b9c8161a29c1c9.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_7bda55f6ea900da36c378a17.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_bea468ee8f3813db55d1fbad.woff2')format("woff");}.ff25{font-family:ff25;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m17{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);}
.m11{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);}
.m1f{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);}
.m10{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);}
.m1a{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);}
.md{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);}
.m25{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);}
.m14{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);}
.mb{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);}
.m6{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);}
.m4{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);}
.m21{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);}
.m9{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);}
.m16{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);}
.m20{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);}
.m8{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);}
.mf{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);}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m3{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);}
.m27{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);}
.m24{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);}
.m22{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);}
.m13{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);}
.m29{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);}
.m1c{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);}
.mc{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);}
.m1e{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);}
.m15{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);}
.m1d{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);}
.m26{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);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.vd{vertical-align:-23.760000px;}
.v2{vertical-align:-17.364000px;}
.vb{vertical-align:-14.400000px;}
.v8{vertical-align:-12.240000px;}
.v5{vertical-align:-11.016000px;}
.ve{vertical-align:-8.964000px;}
.va{vertical-align:-2.880000px;}
.v12{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v6{vertical-align:11.016000px;}
.v9{vertical-align:12.240000px;}
.v13{vertical-align:18.282000px;}
.v11{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:36.288000px;}
.vc{vertical-align:38.160000px;}
.v3{vertical-align:40.824000px;}
.v10{vertical-align:42.750000px;}
.vf{vertical-align:48.450000px;}
.ls1d{letter-spacing:-0.338580px;}
.ls15{letter-spacing:-0.243000px;}
.ls3a{letter-spacing:-0.220200px;}
.ls38{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.013320px;}
.lse{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls84{letter-spacing:0.000800px;}
.ls8a{letter-spacing:0.000959px;}
.ls8e{letter-spacing:0.001036px;}
.ls8b{letter-spacing:0.001155px;}
.ls7e{letter-spacing:0.001502px;}
.ls4{letter-spacing:0.001831px;}
.lsa{letter-spacing:0.001933px;}
.ls89{letter-spacing:0.001938px;}
.ls9{letter-spacing:0.001952px;}
.lsf{letter-spacing:0.002108px;}
.ls70{letter-spacing:0.002383px;}
.ls91{letter-spacing:0.002618px;}
.ls81{letter-spacing:0.002683px;}
.ls7f{letter-spacing:0.002841px;}
.ls82{letter-spacing:0.002872px;}
.ls8f{letter-spacing:0.003040px;}
.ls16{letter-spacing:0.003178px;}
.ls85{letter-spacing:0.003668px;}
.ls87{letter-spacing:0.004026px;}
.ls6{letter-spacing:0.004200px;}
.ls90{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.017820px;}
.ls12{letter-spacing:0.018000px;}
.ls36{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.058320px;}
.ls1c{letter-spacing:0.089100px;}
.ls14{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.093636px;}
.ls1f{letter-spacing:0.113400px;}
.ls19{letter-spacing:0.124740px;}
.ls2d{letter-spacing:0.125820px;}
.ls11{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.128660px;}
.ls39{letter-spacing:0.139800px;}
.ls3b{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.162000px;}
.ls7b{letter-spacing:0.176400px;}
.ls17{letter-spacing:0.178200px;}
.ls10{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.201000px;}
.ls43{letter-spacing:0.222775px;}
.ls18{letter-spacing:0.261360px;}
.ls3f{letter-spacing:0.548815px;}
.ls6e{letter-spacing:0.585634px;}
.ls65{letter-spacing:0.747634px;}
.ls5c{letter-spacing:0.748200px;}
.ls2c{letter-spacing:0.753178px;}
.ls50{letter-spacing:0.991331px;}
.ls62{letter-spacing:0.994200px;}
.ls40{letter-spacing:0.997331px;}
.ls42{letter-spacing:1.166383px;}
.ls21{letter-spacing:1.216944px;}
.lsd{letter-spacing:1.275394px;}
.ls4a{letter-spacing:1.314017px;}
.ls32{letter-spacing:1.352160px;}
.ls47{letter-spacing:1.416583px;}
.ls55{letter-spacing:1.420741px;}
.ls3e{letter-spacing:1.452571px;}
.ls5b{letter-spacing:1.489694px;}
.ls4d{letter-spacing:1.490700px;}
.ls5e{letter-spacing:1.495694px;}
.ls24{letter-spacing:1.639764px;}
.ls31{letter-spacing:1.821960px;}
.ls0{letter-spacing:1.861130px;}
.ls6b{letter-spacing:1.905634px;}
.ls46{letter-spacing:1.942200px;}
.ls57{letter-spacing:2.088583px;}
.ls22{letter-spacing:2.365524px;}
.ls63{letter-spacing:2.389694px;}
.ls56{letter-spacing:2.689694px;}
.ls28{letter-spacing:2.844720px;}
.ls69{letter-spacing:2.907634px;}
.ls5f{letter-spacing:2.908200px;}
.ls73{letter-spacing:2.988600px;}
.ls71{letter-spacing:2.989200px;}
.ls5{letter-spacing:2.998354px;}
.ls23{letter-spacing:3.218292px;}
.ls27{letter-spacing:3.320460px;}
.ls53{letter-spacing:3.348583px;}
.ls66{letter-spacing:3.363634px;}
.ls2f{letter-spacing:3.437280px;}
.ls29{letter-spacing:3.542292px;}
.ls33{letter-spacing:3.614400px;}
.ls30{letter-spacing:3.935880px;}
.ls20{letter-spacing:8.836452px;}
.ls1{letter-spacing:10.455300px;}
.ls2{letter-spacing:10.461299px;}
.lsc{letter-spacing:11.954850px;}
.ls80{letter-spacing:12.895298px;}
.ls6d{letter-spacing:13.089483px;}
.ls7d{letter-spacing:13.448400px;}
.ls72{letter-spacing:13.449600px;}
.ls8d{letter-spacing:13.454400px;}
.ls88{letter-spacing:13.495298px;}
.ls83{letter-spacing:13.602072px;}
.ls86{letter-spacing:13.768047px;}
.ls74{letter-spacing:14.094088px;}
.ls76{letter-spacing:14.100088px;}
.ls7c{letter-spacing:14.645022px;}
.ls7a{letter-spacing:14.704798px;}
.ls26{letter-spacing:14.832720px;}
.ls58{letter-spacing:15.616741px;}
.ls48{letter-spacing:15.931200px;}
.ls49{letter-spacing:16.077483px;}
.ls8c{letter-spacing:16.203341px;}
.ls79{letter-spacing:16.438290px;}
.ls45{letter-spacing:17.319483px;}
.ls4f{letter-spacing:17.354100px;}
.ls25{letter-spacing:17.748720px;}
.ls7{letter-spacing:17.935200px;}
.ls4c{letter-spacing:18.069483px;}
.ls3c{letter-spacing:18.100200px;}
.ls2a{letter-spacing:18.446292px;}
.ls54{letter-spacing:18.500153px;}
.ls52{letter-spacing:18.518383px;}
.ls64{letter-spacing:18.695675px;}
.ls59{letter-spacing:18.696583px;}
.ls4e{letter-spacing:20.478571px;}
.ls34{letter-spacing:20.565720px;}
.ls6a{letter-spacing:20.904571px;}
.ls44{letter-spacing:20.911200px;}
.ls51{letter-spacing:21.228571px;}
.ls5a{letter-spacing:31.341507px;}
.ls67{letter-spacing:34.418458px;}
.ls3d{letter-spacing:35.523483px;}
.ls60{letter-spacing:35.599771px;}
.ls2e{letter-spacing:62.372520px;}
.ls8{letter-spacing:62.761200px;}
.ls5d{letter-spacing:63.511200px;}
.lsb{letter-spacing:64.321654px;}
.ls6c{letter-spacing:85.296571px;}
.ls6f{letter-spacing:102.864571px;}
.ls75{letter-spacing:544.224600px;}
.ls78{letter-spacing:557.676600px;}
.ls77{letter-spacing:571.128600px;}
.ls61{letter-spacing:760.731507px;}
.ls68{letter-spacing:764.139507px;}
.ls4b{letter-spacing:918.914153px;}
.ls41{letter-spacing:953.964571px;}
.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;}
}
.ws58{word-spacing:-60.120000px;}
.wsaa{word-spacing:-54.000000px;}
.ws6c{word-spacing:-53.460000px;}
.ws96{word-spacing:-50.888152px;}
.ws66{word-spacing:-47.337600px;}
.ws87{word-spacing:-42.120000px;}
.ws86{word-spacing:-42.071040px;}
.ws84{word-spacing:-41.603040px;}
.ws88{word-spacing:-25.866960px;}
.ws82{word-spacing:-15.231000px;}
.ws89{word-spacing:-15.169800px;}
.ws57{word-spacing:-15.030000px;}
.ws56{word-spacing:-15.016680px;}
.ws16{word-spacing:-14.943900px;}
.ws83{word-spacing:-14.850000px;}
.ws8a{word-spacing:-14.809800px;}
.ws8b{word-spacing:-13.644000px;}
.wsab{word-spacing:-13.518000px;}
.ws59{word-spacing:-13.500000px;}
.wsa4{word-spacing:-13.449600px;}
.ws6b{word-spacing:-13.365000px;}
.ws55{word-spacing:-12.150000px;}
.ws6a{word-spacing:-12.028500px;}
.ws54{word-spacing:-11.970000px;}
.ws35{word-spacing:-11.955150px;}
.ws77{word-spacing:-11.903760px;}
.ws69{word-spacing:-11.850300px;}
.wsb2{word-spacing:-11.730600px;}
.ws13{word-spacing:-11.357400px;}
.ws76{word-spacing:-10.935000px;}
.ws75{word-spacing:-10.773000px;}
.ws5{word-spacing:-10.460700px;}
.ws79{word-spacing:-8.339760px;}
.ws95{word-spacing:-4.244068px;}
.ws7b{word-spacing:-3.443098px;}
.wsb9{word-spacing:-3.287658px;}
.ws7a{word-spacing:-3.120307px;}
.ws63{word-spacing:-2.929004px;}
.wsbb{word-spacing:-2.809453px;}
.ws64{word-spacing:-2.689902px;}
.wsc8{word-spacing:-2.570351px;}
.ws2f{word-spacing:-2.211697px;}
.wsb8{word-spacing:-2.032370px;}
.ws1{word-spacing:-1.908367px;}
.wsa9{word-spacing:-1.853044px;}
.ws40{word-spacing:-1.733492px;}
.ws65{word-spacing:-1.673717px;}
.ws1e{word-spacing:-1.398758px;}
.ws73{word-spacing:-1.374839px;}
.wscd{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.wsda{word-spacing:-1.291162px;}
.ws2e{word-spacing:-1.255288px;}
.ws4a{word-spacing:-1.195512px;}
.ws8{word-spacing:-1.171598px;}
.wsc7{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.ws9c{word-spacing:-1.016185px;}
.ws70{word-spacing:-0.956410px;}
.ws2a{word-spacing:-0.896634px;}
.ws92{word-spacing:-0.806984px;}
.ws93{word-spacing:-0.777083px;}
.wsdc{word-spacing:-0.753178px;}
.ws80{word-spacing:-0.717307px;}
.ws38{word-spacing:-0.657532px;}
.ws1a{word-spacing:-0.591782px;}
.wsde{word-spacing:-0.537984px;}
.wse9{word-spacing:-0.484186px;}
.ws81{word-spacing:-0.478205px;}
.ws71{word-spacing:-0.418429px;}
.ws47{word-spacing:-0.358654px;}
.ws85{word-spacing:-0.342720px;}
.wsc9{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.wscb{word-spacing:-0.268992px;}
.ws44{word-spacing:-0.239102px;}
.ws60{word-spacing:-0.215194px;}
.ws33{word-spacing:-0.179327px;}
.ws5a{word-spacing:-0.161395px;}
.ws2d{word-spacing:-0.119551px;}
.wsac{word-spacing:-0.107597px;}
.ws15{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.ws9b{word-spacing:-0.045430px;}
.ws6{word-spacing:-0.041843px;}
.wsd1{word-spacing:-0.028598px;}
.wsd6{word-spacing:-0.026755px;}
.ws90{word-spacing:-0.005645px;}
.ws17{word-spacing:-0.002734px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.053798px;}
.ws24{word-spacing:0.059776px;}
.ws1f{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.wse5{word-spacing:0.132430px;}
.wsa2{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws5f{word-spacing:0.215194px;}
.ws67{word-spacing:0.239102px;}
.ws6d{word-spacing:0.268992px;}
.wsf6{word-spacing:0.291953px;}
.ws37{word-spacing:0.298878px;}
.ws94{word-spacing:0.309860px;}
.ws6e{word-spacing:0.322790px;}
.ws3b{word-spacing:0.358654px;}
.ws72{word-spacing:0.418429px;}
.ws5e{word-spacing:0.430387px;}
.ws48{word-spacing:0.478205px;}
.wsf9{word-spacing:0.484186px;}
.ws5c{word-spacing:0.537984px;}
.wsbe{word-spacing:0.597756px;}
.wsf8{word-spacing:0.634100px;}
.wsf7{word-spacing:0.645581px;}
.wsa5{word-spacing:0.647050px;}
.ws9f{word-spacing:0.657532px;}
.wsa6{word-spacing:0.668400px;}
.wsa3{word-spacing:0.673200px;}
.ws45{word-spacing:0.717307px;}
.ws9a{word-spacing:0.745424px;}
.wsbf{word-spacing:0.777083px;}
.ws3f{word-spacing:0.896634px;}
.ws9{word-spacing:0.962384px;}
.ws1b{word-spacing:0.968371px;}
.ws7f{word-spacing:1.016185px;}
.ws50{word-spacing:1.075961px;}
.ws101{word-spacing:1.129766px;}
.ws30{word-spacing:1.135736px;}
.ws4c{word-spacing:1.195512px;}
.ws4e{word-spacing:1.255288px;}
.ws61{word-spacing:1.291162px;}
.ws32{word-spacing:1.315063px;}
.ws31{word-spacing:1.374839px;}
.ws98{word-spacing:1.434614px;}
.ws100{word-spacing:1.452557px;}
.wsa8{word-spacing:1.494390px;}
.ws74{word-spacing:1.554166px;}
.wsc6{word-spacing:1.613941px;}
.wse4{word-spacing:1.613952px;}
.ws41{word-spacing:1.793268px;}
.wsff{word-spacing:1.829146px;}
.ws97{word-spacing:1.853044px;}
.ws1d{word-spacing:1.882944px;}
.ws3a{word-spacing:1.912819px;}
.ws7d{word-spacing:1.936742px;}
.ws53{word-spacing:1.972595px;}
.wsee{word-spacing:2.044339px;}
.ws28{word-spacing:2.092146px;}
.ws62{word-spacing:2.098138px;}
.wsc5{word-spacing:2.151922px;}
.wsea{word-spacing:2.151936px;}
.ws21{word-spacing:2.205734px;}
.ws68{word-spacing:2.211697px;}
.ws9d{word-spacing:2.271473px;}
.wsb1{word-spacing:2.331248px;}
.ws8f{word-spacing:2.420928px;}
.ws51{word-spacing:2.450800px;}
.wscc{word-spacing:2.474726px;}
.ws46{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.wsce{word-spacing:2.528525px;}
.wsed{word-spacing:2.587041px;}
.wsc3{word-spacing:2.630126px;}
.ws8d{word-spacing:2.743718px;}
.ws7c{word-spacing:2.797517px;}
.ws26{word-spacing:2.869229px;}
.ws19{word-spacing:2.869236px;}
.ws25{word-spacing:2.929004px;}
.ws7e{word-spacing:2.988780px;}
.wsf4{word-spacing:3.012710px;}
.wsaf{word-spacing:3.048556px;}
.ws8c{word-spacing:3.066509px;}
.wsad{word-spacing:3.120307px;}
.wse7{word-spacing:3.164507px;}
.wsf5{word-spacing:3.218246px;}
.ws22{word-spacing:3.219667px;}
.wsd5{word-spacing:3.220397px;}
.wsef{word-spacing:3.222413px;}
.wsf0{word-spacing:3.223642px;}
.ws2b{word-spacing:3.227882px;}
.wsd9{word-spacing:3.227904px;}
.wsca{word-spacing:3.281702px;}
.wse2{word-spacing:3.335501px;}
.ws43{word-spacing:3.347434px;}
.ws52{word-spacing:3.407209px;}
.ws5d{word-spacing:3.496896px;}
.ws39{word-spacing:3.526760px;}
.wsa1{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws4b{word-spacing:3.706087px;}
.ws4d{word-spacing:3.765863px;}
.wse6{word-spacing:3.819686px;}
.wsbc{word-spacing:3.825638px;}
.ws5b{word-spacing:3.873485px;}
.ws9e{word-spacing:3.885414px;}
.wsa0{word-spacing:3.927283px;}
.ws3c{word-spacing:3.945190px;}
.wsb5{word-spacing:3.981082px;}
.wsc0{word-spacing:4.004965px;}
.ws4f{word-spacing:4.064741px;}
.ws29{word-spacing:4.184292px;}
.wse0{word-spacing:4.196275px;}
.wse1{word-spacing:4.204688px;}
.wsc4{word-spacing:4.363619px;}
.ws49{word-spacing:4.722272px;}
.ws10{word-spacing:4.770079px;}
.ws11{word-spacing:4.853765px;}
.wsb4{word-spacing:4.895654px;}
.ws3e{word-spacing:5.140702px;}
.ws3d{word-spacing:5.200477px;}
.ws8e{word-spacing:5.218445px;}
.wsb3{word-spacing:5.272243px;}
.ws42{word-spacing:5.678682px;}
.wsc1{word-spacing:5.738458px;}
.wsec{word-spacing:5.971622px;}
.wsb0{word-spacing:5.977560px;}
.ws78{word-spacing:5.977800px;}
.wsae{word-spacing:6.097111px;}
.wsd8{word-spacing:6.133018px;}
.ws6f{word-spacing:6.216662px;}
.wsfd{word-spacing:6.294413px;}
.wsd7{word-spacing:6.509606px;}
.wsc2{word-spacing:6.515540px;}
.wsbd{word-spacing:6.635092px;}
.wsfc{word-spacing:6.832397px;}
.ws91{word-spacing:7.352399px;}
.wse{word-spacing:7.782761px;}
.wsf3{word-spacing:7.854566px;}
.wsa7{word-spacing:7.950155px;}
.wsba{word-spacing:8.009930px;}
.ws99{word-spacing:8.428360px;}
.ws4{word-spacing:10.418857px;}
.ws34{word-spacing:11.905145px;}
.wsc{word-spacing:12.176255px;}
.wsdd{word-spacing:12.642624px;}
.wsfb{word-spacing:12.911616px;}
.wsd0{word-spacing:13.234406px;}
.wsd3{word-spacing:13.393968px;}
.wsf1{word-spacing:13.394285px;}
.wsd2{word-spacing:13.395802px;}
.wsfe{word-spacing:13.396848px;}
.wsdf{word-spacing:13.557197px;}
.wsfa{word-spacing:13.879987px;}
.ws12{word-spacing:14.884124px;}
.ws7{word-spacing:15.481836px;}
.wscf{word-spacing:15.924326px;}
.wsd{word-spacing:16.109478px;}
.ws102{word-spacing:16.615757px;}
.wsdb{word-spacing:16.618608px;}
.wsd4{word-spacing:16.623706px;}
.wse8{word-spacing:16.625626px;}
.wsf2{word-spacing:16.892698px;}
.wse3{word-spacing:17.699674px;}
.wseb{word-spacing:23.563699px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws14{word-spacing:40.042186px;}
.wsb6{word-spacing:298.312128px;}
.wsb7{word-spacing:311.761728px;}
._20{margin-left:-26.193456px;}
._42{margin-left:-20.216221px;}
._8{margin-left:-11.225977px;}
._22{margin-left:-9.674582px;}
._17{margin-left:-7.770828px;}
._7{margin-left:-6.635092px;}
._2{margin-left:-4.828261px;}
._15{margin-left:-3.227882px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._9{width:3.697462px;}
._1a{width:5.293183px;}
._1b{width:6.339857px;}
._1e{width:7.380331px;}
._21{width:8.656281px;}
._1c{width:9.679490px;}
._5{width:11.398711px;}
._3{width:12.975841px;}
._10{width:14.830770px;}
._c{width:16.816570px;}
._13{width:18.769538px;}
._b{width:20.174400px;}
._16{width:21.758318px;}
._d{width:23.196250px;}
._24{width:24.209118px;}
._f{width:25.344854px;}
._18{width:26.719693px;}
._e{width:27.795654px;}
._43{width:29.427725px;}
._6{width:30.587087px;}
._40{width:31.867962px;}
._23{width:33.117485px;}
._14{width:34.550297px;}
._31{width:37.442227px;}
._25{width:41.185388px;}
._30{width:42.859105px;}
._a{width:54.383711px;}
._26{width:61.301452px;}
._41{width:88.767360px;}
._3a{width:93.663014px;}
._39{width:99.634637px;}
._36{width:105.606259px;}
._37{width:134.011814px;}
._38{width:136.970726px;}
._35{width:145.201882px;}
._34{width:154.831795px;}
._28{width:164.784499px;}
._3c{width:298.312128px;}
._3f{width:311.761728px;}
._3d{width:325.211328px;}
._3b{width:331.936128px;}
._3e{width:345.385728px;}
._2a{width:400.680557px;}
._27{width:461.751667px;}
._29{width:580.357229px;}
._2d{width:593.809229px;}
._2c{width:724.395456px;}
._2b{width:734.617152px;}
._2e{width:737.845056px;}
._11{width:748.201108px;}
._2f{width:758.019456px;}
._1f{width:1833.073802px;}
._33{width:1972.825888px;}
._1d{width:2016.490299px;}
._19{width:2036.869910px;}
._32{width:2424.724884px;}
._12{width:2448.634884px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(75,107,66);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs15{font-size:37.908000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs16{font-size:42.120000px;}
.fs12{font-size:43.092000px;}
.fs6{font-size:45.429600px;}
.fs19{font-size:46.922400px;}
.fs0{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fsf{font-size:47.401200px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs14{font-size:48.600000px;}
.fs1b{font-size:52.920000px;}
.fs11{font-size:53.460000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:54.000000px;}
.fs13{font-size:54.108000px;}
.fs18{font-size:56.058000px;}
.fs1a{font-size:58.917600px;}
.fs10{font-size:59.518800px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fse{font-size:62.286600px;}
.fs17{font-size:83.686200px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:124.850580px;}
.y10a{bottom:-556.924950px;}
.y127{bottom:-487.750950px;}
.y126{bottom:-470.416950px;}
.y125{bottom:-453.163950px;}
.y124{bottom:-435.829950px;}
.y123{bottom:-414.526950px;}
.y122{bottom:-380.965950px;}
.y121{bottom:-363.064950px;}
.y1d1{bottom:-341.316000px;}
.y120{bottom:-337.468950px;}
.y11f{bottom:-336.577950px;}
.y11e{bottom:-311.386950px;}
.y11d{bottom:-294.052950px;}
.y1e0{bottom:-278.586000px;}
.y11c{bottom:-276.799950px;}
.y1df{bottom:-259.416000px;}
.y11a{bottom:-255.253950px;}
.y118{bottom:-247.072950px;}
.y1de{bottom:-240.156000px;}
.y117{bottom:-238.000950px;}
.y11b{bottom:-237.433950px;}
.y1dd{bottom:-220.896000px;}
.y119{bottom:-217.912950px;}
.y1dc{bottom:-201.726000px;}
.y116{bottom:-197.743950px;}
.y1db{bottom:-182.466000px;}
.y115{bottom:-180.409950px;}
.y1da{bottom:-163.296000px;}
.y114{bottom:-163.075950px;}
.yd8{bottom:-152.157555px;}
.y140{bottom:-152.118000px;}
.y113{bottom:-145.822950px;}
.y1f1{bottom:-144.440730px;}
.y1d9{bottom:-144.006000px;}
.y9c{bottom:-134.775000px;}
.y112{bottom:-128.488950px;}
.y1d8{bottom:-124.746000px;}
.y1d7{bottom:-105.576000px;}
.y111{bottom:-95.359950px;}
.y164{bottom:-93.618000px;}
.yf5{bottom:-87.560055px;}
.y110{bottom:-79.726950px;}
.y163{bottom:-76.248000px;}
.y1f9{bottom:-75.468330px;}
.yf4{bottom:-70.363755px;}
.yb8{bottom:-69.885000px;}
.y1d6{bottom:-68.766000px;}
.y10f{bottom:-64.174950px;}
.y162{bottom:-58.968000px;}
.y1f8{bottom:-58.445730px;}
.yf3{bottom:-53.256555px;}
.yb7{bottom:-52.605000px;}
.y1d5{bottom:-51.396000px;}
.y10e{bottom:-48.622950px;}
.y161{bottom:-41.598000px;}
.y1f7{bottom:-41.423130px;}
.yf2{bottom:-36.149355px;}
.yb6{bottom:-35.325000px;}
.y1d4{bottom:-34.026000px;}
.y10d{bottom:-32.989950px;}
.y1f6{bottom:-24.488730px;}
.y160{bottom:-24.318000px;}
.yf1{bottom:-18.953055px;}
.yb5{bottom:-17.955000px;}
.y10c{bottom:-17.437950px;}
.y1d3{bottom:-16.746000px;}
.y1f5{bottom:-2.526930px;}
.y15f{bottom:-1.908000px;}
.y0{bottom:0.000000px;}
.y10b{bottom:2.758050px;}
.yf0{bottom:3.232845px;}
.y3{bottom:3.425340px;}
.yb4{bottom:4.455000px;}
.y1d2{bottom:5.664000px;}
.y14d{bottom:12.690000px;}
.y14e{bottom:13.500000px;}
.y2{bottom:14.151273px;}
.y21{bottom:17.984661px;}
.y4e{bottom:31.890000px;}
.y1fd{bottom:89.769000px;}
.yfa{bottom:91.353000px;}
.y1ed{bottom:91.710000px;}
.ybc{bottom:93.949500px;}
.y22f{bottom:97.528500px;}
.y129{bottom:99.937500px;}
.y4d{bottom:103.858500px;}
.y1f{bottom:104.646000px;}
.y235{bottom:107.193000px;}
.y1fc{bottom:109.002000px;}
.y19e{bottom:109.431000px;}
.y1ec{bottom:110.539500px;}
.yf9{bottom:110.586000px;}
.ybb{bottom:113.182500px;}
.y22e{bottom:116.358000px;}
.y128{bottom:119.170500px;}
.y284{bottom:121.762500px;}
.y1e{bottom:122.535000px;}
.y4c{bottom:122.688000px;}
.y16c{bottom:124.821000px;}
.y234{bottom:126.022500px;}
.y1fb{bottom:128.235000px;}
.y19d{bottom:128.260500px;}
.y1eb{bottom:129.369000px;}
.yf8{bottom:129.819000px;}
.yba{bottom:132.415500px;}
.y22d{bottom:135.187500px;}
.y283{bottom:139.023000px;}
.y1d{bottom:140.422500px;}
.y4b{bottom:141.517500px;}
.y16b{bottom:143.650500px;}
.y107{bottom:144.588000px;}
.y233{bottom:144.852000px;}
.y19c{bottom:147.090000px;}
.y1fa{bottom:147.466500px;}
.y1ea{bottom:148.198500px;}
.yf7{bottom:149.052000px;}
.yb9{bottom:151.648500px;}
.y22c{bottom:154.017000px;}
.y282{bottom:156.283500px;}
.y257{bottom:156.285000px;}
.y1c{bottom:158.310000px;}
.y4a{bottom:160.347000px;}
.y16a{bottom:162.480000px;}
.y232{bottom:163.681500px;}
.y1e9{bottom:167.028000px;}
.yf6{bottom:168.285000px;}
.y19b{bottom:170.403000px;}
.y22b{bottom:172.846500px;}
.y1ee{bottom:172.885500px;}
.y256{bottom:173.544000px;}
.y1b{bottom:176.199000px;}
.y99{bottom:177.066000px;}
.y49{bottom:179.176500px;}
.y231{bottom:182.511000px;}
.y81{bottom:182.959500px;}
.y1e8{bottom:185.857500px;}
.y19a{bottom:190.578000px;}
.y255{bottom:190.804500px;}
.y22a{bottom:191.676000px;}
.yd5{bottom:193.702500px;}
.y1a{bottom:194.086500px;}
.y169{bottom:196.047000px;}
.y48{bottom:198.006000px;}
.y80{bottom:201.789000px;}
.y1e7{bottom:204.687000px;}
.y230{bottom:205.824000px;}
.y254{bottom:208.065000px;}
.y1cd{bottom:208.146000px;}
.y229{bottom:210.505500px;}
.y19{bottom:211.974000px;}
.y168{bottom:215.278500px;}
.y47{bottom:216.835500px;}
.y7f{bottom:220.618500px;}
.y1e6{bottom:223.516500px;}
.y199{bottom:224.202000px;}
.y253{bottom:225.325500px;}
.y1cc{bottom:226.975500px;}
.y228{bottom:229.335000px;}
.y18{bottom:229.863000px;}
.y167{bottom:234.511500px;}
.y46{bottom:235.665000px;}
.y7e{bottom:239.446500px;}
.y1e5{bottom:242.344500px;}
.y252{bottom:242.586000px;}
.y198{bottom:243.031500px;}
.y1cb{bottom:245.805000px;}
.y227{bottom:248.164500px;}
.y166{bottom:253.744500px;}
.y45{bottom:254.494500px;}
.y7d{bottom:258.276000px;}
.y251{bottom:259.846500px;}
.y197{bottom:261.861000px;}
.y1ca{bottom:264.634500px;}
.y226{bottom:266.992500px;}
.y165{bottom:272.977500px;}
.y44{bottom:273.324000px;}
.y1e4{bottom:275.911500px;}
.y7c{bottom:277.105500px;}
.y250{bottom:277.107000px;}
.y196{bottom:280.690500px;}
.y1c9{bottom:283.464000px;}
.y225{bottom:285.822000px;}
.y43{bottom:292.153500px;}
.y281{bottom:294.366000px;}
.y24f{bottom:294.367500px;}
.y1e3{bottom:295.144500px;}
.y7b{bottom:295.935000px;}
.y13d{bottom:298.396500px;}
.y195{bottom:299.520000px;}
.y17{bottom:300.154500px;}
.y1c8{bottom:302.293500px;}
.y224{bottom:304.651500px;}
.y42{bottom:310.983000px;}
.y280{bottom:311.626500px;}
.y24e{bottom:311.628000px;}
.y1e2{bottom:314.376000px;}
.y7a{bottom:314.764500px;}
.y16{bottom:318.043500px;}
.y194{bottom:318.349500px;}
.y1c7{bottom:321.123000px;}
.y223{bottom:323.481000px;}
.y24d{bottom:328.887000px;}
.y41{bottom:329.812500px;}
.y79{bottom:333.594000px;}
.y1e1{bottom:333.609000px;}
.y15{bottom:335.931000px;}
.y193{bottom:337.179000px;}
.y1c6{bottom:339.952500px;}
.y222{bottom:342.310500px;}
.y24c{bottom:346.147500px;}
.y40{bottom:348.642000px;}
.y78{bottom:352.423500px;}
.y14{bottom:353.818500px;}
.y192{bottom:356.007000px;}
.y1c5{bottom:358.782000px;}
.y1ce{bottom:359.028000px;}
.y221{bottom:361.140000px;}
.y24b{bottom:363.408000px;}
.y3f{bottom:367.471500px;}
.y15e{bottom:369.102000px;}
.y77{bottom:371.253000px;}
.y191{bottom:371.454000px;}
.y190{bottom:376.717500px;}
.y1c4{bottom:377.611500px;}
.y220{bottom:379.969500px;}
.y27f{bottom:380.668500px;}
.y13{bottom:380.673000px;}
.y24a{bottom:385.152000px;}
.y3e{bottom:386.301000px;}
.y15d{bottom:388.272000px;}
.y76{bottom:390.082500px;}
.y1c3{bottom:396.441000px;}
.y27e{bottom:397.929000px;}
.y12{bottom:398.562000px;}
.y21f{bottom:398.799000px;}
.y15c{bottom:407.532000px;}
.y75{bottom:408.912000px;}
.y3d{bottom:409.612500px;}
.y18f{bottom:413.007000px;}
.y27d{bottom:415.188000px;}
.y11{bottom:416.449500px;}
.y21e{bottom:417.628500px;}
.y249{bottom:418.776000px;}
.y1c2{bottom:419.752500px;}
.y15b{bottom:426.792000px;}
.y74{bottom:427.741500px;}
.y27c{bottom:432.448500px;}
.y21d{bottom:436.458000px;}
.y10{bottom:444.798000px;}
.y248{bottom:445.317000px;}
.y15a{bottom:445.962000px;}
.y73{bottom:446.571000px;}
.y18e{bottom:447.528000px;}
.y27b{bottom:449.709000px;}
.y1c1{bottom:453.376500px;}
.y21c{bottom:455.287500px;}
.yf{bottom:462.685500px;}
.y247{bottom:462.891000px;}
.y109{bottom:463.837050px;}
.y159{bottom:465.252000px;}
.y72{bottom:465.400500px;}
.y18d{bottom:466.357500px;}
.y27a{bottom:466.969500px;}
.yef{bottom:467.235945px;}
.y1c0{bottom:472.206000px;}
.y108{bottom:472.504050px;}
.y21b{bottom:474.117000px;}
.ye{bottom:480.574500px;}
.y71{bottom:484.230000px;}
.y158{bottom:484.422000px;}
.y3c{bottom:484.762500px;}
.y18c{bottom:485.187000px;}
.yee{bottom:486.214245px;}
.y246{bottom:489.430500px;}
.y1bf{bottom:491.035500px;}
.y21a{bottom:492.946500px;}
.y279{bottom:501.490500px;}
.y70{bottom:503.059500px;}
.y157{bottom:503.682000px;}
.y18b{bottom:504.016500px;}
.yed{bottom:505.281645px;}
.yd{bottom:507.429000px;}
.y1be{bottom:509.865000px;}
.y219{bottom:511.776000px;}
.yb3{bottom:512.745000px;}
.y245{bottom:515.971500px;}
.y278{bottom:518.751000px;}
.y6f{bottom:521.889000px;}
.y3b{bottom:522.153000px;}
.y18a{bottom:522.846000px;}
.y156{bottom:522.942000px;}
.yec{bottom:524.259945px;}
.yc{bottom:525.316500px;}
.y1bd{bottom:528.694500px;}
.y218{bottom:530.605500px;}
.yb2{bottom:531.915000px;}
.y277{bottom:536.011500px;}
.y6e{bottom:540.718500px;}
.y3a{bottom:541.609500px;}
.y244{bottom:542.512500px;}
.y155{bottom:543.192000px;}
.yb{bottom:543.204000px;}
.yeb{bottom:543.327345px;}
.y1bc{bottom:547.524000px;}
.y217{bottom:549.435000px;}
.y189{bottom:551.089500px;}
.yb1{bottom:551.175000px;}
.y276{bottom:553.272000px;}
.y6d{bottom:559.548000px;}
.y39{bottom:561.067500px;}
.ya{bottom:561.093000px;}
.yea{bottom:562.394745px;}
.y1bb{bottom:566.353500px;}
.y216{bottom:568.264500px;}
.y243{bottom:569.052000px;}
.y188{bottom:569.763000px;}
.yb0{bottom:570.435000px;}
.y275{bottom:570.531000px;}
.y6c{bottom:578.377500px;}
.y9{bottom:578.980500px;}
.y38{bottom:580.524000px;}
.ye9{bottom:581.373045px;}
.y1ba{bottom:585.183000px;}
.y242{bottom:586.626000px;}
.y215{bottom:587.094000px;}
.y274{bottom:587.791500px;}
.y187{bottom:588.748500px;}
.yaf{bottom:589.605000px;}
.y106{bottom:596.758500px;}
.y8{bottom:596.868000px;}
.y6b{bottom:597.207000px;}
.y37{bottom:599.982000px;}
.ye8{bottom:600.440445px;}
.y153{bottom:600.702000px;}
.y1b9{bottom:604.012500px;}
.y241{bottom:604.200000px;}
.y273{bottom:605.052000px;}
.y214{bottom:605.923500px;}
.y186{bottom:607.578000px;}
.yae{bottom:608.865000px;}
.y7{bottom:614.757000px;}
.y105{bottom:615.588000px;}
.y6a{bottom:616.036500px;}
.ye7{bottom:619.418745px;}
.y36{bottom:619.438500px;}
.y152{bottom:619.962000px;}
.y240{bottom:621.775500px;}
.y272{bottom:622.312500px;}
.y1b8{bottom:622.842000px;}
.y213{bottom:624.753000px;}
.y185{bottom:626.407500px;}
.yad{bottom:628.035000px;}
.y6{bottom:632.644500px;}
.y104{bottom:634.417500px;}
.y69{bottom:634.866000px;}
.ye6{bottom:638.486145px;}
.y35{bottom:638.895000px;}
.y151{bottom:639.132000px;}
.y23f{bottom:639.349500px;}
.y271{bottom:639.573000px;}
.y212{bottom:643.582500px;}
.y184{bottom:645.237000px;}
.yac{bottom:647.295000px;}
.y5{bottom:650.532000px;}
.y103{bottom:653.247000px;}
.y68{bottom:653.695500px;}
.y270{bottom:656.833500px;}
.y23e{bottom:656.923500px;}
.ye5{bottom:657.553545px;}
.y34{bottom:658.353000px;}
.y150{bottom:658.392000px;}
.y211{bottom:662.412000px;}
.yd4{bottom:662.977500px;}
.y13c{bottom:663.381000px;}
.y183{bottom:664.066500px;}
.yab{bottom:666.555000px;}
.y4{bottom:668.421000px;}
.y1b7{bottom:671.293500px;}
.y102{bottom:672.076500px;}
.y67{bottom:672.525000px;}
.y26f{bottom:674.094000px;}
.y23d{bottom:674.497500px;}
.y14f{bottom:677.652000px;}
.y33{bottom:677.809500px;}
.y1b4{bottom:680.280000px;}
.ye4{bottom:680.986845px;}
.y210{bottom:681.241500px;}
.yd3{bottom:681.807000px;}
.y13b{bottom:682.210500px;}
.y182{bottom:682.896000px;}
.y98{bottom:685.525500px;}
.yaa{bottom:685.725000px;}
.y1{bottom:686.308464px;}
.y1b6{bottom:687.732000px;}
.y101{bottom:690.906000px;}
.y66{bottom:691.354500px;}
.y1b3{bottom:696.718500px;}
.y32{bottom:697.266000px;}
.y20f{bottom:700.071000px;}
.yd2{bottom:700.636500px;}
.y23c{bottom:701.038500px;}
.y13a{bottom:701.040000px;}
.y181{bottom:701.725500px;}
.y97{bottom:704.355000px;}
.ya9{bottom:704.985000px;}
.y1b5{bottom:705.106500px;}
.y26e{bottom:708.613500px;}
.y100{bottom:709.735500px;}
.y65{bottom:710.184000px;}
.y31{bottom:716.724000px;}
.ye3{bottom:717.874245px;}
.y23b{bottom:718.612500px;}
.y20e{bottom:718.900500px;}
.yd1{bottom:719.466000px;}
.y139{bottom:719.869500px;}
.y180{bottom:720.555000px;}
.y96{bottom:723.184500px;}
.ya8{bottom:724.155000px;}
.y26d{bottom:725.874000px;}
.yff{bottom:728.565000px;}
.y64{bottom:729.013500px;}
.y1b2{bottom:729.060000px;}
.y14b{bottom:735.072000px;}
.y30{bottom:736.180500px;}
.y23a{bottom:736.186500px;}
.ye2{bottom:736.852545px;}
.y1af{bottom:738.046500px;}
.yd0{bottom:738.295500px;}
.y138{bottom:738.699000px;}
.y17f{bottom:739.384500px;}
.y94{bottom:742.014000px;}
.y20d{bottom:742.212000px;}
.y26c{bottom:743.134500px;}
.ya7{bottom:743.415000px;}
.y1b1{bottom:745.498500px;}
.yfe{bottom:747.394500px;}
.y95{bottom:747.439500px;}
.y63{bottom:747.843000px;}
.y239{bottom:753.760500px;}
.y14a{bottom:754.332000px;}
.y1ae{bottom:754.485000px;}
.y2f{bottom:755.638500px;}
.ye1{bottom:755.919945px;}
.ycf{bottom:757.125000px;}
.y137{bottom:757.528500px;}
.y17e{bottom:758.214000px;}
.y26b{bottom:760.395000px;}
.y93{bottom:760.843500px;}
.ya6{bottom:762.675000px;}
.y1b0{bottom:762.873000px;}
.yfd{bottom:766.224000px;}
.y62{bottom:766.671000px;}
.y238{bottom:771.334500px;}
.y149{bottom:773.502000px;}
.ye0{bottom:774.987345px;}
.yce{bottom:775.954500px;}
.y136{bottom:776.358000px;}
.y17d{bottom:777.043500px;}
.y26a{bottom:777.655500px;}
.y92{bottom:779.673000px;}
.ya5{bottom:781.845000px;}
.yfc{bottom:785.053500px;}
.y61{bottom:785.500500px;}
.y1ad{bottom:786.826500px;}
.y20c{bottom:787.525500px;}
.y237{bottom:788.908500px;}
.y148{bottom:792.762000px;}
.y1d0{bottom:792.864000px;}
.ydf{bottom:793.965645px;}
.y2e{bottom:794.223000px;}
.ycd{bottom:794.784000px;}
.y269{bottom:794.916000px;}
.y135{bottom:795.187500px;}
.y1aa{bottom:795.813000px;}
.y17c{bottom:795.873000px;}
.y91{bottom:798.502500px;}
.ya4{bottom:801.105000px;}
.y1cf{bottom:802.494000px;}
.y209{bottom:802.810500px;}
.y1ac{bottom:803.265000px;}
.y20b{bottom:803.964000px;}
.y60{bottom:804.330000px;}
.y236{bottom:806.482500px;}
.yfb{bottom:808.365000px;}
.y2d{bottom:810.363000px;}
.y147{bottom:812.022000px;}
.y268{bottom:812.176500px;}
.y1a9{bottom:812.251500px;}
.yde{bottom:813.033045px;}
.ycc{bottom:813.613500px;}
.y17b{bottom:814.702500px;}
.y90{bottom:817.332000px;}
.y134{bottom:818.499000px;}
.ya3{bottom:820.365000px;}
.y20a{bottom:820.402500px;}
.y1ab{bottom:820.639500px;}
.y5f{bottom:823.159500px;}
.y267{bottom:829.437000px;}
.y2c{bottom:830.842500px;}
.y146{bottom:831.192000px;}
.yca{bottom:832.443000px;}
.y17a{bottom:833.532000px;}
.y8f{bottom:836.161500px;}
.ycb{bottom:837.867000px;}
.ya2{bottom:839.535000px;}
.y5e{bottom:841.989000px;}
.y208{bottom:844.042500px;}
.y1a8{bottom:844.593000px;}
.y266{bottom:846.697500px;}
.y2b{bottom:846.981000px;}
.ydd{bottom:849.474945px;}
.y145{bottom:850.452000px;}
.yc9{bottom:851.271000px;}
.y133{bottom:852.123000px;}
.y1a5{bottom:853.579500px;}
.y8e{bottom:854.991000px;}
.y154{bottom:856.618500px;}
.y179{bottom:856.845000px;}
.ya1{bottom:858.795000px;}
.y205{bottom:859.327500px;}
.y207{bottom:860.481000px;}
.y5d{bottom:860.818500px;}
.y1a7{bottom:861.031500px;}
.y2a{bottom:863.121000px;}
.y265{bottom:863.956500px;}
.ydc{bottom:866.671245px;}
.y144{bottom:869.622000px;}
.y1a4{bottom:870.018000px;}
.y132{bottom:870.952500px;}
.y8d{bottom:873.820500px;}
.yc8{bottom:874.584000px;}
.y29{bottom:874.921500px;}
.y1f4{bottom:875.768670px;}
.y206{bottom:876.919500px;}
.ya0{bottom:877.965000px;}
.y1a6{bottom:878.406000px;}
.y5c{bottom:879.648000px;}
.y264{bottom:881.217000px;}
.ydb{bottom:883.808145px;}
.y143{bottom:888.912000px;}
.y131{bottom:889.782000px;}
.y178{bottom:890.469000px;}
.y8c{bottom:892.650000px;}
.y1f3{bottom:894.643470px;}
.y28{bottom:895.401000px;}
.y9f{bottom:897.225000px;}
.y5b{bottom:898.477500px;}
.y204{bottom:900.559500px;}
.yda{bottom:901.004445px;}
.y1a3{bottom:902.359500px;}
.y142{bottom:908.172000px;}
.yc7{bottom:908.208000px;}
.y130{bottom:908.611500px;}
.y177{bottom:909.297000px;}
.y8b{bottom:911.479500px;}
.y1f2{bottom:913.430070px;}
.y263{bottom:915.738000px;}
.y201{bottom:915.844500px;}
.y203{bottom:916.998000px;}
.y5a{bottom:917.307000px;}
.yd9{bottom:918.111645px;}
.y9e{bottom:920.925000px;}
.yc6{bottom:927.037500px;}
.y141{bottom:927.342000px;}
.y12f{bottom:927.441000px;}
.y8a{bottom:930.309000px;}
.y262{bottom:932.998500px;}
.y202{bottom:933.436500px;}
.y59{bottom:936.136500px;}
.y1a2{bottom:936.967500px;}
.y27{bottom:940.077000px;}
.y176{bottom:943.818000px;}
.y9d{bottom:944.685000px;}
.yc5{bottom:945.867000px;}
.y12e{bottom:946.270500px;}
.y89{bottom:949.138500px;}
.y261{bottom:950.259000px;}
.y58{bottom:954.966000px;}
.y1a1{bottom:956.200500px;}
.y200{bottom:957.078000px;}
.yc4{bottom:964.696500px;}
.y12d{bottom:965.100000px;}
.y1f0{bottom:967.055670px;}
.y260{bottom:967.519500px;}
.y88{bottom:967.968000px;}
.yd7{bottom:970.680645px;}
.y57{bottom:973.795500px;}
.y1a0{bottom:975.433500px;}
.y1ef{bottom:976.493070px;}
.y175{bottom:978.339000px;}
.y26{bottom:979.996500px;}
.yd6{bottom:980.214345px;}
.y13f{bottom:982.062000px;}
.yc3{bottom:983.526000px;}
.y12c{bottom:983.929500px;}
.y25f{bottom:984.780000px;}
.y87{bottom:986.797500px;}
.y14c{bottom:990.988500px;}
.y1ff{bottom:991.686000px;}
.y13e{bottom:991.692000px;}
.y56{bottom:992.625000px;}
.y174{bottom:997.168500px;}
.y9b{bottom:999.405000px;}
.y25d{bottom:1002.039000px;}
.y25e{bottom:1002.040500px;}
.yc2{bottom:1002.355500px;}
.y12b{bottom:1002.759000px;}
.y86{bottom:1005.627000px;}
.y25{bottom:1008.240000px;}
.y9a{bottom:1009.035000px;}
.y1fe{bottom:1010.919000px;}
.y55{bottom:1011.454500px;}
.y173{bottom:1015.998000px;}
.y25c{bottom:1019.299500px;}
.y12a{bottom:1021.588500px;}
.y85{bottom:1024.456500px;}
.yc1{bottom:1030.152000px;}
.y54{bottom:1030.284000px;}
.y24{bottom:1036.485000px;}
.y25b{bottom:1036.560000px;}
.y171{bottom:1039.321500px;}
.y84{bottom:1043.284500px;}
.y16e{bottom:1045.324500px;}
.y53{bottom:1049.113500px;}
.yc0{bottom:1049.383500px;}
.y170{bottom:1052.467500px;}
.y25a{bottom:1053.820500px;}
.y172{bottom:1055.575500px;}
.y16d{bottom:1055.577000px;}
.y83{bottom:1062.114000px;}
.y23{bottom:1064.728500px;}
.y52{bottom:1067.943000px;}
.ybf{bottom:1068.616500px;}
.y259{bottom:1071.081000px;}
.y16f{bottom:1071.715500px;}
.y82{bottom:1085.427000px;}
.y51{bottom:1086.772500px;}
.ybe{bottom:1087.849500px;}
.y258{bottom:1088.341500px;}
.y22{bottom:1092.972000px;}
.y50{bottom:1105.602000px;}
.ybd{bottom:1107.082500px;}
.y19f{bottom:1111.026000px;}
.y20{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h2e{height:-351.247500px;}
.h2a{height:-315.193950px;}
.h30{height:-216.877500px;}
.h26{height:-201.550950px;}
.h2{height:25.508090px;}
.hc{height:32.565965px;}
.h4{height:33.112997px;}
.h34{height:33.299897px;}
.h3{height:34.199443px;}
.h14{height:35.503200px;}
.h5{height:37.993262px;}
.h6{height:38.202476px;}
.hf{height:38.896243px;}
.h2b{height:39.656303px;}
.h22{height:40.083135px;}
.h36{height:41.250077px;}
.h32{height:42.500452px;}
.h11{height:43.217759px;}
.hd{height:43.421105px;}
.h20{height:43.621933px;}
.h42{height:43.646080px;}
.he{height:43.660208px;}
.h9{height:43.815515px;}
.h19{height:44.062559px;}
.h1d{height:44.091448px;}
.h18{height:44.091914px;}
.h16{height:44.536816px;}
.h24{height:45.206543px;}
.h38{height:46.445641px;}
.h1b{height:46.714950px;}
.h29{height:47.014805px;}
.h10{height:48.848947px;}
.h45{height:49.117939px;}
.h44{height:49.224902px;}
.h1f{height:49.727197px;}
.h1a{height:50.229492px;}
.h23{height:50.329951px;}
.h7{height:50.931027px;}
.h12{height:54.276245px;}
.hb{height:54.541601px;}
.h13{height:54.575123px;}
.h43{height:54.803725px;}
.h37{height:54.900245px;}
.h39{height:54.995897px;}
.h1e{height:55.362946px;}
.h17{height:55.922168px;}
.h3e{height:56.275262px;}
.h3f{height:57.517262px;}
.h3d{height:57.523262px;}
.h3c{height:62.946077px;}
.h35{height:65.024177px;}
.h25{height:67.106602px;}
.h2d{height:74.562891px;}
.h3b{height:75.330245px;}
.h31{height:75.998672px;}
.h3a{height:76.049897px;}
.h2f{height:77.442891px;}
.ha{height:77.792486px;}
.h8{height:84.648693px;}
.h33{height:94.740245px;}
.h28{height:103.394602px;}
.h27{height:107.930602px;}
.h2c{height:341.344500px;}
.h21{height:428.533200px;}
.h1c{height:445.632165px;}
.h15{height:484.819500px;}
.h40{height:761.520000px;}
.h41{height:853.676040px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:-10.835100px;}
.wb{width:14.763000px;}
.w2{width:75.364879px;}
.w3{width:256.369202px;}
.w7{width:490.527900px;}
.wa{width:557.070000px;}
.w6{width:627.900390px;}
.wc{width:674.804550px;}
.w4{width:675.593250px;}
.wd{width:698.391561px;}
.w5{width:731.273400px;}
.w9{width:753.637200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4f{left:-58.730250px;}
.xb1{left:-54.000450px;}
.x7b{left:-38.667510px;}
.xb7{left:-36.696639px;}
.x6f{left:-26.144910px;}
.x88{left:-13.795800px;}
.x0{left:0.000000px;}
.x83{left:13.284000px;}
.x8d{left:14.760000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:60.228752px;}
.x87{left:69.426300px;}
.xaa{left:71.092500px;}
.xba{left:72.370500px;}
.x6e{left:80.605500px;}
.xbd{left:84.777000px;}
.xcc{left:85.848000px;}
.xae{left:88.557000px;}
.xbb{left:89.733000px;}
.xab{left:91.203000px;}
.xaf{left:94.564500px;}
.xb6{left:97.051029px;}
.x4e{left:108.447750px;}
.x7a{left:132.296460px;}
.x50{left:136.869750px;}
.xb3{left:141.599550px;}
.xb8{left:154.991361px;}
.x7d{left:166.046490px;}
.x70{left:167.499090px;}
.x51{left:168.729750px;}
.xb4{left:173.459550px;}
.x8a{left:181.804200px;}
.xbc{left:197.383500px;}
.x71{left:199.040490px;}
.x89{left:213.664200px;}
.x84{left:232.497000px;}
.x8e{left:235.380000px;}
.x7e{left:241.488000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x8b{left:251.230500px;}
.xac{left:262.438500px;}
.x7f{left:266.274000px;}
.x6{left:269.914500px;}
.xad{left:273.910500px;}
.x81{left:278.910000px;}
.x4b{left:280.320000px;}
.x9{left:281.479500px;}
.x80{left:283.041000px;}
.x2d{left:288.091500px;}
.x4c{left:291.573000px;}
.x98{left:293.824500px;}
.x67{left:300.033000px;}
.x2e{left:303.034500px;}
.xa9{left:304.308000px;}
.x86{left:305.637000px;}
.x53{left:306.799500px;}
.x8{left:308.029500px;}
.x90{left:309.891000px;}
.x5e{left:311.928000px;}
.xa3{left:313.425000px;}
.x5f{left:317.899500px;}
.x60{left:321.228000px;}
.x9b{left:322.542000px;}
.xa0{left:326.404500px;}
.x6c{left:328.122000px;}
.x61{left:329.446500px;}
.x29{left:339.673500px;}
.xa1{left:342.855000px;}
.x6d{left:344.134500px;}
.x6a{left:348.996000px;}
.x36{left:353.566500px;}
.x2a{left:354.616500px;}
.x6b{left:360.421500px;}
.x2b{left:362.178000px;}
.x37{left:368.509500px;}
.xcb{left:372.201000px;}
.x2f{left:376.024500px;}
.x2c{left:377.122500px;}
.xc5{left:382.695000px;}
.x30{left:390.969000px;}
.xa4{left:394.731000px;}
.x1e{left:408.928500px;}
.xa5{left:410.740500px;}
.xc6{left:420.123000px;}
.x62{left:422.472000px;}
.x1f{left:423.871500px;}
.xa6{left:425.908500px;}
.x63{left:429.949500px;}
.x20{left:431.232000px;}
.xc7{left:435.066000px;}
.x64{left:436.608000px;}
.x65{left:441.087000px;}
.x21{left:446.176500px;}
.x33{left:454.335000px;}
.x9e{left:457.209000px;}
.x3c{left:464.677500px;}
.x54{left:467.161500px;}
.x9c{left:471.865500px;}
.xbe{left:472.935000px;}
.x55{left:475.380000px;}
.x3d{left:479.622000px;}
.xbf{left:487.879500px;}
.xc8{left:492.502500px;}
.x9a{left:496.041000px;}
.xa7{left:500.652000px;}
.x79{left:505.137000px;}
.xc9{left:507.445500px;}
.xa8{left:510.796500px;}
.x85{left:515.998500px;}
.x46{left:520.273500px;}
.x57{left:524.680500px;}
.x66{left:527.866500px;}
.x58{left:529.159500px;}
.x18{left:532.654500px;}
.x47{left:535.218000px;}
.x48{left:539.028000px;}
.x19{left:540.126000px;}
.x9f{left:542.268000px;}
.x1a{left:543.937500px;}
.x59{left:545.385000px;}
.x31{left:550.099500px;}
.x1b{left:551.409000px;}
.x49{left:553.972500px;}
.x1c{left:555.220500px;}
.x32{left:557.571000px;}
.x1d{left:562.692000px;}
.x68{left:571.249500px;}
.x4a{left:572.727000px;}
.x69{left:575.728500px;}
.x22{left:578.032500px;}
.x3e{left:581.625000px;}
.x75{left:585.130500px;}
.x23{left:592.975500px;}
.x38{left:594.237000px;}
.x3f{left:596.569500px;}
.x93{left:599.118000px;}
.x40{left:600.379500px;}
.xb5{left:601.558500px;}
.x95{left:603.249000px;}
.x39{left:609.180000px;}
.x41{left:615.324000px;}
.x4d{left:621.342000px;}
.x94{left:624.796500px;}
.x7c{left:626.504490px;}
.xc0{left:628.341000px;}
.x76{left:629.436000px;}
.x77{left:633.246000px;}
.x5a{left:635.259000px;}
.x5b{left:641.983500px;}
.xc1{left:643.285500px;}
.x5c{left:645.414000px;}
.x12{left:646.497000px;}
.x78{left:648.190500px;}
.x5d{left:650.644500px;}
.xe{left:653.853000px;}
.xd0{left:655.653000px;}
.x13{left:657.780000px;}
.xf{left:661.324500px;}
.x10{left:665.136000px;}
.x52{left:669.099750px;}
.xb2{left:670.409550px;}
.xcd{left:671.448000px;}
.x11{left:672.607500px;}
.xb0{left:676.183500px;}
.xc2{left:680.496000px;}
.x99{left:690.408000px;}
.xb9{left:694.481361px;}
.xa{left:697.402500px;}
.x73{left:700.621500px;}
.x3a{left:701.640000px;}
.x9d{left:703.317000px;}
.xb{left:704.874000px;}
.x74{left:707.346000px;}
.xc{left:712.495500px;}
.x3b{left:716.584500px;}
.xd{left:719.967000px;}
.xce{left:721.603500px;}
.x72{left:723.453390px;}
.xa2{left:733.498500px;}
.xca{left:735.420000px;}
.xd1{left:740.943000px;}
.xcf{left:748.503000px;}
.x42{left:750.412500px;}
.x8f{left:757.864200px;}
.x91{left:763.831500px;}
.x43{left:765.357000px;}
.xd2{left:767.841000px;}
.x82{left:771.031950px;}
.x34{left:778.917000px;}
.xc3{left:782.607000px;}
.x35{left:786.388500px;}
.x92{left:788.875500px;}
.x44{left:790.923000px;}
.x26{left:794.385000px;}
.xc4{left:797.551500px;}
.x25{left:798.943500px;}
.x45{left:805.867500px;}
.x8c{left:808.300500px;}
.x27{left:809.329500px;}
.xd3{left:810.390000px;}
.x14{left:814.260000px;}
.x56{left:815.650500px;}
.x24{left:817.299000px;}
.x15{left:821.733000px;}
.x16{left:825.432000px;}
.x96{left:827.857500px;}
.x28{left:831.894000px;}
.x17{left:832.903500px;}
.x97{left:835.516500px;}
.xd4{left:837.289500px;}
@media print{
.vd{vertical-align:-21.120000pt;}
.v2{vertical-align:-15.434667pt;}
.vb{vertical-align:-12.800000pt;}
.v8{vertical-align:-10.880000pt;}
.v5{vertical-align:-9.792000pt;}
.ve{vertical-align:-7.968000pt;}
.va{vertical-align:-2.560000pt;}
.v12{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v6{vertical-align:9.792000pt;}
.v9{vertical-align:10.880000pt;}
.v13{vertical-align:16.250667pt;}
.v11{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:32.256000pt;}
.vc{vertical-align:33.920000pt;}
.v3{vertical-align:36.288000pt;}
.v10{vertical-align:38.000000pt;}
.vf{vertical-align:43.066667pt;}
.ls1d{letter-spacing:-0.300960pt;}
.ls15{letter-spacing:-0.216000pt;}
.ls3a{letter-spacing:-0.195733pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.011840pt;}
.lse{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls84{letter-spacing:0.000711pt;}
.ls8a{letter-spacing:0.000853pt;}
.ls8e{letter-spacing:0.000921pt;}
.ls8b{letter-spacing:0.001026pt;}
.ls7e{letter-spacing:0.001335pt;}
.ls4{letter-spacing:0.001628pt;}
.lsa{letter-spacing:0.001718pt;}
.ls89{letter-spacing:0.001723pt;}
.ls9{letter-spacing:0.001735pt;}
.lsf{letter-spacing:0.001874pt;}
.ls70{letter-spacing:0.002118pt;}
.ls91{letter-spacing:0.002327pt;}
.ls81{letter-spacing:0.002385pt;}
.ls7f{letter-spacing:0.002525pt;}
.ls82{letter-spacing:0.002553pt;}
.ls8f{letter-spacing:0.002703pt;}
.ls16{letter-spacing:0.002825pt;}
.ls85{letter-spacing:0.003261pt;}
.ls87{letter-spacing:0.003578pt;}
.ls6{letter-spacing:0.003733pt;}
.ls90{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.015840pt;}
.ls12{letter-spacing:0.016000pt;}
.ls36{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.051840pt;}
.ls1c{letter-spacing:0.079200pt;}
.ls14{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.083232pt;}
.ls1f{letter-spacing:0.100800pt;}
.ls19{letter-spacing:0.110880pt;}
.ls2d{letter-spacing:0.111840pt;}
.ls11{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.114365pt;}
.ls39{letter-spacing:0.124267pt;}
.ls3b{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls7b{letter-spacing:0.156800pt;}
.ls17{letter-spacing:0.158400pt;}
.ls10{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.178667pt;}
.ls43{letter-spacing:0.198022pt;}
.ls18{letter-spacing:0.232320pt;}
.ls3f{letter-spacing:0.487835pt;}
.ls6e{letter-spacing:0.520563pt;}
.ls65{letter-spacing:0.664563pt;}
.ls5c{letter-spacing:0.665067pt;}
.ls2c{letter-spacing:0.669491pt;}
.ls50{letter-spacing:0.881183pt;}
.ls62{letter-spacing:0.883733pt;}
.ls40{letter-spacing:0.886516pt;}
.ls42{letter-spacing:1.036785pt;}
.ls21{letter-spacing:1.081728pt;}
.lsd{letter-spacing:1.133683pt;}
.ls4a{letter-spacing:1.168015pt;}
.ls32{letter-spacing:1.201920pt;}
.ls47{letter-spacing:1.259185pt;}
.ls55{letter-spacing:1.262881pt;}
.ls3e{letter-spacing:1.291174pt;}
.ls5b{letter-spacing:1.324173pt;}
.ls4d{letter-spacing:1.325067pt;}
.ls5e{letter-spacing:1.329506pt;}
.ls24{letter-spacing:1.457568pt;}
.ls31{letter-spacing:1.619520pt;}
.ls0{letter-spacing:1.654338pt;}
.ls6b{letter-spacing:1.693897pt;}
.ls46{letter-spacing:1.726400pt;}
.ls57{letter-spacing:1.856518pt;}
.ls22{letter-spacing:2.102688pt;}
.ls63{letter-spacing:2.124173pt;}
.ls56{letter-spacing:2.390839pt;}
.ls28{letter-spacing:2.528640pt;}
.ls69{letter-spacing:2.584563pt;}
.ls5f{letter-spacing:2.585067pt;}
.ls73{letter-spacing:2.656533pt;}
.ls71{letter-spacing:2.657067pt;}
.ls5{letter-spacing:2.665203pt;}
.ls23{letter-spacing:2.860704pt;}
.ls27{letter-spacing:2.951520pt;}
.ls53{letter-spacing:2.976518pt;}
.ls66{letter-spacing:2.989897pt;}
.ls2f{letter-spacing:3.055360pt;}
.ls29{letter-spacing:3.148704pt;}
.ls33{letter-spacing:3.212800pt;}
.ls30{letter-spacing:3.498560pt;}
.ls20{letter-spacing:7.854624pt;}
.ls1{letter-spacing:9.293600pt;}
.ls2{letter-spacing:9.298932pt;}
.lsc{letter-spacing:10.626533pt;}
.ls80{letter-spacing:11.462487pt;}
.ls6d{letter-spacing:11.635096pt;}
.ls7d{letter-spacing:11.954133pt;}
.ls72{letter-spacing:11.955200pt;}
.ls8d{letter-spacing:11.959467pt;}
.ls88{letter-spacing:11.995820pt;}
.ls83{letter-spacing:12.090730pt;}
.ls86{letter-spacing:12.238264pt;}
.ls74{letter-spacing:12.528078pt;}
.ls76{letter-spacing:12.533411pt;}
.ls7c{letter-spacing:13.017797pt;}
.ls7a{letter-spacing:13.070931pt;}
.ls26{letter-spacing:13.184640pt;}
.ls58{letter-spacing:13.881548pt;}
.ls48{letter-spacing:14.161067pt;}
.ls49{letter-spacing:14.291096pt;}
.ls8c{letter-spacing:14.402970pt;}
.ls79{letter-spacing:14.611813pt;}
.ls45{letter-spacing:15.395096pt;}
.ls4f{letter-spacing:15.425867pt;}
.ls25{letter-spacing:15.776640pt;}
.ls7{letter-spacing:15.942400pt;}
.ls4c{letter-spacing:16.061762pt;}
.ls3c{letter-spacing:16.089067pt;}
.ls2a{letter-spacing:16.396704pt;}
.ls54{letter-spacing:16.444580pt;}
.ls52{letter-spacing:16.460785pt;}
.ls64{letter-spacing:16.618378pt;}
.ls59{letter-spacing:16.619185pt;}
.ls4e{letter-spacing:18.203174pt;}
.ls34{letter-spacing:18.280640pt;}
.ls6a{letter-spacing:18.581841pt;}
.ls44{letter-spacing:18.587733pt;}
.ls51{letter-spacing:18.869841pt;}
.ls5a{letter-spacing:27.859118pt;}
.ls67{letter-spacing:30.594185pt;}
.ls3d{letter-spacing:31.576429pt;}
.ls60{letter-spacing:31.644241pt;}
.ls2e{letter-spacing:55.442240pt;}
.ls8{letter-spacing:55.787733pt;}
.ls5d{letter-spacing:56.454400pt;}
.lsb{letter-spacing:57.174803pt;}
.ls6c{letter-spacing:75.819174pt;}
.ls6f{letter-spacing:91.435174pt;}
.ls75{letter-spacing:483.755200pt;}
.ls78{letter-spacing:495.712533pt;}
.ls77{letter-spacing:507.669867pt;}
.ls61{letter-spacing:676.205784pt;}
.ls68{letter-spacing:679.235118pt;}
.ls4b{letter-spacing:816.812580pt;}
.ls41{letter-spacing:847.968508pt;}
.ws58{word-spacing:-53.440000pt;}
.wsaa{word-spacing:-48.000000pt;}
.ws6c{word-spacing:-47.520000pt;}
.ws96{word-spacing:-45.233913pt;}
.ws66{word-spacing:-42.077867pt;}
.ws87{word-spacing:-37.440000pt;}
.ws86{word-spacing:-37.396480pt;}
.ws84{word-spacing:-36.980480pt;}
.ws88{word-spacing:-22.992853pt;}
.ws82{word-spacing:-13.538667pt;}
.ws89{word-spacing:-13.484267pt;}
.ws57{word-spacing:-13.360000pt;}
.ws56{word-spacing:-13.348160pt;}
.ws16{word-spacing:-13.283467pt;}
.ws83{word-spacing:-13.200000pt;}
.ws8a{word-spacing:-13.164267pt;}
.ws8b{word-spacing:-12.128000pt;}
.wsab{word-spacing:-12.016000pt;}
.ws59{word-spacing:-12.000000pt;}
.wsa4{word-spacing:-11.955200pt;}
.ws6b{word-spacing:-11.880000pt;}
.ws55{word-spacing:-10.800000pt;}
.ws6a{word-spacing:-10.692000pt;}
.ws54{word-spacing:-10.640000pt;}
.ws35{word-spacing:-10.626800pt;}
.ws77{word-spacing:-10.581120pt;}
.ws69{word-spacing:-10.533600pt;}
.wsb2{word-spacing:-10.427200pt;}
.ws13{word-spacing:-10.095467pt;}
.ws76{word-spacing:-9.720000pt;}
.ws75{word-spacing:-9.576000pt;}
.ws5{word-spacing:-9.298400pt;}
.ws79{word-spacing:-7.413120pt;}
.ws95{word-spacing:-3.772505pt;}
.ws7b{word-spacing:-3.060531pt;}
.wsb9{word-spacing:-2.922363pt;}
.ws7a{word-spacing:-2.773606pt;}
.ws63{word-spacing:-2.603559pt;}
.wsbb{word-spacing:-2.497292pt;}
.ws64{word-spacing:-2.391024pt;}
.wsc8{word-spacing:-2.284756pt;}
.ws2f{word-spacing:-1.965953pt;}
.wsb8{word-spacing:-1.806551pt;}
.ws1{word-spacing:-1.696326pt;}
.wsa9{word-spacing:-1.647150pt;}
.ws40{word-spacing:-1.540882pt;}
.ws65{word-spacing:-1.487748pt;}
.ws1e{word-spacing:-1.243341pt;}
.ws73{word-spacing:-1.222079pt;}
.wscd{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.wsda{word-spacing:-1.147699pt;}
.ws2e{word-spacing:-1.115811pt;}
.ws4a{word-spacing:-1.062677pt;}
.ws8{word-spacing:-1.041421pt;}
.wsc7{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.ws9c{word-spacing:-0.903276pt;}
.ws70{word-spacing:-0.850142pt;}
.ws2a{word-spacing:-0.797008pt;}
.ws92{word-spacing:-0.717319pt;}
.ws93{word-spacing:-0.690740pt;}
.wsdc{word-spacing:-0.669491pt;}
.ws80{word-spacing:-0.637606pt;}
.ws38{word-spacing:-0.584473pt;}
.ws1a{word-spacing:-0.526029pt;}
.wsde{word-spacing:-0.478208pt;}
.wse9{word-spacing:-0.430387pt;}
.ws81{word-spacing:-0.425071pt;}
.ws71{word-spacing:-0.371937pt;}
.ws47{word-spacing:-0.318803pt;}
.ws85{word-spacing:-0.304640pt;}
.wsc9{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.wscb{word-spacing:-0.239104pt;}
.ws44{word-spacing:-0.212535pt;}
.ws60{word-spacing:-0.191283pt;}
.ws33{word-spacing:-0.159402pt;}
.ws5a{word-spacing:-0.143462pt;}
.ws2d{word-spacing:-0.106268pt;}
.wsac{word-spacing:-0.095642pt;}
.ws15{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.ws9b{word-spacing:-0.040382pt;}
.ws6{word-spacing:-0.037194pt;}
.wsd1{word-spacing:-0.025421pt;}
.wsd6{word-spacing:-0.023782pt;}
.ws90{word-spacing:-0.005018pt;}
.ws17{word-spacing:-0.002430pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.047821pt;}
.ws24{word-spacing:0.053134pt;}
.ws1f{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.wse5{word-spacing:0.117716pt;}
.wsa2{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws5f{word-spacing:0.191283pt;}
.ws67{word-spacing:0.212535pt;}
.ws6d{word-spacing:0.239104pt;}
.wsf6{word-spacing:0.259514pt;}
.ws37{word-spacing:0.265669pt;}
.ws94{word-spacing:0.275431pt;}
.ws6e{word-spacing:0.286925pt;}
.ws3b{word-spacing:0.318803pt;}
.ws72{word-spacing:0.371937pt;}
.ws5e{word-spacing:0.382566pt;}
.ws48{word-spacing:0.425071pt;}
.wsf9{word-spacing:0.430387pt;}
.ws5c{word-spacing:0.478208pt;}
.wsbe{word-spacing:0.531339pt;}
.wsf8{word-spacing:0.563644pt;}
.wsf7{word-spacing:0.573850pt;}
.wsa5{word-spacing:0.575155pt;}
.ws9f{word-spacing:0.584473pt;}
.wsa6{word-spacing:0.594133pt;}
.wsa3{word-spacing:0.598400pt;}
.ws45{word-spacing:0.637606pt;}
.ws9a{word-spacing:0.662599pt;}
.wsbf{word-spacing:0.690740pt;}
.ws3f{word-spacing:0.797008pt;}
.ws9{word-spacing:0.855453pt;}
.ws1b{word-spacing:0.860774pt;}
.ws7f{word-spacing:0.903276pt;}
.ws50{word-spacing:0.956410pt;}
.ws101{word-spacing:1.004237pt;}
.ws30{word-spacing:1.009543pt;}
.ws4c{word-spacing:1.062677pt;}
.ws4e{word-spacing:1.115811pt;}
.ws61{word-spacing:1.147699pt;}
.ws32{word-spacing:1.168945pt;}
.ws31{word-spacing:1.222079pt;}
.ws98{word-spacing:1.275213pt;}
.ws100{word-spacing:1.291162pt;}
.wsa8{word-spacing:1.328347pt;}
.ws74{word-spacing:1.381481pt;}
.wsc6{word-spacing:1.434614pt;}
.wse4{word-spacing:1.434624pt;}
.ws41{word-spacing:1.594016pt;}
.wsff{word-spacing:1.625907pt;}
.ws97{word-spacing:1.647150pt;}
.ws1d{word-spacing:1.673728pt;}
.ws3a{word-spacing:1.700284pt;}
.ws7d{word-spacing:1.721549pt;}
.ws53{word-spacing:1.753418pt;}
.wsee{word-spacing:1.817190pt;}
.ws28{word-spacing:1.859685pt;}
.ws62{word-spacing:1.865011pt;}
.wsc5{word-spacing:1.912819pt;}
.wsea{word-spacing:1.912832pt;}
.ws21{word-spacing:1.960653pt;}
.ws68{word-spacing:1.965953pt;}
.ws9d{word-spacing:2.019087pt;}
.wsb1{word-spacing:2.072221pt;}
.ws8f{word-spacing:2.151936pt;}
.ws51{word-spacing:2.178489pt;}
.wscc{word-spacing:2.199757pt;}
.ws46{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.wsce{word-spacing:2.247578pt;}
.wsed{word-spacing:2.299592pt;}
.wsc3{word-spacing:2.337890pt;}
.ws8d{word-spacing:2.438861pt;}
.ws7c{word-spacing:2.486682pt;}
.ws26{word-spacing:2.550426pt;}
.ws19{word-spacing:2.550432pt;}
.ws25{word-spacing:2.603559pt;}
.ws7e{word-spacing:2.656693pt;}
.wsf4{word-spacing:2.677965pt;}
.wsaf{word-spacing:2.709827pt;}
.ws8c{word-spacing:2.725786pt;}
.wsad{word-spacing:2.773606pt;}
.wse7{word-spacing:2.812896pt;}
.wsf5{word-spacing:2.860663pt;}
.ws22{word-spacing:2.861926pt;}
.wsd5{word-spacing:2.862575pt;}
.wsef{word-spacing:2.864367pt;}
.wsf0{word-spacing:2.865459pt;}
.ws2b{word-spacing:2.869229pt;}
.wsd9{word-spacing:2.869248pt;}
.wsca{word-spacing:2.917069pt;}
.wse2{word-spacing:2.964890pt;}
.ws43{word-spacing:2.975497pt;}
.ws52{word-spacing:3.028630pt;}
.ws5d{word-spacing:3.108352pt;}
.ws39{word-spacing:3.134898pt;}
.wsa1{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws4b{word-spacing:3.294300pt;}
.ws4d{word-spacing:3.347434pt;}
.wse6{word-spacing:3.395277pt;}
.wsbc{word-spacing:3.400567pt;}
.ws5b{word-spacing:3.443098pt;}
.ws9e{word-spacing:3.453701pt;}
.wsa0{word-spacing:3.490918pt;}
.ws3c{word-spacing:3.506835pt;}
.wsb5{word-spacing:3.538739pt;}
.wsc0{word-spacing:3.559969pt;}
.ws4f{word-spacing:3.613103pt;}
.ws29{word-spacing:3.719371pt;}
.wse0{word-spacing:3.730022pt;}
.wse1{word-spacing:3.737500pt;}
.wsc4{word-spacing:3.878772pt;}
.ws49{word-spacing:4.197575pt;}
.ws10{word-spacing:4.240070pt;}
.ws11{word-spacing:4.314458pt;}
.wsb4{word-spacing:4.351693pt;}
.ws3e{word-spacing:4.569513pt;}
.ws3d{word-spacing:4.622646pt;}
.ws8e{word-spacing:4.638618pt;}
.wsb3{word-spacing:4.686438pt;}
.ws42{word-spacing:5.047717pt;}
.wsc1{word-spacing:5.100851pt;}
.wsec{word-spacing:5.308109pt;}
.wsb0{word-spacing:5.313387pt;}
.ws78{word-spacing:5.313600pt;}
.wsae{word-spacing:5.419654pt;}
.wsd8{word-spacing:5.451571pt;}
.ws6f{word-spacing:5.525922pt;}
.wsfd{word-spacing:5.595034pt;}
.wsd7{word-spacing:5.786317pt;}
.wsc2{word-spacing:5.791591pt;}
.wsbd{word-spacing:5.897859pt;}
.wsfc{word-spacing:6.073242pt;}
.ws91{word-spacing:6.535466pt;}
.wse{word-spacing:6.918010pt;}
.wsf3{word-spacing:6.981837pt;}
.wsa7{word-spacing:7.066804pt;}
.wsba{word-spacing:7.119938pt;}
.ws99{word-spacing:7.491875pt;}
.ws4{word-spacing:9.261206pt;}
.ws34{word-spacing:10.582351pt;}
.wsc{word-spacing:10.823338pt;}
.wsdd{word-spacing:11.237888pt;}
.wsfb{word-spacing:11.476992pt;}
.wsd0{word-spacing:11.763917pt;}
.wsd3{word-spacing:11.905749pt;}
.wsf1{word-spacing:11.906031pt;}
.wsd2{word-spacing:11.907379pt;}
.wsfe{word-spacing:11.908309pt;}
.wsdf{word-spacing:12.050842pt;}
.wsfa{word-spacing:12.337766pt;}
.ws12{word-spacing:13.230333pt;}
.ws7{word-spacing:13.761632pt;}
.wscf{word-spacing:14.154957pt;}
.wsd{word-spacing:14.319536pt;}
.ws102{word-spacing:14.769562pt;}
.wsdb{word-spacing:14.772096pt;}
.wsd4{word-spacing:14.776627pt;}
.wse8{word-spacing:14.778334pt;}
.wsf2{word-spacing:15.015731pt;}
.wse3{word-spacing:15.733043pt;}
.wseb{word-spacing:20.945510pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws14{word-spacing:35.593054pt;}
.wsb6{word-spacing:265.166336pt;}
.wsb7{word-spacing:277.121536pt;}
._20{margin-left:-23.283072pt;}
._42{margin-left:-17.969974pt;}
._8{margin-left:-9.978646pt;}
._22{margin-left:-8.599629pt;}
._17{margin-left:-6.907403pt;}
._7{margin-left:-5.897859pt;}
._2{margin-left:-4.291788pt;}
._15{margin-left:-2.869229pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._9{width:3.286633pt;}
._1a{width:4.705052pt;}
._1b{width:5.635428pt;}
._1e{width:6.560294pt;}
._21{width:7.694472pt;}
._1c{width:8.603991pt;}
._5{width:10.132188pt;}
._3{width:11.534081pt;}
._10{width:13.182907pt;}
._c{width:14.948062pt;}
._13{width:16.684034pt;}
._b{width:17.932800pt;}
._16{width:19.340727pt;}
._d{width:20.618889pt;}
._24{width:21.519216pt;}
._f{width:22.528759pt;}
._18{width:23.750838pt;}
._e{width:24.707248pt;}
._43{width:26.157978pt;}
._6{width:27.188522pt;}
._40{width:28.327077pt;}
._23{width:29.437764pt;}
._14{width:30.711375pt;}
._31{width:33.281980pt;}
._25{width:36.609234pt;}
._30{width:38.096982pt;}
._a{width:48.341076pt;}
._26{width:54.490180pt;}
._41{width:78.904320pt;}
._3a{width:83.256013pt;}
._39{width:88.564122pt;}
._36{width:93.872230pt;}
._37{width:119.121613pt;}
._38{width:121.751757pt;}
._35{width:129.068339pt;}
._34{width:137.628262pt;}
._28{width:146.475110pt;}
._3c{width:265.166336pt;}
._3f{width:277.121536pt;}
._3d{width:289.076736pt;}
._3b{width:295.054336pt;}
._3e{width:307.009536pt;}
._2a{width:356.160495pt;}
._27{width:410.445926pt;}
._29{width:515.873092pt;}
._2d{width:527.830426pt;}
._2c{width:643.907072pt;}
._2b{width:652.993024pt;}
._2e{width:655.862272pt;}
._11{width:665.067651pt;}
._2f{width:673.795072pt;}
._1f{width:1629.398935pt;}
._33{width:1753.623012pt;}
._1d{width:1792.435821pt;}
._19{width:1810.551031pt;}
._32{width:2155.311008pt;}
._12{width:2176.564341pt;}
.fs7{font-size:31.880533pt;}
.fs15{font-size:33.696000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs16{font-size:37.440000pt;}
.fs12{font-size:38.304000pt;}
.fs6{font-size:40.381867pt;}
.fs19{font-size:41.708800pt;}
.fs0{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fsf{font-size:42.134400pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs14{font-size:43.200000pt;}
.fs1b{font-size:47.040000pt;}
.fs11{font-size:47.520000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:48.000000pt;}
.fs13{font-size:48.096000pt;}
.fs18{font-size:49.829333pt;}
.fs1a{font-size:52.371200pt;}
.fs10{font-size:52.905600pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fse{font-size:55.365867pt;}
.fs17{font-size:74.387733pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:110.978294pt;}
.y10a{bottom:-495.044400pt;}
.y127{bottom:-433.556400pt;}
.y126{bottom:-418.148400pt;}
.y125{bottom:-402.812400pt;}
.y124{bottom:-387.404400pt;}
.y123{bottom:-368.468400pt;}
.y122{bottom:-338.636400pt;}
.y121{bottom:-322.724400pt;}
.y1d1{bottom:-303.392000pt;}
.y120{bottom:-299.972400pt;}
.y11f{bottom:-299.180400pt;}
.y11e{bottom:-276.788400pt;}
.y11d{bottom:-261.380400pt;}
.y1e0{bottom:-247.632000pt;}
.y11c{bottom:-246.044400pt;}
.y1df{bottom:-230.592000pt;}
.y11a{bottom:-226.892400pt;}
.y118{bottom:-219.620400pt;}
.y1de{bottom:-213.472000pt;}
.y117{bottom:-211.556400pt;}
.y11b{bottom:-211.052400pt;}
.y1dd{bottom:-196.352000pt;}
.y119{bottom:-193.700400pt;}
.y1dc{bottom:-179.312000pt;}
.y116{bottom:-175.772400pt;}
.y1db{bottom:-162.192000pt;}
.y115{bottom:-160.364400pt;}
.y1da{bottom:-145.152000pt;}
.y114{bottom:-144.956400pt;}
.yd8{bottom:-135.251160pt;}
.y140{bottom:-135.216000pt;}
.y113{bottom:-129.620400pt;}
.y1f1{bottom:-128.391760pt;}
.y1d9{bottom:-128.005333pt;}
.y9c{bottom:-119.800000pt;}
.y112{bottom:-114.212400pt;}
.y1d8{bottom:-110.885333pt;}
.y1d7{bottom:-93.845333pt;}
.y111{bottom:-84.764400pt;}
.y164{bottom:-83.216000pt;}
.yf5{bottom:-77.831160pt;}
.y110{bottom:-70.868400pt;}
.y163{bottom:-67.776000pt;}
.y1f9{bottom:-67.082960pt;}
.yf4{bottom:-62.545560pt;}
.yb8{bottom:-62.120000pt;}
.y1d6{bottom:-61.125333pt;}
.y10f{bottom:-57.044400pt;}
.y162{bottom:-52.416000pt;}
.y1f8{bottom:-51.951760pt;}
.yf3{bottom:-47.339160pt;}
.yb7{bottom:-46.760000pt;}
.y1d5{bottom:-45.685333pt;}
.y10e{bottom:-43.220400pt;}
.y161{bottom:-36.976000pt;}
.y1f7{bottom:-36.820560pt;}
.yf2{bottom:-32.132760pt;}
.yb6{bottom:-31.400000pt;}
.y1d4{bottom:-30.245333pt;}
.y10d{bottom:-29.324400pt;}
.y1f6{bottom:-21.767760pt;}
.y160{bottom:-21.616000pt;}
.yf1{bottom:-16.847160pt;}
.yb5{bottom:-15.960000pt;}
.y10c{bottom:-15.500400pt;}
.y1d3{bottom:-14.885333pt;}
.y1f5{bottom:-2.246160pt;}
.y15f{bottom:-1.696000pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:2.451600pt;}
.yf0{bottom:2.873640pt;}
.y3{bottom:3.044747pt;}
.yb4{bottom:3.960000pt;}
.y1d2{bottom:5.034667pt;}
.y14d{bottom:11.280000pt;}
.y14e{bottom:12.000000pt;}
.y2{bottom:12.578910pt;}
.y21{bottom:15.986365pt;}
.y4e{bottom:28.346667pt;}
.y1fd{bottom:79.794667pt;}
.yfa{bottom:81.202667pt;}
.y1ed{bottom:81.520000pt;}
.ybc{bottom:83.510667pt;}
.y22f{bottom:86.692000pt;}
.y129{bottom:88.833333pt;}
.y4d{bottom:92.318667pt;}
.y1f{bottom:93.018667pt;}
.y235{bottom:95.282667pt;}
.y1fc{bottom:96.890667pt;}
.y19e{bottom:97.272000pt;}
.y1ec{bottom:98.257333pt;}
.yf9{bottom:98.298667pt;}
.ybb{bottom:100.606667pt;}
.y22e{bottom:103.429333pt;}
.y128{bottom:105.929333pt;}
.y284{bottom:108.233333pt;}
.y1e{bottom:108.920000pt;}
.y4c{bottom:109.056000pt;}
.y16c{bottom:110.952000pt;}
.y234{bottom:112.020000pt;}
.y1fb{bottom:113.986667pt;}
.y19d{bottom:114.009333pt;}
.y1eb{bottom:114.994667pt;}
.yf8{bottom:115.394667pt;}
.yba{bottom:117.702667pt;}
.y22d{bottom:120.166667pt;}
.y283{bottom:123.576000pt;}
.y1d{bottom:124.820000pt;}
.y4b{bottom:125.793333pt;}
.y16b{bottom:127.689333pt;}
.y107{bottom:128.522667pt;}
.y233{bottom:128.757333pt;}
.y19c{bottom:130.746667pt;}
.y1fa{bottom:131.081333pt;}
.y1ea{bottom:131.732000pt;}
.yf7{bottom:132.490667pt;}
.yb9{bottom:134.798667pt;}
.y22c{bottom:136.904000pt;}
.y282{bottom:138.918667pt;}
.y257{bottom:138.920000pt;}
.y1c{bottom:140.720000pt;}
.y4a{bottom:142.530667pt;}
.y16a{bottom:144.426667pt;}
.y232{bottom:145.494667pt;}
.y1e9{bottom:148.469333pt;}
.yf6{bottom:149.586667pt;}
.y19b{bottom:151.469333pt;}
.y22b{bottom:153.641333pt;}
.y1ee{bottom:153.676000pt;}
.y256{bottom:154.261333pt;}
.y1b{bottom:156.621333pt;}
.y99{bottom:157.392000pt;}
.y49{bottom:159.268000pt;}
.y231{bottom:162.232000pt;}
.y81{bottom:162.630667pt;}
.y1e8{bottom:165.206667pt;}
.y19a{bottom:169.402667pt;}
.y255{bottom:169.604000pt;}
.y22a{bottom:170.378667pt;}
.yd5{bottom:172.180000pt;}
.y1a{bottom:172.521333pt;}
.y169{bottom:174.264000pt;}
.y48{bottom:176.005333pt;}
.y80{bottom:179.368000pt;}
.y1e7{bottom:181.944000pt;}
.y230{bottom:182.954667pt;}
.y254{bottom:184.946667pt;}
.y1cd{bottom:185.018667pt;}
.y229{bottom:187.116000pt;}
.y19{bottom:188.421333pt;}
.y168{bottom:191.358667pt;}
.y47{bottom:192.742667pt;}
.y7f{bottom:196.105333pt;}
.y1e6{bottom:198.681333pt;}
.y199{bottom:199.290667pt;}
.y253{bottom:200.289333pt;}
.y1cc{bottom:201.756000pt;}
.y228{bottom:203.853333pt;}
.y18{bottom:204.322667pt;}
.y167{bottom:208.454667pt;}
.y46{bottom:209.480000pt;}
.y7e{bottom:212.841333pt;}
.y1e5{bottom:215.417333pt;}
.y252{bottom:215.632000pt;}
.y198{bottom:216.028000pt;}
.y1cb{bottom:218.493333pt;}
.y227{bottom:220.590667pt;}
.y166{bottom:225.550667pt;}
.y45{bottom:226.217333pt;}
.y7d{bottom:229.578667pt;}
.y251{bottom:230.974667pt;}
.y197{bottom:232.765333pt;}
.y1ca{bottom:235.230667pt;}
.y226{bottom:237.326667pt;}
.y165{bottom:242.646667pt;}
.y44{bottom:242.954667pt;}
.y1e4{bottom:245.254667pt;}
.y7c{bottom:246.316000pt;}
.y250{bottom:246.317333pt;}
.y196{bottom:249.502667pt;}
.y1c9{bottom:251.968000pt;}
.y225{bottom:254.064000pt;}
.y43{bottom:259.692000pt;}
.y281{bottom:261.658667pt;}
.y24f{bottom:261.660000pt;}
.y1e3{bottom:262.350667pt;}
.y7b{bottom:263.053333pt;}
.y13d{bottom:265.241333pt;}
.y195{bottom:266.240000pt;}
.y17{bottom:266.804000pt;}
.y1c8{bottom:268.705333pt;}
.y224{bottom:270.801333pt;}
.y42{bottom:276.429333pt;}
.y280{bottom:277.001333pt;}
.y24e{bottom:277.002667pt;}
.y1e2{bottom:279.445333pt;}
.y7a{bottom:279.790667pt;}
.y16{bottom:282.705333pt;}
.y194{bottom:282.977333pt;}
.y1c7{bottom:285.442667pt;}
.y223{bottom:287.538667pt;}
.y24d{bottom:292.344000pt;}
.y41{bottom:293.166667pt;}
.y79{bottom:296.528000pt;}
.y1e1{bottom:296.541333pt;}
.y15{bottom:298.605333pt;}
.y193{bottom:299.714667pt;}
.y1c6{bottom:302.180000pt;}
.y222{bottom:304.276000pt;}
.y24c{bottom:307.686667pt;}
.y40{bottom:309.904000pt;}
.y78{bottom:313.265333pt;}
.y14{bottom:314.505333pt;}
.y192{bottom:316.450667pt;}
.y1c5{bottom:318.917333pt;}
.y1ce{bottom:319.136000pt;}
.y221{bottom:321.013333pt;}
.y24b{bottom:323.029333pt;}
.y3f{bottom:326.641333pt;}
.y15e{bottom:328.090667pt;}
.y77{bottom:330.002667pt;}
.y191{bottom:330.181333pt;}
.y190{bottom:334.860000pt;}
.y1c4{bottom:335.654667pt;}
.y220{bottom:337.750667pt;}
.y27f{bottom:338.372000pt;}
.y13{bottom:338.376000pt;}
.y24a{bottom:342.357333pt;}
.y3e{bottom:343.378667pt;}
.y15d{bottom:345.130667pt;}
.y76{bottom:346.740000pt;}
.y1c3{bottom:352.392000pt;}
.y27e{bottom:353.714667pt;}
.y12{bottom:354.277333pt;}
.y21f{bottom:354.488000pt;}
.y15c{bottom:362.250667pt;}
.y75{bottom:363.477333pt;}
.y3d{bottom:364.100000pt;}
.y18f{bottom:367.117333pt;}
.y27d{bottom:369.056000pt;}
.y11{bottom:370.177333pt;}
.y21e{bottom:371.225333pt;}
.y249{bottom:372.245333pt;}
.y1c2{bottom:373.113333pt;}
.y15b{bottom:379.370667pt;}
.y74{bottom:380.214667pt;}
.y27c{bottom:384.398667pt;}
.y21d{bottom:387.962667pt;}
.y10{bottom:395.376000pt;}
.y248{bottom:395.837333pt;}
.y15a{bottom:396.410667pt;}
.y73{bottom:396.952000pt;}
.y18e{bottom:397.802667pt;}
.y27b{bottom:399.741333pt;}
.y1c1{bottom:403.001333pt;}
.y21c{bottom:404.700000pt;}
.yf{bottom:411.276000pt;}
.y247{bottom:411.458667pt;}
.y109{bottom:412.299600pt;}
.y159{bottom:413.557333pt;}
.y72{bottom:413.689333pt;}
.y18d{bottom:414.540000pt;}
.y27a{bottom:415.084000pt;}
.yef{bottom:415.320840pt;}
.y1c0{bottom:419.738667pt;}
.y108{bottom:420.003600pt;}
.y21b{bottom:421.437333pt;}
.ye{bottom:427.177333pt;}
.y71{bottom:430.426667pt;}
.y158{bottom:430.597333pt;}
.y3c{bottom:430.900000pt;}
.y18c{bottom:431.277333pt;}
.yee{bottom:432.190440pt;}
.y246{bottom:435.049333pt;}
.y1bf{bottom:436.476000pt;}
.y21a{bottom:438.174667pt;}
.y279{bottom:445.769333pt;}
.y70{bottom:447.164000pt;}
.y157{bottom:447.717333pt;}
.y18b{bottom:448.014667pt;}
.yed{bottom:449.139240pt;}
.yd{bottom:451.048000pt;}
.y1be{bottom:453.213333pt;}
.y219{bottom:454.912000pt;}
.yb3{bottom:455.773333pt;}
.y245{bottom:458.641333pt;}
.y278{bottom:461.112000pt;}
.y6f{bottom:463.901333pt;}
.y3b{bottom:464.136000pt;}
.y18a{bottom:464.752000pt;}
.y156{bottom:464.837333pt;}
.yec{bottom:466.008840pt;}
.yc{bottom:466.948000pt;}
.y1bd{bottom:469.950667pt;}
.y218{bottom:471.649333pt;}
.yb2{bottom:472.813333pt;}
.y277{bottom:476.454667pt;}
.y6e{bottom:480.638667pt;}
.y3a{bottom:481.430667pt;}
.y244{bottom:482.233333pt;}
.y155{bottom:482.837333pt;}
.yb{bottom:482.848000pt;}
.yeb{bottom:482.957640pt;}
.y1bc{bottom:486.688000pt;}
.y217{bottom:488.386667pt;}
.y189{bottom:489.857333pt;}
.yb1{bottom:489.933333pt;}
.y276{bottom:491.797333pt;}
.y6d{bottom:497.376000pt;}
.y39{bottom:498.726667pt;}
.ya{bottom:498.749333pt;}
.yea{bottom:499.906440pt;}
.y1bb{bottom:503.425333pt;}
.y216{bottom:505.124000pt;}
.y243{bottom:505.824000pt;}
.y188{bottom:506.456000pt;}
.yb0{bottom:507.053333pt;}
.y275{bottom:507.138667pt;}
.y6c{bottom:514.113333pt;}
.y9{bottom:514.649333pt;}
.y38{bottom:516.021333pt;}
.ye9{bottom:516.776040pt;}
.y1ba{bottom:520.162667pt;}
.y242{bottom:521.445333pt;}
.y215{bottom:521.861333pt;}
.y274{bottom:522.481333pt;}
.y187{bottom:523.332000pt;}
.yaf{bottom:524.093333pt;}
.y106{bottom:530.452000pt;}
.y8{bottom:530.549333pt;}
.y6b{bottom:530.850667pt;}
.y37{bottom:533.317333pt;}
.ye8{bottom:533.724840pt;}
.y153{bottom:533.957333pt;}
.y1b9{bottom:536.900000pt;}
.y241{bottom:537.066667pt;}
.y273{bottom:537.824000pt;}
.y214{bottom:538.598667pt;}
.y186{bottom:540.069333pt;}
.yae{bottom:541.213333pt;}
.y7{bottom:546.450667pt;}
.y105{bottom:547.189333pt;}
.y6a{bottom:547.588000pt;}
.ye7{bottom:550.594440pt;}
.y36{bottom:550.612000pt;}
.y152{bottom:551.077333pt;}
.y240{bottom:552.689333pt;}
.y272{bottom:553.166667pt;}
.y1b8{bottom:553.637333pt;}
.y213{bottom:555.336000pt;}
.y185{bottom:556.806667pt;}
.yad{bottom:558.253333pt;}
.y6{bottom:562.350667pt;}
.y104{bottom:563.926667pt;}
.y69{bottom:564.325333pt;}
.ye6{bottom:567.543240pt;}
.y35{bottom:567.906667pt;}
.y151{bottom:568.117333pt;}
.y23f{bottom:568.310667pt;}
.y271{bottom:568.509333pt;}
.y212{bottom:572.073333pt;}
.y184{bottom:573.544000pt;}
.yac{bottom:575.373333pt;}
.y5{bottom:578.250667pt;}
.y103{bottom:580.664000pt;}
.y68{bottom:581.062667pt;}
.y270{bottom:583.852000pt;}
.y23e{bottom:583.932000pt;}
.ye5{bottom:584.492040pt;}
.y34{bottom:585.202667pt;}
.y150{bottom:585.237333pt;}
.y211{bottom:588.810667pt;}
.yd4{bottom:589.313333pt;}
.y13c{bottom:589.672000pt;}
.y183{bottom:590.281333pt;}
.yab{bottom:592.493333pt;}
.y4{bottom:594.152000pt;}
.y1b7{bottom:596.705333pt;}
.y102{bottom:597.401333pt;}
.y67{bottom:597.800000pt;}
.y26f{bottom:599.194667pt;}
.y23d{bottom:599.553333pt;}
.y14f{bottom:602.357333pt;}
.y33{bottom:602.497333pt;}
.y1b4{bottom:604.693333pt;}
.ye4{bottom:605.321640pt;}
.y210{bottom:605.548000pt;}
.yd3{bottom:606.050667pt;}
.y13b{bottom:606.409333pt;}
.y182{bottom:607.018667pt;}
.y98{bottom:609.356000pt;}
.yaa{bottom:609.533333pt;}
.y1{bottom:610.051968pt;}
.y1b6{bottom:611.317333pt;}
.y101{bottom:614.138667pt;}
.y66{bottom:614.537333pt;}
.y1b3{bottom:619.305333pt;}
.y32{bottom:619.792000pt;}
.y20f{bottom:622.285333pt;}
.yd2{bottom:622.788000pt;}
.y23c{bottom:623.145333pt;}
.y13a{bottom:623.146667pt;}
.y181{bottom:623.756000pt;}
.y97{bottom:626.093333pt;}
.ya9{bottom:626.653333pt;}
.y1b5{bottom:626.761333pt;}
.y26e{bottom:629.878667pt;}
.y100{bottom:630.876000pt;}
.y65{bottom:631.274667pt;}
.y31{bottom:637.088000pt;}
.ye3{bottom:638.110440pt;}
.y23b{bottom:638.766667pt;}
.y20e{bottom:639.022667pt;}
.yd1{bottom:639.525333pt;}
.y139{bottom:639.884000pt;}
.y180{bottom:640.493333pt;}
.y96{bottom:642.830667pt;}
.ya8{bottom:643.693333pt;}
.y26d{bottom:645.221333pt;}
.yff{bottom:647.613333pt;}
.y64{bottom:648.012000pt;}
.y1b2{bottom:648.053333pt;}
.y14b{bottom:653.397333pt;}
.y30{bottom:654.382667pt;}
.y23a{bottom:654.388000pt;}
.ye2{bottom:654.980040pt;}
.y1af{bottom:656.041333pt;}
.yd0{bottom:656.262667pt;}
.y138{bottom:656.621333pt;}
.y17f{bottom:657.230667pt;}
.y94{bottom:659.568000pt;}
.y20d{bottom:659.744000pt;}
.y26c{bottom:660.564000pt;}
.ya7{bottom:660.813333pt;}
.y1b1{bottom:662.665333pt;}
.yfe{bottom:664.350667pt;}
.y95{bottom:664.390667pt;}
.y63{bottom:664.749333pt;}
.y239{bottom:670.009333pt;}
.y14a{bottom:670.517333pt;}
.y1ae{bottom:670.653333pt;}
.y2f{bottom:671.678667pt;}
.ye1{bottom:671.928840pt;}
.ycf{bottom:673.000000pt;}
.y137{bottom:673.358667pt;}
.y17e{bottom:673.968000pt;}
.y26b{bottom:675.906667pt;}
.y93{bottom:676.305333pt;}
.ya6{bottom:677.933333pt;}
.y1b0{bottom:678.109333pt;}
.yfd{bottom:681.088000pt;}
.y62{bottom:681.485333pt;}
.y238{bottom:685.630667pt;}
.y149{bottom:687.557333pt;}
.ye0{bottom:688.877640pt;}
.yce{bottom:689.737333pt;}
.y136{bottom:690.096000pt;}
.y17d{bottom:690.705333pt;}
.y26a{bottom:691.249333pt;}
.y92{bottom:693.042667pt;}
.ya5{bottom:694.973333pt;}
.yfc{bottom:697.825333pt;}
.y61{bottom:698.222667pt;}
.y1ad{bottom:699.401333pt;}
.y20c{bottom:700.022667pt;}
.y237{bottom:701.252000pt;}
.y148{bottom:704.677333pt;}
.y1d0{bottom:704.768000pt;}
.ydf{bottom:705.747240pt;}
.y2e{bottom:705.976000pt;}
.ycd{bottom:706.474667pt;}
.y269{bottom:706.592000pt;}
.y135{bottom:706.833333pt;}
.y1aa{bottom:707.389333pt;}
.y17c{bottom:707.442667pt;}
.y91{bottom:709.780000pt;}
.ya4{bottom:712.093333pt;}
.y1cf{bottom:713.328000pt;}
.y209{bottom:713.609333pt;}
.y1ac{bottom:714.013333pt;}
.y20b{bottom:714.634667pt;}
.y60{bottom:714.960000pt;}
.y236{bottom:716.873333pt;}
.yfb{bottom:718.546667pt;}
.y2d{bottom:720.322667pt;}
.y147{bottom:721.797333pt;}
.y268{bottom:721.934667pt;}
.y1a9{bottom:722.001333pt;}
.yde{bottom:722.696040pt;}
.ycc{bottom:723.212000pt;}
.y17b{bottom:724.180000pt;}
.y90{bottom:726.517333pt;}
.y134{bottom:727.554667pt;}
.ya3{bottom:729.213333pt;}
.y20a{bottom:729.246667pt;}
.y1ab{bottom:729.457333pt;}
.y5f{bottom:731.697333pt;}
.y267{bottom:737.277333pt;}
.y2c{bottom:738.526667pt;}
.y146{bottom:738.837333pt;}
.yca{bottom:739.949333pt;}
.y17a{bottom:740.917333pt;}
.y8f{bottom:743.254667pt;}
.ycb{bottom:744.770667pt;}
.ya2{bottom:746.253333pt;}
.y5e{bottom:748.434667pt;}
.y208{bottom:750.260000pt;}
.y1a8{bottom:750.749333pt;}
.y266{bottom:752.620000pt;}
.y2b{bottom:752.872000pt;}
.ydd{bottom:755.088840pt;}
.y145{bottom:755.957333pt;}
.yc9{bottom:756.685333pt;}
.y133{bottom:757.442667pt;}
.y1a5{bottom:758.737333pt;}
.y8e{bottom:759.992000pt;}
.y154{bottom:761.438667pt;}
.y179{bottom:761.640000pt;}
.ya1{bottom:763.373333pt;}
.y205{bottom:763.846667pt;}
.y207{bottom:764.872000pt;}
.y5d{bottom:765.172000pt;}
.y1a7{bottom:765.361333pt;}
.y2a{bottom:767.218667pt;}
.y265{bottom:767.961333pt;}
.ydc{bottom:770.374440pt;}
.y144{bottom:772.997333pt;}
.y1a4{bottom:773.349333pt;}
.y132{bottom:774.180000pt;}
.y8d{bottom:776.729333pt;}
.yc8{bottom:777.408000pt;}
.y29{bottom:777.708000pt;}
.y1f4{bottom:778.461040pt;}
.y206{bottom:779.484000pt;}
.ya0{bottom:780.413333pt;}
.y1a6{bottom:780.805333pt;}
.y5c{bottom:781.909333pt;}
.y264{bottom:783.304000pt;}
.ydb{bottom:785.607240pt;}
.y143{bottom:790.144000pt;}
.y131{bottom:790.917333pt;}
.y178{bottom:791.528000pt;}
.y8c{bottom:793.466667pt;}
.y1f3{bottom:795.238640pt;}
.y28{bottom:795.912000pt;}
.y9f{bottom:797.533333pt;}
.y5b{bottom:798.646667pt;}
.y204{bottom:800.497333pt;}
.yda{bottom:800.892840pt;}
.y1a3{bottom:802.097333pt;}
.y142{bottom:807.264000pt;}
.yc7{bottom:807.296000pt;}
.y130{bottom:807.654667pt;}
.y177{bottom:808.264000pt;}
.y8b{bottom:810.204000pt;}
.y1f2{bottom:811.937840pt;}
.y263{bottom:813.989333pt;}
.y201{bottom:814.084000pt;}
.y203{bottom:815.109333pt;}
.y5a{bottom:815.384000pt;}
.yd9{bottom:816.099240pt;}
.y9e{bottom:818.600000pt;}
.yc6{bottom:824.033333pt;}
.y141{bottom:824.304000pt;}
.y12f{bottom:824.392000pt;}
.y8a{bottom:826.941333pt;}
.y262{bottom:829.332000pt;}
.y202{bottom:829.721333pt;}
.y59{bottom:832.121333pt;}
.y1a2{bottom:832.860000pt;}
.y27{bottom:835.624000pt;}
.y176{bottom:838.949333pt;}
.y9d{bottom:839.720000pt;}
.yc5{bottom:840.770667pt;}
.y12e{bottom:841.129333pt;}
.y89{bottom:843.678667pt;}
.y261{bottom:844.674667pt;}
.y58{bottom:848.858667pt;}
.y1a1{bottom:849.956000pt;}
.y200{bottom:850.736000pt;}
.yc4{bottom:857.508000pt;}
.y12d{bottom:857.866667pt;}
.y1f0{bottom:859.605040pt;}
.y260{bottom:860.017333pt;}
.y88{bottom:860.416000pt;}
.yd7{bottom:862.827240pt;}
.y57{bottom:865.596000pt;}
.y1a0{bottom:867.052000pt;}
.y1ef{bottom:867.993840pt;}
.y175{bottom:869.634667pt;}
.y26{bottom:871.108000pt;}
.yd6{bottom:871.301640pt;}
.y13f{bottom:872.944000pt;}
.yc3{bottom:874.245333pt;}
.y12c{bottom:874.604000pt;}
.y25f{bottom:875.360000pt;}
.y87{bottom:877.153333pt;}
.y14c{bottom:880.878667pt;}
.y1ff{bottom:881.498667pt;}
.y13e{bottom:881.504000pt;}
.y56{bottom:882.333333pt;}
.y174{bottom:886.372000pt;}
.y9b{bottom:888.360000pt;}
.y25d{bottom:890.701333pt;}
.y25e{bottom:890.702667pt;}
.yc2{bottom:890.982667pt;}
.y12b{bottom:891.341333pt;}
.y86{bottom:893.890667pt;}
.y25{bottom:896.213333pt;}
.y9a{bottom:896.920000pt;}
.y1fe{bottom:898.594667pt;}
.y55{bottom:899.070667pt;}
.y173{bottom:903.109333pt;}
.y25c{bottom:906.044000pt;}
.y12a{bottom:908.078667pt;}
.y85{bottom:910.628000pt;}
.yc1{bottom:915.690667pt;}
.y54{bottom:915.808000pt;}
.y24{bottom:921.320000pt;}
.y25b{bottom:921.386667pt;}
.y171{bottom:923.841333pt;}
.y84{bottom:927.364000pt;}
.y16e{bottom:929.177333pt;}
.y53{bottom:932.545333pt;}
.yc0{bottom:932.785333pt;}
.y170{bottom:935.526667pt;}
.y25a{bottom:936.729333pt;}
.y172{bottom:938.289333pt;}
.y16d{bottom:938.290667pt;}
.y83{bottom:944.101333pt;}
.y23{bottom:946.425333pt;}
.y52{bottom:949.282667pt;}
.ybf{bottom:949.881333pt;}
.y259{bottom:952.072000pt;}
.y16f{bottom:952.636000pt;}
.y82{bottom:964.824000pt;}
.y51{bottom:966.020000pt;}
.ybe{bottom:966.977333pt;}
.y258{bottom:967.414667pt;}
.y22{bottom:971.530667pt;}
.y50{bottom:982.757333pt;}
.ybd{bottom:984.073333pt;}
.y19f{bottom:987.578667pt;}
.y20{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h2e{height:-312.220000pt;}
.h2a{height:-280.172400pt;}
.h30{height:-192.780000pt;}
.h26{height:-179.156400pt;}
.h2{height:22.673858pt;}
.hc{height:28.947524pt;}
.h4{height:29.433775pt;}
.h34{height:29.599908pt;}
.h3{height:30.399505pt;}
.h14{height:31.558400pt;}
.h5{height:33.771789pt;}
.h6{height:33.957757pt;}
.hf{height:34.574438pt;}
.h2b{height:35.250047pt;}
.h22{height:35.629453pt;}
.h36{height:36.666735pt;}
.h32{height:37.778179pt;}
.h11{height:38.415786pt;}
.hd{height:38.596538pt;}
.h20{height:38.775052pt;}
.h42{height:38.796516pt;}
.he{height:38.809074pt;}
.h9{height:38.947124pt;}
.h19{height:39.166719pt;}
.h1d{height:39.192398pt;}
.h18{height:39.192812pt;}
.h16{height:39.588281pt;}
.h24{height:40.183594pt;}
.h38{height:41.285014pt;}
.h1b{height:41.524400pt;}
.h29{height:41.790937pt;}
.h10{height:43.421286pt;}
.h45{height:43.660390pt;}
.h44{height:43.755469pt;}
.h1f{height:44.201953pt;}
.h1a{height:44.648438pt;}
.h23{height:44.737734pt;}
.h7{height:45.272024pt;}
.h12{height:48.245551pt;}
.hb{height:48.481423pt;}
.h13{height:48.511220pt;}
.h43{height:48.714422pt;}
.h37{height:48.800218pt;}
.h39{height:48.885242pt;}
.h1e{height:49.211508pt;}
.h17{height:49.708594pt;}
.h3e{height:50.022455pt;}
.h3f{height:51.126455pt;}
.h3d{height:51.131789pt;}
.h3c{height:55.952068pt;}
.h35{height:57.799269pt;}
.h25{height:59.650312pt;}
.h2d{height:66.278125pt;}
.h3b{height:66.960218pt;}
.h31{height:67.554375pt;}
.h3a{height:67.599908pt;}
.h2f{height:68.838125pt;}
.ha{height:69.148877pt;}
.h8{height:75.243283pt;}
.h33{height:84.213551pt;}
.h28{height:91.906312pt;}
.h27{height:95.938313pt;}
.h2c{height:303.417333pt;}
.h21{height:380.918400pt;}
.h1c{height:396.117480pt;}
.h15{height:430.950667pt;}
.h40{height:676.906667pt;}
.h41{height:758.823147pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:-9.631200pt;}
.wb{width:13.122667pt;}
.w2{width:66.991004pt;}
.w3{width:227.883735pt;}
.w7{width:436.024800pt;}
.wa{width:495.173333pt;}
.w6{width:558.133680pt;}
.wc{width:599.826267pt;}
.w4{width:600.527333pt;}
.wd{width:620.792499pt;}
.w5{width:650.020800pt;}
.w9{width:669.899733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4f{left:-52.204667pt;}
.xb1{left:-48.000400pt;}
.x7b{left:-34.371120pt;}
.xb7{left:-32.619235pt;}
.x6f{left:-23.239920pt;}
.x88{left:-12.262933pt;}
.x0{left:0.000000pt;}
.x83{left:11.808000pt;}
.x8d{left:13.120000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:53.536669pt;}
.x87{left:61.712267pt;}
.xaa{left:63.193333pt;}
.xba{left:64.329333pt;}
.x6e{left:71.649333pt;}
.xbd{left:75.357333pt;}
.xcc{left:76.309333pt;}
.xae{left:78.717333pt;}
.xbb{left:79.762667pt;}
.xab{left:81.069333pt;}
.xaf{left:84.057333pt;}
.xb6{left:86.267581pt;}
.x4e{left:96.398000pt;}
.x7a{left:117.596853pt;}
.x50{left:121.662000pt;}
.xb3{left:125.866267pt;}
.xb8{left:137.770099pt;}
.x7d{left:147.596880pt;}
.x70{left:148.888080pt;}
.x51{left:149.982000pt;}
.xb4{left:154.186267pt;}
.x8a{left:161.603733pt;}
.xbc{left:175.452000pt;}
.x71{left:176.924880pt;}
.x89{left:189.923733pt;}
.x84{left:206.664000pt;}
.x8e{left:209.226667pt;}
.x7e{left:214.656000pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x8b{left:223.316000pt;}
.xac{left:233.278667pt;}
.x7f{left:236.688000pt;}
.x6{left:239.924000pt;}
.xad{left:243.476000pt;}
.x81{left:247.920000pt;}
.x4b{left:249.173333pt;}
.x9{left:250.204000pt;}
.x80{left:251.592000pt;}
.x2d{left:256.081333pt;}
.x4c{left:259.176000pt;}
.x98{left:261.177333pt;}
.x67{left:266.696000pt;}
.x2e{left:269.364000pt;}
.xa9{left:270.496000pt;}
.x86{left:271.677333pt;}
.x53{left:272.710667pt;}
.x8{left:273.804000pt;}
.x90{left:275.458667pt;}
.x5e{left:277.269333pt;}
.xa3{left:278.600000pt;}
.x5f{left:282.577333pt;}
.x60{left:285.536000pt;}
.x9b{left:286.704000pt;}
.xa0{left:290.137333pt;}
.x6c{left:291.664000pt;}
.x61{left:292.841333pt;}
.x29{left:301.932000pt;}
.xa1{left:304.760000pt;}
.x6d{left:305.897333pt;}
.x6a{left:310.218667pt;}
.x36{left:314.281333pt;}
.x2a{left:315.214667pt;}
.x6b{left:320.374667pt;}
.x2b{left:321.936000pt;}
.x37{left:327.564000pt;}
.xcb{left:330.845333pt;}
.x2f{left:334.244000pt;}
.x2c{left:335.220000pt;}
.xc5{left:340.173333pt;}
.x30{left:347.528000pt;}
.xa4{left:350.872000pt;}
.x1e{left:363.492000pt;}
.xa5{left:365.102667pt;}
.xc6{left:373.442667pt;}
.x62{left:375.530667pt;}
.x1f{left:376.774667pt;}
.xa6{left:378.585333pt;}
.x63{left:382.177333pt;}
.x20{left:383.317333pt;}
.xc7{left:386.725333pt;}
.x64{left:388.096000pt;}
.x65{left:392.077333pt;}
.x21{left:396.601333pt;}
.x33{left:403.853333pt;}
.x9e{left:406.408000pt;}
.x3c{left:413.046667pt;}
.x54{left:415.254667pt;}
.x9c{left:419.436000pt;}
.xbe{left:420.386667pt;}
.x55{left:422.560000pt;}
.x3d{left:426.330667pt;}
.xbf{left:433.670667pt;}
.xc8{left:437.780000pt;}
.x9a{left:440.925333pt;}
.xa7{left:445.024000pt;}
.x79{left:449.010667pt;}
.xc9{left:451.062667pt;}
.xa8{left:454.041333pt;}
.x85{left:458.665333pt;}
.x46{left:462.465333pt;}
.x57{left:466.382667pt;}
.x66{left:469.214667pt;}
.x58{left:470.364000pt;}
.x18{left:473.470667pt;}
.x47{left:475.749333pt;}
.x48{left:479.136000pt;}
.x19{left:480.112000pt;}
.x9f{left:482.016000pt;}
.x1a{left:483.500000pt;}
.x59{left:484.786667pt;}
.x31{left:488.977333pt;}
.x1b{left:490.141333pt;}
.x49{left:492.420000pt;}
.x1c{left:493.529333pt;}
.x32{left:495.618667pt;}
.x1d{left:500.170667pt;}
.x68{left:507.777333pt;}
.x4a{left:509.090667pt;}
.x69{left:511.758667pt;}
.x22{left:513.806667pt;}
.x3e{left:517.000000pt;}
.x75{left:520.116000pt;}
.x23{left:527.089333pt;}
.x38{left:528.210667pt;}
.x3f{left:530.284000pt;}
.x93{left:532.549333pt;}
.x40{left:533.670667pt;}
.xb5{left:534.718667pt;}
.x95{left:536.221333pt;}
.x39{left:541.493333pt;}
.x41{left:546.954667pt;}
.x4d{left:552.304000pt;}
.x94{left:555.374667pt;}
.x7c{left:556.892880pt;}
.xc0{left:558.525333pt;}
.x76{left:559.498667pt;}
.x77{left:562.885333pt;}
.x5a{left:564.674667pt;}
.x5b{left:570.652000pt;}
.xc1{left:571.809333pt;}
.x5c{left:573.701333pt;}
.x12{left:574.664000pt;}
.x78{left:576.169333pt;}
.x5d{left:578.350667pt;}
.xe{left:581.202667pt;}
.xd0{left:582.802667pt;}
.x13{left:584.693333pt;}
.xf{left:587.844000pt;}
.x10{left:591.232000pt;}
.x52{left:594.755333pt;}
.xb2{left:595.919600pt;}
.xcd{left:596.842667pt;}
.x11{left:597.873333pt;}
.xb0{left:601.052000pt;}
.xc2{left:604.885333pt;}
.x99{left:613.696000pt;}
.xb9{left:617.316765pt;}
.xa{left:619.913333pt;}
.x73{left:622.774667pt;}
.x3a{left:623.680000pt;}
.x9d{left:625.170667pt;}
.xb{left:626.554667pt;}
.x74{left:628.752000pt;}
.xc{left:633.329333pt;}
.x3b{left:636.964000pt;}
.xd{left:639.970667pt;}
.xce{left:641.425333pt;}
.x72{left:643.069680pt;}
.xa2{left:651.998667pt;}
.xca{left:653.706667pt;}
.xd1{left:658.616000pt;}
.xcf{left:665.336000pt;}
.x42{left:667.033333pt;}
.x8f{left:673.657067pt;}
.x91{left:678.961333pt;}
.x43{left:680.317333pt;}
.xd2{left:682.525333pt;}
.x82{left:685.361733pt;}
.x34{left:692.370667pt;}
.xc3{left:695.650667pt;}
.x35{left:699.012000pt;}
.x92{left:701.222667pt;}
.x44{left:703.042667pt;}
.x26{left:706.120000pt;}
.xc4{left:708.934667pt;}
.x25{left:710.172000pt;}
.x45{left:716.326667pt;}
.x8c{left:718.489333pt;}
.x27{left:719.404000pt;}
.xd3{left:720.346667pt;}
.x14{left:723.786667pt;}
.x56{left:725.022667pt;}
.x24{left:726.488000pt;}
.x15{left:730.429333pt;}
.x16{left:733.717333pt;}
.x96{left:735.873333pt;}
.x28{left:739.461333pt;}
.x17{left:740.358667pt;}
.x97{left:742.681333pt;}
.xd4{left:744.257333pt;}
}




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