
    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_dab398561e5b361394c1e463.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b83de5da28508f2c5f8e22b0.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_5dfa1c159ea3707b4ee36cf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b65fba7182f04b76d7e87054.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_840893fd7f0539006a7e6859.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c3659d7bf85913fbdca2101c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_444f7ce6c9de29ec884040b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1c6d325ea032859d0bf7f836.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c30cb53bba89e98660cedd57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_09f1f74ef1249fa24423e3cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_634d6f5179cb2fe8695d71ea.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_747815b6b51fa6b7757a533b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708496;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_8d2ee36e1d362971d12618f3.woff2')format("woff");}.fff{font-family:fff;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cf5bf0e1fc84fae164dbfe34.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.740000;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_d642d88f7e257d1093ff0c0b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.522000;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_bbb10c1121b385c21985c985.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m8{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);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m29{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);}
.m6{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);}
.mb{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);}
.m23{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);}
.m13{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);}
.m1a{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);}
.m1b{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);}
.m18{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);}
.m15{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);}
.me{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);}
.m21{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m1f{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);}
.m26{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m14{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);}
.m1e{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);}
.m12{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);}
.m1c{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);}
.ma{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);}
.m28{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);}
.m20{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);}
.m25{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);}
.m27{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);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m11{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);}
.md{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);}
.m4{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:28.392000px;}
.v3{vertical-align:32.874000px;}
.ls4e{letter-spacing:-0.620438px;}
.ls73{letter-spacing:-0.598795px;}
.ls8a{letter-spacing:-0.555509px;}
.ls8d{letter-spacing:-0.548294px;}
.ls5a{letter-spacing:-0.541080px;}
.ls6a{letter-spacing:-0.519437px;}
.ls61{letter-spacing:-0.505008px;}
.ls85{letter-spacing:-0.483365px;}
.ls7a{letter-spacing:-0.461722px;}
.ls86{letter-spacing:-0.440078px;}
.ls7b{letter-spacing:-0.432864px;}
.ls71{letter-spacing:-0.411221px;}
.ls7c{letter-spacing:-0.404006px;}
.ls88{letter-spacing:-0.396792px;}
.ls90{letter-spacing:-0.382363px;}
.ls84{letter-spacing:-0.367934px;}
.ls6c{letter-spacing:-0.360720px;}
.ls63{letter-spacing:-0.346291px;}
.ls6f{letter-spacing:-0.339077px;}
.ls8c{letter-spacing:-0.324648px;}
.ls6e{letter-spacing:-0.317434px;}
.ls80{letter-spacing:-0.303005px;}
.ls5c{letter-spacing:-0.295790px;}
.ls69{letter-spacing:-0.281362px;}
.ls89{letter-spacing:-0.274147px;}
.ls79{letter-spacing:-0.266933px;}
.ls5f{letter-spacing:-0.259718px;}
.ls59{letter-spacing:-0.252504px;}
.ls4d{letter-spacing:-0.245290px;}
.ls67{letter-spacing:-0.238075px;}
.ls8b{letter-spacing:-0.230861px;}
.ls65{letter-spacing:-0.223646px;}
.ls62{letter-spacing:-0.216432px;}
.ls83{letter-spacing:-0.209218px;}
.ls8e{letter-spacing:-0.202003px;}
.ls48{letter-spacing:-0.195350px;}
.ls7e{letter-spacing:-0.194789px;}
.ls75{letter-spacing:-0.180360px;}
.ls93{letter-spacing:-0.174960px;}
.ls7d{letter-spacing:-0.173146px;}
.ls51{letter-spacing:-0.165931px;}
.ls6b{letter-spacing:-0.158717px;}
.ls76{letter-spacing:-0.151502px;}
.ls58{letter-spacing:-0.144288px;}
.ls56{letter-spacing:-0.137074px;}
.ls6d{letter-spacing:-0.129859px;}
.ls47{letter-spacing:-0.126403px;}
.ls68{letter-spacing:-0.122645px;}
.ls77{letter-spacing:-0.115430px;}
.ls70{letter-spacing:-0.101002px;}
.ls7f{letter-spacing:-0.093787px;}
.ls50{letter-spacing:-0.086573px;}
.ls5e{letter-spacing:-0.079358px;}
.ls57{letter-spacing:-0.072144px;}
.ls74{letter-spacing:-0.064930px;}
.ls49{letter-spacing:-0.063202px;}
.ls66{letter-spacing:-0.057715px;}
.ls92{letter-spacing:-0.051840px;}
.ls5d{letter-spacing:-0.050501px;}
.ls72{letter-spacing:-0.043286px;}
.ls78{letter-spacing:-0.036072px;}
.ls54{letter-spacing:-0.028858px;}
.ls91{letter-spacing:-0.025920px;}
.ls60{letter-spacing:-0.021643px;}
.ls52{letter-spacing:-0.014429px;}
.ls4f{letter-spacing:-0.007214px;}
.ls0{letter-spacing:0.000000px;}
.lsb2{letter-spacing:0.000422px;}
.ls2{letter-spacing:0.000600px;}
.ls9f{letter-spacing:0.000705px;}
.lsa0{letter-spacing:0.001155px;}
.ls98{letter-spacing:0.001555px;}
.lsc{letter-spacing:0.001933px;}
.lsb{letter-spacing:0.001952px;}
.ls8{letter-spacing:0.002400px;}
.lsa6{letter-spacing:0.002544px;}
.ls9c{letter-spacing:0.002841px;}
.lsa7{letter-spacing:0.002868px;}
.ls99{letter-spacing:0.004090px;}
.ls7{letter-spacing:0.004200px;}
.ls3{letter-spacing:0.004766px;}
.lsb1{letter-spacing:0.005510px;}
.ls11{letter-spacing:0.005746px;}
.ls32{letter-spacing:0.007214px;}
.ls1f{letter-spacing:0.014429px;}
.ls26{letter-spacing:0.021643px;}
.ls18{letter-spacing:0.028858px;}
.ls20{letter-spacing:0.036072px;}
.ls2f{letter-spacing:0.043286px;}
.ls1e{letter-spacing:0.050501px;}
.ls1d{letter-spacing:0.057715px;}
.ls25{letter-spacing:0.064930px;}
.ls12{letter-spacing:0.068947px;}
.ls1b{letter-spacing:0.072144px;}
.ls3b{letter-spacing:0.079358px;}
.ls2b{letter-spacing:0.086573px;}
.ls1c{letter-spacing:0.093787px;}
.ls2a{letter-spacing:0.101002px;}
.ls15{letter-spacing:0.103421px;}
.ls1a{letter-spacing:0.108216px;}
.ls29{letter-spacing:0.115430px;}
.ls34{letter-spacing:0.117245px;}
.ls23{letter-spacing:0.122645px;}
.ls45{letter-spacing:0.129859px;}
.ls33{letter-spacing:0.137074px;}
.ls82{letter-spacing:0.144288px;}
.ls38{letter-spacing:0.151502px;}
.ls55{letter-spacing:0.158717px;}
.ls14{letter-spacing:0.160877px;}
.ls2e{letter-spacing:0.165931px;}
.ls4c{letter-spacing:0.172368px;}
.ls53{letter-spacing:0.173146px;}
.ls87{letter-spacing:0.180360px;}
.ls64{letter-spacing:0.194789px;}
.ls46{letter-spacing:0.213840px;}
.ls30{letter-spacing:0.216432px;}
.ls13{letter-spacing:0.218333px;}
.ls81{letter-spacing:0.223646px;}
.ls5b{letter-spacing:0.230861px;}
.ls10{letter-spacing:0.321754px;}
.ls4b{letter-spacing:0.413683px;}
.ls4a{letter-spacing:0.505613px;}
.ls19{letter-spacing:0.541080px;}
.ls39{letter-spacing:1.406808px;}
.ls36{letter-spacing:1.832458px;}
.ls37{letter-spacing:1.839672px;}
.ls35{letter-spacing:2.265322px;}
.ls44{letter-spacing:2.278066px;}
.ls40{letter-spacing:2.631269px;}
.ls28{letter-spacing:2.698186px;}
.ls5{letter-spacing:2.983200px;}
.ls6{letter-spacing:2.989200px;}
.ls27{letter-spacing:3.131050px;}
.ls3f{letter-spacing:3.563914px;}
.ls2d{letter-spacing:3.996778px;}
.ls2c{letter-spacing:4.429642px;}
.ls22{letter-spacing:4.862506px;}
.ls24{letter-spacing:5.288155px;}
.ls21{letter-spacing:5.295370px;}
.ls31{letter-spacing:5.721019px;}
.ls3a{letter-spacing:6.153883px;}
.ls41{letter-spacing:8.318203px;}
.ls3d{letter-spacing:8.751067px;}
.ls3c{letter-spacing:9.176717px;}
.ls3e{letter-spacing:9.183931px;}
.ls1{letter-spacing:10.461300px;}
.ls43{letter-spacing:10.908173px;}
.ls42{letter-spacing:11.341037px;}
.lse{letter-spacing:11.954850px;}
.lsaa{letter-spacing:13.111735px;}
.lsab{letter-spacing:13.203341px;}
.ls97{letter-spacing:13.210408px;}
.lsb3{letter-spacing:13.286826px;}
.lsa8{letter-spacing:13.291576px;}
.lsa4{letter-spacing:13.328287px;}
.ls9d{letter-spacing:13.448400px;}
.lsa9{letter-spacing:13.450903px;}
.lsa3{letter-spacing:13.454400px;}
.lsac{letter-spacing:13.517100px;}
.lsb5{letter-spacing:13.517367px;}
.ls9e{letter-spacing:13.535355px;}
.lsae{letter-spacing:13.638368px;}
.lsb0{letter-spacing:13.644816px;}
.lsb6{letter-spacing:13.718596px;}
.lsaf{letter-spacing:13.749177px;}
.lsa2{letter-spacing:13.873929px;}
.ls8f{letter-spacing:13.931006px;}
.ls9b{letter-spacing:14.118000px;}
.ls9a{letter-spacing:14.124000px;}
.ls17{letter-spacing:14.145667px;}
.ls95{letter-spacing:14.884124px;}
.ls96{letter-spacing:15.183002px;}
.lsf{letter-spacing:16.916495px;}
.lsad{letter-spacing:16.944518px;}
.lsb7{letter-spacing:17.656282px;}
.ls94{letter-spacing:17.934089px;}
.lsa1{letter-spacing:18.056282px;}
.lsa5{letter-spacing:18.826871px;}
.lsb4{letter-spacing:19.809224px;}
.ls4{letter-spacing:57.415200px;}
.lsa{letter-spacing:62.761200px;}
.lsd{letter-spacing:64.321654px;}
.ls9{letter-spacing:72.355200px;}
.ls16{letter-spacing:1837.620994px;}
.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;}
}
.ws88{word-spacing:-72.144000px;}
.ws72{word-spacing:-57.456000px;}
.wse{word-spacing:-14.943900px;}
.wse0{word-spacing:-13.449600px;}
.ws15{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws48{word-spacing:-3.048556px;}
.ws6c{word-spacing:-2.689902px;}
.ws2e{word-spacing:-2.570351px;}
.ws3e{word-spacing:-2.510575px;}
.ws52{word-spacing:-2.391024px;}
.ws25{word-spacing:-2.331248px;}
.wsfb{word-spacing:-2.151922px;}
.ws5a{word-spacing:-2.092146px;}
.ws126{word-spacing:-2.044339px;}
.wsf7{word-spacing:-2.032370px;}
.ws128{word-spacing:-1.990541px;}
.ws117{word-spacing:-1.972595px;}
.ws102{word-spacing:-1.960645px;}
.ws115{word-spacing:-1.912819px;}
.ws18{word-spacing:-1.882944px;}
.ws127{word-spacing:-1.829146px;}
.ws129{word-spacing:-1.775347px;}
.wsf5{word-spacing:-1.733492px;}
.ws4b{word-spacing:-1.673717px;}
.ws10b{word-spacing:-1.530259px;}
.wsdc{word-spacing:-1.494390px;}
.ws119{word-spacing:-1.434614px;}
.ws35{word-spacing:-1.374839px;}
.ws4d{word-spacing:-1.315063px;}
.ws12d{word-spacing:-1.291162px;}
.ws12b{word-spacing:-1.237363px;}
.ws41{word-spacing:-1.195512px;}
.ws4{word-spacing:-1.171598px;}
.ws101{word-spacing:-1.147694px;}
.ws124{word-spacing:-1.129766px;}
.ws113{word-spacing:-1.075961px;}
.ws6{word-spacing:-1.046070px;}
.ws3f{word-spacing:-0.956410px;}
.ws103{word-spacing:-0.908591px;}
.ws6b{word-spacing:-0.836858px;}
.ws5f{word-spacing:-0.777083px;}
.ws11c{word-spacing:-0.717307px;}
.wsf9{word-spacing:-0.597756px;}
.ws76{word-spacing:-0.563069px;}
.wsfa{word-spacing:-0.537980px;}
.ws4a{word-spacing:-0.478205px;}
.ws7a{word-spacing:-0.471139px;}
.ws46{word-spacing:-0.418429px;}
.ws147{word-spacing:-0.376589px;}
.ws33{word-spacing:-0.358654px;}
.ws132{word-spacing:-0.322790px;}
.ws92{word-spacing:-0.303005px;}
.ws29{word-spacing:-0.298878px;}
.wsc6{word-spacing:-0.295790px;}
.ws94{word-spacing:-0.288576px;}
.ws77{word-spacing:-0.275789px;}
.ws1c{word-spacing:-0.268992px;}
.ws9e{word-spacing:-0.266933px;}
.wscc{word-spacing:-0.252504px;}
.ws89{word-spacing:-0.245290px;}
.ws2c{word-spacing:-0.239102px;}
.wsa7{word-spacing:-0.238075px;}
.ws8d{word-spacing:-0.230861px;}
.ws7b{word-spacing:-0.229824px;}
.wsb8{word-spacing:-0.223646px;}
.wsc7{word-spacing:-0.216432px;}
.ws1f{word-spacing:-0.215194px;}
.wsad{word-spacing:-0.209218px;}
.wsd4{word-spacing:-0.202003px;}
.ws9f{word-spacing:-0.194789px;}
.wse4{word-spacing:-0.191282px;}
.ws84{word-spacing:-0.187574px;}
.wsa1{word-spacing:-0.180360px;}
.ws31{word-spacing:-0.179327px;}
.wsa3{word-spacing:-0.173146px;}
.ws81{word-spacing:-0.165931px;}
.ws1d{word-spacing:-0.161395px;}
.ws79{word-spacing:-0.160877px;}
.wsa6{word-spacing:-0.158717px;}
.wsc5{word-spacing:-0.151502px;}
.ws7e{word-spacing:-0.144288px;}
.wsf4{word-spacing:-0.143462px;}
.wsa2{word-spacing:-0.137074px;}
.ws8a{word-spacing:-0.129859px;}
.ws75{word-spacing:-0.126403px;}
.ws8c{word-spacing:-0.122645px;}
.ws26{word-spacing:-0.119551px;}
.ws86{word-spacing:-0.115430px;}
.ws9c{word-spacing:-0.108216px;}
.ws121{word-spacing:-0.107597px;}
.ws7c{word-spacing:-0.101002px;}
.wsff{word-spacing:-0.095641px;}
.ws87{word-spacing:-0.093787px;}
.ws9a{word-spacing:-0.086573px;}
.wsac{word-spacing:-0.079358px;}
.wsa4{word-spacing:-0.072144px;}
.ws80{word-spacing:-0.064930px;}
.wsd7{word-spacing:-0.064800px;}
.ws74{word-spacing:-0.063202px;}
.ws13{word-spacing:-0.059776px;}
.ws85{word-spacing:-0.057715px;}
.ws78{word-spacing:-0.057456px;}
.ws12a{word-spacing:-0.053798px;}
.ws98{word-spacing:-0.050501px;}
.ws16{word-spacing:-0.047821px;}
.ws8b{word-spacing:-0.043286px;}
.wsd6{word-spacing:-0.038880px;}
.wsbc{word-spacing:-0.036072px;}
.wsb5{word-spacing:-0.028858px;}
.ws154{word-spacing:-0.028205px;}
.ws15c{word-spacing:-0.027293px;}
.ws146{word-spacing:-0.026122px;}
.ws95{word-spacing:-0.021643px;}
.wsa5{word-spacing:-0.014429px;}
.wsd8{word-spacing:-0.012960px;}
.ws14f{word-spacing:-0.011731px;}
.ws130{word-spacing:-0.009302px;}
.ws15b{word-spacing:-0.007718px;}
.wsb7{word-spacing:-0.007214px;}
.ws133{word-spacing:-0.005971px;}
.wsf{word-spacing:-0.005417px;}
.ws14{word-spacing:-0.005075px;}
.ws151{word-spacing:-0.004042px;}
.ws163{word-spacing:-0.003466px;}
.ws158{word-spacing:-0.003302px;}
.ws14c{word-spacing:-0.003216px;}
.ws10{word-spacing:-0.000367px;}
.ws0{word-spacing:0.000000px;}
.ws144{word-spacing:0.000547px;}
.ws14d{word-spacing:0.001181px;}
.ws73{word-spacing:0.005746px;}
.ws96{word-spacing:0.007214px;}
.ws82{word-spacing:0.014429px;}
.wsc3{word-spacing:0.021643px;}
.wsb3{word-spacing:0.028858px;}
.wsbb{word-spacing:0.043286px;}
.ws10a{word-spacing:0.047821px;}
.wsa9{word-spacing:0.050501px;}
.ws1a{word-spacing:0.053798px;}
.wsb0{word-spacing:0.057715px;}
.ws2d{word-spacing:0.059776px;}
.ws8e{word-spacing:0.064930px;}
.ws70{word-spacing:0.068947px;}
.ws8f{word-spacing:0.072144px;}
.wsba{word-spacing:0.079358px;}
.wsae{word-spacing:0.086573px;}
.ws83{word-spacing:0.093787px;}
.wsf0{word-spacing:0.095641px;}
.wsc1{word-spacing:0.101002px;}
.wse2{word-spacing:0.107597px;}
.wsb9{word-spacing:0.108216px;}
.wsd9{word-spacing:0.110160px;}
.ws32{word-spacing:0.119551px;}
.wsc2{word-spacing:0.122645px;}
.wsd3{word-spacing:0.129859px;}
.wsc8{word-spacing:0.137074px;}
.ws71{word-spacing:0.137894px;}
.wsf1{word-spacing:0.143462px;}
.ws9b{word-spacing:0.144288px;}
.wsa0{word-spacing:0.151502px;}
.wsd0{word-spacing:0.158717px;}
.ws1e{word-spacing:0.161395px;}
.wsa8{word-spacing:0.165931px;}
.ws7d{word-spacing:0.173146px;}
.ws2b{word-spacing:0.179327px;}
.ws90{word-spacing:0.180360px;}
.ws97{word-spacing:0.187574px;}
.wsbd{word-spacing:0.194789px;}
.wsce{word-spacing:0.202003px;}
.wsaa{word-spacing:0.209218px;}
.ws13a{word-spacing:0.215194px;}
.ws93{word-spacing:0.223646px;}
.wsc4{word-spacing:0.230861px;}
.ws27{word-spacing:0.239102px;}
.wsb1{word-spacing:0.245290px;}
.wsd1{word-spacing:0.252504px;}
.wsb2{word-spacing:0.266933px;}
.ws13b{word-spacing:0.268992px;}
.ws9d{word-spacing:0.274147px;}
.wsaf{word-spacing:0.288576px;}
.wsc9{word-spacing:0.295790px;}
.ws38{word-spacing:0.298878px;}
.wsd5{word-spacing:0.310219px;}
.ws21{word-spacing:0.322790px;}
.wscd{word-spacing:0.324648px;}
.wsc0{word-spacing:0.331862px;}
.wsb4{word-spacing:0.339077px;}
.ws34{word-spacing:0.358654px;}
.wsbf{word-spacing:0.360720px;}
.wscb{word-spacing:0.367934px;}
.ws140{word-spacing:0.376589px;}
.wsbe{word-spacing:0.389578px;}
.wsca{word-spacing:0.411221px;}
.ws44{word-spacing:0.418429px;}
.ws13c{word-spacing:0.430387px;}
.ws99{word-spacing:0.432864px;}
.wsab{word-spacing:0.447293px;}
.ws91{word-spacing:0.468936px;}
.wsd2{word-spacing:0.476150px;}
.wsdd{word-spacing:0.478205px;}
.wscf{word-spacing:0.483365px;}
.wsb6{word-spacing:0.526651px;}
.ws60{word-spacing:0.537980px;}
.ws7f{word-spacing:0.548294px;}
.wse3{word-spacing:0.573847px;}
.ws58{word-spacing:0.597756px;}
.ws13e{word-spacing:0.645581px;}
.ws47{word-spacing:0.657532px;}
.ws120{word-spacing:0.717307px;}
.ws20{word-spacing:0.753178px;}
.ws116{word-spacing:0.777083px;}
.ws1b{word-spacing:0.806976px;}
.ws11f{word-spacing:0.836858px;}
.ws30{word-spacing:0.896634px;}
.ws19{word-spacing:0.914573px;}
.ws65{word-spacing:0.956410px;}
.ws5{word-spacing:1.004227px;}
.ws66{word-spacing:1.016185px;}
.ws4c{word-spacing:1.075961px;}
.ws112{word-spacing:1.135736px;}
.ws11d{word-spacing:1.255288px;}
.ws11b{word-spacing:1.315063px;}
.ws42{word-spacing:1.374839px;}
.wse5{word-spacing:1.386797px;}
.wse7{word-spacing:1.434614px;}
.ws68{word-spacing:1.613941px;}
.ws13f{word-spacing:1.667750px;}
.wseb{word-spacing:1.673717px;}
.wsf8{word-spacing:1.733492px;}
.ws100{word-spacing:1.769362px;}
.wse6{word-spacing:1.793268px;}
.ws45{word-spacing:1.853044px;}
.ws11a{word-spacing:1.912819px;}
.wsf3{word-spacing:1.912824px;}
.ws6f{word-spacing:1.972595px;}
.ws3c{word-spacing:2.032370px;}
.ws122{word-spacing:2.205734px;}
.wse8{word-spacing:2.211697px;}
.ws3b{word-spacing:2.271473px;}
.ws54{word-spacing:2.331248px;}
.ws156{word-spacing:2.367130px;}
.ws5e{word-spacing:2.391024px;}
.ws39{word-spacing:2.450800px;}
.ws138{word-spacing:2.474726px;}
.ws2{word-spacing:2.510568px;}
.ws3a{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws10e{word-spacing:2.689902px;}
.ws150{word-spacing:2.743718px;}
.ws5d{word-spacing:2.749678px;}
.wsf2{word-spacing:2.821415px;}
.wsea{word-spacing:2.869229px;}
.ws17{word-spacing:2.869236px;}
.ws148{word-spacing:2.905114px;}
.ws159{word-spacing:3.012710px;}
.ws15e{word-spacing:3.066509px;}
.wsda{word-spacing:3.108331px;}
.ws10d{word-spacing:3.168107px;}
.ws14e{word-spacing:3.174106px;}
.ws22{word-spacing:3.219667px;}
.ws15f{word-spacing:3.219734px;}
.ws157{word-spacing:3.220339px;}
.ws14b{word-spacing:3.221539px;}
.ws149{word-spacing:3.221837px;}
.ws155{word-spacing:3.222163px;}
.ws13d{word-spacing:3.222528px;}
.ws153{word-spacing:3.224045px;}
.ws15d{word-spacing:3.224554px;}
.ws14a{word-spacing:3.224698px;}
.ws51{word-spacing:3.227882px;}
.ws12c{word-spacing:3.227904px;}
.ws15a{word-spacing:3.281702px;}
.ws137{word-spacing:3.335501px;}
.ws110{word-spacing:3.347434px;}
.ws12e{word-spacing:3.389299px;}
.ws36{word-spacing:3.407209px;}
.ws56{word-spacing:3.466985px;}
.ws152{word-spacing:3.496896px;}
.wsde{word-spacing:3.526760px;}
.ws125{word-spacing:3.550694px;}
.ws23{word-spacing:3.586536px;}
.ws134{word-spacing:3.604493px;}
.ws37{word-spacing:3.646312px;}
.ws6a{word-spacing:3.706087px;}
.ws2a{word-spacing:3.765863px;}
.ws67{word-spacing:3.825638px;}
.ws28{word-spacing:3.945190px;}
.ws145{word-spacing:3.981082px;}
.ws64{word-spacing:4.064741px;}
.ws139{word-spacing:4.088678px;}
.ws5c{word-spacing:4.124516px;}
.ws5b{word-spacing:4.184292px;}
.ws131{word-spacing:4.196275px;}
.ws2f{word-spacing:4.244068px;}
.ws141{word-spacing:4.250074px;}
.ws50{word-spacing:4.303843px;}
.ws3d{word-spacing:4.363619px;}
.wsdb{word-spacing:4.423394px;}
.ws43{word-spacing:4.483170px;}
.wsf6{word-spacing:4.602721px;}
.ws136{word-spacing:4.626662px;}
.ws114{word-spacing:4.662497px;}
.wsc{word-spacing:4.770079px;}
.ws10c{word-spacing:4.782048px;}
.wsd{word-spacing:4.853765px;}
.ws24{word-spacing:4.901599px;}
.ws160{word-spacing:5.003251px;}
.ws161{word-spacing:5.057050px;}
.ws69{word-spacing:5.140702px;}
.ws40{word-spacing:5.320028px;}
.ws143{word-spacing:5.379840px;}
.ws123{word-spacing:5.433638px;}
.wse9{word-spacing:5.499355px;}
.ws6d{word-spacing:5.559131px;}
.ws4f{word-spacing:5.798233px;}
.ws61{word-spacing:5.977560px;}
.wsdf{word-spacing:6.037336px;}
.ws4e{word-spacing:6.276438px;}
.ws55{word-spacing:6.336214px;}
.ws162{word-spacing:6.348211px;}
.ws12f{word-spacing:6.455808px;}
.ws62{word-spacing:6.635092px;}
.ws118{word-spacing:6.694867px;}
.ws111{word-spacing:6.814418px;}
.ws59{word-spacing:7.053521px;}
.wsa{word-spacing:7.782761px;}
.ws49{word-spacing:7.830604px;}
.ws63{word-spacing:8.249033px;}
.ws6e{word-spacing:8.428360px;}
.ws53{word-spacing:8.488135px;}
.ws11e{word-spacing:8.966340px;}
.ws10f{word-spacing:10.221628px;}
.ws8{word-spacing:12.176255px;}
.ws57{word-spacing:14.465695px;}
.ws135{word-spacing:14.579366px;}
.ws9{word-spacing:16.109478px;}
.ws142{word-spacing:16.408512px;}
.wsb{word-spacing:26.109907px;}
.ws7{word-spacing:26.840252px;}
.ws12{word-spacing:39.485734px;}
.wsfc{word-spacing:68.766023px;}
.wsfe{word-spacing:88.707213px;}
.wsfd{word-spacing:101.926017px;}
.wsec{word-spacing:125.296474px;}
.ws107{word-spacing:136.809331px;}
.ws108{word-spacing:143.265139px;}
.ws109{word-spacing:148.537382px;}
.ws105{word-spacing:149.828544px;}
.wsef{word-spacing:180.655027px;}
.ws104{word-spacing:183.577200px;}
.wsed{word-spacing:239.456678px;}
.wsee{word-spacing:267.055258px;}
.ws106{word-spacing:301.593830px;}
.wse1{word-spacing:1035.465542px;}
._8{margin-left:-11.943245px;}
._16{margin-left:-7.486183px;}
._10{margin-left:-6.469998px;}
._b{margin-left:-5.308087px;}
._0{margin-left:-3.765852px;}
._3{margin-left:-2.301354px;}
._7{margin-left:-1.241054px;}
._21{width:1.197390px;}
._5{width:2.301354px;}
._a{width:3.677615px;}
._1e{width:4.708039px;}
._2{width:10.460700px;}
._12{width:11.955150px;}
._1{width:12.971268px;}
._c{width:14.816738px;}
._e{width:16.031923px;}
._f{width:17.293153px;}
._d{width:19.098432px;}
._1f{width:20.098835px;}
._11{width:21.100787px;}
._1b{width:22.447159px;}
._1d{width:23.475252px;}
._18{width:24.507996px;}
._4{width:25.944936px;}
._5c{width:27.422767px;}
._5a{width:29.154710px;}
._6{width:30.587087px;}
._15{width:31.740844px;}
._9{width:33.355008px;}
._17{width:35.088277px;}
._1c{width:36.283789px;}
._1a{width:37.718404px;}
._5b{width:39.541553px;}
._19{width:41.575351px;}
._20{width:44.413271px;}
._5e{width:61.868160px;}
._5d{width:88.767360px;}
._43{width:91.385167px;}
._45{width:106.700363px;}
._53{width:114.099952px;}
._54{width:120.747015px;}
._50{width:125.385613px;}
._51{width:126.533308px;}
._3f{width:134.549798px;}
._4e{width:136.240889px;}
._44{width:140.651120px;}
._3c{width:142.978192px;}
._3a{width:147.031027px;}
._52{width:151.017455px;}
._4c{width:152.972089px;}
._4d{width:157.987287px;}
._4f{width:160.432103px;}
._46{width:163.582297px;}
._47{width:165.459276px;}
._4b{width:170.229361px;}
._40{width:172.477670px;}
._4a{width:175.119037px;}
._57{width:190.661530px;}
._3d{width:194.104627px;}
._56{width:199.089923px;}
._55{width:203.142758px;}
._58{width:205.133299px;}
._49{width:207.493583px;}
._48{width:230.304010px;}
._2d{width:247.460663px;}
._39{width:274.224635px;}
._41{width:280.504858px;}
._13{width:377.710206px;}
._2e{width:410.977867px;}
._2f{width:428.773212px;}
._30{width:438.596830px;}
._2a{width:451.517994px;}
._28{width:477.138010px;}
._3e{width:487.682496px;}
._42{width:530.521736px;}
._33{width:545.408179px;}
._26{width:552.981776px;}
._29{width:580.915123px;}
._38{width:628.849498px;}
._32{width:657.093658px;}
._24{width:671.176074px;}
._25{width:675.761702px;}
._35{width:677.268058px;}
._2b{width:745.323034px;}
._37{width:764.367667px;}
._31{width:777.738422px;}
._34{width:779.173946px;}
._3b{width:802.833523px;}
._22{width:891.278093px;}
._36{width:970.576934px;}
._27{width:1001.302138px;}
._2c{width:1005.169306px;}
._23{width:1033.373857px;}
._59{width:1944.287210px;}
._14{width:1968.197210px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fs7{font-size:38.962980px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:44.529120px;}
.fsb{font-size:45.429600px;}
.fsd{font-size:47.820600px;}
.fse{font-size:53.798400px;}
.fs6{font-size:55.661400px;}
.fs12{font-size:56.058000px;}
.fsf{font-size:57.456000px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs11{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:107.596800px;}
.yfc{bottom:-71.288460px;}
.yfb{bottom:-27.116460px;}
.yfa{bottom:-0.115384px;}
.y0{bottom:0.000000px;}
.y3f{bottom:12.664592px;}
.y3e{bottom:26.023328px;}
.y6d{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y23b{bottom:104.503500px;}
.y3c{bottom:104.646000px;}
.y162{bottom:107.479500px;}
.ya4{bottom:107.641500px;}
.y6c{bottom:113.740500px;}
.yfe{bottom:116.115000px;}
.y205{bottom:121.047000px;}
.y23a{bottom:121.762500px;}
.y3b{bottom:122.535000px;}
.y161{bottom:126.309000px;}
.ya3{bottom:126.471000px;}
.y12e{bottom:132.535500px;}
.y6b{bottom:132.570000px;}
.y1c7{bottom:136.945500px;}
.y203{bottom:138.306000px;}
.y204{bottom:138.307500px;}
.y239{bottom:139.023000px;}
.y23{bottom:139.264499px;}
.y3a{bottom:140.422500px;}
.y1d3{bottom:143.506500px;}
.yce{bottom:144.852000px;}
.y160{bottom:145.138500px;}
.ya2{bottom:145.300500px;}
.yfd{bottom:149.682000px;}
.y1c5{bottom:151.143000px;}
.y6a{bottom:151.399500px;}
.y1c6{bottom:155.482500px;}
.y202{bottom:155.566500px;}
.y12d{bottom:156.177000px;}
.y238{bottom:156.283500px;}
.y39{bottom:158.310000px;}
.y1d2{bottom:162.336000px;}
.ycd{bottom:163.681500px;}
.y15f{bottom:163.966500px;}
.ya1{bottom:164.130000px;}
.y1c3{bottom:165.339000px;}
.y1c4{bottom:169.678500px;}
.y69{bottom:170.229000px;}
.ycf{bottom:172.110000px;}
.y12c{bottom:172.615500px;}
.y201{bottom:172.827000px;}
.y237{bottom:173.544000px;}
.y38{bottom:176.199000px;}
.y1c2{bottom:179.536500px;}
.y1d1{bottom:181.165500px;}
.ycc{bottom:182.511000px;}
.y15e{bottom:182.796000px;}
.ya0{bottom:182.959500px;}
.y68{bottom:189.058500px;}
.y200{bottom:190.087500px;}
.y236{bottom:190.804500px;}
.y1c1{bottom:193.732500px;}
.y37{bottom:194.086500px;}
.y127{bottom:195.483000px;}
.y12b{bottom:196.255500px;}
.y1a{bottom:196.933500px;}
.y1d0{bottom:199.995000px;}
.ycb{bottom:201.340500px;}
.y15d{bottom:201.625500px;}
.y9f{bottom:201.789000px;}
.y1ff{bottom:207.348000px;}
.y67{bottom:207.888000px;}
.y1bf{bottom:207.930000px;}
.y235{bottom:208.065000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y126{bottom:211.921500px;}
.y36{bottom:211.974000px;}
.y1c0{bottom:212.269500px;}
.y1cf{bottom:218.824500px;}
.y12a{bottom:219.897000px;}
.yca{bottom:220.170000px;}
.y15c{bottom:220.455000px;}
.y9e{bottom:220.618500px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1fe{bottom:224.608500px;}
.y190{bottom:225.015000px;}
.y234{bottom:225.325500px;}
.y66{bottom:226.717500px;}
.y1be{bottom:228.906000px;}
.y35{bottom:229.863000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1ce{bottom:237.654000px;}
.yc9{bottom:238.999500px;}
.y15b{bottom:239.284500px;}
.y9d{bottom:239.446500px;}
.yf9{bottom:239.860811px;}
.y233{bottom:242.586000px;}
.y129{bottom:243.537000px;}
.y18f{bottom:243.844500px;}
.y65{bottom:245.547000px;}
.y1fd{bottom:246.352500px;}
.y1bd{bottom:252.546000px;}
.y1cd{bottom:256.483500px;}
.yc8{bottom:257.829000px;}
.y15a{bottom:258.114000px;}
.y9c{bottom:258.276000px;}
.y232{bottom:259.846500px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y18e{bottom:262.674000px;}
.yf8{bottom:262.972141px;}
.y64{bottom:264.376500px;}
.y128{bottom:267.178500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1cc{bottom:275.313000px;}
.y1bc{bottom:276.187500px;}
.yc7{bottom:276.658500px;}
.y159{bottom:276.943500px;}
.y9b{bottom:277.105500px;}
.y1fc{bottom:279.976500px;}
.y18d{bottom:281.503500px;}
.y63{bottom:283.206000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yf7{bottom:286.083472px;}
.y125{bottom:290.818500px;}
.y1cb{bottom:294.142500px;}
.y231{bottom:294.366000px;}
.yc6{bottom:295.488000px;}
.y158{bottom:295.773000px;}
.y9a{bottom:295.935000px;}
.y1bb{bottom:299.827500px;}
.y34{bottom:300.154500px;}
.y18c{bottom:300.333000px;}
.y62{bottom:302.035500px;}
.y1fb{bottom:306.516000px;}
.yf6{bottom:309.088390px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y230{bottom:311.626500px;}
.y1ca{bottom:312.972000px;}
.yc5{bottom:314.317500px;}
.y124{bottom:314.460000px;}
.y157{bottom:314.602500px;}
.y99{bottom:314.764500px;}
.y1ba{bottom:316.266000px;}
.y33{bottom:318.043500px;}
.y1b8{bottom:318.703500px;}
.y18b{bottom:319.162500px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1fa{bottom:324.090000px;}
.y61{bottom:325.347000px;}
.y22f{bottom:328.887000px;}
.yf5{bottom:332.200847px;}
.yc4{bottom:333.145500px;}
.y98{bottom:333.594000px;}
.y32{bottom:335.931000px;}
.y1c9{bottom:336.285000px;}
.y156{bottom:337.915500px;}
.y18a{bottom:337.992000px;}
.y123{bottom:338.100000px;}
.y1b9{bottom:340.296000px;}
.y1f9{bottom:341.664000px;}
.y22e{bottom:346.147500px;}
.y11{bottom:348.133500px;}
.yc3{bottom:351.975000px;}
.y97{bottom:352.423500px;}
.y31{bottom:353.818500px;}
.yf4{bottom:355.203961px;}
.y1c8{bottom:356.458500px;}
.y189{bottom:356.821500px;}
.y1f8{bottom:359.239500px;}
.y122{bottom:361.741500px;}
.y22d{bottom:363.408000px;}
.y11c{bottom:368.235000px;}
.yc2{bottom:370.804500px;}
.y96{bottom:371.253000px;}
.y155{bottom:371.539500px;}
.y1b7{bottom:371.916000px;}
.y188{bottom:375.651000px;}
.y121{bottom:378.178500px;}
.yf3{bottom:378.315292px;}
.y22c{bottom:380.668500px;}
.y30{bottom:380.673000px;}
.y11b{bottom:384.673500px;}
.y1f7{bottom:385.779000px;}
.y10{bottom:386.785499px;}
.yc1{bottom:389.634000px;}
.y95{bottom:390.082500px;}
.y154{bottom:390.369000px;}
.y187{bottom:394.480500px;}
.y22b{bottom:397.929000px;}
.y2f{bottom:398.562000px;}
.y60{bottom:400.497000px;}
.yf2{bottom:401.426622px;}
.y120{bottom:401.820000px;}
.yf{bottom:408.044999px;}
.y1b6{bottom:408.177000px;}
.yc0{bottom:408.463500px;}
.y94{bottom:408.912000px;}
.y153{bottom:409.198500px;}
.y1f6{bottom:412.320000px;}
.y186{bottom:413.310000px;}
.y22a{bottom:415.188000px;}
.y2e{bottom:416.449500px;}
.y1b5{bottom:422.374500px;}
.yf1{bottom:424.434434px;}
.y11f{bottom:425.460000px;}
.ybf{bottom:427.293000px;}
.y93{bottom:427.741500px;}
.y152{bottom:428.028000px;}
.y185{bottom:432.139500px;}
.y229{bottom:432.448500px;}
.y1b4{bottom:436.570500px;}
.y5f{bottom:437.887500px;}
.y1f5{bottom:438.861000px;}
.y2d{bottom:443.304000px;}
.ybe{bottom:446.122500px;}
.y92{bottom:446.571000px;}
.y151{bottom:446.857500px;}
.yf0{bottom:447.545765px;}
.y11e{bottom:449.101500px;}
.y228{bottom:449.709000px;}
.y1b3{bottom:450.768000px;}
.y184{bottom:450.969000px;}
.y1f4{bottom:456.435000px;}
.y5e{bottom:457.344000px;}
.y2c{bottom:461.191500px;}
.ybd{bottom:464.952000px;}
.y1b2{bottom:464.964000px;}
.y91{bottom:465.400500px;}
.y11d{bottom:465.540000px;}
.y150{bottom:465.687000px;}
.y227{bottom:466.969500px;}
.y183{bottom:469.798500px;}
.yef{bottom:470.548879px;}
.y5d{bottom:476.802000px;}
.y2b{bottom:479.079000px;}
.y1b1{bottom:479.161500px;}
.y1f3{bottom:482.974500px;}
.ybc{bottom:483.781500px;}
.y90{bottom:484.230000px;}
.y14f{bottom:484.516500px;}
.ye{bottom:484.864502px;}
.y182{bottom:488.628000px;}
.y11a{bottom:489.180000px;}
.y1b0{bottom:493.357500px;}
.yee{bottom:493.660210px;}
.y5c{bottom:496.258500px;}
.y2a{bottom:496.968000px;}
.y1f2{bottom:500.548500px;}
.y226{bottom:501.490500px;}
.ybb{bottom:502.611000px;}
.yd{bottom:502.864502px;}
.y8f{bottom:503.059500px;}
.y14e{bottom:503.346000px;}
.y181{bottom:507.456000px;}
.y1ae{bottom:507.555000px;}
.y1af{bottom:511.894500px;}
.y29{bottom:514.855500px;}
.y5b{bottom:515.715000px;}
.yed{bottom:516.775320px;}
.y1f1{bottom:518.122500px;}
.y225{bottom:518.751000px;}
.yc{bottom:520.864502px;}
.yba{bottom:521.440500px;}
.y8e{bottom:521.889000px;}
.y14d{bottom:522.175500px;}
.y119{bottom:523.789500px;}
.y180{bottom:526.285500px;}
.y1ad{bottom:527.857500px;}
.y28{bottom:532.743000px;}
.y5a{bottom:535.173000px;}
.y224{bottom:536.011500px;}
.yb{bottom:538.864499px;}
.yec{bottom:539.778434px;}
.yb9{bottom:540.270000px;}
.y8d{bottom:540.718500px;}
.y14c{bottom:541.005000px;}
.y1f0{bottom:544.663500px;}
.y17f{bottom:545.115000px;}
.y1ac{bottom:549.256500px;}
.y27{bottom:550.632000px;}
.y223{bottom:553.272000px;}
.y59{bottom:554.629500px;}
.ya{bottom:556.864499px;}
.yb8{bottom:559.099500px;}
.y8c{bottom:559.548000px;}
.y14b{bottom:559.834500px;}
.y118{bottom:560.893500px;}
.y1ef{bottom:562.237500px;}
.yeb{bottom:562.889765px;}
.y17e{bottom:563.944500px;}
.y26{bottom:568.519500px;}
.y222{bottom:570.531000px;}
.y1ab{bottom:570.657000px;}
.y58{bottom:574.087500px;}
.yb7{bottom:577.929000px;}
.y8b{bottom:578.377500px;}
.y14a{bottom:578.664000px;}
.y117{bottom:579.723000px;}
.y1ee{bottom:579.811500px;}
.y17d{bottom:582.774000px;}
.yea{bottom:586.001095px;}
.y25{bottom:586.407000px;}
.y221{bottom:587.791500px;}
.y1aa{bottom:592.056000px;}
.y57{bottom:593.544000px;}
.yb6{bottom:596.758500px;}
.y8a{bottom:597.207000px;}
.y1ed{bottom:597.385500px;}
.y149{bottom:597.492000px;}
.y116{bottom:598.552500px;}
.y17c{bottom:601.603500px;}
.y24{bottom:604.296000px;}
.y220{bottom:605.052000px;}
.ye9{bottom:609.004210px;}
.y56{bottom:613.000500px;}
.y1a9{bottom:613.455000px;}
.y1ec{bottom:614.961000px;}
.yb5{bottom:615.588000px;}
.y89{bottom:616.036500px;}
.y148{bottom:616.321500px;}
.y115{bottom:617.382000px;}
.y17b{bottom:620.433000px;}
.y21f{bottom:622.312500px;}
.ye8{bottom:632.115043px;}
.y55{bottom:632.458500px;}
.y1eb{bottom:632.535000px;}
.yb4{bottom:634.417500px;}
.y1a8{bottom:634.854000px;}
.y88{bottom:634.866000px;}
.y147{bottom:635.151000px;}
.y114{bottom:636.210000px;}
.y17a{bottom:639.262500px;}
.y21e{bottom:639.573000px;}
.y9{bottom:645.510000px;}
.y54{bottom:651.915000px;}
.yb3{bottom:653.247000px;}
.y87{bottom:653.695500px;}
.y146{bottom:653.980500px;}
.y113{bottom:655.039500px;}
.ye7{bottom:655.119961px;}
.y1a7{bottom:656.253000px;}
.y21d{bottom:656.833500px;}
.y179{bottom:658.092000px;}
.y8{bottom:666.771000px;}
.y1ea{bottom:668.041500px;}
.y53{bottom:671.371500px;}
.yb2{bottom:672.076500px;}
.y86{bottom:672.525000px;}
.y145{bottom:672.810000px;}
.y112{bottom:673.869000px;}
.y21c{bottom:674.094000px;}
.y178{bottom:676.921500px;}
.y1a6{bottom:677.652000px;}
.ye6{bottom:678.231292px;}
.y1e9{bottom:686.871000px;}
.yb1{bottom:690.906000px;}
.y85{bottom:691.354500px;}
.y144{bottom:691.639500px;}
.y111{bottom:692.698500px;}
.y177{bottom:695.751000px;}
.y1a5{bottom:699.051000px;}
.ye5{bottom:701.342622px;}
.y1e8{bottom:705.700500px;}
.y21b{bottom:708.613500px;}
.yb0{bottom:709.735500px;}
.y52{bottom:709.957500px;}
.y84{bottom:710.184000px;}
.y110{bottom:711.528000px;}
.y176{bottom:714.580500px;}
.y1a4{bottom:720.450000px;}
.ye4{bottom:724.350434px;}
.y1e7{bottom:724.530000px;}
.y21a{bottom:725.874000px;}
.y51{bottom:726.097500px;}
.y7{bottom:726.298500px;}
.yaf{bottom:728.565000px;}
.y83{bottom:729.013500px;}
.y10f{bottom:730.357500px;}
.y143{bottom:731.773500px;}
.y175{bottom:733.410000px;}
.y1a3{bottom:741.849000px;}
.y219{bottom:743.134500px;}
.y1e6{bottom:743.359500px;}
.y142{bottom:745.969500px;}
.y50{bottom:746.577000px;}
.yae{bottom:747.394500px;}
.ye3{bottom:747.461765px;}
.y82{bottom:747.843000px;}
.y10e{bottom:749.187000px;}
.y174{bottom:752.239500px;}
.y3{bottom:752.599495px;}
.y4f{bottom:758.376000px;}
.y141{bottom:760.167000px;}
.y218{bottom:760.395000px;}
.y1e5{bottom:762.189000px;}
.y1a2{bottom:763.248000px;}
.yad{bottom:766.224000px;}
.y81{bottom:766.671000px;}
.y10d{bottom:768.016500px;}
.ye2{bottom:770.464879px;}
.y173{bottom:771.069000px;}
.y140{bottom:774.363000px;}
.y217{bottom:777.655500px;}
.y4e{bottom:778.855500px;}
.y1e4{bottom:781.018500px;}
.y1a1{bottom:784.647000px;}
.yac{bottom:785.053500px;}
.y80{bottom:785.500500px;}
.y10c{bottom:786.846000px;}
.y13f{bottom:788.560500px;}
.y172{bottom:789.898500px;}
.y4d{bottom:790.656000px;}
.ye1{bottom:793.576210px;}
.y216{bottom:794.916000px;}
.y1e3{bottom:799.848000px;}
.yab{bottom:803.883000px;}
.y7f{bottom:804.330000px;}
.y10b{bottom:805.675500px;}
.y1a0{bottom:806.046000px;}
.y171{bottom:808.728000px;}
.y13e{bottom:810.393000px;}
.y4c{bottom:811.134000px;}
.y215{bottom:812.176500px;}
.ye0{bottom:816.689516px;}
.y1e2{bottom:818.677500px;}
.yaa{bottom:822.712500px;}
.y4b{bottom:822.934500px;}
.y7e{bottom:823.159500px;}
.y10a{bottom:824.505000px;}
.y19f{bottom:827.445000px;}
.y214{bottom:829.437000px;}
.y13d{bottom:834.033000px;}
.y1e1{bottom:837.507000px;}
.ydf{bottom:839.694434px;}
.ya9{bottom:841.540500px;}
.y7d{bottom:841.989000px;}
.y109{bottom:843.334500px;}
.y4a{bottom:843.414000px;}
.y213{bottom:846.697500px;}
.y19e{bottom:848.844000px;}
.y170{bottom:848.862000px;}
.y49{bottom:855.213000px;}
.y1e0{bottom:856.335000px;}
.y13c{bottom:857.674500px;}
.ya8{bottom:860.370000px;}
.y7c{bottom:860.818500px;}
.y108{bottom:862.164000px;}
.yde{bottom:862.805765px;}
.y16f{bottom:863.058000px;}
.y212{bottom:863.956500px;}
.y19d{bottom:870.243000px;}
.y1df{bottom:875.164500px;}
.y48{bottom:875.692500px;}
.y16e{bottom:877.255500px;}
.ya7{bottom:879.199500px;}
.y2{bottom:879.369000px;}
.y7b{bottom:879.648000px;}
.y107{bottom:880.993500px;}
.y211{bottom:881.217000px;}
.y13b{bottom:881.314500px;}
.ydd{bottom:885.808879px;}
.y47{bottom:887.493000px;}
.y16d{bottom:891.451500px;}
.y19c{bottom:891.643500px;}
.y1de{bottom:893.994000px;}
.ya6{bottom:898.029000px;}
.y7a{bottom:898.477500px;}
.y106{bottom:899.823000px;}
.y13a{bottom:904.956000px;}
.y16c{bottom:905.649000px;}
.y46{bottom:907.972500px;}
.ydc{bottom:908.920210px;}
.y1dd{bottom:912.823500px;}
.y19b{bottom:913.042500px;}
.y210{bottom:915.738000px;}
.y79{bottom:917.307000px;}
.y105{bottom:918.652500px;}
.y16a{bottom:919.845000px;}
.ya5{bottom:921.342000px;}
.y139{bottom:921.394500px;}
.y16b{bottom:924.184500px;}
.y132{bottom:926.124000px;}
.y1dc{bottom:931.653000px;}
.ydb{bottom:932.035320px;}
.y20f{bottom:932.998500px;}
.y19a{bottom:934.441500px;}
.y78{bottom:936.136500px;}
.y104{bottom:937.482000px;}
.y169{bottom:940.821000px;}
.y131{bottom:942.562500px;}
.y138{bottom:945.034500px;}
.y20e{bottom:950.259000px;}
.y1db{bottom:950.482500px;}
.y45{bottom:952.648500px;}
.y77{bottom:954.966000px;}
.yda{bottom:955.038434px;}
.y199{bottom:955.840500px;}
.y103{bottom:956.311500px;}
.y168{bottom:964.462500px;}
.y1{bottom:966.726000px;}
.y20d{bottom:967.519500px;}
.y137{bottom:968.676000px;}
.y1da{bottom:969.312000px;}
.y44{bottom:971.478000px;}
.y76{bottom:973.795500px;}
.y102{bottom:975.141000px;}
.y198{bottom:977.239500px;}
.yd9{bottom:978.149765px;}
.y20c{bottom:984.780000px;}
.y167{bottom:988.102500px;}
.y1d9{bottom:988.141500px;}
.y136{bottom:992.316000px;}
.y75{bottom:992.625000px;}
.y101{bottom:998.454000px;}
.y196{bottom:998.638500px;}
.yd8{bottom:1001.261095px;}
.y23c{bottom:1002.039000px;}
.y20b{bottom:1002.040500px;}
.y195{bottom:1005.736500px;}
.y1d8{bottom:1006.971000px;}
.y43{bottom:1008.240000px;}
.y135{bottom:1008.754500px;}
.y74{bottom:1011.454500px;}
.y166{bottom:1011.744000px;}
.y197{bottom:1012.834500px;}
.y20a{bottom:1019.299500px;}
.yd7{bottom:1024.264210px;}
.y1d7{bottom:1025.800500px;}
.y73{bottom:1030.284000px;}
.y100{bottom:1032.078000px;}
.y134{bottom:1032.396000px;}
.y194{bottom:1034.233500px;}
.y165{bottom:1035.384000px;}
.y42{bottom:1036.485000px;}
.y209{bottom:1036.560000px;}
.y192{bottom:1042.791000px;}
.y1d6{bottom:1044.630000px;}
.yd6{bottom:1047.376847px;}
.y133{bottom:1048.833000px;}
.y72{bottom:1049.113500px;}
.y164{bottom:1051.822500px;}
.y208{bottom:1053.820500px;}
.y193{bottom:1055.634000px;}
.y1d5{bottom:1063.459500px;}
.y41{bottom:1064.728500px;}
.y71{bottom:1067.943000px;}
.yff{bottom:1068.840000px;}
.yd5{bottom:1070.379961px;}
.y207{bottom:1071.081000px;}
.y130{bottom:1072.474500px;}
.y163{bottom:1075.462500px;}
.y191{bottom:1077.033000px;}
.y1d4{bottom:1082.289000px;}
.y70{bottom:1086.772500px;}
.y206{bottom:1088.341500px;}
.y40{bottom:1092.972000px;}
.yd4{bottom:1093.491292px;}
.y6f{bottom:1105.602000px;}
.y12f{bottom:1107.082500px;}
.yd3{bottom:1116.602622px;}
.y3d{bottom:1136.460000px;}
.yd2{bottom:1139.607540px;}
.y6e{bottom:1168.366500px;}
.yd1{bottom:1205.271702px;}
.yd0{bottom:1216.827540px;}
.h11{height:26.110157px;}
.hd{height:30.190743px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h22{height:34.574294px;}
.h12{height:34.813397px;}
.h17{height:35.100320px;}
.hc{height:37.738429px;}
.h13{height:38.896243px;}
.h14{height:39.165235px;}
.h20{height:39.488026px;}
.h1a{height:40.707352px;}
.h19{height:42.138141px;}
.h15{height:43.217759px;}
.h16{height:43.516637px;}
.he{height:43.875290px;}
.h6{height:45.900000px;}
.h1e{height:47.524219px;}
.h3{height:48.195000px;}
.h25{height:49.782344px;}
.hb{height:51.022950px;}
.h1d{height:51.113742px;}
.h1b{height:52.663711px;}
.h1c{height:52.665698px;}
.h10{height:54.541601px;}
.h23{height:54.768749px;}
.h2{height:55.080000px;}
.h24{height:62.966294px;}
.h1f{height:72.039235px;}
.h21{height:72.045235px;}
.h26{height:72.550243px;}
.hf{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h18{height:213.161400px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:233.211061px;}
.w5{width:424.431000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x69{left:-234.131400px;}
.x0{left:0.000000px;}
.x6a{left:38.784600px;}
.x5{left:53.574000px;}
.x6{left:56.951817px;}
.x71{left:78.916500px;}
.x86{left:80.139000px;}
.x73{left:82.164000px;}
.x7e{left:83.266500px;}
.xd5{left:85.174500px;}
.x72{left:86.286000px;}
.x85{left:90.643500px;}
.x7d{left:93.367500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x87{left:173.217000px;}
.x89{left:175.873500px;}
.x74{left:177.864000px;}
.x81{left:180.727500px;}
.x78{left:184.285500px;}
.x83{left:186.490500px;}
.x4{left:203.484001px;}
.x82{left:225.124500px;}
.x84{left:226.671000px;}
.x7c{left:235.252500px;}
.x88{left:241.015500px;}
.x7a{left:243.228000px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x8c{left:261.438000px;}
.x9d{left:263.682000px;}
.x9c{left:264.786000px;}
.x77{left:266.925000px;}
.xb3{left:268.356000px;}
.x8{left:269.914500px;}
.xb2{left:271.069500px;}
.xb4{left:273.933000px;}
.xb1{left:275.122500px;}
.x7b{left:277.288500px;}
.xb0{left:279.790500px;}
.xb{left:281.479500px;}
.x8f{left:285.727500px;}
.x75{left:287.154000px;}
.x8b{left:289.137000px;}
.x76{left:292.950000px;}
.x4d{left:295.453500px;}
.x8d{left:298.578000px;}
.xcf{left:299.824500px;}
.x31{left:304.843500px;}
.xa{left:307.869000px;}
.xd0{left:309.258000px;}
.x7f{left:310.777500px;}
.xc2{left:314.343000px;}
.x50{left:316.243500px;}
.x1d{left:317.877000px;}
.x32{left:319.788000px;}
.x33{left:323.575500px;}
.x8a{left:329.271000px;}
.x51{left:331.188000px;}
.x1e{left:332.821500px;}
.x53{left:334.479000px;}
.x1f{left:336.516000px;}
.x34{left:338.520000px;}
.x67{left:345.868500px;}
.x54{left:349.423500px;}
.x20{left:351.460500px;}
.x37{left:354.003000px;}
.x21{left:355.155000px;}
.xc3{left:357.793500px;}
.x96{left:359.782500px;}
.x55{left:360.993000px;}
.x5f{left:363.027000px;}
.x68{left:364.468500px;}
.x45{left:366.339000px;}
.x8e{left:368.185500px;}
.x22{left:370.099500px;}
.xa2{left:371.167500px;}
.x80{left:372.388500px;}
.x79{left:374.178000px;}
.x56{left:375.936000px;}
.x60{left:377.971500px;}
.xad{left:379.650000px;}
.x46{left:381.283500px;}
.xc4{left:383.871000px;}
.xa3{left:386.112000px;}
.xac{left:387.606000px;}
.xcd{left:391.017000px;}
.x63{left:392.038500px;}
.xc5{left:402.475500px;}
.x18{left:406.582500px;}
.x3e{left:410.508000px;}
.x19{left:414.054000px;}
.x1a{left:417.853500px;}
.xce{left:418.906500px;}
.xc6{left:421.081500px;}
.x47{left:423.474000px;}
.x3f{left:425.452500px;}
.x1b{left:432.798000px;}
.x57{left:433.917000px;}
.x48{left:438.417000px;}
.x1c{left:440.397000px;}
.xc7{left:443.347500px;}
.x49{left:445.170000px;}
.x35{left:446.743500px;}
.x58{left:448.860000px;}
.x93{left:450.597000px;}
.x3{left:454.959000px;}
.xc8{left:458.292000px;}
.x4a{left:460.113000px;}
.x36{left:461.688000px;}
.x4b{left:463.774500px;}
.x94{left:465.540000px;}
.x95{left:469.257000px;}
.xb9{left:475.750500px;}
.xc{left:477.487500px;}
.x4c{left:478.719000px;}
.xc9{left:480.963000px;}
.xd{left:484.960500px;}
.xd1{left:487.300500px;}
.x6b{left:488.815500px;}
.x5c{left:490.048500px;}
.xbc{left:492.004500px;}
.x5e{left:494.422500px;}
.x3c{left:495.613500px;}
.xb8{left:497.400000px;}
.xb5{left:498.753000px;}
.xbd{left:502.644000px;}
.x6c{left:503.760000px;}
.x5d{left:504.991500px;}
.x6d{left:507.472500px;}
.x3d{left:510.558000px;}
.x61{left:515.053500px;}
.x9e{left:516.739500px;}
.xb6{left:520.515000px;}
.x6e{left:522.417000px;}
.xbe{left:525.258000px;}
.x62{left:529.998000px;}
.x52{left:532.072500px;}
.x5b{left:540.480000px;}
.x43{left:547.347000px;}
.x9f{left:549.997500px;}
.x23{left:551.883000px;}
.xb7{left:553.770000px;}
.x97{left:554.770500px;}
.xbf{left:558.927000px;}
.x44{left:562.291500px;}
.x98{left:565.725000px;}
.x24{left:566.827500px;}
.xbb{left:573.187500px;}
.x9b{left:577.191000px;}
.x38{left:582.289500px;}
.xba{left:586.633500px;}
.xa7{left:591.597000px;}
.xa4{left:593.136000px;}
.xca{left:594.394500px;}
.x39{left:597.234000px;}
.xa8{left:606.541500px;}
.xa5{left:608.080500px;}
.xcb{left:609.339000px;}
.x41{left:611.050500px;}
.xa9{left:615.820500px;}
.x2f{left:617.761500px;}
.xaf{left:622.123500px;}
.xae{left:624.448500px;}
.x42{left:625.995000px;}
.x14{left:630.708000px;}
.x30{left:632.706000px;}
.xaa{left:634.425000px;}
.x6f{left:637.320000px;}
.x15{left:645.651000px;}
.xab{left:649.369500px;}
.x70{left:652.264500px;}
.x9a{left:653.680500px;}
.x91{left:656.526000px;}
.x65{left:659.587500px;}
.x99{left:666.376500px;}
.xcc{left:669.135000px;}
.x92{left:671.469000px;}
.x66{left:674.532000px;}
.xde{left:676.917000px;}
.xdf{left:703.816500px;}
.x16{left:724.861500px;}
.x40{left:729.390000px;}
.xc0{left:731.725500px;}
.xd3{left:733.135500px;}
.xd7{left:735.565500px;}
.xc1{left:736.956000px;}
.x17{left:739.804500px;}
.x59{left:743.455500px;}
.x25{left:744.969000px;}
.xe0{left:750.511500px;}
.xa0{left:751.974000px;}
.xd6{left:755.847000px;}
.x5a{left:758.400000px;}
.x26{left:759.913500px;}
.xd8{left:762.465000px;}
.x27{left:763.575000px;}
.xdb{left:764.593500px;}
.xa1{left:766.918500px;}
.xd2{left:770.748000px;}
.x3a{left:772.869000px;}
.x2e{left:775.393500px;}
.x64{left:777.039000px;}
.x28{left:778.518000px;}
.x29{left:780.835500px;}
.x4e{left:782.061000px;}
.x90{left:783.631500px;}
.xdd{left:785.044500px;}
.x3b{left:787.813500px;}
.xd9{left:789.796500px;}
.x10{left:791.017500px;}
.xe{left:793.486500px;}
.x2a{left:795.780000px;}
.x4f{left:797.004000px;}
.x11{left:798.489000px;}
.xf{left:800.958000px;}
.x12{left:802.150500px;}
.xa6{left:807.715500px;}
.x13{left:809.622000px;}
.x2b{left:814.384500px;}
.xdc{left:815.695500px;}
.xda{left:816.696000px;}
.x2c{left:818.046000px;}
.x2d{left:832.990500px;}
.xd4{left:837.282000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:25.237333pt;}
.v3{vertical-align:29.221333pt;}
.ls4e{letter-spacing:-0.551501pt;}
.ls73{letter-spacing:-0.532262pt;}
.ls8a{letter-spacing:-0.493786pt;}
.ls8d{letter-spacing:-0.487373pt;}
.ls5a{letter-spacing:-0.480960pt;}
.ls6a{letter-spacing:-0.461722pt;}
.ls61{letter-spacing:-0.448896pt;}
.ls85{letter-spacing:-0.429658pt;}
.ls7a{letter-spacing:-0.410419pt;}
.ls86{letter-spacing:-0.391181pt;}
.ls7b{letter-spacing:-0.384768pt;}
.ls71{letter-spacing:-0.365530pt;}
.ls7c{letter-spacing:-0.359117pt;}
.ls88{letter-spacing:-0.352704pt;}
.ls90{letter-spacing:-0.339878pt;}
.ls84{letter-spacing:-0.327053pt;}
.ls6c{letter-spacing:-0.320640pt;}
.ls63{letter-spacing:-0.307814pt;}
.ls6f{letter-spacing:-0.301402pt;}
.ls8c{letter-spacing:-0.288576pt;}
.ls6e{letter-spacing:-0.282163pt;}
.ls80{letter-spacing:-0.269338pt;}
.ls5c{letter-spacing:-0.262925pt;}
.ls69{letter-spacing:-0.250099pt;}
.ls89{letter-spacing:-0.243686pt;}
.ls79{letter-spacing:-0.237274pt;}
.ls5f{letter-spacing:-0.230861pt;}
.ls59{letter-spacing:-0.224448pt;}
.ls4d{letter-spacing:-0.218035pt;}
.ls67{letter-spacing:-0.211622pt;}
.ls8b{letter-spacing:-0.205210pt;}
.ls65{letter-spacing:-0.198797pt;}
.ls62{letter-spacing:-0.192384pt;}
.ls83{letter-spacing:-0.185971pt;}
.ls8e{letter-spacing:-0.179558pt;}
.ls48{letter-spacing:-0.173645pt;}
.ls7e{letter-spacing:-0.173146pt;}
.ls75{letter-spacing:-0.160320pt;}
.ls93{letter-spacing:-0.155520pt;}
.ls7d{letter-spacing:-0.153907pt;}
.ls51{letter-spacing:-0.147494pt;}
.ls6b{letter-spacing:-0.141082pt;}
.ls76{letter-spacing:-0.134669pt;}
.ls58{letter-spacing:-0.128256pt;}
.ls56{letter-spacing:-0.121843pt;}
.ls6d{letter-spacing:-0.115430pt;}
.ls47{letter-spacing:-0.112358pt;}
.ls68{letter-spacing:-0.109018pt;}
.ls77{letter-spacing:-0.102605pt;}
.ls70{letter-spacing:-0.089779pt;}
.ls7f{letter-spacing:-0.083366pt;}
.ls50{letter-spacing:-0.076954pt;}
.ls5e{letter-spacing:-0.070541pt;}
.ls57{letter-spacing:-0.064128pt;}
.ls74{letter-spacing:-0.057715pt;}
.ls49{letter-spacing:-0.056179pt;}
.ls66{letter-spacing:-0.051302pt;}
.ls92{letter-spacing:-0.046080pt;}
.ls5d{letter-spacing:-0.044890pt;}
.ls72{letter-spacing:-0.038477pt;}
.ls78{letter-spacing:-0.032064pt;}
.ls54{letter-spacing:-0.025651pt;}
.ls91{letter-spacing:-0.023040pt;}
.ls60{letter-spacing:-0.019238pt;}
.ls52{letter-spacing:-0.012826pt;}
.ls4f{letter-spacing:-0.006413pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb2{letter-spacing:0.000375pt;}
.ls2{letter-spacing:0.000533pt;}
.ls9f{letter-spacing:0.000627pt;}
.lsa0{letter-spacing:0.001026pt;}
.ls98{letter-spacing:0.001382pt;}
.lsc{letter-spacing:0.001718pt;}
.lsb{letter-spacing:0.001735pt;}
.ls8{letter-spacing:0.002133pt;}
.lsa6{letter-spacing:0.002262pt;}
.ls9c{letter-spacing:0.002525pt;}
.lsa7{letter-spacing:0.002550pt;}
.ls99{letter-spacing:0.003635pt;}
.ls7{letter-spacing:0.003733pt;}
.ls3{letter-spacing:0.004237pt;}
.lsb1{letter-spacing:0.004898pt;}
.ls11{letter-spacing:0.005107pt;}
.ls32{letter-spacing:0.006413pt;}
.ls1f{letter-spacing:0.012826pt;}
.ls26{letter-spacing:0.019238pt;}
.ls18{letter-spacing:0.025651pt;}
.ls20{letter-spacing:0.032064pt;}
.ls2f{letter-spacing:0.038477pt;}
.ls1e{letter-spacing:0.044890pt;}
.ls1d{letter-spacing:0.051302pt;}
.ls25{letter-spacing:0.057715pt;}
.ls12{letter-spacing:0.061286pt;}
.ls1b{letter-spacing:0.064128pt;}
.ls3b{letter-spacing:0.070541pt;}
.ls2b{letter-spacing:0.076954pt;}
.ls1c{letter-spacing:0.083366pt;}
.ls2a{letter-spacing:0.089779pt;}
.ls15{letter-spacing:0.091930pt;}
.ls1a{letter-spacing:0.096192pt;}
.ls29{letter-spacing:0.102605pt;}
.ls34{letter-spacing:0.104218pt;}
.ls23{letter-spacing:0.109018pt;}
.ls45{letter-spacing:0.115430pt;}
.ls33{letter-spacing:0.121843pt;}
.ls82{letter-spacing:0.128256pt;}
.ls38{letter-spacing:0.134669pt;}
.ls55{letter-spacing:0.141082pt;}
.ls14{letter-spacing:0.143002pt;}
.ls2e{letter-spacing:0.147494pt;}
.ls4c{letter-spacing:0.153216pt;}
.ls53{letter-spacing:0.153907pt;}
.ls87{letter-spacing:0.160320pt;}
.ls64{letter-spacing:0.173146pt;}
.ls46{letter-spacing:0.190080pt;}
.ls30{letter-spacing:0.192384pt;}
.ls13{letter-spacing:0.194074pt;}
.ls81{letter-spacing:0.198797pt;}
.ls5b{letter-spacing:0.205210pt;}
.ls10{letter-spacing:0.286003pt;}
.ls4b{letter-spacing:0.367718pt;}
.ls4a{letter-spacing:0.449434pt;}
.ls19{letter-spacing:0.480960pt;}
.ls39{letter-spacing:1.250496pt;}
.ls36{letter-spacing:1.628851pt;}
.ls37{letter-spacing:1.635264pt;}
.ls35{letter-spacing:2.013619pt;}
.ls44{letter-spacing:2.024947pt;}
.ls40{letter-spacing:2.338906pt;}
.ls28{letter-spacing:2.398387pt;}
.ls5{letter-spacing:2.651733pt;}
.ls6{letter-spacing:2.657067pt;}
.ls27{letter-spacing:2.783155pt;}
.ls3f{letter-spacing:3.167923pt;}
.ls2d{letter-spacing:3.552691pt;}
.ls2c{letter-spacing:3.937459pt;}
.ls22{letter-spacing:4.322227pt;}
.ls24{letter-spacing:4.700582pt;}
.ls21{letter-spacing:4.706995pt;}
.ls31{letter-spacing:5.085350pt;}
.ls3a{letter-spacing:5.470118pt;}
.ls41{letter-spacing:7.393958pt;}
.ls3d{letter-spacing:7.778726pt;}
.ls3c{letter-spacing:8.157082pt;}
.ls3e{letter-spacing:8.163494pt;}
.ls1{letter-spacing:9.298933pt;}
.ls43{letter-spacing:9.696154pt;}
.ls42{letter-spacing:10.080922pt;}
.lse{letter-spacing:10.626533pt;}
.lsaa{letter-spacing:11.654875pt;}
.lsab{letter-spacing:11.736303pt;}
.ls97{letter-spacing:11.742585pt;}
.lsb3{letter-spacing:11.810512pt;}
.lsa8{letter-spacing:11.814735pt;}
.lsa4{letter-spacing:11.847367pt;}
.ls9d{letter-spacing:11.954133pt;}
.lsa9{letter-spacing:11.956358pt;}
.lsa3{letter-spacing:11.959467pt;}
.lsac{letter-spacing:12.015200pt;}
.lsb5{letter-spacing:12.015437pt;}
.ls9e{letter-spacing:12.031427pt;}
.lsae{letter-spacing:12.122993pt;}
.lsb0{letter-spacing:12.128726pt;}
.lsb6{letter-spacing:12.194307pt;}
.lsaf{letter-spacing:12.221490pt;}
.lsa2{letter-spacing:12.332382pt;}
.ls8f{letter-spacing:12.383117pt;}
.ls9b{letter-spacing:12.549333pt;}
.ls9a{letter-spacing:12.554667pt;}
.ls17{letter-spacing:12.573926pt;}
.ls95{letter-spacing:13.230333pt;}
.ls96{letter-spacing:13.496002pt;}
.lsf{letter-spacing:15.036884pt;}
.lsad{letter-spacing:15.061793pt;}
.lsb7{letter-spacing:15.694473pt;}
.ls94{letter-spacing:15.941412pt;}
.lsa1{letter-spacing:16.050029pt;}
.lsa5{letter-spacing:16.734996pt;}
.lsb4{letter-spacing:17.608199pt;}
.ls4{letter-spacing:51.035733pt;}
.lsa{letter-spacing:55.787733pt;}
.lsd{letter-spacing:57.174803pt;}
.ls9{letter-spacing:64.315733pt;}
.ls16{letter-spacing:1633.440883pt;}
.ws88{word-spacing:-64.128000pt;}
.ws72{word-spacing:-51.072000pt;}
.wse{word-spacing:-13.283467pt;}
.wse0{word-spacing:-11.955200pt;}
.ws15{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws48{word-spacing:-2.709827pt;}
.ws6c{word-spacing:-2.391024pt;}
.ws2e{word-spacing:-2.284756pt;}
.ws3e{word-spacing:-2.231622pt;}
.ws52{word-spacing:-2.125355pt;}
.ws25{word-spacing:-2.072221pt;}
.wsfb{word-spacing:-1.912819pt;}
.ws5a{word-spacing:-1.859685pt;}
.ws126{word-spacing:-1.817190pt;}
.wsf7{word-spacing:-1.806551pt;}
.ws128{word-spacing:-1.769370pt;}
.ws117{word-spacing:-1.753418pt;}
.ws102{word-spacing:-1.742795pt;}
.ws115{word-spacing:-1.700284pt;}
.ws18{word-spacing:-1.673728pt;}
.ws127{word-spacing:-1.625907pt;}
.ws129{word-spacing:-1.578086pt;}
.wsf5{word-spacing:-1.540882pt;}
.ws4b{word-spacing:-1.487748pt;}
.ws10b{word-spacing:-1.360230pt;}
.wsdc{word-spacing:-1.328347pt;}
.ws119{word-spacing:-1.275213pt;}
.ws35{word-spacing:-1.222079pt;}
.ws4d{word-spacing:-1.168945pt;}
.ws12d{word-spacing:-1.147699pt;}
.ws12b{word-spacing:-1.099878pt;}
.ws41{word-spacing:-1.062677pt;}
.ws4{word-spacing:-1.041421pt;}
.ws101{word-spacing:-1.020173pt;}
.ws124{word-spacing:-1.004237pt;}
.ws113{word-spacing:-0.956410pt;}
.ws6{word-spacing:-0.929840pt;}
.ws3f{word-spacing:-0.850142pt;}
.ws103{word-spacing:-0.807637pt;}
.ws6b{word-spacing:-0.743874pt;}
.ws5f{word-spacing:-0.690740pt;}
.ws11c{word-spacing:-0.637606pt;}
.wsf9{word-spacing:-0.531339pt;}
.ws76{word-spacing:-0.500506pt;}
.wsfa{word-spacing:-0.478205pt;}
.ws4a{word-spacing:-0.425071pt;}
.ws7a{word-spacing:-0.418790pt;}
.ws46{word-spacing:-0.371937pt;}
.ws147{word-spacing:-0.334746pt;}
.ws33{word-spacing:-0.318803pt;}
.ws132{word-spacing:-0.286925pt;}
.ws92{word-spacing:-0.269338pt;}
.ws29{word-spacing:-0.265669pt;}
.wsc6{word-spacing:-0.262925pt;}
.ws94{word-spacing:-0.256512pt;}
.ws77{word-spacing:-0.245146pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws9e{word-spacing:-0.237274pt;}
.wscc{word-spacing:-0.224448pt;}
.ws89{word-spacing:-0.218035pt;}
.ws2c{word-spacing:-0.212535pt;}
.wsa7{word-spacing:-0.211622pt;}
.ws8d{word-spacing:-0.205210pt;}
.ws7b{word-spacing:-0.204288pt;}
.wsb8{word-spacing:-0.198797pt;}
.wsc7{word-spacing:-0.192384pt;}
.ws1f{word-spacing:-0.191283pt;}
.wsad{word-spacing:-0.185971pt;}
.wsd4{word-spacing:-0.179558pt;}
.ws9f{word-spacing:-0.173146pt;}
.wse4{word-spacing:-0.170029pt;}
.ws84{word-spacing:-0.166733pt;}
.wsa1{word-spacing:-0.160320pt;}
.ws31{word-spacing:-0.159402pt;}
.wsa3{word-spacing:-0.153907pt;}
.ws81{word-spacing:-0.147494pt;}
.ws1d{word-spacing:-0.143462pt;}
.ws79{word-spacing:-0.143002pt;}
.wsa6{word-spacing:-0.141082pt;}
.wsc5{word-spacing:-0.134669pt;}
.ws7e{word-spacing:-0.128256pt;}
.wsf4{word-spacing:-0.127522pt;}
.wsa2{word-spacing:-0.121843pt;}
.ws8a{word-spacing:-0.115430pt;}
.ws75{word-spacing:-0.112358pt;}
.ws8c{word-spacing:-0.109018pt;}
.ws26{word-spacing:-0.106268pt;}
.ws86{word-spacing:-0.102605pt;}
.ws9c{word-spacing:-0.096192pt;}
.ws121{word-spacing:-0.095642pt;}
.ws7c{word-spacing:-0.089779pt;}
.wsff{word-spacing:-0.085014pt;}
.ws87{word-spacing:-0.083366pt;}
.ws9a{word-spacing:-0.076954pt;}
.wsac{word-spacing:-0.070541pt;}
.wsa4{word-spacing:-0.064128pt;}
.ws80{word-spacing:-0.057715pt;}
.wsd7{word-spacing:-0.057600pt;}
.ws74{word-spacing:-0.056179pt;}
.ws13{word-spacing:-0.053134pt;}
.ws85{word-spacing:-0.051302pt;}
.ws78{word-spacing:-0.051072pt;}
.ws12a{word-spacing:-0.047821pt;}
.ws98{word-spacing:-0.044890pt;}
.ws16{word-spacing:-0.042507pt;}
.ws8b{word-spacing:-0.038477pt;}
.wsd6{word-spacing:-0.034560pt;}
.wsbc{word-spacing:-0.032064pt;}
.wsb5{word-spacing:-0.025651pt;}
.ws154{word-spacing:-0.025071pt;}
.ws15c{word-spacing:-0.024260pt;}
.ws146{word-spacing:-0.023219pt;}
.ws95{word-spacing:-0.019238pt;}
.wsa5{word-spacing:-0.012826pt;}
.wsd8{word-spacing:-0.011520pt;}
.ws14f{word-spacing:-0.010428pt;}
.ws130{word-spacing:-0.008269pt;}
.ws15b{word-spacing:-0.006861pt;}
.wsb7{word-spacing:-0.006413pt;}
.ws133{word-spacing:-0.005308pt;}
.wsf{word-spacing:-0.004815pt;}
.ws14{word-spacing:-0.004511pt;}
.ws151{word-spacing:-0.003593pt;}
.ws163{word-spacing:-0.003081pt;}
.ws158{word-spacing:-0.002935pt;}
.ws14c{word-spacing:-0.002859pt;}
.ws10{word-spacing:-0.000326pt;}
.ws0{word-spacing:0.000000pt;}
.ws144{word-spacing:0.000486pt;}
.ws14d{word-spacing:0.001050pt;}
.ws73{word-spacing:0.005107pt;}
.ws96{word-spacing:0.006413pt;}
.ws82{word-spacing:0.012826pt;}
.wsc3{word-spacing:0.019238pt;}
.wsb3{word-spacing:0.025651pt;}
.wsbb{word-spacing:0.038477pt;}
.ws10a{word-spacing:0.042507pt;}
.wsa9{word-spacing:0.044890pt;}
.ws1a{word-spacing:0.047821pt;}
.wsb0{word-spacing:0.051302pt;}
.ws2d{word-spacing:0.053134pt;}
.ws8e{word-spacing:0.057715pt;}
.ws70{word-spacing:0.061286pt;}
.ws8f{word-spacing:0.064128pt;}
.wsba{word-spacing:0.070541pt;}
.wsae{word-spacing:0.076954pt;}
.ws83{word-spacing:0.083366pt;}
.wsf0{word-spacing:0.085014pt;}
.wsc1{word-spacing:0.089779pt;}
.wse2{word-spacing:0.095642pt;}
.wsb9{word-spacing:0.096192pt;}
.wsd9{word-spacing:0.097920pt;}
.ws32{word-spacing:0.106268pt;}
.wsc2{word-spacing:0.109018pt;}
.wsd3{word-spacing:0.115430pt;}
.wsc8{word-spacing:0.121843pt;}
.ws71{word-spacing:0.122573pt;}
.wsf1{word-spacing:0.127522pt;}
.ws9b{word-spacing:0.128256pt;}
.wsa0{word-spacing:0.134669pt;}
.wsd0{word-spacing:0.141082pt;}
.ws1e{word-spacing:0.143462pt;}
.wsa8{word-spacing:0.147494pt;}
.ws7d{word-spacing:0.153907pt;}
.ws2b{word-spacing:0.159402pt;}
.ws90{word-spacing:0.160320pt;}
.ws97{word-spacing:0.166733pt;}
.wsbd{word-spacing:0.173146pt;}
.wsce{word-spacing:0.179558pt;}
.wsaa{word-spacing:0.185971pt;}
.ws13a{word-spacing:0.191283pt;}
.ws93{word-spacing:0.198797pt;}
.wsc4{word-spacing:0.205210pt;}
.ws27{word-spacing:0.212535pt;}
.wsb1{word-spacing:0.218035pt;}
.wsd1{word-spacing:0.224448pt;}
.wsb2{word-spacing:0.237274pt;}
.ws13b{word-spacing:0.239104pt;}
.ws9d{word-spacing:0.243686pt;}
.wsaf{word-spacing:0.256512pt;}
.wsc9{word-spacing:0.262925pt;}
.ws38{word-spacing:0.265669pt;}
.wsd5{word-spacing:0.275750pt;}
.ws21{word-spacing:0.286925pt;}
.wscd{word-spacing:0.288576pt;}
.wsc0{word-spacing:0.294989pt;}
.wsb4{word-spacing:0.301402pt;}
.ws34{word-spacing:0.318803pt;}
.wsbf{word-spacing:0.320640pt;}
.wscb{word-spacing:0.327053pt;}
.ws140{word-spacing:0.334746pt;}
.wsbe{word-spacing:0.346291pt;}
.wsca{word-spacing:0.365530pt;}
.ws44{word-spacing:0.371937pt;}
.ws13c{word-spacing:0.382566pt;}
.ws99{word-spacing:0.384768pt;}
.wsab{word-spacing:0.397594pt;}
.ws91{word-spacing:0.416832pt;}
.wsd2{word-spacing:0.423245pt;}
.wsdd{word-spacing:0.425071pt;}
.wscf{word-spacing:0.429658pt;}
.wsb6{word-spacing:0.468134pt;}
.ws60{word-spacing:0.478205pt;}
.ws7f{word-spacing:0.487373pt;}
.wse3{word-spacing:0.510086pt;}
.ws58{word-spacing:0.531339pt;}
.ws13e{word-spacing:0.573850pt;}
.ws47{word-spacing:0.584473pt;}
.ws120{word-spacing:0.637606pt;}
.ws20{word-spacing:0.669491pt;}
.ws116{word-spacing:0.690740pt;}
.ws1b{word-spacing:0.717312pt;}
.ws11f{word-spacing:0.743874pt;}
.ws30{word-spacing:0.797008pt;}
.ws19{word-spacing:0.812954pt;}
.ws65{word-spacing:0.850142pt;}
.ws5{word-spacing:0.892646pt;}
.ws66{word-spacing:0.903276pt;}
.ws4c{word-spacing:0.956410pt;}
.ws112{word-spacing:1.009543pt;}
.ws11d{word-spacing:1.115811pt;}
.ws11b{word-spacing:1.168945pt;}
.ws42{word-spacing:1.222079pt;}
.wse5{word-spacing:1.232709pt;}
.wse7{word-spacing:1.275213pt;}
.ws68{word-spacing:1.434614pt;}
.ws13f{word-spacing:1.482445pt;}
.wseb{word-spacing:1.487748pt;}
.wsf8{word-spacing:1.540882pt;}
.ws100{word-spacing:1.572766pt;}
.wse6{word-spacing:1.594016pt;}
.ws45{word-spacing:1.647150pt;}
.ws11a{word-spacing:1.700284pt;}
.wsf3{word-spacing:1.700288pt;}
.ws6f{word-spacing:1.753418pt;}
.ws3c{word-spacing:1.806551pt;}
.ws122{word-spacing:1.960653pt;}
.wse8{word-spacing:1.965953pt;}
.ws3b{word-spacing:2.019087pt;}
.ws54{word-spacing:2.072221pt;}
.ws156{word-spacing:2.104115pt;}
.ws5e{word-spacing:2.125355pt;}
.ws39{word-spacing:2.178489pt;}
.ws138{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231616pt;}
.ws3a{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws10e{word-spacing:2.391024pt;}
.ws150{word-spacing:2.438861pt;}
.ws5d{word-spacing:2.444158pt;}
.wsf2{word-spacing:2.507925pt;}
.wsea{word-spacing:2.550426pt;}
.ws17{word-spacing:2.550432pt;}
.ws148{word-spacing:2.582323pt;}
.ws159{word-spacing:2.677965pt;}
.ws15e{word-spacing:2.725786pt;}
.wsda{word-spacing:2.762961pt;}
.ws10d{word-spacing:2.816095pt;}
.ws14e{word-spacing:2.821427pt;}
.ws22{word-spacing:2.861926pt;}
.ws15f{word-spacing:2.861986pt;}
.ws157{word-spacing:2.862524pt;}
.ws14b{word-spacing:2.863590pt;}
.ws149{word-spacing:2.863855pt;}
.ws155{word-spacing:2.864145pt;}
.ws13d{word-spacing:2.864469pt;}
.ws153{word-spacing:2.865818pt;}
.ws15d{word-spacing:2.866270pt;}
.ws14a{word-spacing:2.866398pt;}
.ws51{word-spacing:2.869229pt;}
.ws12c{word-spacing:2.869248pt;}
.ws15a{word-spacing:2.917069pt;}
.ws137{word-spacing:2.964890pt;}
.ws110{word-spacing:2.975497pt;}
.ws12e{word-spacing:3.012710pt;}
.ws36{word-spacing:3.028630pt;}
.ws56{word-spacing:3.081764pt;}
.ws152{word-spacing:3.108352pt;}
.wsde{word-spacing:3.134898pt;}
.ws125{word-spacing:3.156173pt;}
.ws23{word-spacing:3.188032pt;}
.ws134{word-spacing:3.203994pt;}
.ws37{word-spacing:3.241166pt;}
.ws6a{word-spacing:3.294300pt;}
.ws2a{word-spacing:3.347434pt;}
.ws67{word-spacing:3.400567pt;}
.ws28{word-spacing:3.506835pt;}
.ws145{word-spacing:3.538739pt;}
.ws64{word-spacing:3.613103pt;}
.ws139{word-spacing:3.634381pt;}
.ws5c{word-spacing:3.666237pt;}
.ws5b{word-spacing:3.719371pt;}
.ws131{word-spacing:3.730022pt;}
.ws2f{word-spacing:3.772505pt;}
.ws141{word-spacing:3.777843pt;}
.ws50{word-spacing:3.825638pt;}
.ws3d{word-spacing:3.878772pt;}
.wsdb{word-spacing:3.931906pt;}
.ws43{word-spacing:3.985040pt;}
.wsf6{word-spacing:4.091308pt;}
.ws136{word-spacing:4.112589pt;}
.ws114{word-spacing:4.144442pt;}
.wsc{word-spacing:4.240070pt;}
.ws10c{word-spacing:4.250709pt;}
.wsd{word-spacing:4.314458pt;}
.ws24{word-spacing:4.356977pt;}
.ws160{word-spacing:4.447334pt;}
.ws161{word-spacing:4.495155pt;}
.ws69{word-spacing:4.569513pt;}
.ws40{word-spacing:4.728914pt;}
.ws143{word-spacing:4.782080pt;}
.ws123{word-spacing:4.829901pt;}
.wse9{word-spacing:4.888316pt;}
.ws6d{word-spacing:4.941450pt;}
.ws4f{word-spacing:5.153985pt;}
.ws61{word-spacing:5.313387pt;}
.wsdf{word-spacing:5.366521pt;}
.ws4e{word-spacing:5.579056pt;}
.ws55{word-spacing:5.632190pt;}
.ws162{word-spacing:5.642854pt;}
.ws12f{word-spacing:5.738496pt;}
.ws62{word-spacing:5.897859pt;}
.ws118{word-spacing:5.950993pt;}
.ws111{word-spacing:6.057261pt;}
.ws59{word-spacing:6.269796pt;}
.wsa{word-spacing:6.918010pt;}
.ws49{word-spacing:6.960537pt;}
.ws63{word-spacing:7.332474pt;}
.ws6e{word-spacing:7.491875pt;}
.ws53{word-spacing:7.545009pt;}
.ws11e{word-spacing:7.970080pt;}
.ws10f{word-spacing:9.085891pt;}
.ws8{word-spacing:10.823338pt;}
.ws57{word-spacing:12.858396pt;}
.ws135{word-spacing:12.959437pt;}
.ws9{word-spacing:14.319536pt;}
.ws142{word-spacing:14.585344pt;}
.wsb{word-spacing:23.208806pt;}
.ws7{word-spacing:23.858002pt;}
.ws12{word-spacing:35.098430pt;}
.wsfc{word-spacing:61.125354pt;}
.wsfe{word-spacing:78.850856pt;}
.wsfd{word-spacing:90.600904pt;}
.wsec{word-spacing:111.374643pt;}
.ws107{word-spacing:121.608294pt;}
.ws108{word-spacing:127.346790pt;}
.ws109{word-spacing:132.033229pt;}
.ws105{word-spacing:133.180928pt;}
.wsef{word-spacing:160.582246pt;}
.ws104{word-spacing:163.179733pt;}
.wsed{word-spacing:212.850381pt;}
.wsee{word-spacing:237.382451pt;}
.ws106{word-spacing:268.083405pt;}
.wse1{word-spacing:920.413815pt;}
._8{margin-left:-10.616218pt;}
._16{margin-left:-6.654385pt;}
._10{margin-left:-5.751109pt;}
._b{margin-left:-4.718299pt;}
._0{margin-left:-3.347424pt;}
._3{margin-left:-2.045648pt;}
._7{margin-left:-1.103159pt;}
._21{width:1.064347pt;}
._5{width:2.045648pt;}
._a{width:3.268991pt;}
._1e{width:4.184924pt;}
._2{width:9.298400pt;}
._12{width:10.626800pt;}
._1{width:11.530016pt;}
._c{width:13.170434pt;}
._e{width:14.250598pt;}
._f{width:15.371691pt;}
._d{width:16.976384pt;}
._1f{width:17.865631pt;}
._11{width:18.756255pt;}
._1b{width:19.953030pt;}
._1d{width:20.866891pt;}
._18{width:21.784885pt;}
._4{width:23.062165pt;}
._5c{width:24.375793pt;}
._5a{width:25.915298pt;}
._6{width:27.188522pt;}
._15{width:28.214083pt;}
._9{width:29.648896pt;}
._17{width:31.189580pt;}
._1c{width:32.252257pt;}
._1a{width:33.527470pt;}
._5b{width:35.148047pt;}
._19{width:36.955868pt;}
._20{width:39.478463pt;}
._5e{width:54.993920pt;}
._5d{width:78.904320pt;}
._43{width:81.231259pt;}
._45{width:94.844767pt;}
._53{width:101.422179pt;}
._54{width:107.330680pt;}
._50{width:111.453878pt;}
._51{width:112.474051pt;}
._3f{width:119.599821pt;}
._4e{width:121.103013pt;}
._44{width:125.023218pt;}
._3c{width:127.091726pt;}
._3a{width:130.694246pt;}
._52{width:134.237738pt;}
._4c{width:135.975190pt;}
._4d{width:140.433144pt;}
._4f{width:142.606314pt;}
._46{width:145.406486pt;}
._47{width:147.074912pt;}
._4b{width:151.314987pt;}
._40{width:153.313485pt;}
._4a{width:155.661366pt;}
._57{width:169.476915pt;}
._3d{width:172.537446pt;}
._56{width:176.968821pt;}
._55{width:180.571341pt;}
._58{width:182.340710pt;}
._49{width:184.438741pt;}
._48{width:204.714675pt;}
._2d{width:219.965034pt;}
._39{width:243.755231pt;}
._41{width:249.337651pt;}
._13{width:335.742405pt;}
._2e{width:365.313659pt;}
._2f{width:381.131744pt;}
._30{width:389.863849pt;}
._2a{width:401.349328pt;}
._28{width:424.122675pt;}
._3e{width:433.495552pt;}
._42{width:471.574877pt;}
._33{width:484.807270pt;}
._26{width:491.539357pt;}
._29{width:516.368998pt;}
._38{width:558.977331pt;}
._32{width:584.083251pt;}
._24{width:596.600955pt;}
._25{width:600.677069pt;}
._35{width:602.016051pt;}
._2b{width:662.509363pt;}
._37{width:679.437926pt;}
._31{width:691.323042pt;}
._34{width:692.599063pt;}
._3b{width:713.629798pt;}
._22{width:792.247194pt;}
._36{width:862.735053pt;}
._27{width:890.046345pt;}
._2c{width:893.483827pt;}
._23{width:918.554540pt;}
._59{width:1728.255298pt;}
._14{width:1749.508631pt;}
.fsc{font-size:31.880533pt;}
.fs7{font-size:34.633760pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.581440pt;}
.fsb{font-size:40.381867pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:47.820800pt;}
.fs6{font-size:49.476800pt;}
.fs12{font-size:49.829333pt;}
.fsf{font-size:51.072000pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs11{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:95.641600pt;}
.yfc{bottom:-63.367520pt;}
.yfb{bottom:-24.103520pt;}
.yfa{bottom:-0.102563pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:11.257415pt;}
.y3e{bottom:23.131847pt;}
.y6d{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y23b{bottom:92.892000pt;}
.y3c{bottom:93.018667pt;}
.y162{bottom:95.537333pt;}
.ya4{bottom:95.681333pt;}
.y6c{bottom:101.102667pt;}
.yfe{bottom:103.213333pt;}
.y205{bottom:107.597333pt;}
.y23a{bottom:108.233333pt;}
.y3b{bottom:108.920000pt;}
.y161{bottom:112.274667pt;}
.ya3{bottom:112.418667pt;}
.y12e{bottom:117.809333pt;}
.y6b{bottom:117.840000pt;}
.y1c7{bottom:121.729333pt;}
.y203{bottom:122.938667pt;}
.y204{bottom:122.940000pt;}
.y239{bottom:123.576000pt;}
.y23{bottom:123.790666pt;}
.y3a{bottom:124.820000pt;}
.y1d3{bottom:127.561333pt;}
.yce{bottom:128.757333pt;}
.y160{bottom:129.012000pt;}
.ya2{bottom:129.156000pt;}
.yfd{bottom:133.050667pt;}
.y1c5{bottom:134.349333pt;}
.y6a{bottom:134.577333pt;}
.y1c6{bottom:138.206667pt;}
.y202{bottom:138.281333pt;}
.y12d{bottom:138.824000pt;}
.y238{bottom:138.918667pt;}
.y39{bottom:140.720000pt;}
.y1d2{bottom:144.298667pt;}
.ycd{bottom:145.494667pt;}
.y15f{bottom:145.748000pt;}
.ya1{bottom:145.893333pt;}
.y1c3{bottom:146.968000pt;}
.y1c4{bottom:150.825333pt;}
.y69{bottom:151.314667pt;}
.ycf{bottom:152.986667pt;}
.y12c{bottom:153.436000pt;}
.y201{bottom:153.624000pt;}
.y237{bottom:154.261333pt;}
.y38{bottom:156.621333pt;}
.y1c2{bottom:159.588000pt;}
.y1d1{bottom:161.036000pt;}
.ycc{bottom:162.232000pt;}
.y15e{bottom:162.485333pt;}
.ya0{bottom:162.630667pt;}
.y68{bottom:168.052000pt;}
.y200{bottom:168.966667pt;}
.y236{bottom:169.604000pt;}
.y1c1{bottom:172.206667pt;}
.y37{bottom:172.521333pt;}
.y127{bottom:173.762667pt;}
.y12b{bottom:174.449333pt;}
.y1a{bottom:175.052000pt;}
.y1d0{bottom:177.773333pt;}
.ycb{bottom:178.969333pt;}
.y15d{bottom:179.222667pt;}
.y9f{bottom:179.368000pt;}
.y1ff{bottom:184.309333pt;}
.y67{bottom:184.789333pt;}
.y1bf{bottom:184.826667pt;}
.y235{bottom:184.946667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y126{bottom:188.374667pt;}
.y36{bottom:188.421333pt;}
.y1c0{bottom:188.684000pt;}
.y1cf{bottom:194.510667pt;}
.y12a{bottom:195.464000pt;}
.yca{bottom:195.706667pt;}
.y15c{bottom:195.960000pt;}
.y9e{bottom:196.105333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1fe{bottom:199.652000pt;}
.y190{bottom:200.013333pt;}
.y234{bottom:200.289333pt;}
.y66{bottom:201.526667pt;}
.y1be{bottom:203.472000pt;}
.y35{bottom:204.322667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1ce{bottom:211.248000pt;}
.yc9{bottom:212.444000pt;}
.y15b{bottom:212.697333pt;}
.y9d{bottom:212.841333pt;}
.yf9{bottom:213.209610pt;}
.y233{bottom:215.632000pt;}
.y129{bottom:216.477333pt;}
.y18f{bottom:216.750667pt;}
.y65{bottom:218.264000pt;}
.y1fd{bottom:218.980000pt;}
.y1bd{bottom:224.485333pt;}
.y1cd{bottom:227.985333pt;}
.yc8{bottom:229.181333pt;}
.y15a{bottom:229.434667pt;}
.y9c{bottom:229.578667pt;}
.y232{bottom:230.974667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y18e{bottom:233.488000pt;}
.yf8{bottom:233.753014pt;}
.y64{bottom:235.001333pt;}
.y128{bottom:237.492000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1cc{bottom:244.722667pt;}
.y1bc{bottom:245.500000pt;}
.yc7{bottom:245.918667pt;}
.y159{bottom:246.172000pt;}
.y9b{bottom:246.316000pt;}
.y1fc{bottom:248.868000pt;}
.y18d{bottom:250.225333pt;}
.y63{bottom:251.738667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yf7{bottom:254.296419pt;}
.y125{bottom:258.505333pt;}
.y1cb{bottom:261.460000pt;}
.y231{bottom:261.658667pt;}
.yc6{bottom:262.656000pt;}
.y158{bottom:262.909333pt;}
.y9a{bottom:263.053333pt;}
.y1bb{bottom:266.513333pt;}
.y34{bottom:266.804000pt;}
.y18c{bottom:266.962667pt;}
.y62{bottom:268.476000pt;}
.y1fb{bottom:272.458667pt;}
.yf6{bottom:274.745235pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y230{bottom:277.001333pt;}
.y1ca{bottom:278.197333pt;}
.yc5{bottom:279.393333pt;}
.y124{bottom:279.520000pt;}
.y157{bottom:279.646667pt;}
.y99{bottom:279.790667pt;}
.y1ba{bottom:281.125333pt;}
.y33{bottom:282.705333pt;}
.y1b8{bottom:283.292000pt;}
.y18b{bottom:283.700000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1fa{bottom:288.080000pt;}
.y61{bottom:289.197333pt;}
.y22f{bottom:292.344000pt;}
.yf5{bottom:295.289642pt;}
.yc4{bottom:296.129333pt;}
.y98{bottom:296.528000pt;}
.y32{bottom:298.605333pt;}
.y1c9{bottom:298.920000pt;}
.y156{bottom:300.369333pt;}
.y18a{bottom:300.437333pt;}
.y123{bottom:300.533333pt;}
.y1b9{bottom:302.485333pt;}
.y1f9{bottom:303.701333pt;}
.y22e{bottom:307.686667pt;}
.y11{bottom:309.452000pt;}
.yc3{bottom:312.866667pt;}
.y97{bottom:313.265333pt;}
.y31{bottom:314.505333pt;}
.yf4{bottom:315.736854pt;}
.y1c8{bottom:316.852000pt;}
.y189{bottom:317.174667pt;}
.y1f8{bottom:319.324000pt;}
.y122{bottom:321.548000pt;}
.y22d{bottom:323.029333pt;}
.y11c{bottom:327.320000pt;}
.yc2{bottom:329.604000pt;}
.y96{bottom:330.002667pt;}
.y155{bottom:330.257333pt;}
.y1b7{bottom:330.592000pt;}
.y188{bottom:333.912000pt;}
.y121{bottom:336.158667pt;}
.yf3{bottom:336.280259pt;}
.y22c{bottom:338.372000pt;}
.y30{bottom:338.376000pt;}
.y11b{bottom:341.932000pt;}
.y1f7{bottom:342.914667pt;}
.y10{bottom:343.809333pt;}
.yc1{bottom:346.341333pt;}
.y95{bottom:346.740000pt;}
.y154{bottom:346.994667pt;}
.y187{bottom:350.649333pt;}
.y22b{bottom:353.714667pt;}
.y2f{bottom:354.277333pt;}
.y60{bottom:355.997333pt;}
.yf2{bottom:356.823664pt;}
.y120{bottom:357.173333pt;}
.yf{bottom:362.706666pt;}
.y1b6{bottom:362.824000pt;}
.yc0{bottom:363.078667pt;}
.y94{bottom:363.477333pt;}
.y153{bottom:363.732000pt;}
.y1f6{bottom:366.506667pt;}
.y186{bottom:367.386667pt;}
.y22a{bottom:369.056000pt;}
.y2e{bottom:370.177333pt;}
.y1b5{bottom:375.444000pt;}
.yf1{bottom:377.275053pt;}
.y11f{bottom:378.186667pt;}
.ybf{bottom:379.816000pt;}
.y93{bottom:380.214667pt;}
.y152{bottom:380.469333pt;}
.y185{bottom:384.124000pt;}
.y229{bottom:384.398667pt;}
.y1b4{bottom:388.062667pt;}
.y5f{bottom:389.233333pt;}
.y1f5{bottom:390.098667pt;}
.y2d{bottom:394.048000pt;}
.ybe{bottom:396.553333pt;}
.y92{bottom:396.952000pt;}
.y151{bottom:397.206667pt;}
.yf0{bottom:397.818458pt;}
.y11e{bottom:399.201333pt;}
.y228{bottom:399.741333pt;}
.y1b3{bottom:400.682667pt;}
.y184{bottom:400.861333pt;}
.y1f4{bottom:405.720000pt;}
.y5e{bottom:406.528000pt;}
.y2c{bottom:409.948000pt;}
.ybd{bottom:413.290667pt;}
.y1b2{bottom:413.301333pt;}
.y91{bottom:413.689333pt;}
.y11d{bottom:413.813333pt;}
.y150{bottom:413.944000pt;}
.y227{bottom:415.084000pt;}
.y183{bottom:417.598667pt;}
.yef{bottom:418.265670pt;}
.y5d{bottom:423.824000pt;}
.y2b{bottom:425.848000pt;}
.y1b1{bottom:425.921333pt;}
.y1f3{bottom:429.310667pt;}
.ybc{bottom:430.028000pt;}
.y90{bottom:430.426667pt;}
.y14f{bottom:430.681333pt;}
.ye{bottom:430.990669pt;}
.y182{bottom:434.336000pt;}
.y11a{bottom:434.826667pt;}
.y1b0{bottom:438.540000pt;}
.yee{bottom:438.809075pt;}
.y5c{bottom:441.118667pt;}
.y2a{bottom:441.749333pt;}
.y1f2{bottom:444.932000pt;}
.y226{bottom:445.769333pt;}
.ybb{bottom:446.765333pt;}
.yd{bottom:446.990669pt;}
.y8f{bottom:447.164000pt;}
.y14e{bottom:447.418667pt;}
.y181{bottom:451.072000pt;}
.y1ae{bottom:451.160000pt;}
.y1af{bottom:455.017333pt;}
.y29{bottom:457.649333pt;}
.y5b{bottom:458.413333pt;}
.yed{bottom:459.355840pt;}
.y1f1{bottom:460.553333pt;}
.y225{bottom:461.112000pt;}
.yc{bottom:462.990669pt;}
.yba{bottom:463.502667pt;}
.y8e{bottom:463.901333pt;}
.y14d{bottom:464.156000pt;}
.y119{bottom:465.590667pt;}
.y180{bottom:467.809333pt;}
.y1ad{bottom:469.206667pt;}
.y28{bottom:473.549333pt;}
.y5a{bottom:475.709333pt;}
.y224{bottom:476.454667pt;}
.yb{bottom:478.990666pt;}
.yec{bottom:479.803053pt;}
.yb9{bottom:480.240000pt;}
.y8d{bottom:480.638667pt;}
.y14c{bottom:480.893333pt;}
.y1f0{bottom:484.145333pt;}
.y17f{bottom:484.546667pt;}
.y1ac{bottom:488.228000pt;}
.y27{bottom:489.450667pt;}
.y223{bottom:491.797333pt;}
.y59{bottom:493.004000pt;}
.ya{bottom:494.990666pt;}
.yb8{bottom:496.977333pt;}
.y8c{bottom:497.376000pt;}
.y14b{bottom:497.630667pt;}
.y118{bottom:498.572000pt;}
.y1ef{bottom:499.766667pt;}
.yeb{bottom:500.346458pt;}
.y17e{bottom:501.284000pt;}
.y26{bottom:505.350667pt;}
.y222{bottom:507.138667pt;}
.y1ab{bottom:507.250667pt;}
.y58{bottom:510.300000pt;}
.yb7{bottom:513.714667pt;}
.y8b{bottom:514.113333pt;}
.y14a{bottom:514.368000pt;}
.y117{bottom:515.309333pt;}
.y1ee{bottom:515.388000pt;}
.y17d{bottom:518.021333pt;}
.yea{bottom:520.889862pt;}
.y25{bottom:521.250667pt;}
.y221{bottom:522.481333pt;}
.y1aa{bottom:526.272000pt;}
.y57{bottom:527.594667pt;}
.yb6{bottom:530.452000pt;}
.y8a{bottom:530.850667pt;}
.y1ed{bottom:531.009333pt;}
.y149{bottom:531.104000pt;}
.y116{bottom:532.046667pt;}
.y17c{bottom:534.758667pt;}
.y24{bottom:537.152000pt;}
.y220{bottom:537.824000pt;}
.ye9{bottom:541.337075pt;}
.y56{bottom:544.889333pt;}
.y1a9{bottom:545.293333pt;}
.y1ec{bottom:546.632000pt;}
.yb5{bottom:547.189333pt;}
.y89{bottom:547.588000pt;}
.y148{bottom:547.841333pt;}
.y115{bottom:548.784000pt;}
.y17b{bottom:551.496000pt;}
.y21f{bottom:553.166667pt;}
.ye8{bottom:561.880038pt;}
.y55{bottom:562.185333pt;}
.y1eb{bottom:562.253333pt;}
.yb4{bottom:563.926667pt;}
.y1a8{bottom:564.314667pt;}
.y88{bottom:564.325333pt;}
.y147{bottom:564.578667pt;}
.y114{bottom:565.520000pt;}
.y17a{bottom:568.233333pt;}
.y21e{bottom:568.509333pt;}
.y9{bottom:573.786667pt;}
.y54{bottom:579.480000pt;}
.yb3{bottom:580.664000pt;}
.y87{bottom:581.062667pt;}
.y146{bottom:581.316000pt;}
.y113{bottom:582.257333pt;}
.ye7{bottom:582.328854pt;}
.y1a7{bottom:583.336000pt;}
.y21d{bottom:583.852000pt;}
.y179{bottom:584.970667pt;}
.y8{bottom:592.685334pt;}
.y1ea{bottom:593.814667pt;}
.y53{bottom:596.774667pt;}
.yb2{bottom:597.401333pt;}
.y86{bottom:597.800000pt;}
.y145{bottom:598.053333pt;}
.y112{bottom:598.994667pt;}
.y21c{bottom:599.194667pt;}
.y178{bottom:601.708000pt;}
.y1a6{bottom:602.357333pt;}
.ye6{bottom:602.872259pt;}
.y1e9{bottom:610.552000pt;}
.yb1{bottom:614.138667pt;}
.y85{bottom:614.537333pt;}
.y144{bottom:614.790667pt;}
.y111{bottom:615.732000pt;}
.y177{bottom:618.445333pt;}
.y1a5{bottom:621.378667pt;}
.ye5{bottom:623.415664pt;}
.y1e8{bottom:627.289333pt;}
.y21b{bottom:629.878667pt;}
.yb0{bottom:630.876000pt;}
.y52{bottom:631.073333pt;}
.y84{bottom:631.274667pt;}
.y110{bottom:632.469333pt;}
.y176{bottom:635.182667pt;}
.y1a4{bottom:640.400000pt;}
.ye4{bottom:643.867053pt;}
.y1e7{bottom:644.026667pt;}
.y21a{bottom:645.221333pt;}
.y51{bottom:645.420000pt;}
.y7{bottom:645.598667pt;}
.yaf{bottom:647.613333pt;}
.y83{bottom:648.012000pt;}
.y10f{bottom:649.206667pt;}
.y143{bottom:650.465333pt;}
.y175{bottom:651.920000pt;}
.y1a3{bottom:659.421333pt;}
.y219{bottom:660.564000pt;}
.y1e6{bottom:660.764000pt;}
.y142{bottom:663.084000pt;}
.y50{bottom:663.624000pt;}
.yae{bottom:664.350667pt;}
.ye3{bottom:664.410458pt;}
.y82{bottom:664.749333pt;}
.y10e{bottom:665.944000pt;}
.y174{bottom:668.657333pt;}
.y3{bottom:668.977329pt;}
.y4f{bottom:674.112000pt;}
.y141{bottom:675.704000pt;}
.y218{bottom:675.906667pt;}
.y1e5{bottom:677.501333pt;}
.y1a2{bottom:678.442667pt;}
.yad{bottom:681.088000pt;}
.y81{bottom:681.485333pt;}
.y10d{bottom:682.681333pt;}
.ye2{bottom:684.857670pt;}
.y173{bottom:685.394667pt;}
.y140{bottom:688.322667pt;}
.y217{bottom:691.249333pt;}
.y4e{bottom:692.316000pt;}
.y1e4{bottom:694.238667pt;}
.y1a1{bottom:697.464000pt;}
.yac{bottom:697.825333pt;}
.y80{bottom:698.222667pt;}
.y10c{bottom:699.418667pt;}
.y13f{bottom:700.942667pt;}
.y172{bottom:702.132000pt;}
.y4d{bottom:702.805333pt;}
.ye1{bottom:705.401075pt;}
.y216{bottom:706.592000pt;}
.y1e3{bottom:710.976000pt;}
.yab{bottom:714.562667pt;}
.y7f{bottom:714.960000pt;}
.y10b{bottom:716.156000pt;}
.y1a0{bottom:716.485333pt;}
.y171{bottom:718.869333pt;}
.y13e{bottom:720.349333pt;}
.y4c{bottom:721.008000pt;}
.y215{bottom:721.934667pt;}
.ye0{bottom:725.946237pt;}
.y1e2{bottom:727.713333pt;}
.yaa{bottom:731.300000pt;}
.y4b{bottom:731.497333pt;}
.y7e{bottom:731.697333pt;}
.y10a{bottom:732.893333pt;}
.y19f{bottom:735.506667pt;}
.y214{bottom:737.277333pt;}
.y13d{bottom:741.362667pt;}
.y1e1{bottom:744.450667pt;}
.ydf{bottom:746.395053pt;}
.ya9{bottom:748.036000pt;}
.y7d{bottom:748.434667pt;}
.y109{bottom:749.630667pt;}
.y4a{bottom:749.701333pt;}
.y213{bottom:752.620000pt;}
.y19e{bottom:754.528000pt;}
.y170{bottom:754.544000pt;}
.y49{bottom:760.189333pt;}
.y1e0{bottom:761.186667pt;}
.y13c{bottom:762.377333pt;}
.ya8{bottom:764.773333pt;}
.y7c{bottom:765.172000pt;}
.y108{bottom:766.368000pt;}
.yde{bottom:766.938458pt;}
.y16f{bottom:767.162667pt;}
.y212{bottom:767.961333pt;}
.y19d{bottom:773.549333pt;}
.y1df{bottom:777.924000pt;}
.y48{bottom:778.393333pt;}
.y16e{bottom:779.782667pt;}
.ya7{bottom:781.510667pt;}
.y2{bottom:781.661334pt;}
.y7b{bottom:781.909333pt;}
.y107{bottom:783.105333pt;}
.y211{bottom:783.304000pt;}
.y13b{bottom:783.390667pt;}
.ydd{bottom:787.385670pt;}
.y47{bottom:788.882667pt;}
.y16d{bottom:792.401333pt;}
.y19c{bottom:792.572000pt;}
.y1de{bottom:794.661333pt;}
.ya6{bottom:798.248000pt;}
.y7a{bottom:798.646667pt;}
.y106{bottom:799.842667pt;}
.y13a{bottom:804.405333pt;}
.y16c{bottom:805.021333pt;}
.y46{bottom:807.086667pt;}
.ydc{bottom:807.929075pt;}
.y1dd{bottom:811.398667pt;}
.y19b{bottom:811.593333pt;}
.y210{bottom:813.989333pt;}
.y79{bottom:815.384000pt;}
.y105{bottom:816.580000pt;}
.y16a{bottom:817.640000pt;}
.ya5{bottom:818.970667pt;}
.y139{bottom:819.017333pt;}
.y16b{bottom:821.497333pt;}
.y132{bottom:823.221333pt;}
.y1dc{bottom:828.136000pt;}
.ydb{bottom:828.475840pt;}
.y20f{bottom:829.332000pt;}
.y19a{bottom:830.614667pt;}
.y78{bottom:832.121333pt;}
.y104{bottom:833.317333pt;}
.y169{bottom:836.285333pt;}
.y131{bottom:837.833333pt;}
.y138{bottom:840.030667pt;}
.y20e{bottom:844.674667pt;}
.y1db{bottom:844.873333pt;}
.y45{bottom:846.798667pt;}
.y77{bottom:848.858667pt;}
.yda{bottom:848.923053pt;}
.y199{bottom:849.636000pt;}
.y103{bottom:850.054667pt;}
.y168{bottom:857.300000pt;}
.y1{bottom:859.312000pt;}
.y20d{bottom:860.017333pt;}
.y137{bottom:861.045333pt;}
.y1da{bottom:861.610667pt;}
.y44{bottom:863.536000pt;}
.y76{bottom:865.596000pt;}
.y102{bottom:866.792000pt;}
.y198{bottom:868.657333pt;}
.yd9{bottom:869.466458pt;}
.y20c{bottom:875.360000pt;}
.y167{bottom:878.313333pt;}
.y1d9{bottom:878.348000pt;}
.y136{bottom:882.058667pt;}
.y75{bottom:882.333333pt;}
.y101{bottom:887.514667pt;}
.y196{bottom:887.678667pt;}
.yd8{bottom:890.009862pt;}
.y23c{bottom:890.701333pt;}
.y20b{bottom:890.702667pt;}
.y195{bottom:893.988000pt;}
.y1d8{bottom:895.085333pt;}
.y43{bottom:896.213333pt;}
.y135{bottom:896.670667pt;}
.y74{bottom:899.070667pt;}
.y166{bottom:899.328000pt;}
.y197{bottom:900.297333pt;}
.y20a{bottom:906.044000pt;}
.yd7{bottom:910.457075pt;}
.y1d7{bottom:911.822667pt;}
.y73{bottom:915.808000pt;}
.y100{bottom:917.402667pt;}
.y134{bottom:917.685333pt;}
.y194{bottom:919.318667pt;}
.y165{bottom:920.341333pt;}
.y42{bottom:921.320000pt;}
.y209{bottom:921.386667pt;}
.y192{bottom:926.925333pt;}
.y1d6{bottom:928.560000pt;}
.yd6{bottom:931.001642pt;}
.y133{bottom:932.296000pt;}
.y72{bottom:932.545333pt;}
.y164{bottom:934.953333pt;}
.y208{bottom:936.729333pt;}
.y193{bottom:938.341333pt;}
.y1d5{bottom:945.297333pt;}
.y41{bottom:946.425333pt;}
.y71{bottom:949.282667pt;}
.yff{bottom:950.080000pt;}
.yd5{bottom:951.448854pt;}
.y207{bottom:952.072000pt;}
.y130{bottom:953.310667pt;}
.y163{bottom:955.966667pt;}
.y191{bottom:957.362667pt;}
.y1d4{bottom:962.034667pt;}
.y70{bottom:966.020000pt;}
.y206{bottom:967.414667pt;}
.y40{bottom:971.530667pt;}
.yd4{bottom:971.992259pt;}
.y6f{bottom:982.757333pt;}
.y12f{bottom:984.073333pt;}
.yd3{bottom:992.535664pt;}
.y3d{bottom:1010.186667pt;}
.yd2{bottom:1012.984480pt;}
.y6e{bottom:1038.548000pt;}
.yd1{bottom:1071.352624pt;}
.yd0{bottom:1081.624480pt;}
.h11{height:23.209028pt;}
.hd{height:26.836216pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h22{height:30.732706pt;}
.h12{height:30.945242pt;}
.h17{height:31.200285pt;}
.hc{height:33.545270pt;}
.h13{height:34.574438pt;}
.h14{height:34.813542pt;}
.h20{height:35.100467pt;}
.h1a{height:36.184312pt;}
.h19{height:37.456125pt;}
.h15{height:38.415786pt;}
.h16{height:38.681455pt;}
.he{height:39.000258pt;}
.h6{height:40.800000pt;}
.h1e{height:42.243750pt;}
.h3{height:42.840000pt;}
.h25{height:44.250973pt;}
.hb{height:45.353733pt;}
.h1d{height:45.434437pt;}
.h1b{height:46.812187pt;}
.h1c{height:46.813954pt;}
.h10{height:48.481423pt;}
.h23{height:48.683332pt;}
.h2{height:48.960000pt;}
.h24{height:55.970039pt;}
.h1f{height:64.034876pt;}
.h21{height:64.040209pt;}
.h26{height:64.489105pt;}
.hf{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h18{height:189.476800pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:207.298721pt;}
.w5{width:377.272000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x69{left:-208.116800pt;}
.x0{left:0.000000pt;}
.x6a{left:34.475200pt;}
.x5{left:47.621333pt;}
.x6{left:50.623837pt;}
.x71{left:70.148000pt;}
.x86{left:71.234667pt;}
.x73{left:73.034667pt;}
.x7e{left:74.014667pt;}
.xd5{left:75.710667pt;}
.x72{left:76.698667pt;}
.x85{left:80.572000pt;}
.x7d{left:82.993333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x87{left:153.970667pt;}
.x89{left:156.332000pt;}
.x74{left:158.101333pt;}
.x81{left:160.646667pt;}
.x78{left:163.809333pt;}
.x83{left:165.769333pt;}
.x4{left:180.874667pt;}
.x82{left:200.110667pt;}
.x84{left:201.485333pt;}
.x7c{left:209.113333pt;}
.x88{left:214.236000pt;}
.x7a{left:216.202667pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x8c{left:232.389333pt;}
.x9d{left:234.384000pt;}
.x9c{left:235.365333pt;}
.x77{left:237.266667pt;}
.xb3{left:238.538667pt;}
.x8{left:239.924000pt;}
.xb2{left:240.950667pt;}
.xb4{left:243.496000pt;}
.xb1{left:244.553333pt;}
.x7b{left:246.478667pt;}
.xb0{left:248.702667pt;}
.xb{left:250.204000pt;}
.x8f{left:253.980000pt;}
.x75{left:255.248000pt;}
.x8b{left:257.010667pt;}
.x76{left:260.400000pt;}
.x4d{left:262.625333pt;}
.x8d{left:265.402667pt;}
.xcf{left:266.510667pt;}
.x31{left:270.972000pt;}
.xa{left:273.661333pt;}
.xd0{left:274.896000pt;}
.x7f{left:276.246667pt;}
.xc2{left:279.416000pt;}
.x50{left:281.105333pt;}
.x1d{left:282.557333pt;}
.x32{left:284.256000pt;}
.x33{left:287.622667pt;}
.x8a{left:292.685333pt;}
.x51{left:294.389333pt;}
.x1e{left:295.841333pt;}
.x53{left:297.314667pt;}
.x1f{left:299.125333pt;}
.x34{left:300.906667pt;}
.x67{left:307.438667pt;}
.x54{left:310.598667pt;}
.x20{left:312.409333pt;}
.x37{left:314.669333pt;}
.x21{left:315.693333pt;}
.xc3{left:318.038667pt;}
.x96{left:319.806667pt;}
.x55{left:320.882667pt;}
.x5f{left:322.690667pt;}
.x68{left:323.972000pt;}
.x45{left:325.634667pt;}
.x8e{left:327.276000pt;}
.x22{left:328.977333pt;}
.xa2{left:329.926667pt;}
.x80{left:331.012000pt;}
.x79{left:332.602667pt;}
.x56{left:334.165333pt;}
.x60{left:335.974667pt;}
.xad{left:337.466667pt;}
.x46{left:338.918667pt;}
.xc4{left:341.218667pt;}
.xa3{left:343.210667pt;}
.xac{left:344.538667pt;}
.xcd{left:347.570667pt;}
.x63{left:348.478667pt;}
.xc5{left:357.756000pt;}
.x18{left:361.406667pt;}
.x3e{left:364.896000pt;}
.x19{left:368.048000pt;}
.x1a{left:371.425333pt;}
.xce{left:372.361333pt;}
.xc6{left:374.294667pt;}
.x47{left:376.421333pt;}
.x3f{left:378.180000pt;}
.x1b{left:384.709333pt;}
.x57{left:385.704000pt;}
.x48{left:389.704000pt;}
.x1c{left:391.464000pt;}
.xc7{left:394.086667pt;}
.x49{left:395.706667pt;}
.x35{left:397.105333pt;}
.x58{left:398.986667pt;}
.x93{left:400.530667pt;}
.x3{left:404.408000pt;}
.xc8{left:407.370667pt;}
.x4a{left:408.989333pt;}
.x36{left:410.389333pt;}
.x4b{left:412.244000pt;}
.x94{left:413.813333pt;}
.x95{left:417.117333pt;}
.xb9{left:422.889333pt;}
.xc{left:424.433333pt;}
.x4c{left:425.528000pt;}
.xc9{left:427.522667pt;}
.xd{left:431.076000pt;}
.xd1{left:433.156000pt;}
.x6b{left:434.502667pt;}
.x5c{left:435.598667pt;}
.xbc{left:437.337333pt;}
.x5e{left:439.486667pt;}
.x3c{left:440.545333pt;}
.xb8{left:442.133333pt;}
.xb5{left:443.336000pt;}
.xbd{left:446.794667pt;}
.x6c{left:447.786667pt;}
.x5d{left:448.881333pt;}
.x6d{left:451.086667pt;}
.x3d{left:453.829333pt;}
.x61{left:457.825333pt;}
.x9e{left:459.324000pt;}
.xb6{left:462.680000pt;}
.x6e{left:464.370667pt;}
.xbe{left:466.896000pt;}
.x62{left:471.109333pt;}
.x52{left:472.953333pt;}
.x5b{left:480.426667pt;}
.x43{left:486.530667pt;}
.x9f{left:488.886667pt;}
.x23{left:490.562667pt;}
.xb7{left:492.240000pt;}
.x97{left:493.129333pt;}
.xbf{left:496.824000pt;}
.x44{left:499.814667pt;}
.x98{left:502.866667pt;}
.x24{left:503.846667pt;}
.xbb{left:509.500000pt;}
.x9b{left:513.058667pt;}
.x38{left:517.590667pt;}
.xba{left:521.452000pt;}
.xa7{left:525.864000pt;}
.xa4{left:527.232000pt;}
.xca{left:528.350667pt;}
.x39{left:530.874667pt;}
.xa8{left:539.148000pt;}
.xa5{left:540.516000pt;}
.xcb{left:541.634667pt;}
.x41{left:543.156000pt;}
.xa9{left:547.396000pt;}
.x2f{left:549.121333pt;}
.xaf{left:552.998667pt;}
.xae{left:555.065333pt;}
.x42{left:556.440000pt;}
.x14{left:560.629333pt;}
.x30{left:562.405333pt;}
.xaa{left:563.933333pt;}
.x6f{left:566.506667pt;}
.x15{left:573.912000pt;}
.xab{left:577.217333pt;}
.x70{left:579.790667pt;}
.x9a{left:581.049333pt;}
.x91{left:583.578667pt;}
.x65{left:586.300000pt;}
.x99{left:592.334667pt;}
.xcc{left:594.786667pt;}
.x92{left:596.861333pt;}
.x66{left:599.584000pt;}
.xde{left:601.704000pt;}
.xdf{left:625.614667pt;}
.x16{left:644.321333pt;}
.x40{left:648.346667pt;}
.xc0{left:650.422667pt;}
.xd3{left:651.676000pt;}
.xd7{left:653.836000pt;}
.xc1{left:655.072000pt;}
.x17{left:657.604000pt;}
.x59{left:660.849333pt;}
.x25{left:662.194667pt;}
.xe0{left:667.121333pt;}
.xa0{left:668.421333pt;}
.xd6{left:671.864000pt;}
.x5a{left:674.133333pt;}
.x26{left:675.478667pt;}
.xd8{left:677.746667pt;}
.x27{left:678.733333pt;}
.xdb{left:679.638667pt;}
.xa1{left:681.705333pt;}
.xd2{left:685.109333pt;}
.x3a{left:686.994667pt;}
.x2e{left:689.238667pt;}
.x64{left:690.701333pt;}
.x28{left:692.016000pt;}
.x29{left:694.076000pt;}
.x4e{left:695.165333pt;}
.x90{left:696.561333pt;}
.xdd{left:697.817333pt;}
.x3b{left:700.278667pt;}
.xd9{left:702.041333pt;}
.x10{left:703.126667pt;}
.xe{left:705.321333pt;}
.x2a{left:707.360000pt;}
.x4f{left:708.448000pt;}
.x11{left:709.768000pt;}
.xf{left:711.962667pt;}
.x12{left:713.022667pt;}
.xa6{left:717.969333pt;}
.x13{left:719.664000pt;}
.x2b{left:723.897333pt;}
.xdc{left:725.062667pt;}
.xda{left:725.952000pt;}
.x2c{left:727.152000pt;}
.x2d{left:740.436000pt;}
.xd4{left:744.250667pt;}
}




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