
    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_c63b2d8906be472838f30d78.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_8ff9b194794f4fb86575f4db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d863d4e48da98cce347d9f5a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a4e2c4b6bf5bc939818ea7e8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b64f954a71aea1803fcf3203.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ebadcbe88c09346b567579c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_28b88d45fe04e136f5f05f8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cc5edc22292764938a7bbb75.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d41205e1c58b6ea039258b2b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5498fa26c25a892fbf0fbd4b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9af4f2c53c755702ff8dd214.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ae4c386ed315e3d7e5c91121.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939941;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_f48172410eb1b61ede14f890.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_9c1f4bdccb0b6273996ca0d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_746a9d29b8425f06d42c0284.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_30e4060ad878c93f5d6602fd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.494000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e24d30187fba24a035832e13.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d13e511947811ada2a656d2f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a57279fd8a6e78da48d31467.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b9f9d8b27c978fa98251d062.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.869000;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;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m19{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);}
.m13{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);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m1a{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);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m16{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);}
.m15{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);}
.me{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);}
.m28{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);}
.m18{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);}
.m14{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);}
.m1d{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);}
.m1c{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1b{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);}
.m23{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mb{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m4{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);}
.m26{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);}
.m7{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);}
.m1f{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-50.398596px;}
.v6{vertical-align:-31.308900px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.161600px;}
.v5{vertical-align:27.942900px;}
.v7{vertical-align:31.303800px;}
.v4{vertical-align:32.880000px;}
.v2{vertical-align:40.677192px;}
.ls8e{letter-spacing:-0.529056px;}
.ls81{letter-spacing:-0.505008px;}
.ls67{letter-spacing:-0.498996px;}
.ls69{letter-spacing:-0.480960px;}
.ls5d{letter-spacing:-0.456912px;}
.ls95{letter-spacing:-0.432864px;}
.ls70{letter-spacing:-0.420840px;}
.ls8c{letter-spacing:-0.408816px;}
.ls66{letter-spacing:-0.384768px;}
.ls6c{letter-spacing:-0.366732px;}
.ls86{letter-spacing:-0.324648px;}
.ls89{letter-spacing:-0.312624px;}
.ls61{letter-spacing:-0.300600px;}
.ls8d{letter-spacing:-0.288576px;}
.ls92{letter-spacing:-0.264528px;}
.ls96{letter-spacing:-0.252504px;}
.ls8b{letter-spacing:-0.246492px;}
.ls63{letter-spacing:-0.216432px;}
.ls74{letter-spacing:-0.204408px;}
.ls88{letter-spacing:-0.198396px;}
.ls83{letter-spacing:-0.192384px;}
.ls71{letter-spacing:-0.180360px;}
.ls73{letter-spacing:-0.174348px;}
.ls5f{letter-spacing:-0.168336px;}
.ls54{letter-spacing:-0.162792px;}
.ls82{letter-spacing:-0.162324px;}
.ls85{letter-spacing:-0.156312px;}
.ls79{letter-spacing:-0.150300px;}
.ls7e{letter-spacing:-0.144288px;}
.ls7b{letter-spacing:-0.138276px;}
.ls87{letter-spacing:-0.132264px;}
.ls76{letter-spacing:-0.126252px;}
.ls62{letter-spacing:-0.120240px;}
.ls84{letter-spacing:-0.114228px;}
.ls6f{letter-spacing:-0.108216px;}
.ls53{letter-spacing:-0.105336px;}
.ls6a{letter-spacing:-0.102204px;}
.ls6d{letter-spacing:-0.096192px;}
.ls75{letter-spacing:-0.090180px;}
.ls8a{letter-spacing:-0.084168px;}
.ls7c{letter-spacing:-0.078156px;}
.ls78{letter-spacing:-0.072144px;}
.ls7a{letter-spacing:-0.066132px;}
.ls5e{letter-spacing:-0.060120px;}
.ls5b{letter-spacing:-0.054108px;}
.ls5a{letter-spacing:-0.054000px;}
.ls55{letter-spacing:-0.052668px;}
.ls65{letter-spacing:-0.048096px;}
.ls60{letter-spacing:-0.042084px;}
.ls8f{letter-spacing:-0.037800px;}
.ls5c{letter-spacing:-0.036072px;}
.ls6b{letter-spacing:-0.030060px;}
.ls6e{letter-spacing:-0.024048px;}
.ls59{letter-spacing:-0.021600px;}
.ls64{letter-spacing:-0.018036px;}
.ls77{letter-spacing:-0.012024px;}
.ls7d{letter-spacing:-0.006012px;}
.ls90{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.lsb1{letter-spacing:0.000094px;}
.lsc{letter-spacing:0.000124px;}
.lsc9{letter-spacing:0.000239px;}
.ls13{letter-spacing:0.000242px;}
.lsc6{letter-spacing:0.000250px;}
.ls10{letter-spacing:0.000361px;}
.lsa7{letter-spacing:0.000435px;}
.lscc{letter-spacing:0.000443px;}
.lsca{letter-spacing:0.000632px;}
.lscf{letter-spacing:0.000644px;}
.ls98{letter-spacing:0.000676px;}
.lsce{letter-spacing:0.000800px;}
.ls9e{letter-spacing:0.001018px;}
.lsc2{letter-spacing:0.001123px;}
.lsd3{letter-spacing:0.001416px;}
.lsd2{letter-spacing:0.001534px;}
.ls4{letter-spacing:0.001541px;}
.ls14{letter-spacing:0.001668px;}
.lsf{letter-spacing:0.001960px;}
.lsaa{letter-spacing:0.002016px;}
.ls8{letter-spacing:0.002224px;}
.lse{letter-spacing:0.002239px;}
.lsc8{letter-spacing:0.002338px;}
.ls12{letter-spacing:0.002360px;}
.lsbd{letter-spacing:0.002573px;}
.ls9a{letter-spacing:0.002612px;}
.lsbe{letter-spacing:0.002652px;}
.lsbf{letter-spacing:0.002667px;}
.lsd{letter-spacing:0.002688px;}
.lsb2{letter-spacing:0.002704px;}
.lsa3{letter-spacing:0.002779px;}
.lsc7{letter-spacing:0.002818px;}
.ls2{letter-spacing:0.002870px;}
.lsa{letter-spacing:0.002958px;}
.lsb{letter-spacing:0.003394px;}
.ls9{letter-spacing:0.003494px;}
.ls99{letter-spacing:0.003859px;}
.ls11{letter-spacing:0.004435px;}
.ls16{letter-spacing:0.004788px;}
.lsc1{letter-spacing:0.004800px;}
.ls5{letter-spacing:0.005415px;}
.ls28{letter-spacing:0.006012px;}
.ls3d{letter-spacing:0.012024px;}
.ls1e{letter-spacing:0.018036px;}
.ls49{letter-spacing:0.021600px;}
.ls1f{letter-spacing:0.024048px;}
.ls44{letter-spacing:0.030060px;}
.ls48{letter-spacing:0.032400px;}
.ls23{letter-spacing:0.036072px;}
.ls22{letter-spacing:0.042084px;}
.ls27{letter-spacing:0.048096px;}
.ls24{letter-spacing:0.054108px;}
.ls17{letter-spacing:0.057456px;}
.ls3a{letter-spacing:0.060120px;}
.ls40{letter-spacing:0.066132px;}
.ls3c{letter-spacing:0.072144px;}
.ls91{letter-spacing:0.075600px;}
.ls4f{letter-spacing:0.078156px;}
.ls1d{letter-spacing:0.081000px;}
.ls36{letter-spacing:0.084168px;}
.ls1a{letter-spacing:0.086184px;}
.ls3b{letter-spacing:0.090180px;}
.ls4e{letter-spacing:0.096192px;}
.ls4b{letter-spacing:0.102204px;}
.ls72{letter-spacing:0.114228px;}
.ls93{letter-spacing:0.120240px;}
.ls80{letter-spacing:0.126252px;}
.ls19{letter-spacing:0.134064px;}
.ls2a{letter-spacing:0.138276px;}
.ls58{letter-spacing:0.143640px;}
.ls68{letter-spacing:0.144288px;}
.ls7f{letter-spacing:0.162324px;}
.ls94{letter-spacing:0.174348px;}
.ls1c{letter-spacing:0.178200px;}
.ls29{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.181944px;}
.ls33{letter-spacing:0.234468px;}
.ls15{letter-spacing:0.268128px;}
.ls57{letter-spacing:0.344736px;}
.ls56{letter-spacing:0.421344px;}
.ls25{letter-spacing:0.450900px;}
.ls26{letter-spacing:0.811620px;}
.ls45{letter-spacing:1.121472px;}
.ls42{letter-spacing:1.172340px;}
.ls7{letter-spacing:1.275394px;}
.ls41{letter-spacing:1.527048px;}
.ls43{letter-spacing:1.533060px;}
.ls3{letter-spacing:1.861130px;}
.ls2c{letter-spacing:1.887768px;}
.ls2b{letter-spacing:2.248488px;}
.ls39{letter-spacing:2.609208px;}
.ls47{letter-spacing:2.969928px;}
.ls46{letter-spacing:3.330648px;}
.ls3e{letter-spacing:6.210396px;}
.ls3f{letter-spacing:6.571116px;}
.ls37{letter-spacing:8.007984px;}
.ls38{letter-spacing:8.368704px;}
.ls21{letter-spacing:8.729424px;}
.ls20{letter-spacing:9.090144px;}
.ls34{letter-spacing:9.450864px;}
.ls35{letter-spacing:9.811584px;}
.lsd6{letter-spacing:9.987709px;}
.lsd8{letter-spacing:10.292400px;}
.lsd5{letter-spacing:10.636027px;}
.lsc3{letter-spacing:11.621829px;}
.ls9f{letter-spacing:11.951700px;}
.lsa2{letter-spacing:11.952019px;}
.lsa1{letter-spacing:11.957700px;}
.lsa0{letter-spacing:11.958019px;}
.ls6{letter-spacing:11.960850px;}
.ls9c{letter-spacing:12.083646px;}
.ls9d{letter-spacing:12.089700px;}
.lsa5{letter-spacing:12.146090px;}
.lsa4{letter-spacing:12.150614px;}
.ls9b{letter-spacing:12.347459px;}
.ls2f{letter-spacing:12.691332px;}
.ls2d{letter-spacing:13.052052px;}
.lsc4{letter-spacing:13.138635px;}
.lsd4{letter-spacing:13.195298px;}
.lscb{letter-spacing:13.254542px;}
.lscd{letter-spacing:13.268047px;}
.ls2e{letter-spacing:13.412772px;}
.lsa9{letter-spacing:13.446422px;}
.lsc0{letter-spacing:13.448400px;}
.lsa8{letter-spacing:13.452422px;}
.lsc5{letter-spacing:13.454400px;}
.lsd7{letter-spacing:13.553433px;}
.lsb4{letter-spacing:14.726100px;}
.lsb3{letter-spacing:14.727585px;}
.lsb7{letter-spacing:14.742742px;}
.lsb8{letter-spacing:14.743129px;}
.lsab{letter-spacing:14.787473px;}
.lsae{letter-spacing:14.790660px;}
.lsad{letter-spacing:14.793431px;}
.lsac{letter-spacing:14.796618px;}
.ls52{letter-spacing:15.242778px;}
.lsbc{letter-spacing:16.263065px;}
.lsbb{letter-spacing:16.265141px;}
.lsb6{letter-spacing:16.551300px;}
.lsb5{letter-spacing:16.553376px;}
.lsba{letter-spacing:16.845418px;}
.lsb9{letter-spacing:16.853376px;}
.lsd0{letter-spacing:17.320988px;}
.lsb0{letter-spacing:17.727771px;}
.lsaf{letter-spacing:17.729847px;}
.lsd1{letter-spacing:18.032753px;}
.lsa6{letter-spacing:19.307519px;}
.ls32{letter-spacing:29.609100px;}
.ls30{letter-spacing:29.954124px;}
.ls31{letter-spacing:29.969820px;}
.ls1{letter-spacing:32.009510px;}
.ls51{letter-spacing:119.248020px;}
.ls97{letter-spacing:144.369780px;}
.ls4d{letter-spacing:189.089424px;}
.ls50{letter-spacing:240.570180px;}
.ls4c{letter-spacing:553.771332px;}
.ls4a{letter-spacing:612.809172px;}
.ls1b{letter-spacing:1068.748632px;}
.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;}
}
.ws6a{word-spacing:-60.120000px;}
.ws5c{word-spacing:-47.880000px;}
.ws6{word-spacing:-17.394700px;}
.ws3f{word-spacing:-16.617617px;}
.ws10a{word-spacing:-15.655334px;}
.wsc8{word-spacing:-14.943900px;}
.ws1d{word-spacing:-13.915795px;}
.wscf{word-spacing:-13.449600px;}
.ws1c{word-spacing:-11.955150px;}
.wse0{word-spacing:-11.432160px;}
.ws55{word-spacing:-5.379804px;}
.ws59{word-spacing:-4.303843px;}
.ws30{word-spacing:-4.064741px;}
.wsfe{word-spacing:-3.466985px;}
.ws15e{word-spacing:-3.443098px;}
.ws4f{word-spacing:-3.407209px;}
.ws108{word-spacing:-3.281702px;}
.ws156{word-spacing:-3.227904px;}
.ws2a{word-spacing:-3.227882px;}
.ws160{word-spacing:-3.066509px;}
.ws161{word-spacing:-3.012710px;}
.ws143{word-spacing:-2.851315px;}
.ws15a{word-spacing:-2.797517px;}
.ws111{word-spacing:-2.367130px;}
.wsfb{word-spacing:-2.331248px;}
.ws110{word-spacing:-2.098138px;}
.ws57{word-spacing:-2.032370px;}
.ws40{word-spacing:-1.972595px;}
.ws3{word-spacing:-1.908367px;}
.ws112{word-spacing:-1.829146px;}
.ws12b{word-spacing:-1.775347px;}
.ws58{word-spacing:-1.733492px;}
.ws124{word-spacing:-1.721549px;}
.ws41{word-spacing:-1.673717px;}
.ws126{word-spacing:-1.667750px;}
.ws13e{word-spacing:-1.613952px;}
.wsc0{word-spacing:-1.554166px;}
.ws121{word-spacing:-1.452557px;}
.ws101{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws11f{word-spacing:-1.237363px;}
.ws54{word-spacing:-1.135736px;}
.ws131{word-spacing:-1.129766px;}
.wsc4{word-spacing:-1.016185px;}
.ws33{word-spacing:-0.956410px;}
.wsee{word-spacing:-0.860774px;}
.ws15{word-spacing:-0.836858px;}
.ws27{word-spacing:-0.717307px;}
.wsbf{word-spacing:-0.657532px;}
.ws152{word-spacing:-0.591782px;}
.ws13d{word-spacing:-0.537984px;}
.ws1f{word-spacing:-0.537980px;}
.ws60{word-spacing:-0.469224px;}
.wsf7{word-spacing:-0.418429px;}
.ws64{word-spacing:-0.392616px;}
.ws153{word-spacing:-0.376589px;}
.wsb{word-spacing:-0.358654px;}
.ws116{word-spacing:-0.322790px;}
.ws11{word-spacing:-0.298878px;}
.ws94{word-spacing:-0.294588px;}
.ws15c{word-spacing:-0.268992px;}
.ws69{word-spacing:-0.240480px;}
.ws9{word-spacing:-0.239102px;}
.wsb9{word-spacing:-0.234468px;}
.ws61{word-spacing:-0.229824px;}
.ws9b{word-spacing:-0.222444px;}
.ws113{word-spacing:-0.215194px;}
.ws80{word-spacing:-0.204408px;}
.ws74{word-spacing:-0.198396px;}
.ws65{word-spacing:-0.191520px;}
.ws9c{word-spacing:-0.186372px;}
.wsb8{word-spacing:-0.180360px;}
.ws8{word-spacing:-0.179327px;}
.ws8a{word-spacing:-0.174348px;}
.ws90{word-spacing:-0.162324px;}
.ws10d{word-spacing:-0.161395px;}
.wsb7{word-spacing:-0.156312px;}
.wsb6{word-spacing:-0.150300px;}
.ws9a{word-spacing:-0.144288px;}
.ws91{word-spacing:-0.138276px;}
.ws68{word-spacing:-0.135000px;}
.ws63{word-spacing:-0.134064px;}
.wsa4{word-spacing:-0.132264px;}
.wsb4{word-spacing:-0.129600px;}
.wsa7{word-spacing:-0.126252px;}
.ws9d{word-spacing:-0.120240px;}
.ws29{word-spacing:-0.119551px;}
.ws77{word-spacing:-0.114228px;}
.ws7a{word-spacing:-0.108216px;}
.ws114{word-spacing:-0.107597px;}
.ws5f{word-spacing:-0.105336px;}
.ws72{word-spacing:-0.102204px;}
.ws76{word-spacing:-0.096192px;}
.wsac{word-spacing:-0.090180px;}
.wsb0{word-spacing:-0.086400px;}
.ws7c{word-spacing:-0.084168px;}
.ws6d{word-spacing:-0.078156px;}
.wsb2{word-spacing:-0.075600px;}
.wsa3{word-spacing:-0.072144px;}
.ws7f{word-spacing:-0.066132px;}
.ws6c{word-spacing:-0.060120px;}
.wsf{word-spacing:-0.059776px;}
.ws98{word-spacing:-0.054108px;}
.ws67{word-spacing:-0.054000px;}
.ws11b{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.052668px;}
.wsb3{word-spacing:-0.048600px;}
.ws8f{word-spacing:-0.048096px;}
.ws62{word-spacing:-0.047880px;}
.wsfa{word-spacing:-0.045729px;}
.ws79{word-spacing:-0.042084px;}
.ws86{word-spacing:-0.036072px;}
.ws66{word-spacing:-0.032400px;}
.ws83{word-spacing:-0.030060px;}
.ws6e{word-spacing:-0.024048px;}
.ws71{word-spacing:-0.018036px;}
.wsb1{word-spacing:-0.016200px;}
.ws1{word-spacing:-0.016176px;}
.wseb{word-spacing:-0.015638px;}
.wsed{word-spacing:-0.013670px;}
.wsea{word-spacing:-0.013478px;}
.ws7b{word-spacing:-0.012024px;}
.wsef{word-spacing:-0.011933px;}
.ws6b{word-spacing:-0.006012px;}
.wsd7{word-spacing:-0.004521px;}
.wse4{word-spacing:-0.002140px;}
.wse7{word-spacing:-0.001577px;}
.ws0{word-spacing:0.000000px;}
.wsf1{word-spacing:0.001727px;}
.ws5d{word-spacing:0.004788px;}
.ws95{word-spacing:0.006012px;}
.ws92{word-spacing:0.012024px;}
.ws97{word-spacing:0.018036px;}
.wsaa{word-spacing:0.024048px;}
.ws8d{word-spacing:0.030060px;}
.ws85{word-spacing:0.036072px;}
.ws82{word-spacing:0.042084px;}
.wsc2{word-spacing:0.045729px;}
.ws87{word-spacing:0.048096px;}
.ws122{word-spacing:0.053798px;}
.wsa1{word-spacing:0.054108px;}
.ws5a{word-spacing:0.057456px;}
.ws13{word-spacing:0.059776px;}
.ws75{word-spacing:0.060120px;}
.ws8e{word-spacing:0.066132px;}
.wsa6{word-spacing:0.072144px;}
.ws96{word-spacing:0.078156px;}
.ws99{word-spacing:0.084168px;}
.ws93{word-spacing:0.090180px;}
.wsc3{word-spacing:0.091457px;}
.wsa2{word-spacing:0.096192px;}
.ws9f{word-spacing:0.102204px;}
.ws11c{word-spacing:0.107597px;}
.ws70{word-spacing:0.108216px;}
.ws8b{word-spacing:0.114228px;}
.ws5b{word-spacing:0.114912px;}
.ws10{word-spacing:0.119551px;}
.ws89{word-spacing:0.120240px;}
.wse3{word-spacing:0.122723px;}
.wsa0{word-spacing:0.132264px;}
.wsa8{word-spacing:0.138276px;}
.wse2{word-spacing:0.143462px;}
.ws8c{word-spacing:0.144288px;}
.ws78{word-spacing:0.156312px;}
.ws118{word-spacing:0.161395px;}
.ws5{word-spacing:0.179327px;}
.wsab{word-spacing:0.186372px;}
.wse6{word-spacing:0.191282px;}
.wsbb{word-spacing:0.192384px;}
.wsb5{word-spacing:0.204408px;}
.ws125{word-spacing:0.215194px;}
.wsae{word-spacing:0.228456px;}
.wsa{word-spacing:0.239102px;}
.ws73{word-spacing:0.240480px;}
.wsa9{word-spacing:0.252504px;}
.wsa5{word-spacing:0.264528px;}
.ws13b{word-spacing:0.268992px;}
.wsc{word-spacing:0.298878px;}
.ws84{word-spacing:0.306612px;}
.ws149{word-spacing:0.322790px;}
.ws7d{word-spacing:0.324648px;}
.wsad{word-spacing:0.348696px;}
.ws24{word-spacing:0.358654px;}
.ws88{word-spacing:0.360720px;}
.wsba{word-spacing:0.372744px;}
.ws6f{word-spacing:0.396792px;}
.ws12{word-spacing:0.418429px;}
.ws81{word-spacing:0.420840px;}
.ws7e{word-spacing:0.438876px;}
.ws9e{word-spacing:0.444888px;}
.wsaf{word-spacing:0.468936px;}
.ws16{word-spacing:0.478205px;}
.ws4e{word-spacing:0.537980px;}
.ws12a{word-spacing:0.591782px;}
.ws10b{word-spacing:0.645581px;}
.ws2f{word-spacing:0.717307px;}
.ws14b{word-spacing:0.753178px;}
.wsbd{word-spacing:0.777083px;}
.ws11a{word-spacing:0.860774px;}
.ws2c{word-spacing:0.896634px;}
.wsfd{word-spacing:0.956410px;}
.ws11d{word-spacing:0.968371px;}
.ws12c{word-spacing:1.022170px;}
.ws2d{word-spacing:1.075961px;}
.ws147{word-spacing:1.129766px;}
.ws7{word-spacing:1.135736px;}
.ws100{word-spacing:1.195512px;}
.ws47{word-spacing:1.255288px;}
.ws48{word-spacing:1.315063px;}
.ws32{word-spacing:1.434614px;}
.wsc9{word-spacing:1.494390px;}
.ws14c{word-spacing:1.506355px;}
.wsf5{word-spacing:1.613941px;}
.wsf9{word-spacing:1.728865px;}
.ws4{word-spacing:1.733492px;}
.ws13a{word-spacing:1.775347px;}
.wsf8{word-spacing:1.912819px;}
.wsc1{word-spacing:1.972595px;}
.ws103{word-spacing:2.032370px;}
.ws15f{word-spacing:2.044339px;}
.ws28{word-spacing:2.151922px;}
.ws50{word-spacing:2.211697px;}
.ws43{word-spacing:2.271473px;}
.ws162{word-spacing:2.367130px;}
.ws56{word-spacing:2.391024px;}
.wsd3{word-spacing:2.450800px;}
.ws35{word-spacing:2.570351px;}
.wsc7{word-spacing:2.630126px;}
.wsff{word-spacing:2.689902px;}
.ws15b{word-spacing:2.689920px;}
.ws12d{word-spacing:2.797517px;}
.wsf3{word-spacing:2.809453px;}
.ws4c{word-spacing:2.988780px;}
.ws46{word-spacing:3.048556px;}
.ws141{word-spacing:3.066509px;}
.wsf6{word-spacing:3.108331px;}
.ws44{word-spacing:3.347434px;}
.ws159{word-spacing:3.443098px;}
.wsf4{word-spacing:3.526760px;}
.ws2e{word-spacing:3.586536px;}
.ws144{word-spacing:3.604493px;}
.ws26{word-spacing:3.646312px;}
.ws34{word-spacing:3.765863px;}
.ws150{word-spacing:3.765888px;}
.ws14{word-spacing:3.825638px;}
.ws142{word-spacing:3.873485px;}
.wsbe{word-spacing:3.885414px;}
.ws17{word-spacing:3.945190px;}
.ws3a{word-spacing:4.004965px;}
.ws52{word-spacing:4.124516px;}
.ws22{word-spacing:4.244068px;}
.ws23{word-spacing:4.303843px;}
.ws31{word-spacing:4.363619px;}
.wsc5{word-spacing:4.483170px;}
.ws1b{word-spacing:4.782060px;}
.ws53{word-spacing:4.841824px;}
.ws37{word-spacing:4.901599px;}
.ws1a{word-spacing:5.021150px;}
.ws138{word-spacing:5.110848px;}
.ws137{word-spacing:5.112399px;}
.ws128{word-spacing:5.164646px;}
.ws18{word-spacing:5.200477px;}
.ws10e{word-spacing:5.218445px;}
.ws19{word-spacing:5.260253px;}
.ws115{word-spacing:5.326042px;}
.ws109{word-spacing:5.352979px;}
.ws151{word-spacing:5.369990px;}
.ws10f{word-spacing:5.371690px;}
.ws13c{word-spacing:5.374762px;}
.ws14a{word-spacing:5.375885px;}
.ws155{word-spacing:5.376115px;}
.ws140{word-spacing:5.376278px;}
.ws157{word-spacing:5.377123px;}
.ws119{word-spacing:5.377171px;}
.ws146{word-spacing:5.377248px;}
.ws120{word-spacing:5.377642px;}
.ws129{word-spacing:5.377709px;}
.ws11e{word-spacing:5.378698px;}
.ws107{word-spacing:5.378822px;}
.ws14f{word-spacing:5.378870px;}
.ws136{word-spacing:5.379024px;}
.ws14e{word-spacing:5.379446px;}
.ws12f{word-spacing:5.379552px;}
.ws123{word-spacing:5.379734px;}
.ws13f{word-spacing:5.379782px;}
.ws4b{word-spacing:5.379804px;}
.ws10c{word-spacing:5.379840px;}
.ws15d{word-spacing:5.380368px;}
.ws139{word-spacing:5.380781px;}
.ws130{word-spacing:5.380819px;}
.ws12e{word-spacing:5.381021px;}
.ws132{word-spacing:5.382528px;}
.ws154{word-spacing:5.382710px;}
.ws158{word-spacing:5.433638px;}
.ws4d{word-spacing:5.439580px;}
.ws2b{word-spacing:5.559131px;}
.ws106{word-spacing:5.595034px;}
.wsf2{word-spacing:5.798233px;}
.ws39{word-spacing:5.858009px;}
.wse{word-spacing:5.977560px;}
.ws3b{word-spacing:6.097111px;}
.wse8{word-spacing:6.216662px;}
.ws102{word-spacing:6.276438px;}
.wsc6{word-spacing:6.336214px;}
.ws133{word-spacing:6.348211px;}
.ws134{word-spacing:6.402010px;}
.wsbc{word-spacing:6.635092px;}
.ws25{word-spacing:6.694867px;}
.ws135{word-spacing:7.047590px;}
.ws49{word-spacing:7.113296px;}
.ws4a{word-spacing:7.173072px;}
.ws38{word-spacing:7.352399px;}
.ws117{word-spacing:7.424179px;}
.wsd4{word-spacing:7.531726px;}
.wsfc{word-spacing:7.651277px;}
.ws127{word-spacing:7.908365px;}
.ws45{word-spacing:8.249033px;}
.ws21{word-spacing:8.547911px;}
.ws20{word-spacing:8.607686px;}
.ws42{word-spacing:8.787013px;}
.ws148{word-spacing:9.145728px;}
.ws51{word-spacing:9.743423px;}
.ws3c{word-spacing:9.982525px;}
.ws14d{word-spacing:10.275494px;}
.ws3e{word-spacing:11.178037px;}
.ws3d{word-spacing:11.656242px;}
.ws104{word-spacing:13.718592px;}
.ws105{word-spacing:16.569907px;}
.ws145{word-spacing:16.623706px;}
.wsd{word-spacing:17.155597px;}
.ws36{word-spacing:20.263928px;}
.wsdb{word-spacing:93.012054px;}
.wse1{word-spacing:93.560797px;}
.wsdd{word-spacing:94.155270px;}
.wsd9{word-spacing:95.298486px;}
.wse9{word-spacing:113.945011px;}
.wsd5{word-spacing:120.962347px;}
.wse5{word-spacing:122.827127px;}
.wsca{word-spacing:129.169958px;}
.wsec{word-spacing:134.926387px;}
.wsd6{word-spacing:142.340094px;}
.wsf0{word-spacing:148.375987px;}
.wsd0{word-spacing:276.362381px;}
.wsdc{word-spacing:287.267316px;}
.wsd8{word-spacing:287.770332px;}
.wsda{word-spacing:288.501990px;}
.wsdf{word-spacing:291.748723px;}
.wsde{word-spacing:293.760783px;}
.wsd2{word-spacing:303.207782px;}
.wscb{word-spacing:303.261581px;}
.wscd{word-spacing:309.932582px;}
.wscc{word-spacing:316.657382px;}
.wsce{word-spacing:316.711181px;}
.wsd1{word-spacing:330.160781px;}
.ws1e{word-spacing:400.019319px;}
._73{margin-left:-20.895338px;}
._4{margin-left:-11.943245px;}
._3{margin-left:-9.898906px;}
._75{margin-left:-7.854566px;}
._9{margin-left:-6.814418px;}
._5{margin-left:-4.949453px;}
._1{margin-left:-3.489596px;}
._8{margin-left:-2.412897px;}
._0{margin-left:-1.241054px;}
._2{width:1.431164px;}
._71{width:3.452752px;}
._11{width:4.815503px;}
._1a{width:10.506272px;}
._f{width:11.955150px;}
._72{width:13.113367px;}
._d{width:14.152584px;}
._1f{width:16.005024px;}
._6{width:17.861069px;}
._7{width:19.797811px;}
._b{width:21.068590px;}
._15{width:22.882133px;}
._a{width:24.433987px;}
._12{width:25.631810px;}
._18{width:27.721645px;}
._16{width:29.050942px;}
._1b{width:30.411547px;}
._e{width:32.443918px;}
._14{width:34.191643px;}
._17{width:36.044687px;}
._19{width:37.718404px;}
._c{width:40.932053px;}
._13{width:47.029164px;}
._74{width:61.868160px;}
._49{width:63.425624px;}
._4c{width:64.477382px;}
._5e{width:80.775608px;}
._47{width:87.981903px;}
._61{width:94.251852px;}
._56{width:101.302387px;}
._4d{width:109.885922px;}
._46{width:110.983409px;}
._36{width:112.539034px;}
._35{width:128.863308px;}
._55{width:131.214298px;}
._39{width:134.789201px;}
._34{width:137.288137px;}
._59{width:138.692275px;}
._3c{width:146.606020px;}
._54{width:148.322189px;}
._42{width:149.990790px;}
._43{width:154.516224px;}
._44{width:156.712049px;}
._50{width:159.171487px;}
._4a{width:161.422099px;}
._60{width:168.520798px;}
._5d{width:170.335526px;}
._5c{width:173.392243px;}
._48{width:175.974566px;}
._37{width:177.884410px;}
._3a{width:179.027626px;}
._51{width:184.259520px;}
._45{width:195.124107px;}
._53{width:197.503910px;}
._52{width:200.560435px;}
._3f{width:210.267223px;}
._5b{width:214.294752px;}
._5a{width:217.291738px;}
._4b{width:224.492653px;}
._6b{width:232.548964px;}
._68{width:233.856265px;}
._1e{width:238.566315px;}
._67{width:241.767320px;}
._62{width:243.916566px;}
._30{width:246.201101px;}
._5f{width:248.208984px;}
._40{width:251.534419px;}
._29{width:252.852480px;}
._69{width:255.469743px;}
._66{width:260.104504px;}
._6a{width:263.351238px;}
._3b{width:264.631640px;}
._65{width:271.856765px;}
._58{width:275.622682px;}
._6e{width:277.710031px;}
._57{width:279.159898px;}
._23{width:287.391053px;}
._70{width:295.041185px;}
._38{width:299.202492px;}
._64{width:300.208522px;}
._27{width:304.068557px;}
._3e{width:305.192943px;}
._6f{width:307.205004px;}
._6c{width:310.360280px;}
._2a{width:312.676301px;}
._6d{width:315.710531px;}
._2f{width:317.410560px;}
._63{width:318.545706px;}
._24{width:330.106982px;}
._32{width:332.581709px;}
._28{width:343.552877px;}
._2b{width:351.895334px;}
._41{width:355.997462px;}
._2c{width:357.059981px;}
._31{width:371.585549px;}
._2d{width:372.607718px;}
._33{width:384.766157px;}
._2e{width:412.848922px;}
._22{width:421.080077px;}
._21{width:433.722701px;}
._26{width:455.026867px;}
._25{width:468.476467px;}
._4f{width:485.960947px;}
._1d{width:512.572326px;}
._1c{width:623.281363px;}
._3d{width:779.534625px;}
._20{width:788.038963px;}
._4e{width:1473.989782px;}
._10{width:1497.900082px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.962980px;}
.fsc{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:44.529120px;}
.fs11{font-size:45.728640px;}
.fsb{font-size:47.236800px;}
.fsd{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fs5{font-size:55.661400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.y111{bottom:-794.981550px;}
.y10f{bottom:-792.461469px;}
.y10e{bottom:-772.211550px;}
.y110{bottom:-769.781199px;}
.y10d{bottom:-744.581469px;}
.y10c{bottom:-724.331550px;}
.y10a{bottom:-719.380587px;}
.y105{bottom:-709.301469px;}
.y10b{bottom:-699.131550px;}
.y108{bottom:-699.130668px;}
.y104{bottom:-689.051550px;}
.y109{bottom:-678.880749px;}
.y107{bottom:-673.931370px;}
.y106{bottom:-653.681451px;}
.y103{bottom:-628.481550px;}
.y102{bottom:-596.081550px;}
.y101{bottom:-558.191307px;}
.y100{bottom:-537.941388px;}
.yff{bottom:-517.691469px;}
.yfe{bottom:-497.440977px;}
.yfd{bottom:-477.281238px;}
.yfc{bottom:-457.031319px;}
.yfb{bottom:-436.781157px;}
.yfa{bottom:-416.531238px;}
.yf9{bottom:-396.281319px;}
.yf8{bottom:-376.031400px;}
.yf7{bottom:-355.781046px;}
.yf6{bottom:-335.621307px;}
.yf5{bottom:-315.371388px;}
.yf4{bottom:-295.121469px;}
.yf3{bottom:-274.871127px;}
.yf2{bottom:-254.621208px;}
.yf1{bottom:-234.371289px;}
.yf0{bottom:-214.211076px;}
.yef{bottom:-193.961157px;}
.yee{bottom:-173.711238px;}
.yed{bottom:-153.461319px;}
.yec{bottom:-133.211091px;}
.yeb{bottom:-112.961172px;}
.yea{bottom:-92.711253px;}
.ye9{bottom:-63.551550px;}
.ye8{bottom:-25.661550px;}
.ye7{bottom:-1.271550px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.425340px;}
.y24{bottom:12.664592px;}
.y2e{bottom:14.151273px;}
.y23{bottom:26.023328px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y51{bottom:108.612000px;}
.y27b{bottom:108.957000px;}
.y83{bottom:111.018000px;}
.yb5{bottom:111.256500px;}
.y27e{bottom:114.835500px;}
.y229{bottom:116.607000px;}
.y247{bottom:117.265500px;}
.y9c{bottom:126.858000px;}
.y27a{bottom:128.325000px;}
.y50{bottom:128.875500px;}
.y176{bottom:129.886500px;}
.y82{bottom:131.281500px;}
.yb4{bottom:131.520000px;}
.y27d{bottom:134.203500px;}
.y246{bottom:136.632000px;}
.y228{bottom:136.870500px;}
.y1dd{bottom:138.517500px;}
.y21{bottom:139.264499px;}
.y9b{bottom:147.121500px;}
.y279{bottom:147.691500px;}
.y4f{bottom:149.139000px;}
.y175{bottom:150.151500px;}
.y81{bottom:151.545000px;}
.y27c{bottom:153.570000px;}
.y245{bottom:156.000000px;}
.y227{bottom:157.134000px;}
.y1dc{bottom:158.782500px;}
.y278{bottom:167.059500px;}
.y9a{bottom:167.386500px;}
.y4e{bottom:169.404000px;}
.yb3{bottom:169.717500px;}
.y174{bottom:170.415000px;}
.y80{bottom:171.810000px;}
.y244{bottom:175.368000px;}
.y226{bottom:177.399000px;}
.y1db{bottom:179.046000px;}
.ye1{bottom:179.610000px;}
.y277{bottom:186.427500px;}
.y99{bottom:187.650000px;}
.y4d{bottom:189.667500px;}
.yb2{bottom:189.981000px;}
.y173{bottom:190.678500px;}
.y7f{bottom:192.073500px;}
.y243{bottom:194.734500px;}
.y18{bottom:196.933500px;}
.y225{bottom:197.662500px;}
.y1da{bottom:199.311000px;}
.ye0{bottom:199.875000px;}
.y276{bottom:205.794000px;}
.y98{bottom:207.915000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4c{bottom:209.932500px;}
.y172{bottom:210.943500px;}
.y242{bottom:214.102500px;}
.y1fd{bottom:215.523000px;}
.y224{bottom:217.927500px;}
.y1d9{bottom:219.574500px;}
.y7e{bottom:221.304000px;}
.y1a2{bottom:221.878500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y275{bottom:225.162000px;}
.y97{bottom:228.178500px;}
.y4b{bottom:230.196000px;}
.y171{bottom:231.207000px;}
.y241{bottom:233.469000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1fc{bottom:236.222925px;}
.ydf{bottom:238.071000px;}
.y223{bottom:238.191000px;}
.y1d8{bottom:239.838000px;}
.y1a1{bottom:242.142000px;}
.y12a{bottom:243.778500px;}
.y274{bottom:244.528500px;}
.y96{bottom:248.442000px;}
.y4a{bottom:250.459500px;}
.y170{bottom:251.472000px;}
.y240{bottom:252.837000px;}
.y7d{bottom:256.123500px;}
.y1fb{bottom:256.621650px;}
.yde{bottom:258.336000px;}
.y222{bottom:258.454500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1d7{bottom:260.103000px;}
.y1a0{bottom:262.407000px;}
.y273{bottom:263.896500px;}
.y129{bottom:264.043500px;}
.y95{bottom:268.707000px;}
.y49{bottom:270.724500px;}
.y16f{bottom:271.735500px;}
.y23f{bottom:272.205000px;}
.ye6{bottom:272.418450px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y1fa{bottom:277.019100px;}
.y221{bottom:278.719500px;}
.y1d6{bottom:280.366500px;}
.y19f{bottom:282.670500px;}
.y272{bottom:283.264500px;}
.y128{bottom:284.307000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y94{bottom:288.970500px;}
.y7c{bottom:290.943000px;}
.y48{bottom:290.988000px;}
.y23e{bottom:291.571500px;}
.ydd{bottom:296.532000px;}
.y1f9{bottom:297.417825px;}
.y220{bottom:298.983000px;}
.y16e{bottom:300.966000px;}
.y271{bottom:302.631000px;}
.y19e{bottom:302.935500px;}
.y127{bottom:304.570500px;}
.y93{bottom:309.235500px;}
.y1d5{bottom:309.597000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y23d{bottom:310.939500px;}
.y47{bottom:311.253000px;}
.y1f4{bottom:316.785075px;}
.ydc{bottom:316.797000px;}
.y1f8{bottom:317.816550px;}
.y21f{bottom:319.248000px;}
.y270{bottom:321.999000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y19d{bottom:323.199000px;}
.y126{bottom:324.835500px;}
.y7b{bottom:325.762500px;}
.y92{bottom:329.499000px;}
.y23c{bottom:330.306000px;}
.y46{bottom:331.516500px;}
.y16d{bottom:335.785500px;}
.ydb{bottom:337.060500px;}
.y1f7{bottom:338.214000px;}
.y21e{bottom:339.511500px;}
.y26f{bottom:341.367000px;}
.y19c{bottom:343.462500px;}
.y125{bottom:345.099000px;}
.y7a{bottom:346.027500px;}
.yf{bottom:348.133500px;}
.y1d4{bottom:349.348500px;}
.y23b{bottom:349.674000px;}
.y91{bottom:349.762500px;}
.y45{bottom:351.780000px;}
.yda{bottom:357.324000px;}
.y1f6{bottom:358.612725px;}
.y21d{bottom:359.775000px;}
.y26e{bottom:360.733500px;}
.y1d3{bottom:363.544500px;}
.y19b{bottom:363.727500px;}
.y124{bottom:365.364000px;}
.y79{bottom:366.291000px;}
.y23a{bottom:369.042000px;}
.y90{bottom:370.027500px;}
.y16c{bottom:370.605000px;}
.y44{bottom:372.045000px;}
.yd9{bottom:377.589000px;}
.y1f5{bottom:379.010175px;}
.y21c{bottom:380.040000px;}
.y26d{bottom:380.101500px;}
.y19a{bottom:383.991000px;}
.y1d2{bottom:384.244875px;}
.y123{bottom:385.627500px;}
.y78{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.y239{bottom:388.408500px;}
.y8f{bottom:390.291000px;}
.y16b{bottom:390.868500px;}
.y43{bottom:392.308500px;}
.yd8{bottom:397.852500px;}
.y1f3{bottom:399.408900px;}
.y26c{bottom:399.468000px;}
.y21b{bottom:400.303500px;}
.y199{bottom:404.256000px;}
.y1d1{bottom:404.643600px;}
.y122{bottom:405.891000px;}
.y77{bottom:406.819500px;}
.y238{bottom:407.776500px;}
.yd{bottom:408.044999px;}
.y8e{bottom:410.556000px;}
.y16a{bottom:411.133500px;}
.y42{bottom:412.573500px;}
.yd7{bottom:418.117500px;}
.y26b{bottom:418.836000px;}
.y21a{bottom:420.568500px;}
.y198{bottom:424.519500px;}
.y1d0{bottom:425.042325px;}
.y121{bottom:426.156000px;}
.y76{bottom:427.083000px;}
.y237{bottom:427.143000px;}
.y1f2{bottom:428.496000px;}
.y8d{bottom:430.819500px;}
.y169{bottom:431.397000px;}
.y41{bottom:432.837000px;}
.y26a{bottom:438.204000px;}
.yd6{bottom:438.381000px;}
.y219{bottom:440.832000px;}
.y197{bottom:444.783000px;}
.y1cf{bottom:445.439775px;}
.y120{bottom:446.419500px;}
.y236{bottom:446.511000px;}
.y75{bottom:447.348000px;}
.y8c{bottom:451.083000px;}
.y168{bottom:451.662000px;}
.y269{bottom:457.570500px;}
.yd5{bottom:458.644500px;}
.y218{bottom:461.095500px;}
.y40{bottom:462.067500px;}
.y1f1{bottom:465.609000px;}
.y1ce{bottom:465.838500px;}
.y235{bottom:465.879000px;}
.y11f{bottom:466.684500px;}
.y74{bottom:467.611500px;}
.y8b{bottom:471.348000px;}
.y167{bottom:471.925500px;}
.y196{bottom:474.013500px;}
.y268{bottom:476.938500px;}
.yd4{bottom:478.909500px;}
.y217{bottom:481.360500px;}
.y234{bottom:485.245500px;}
.y1f0{bottom:485.872500px;}
.y1cd{bottom:486.235950px;}
.y11e{bottom:486.948000px;}
.y73{bottom:487.875000px;}
.y8a{bottom:491.611500px;}
.y166{bottom:492.189000px;}
.y267{bottom:496.305000px;}
.yd3{bottom:499.173000px;}
.y216{bottom:501.624000px;}
.yc{bottom:502.864502px;}
.y233{bottom:504.613500px;}
.y1ef{bottom:506.136000px;}
.y1cc{bottom:506.634675px;}
.y11d{bottom:507.211500px;}
.y72{bottom:508.140000px;}
.y89{bottom:511.876500px;}
.y165{bottom:512.454000px;}
.y266{bottom:515.673000px;}
.y195{bottom:517.890000px;}
.yd2{bottom:519.438000px;}
.yb{bottom:520.864502px;}
.y215{bottom:521.889000px;}
.y232{bottom:523.981500px;}
.y1ee{bottom:526.401000px;}
.y11c{bottom:527.476500px;}
.y71{bottom:528.403500px;}
.y88{bottom:532.140000px;}
.y164{bottom:532.717500px;}
.y265{bottom:535.041000px;}
.y1cb{bottom:535.722000px;}
.y3f{bottom:538.483500px;}
.ya{bottom:538.864499px;}
.yd1{bottom:539.701500px;}
.y194{bottom:541.888500px;}
.y214{bottom:542.152500px;}
.y1ed{bottom:546.664500px;}
.y11b{bottom:547.740000px;}
.y70{bottom:548.667000px;}
.y191{bottom:549.198000px;}
.y231{bottom:552.315000px;}
.y87{bottom:552.403500px;}
.y163{bottom:552.982500px;}
.y264{bottom:554.407500px;}
.y9{bottom:556.864499px;}
.y3e{bottom:558.747000px;}
.yd0{bottom:559.965000px;}
.y190{bottom:565.636500px;}
.y193{bottom:565.887000px;}
.y1ec{bottom:566.929500px;}
.y11a{bottom:568.005000px;}
.y6f{bottom:568.932000px;}
.y1ca{bottom:568.933500px;}
.y213{bottom:571.383000px;}
.yb1{bottom:572.668500px;}
.y162{bottom:573.246000px;}
.y263{bottom:573.775500px;}
.ycf{bottom:580.230000px;}
.y86{bottom:581.634000px;}
.y1eb{bottom:587.193000px;}
.y119{bottom:588.268500px;}
.y6e{bottom:589.195500px;}
.y1c9{bottom:589.197000px;}
.y192{bottom:589.884000px;}
.y230{bottom:591.766500px;}
.yb0{bottom:592.932000px;}
.y262{bottom:593.142000px;}
.y161{bottom:593.509500px;}
.y3d{bottom:596.944500px;}
.yce{bottom:600.493500px;}
.y212{bottom:606.202500px;}
.y1ea{bottom:607.456500px;}
.y118{bottom:608.532000px;}
.y6d{bottom:609.460500px;}
.y1c8{bottom:609.462000px;}
.y261{bottom:612.510000px;}
.yaf{bottom:613.197000px;}
.y160{bottom:613.774500px;}
.y18f{bottom:613.882500px;}
.y22f{bottom:615.931500px;}
.y3c{bottom:617.208000px;}
.ycd{bottom:620.758500px;}
.y211{bottom:626.466000px;}
.y1e9{bottom:627.721500px;}
.y117{bottom:628.797000px;}
.y6c{bottom:629.724000px;}
.y1c7{bottom:629.725500px;}
.y260{bottom:631.878000px;}
.yae{bottom:633.460500px;}
.y85{bottom:634.387500px;}
.y3b{bottom:637.473000px;}
.y18e{bottom:637.522500px;}
.y22e{bottom:640.095000px;}
.ycc{bottom:641.022000px;}
.y8{bottom:645.510000px;}
.y18b{bottom:645.849000px;}
.y210{bottom:646.731000px;}
.y1e8{bottom:647.985000px;}
.y116{bottom:649.060500px;}
.y6b{bottom:649.987500px;}
.y1c6{bottom:649.990500px;}
.y25f{bottom:651.244500px;}
.yad{bottom:653.724000px;}
.y18d{bottom:653.961000px;}
.y3a{bottom:657.736500px;}
.y15f{bottom:659.367300px;}
.ycb{bottom:661.285500px;}
.y22d{bottom:664.260000px;}
.y7{bottom:666.771000px;}
.y20f{bottom:666.994500px;}
.y1e7{bottom:668.250000px;}
.y115{bottom:669.325500px;}
.y6a{bottom:670.252500px;}
.y25e{bottom:670.612500px;}
.y15c{bottom:672.567375px;}
.y84{bottom:672.583500px;}
.y15e{bottom:673.340025px;}
.yac{bottom:673.989000px;}
.y18c{bottom:677.959500px;}
.y39{bottom:678.000000px;}
.y22c{bottom:679.458000px;}
.y157{bottom:679.553100px;}
.yca{bottom:681.550500px;}
.y159{bottom:685.350525px;}
.y15b{bottom:686.538825px;}
.y20e{bottom:687.258000px;}
.y1e6{bottom:688.513500px;}
.y114{bottom:689.589000px;}
.y25d{bottom:689.979000px;}
.y69{bottom:690.516000px;}
.y1c5{bottom:693.118500px;}
.y156{bottom:693.525825px;}
.y15d{bottom:693.738750px;}
.yab{bottom:694.252500px;}
.y22b{bottom:694.656000px;}
.y38{bottom:698.265000px;}
.y15a{bottom:700.511550px;}
.yc9{bottom:701.814000px;}
.y18a{bottom:701.958000px;}
.y1c4{bottom:707.314500px;}
.y20d{bottom:707.523000px;}
.y1e5{bottom:708.777000px;}
.y25c{bottom:709.347000px;}
.y68{bottom:710.781000px;}
.y158{bottom:714.136200px;}
.yaa{bottom:714.517500px;}
.y37{bottom:718.528500px;}
.y113{bottom:718.819500px;}
.yc8{bottom:722.077500px;}
.y189{bottom:725.955000px;}
.y6{bottom:726.298500px;}
.y20c{bottom:727.786500px;}
.y1c3{bottom:728.016075px;}
.y25b{bottom:728.715000px;}
.y1e4{bottom:729.042000px;}
.y67{bottom:731.044500px;}
.y155{bottom:734.231475px;}
.ya9{bottom:734.781000px;}
.y36{bottom:738.793500px;}
.y1bf{bottom:741.214875px;}
.yc7{bottom:742.342500px;}
.y1c1{bottom:747.013575px;}
.y20b{bottom:748.051500px;}
.y25a{bottom:748.081500px;}
.y154{bottom:748.204200px;}
.y1c2{bottom:748.414800px;}
.y1e3{bottom:749.305500px;}
.y188{bottom:749.953500px;}
.y112{bottom:750.442500px;}
.y66{bottom:751.308000px;}
.y3{bottom:752.599495px;}
.y153{bottom:753.682875px;}
.y151{bottom:753.788700px;}
.ya8{bottom:755.044500px;}
.y1be{bottom:755.187600px;}
.y35{bottom:759.057000px;}
.yc6{bottom:762.606000px;}
.y259{bottom:767.449500px;}
.y20a{bottom:768.315000px;}
.y152{bottom:768.601650px;}
.y1c0{bottom:768.812250px;}
.y1e2{bottom:769.570500px;}
.y65{bottom:771.573000px;}
.ye5{bottom:772.872000px;}
.y187{bottom:773.950500px;}
.ya7{bottom:775.309500px;}
.y34{bottom:779.320500px;}
.yc5{bottom:782.871000px;}
.y258{bottom:786.816000px;}
.y209{bottom:788.578500px;}
.y150{bottom:788.696925px;}
.y1bd{bottom:789.210975px;}
.y1e1{bottom:789.834000px;}
.y64{bottom:791.836500px;}
.y14e{bottom:794.912550px;}
.ya6{bottom:795.573000px;}
.y182{bottom:796.737000px;}
.y186{bottom:797.949000px;}
.y33{bottom:799.585500px;}
.y1bc{bottom:801.782475px;}
.y14f{bottom:802.669650px;}
.yc4{bottom:803.134500px;}
.y257{bottom:806.184000px;}
.y14b{bottom:808.148325px;}
.y149{bottom:808.254150px;}
.y208{bottom:808.843500px;}
.y14d{bottom:808.885275px;}
.y1e0{bottom:810.097500px;}
.y63{bottom:812.101500px;}
.ya5{bottom:815.838000px;}
.y32{bottom:819.849000px;}
.y185{bottom:821.947500px;}
.y14c{bottom:822.858000px;}
.y14a{bottom:823.067100px;}
.yc3{bottom:823.398000px;}
.y256{bottom:825.552000px;}
.y207{bottom:829.107000px;}
.y1bb{bottom:830.007150px;}
.y1df{bottom:830.362500px;}
.y62{bottom:832.365000px;}
.y1b9{bottom:835.289475px;}
.ya4{bottom:836.101500px;}
.y31{bottom:840.114000px;}
.y148{bottom:843.162375px;}
.yc2{bottom:843.663000px;}
.y255{bottom:844.918500px;}
.y184{bottom:845.944500px;}
.y1b8{bottom:849.262200px;}
.y206{bottom:849.372000px;}
.y1ba{bottom:850.405875px;}
.y61{bottom:852.628500px;}
.ya3{bottom:856.365000px;}
.y147{bottom:857.135100px;}
.y30{bottom:860.377500px;}
.yc1{bottom:863.926500px;}
.y254{bottom:864.286500px;}
.y205{bottom:869.635500px;}
.y183{bottom:869.943000px;}
.y1b7{bottom:870.803325px;}
.y1de{bottom:871.882500px;}
.y60{bottom:872.893500px;}
.y143{bottom:876.456450px;}
.ya2{bottom:876.630000px;}
.y146{bottom:877.532550px;}
.y2{bottom:879.369000px;}
.y253{bottom:883.653000px;}
.yc0{bottom:884.191500px;}
.y140{bottom:889.135050px;}
.y204{bottom:889.899000px;}
.y142{bottom:890.427900px;}
.y13e{bottom:890.732625px;}
.y1b6{bottom:891.202050px;}
.y5f{bottom:893.157000px;}
.y181{bottom:893.940000px;}
.y2d{bottom:895.384464px;}
.y1b2{bottom:895.923375px;}
.y2c{bottom:896.151000px;}
.ya1{bottom:896.893500px;}
.y145{bottom:897.627825px;}
.y252{bottom:903.021000px;}
.y1b4{bottom:903.212550px;}
.y141{bottom:904.400625px;}
.ybf{bottom:904.455000px;}
.y1b1{bottom:909.896100px;}
.y203{bottom:910.164000px;}
.y144{bottom:911.600550px;}
.y1b5{bottom:911.600775px;}
.y5e{bottom:913.422000px;}
.y180{bottom:917.938500px;}
.y251{bottom:922.389000px;}
.ybe{bottom:924.718500px;}
.ya0{bottom:926.124000px;}
.y202{bottom:930.427500px;}
.y13f{bottom:931.998000px;}
.y1b3{bottom:931.998225px;}
.y5d{bottom:933.685500px;}
.y2b{bottom:935.157000px;}
.y17c{bottom:941.383500px;}
.y250{bottom:941.755500px;}
.y17f{bottom:941.937000px;}
.ybd{bottom:944.983500px;}
.y201{bottom:950.692500px;}
.y13d{bottom:952.396725px;}
.y1b0{bottom:952.396950px;}
.y2a{bottom:953.313000px;}
.y5c{bottom:953.949000px;}
.y13b{bottom:958.052625px;}
.y24f{bottom:961.123500px;}
.y1ac{bottom:964.104000px;}
.ybc{bottom:965.247000px;}
.y17e{bottom:965.934000px;}
.y1{bottom:966.726000px;}
.y200{bottom:970.956000px;}
.y138{bottom:971.394225px;}
.y1ae{bottom:971.394450px;}
.y29{bottom:971.470500px;}
.y13a{bottom:972.025350px;}
.y13c{bottom:972.794175px;}
.y1af{bottom:972.794400px;}
.y136{bottom:972.885975px;}
.y5b{bottom:974.214000px;}
.y1ab{bottom:978.076725px;}
.y9f{bottom:978.876000px;}
.y24e{bottom:980.490000px;}
.ybb{bottom:985.512000px;}
.y139{bottom:985.996800px;}
.y17d{bottom:989.932500px;}
.y1ff{bottom:991.219500px;}
.y137{bottom:993.192900px;}
.y1ad{bottom:993.193125px;}
.y5a{bottom:994.477500px;}
.y28{bottom:998.167500px;}
.y24d{bottom:999.858000px;}
.y22a{bottom:1000.186500px;}
.yba{bottom:1005.775500px;}
.y1fe{bottom:1011.484500px;}
.y135{bottom:1013.591625px;}
.y1aa{bottom:1013.591850px;}
.y17b{bottom:1013.931000px;}
.y59{bottom:1014.742500px;}
.y9e{bottom:1017.073500px;}
.y24c{bottom:1019.226000px;}
.y133{bottom:1025.929800px;}
.yb9{bottom:1026.039000px;}
.ye4{bottom:1031.748000px;}
.y1a8{bottom:1032.588075px;}
.y134{bottom:1033.989075px;}
.y1a9{bottom:1033.989300px;}
.y1a6{bottom:1034.081100px;}
.y58{bottom:1035.006000px;}
.y178{bottom:1036.279500px;}
.y9d{bottom:1037.337000px;}
.y17a{bottom:1037.928000px;}
.y24b{bottom:1038.592500px;}
.y130{bottom:1039.271400px;}
.y132{bottom:1039.902525px;}
.y12d{bottom:1040.763150px;}
.y27{bottom:1040.848500px;}
.yb8{bottom:1046.304000px;}
.ye3{bottom:1052.013000px;}
.y131{bottom:1053.875250px;}
.y12f{bottom:1054.084350px;}
.y1a7{bottom:1054.388025px;}
.y57{bottom:1055.269500px;}
.y24a{bottom:1057.960500px;}
.y179{bottom:1061.926500px;}
.yb7{bottom:1066.567500px;}
.y12e{bottom:1068.057075px;}
.y26{bottom:1071.244500px;}
.y1a4{bottom:1074.482025px;}
.y56{bottom:1075.534500px;}
.y249{bottom:1077.327000px;}
.ye2{bottom:1081.243500px;}
.y1a3{bottom:1081.469025px;}
.y177{bottom:1085.923500px;}
.yb6{bottom:1086.832500px;}
.y12c{bottom:1088.454525px;}
.y1a5{bottom:1088.454750px;}
.y55{bottom:1095.798000px;}
.y248{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y54{bottom:1116.063000px;}
.y12b{bottom:1117.543500px;}
.y22{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.h24{height:22.380041px;}
.h10{height:25.508090px;}
.h25{height:26.146022px;}
.h1f{height:27.974981px;}
.hb{height:30.190743px;}
.h7{height:32.130000px;}
.h1a{height:33.061807px;}
.h12{height:33.112997px;}
.h1b{height:33.290450px;}
.h11{height:34.199443px;}
.h23{height:34.813397px;}
.h16{height:34.951465px;}
.h14{height:35.100320px;}
.h1c{height:37.452050px;}
.ha{height:37.738429px;}
.h28{height:37.927872px;}
.h27{height:38.412058px;}
.h1d{height:38.896243px;}
.hf{height:39.165235px;}
.h18{height:39.418945px;}
.h26{height:39.488026px;}
.he{height:43.217759px;}
.h19{height:43.269961px;}
.h13{height:43.516637px;}
.hc{height:43.875290px;}
.h17{height:43.886426px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:51.022950px;}
.h2{height:55.080000px;}
.h20{height:61.004707px;}
.h21{height:61.009807px;}
.h22{height:64.594250px;}
.h1e{height:72.045235px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h15{height:235.228500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:233.211061px;}
.w6{width:518.532000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x63{left:-78.322500px;}
.x6f{left:-67.522500px;}
.x70{left:-59.782050px;}
.x67{left:-54.292500px;}
.x65{left:-46.461906px;}
.x0{left:0.000000px;}
.x6d{left:26.977500px;}
.xb{left:29.274117px;}
.x68{left:36.608400px;}
.x6e{left:49.747500px;}
.x6{left:56.951817px;}
.x71{left:63.877275px;}
.x73{left:72.607500px;}
.x66{left:97.267500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x77{left:112.726500px;}
.x7{left:113.754000px;}
.x5{left:114.802500px;}
.x9{left:122.110500px;}
.x8{left:123.307500px;}
.xb3{left:140.312025px;}
.xe{left:146.692500px;}
.x93{left:149.627175px;}
.xb6{left:151.361175px;}
.x74{left:153.370500px;}
.x26{left:154.506000px;}
.x7f{left:155.530500px;}
.xb0{left:156.980100px;}
.x83{left:158.686500px;}
.x5f{left:160.672500px;}
.xd3{left:162.801000px;}
.xb4{left:164.141775px;}
.x98{left:165.775050px;}
.x40{left:166.902000px;}
.x15{left:167.985000px;}
.x27{left:169.449000px;}
.x80{left:170.475000px;}
.x84{left:173.631000px;}
.x16{left:175.456500px;}
.x60{left:179.332500px;}
.x22{left:181.006500px;}
.x5b{left:182.920500px;}
.x41{left:185.656500px;}
.x62{left:187.191000px;}
.xbd{left:188.323875px;}
.xc{left:189.973500px;}
.x3c{left:193.120500px;}
.x61{left:194.277000px;}
.x23{left:195.951000px;}
.x5c{left:197.865000px;}
.x42{left:200.601000px;}
.xc4{left:201.919500px;}
.x4{left:203.484001px;}
.xbe{left:204.721500px;}
.x2e{left:206.524500px;}
.x3d{left:208.065000px;}
.xd{left:210.903000px;}
.x3e{left:215.448000px;}
.xbc{left:216.715575px;}
.x2f{left:221.469000px;}
.xbf{left:226.156500px;}
.x30{left:229.045500px;}
.x3f{left:230.391000px;}
.x54{left:236.340000px;}
.x46{left:237.340500px;}
.x9d{left:240.399000px;}
.x31{left:243.988500px;}
.x3b{left:245.463000px;}
.x51{left:246.642000px;}
.xda{left:251.667000px;}
.xdb{left:254.101500px;}
.x1d{left:256.215000px;}
.x3a{left:261.205500px;}
.xa8{left:264.208500px;}
.xb5{left:265.993875px;}
.x8a{left:267.253575px;}
.x9a{left:269.296125px;}
.x1e{left:271.159500px;}
.x78{left:274.948500px;}
.x89{left:277.595100px;}
.xa9{left:279.151500px;}
.x91{left:280.664025px;}
.x9b{left:282.744825px;}
.x59{left:285.642000px;}
.xbb{left:286.953000px;}
.x79{left:289.891500px;}
.x85{left:291.592500px;}
.x99{left:295.091925px;}
.xc3{left:298.396500px;}
.x5a{left:300.585000px;}
.x17{left:302.914500px;}
.x8f{left:305.225625px;}
.x8b{left:306.283875px;}
.x52{left:307.794000px;}
.x18{left:310.386000px;}
.x8e{left:312.313350px;}
.xc5{left:315.712500px;}
.x2c{left:321.160500px;}
.x53{left:322.738500px;}
.xaa{left:325.582500px;}
.x33{left:329.365500px;}
.x9c{left:332.176500px;}
.x92{left:333.691275px;}
.x2d{left:336.105000px;}
.xc7{left:337.527000px;}
.xc2{left:340.287000px;}
.xc8{left:343.066575px;}
.xb1{left:349.056300px;}
.xc9{left:352.778250px;}
.x75{left:361.428000px;}
.xb7{left:366.660000px;}
.x44{left:369.258000px;}
.xb8{left:373.554000px;}
.x76{left:376.371000px;}
.x97{left:378.019200px;}
.x47{left:380.508000px;}
.x45{left:384.202500px;}
.x86{left:385.833675px;}
.x7d{left:387.123000px;}
.xa6{left:390.108000px;}
.xa1{left:391.863000px;}
.x48{left:395.452500px;}
.x90{left:398.253450px;}
.x9f{left:400.732500px;}
.x7e{left:402.067500px;}
.xa0{left:404.902500px;}
.x69{left:407.499201px;}
.xa5{left:411.358500px;}
.xa2{left:413.260500px;}
.xd4{left:414.667500px;}
.x19{left:419.730000px;}
.xa3{left:421.801500px;}
.xa7{left:425.143500px;}
.x1a{left:427.201500px;}
.x1b{left:430.978500px;}
.x9e{left:433.905000px;}
.xa4{left:435.223500px;}
.x57{left:437.970000px;}
.x6b{left:439.989552px;}
.x72{left:442.147806px;}
.x6c{left:443.861280px;}
.x1c{left:445.923000px;}
.xb2{left:448.364775px;}
.x6a{left:449.619273px;}
.x58{left:452.914500px;}
.x3{left:454.959000px;}
.xd5{left:458.613000px;}
.x34{left:473.983500px;}
.x35{left:488.926500px;}
.xc6{left:494.850000px;}
.x36{left:496.548000px;}
.x37{left:511.492500px;}
.xb9{left:518.173500px;}
.x64{left:521.077500px;}
.xba{left:525.066000px;}
.x32{left:531.813000px;}
.x11{left:536.419500px;}
.xce{left:540.672000px;}
.x12{left:543.892500px;}
.x13{left:547.605000px;}
.x14{left:555.078000px;}
.x43{left:559.317000px;}
.x4b{left:561.723000px;}
.x4d{left:565.177500px;}
.xca{left:574.567500px;}
.x4e{left:580.120500px;}
.x24{left:581.311500px;}
.x4f{left:587.682000px;}
.xcb{left:589.510500px;}
.xcc{left:593.299500px;}
.x25{left:596.256000px;}
.x50{left:602.626500px;}
.xcd{left:608.244000px;}
.xcf{left:610.855500px;}
.x55{left:622.086000px;}
.x8d{left:623.605875px;}
.x8c{left:628.350150px;}
.x87{left:629.692725px;}
.x94{left:631.122000px;}
.x88{left:633.402975px;}
.x56{left:637.030500px;}
.x81{left:640.975500px;}
.x28{left:648.046500px;}
.xaf{left:651.795000px;}
.x82{left:655.920000px;}
.xab{left:657.447000px;}
.x7a{left:660.604500px;}
.x29{left:662.991000px;}
.x2a{left:666.801000px;}
.xac{left:671.007000px;}
.xd7{left:672.709500px;}
.x38{left:674.128500px;}
.x7b{left:675.547500px;}
.xae{left:680.013000px;}
.x2b{left:681.745500px;}
.x39{left:689.073000px;}
.xad{left:696.999000px;}
.x95{left:699.761625px;}
.xa{left:701.339982px;}
.x4c{left:703.738500px;}
.x96{left:711.193275px;}
.xd8{left:727.716000px;}
.xd1{left:728.964000px;}
.x1f{left:734.329500px;}
.xc0{left:736.356000px;}
.x49{left:738.639000px;}
.xc1{left:744.973500px;}
.x20{left:749.274000px;}
.x4a{left:753.582000px;}
.xd9{left:754.615500px;}
.xd2{left:755.863500px;}
.x21{left:756.895500px;}
.x5d{left:758.239500px;}
.xd6{left:762.690000px;}
.xf{left:764.707500px;}
.x7c{left:771.178500px;}
.x10{left:772.179000px;}
.x5e{left:773.184000px;}
.xd0{left:776.422500px;}
@media print{
.v1{vertical-align:-44.798752pt;}
.v6{vertical-align:-27.830133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.699200pt;}
.v5{vertical-align:24.838133pt;}
.v7{vertical-align:27.825600pt;}
.v4{vertical-align:29.226667pt;}
.v2{vertical-align:36.157504pt;}
.ls8e{letter-spacing:-0.470272pt;}
.ls81{letter-spacing:-0.448896pt;}
.ls67{letter-spacing:-0.443552pt;}
.ls69{letter-spacing:-0.427520pt;}
.ls5d{letter-spacing:-0.406144pt;}
.ls95{letter-spacing:-0.384768pt;}
.ls70{letter-spacing:-0.374080pt;}
.ls8c{letter-spacing:-0.363392pt;}
.ls66{letter-spacing:-0.342016pt;}
.ls6c{letter-spacing:-0.325984pt;}
.ls86{letter-spacing:-0.288576pt;}
.ls89{letter-spacing:-0.277888pt;}
.ls61{letter-spacing:-0.267200pt;}
.ls8d{letter-spacing:-0.256512pt;}
.ls92{letter-spacing:-0.235136pt;}
.ls96{letter-spacing:-0.224448pt;}
.ls8b{letter-spacing:-0.219104pt;}
.ls63{letter-spacing:-0.192384pt;}
.ls74{letter-spacing:-0.181696pt;}
.ls88{letter-spacing:-0.176352pt;}
.ls83{letter-spacing:-0.171008pt;}
.ls71{letter-spacing:-0.160320pt;}
.ls73{letter-spacing:-0.154976pt;}
.ls5f{letter-spacing:-0.149632pt;}
.ls54{letter-spacing:-0.144704pt;}
.ls82{letter-spacing:-0.144288pt;}
.ls85{letter-spacing:-0.138944pt;}
.ls79{letter-spacing:-0.133600pt;}
.ls7e{letter-spacing:-0.128256pt;}
.ls7b{letter-spacing:-0.122912pt;}
.ls87{letter-spacing:-0.117568pt;}
.ls76{letter-spacing:-0.112224pt;}
.ls62{letter-spacing:-0.106880pt;}
.ls84{letter-spacing:-0.101536pt;}
.ls6f{letter-spacing:-0.096192pt;}
.ls53{letter-spacing:-0.093632pt;}
.ls6a{letter-spacing:-0.090848pt;}
.ls6d{letter-spacing:-0.085504pt;}
.ls75{letter-spacing:-0.080160pt;}
.ls8a{letter-spacing:-0.074816pt;}
.ls7c{letter-spacing:-0.069472pt;}
.ls78{letter-spacing:-0.064128pt;}
.ls7a{letter-spacing:-0.058784pt;}
.ls5e{letter-spacing:-0.053440pt;}
.ls5b{letter-spacing:-0.048096pt;}
.ls5a{letter-spacing:-0.048000pt;}
.ls55{letter-spacing:-0.046816pt;}
.ls65{letter-spacing:-0.042752pt;}
.ls60{letter-spacing:-0.037408pt;}
.ls8f{letter-spacing:-0.033600pt;}
.ls5c{letter-spacing:-0.032064pt;}
.ls6b{letter-spacing:-0.026720pt;}
.ls6e{letter-spacing:-0.021376pt;}
.ls59{letter-spacing:-0.019200pt;}
.ls64{letter-spacing:-0.016032pt;}
.ls77{letter-spacing:-0.010688pt;}
.ls7d{letter-spacing:-0.005344pt;}
.ls90{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb1{letter-spacing:0.000083pt;}
.lsc{letter-spacing:0.000110pt;}
.lsc9{letter-spacing:0.000213pt;}
.ls13{letter-spacing:0.000215pt;}
.lsc6{letter-spacing:0.000222pt;}
.ls10{letter-spacing:0.000321pt;}
.lsa7{letter-spacing:0.000387pt;}
.lscc{letter-spacing:0.000394pt;}
.lsca{letter-spacing:0.000562pt;}
.lscf{letter-spacing:0.000572pt;}
.ls98{letter-spacing:0.000600pt;}
.lsce{letter-spacing:0.000711pt;}
.ls9e{letter-spacing:0.000905pt;}
.lsc2{letter-spacing:0.000998pt;}
.lsd3{letter-spacing:0.001259pt;}
.lsd2{letter-spacing:0.001363pt;}
.ls4{letter-spacing:0.001370pt;}
.ls14{letter-spacing:0.001483pt;}
.lsf{letter-spacing:0.001743pt;}
.lsaa{letter-spacing:0.001792pt;}
.ls8{letter-spacing:0.001977pt;}
.lse{letter-spacing:0.001990pt;}
.lsc8{letter-spacing:0.002078pt;}
.ls12{letter-spacing:0.002097pt;}
.lsbd{letter-spacing:0.002287pt;}
.ls9a{letter-spacing:0.002322pt;}
.lsbe{letter-spacing:0.002357pt;}
.lsbf{letter-spacing:0.002370pt;}
.lsd{letter-spacing:0.002389pt;}
.lsb2{letter-spacing:0.002403pt;}
.lsa3{letter-spacing:0.002471pt;}
.lsc7{letter-spacing:0.002505pt;}
.ls2{letter-spacing:0.002551pt;}
.lsa{letter-spacing:0.002630pt;}
.lsb{letter-spacing:0.003017pt;}
.ls9{letter-spacing:0.003106pt;}
.ls99{letter-spacing:0.003430pt;}
.ls11{letter-spacing:0.003942pt;}
.ls16{letter-spacing:0.004256pt;}
.lsc1{letter-spacing:0.004267pt;}
.ls5{letter-spacing:0.004813pt;}
.ls28{letter-spacing:0.005344pt;}
.ls3d{letter-spacing:0.010688pt;}
.ls1e{letter-spacing:0.016032pt;}
.ls49{letter-spacing:0.019200pt;}
.ls1f{letter-spacing:0.021376pt;}
.ls44{letter-spacing:0.026720pt;}
.ls48{letter-spacing:0.028800pt;}
.ls23{letter-spacing:0.032064pt;}
.ls22{letter-spacing:0.037408pt;}
.ls27{letter-spacing:0.042752pt;}
.ls24{letter-spacing:0.048096pt;}
.ls17{letter-spacing:0.051072pt;}
.ls3a{letter-spacing:0.053440pt;}
.ls40{letter-spacing:0.058784pt;}
.ls3c{letter-spacing:0.064128pt;}
.ls91{letter-spacing:0.067200pt;}
.ls4f{letter-spacing:0.069472pt;}
.ls1d{letter-spacing:0.072000pt;}
.ls36{letter-spacing:0.074816pt;}
.ls1a{letter-spacing:0.076608pt;}
.ls3b{letter-spacing:0.080160pt;}
.ls4e{letter-spacing:0.085504pt;}
.ls4b{letter-spacing:0.090848pt;}
.ls72{letter-spacing:0.101536pt;}
.ls93{letter-spacing:0.106880pt;}
.ls80{letter-spacing:0.112224pt;}
.ls19{letter-spacing:0.119168pt;}
.ls2a{letter-spacing:0.122912pt;}
.ls58{letter-spacing:0.127680pt;}
.ls68{letter-spacing:0.128256pt;}
.ls7f{letter-spacing:0.144288pt;}
.ls94{letter-spacing:0.154976pt;}
.ls1c{letter-spacing:0.158400pt;}
.ls29{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.161728pt;}
.ls33{letter-spacing:0.208416pt;}
.ls15{letter-spacing:0.238336pt;}
.ls57{letter-spacing:0.306432pt;}
.ls56{letter-spacing:0.374528pt;}
.ls25{letter-spacing:0.400800pt;}
.ls26{letter-spacing:0.721440pt;}
.ls45{letter-spacing:0.996864pt;}
.ls42{letter-spacing:1.042080pt;}
.ls7{letter-spacing:1.133683pt;}
.ls41{letter-spacing:1.357376pt;}
.ls43{letter-spacing:1.362720pt;}
.ls3{letter-spacing:1.654338pt;}
.ls2c{letter-spacing:1.678016pt;}
.ls2b{letter-spacing:1.998656pt;}
.ls39{letter-spacing:2.319296pt;}
.ls47{letter-spacing:2.639936pt;}
.ls46{letter-spacing:2.960576pt;}
.ls3e{letter-spacing:5.520352pt;}
.ls3f{letter-spacing:5.840992pt;}
.ls37{letter-spacing:7.118208pt;}
.ls38{letter-spacing:7.438848pt;}
.ls21{letter-spacing:7.759488pt;}
.ls20{letter-spacing:8.080128pt;}
.ls34{letter-spacing:8.400768pt;}
.ls35{letter-spacing:8.721408pt;}
.lsd6{letter-spacing:8.877963pt;}
.lsd8{letter-spacing:9.148800pt;}
.lsd5{letter-spacing:9.454246pt;}
.lsc3{letter-spacing:10.330514pt;}
.ls9f{letter-spacing:10.623733pt;}
.lsa2{letter-spacing:10.624017pt;}
.lsa1{letter-spacing:10.629067pt;}
.lsa0{letter-spacing:10.629350pt;}
.ls6{letter-spacing:10.631867pt;}
.ls9c{letter-spacing:10.741018pt;}
.ls9d{letter-spacing:10.746400pt;}
.lsa5{letter-spacing:10.796524pt;}
.lsa4{letter-spacing:10.800546pt;}
.ls9b{letter-spacing:10.975519pt;}
.ls2f{letter-spacing:11.281184pt;}
.ls2d{letter-spacing:11.601824pt;}
.lsc4{letter-spacing:11.678787pt;}
.lsd4{letter-spacing:11.729154pt;}
.lscb{letter-spacing:11.781815pt;}
.lscd{letter-spacing:11.793820pt;}
.ls2e{letter-spacing:11.922464pt;}
.lsa9{letter-spacing:11.952375pt;}
.lsc0{letter-spacing:11.954133pt;}
.lsa8{letter-spacing:11.957709pt;}
.lsc5{letter-spacing:11.959467pt;}
.lsd7{letter-spacing:12.047496pt;}
.lsb4{letter-spacing:13.089867pt;}
.lsb3{letter-spacing:13.091186pt;}
.lsb7{letter-spacing:13.104659pt;}
.lsb8{letter-spacing:13.105003pt;}
.lsab{letter-spacing:13.144421pt;}
.lsae{letter-spacing:13.147253pt;}
.lsad{letter-spacing:13.149717pt;}
.lsac{letter-spacing:13.152549pt;}
.ls52{letter-spacing:13.549136pt;}
.lsbc{letter-spacing:14.456058pt;}
.lsbb{letter-spacing:14.457903pt;}
.lsb6{letter-spacing:14.712267pt;}
.lsb5{letter-spacing:14.714112pt;}
.lsba{letter-spacing:14.973705pt;}
.lsb9{letter-spacing:14.980779pt;}
.lsd0{letter-spacing:15.396434pt;}
.lsb0{letter-spacing:15.758018pt;}
.lsaf{letter-spacing:15.759864pt;}
.lsd1{letter-spacing:16.029114pt;}
.lsa6{letter-spacing:17.162239pt;}
.ls32{letter-spacing:26.319200pt;}
.ls30{letter-spacing:26.625888pt;}
.ls31{letter-spacing:26.639840pt;}
.ls1{letter-spacing:28.452898pt;}
.ls51{letter-spacing:105.998240pt;}
.ls97{letter-spacing:128.328693pt;}
.ls4d{letter-spacing:168.079488pt;}
.ls50{letter-spacing:213.840160pt;}
.ls4c{letter-spacing:492.241184pt;}
.ls4a{letter-spacing:544.719264pt;}
.ls1b{letter-spacing:949.998784pt;}
.ws6a{word-spacing:-53.440000pt;}
.ws5c{word-spacing:-42.560000pt;}
.ws6{word-spacing:-15.461955pt;}
.ws3f{word-spacing:-14.771215pt;}
.ws10a{word-spacing:-13.915853pt;}
.wsc8{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-12.369595pt;}
.wscf{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-10.626800pt;}
.wse0{word-spacing:-10.161920pt;}
.ws55{word-spacing:-4.782048pt;}
.ws59{word-spacing:-3.825638pt;}
.ws30{word-spacing:-3.613103pt;}
.wsfe{word-spacing:-3.081764pt;}
.ws15e{word-spacing:-3.060531pt;}
.ws4f{word-spacing:-3.028630pt;}
.ws108{word-spacing:-2.917069pt;}
.ws156{word-spacing:-2.869248pt;}
.ws2a{word-spacing:-2.869229pt;}
.ws160{word-spacing:-2.725786pt;}
.ws161{word-spacing:-2.677965pt;}
.ws143{word-spacing:-2.534502pt;}
.ws15a{word-spacing:-2.486682pt;}
.ws111{word-spacing:-2.104115pt;}
.wsfb{word-spacing:-2.072221pt;}
.ws110{word-spacing:-1.865011pt;}
.ws57{word-spacing:-1.806551pt;}
.ws40{word-spacing:-1.753418pt;}
.ws3{word-spacing:-1.696326pt;}
.ws112{word-spacing:-1.625907pt;}
.ws12b{word-spacing:-1.578086pt;}
.ws58{word-spacing:-1.540882pt;}
.ws124{word-spacing:-1.530266pt;}
.ws41{word-spacing:-1.487748pt;}
.ws126{word-spacing:-1.482445pt;}
.ws13e{word-spacing:-1.434624pt;}
.wsc0{word-spacing:-1.381481pt;}
.ws121{word-spacing:-1.291162pt;}
.ws101{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws11f{word-spacing:-1.099878pt;}
.ws54{word-spacing:-1.009543pt;}
.ws131{word-spacing:-1.004237pt;}
.wsc4{word-spacing:-0.903276pt;}
.ws33{word-spacing:-0.850142pt;}
.wsee{word-spacing:-0.765133pt;}
.ws15{word-spacing:-0.743874pt;}
.ws27{word-spacing:-0.637606pt;}
.wsbf{word-spacing:-0.584473pt;}
.ws152{word-spacing:-0.526029pt;}
.ws13d{word-spacing:-0.478208pt;}
.ws1f{word-spacing:-0.478205pt;}
.ws60{word-spacing:-0.417088pt;}
.wsf7{word-spacing:-0.371937pt;}
.ws64{word-spacing:-0.348992pt;}
.ws153{word-spacing:-0.334746pt;}
.wsb{word-spacing:-0.318803pt;}
.ws116{word-spacing:-0.286925pt;}
.ws11{word-spacing:-0.265669pt;}
.ws94{word-spacing:-0.261856pt;}
.ws15c{word-spacing:-0.239104pt;}
.ws69{word-spacing:-0.213760pt;}
.ws9{word-spacing:-0.212535pt;}
.wsb9{word-spacing:-0.208416pt;}
.ws61{word-spacing:-0.204288pt;}
.ws9b{word-spacing:-0.197728pt;}
.ws113{word-spacing:-0.191283pt;}
.ws80{word-spacing:-0.181696pt;}
.ws74{word-spacing:-0.176352pt;}
.ws65{word-spacing:-0.170240pt;}
.ws9c{word-spacing:-0.165664pt;}
.wsb8{word-spacing:-0.160320pt;}
.ws8{word-spacing:-0.159402pt;}
.ws8a{word-spacing:-0.154976pt;}
.ws90{word-spacing:-0.144288pt;}
.ws10d{word-spacing:-0.143462pt;}
.wsb7{word-spacing:-0.138944pt;}
.wsb6{word-spacing:-0.133600pt;}
.ws9a{word-spacing:-0.128256pt;}
.ws91{word-spacing:-0.122912pt;}
.ws68{word-spacing:-0.120000pt;}
.ws63{word-spacing:-0.119168pt;}
.wsa4{word-spacing:-0.117568pt;}
.wsb4{word-spacing:-0.115200pt;}
.wsa7{word-spacing:-0.112224pt;}
.ws9d{word-spacing:-0.106880pt;}
.ws29{word-spacing:-0.106268pt;}
.ws77{word-spacing:-0.101536pt;}
.ws7a{word-spacing:-0.096192pt;}
.ws114{word-spacing:-0.095642pt;}
.ws5f{word-spacing:-0.093632pt;}
.ws72{word-spacing:-0.090848pt;}
.ws76{word-spacing:-0.085504pt;}
.wsac{word-spacing:-0.080160pt;}
.wsb0{word-spacing:-0.076800pt;}
.ws7c{word-spacing:-0.074816pt;}
.ws6d{word-spacing:-0.069472pt;}
.wsb2{word-spacing:-0.067200pt;}
.wsa3{word-spacing:-0.064128pt;}
.ws7f{word-spacing:-0.058784pt;}
.ws6c{word-spacing:-0.053440pt;}
.wsf{word-spacing:-0.053134pt;}
.ws98{word-spacing:-0.048096pt;}
.ws67{word-spacing:-0.048000pt;}
.ws11b{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.046816pt;}
.wsb3{word-spacing:-0.043200pt;}
.ws8f{word-spacing:-0.042752pt;}
.ws62{word-spacing:-0.042560pt;}
.wsfa{word-spacing:-0.040648pt;}
.ws79{word-spacing:-0.037408pt;}
.ws86{word-spacing:-0.032064pt;}
.ws66{word-spacing:-0.028800pt;}
.ws83{word-spacing:-0.026720pt;}
.ws6e{word-spacing:-0.021376pt;}
.ws71{word-spacing:-0.016032pt;}
.wsb1{word-spacing:-0.014400pt;}
.ws1{word-spacing:-0.014379pt;}
.wseb{word-spacing:-0.013901pt;}
.wsed{word-spacing:-0.012151pt;}
.wsea{word-spacing:-0.011981pt;}
.ws7b{word-spacing:-0.010688pt;}
.wsef{word-spacing:-0.010607pt;}
.ws6b{word-spacing:-0.005344pt;}
.wsd7{word-spacing:-0.004018pt;}
.wse4{word-spacing:-0.001902pt;}
.wse7{word-spacing:-0.001402pt;}
.ws0{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.001535pt;}
.ws5d{word-spacing:0.004256pt;}
.ws95{word-spacing:0.005344pt;}
.ws92{word-spacing:0.010688pt;}
.ws97{word-spacing:0.016032pt;}
.wsaa{word-spacing:0.021376pt;}
.ws8d{word-spacing:0.026720pt;}
.ws85{word-spacing:0.032064pt;}
.ws82{word-spacing:0.037408pt;}
.wsc2{word-spacing:0.040648pt;}
.ws87{word-spacing:0.042752pt;}
.ws122{word-spacing:0.047821pt;}
.wsa1{word-spacing:0.048096pt;}
.ws5a{word-spacing:0.051072pt;}
.ws13{word-spacing:0.053134pt;}
.ws75{word-spacing:0.053440pt;}
.ws8e{word-spacing:0.058784pt;}
.wsa6{word-spacing:0.064128pt;}
.ws96{word-spacing:0.069472pt;}
.ws99{word-spacing:0.074816pt;}
.ws93{word-spacing:0.080160pt;}
.wsc3{word-spacing:0.081295pt;}
.wsa2{word-spacing:0.085504pt;}
.ws9f{word-spacing:0.090848pt;}
.ws11c{word-spacing:0.095642pt;}
.ws70{word-spacing:0.096192pt;}
.ws8b{word-spacing:0.101536pt;}
.ws5b{word-spacing:0.102144pt;}
.ws10{word-spacing:0.106268pt;}
.ws89{word-spacing:0.106880pt;}
.wse3{word-spacing:0.109087pt;}
.wsa0{word-spacing:0.117568pt;}
.wsa8{word-spacing:0.122912pt;}
.wse2{word-spacing:0.127522pt;}
.ws8c{word-spacing:0.128256pt;}
.ws78{word-spacing:0.138944pt;}
.ws118{word-spacing:0.143462pt;}
.ws5{word-spacing:0.159402pt;}
.wsab{word-spacing:0.165664pt;}
.wse6{word-spacing:0.170029pt;}
.wsbb{word-spacing:0.171008pt;}
.wsb5{word-spacing:0.181696pt;}
.ws125{word-spacing:0.191283pt;}
.wsae{word-spacing:0.203072pt;}
.wsa{word-spacing:0.212535pt;}
.ws73{word-spacing:0.213760pt;}
.wsa9{word-spacing:0.224448pt;}
.wsa5{word-spacing:0.235136pt;}
.ws13b{word-spacing:0.239104pt;}
.wsc{word-spacing:0.265669pt;}
.ws84{word-spacing:0.272544pt;}
.ws149{word-spacing:0.286925pt;}
.ws7d{word-spacing:0.288576pt;}
.wsad{word-spacing:0.309952pt;}
.ws24{word-spacing:0.318803pt;}
.ws88{word-spacing:0.320640pt;}
.wsba{word-spacing:0.331328pt;}
.ws6f{word-spacing:0.352704pt;}
.ws12{word-spacing:0.371937pt;}
.ws81{word-spacing:0.374080pt;}
.ws7e{word-spacing:0.390112pt;}
.ws9e{word-spacing:0.395456pt;}
.wsaf{word-spacing:0.416832pt;}
.ws16{word-spacing:0.425071pt;}
.ws4e{word-spacing:0.478205pt;}
.ws12a{word-spacing:0.526029pt;}
.ws10b{word-spacing:0.573850pt;}
.ws2f{word-spacing:0.637606pt;}
.ws14b{word-spacing:0.669491pt;}
.wsbd{word-spacing:0.690740pt;}
.ws11a{word-spacing:0.765133pt;}
.ws2c{word-spacing:0.797008pt;}
.wsfd{word-spacing:0.850142pt;}
.ws11d{word-spacing:0.860774pt;}
.ws12c{word-spacing:0.908595pt;}
.ws2d{word-spacing:0.956410pt;}
.ws147{word-spacing:1.004237pt;}
.ws7{word-spacing:1.009543pt;}
.ws100{word-spacing:1.062677pt;}
.ws47{word-spacing:1.115811pt;}
.ws48{word-spacing:1.168945pt;}
.ws32{word-spacing:1.275213pt;}
.wsc9{word-spacing:1.328347pt;}
.ws14c{word-spacing:1.338982pt;}
.wsf5{word-spacing:1.434614pt;}
.wsf9{word-spacing:1.536769pt;}
.ws4{word-spacing:1.540882pt;}
.ws13a{word-spacing:1.578086pt;}
.wsf8{word-spacing:1.700284pt;}
.wsc1{word-spacing:1.753418pt;}
.ws103{word-spacing:1.806551pt;}
.ws15f{word-spacing:1.817190pt;}
.ws28{word-spacing:1.912819pt;}
.ws50{word-spacing:1.965953pt;}
.ws43{word-spacing:2.019087pt;}
.ws162{word-spacing:2.104115pt;}
.ws56{word-spacing:2.125355pt;}
.wsd3{word-spacing:2.178489pt;}
.ws35{word-spacing:2.284756pt;}
.wsc7{word-spacing:2.337890pt;}
.wsff{word-spacing:2.391024pt;}
.ws15b{word-spacing:2.391040pt;}
.ws12d{word-spacing:2.486682pt;}
.wsf3{word-spacing:2.497292pt;}
.ws4c{word-spacing:2.656693pt;}
.ws46{word-spacing:2.709827pt;}
.ws141{word-spacing:2.725786pt;}
.wsf6{word-spacing:2.762961pt;}
.ws44{word-spacing:2.975497pt;}
.ws159{word-spacing:3.060531pt;}
.wsf4{word-spacing:3.134898pt;}
.ws2e{word-spacing:3.188032pt;}
.ws144{word-spacing:3.203994pt;}
.ws26{word-spacing:3.241166pt;}
.ws34{word-spacing:3.347434pt;}
.ws150{word-spacing:3.347456pt;}
.ws14{word-spacing:3.400567pt;}
.ws142{word-spacing:3.443098pt;}
.wsbe{word-spacing:3.453701pt;}
.ws17{word-spacing:3.506835pt;}
.ws3a{word-spacing:3.559969pt;}
.ws52{word-spacing:3.666237pt;}
.ws22{word-spacing:3.772505pt;}
.ws23{word-spacing:3.825638pt;}
.ws31{word-spacing:3.878772pt;}
.wsc5{word-spacing:3.985040pt;}
.ws1b{word-spacing:4.250720pt;}
.ws53{word-spacing:4.303843pt;}
.ws37{word-spacing:4.356977pt;}
.ws1a{word-spacing:4.463245pt;}
.ws138{word-spacing:4.542976pt;}
.ws137{word-spacing:4.544355pt;}
.ws128{word-spacing:4.590797pt;}
.ws18{word-spacing:4.622646pt;}
.ws10e{word-spacing:4.638618pt;}
.ws19{word-spacing:4.675780pt;}
.ws115{word-spacing:4.734259pt;}
.ws109{word-spacing:4.758204pt;}
.ws151{word-spacing:4.773325pt;}
.ws10f{word-spacing:4.774835pt;}
.ws13c{word-spacing:4.777566pt;}
.ws14a{word-spacing:4.778564pt;}
.ws155{word-spacing:4.778769pt;}
.ws140{word-spacing:4.778914pt;}
.ws157{word-spacing:4.779665pt;}
.ws119{word-spacing:4.779708pt;}
.ws146{word-spacing:4.779776pt;}
.ws120{word-spacing:4.780126pt;}
.ws129{word-spacing:4.780186pt;}
.ws11e{word-spacing:4.781065pt;}
.ws107{word-spacing:4.781175pt;}
.ws14f{word-spacing:4.781218pt;}
.ws136{word-spacing:4.781355pt;}
.ws14e{word-spacing:4.781730pt;}
.ws12f{word-spacing:4.781824pt;}
.ws123{word-spacing:4.781986pt;}
.ws13f{word-spacing:4.782029pt;}
.ws4b{word-spacing:4.782048pt;}
.ws10c{word-spacing:4.782080pt;}
.ws15d{word-spacing:4.782549pt;}
.ws139{word-spacing:4.782916pt;}
.ws130{word-spacing:4.782950pt;}
.ws12e{word-spacing:4.783130pt;}
.ws132{word-spacing:4.784469pt;}
.ws154{word-spacing:4.784631pt;}
.ws158{word-spacing:4.829901pt;}
.ws4d{word-spacing:4.835182pt;}
.ws2b{word-spacing:4.941450pt;}
.ws106{word-spacing:4.973363pt;}
.wsf2{word-spacing:5.153985pt;}
.ws39{word-spacing:5.207119pt;}
.wse{word-spacing:5.313387pt;}
.ws3b{word-spacing:5.419654pt;}
.wse8{word-spacing:5.525922pt;}
.ws102{word-spacing:5.579056pt;}
.wsc6{word-spacing:5.632190pt;}
.ws133{word-spacing:5.642854pt;}
.ws134{word-spacing:5.690675pt;}
.wsbc{word-spacing:5.897859pt;}
.ws25{word-spacing:5.950993pt;}
.ws135{word-spacing:6.264525pt;}
.ws49{word-spacing:6.322930pt;}
.ws4a{word-spacing:6.376064pt;}
.ws38{word-spacing:6.535466pt;}
.ws117{word-spacing:6.599270pt;}
.wsd4{word-spacing:6.694867pt;}
.wsfc{word-spacing:6.801135pt;}
.ws127{word-spacing:7.029658pt;}
.ws45{word-spacing:7.332474pt;}
.ws21{word-spacing:7.598143pt;}
.ws20{word-spacing:7.651277pt;}
.ws42{word-spacing:7.810678pt;}
.ws148{word-spacing:8.129536pt;}
.ws51{word-spacing:8.660820pt;}
.ws3c{word-spacing:8.873356pt;}
.ws14d{word-spacing:9.133773pt;}
.ws3e{word-spacing:9.936033pt;}
.ws3d{word-spacing:10.361104pt;}
.ws104{word-spacing:12.194304pt;}
.ws105{word-spacing:14.728806pt;}
.ws145{word-spacing:14.776627pt;}
.wsd{word-spacing:15.249420pt;}
.ws36{word-spacing:18.012381pt;}
.wsdb{word-spacing:82.677381pt;}
.wse1{word-spacing:83.165153pt;}
.wsdd{word-spacing:83.693573pt;}
.wsd9{word-spacing:84.709765pt;}
.wse9{word-spacing:101.284454pt;}
.wsd5{word-spacing:107.522086pt;}
.wse5{word-spacing:109.179668pt;}
.wsca{word-spacing:114.817741pt;}
.wsec{word-spacing:119.934566pt;}
.wsd6{word-spacing:126.524528pt;}
.wsf0{word-spacing:131.889766pt;}
.wsd0{word-spacing:245.655450pt;}
.wsdc{word-spacing:255.348726pt;}
.wsd8{word-spacing:255.795850pt;}
.wsda{word-spacing:256.446213pt;}
.wsdf{word-spacing:259.332198pt;}
.wsde{word-spacing:261.120696pt;}
.wsd2{word-spacing:269.518029pt;}
.wscb{word-spacing:269.565850pt;}
.wscd{word-spacing:275.495629pt;}
.wscc{word-spacing:281.473229pt;}
.wsce{word-spacing:281.521050pt;}
.wsd1{word-spacing:293.476250pt;}
.ws1e{word-spacing:355.572728pt;}
._73{margin-left:-18.573634pt;}
._4{margin-left:-10.616218pt;}
._3{margin-left:-8.799027pt;}
._75{margin-left:-6.981837pt;}
._9{margin-left:-6.057261pt;}
._5{margin-left:-4.399514pt;}
._1{margin-left:-3.101863pt;}
._8{margin-left:-2.144797pt;}
._0{margin-left:-1.103159pt;}
._2{width:1.272146pt;}
._71{width:3.069113pt;}
._11{width:4.280447pt;}
._1a{width:9.338909pt;}
._f{width:10.626800pt;}
._72{width:11.656326pt;}
._d{width:12.580075pt;}
._1f{width:14.226688pt;}
._6{width:15.876506pt;}
._7{width:17.598054pt;}
._b{width:18.727635pt;}
._15{width:20.339674pt;}
._a{width:21.719100pt;}
._12{width:22.783831pt;}
._18{width:24.641462pt;}
._16{width:25.823059pt;}
._1b{width:27.032486pt;}
._e{width:28.839038pt;}
._14{width:30.392572pt;}
._17{width:32.039722pt;}
._19{width:33.527470pt;}
._c{width:36.384047pt;}
._13{width:41.803701pt;}
._74{width:54.993920pt;}
._49{width:56.378332pt;}
._4c{width:57.313229pt;}
._5e{width:71.800540pt;}
._47{width:78.206136pt;}
._61{width:83.779424pt;}
._56{width:90.046566pt;}
._4d{width:97.676375pt;}
._46{width:98.651919pt;}
._36{width:100.034697pt;}
._35{width:114.545162pt;}
._55{width:116.634931pt;}
._39{width:119.812623pt;}
._34{width:122.033900pt;}
._59{width:123.282022pt;}
._3c{width:130.316462pt;}
._54{width:131.841946pt;}
._42{width:133.325147pt;}
._43{width:137.347754pt;}
._44{width:139.299599pt;}
._50{width:141.485766pt;}
._4a{width:143.486310pt;}
._60{width:149.796265pt;}
._5d{width:151.409357pt;}
._5c{width:154.126438pt;}
._48{width:156.421837pt;}
._37{width:158.119475pt;}
._3a{width:159.135667pt;}
._51{width:163.786240pt;}
._45{width:173.443651pt;}
._53{width:175.559031pt;}
._52{width:178.275942pt;}
._3f{width:186.904198pt;}
._5b{width:190.484224pt;}
._5a{width:193.148211pt;}
._4b{width:199.549025pt;}
._6b{width:206.710190pt;}
._68{width:207.872236pt;}
._1e{width:212.058947pt;}
._67{width:214.904284pt;}
._62{width:216.814725pt;}
._30{width:218.845423pt;}
._5f{width:220.630208pt;}
._40{width:223.586150pt;}
._29{width:224.757760pt;}
._69{width:227.084216pt;}
._66{width:231.204004pt;}
._6a{width:234.089989pt;}
._3b{width:235.228124pt;}
._65{width:241.650458pt;}
._58{width:244.997939pt;}
._6e{width:246.853361pt;}
._57{width:248.142131pt;}
._23{width:255.458714pt;}
._70{width:262.258831pt;}
._38{width:265.957770pt;}
._64{width:266.852019pt;}
._27{width:270.283162pt;}
._3e{width:271.282616pt;}
._6f{width:273.071114pt;}
._6c{width:275.875804pt;}
._2a{width:277.934490pt;}
._6d{width:280.631583pt;}
._2f{width:282.142720pt;}
._63{width:283.151739pt;}
._24{width:293.428429pt;}
._32{width:295.628186pt;}
._28{width:305.380335pt;}
._2b{width:312.795853pt;}
._41{width:316.442189pt;}
._2c{width:317.386650pt;}
._31{width:330.298266pt;}
._2d{width:331.206861pt;}
._33{width:342.014362pt;}
._2e{width:366.976819pt;}
._22{width:374.293402pt;}
._21{width:385.531290pt;}
._26{width:404.468326pt;}
._25{width:416.423526pt;}
._4f{width:431.965286pt;}
._1d{width:455.619845pt;}
._1c{width:554.027878pt;}
._3d{width:692.919666pt;}
._20{width:700.479078pt;}
._4e{width:1310.213140pt;}
._10{width:1331.466740pt;}
.fs6{font-size:34.633760pt;}
.fsc{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:39.581440pt;}
.fs11{font-size:40.647680pt;}
.fsb{font-size:41.988267pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fs5{font-size:49.476800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.y111{bottom:-706.650267pt;}
.y10f{bottom:-704.410195pt;}
.y10e{bottom:-686.410267pt;}
.y110{bottom:-684.249955pt;}
.y10d{bottom:-661.850195pt;}
.y10c{bottom:-643.850267pt;}
.y10a{bottom:-639.449411pt;}
.y105{bottom:-630.490195pt;}
.y10b{bottom:-621.450267pt;}
.y108{bottom:-621.449483pt;}
.y104{bottom:-612.490267pt;}
.y109{bottom:-603.449555pt;}
.y107{bottom:-599.050107pt;}
.y106{bottom:-581.050179pt;}
.y103{bottom:-558.650267pt;}
.y102{bottom:-529.850267pt;}
.y101{bottom:-496.170051pt;}
.y100{bottom:-478.170123pt;}
.yff{bottom:-460.170195pt;}
.yfe{bottom:-442.169757pt;}
.yfd{bottom:-424.249989pt;}
.yfc{bottom:-406.250061pt;}
.yfb{bottom:-388.249917pt;}
.yfa{bottom:-370.249989pt;}
.yf9{bottom:-352.250061pt;}
.yf8{bottom:-334.250133pt;}
.yf7{bottom:-316.249819pt;}
.yf6{bottom:-298.330051pt;}
.yf5{bottom:-280.330123pt;}
.yf4{bottom:-262.330195pt;}
.yf3{bottom:-244.329891pt;}
.yf2{bottom:-226.329963pt;}
.yf1{bottom:-208.330035pt;}
.yf0{bottom:-190.409845pt;}
.yef{bottom:-172.409917pt;}
.yee{bottom:-154.409989pt;}
.yed{bottom:-136.410061pt;}
.yec{bottom:-118.409859pt;}
.yeb{bottom:-100.409931pt;}
.yea{bottom:-82.410003pt;}
.ye9{bottom:-56.490267pt;}
.ye8{bottom:-22.810267pt;}
.ye7{bottom:-1.130267pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.044747pt;}
.y24{bottom:11.257415pt;}
.y2e{bottom:12.578910pt;}
.y23{bottom:23.131847pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y51{bottom:96.544000pt;}
.y27b{bottom:96.850667pt;}
.y83{bottom:98.682667pt;}
.yb5{bottom:98.894667pt;}
.y27e{bottom:102.076000pt;}
.y229{bottom:103.650667pt;}
.y247{bottom:104.236000pt;}
.y9c{bottom:112.762667pt;}
.y27a{bottom:114.066667pt;}
.y50{bottom:114.556000pt;}
.y176{bottom:115.454667pt;}
.y82{bottom:116.694667pt;}
.yb4{bottom:116.906667pt;}
.y27d{bottom:119.292000pt;}
.y246{bottom:121.450667pt;}
.y228{bottom:121.662667pt;}
.y1dd{bottom:123.126667pt;}
.y21{bottom:123.790666pt;}
.y9b{bottom:130.774667pt;}
.y279{bottom:131.281333pt;}
.y4f{bottom:132.568000pt;}
.y175{bottom:133.468000pt;}
.y81{bottom:134.706667pt;}
.y27c{bottom:136.506667pt;}
.y245{bottom:138.666667pt;}
.y227{bottom:139.674667pt;}
.y1dc{bottom:141.140000pt;}
.y278{bottom:148.497333pt;}
.y9a{bottom:148.788000pt;}
.y4e{bottom:150.581333pt;}
.yb3{bottom:150.860000pt;}
.y174{bottom:151.480000pt;}
.y80{bottom:152.720000pt;}
.y244{bottom:155.882667pt;}
.y226{bottom:157.688000pt;}
.y1db{bottom:159.152000pt;}
.ye1{bottom:159.653333pt;}
.y277{bottom:165.713333pt;}
.y99{bottom:166.800000pt;}
.y4d{bottom:168.593333pt;}
.yb2{bottom:168.872000pt;}
.y173{bottom:169.492000pt;}
.y7f{bottom:170.732000pt;}
.y243{bottom:173.097333pt;}
.y18{bottom:175.052000pt;}
.y225{bottom:175.700000pt;}
.y1da{bottom:177.165333pt;}
.ye0{bottom:177.666667pt;}
.y276{bottom:182.928000pt;}
.y98{bottom:184.813333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4c{bottom:186.606667pt;}
.y172{bottom:187.505333pt;}
.y242{bottom:190.313333pt;}
.y1fd{bottom:191.576000pt;}
.y224{bottom:193.713333pt;}
.y1d9{bottom:195.177333pt;}
.y7e{bottom:196.714667pt;}
.y1a2{bottom:197.225333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y275{bottom:200.144000pt;}
.y97{bottom:202.825333pt;}
.y4b{bottom:204.618667pt;}
.y171{bottom:205.517333pt;}
.y241{bottom:207.528000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1fc{bottom:209.975933pt;}
.ydf{bottom:211.618667pt;}
.y223{bottom:211.725333pt;}
.y1d8{bottom:213.189333pt;}
.y1a1{bottom:215.237333pt;}
.y12a{bottom:216.692000pt;}
.y274{bottom:217.358667pt;}
.y96{bottom:220.837333pt;}
.y4a{bottom:222.630667pt;}
.y170{bottom:223.530667pt;}
.y240{bottom:224.744000pt;}
.y7d{bottom:227.665333pt;}
.y1fb{bottom:228.108133pt;}
.yde{bottom:229.632000pt;}
.y222{bottom:229.737333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1d7{bottom:231.202667pt;}
.y1a0{bottom:233.250667pt;}
.y273{bottom:234.574667pt;}
.y129{bottom:234.705333pt;}
.y95{bottom:238.850667pt;}
.y49{bottom:240.644000pt;}
.y16f{bottom:241.542667pt;}
.y23f{bottom:241.960000pt;}
.ye6{bottom:242.149733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y1fa{bottom:246.239200pt;}
.y221{bottom:247.750667pt;}
.y1d6{bottom:249.214667pt;}
.y19f{bottom:251.262667pt;}
.y272{bottom:251.790667pt;}
.y128{bottom:252.717333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y94{bottom:256.862667pt;}
.y7c{bottom:258.616000pt;}
.y48{bottom:258.656000pt;}
.y23e{bottom:259.174667pt;}
.ydd{bottom:263.584000pt;}
.y1f9{bottom:264.371400pt;}
.y220{bottom:265.762667pt;}
.y16e{bottom:267.525333pt;}
.y271{bottom:269.005333pt;}
.y19e{bottom:269.276000pt;}
.y127{bottom:270.729333pt;}
.y93{bottom:274.876000pt;}
.y1d5{bottom:275.197333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y23d{bottom:276.390667pt;}
.y47{bottom:276.669333pt;}
.y1f4{bottom:281.586733pt;}
.ydc{bottom:281.597333pt;}
.y1f8{bottom:282.503600pt;}
.y21f{bottom:283.776000pt;}
.y270{bottom:286.221333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y19d{bottom:287.288000pt;}
.y126{bottom:288.742667pt;}
.y7b{bottom:289.566667pt;}
.y92{bottom:292.888000pt;}
.y23c{bottom:293.605333pt;}
.y46{bottom:294.681333pt;}
.y16d{bottom:298.476000pt;}
.ydb{bottom:299.609333pt;}
.y1f7{bottom:300.634667pt;}
.y21e{bottom:301.788000pt;}
.y26f{bottom:303.437333pt;}
.y19c{bottom:305.300000pt;}
.y125{bottom:306.754667pt;}
.y7a{bottom:307.580000pt;}
.yf{bottom:309.452000pt;}
.y1d4{bottom:310.532000pt;}
.y23b{bottom:310.821333pt;}
.y91{bottom:310.900000pt;}
.y45{bottom:312.693333pt;}
.yda{bottom:317.621333pt;}
.y1f6{bottom:318.766867pt;}
.y21d{bottom:319.800000pt;}
.y26e{bottom:320.652000pt;}
.y1d3{bottom:323.150667pt;}
.y19b{bottom:323.313333pt;}
.y124{bottom:324.768000pt;}
.y79{bottom:325.592000pt;}
.y23a{bottom:328.037333pt;}
.y90{bottom:328.913333pt;}
.y16c{bottom:329.426667pt;}
.y44{bottom:330.706667pt;}
.yd9{bottom:335.634667pt;}
.y1f5{bottom:336.897933pt;}
.y21c{bottom:337.813333pt;}
.y26d{bottom:337.868000pt;}
.y19a{bottom:341.325333pt;}
.y1d2{bottom:341.551000pt;}
.y123{bottom:342.780000pt;}
.y78{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.y239{bottom:345.252000pt;}
.y8f{bottom:346.925333pt;}
.y16b{bottom:347.438667pt;}
.y43{bottom:348.718667pt;}
.yd8{bottom:353.646667pt;}
.y1f3{bottom:355.030133pt;}
.y26c{bottom:355.082667pt;}
.y21b{bottom:355.825333pt;}
.y199{bottom:359.338667pt;}
.y1d1{bottom:359.683200pt;}
.y122{bottom:360.792000pt;}
.y77{bottom:361.617333pt;}
.y238{bottom:362.468000pt;}
.yd{bottom:362.706666pt;}
.y8e{bottom:364.938667pt;}
.y16a{bottom:365.452000pt;}
.y42{bottom:366.732000pt;}
.yd7{bottom:371.660000pt;}
.y26b{bottom:372.298667pt;}
.y21a{bottom:373.838667pt;}
.y198{bottom:377.350667pt;}
.y1d0{bottom:377.815400pt;}
.y121{bottom:378.805333pt;}
.y76{bottom:379.629333pt;}
.y237{bottom:379.682667pt;}
.y1f2{bottom:380.885333pt;}
.y8d{bottom:382.950667pt;}
.y169{bottom:383.464000pt;}
.y41{bottom:384.744000pt;}
.y26a{bottom:389.514667pt;}
.yd6{bottom:389.672000pt;}
.y219{bottom:391.850667pt;}
.y197{bottom:395.362667pt;}
.y1cf{bottom:395.946467pt;}
.y120{bottom:396.817333pt;}
.y236{bottom:396.898667pt;}
.y75{bottom:397.642667pt;}
.y8c{bottom:400.962667pt;}
.y168{bottom:401.477333pt;}
.y269{bottom:406.729333pt;}
.yd5{bottom:407.684000pt;}
.y218{bottom:409.862667pt;}
.y40{bottom:410.726667pt;}
.y1f1{bottom:413.874667pt;}
.y1ce{bottom:414.078667pt;}
.y235{bottom:414.114667pt;}
.y11f{bottom:414.830667pt;}
.y74{bottom:415.654667pt;}
.y8b{bottom:418.976000pt;}
.y167{bottom:419.489333pt;}
.y196{bottom:421.345333pt;}
.y268{bottom:423.945333pt;}
.yd4{bottom:425.697333pt;}
.y217{bottom:427.876000pt;}
.y234{bottom:431.329333pt;}
.y1f0{bottom:431.886667pt;}
.y1cd{bottom:432.209733pt;}
.y11e{bottom:432.842667pt;}
.y73{bottom:433.666667pt;}
.y8a{bottom:436.988000pt;}
.y166{bottom:437.501333pt;}
.y267{bottom:441.160000pt;}
.yd3{bottom:443.709333pt;}
.y216{bottom:445.888000pt;}
.yc{bottom:446.990669pt;}
.y233{bottom:448.545333pt;}
.y1ef{bottom:449.898667pt;}
.y1cc{bottom:450.341933pt;}
.y11d{bottom:450.854667pt;}
.y72{bottom:451.680000pt;}
.y89{bottom:455.001333pt;}
.y165{bottom:455.514667pt;}
.y266{bottom:458.376000pt;}
.y195{bottom:460.346667pt;}
.yd2{bottom:461.722667pt;}
.yb{bottom:462.990669pt;}
.y215{bottom:463.901333pt;}
.y232{bottom:465.761333pt;}
.y1ee{bottom:467.912000pt;}
.y11c{bottom:468.868000pt;}
.y71{bottom:469.692000pt;}
.y88{bottom:473.013333pt;}
.y164{bottom:473.526667pt;}
.y265{bottom:475.592000pt;}
.y1cb{bottom:476.197333pt;}
.y3f{bottom:478.652000pt;}
.ya{bottom:478.990666pt;}
.yd1{bottom:479.734667pt;}
.y194{bottom:481.678667pt;}
.y214{bottom:481.913333pt;}
.y1ed{bottom:485.924000pt;}
.y11b{bottom:486.880000pt;}
.y70{bottom:487.704000pt;}
.y191{bottom:488.176000pt;}
.y231{bottom:490.946667pt;}
.y87{bottom:491.025333pt;}
.y163{bottom:491.540000pt;}
.y264{bottom:492.806667pt;}
.y9{bottom:494.990666pt;}
.y3e{bottom:496.664000pt;}
.yd0{bottom:497.746667pt;}
.y190{bottom:502.788000pt;}
.y193{bottom:503.010667pt;}
.y1ec{bottom:503.937333pt;}
.y11a{bottom:504.893333pt;}
.y6f{bottom:505.717333pt;}
.y1ca{bottom:505.718667pt;}
.y213{bottom:507.896000pt;}
.yb1{bottom:509.038667pt;}
.y162{bottom:509.552000pt;}
.y263{bottom:510.022667pt;}
.ycf{bottom:515.760000pt;}
.y86{bottom:517.008000pt;}
.y1eb{bottom:521.949333pt;}
.y119{bottom:522.905333pt;}
.y6e{bottom:523.729333pt;}
.y1c9{bottom:523.730667pt;}
.y192{bottom:524.341333pt;}
.y230{bottom:526.014667pt;}
.yb0{bottom:527.050667pt;}
.y262{bottom:527.237333pt;}
.y161{bottom:527.564000pt;}
.y3d{bottom:530.617333pt;}
.yce{bottom:533.772000pt;}
.y212{bottom:538.846667pt;}
.y1ea{bottom:539.961333pt;}
.y118{bottom:540.917333pt;}
.y6d{bottom:541.742667pt;}
.y1c8{bottom:541.744000pt;}
.y261{bottom:544.453333pt;}
.yaf{bottom:545.064000pt;}
.y160{bottom:545.577333pt;}
.y18f{bottom:545.673333pt;}
.y22f{bottom:547.494667pt;}
.y3c{bottom:548.629333pt;}
.ycd{bottom:551.785333pt;}
.y211{bottom:556.858667pt;}
.y1e9{bottom:557.974667pt;}
.y117{bottom:558.930667pt;}
.y6c{bottom:559.754667pt;}
.y1c7{bottom:559.756000pt;}
.y260{bottom:561.669333pt;}
.yae{bottom:563.076000pt;}
.y85{bottom:563.900000pt;}
.y3b{bottom:566.642667pt;}
.y18e{bottom:566.686667pt;}
.y22e{bottom:568.973333pt;}
.ycc{bottom:569.797333pt;}
.y8{bottom:573.786667pt;}
.y18b{bottom:574.088000pt;}
.y210{bottom:574.872000pt;}
.y1e8{bottom:575.986667pt;}
.y116{bottom:576.942667pt;}
.y6b{bottom:577.766667pt;}
.y1c6{bottom:577.769333pt;}
.y25f{bottom:578.884000pt;}
.yad{bottom:581.088000pt;}
.y18d{bottom:581.298667pt;}
.y3a{bottom:584.654667pt;}
.y15f{bottom:586.104267pt;}
.ycb{bottom:587.809333pt;}
.y22d{bottom:590.453333pt;}
.y7{bottom:592.685334pt;}
.y20f{bottom:592.884000pt;}
.y1e7{bottom:594.000000pt;}
.y115{bottom:594.956000pt;}
.y6a{bottom:595.780000pt;}
.y25e{bottom:596.100000pt;}
.y15c{bottom:597.837667pt;}
.y84{bottom:597.852000pt;}
.y15e{bottom:598.524467pt;}
.yac{bottom:599.101333pt;}
.y18c{bottom:602.630667pt;}
.y39{bottom:602.666667pt;}
.y22c{bottom:603.962667pt;}
.y157{bottom:604.047200pt;}
.yca{bottom:605.822667pt;}
.y159{bottom:609.200467pt;}
.y15b{bottom:610.256733pt;}
.y20e{bottom:610.896000pt;}
.y1e6{bottom:612.012000pt;}
.y114{bottom:612.968000pt;}
.y25d{bottom:613.314667pt;}
.y69{bottom:613.792000pt;}
.y1c5{bottom:616.105333pt;}
.y156{bottom:616.467400pt;}
.y15d{bottom:616.656667pt;}
.yab{bottom:617.113333pt;}
.y22b{bottom:617.472000pt;}
.y38{bottom:620.680000pt;}
.y15a{bottom:622.676933pt;}
.yc9{bottom:623.834667pt;}
.y18a{bottom:623.962667pt;}
.y1c4{bottom:628.724000pt;}
.y20d{bottom:628.909333pt;}
.y1e5{bottom:630.024000pt;}
.y25c{bottom:630.530667pt;}
.y68{bottom:631.805333pt;}
.y158{bottom:634.787733pt;}
.yaa{bottom:635.126667pt;}
.y37{bottom:638.692000pt;}
.y113{bottom:638.950667pt;}
.yc8{bottom:641.846667pt;}
.y189{bottom:645.293333pt;}
.y6{bottom:645.598667pt;}
.y20c{bottom:646.921333pt;}
.y1c3{bottom:647.125400pt;}
.y25b{bottom:647.746667pt;}
.y1e4{bottom:648.037333pt;}
.y67{bottom:649.817333pt;}
.y155{bottom:652.650200pt;}
.ya9{bottom:653.138667pt;}
.y36{bottom:656.705333pt;}
.y1bf{bottom:658.857667pt;}
.yc7{bottom:659.860000pt;}
.y1c1{bottom:664.012067pt;}
.y20b{bottom:664.934667pt;}
.y25a{bottom:664.961333pt;}
.y154{bottom:665.070400pt;}
.y1c2{bottom:665.257600pt;}
.y1e3{bottom:666.049333pt;}
.y188{bottom:666.625333pt;}
.y112{bottom:667.060000pt;}
.y66{bottom:667.829333pt;}
.y3{bottom:668.977329pt;}
.y153{bottom:669.940333pt;}
.y151{bottom:670.034400pt;}
.ya8{bottom:671.150667pt;}
.y1be{bottom:671.277867pt;}
.y35{bottom:674.717333pt;}
.yc6{bottom:677.872000pt;}
.y259{bottom:682.177333pt;}
.y20a{bottom:682.946667pt;}
.y152{bottom:683.201467pt;}
.y1c0{bottom:683.388667pt;}
.y1e2{bottom:684.062667pt;}
.y65{bottom:685.842667pt;}
.ye5{bottom:686.997333pt;}
.y187{bottom:687.956000pt;}
.ya7{bottom:689.164000pt;}
.y34{bottom:692.729333pt;}
.yc5{bottom:695.885333pt;}
.y258{bottom:699.392000pt;}
.y209{bottom:700.958667pt;}
.y150{bottom:701.063933pt;}
.y1bd{bottom:701.520867pt;}
.y1e1{bottom:702.074667pt;}
.y64{bottom:703.854667pt;}
.y14e{bottom:706.588933pt;}
.ya6{bottom:707.176000pt;}
.y182{bottom:708.210667pt;}
.y186{bottom:709.288000pt;}
.y33{bottom:710.742667pt;}
.y1bc{bottom:712.695533pt;}
.y14f{bottom:713.484133pt;}
.yc4{bottom:713.897333pt;}
.y257{bottom:716.608000pt;}
.y14b{bottom:718.354067pt;}
.y149{bottom:718.448133pt;}
.y208{bottom:718.972000pt;}
.y14d{bottom:719.009133pt;}
.y1e0{bottom:720.086667pt;}
.y63{bottom:721.868000pt;}
.ya5{bottom:725.189333pt;}
.y32{bottom:728.754667pt;}
.y185{bottom:730.620000pt;}
.y14c{bottom:731.429333pt;}
.y14a{bottom:731.615200pt;}
.yc3{bottom:731.909333pt;}
.y256{bottom:733.824000pt;}
.y207{bottom:736.984000pt;}
.y1bb{bottom:737.784133pt;}
.y1df{bottom:738.100000pt;}
.y62{bottom:739.880000pt;}
.y1b9{bottom:742.479533pt;}
.ya4{bottom:743.201333pt;}
.y31{bottom:746.768000pt;}
.y148{bottom:749.477667pt;}
.yc2{bottom:749.922667pt;}
.y255{bottom:751.038667pt;}
.y184{bottom:751.950667pt;}
.y1b8{bottom:754.899733pt;}
.y206{bottom:754.997333pt;}
.y1ba{bottom:755.916333pt;}
.y61{bottom:757.892000pt;}
.ya3{bottom:761.213333pt;}
.y147{bottom:761.897867pt;}
.y30{bottom:764.780000pt;}
.yc1{bottom:767.934667pt;}
.y254{bottom:768.254667pt;}
.y205{bottom:773.009333pt;}
.y183{bottom:773.282667pt;}
.y1b7{bottom:774.047400pt;}
.y1de{bottom:775.006667pt;}
.y60{bottom:775.905333pt;}
.y143{bottom:779.072400pt;}
.ya2{bottom:779.226667pt;}
.y146{bottom:780.028933pt;}
.y2{bottom:781.661334pt;}
.y253{bottom:785.469333pt;}
.yc0{bottom:785.948000pt;}
.y140{bottom:790.342267pt;}
.y204{bottom:791.021333pt;}
.y142{bottom:791.491467pt;}
.y13e{bottom:791.762333pt;}
.y1b6{bottom:792.179600pt;}
.y5f{bottom:793.917333pt;}
.y181{bottom:794.613333pt;}
.y2d{bottom:795.897301pt;}
.y1b2{bottom:796.376333pt;}
.y2c{bottom:796.578667pt;}
.ya1{bottom:797.238667pt;}
.y145{bottom:797.891400pt;}
.y252{bottom:802.685333pt;}
.y1b4{bottom:802.855600pt;}
.y141{bottom:803.911667pt;}
.ybf{bottom:803.960000pt;}
.y1b1{bottom:808.796533pt;}
.y203{bottom:809.034667pt;}
.y144{bottom:810.311600pt;}
.y1b5{bottom:810.311800pt;}
.y5e{bottom:811.930667pt;}
.y180{bottom:815.945333pt;}
.y251{bottom:819.901333pt;}
.ybe{bottom:821.972000pt;}
.ya0{bottom:823.221333pt;}
.y202{bottom:827.046667pt;}
.y13f{bottom:828.442667pt;}
.y1b3{bottom:828.442867pt;}
.y5d{bottom:829.942667pt;}
.y2b{bottom:831.250667pt;}
.y17c{bottom:836.785333pt;}
.y250{bottom:837.116000pt;}
.y17f{bottom:837.277333pt;}
.ybd{bottom:839.985333pt;}
.y201{bottom:845.060000pt;}
.y13d{bottom:846.574867pt;}
.y1b0{bottom:846.575067pt;}
.y2a{bottom:847.389333pt;}
.y5c{bottom:847.954667pt;}
.y13b{bottom:851.602333pt;}
.y24f{bottom:854.332000pt;}
.y1ac{bottom:856.981333pt;}
.ybc{bottom:857.997333pt;}
.y17e{bottom:858.608000pt;}
.y1{bottom:859.312000pt;}
.y200{bottom:863.072000pt;}
.y138{bottom:863.461533pt;}
.y1ae{bottom:863.461733pt;}
.y29{bottom:863.529333pt;}
.y13a{bottom:864.022533pt;}
.y13c{bottom:864.705933pt;}
.y1af{bottom:864.706133pt;}
.y136{bottom:864.787533pt;}
.y5b{bottom:865.968000pt;}
.y1ab{bottom:869.401533pt;}
.y9f{bottom:870.112000pt;}
.y24e{bottom:871.546667pt;}
.ybb{bottom:876.010667pt;}
.y139{bottom:876.441600pt;}
.y17d{bottom:879.940000pt;}
.y1ff{bottom:881.084000pt;}
.y137{bottom:882.838133pt;}
.y1ad{bottom:882.838333pt;}
.y5a{bottom:883.980000pt;}
.y28{bottom:887.260000pt;}
.y24d{bottom:888.762667pt;}
.y22a{bottom:889.054667pt;}
.yba{bottom:894.022667pt;}
.y1fe{bottom:899.097333pt;}
.y135{bottom:900.970333pt;}
.y1aa{bottom:900.970533pt;}
.y17b{bottom:901.272000pt;}
.y59{bottom:901.993333pt;}
.y9e{bottom:904.065333pt;}
.y24c{bottom:905.978667pt;}
.y133{bottom:911.937600pt;}
.yb9{bottom:912.034667pt;}
.ye4{bottom:917.109333pt;}
.y1a8{bottom:917.856067pt;}
.y134{bottom:919.101400pt;}
.y1a9{bottom:919.101600pt;}
.y1a6{bottom:919.183200pt;}
.y58{bottom:920.005333pt;}
.y178{bottom:921.137333pt;}
.y9d{bottom:922.077333pt;}
.y17a{bottom:922.602667pt;}
.y24b{bottom:923.193333pt;}
.y130{bottom:923.796800pt;}
.y132{bottom:924.357800pt;}
.y12d{bottom:925.122800pt;}
.y27{bottom:925.198667pt;}
.yb8{bottom:930.048000pt;}
.ye3{bottom:935.122667pt;}
.y131{bottom:936.778000pt;}
.y12f{bottom:936.963867pt;}
.y1a7{bottom:937.233800pt;}
.y57{bottom:938.017333pt;}
.y24a{bottom:940.409333pt;}
.y179{bottom:943.934667pt;}
.yb7{bottom:948.060000pt;}
.y12e{bottom:949.384067pt;}
.y26{bottom:952.217333pt;}
.y1a4{bottom:955.095133pt;}
.y56{bottom:956.030667pt;}
.y249{bottom:957.624000pt;}
.ye2{bottom:961.105333pt;}
.y1a3{bottom:961.305800pt;}
.y177{bottom:965.265333pt;}
.yb6{bottom:966.073333pt;}
.y12c{bottom:967.515133pt;}
.y1a5{bottom:967.515333pt;}
.y55{bottom:974.042667pt;}
.y248{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y54{bottom:992.056000pt;}
.y12b{bottom:993.372000pt;}
.y22{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.h24{height:19.893370pt;}
.h10{height:22.673858pt;}
.h25{height:23.240909pt;}
.h1f{height:24.866650pt;}
.hb{height:26.836216pt;}
.h7{height:28.560000pt;}
.h1a{height:29.388273pt;}
.h12{height:29.433775pt;}
.h1b{height:29.591511pt;}
.h11{height:30.399505pt;}
.h23{height:30.945242pt;}
.h16{height:31.067969pt;}
.h14{height:31.200285pt;}
.h1c{height:33.290711pt;}
.ha{height:33.545270pt;}
.h28{height:33.713664pt;}
.h27{height:34.144051pt;}
.h1d{height:34.574438pt;}
.hf{height:34.813542pt;}
.h18{height:35.039062pt;}
.h26{height:35.100467pt;}
.he{height:38.415786pt;}
.h19{height:38.462187pt;}
.h13{height:38.681455pt;}
.hc{height:39.000258pt;}
.h17{height:39.010156pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:45.353733pt;}
.h2{height:48.960000pt;}
.h20{height:54.226406pt;}
.h21{height:54.230939pt;}
.h22{height:57.417111pt;}
.h1e{height:64.040209pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h15{height:209.092000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:207.298721pt;}
.w6{width:460.917333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x63{left:-69.620000pt;}
.x6f{left:-60.020000pt;}
.x70{left:-53.139600pt;}
.x67{left:-48.260000pt;}
.x65{left:-41.299472pt;}
.x0{left:0.000000pt;}
.x6d{left:23.980000pt;}
.xb{left:26.021437pt;}
.x68{left:32.540800pt;}
.x6e{left:44.220000pt;}
.x6{left:50.623837pt;}
.x71{left:56.779800pt;}
.x73{left:64.540000pt;}
.x66{left:86.460000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x77{left:100.201333pt;}
.x7{left:101.114667pt;}
.x5{left:102.046667pt;}
.x9{left:108.542667pt;}
.x8{left:109.606667pt;}
.xb3{left:124.721800pt;}
.xe{left:130.393333pt;}
.x93{left:133.001933pt;}
.xb6{left:134.543267pt;}
.x74{left:136.329333pt;}
.x26{left:137.338667pt;}
.x7f{left:138.249333pt;}
.xb0{left:139.537867pt;}
.x83{left:141.054667pt;}
.x5f{left:142.820000pt;}
.xd3{left:144.712000pt;}
.xb4{left:145.903800pt;}
.x98{left:147.355600pt;}
.x40{left:148.357333pt;}
.x15{left:149.320000pt;}
.x27{left:150.621333pt;}
.x80{left:151.533333pt;}
.x84{left:154.338667pt;}
.x16{left:155.961333pt;}
.x60{left:159.406667pt;}
.x22{left:160.894667pt;}
.x5b{left:162.596000pt;}
.x41{left:165.028000pt;}
.x62{left:166.392000pt;}
.xbd{left:167.399000pt;}
.xc{left:168.865333pt;}
.x3c{left:171.662667pt;}
.x61{left:172.690667pt;}
.x23{left:174.178667pt;}
.x5c{left:175.880000pt;}
.x42{left:178.312000pt;}
.xc4{left:179.484000pt;}
.x4{left:180.874667pt;}
.xbe{left:181.974667pt;}
.x2e{left:183.577333pt;}
.x3d{left:184.946667pt;}
.xd{left:187.469333pt;}
.x3e{left:191.509333pt;}
.xbc{left:192.636067pt;}
.x2f{left:196.861333pt;}
.xbf{left:201.028000pt;}
.x30{left:203.596000pt;}
.x3f{left:204.792000pt;}
.x54{left:210.080000pt;}
.x46{left:210.969333pt;}
.x9d{left:213.688000pt;}
.x31{left:216.878667pt;}
.x3b{left:218.189333pt;}
.x51{left:219.237333pt;}
.xda{left:223.704000pt;}
.xdb{left:225.868000pt;}
.x1d{left:227.746667pt;}
.x3a{left:232.182667pt;}
.xa8{left:234.852000pt;}
.xb5{left:236.439000pt;}
.x8a{left:237.558733pt;}
.x9a{left:239.374333pt;}
.x1e{left:241.030667pt;}
.x78{left:244.398667pt;}
.x89{left:246.751200pt;}
.xa9{left:248.134667pt;}
.x91{left:249.479133pt;}
.x9b{left:251.328733pt;}
.x59{left:253.904000pt;}
.xbb{left:255.069333pt;}
.x79{left:257.681333pt;}
.x85{left:259.193333pt;}
.x99{left:262.303933pt;}
.xc3{left:265.241333pt;}
.x5a{left:267.186667pt;}
.x17{left:269.257333pt;}
.x8f{left:271.311667pt;}
.x8b{left:272.252333pt;}
.x52{left:273.594667pt;}
.x18{left:275.898667pt;}
.x8e{left:277.611867pt;}
.xc5{left:280.633333pt;}
.x2c{left:285.476000pt;}
.x53{left:286.878667pt;}
.xaa{left:289.406667pt;}
.x33{left:292.769333pt;}
.x9c{left:295.268000pt;}
.x92{left:296.614467pt;}
.x2d{left:298.760000pt;}
.xc7{left:300.024000pt;}
.xc2{left:302.477333pt;}
.xc8{left:304.948067pt;}
.xb1{left:310.272267pt;}
.xc9{left:313.580667pt;}
.x75{left:321.269333pt;}
.xb7{left:325.920000pt;}
.x44{left:328.229333pt;}
.xb8{left:332.048000pt;}
.x76{left:334.552000pt;}
.x97{left:336.017067pt;}
.x47{left:338.229333pt;}
.x45{left:341.513333pt;}
.x86{left:342.963267pt;}
.x7d{left:344.109333pt;}
.xa6{left:346.762667pt;}
.xa1{left:348.322667pt;}
.x48{left:351.513333pt;}
.x90{left:354.003067pt;}
.x9f{left:356.206667pt;}
.x7e{left:357.393333pt;}
.xa0{left:359.913333pt;}
.x69{left:362.221512pt;}
.xa5{left:365.652000pt;}
.xa2{left:367.342667pt;}
.xd4{left:368.593333pt;}
.x19{left:373.093333pt;}
.xa3{left:374.934667pt;}
.xa7{left:377.905333pt;}
.x1a{left:379.734667pt;}
.x1b{left:383.092000pt;}
.x9e{left:385.693333pt;}
.xa4{left:386.865333pt;}
.x57{left:389.306667pt;}
.x6b{left:391.101824pt;}
.x72{left:393.020272pt;}
.x6c{left:394.543360pt;}
.x1c{left:396.376000pt;}
.xb2{left:398.546467pt;}
.x6a{left:399.661576pt;}
.x58{left:402.590667pt;}
.x3{left:404.408000pt;}
.xd5{left:407.656000pt;}
.x34{left:421.318667pt;}
.x35{left:434.601333pt;}
.xc6{left:439.866667pt;}
.x36{left:441.376000pt;}
.x37{left:454.660000pt;}
.xb9{left:460.598667pt;}
.x64{left:463.180000pt;}
.xba{left:466.725333pt;}
.x32{left:472.722667pt;}
.x11{left:476.817333pt;}
.xce{left:480.597333pt;}
.x12{left:483.460000pt;}
.x13{left:486.760000pt;}
.x14{left:493.402667pt;}
.x43{left:497.170667pt;}
.x4b{left:499.309333pt;}
.x4d{left:502.380000pt;}
.xca{left:510.726667pt;}
.x4e{left:515.662667pt;}
.x24{left:516.721333pt;}
.x4f{left:522.384000pt;}
.xcb{left:524.009333pt;}
.xcc{left:527.377333pt;}
.x25{left:530.005333pt;}
.x50{left:535.668000pt;}
.xcd{left:540.661333pt;}
.xcf{left:542.982667pt;}
.x55{left:552.965333pt;}
.x8d{left:554.316333pt;}
.x8c{left:558.533467pt;}
.x87{left:559.726867pt;}
.x94{left:560.997333pt;}
.x88{left:563.024867pt;}
.x56{left:566.249333pt;}
.x81{left:569.756000pt;}
.x28{left:576.041333pt;}
.xaf{left:579.373333pt;}
.x82{left:583.040000pt;}
.xab{left:584.397333pt;}
.x7a{left:587.204000pt;}
.x29{left:589.325333pt;}
.x2a{left:592.712000pt;}
.xac{left:596.450667pt;}
.xd7{left:597.964000pt;}
.x38{left:599.225333pt;}
.x7b{left:600.486667pt;}
.xae{left:604.456000pt;}
.x2b{left:605.996000pt;}
.x39{left:612.509333pt;}
.xad{left:619.554667pt;}
.x95{left:622.010333pt;}
.xa{left:623.413317pt;}
.x4c{left:625.545333pt;}
.x96{left:632.171800pt;}
.xd8{left:646.858667pt;}
.xd1{left:647.968000pt;}
.x1f{left:652.737333pt;}
.xc0{left:654.538667pt;}
.x49{left:656.568000pt;}
.xc1{left:662.198667pt;}
.x20{left:666.021333pt;}
.x4a{left:669.850667pt;}
.xd9{left:670.769333pt;}
.xd2{left:671.878667pt;}
.x21{left:672.796000pt;}
.x5d{left:673.990667pt;}
.xd6{left:677.946667pt;}
.xf{left:679.740000pt;}
.x7c{left:685.492000pt;}
.x10{left:686.381333pt;}
.x5e{left:687.274667pt;}
.xd0{left:690.153333pt;}
}




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