
    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_238e7e70545870c0f235b614.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_2d86e383d1fe8d5d9a40666b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693000;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_0e9d625a73e90899d1a65169.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_974c6bdcd07f00596877c175.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e06a375df416a40a75808f7a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1fc7ccdf85080d98ac2f3901.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7fc641335a178f5d760f00a5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d549709092fef0866a587db1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_60eb249a582c176ba7582a56.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fd765a536175d53ae8adef1a.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_7535d3ac00b866147796c632.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_692df837198ad4554dd04c41.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fe434efc547ebaab030a9fbc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d2ae75d82679e53302ad0d70.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_084015e3b8448d0d8a76a0a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_692df837198ad4554dd04c41.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1e{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);}
.m12{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m18{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);}
.ma{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);}
.m19{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);}
.m21{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);}
.m7{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);}
.m27{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);}
.m2b{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m10{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);}
.m14{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);}
.m20{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m15{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);}
.mb{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);}
.m1d{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);}
.m17{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);}
.m8{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);}
.m16{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);}
.m1{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);}
.me{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);}
.m3{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);}
.mc{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);}
.md{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);}
.m23{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);}
.m22{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.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);}
.m13{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);}
.m4{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);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls43{letter-spacing:-0.302400px;}
.ls3b{letter-spacing:-0.243000px;}
.ls42{letter-spacing:-0.232200px;}
.ls69{letter-spacing:-0.174348px;}
.ls4d{letter-spacing:-0.168336px;}
.ls66{letter-spacing:-0.156312px;}
.ls65{letter-spacing:-0.144288px;}
.ls4c{letter-spacing:-0.138276px;}
.ls46{letter-spacing:-0.132264px;}
.ls41{letter-spacing:-0.129600px;}
.ls68{letter-spacing:-0.108216px;}
.ls47{letter-spacing:-0.102204px;}
.ls45{letter-spacing:-0.096192px;}
.ls39{letter-spacing:-0.090972px;}
.ls4a{letter-spacing:-0.090180px;}
.ls5e{letter-spacing:-0.086184px;}
.ls40{letter-spacing:-0.081000px;}
.ls62{letter-spacing:-0.078156px;}
.ls60{letter-spacing:-0.066132px;}
.ls3f{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.048096px;}
.ls3d{letter-spacing:-0.037800px;}
.ls64{letter-spacing:-0.036072px;}
.ls67{letter-spacing:-0.030060px;}
.ls3e{letter-spacing:-0.027000px;}
.ls63{letter-spacing:-0.024048px;}
.ls3a{letter-spacing:-0.021600px;}
.ls48{letter-spacing:-0.018036px;}
.ls44{letter-spacing:-0.016200px;}
.ls61{letter-spacing:-0.012024px;}
.ls49{letter-spacing:-0.006012px;}
.ls3c{letter-spacing:-0.005400px;}
.ls9{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000676px;}
.ls71{letter-spacing:0.000800px;}
.ls6a{letter-spacing:0.001211px;}
.ls6{letter-spacing:0.001933px;}
.ls5{letter-spacing:0.001952px;}
.ls7b{letter-spacing:0.002220px;}
.ls6e{letter-spacing:0.002744px;}
.lsd{letter-spacing:0.002999px;}
.ls6c{letter-spacing:0.003319px;}
.ls11{letter-spacing:0.004788px;}
.ls76{letter-spacing:0.004800px;}
.ls6b{letter-spacing:0.004968px;}
.ls20{letter-spacing:0.005400px;}
.ls28{letter-spacing:0.006012px;}
.ls56{letter-spacing:0.006624px;}
.ls50{letter-spacing:0.009576px;}
.ls15{letter-spacing:0.010800px;}
.ls17{letter-spacing:0.016200px;}
.ls54{letter-spacing:0.018036px;}
.ls22{letter-spacing:0.019872px;}
.ls1f{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.023184px;}
.ls5a{letter-spacing:0.024048px;}
.ls24{letter-spacing:0.027000px;}
.ls2a{letter-spacing:0.030060px;}
.ls25{letter-spacing:0.032400px;}
.ls2d{letter-spacing:0.036072px;}
.ls1a{letter-spacing:0.037800px;}
.ls55{letter-spacing:0.042084px;}
.ls1b{letter-spacing:0.043056px;}
.ls13{letter-spacing:0.043092px;}
.ls16{letter-spacing:0.043200px;}
.ls5b{letter-spacing:0.048096px;}
.ls57{letter-spacing:0.048600px;}
.ls52{letter-spacing:0.052668px;}
.ls58{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.059400px;}
.ls2b{letter-spacing:0.060120px;}
.ls23{letter-spacing:0.064800px;}
.ls1c{letter-spacing:0.070200px;}
.ls29{letter-spacing:0.072144px;}
.ls1e{letter-spacing:0.075600px;}
.ls59{letter-spacing:0.091800px;}
.ls27{letter-spacing:0.096192px;}
.ls18{letter-spacing:0.108000px;}
.ls5c{letter-spacing:0.120240px;}
.ls21{letter-spacing:0.124200px;}
.ls2c{letter-spacing:0.126252px;}
.ls14{letter-spacing:0.167580px;}
.ls53{letter-spacing:0.177156px;}
.ls12{letter-spacing:0.181944px;}
.ls51{letter-spacing:0.191520px;}
.ls5d{letter-spacing:0.503764px;}
.ls26{letter-spacing:0.540000px;}
.ls4f{letter-spacing:0.542815px;}
.lsc{letter-spacing:0.548815px;}
.lsa{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls5f{letter-spacing:2.254500px;}
.ls0{letter-spacing:2.998354px;}
.ls3{letter-spacing:10.455300px;}
.ls8{letter-spacing:11.954850px;}
.ls33{letter-spacing:12.823249px;}
.ls38{letter-spacing:13.245570px;}
.ls37{letter-spacing:13.250998px;}
.ls36{letter-spacing:13.256926px;}
.ls73{letter-spacing:13.326871px;}
.ls31{letter-spacing:13.327666px;}
.ls2f{letter-spacing:13.349804px;}
.ls2e{letter-spacing:13.355780px;}
.ls78{letter-spacing:13.415535px;}
.ls34{letter-spacing:13.446422px;}
.ls6f{letter-spacing:13.448400px;}
.ls35{letter-spacing:13.450800px;}
.ls72{letter-spacing:13.454400px;}
.ls79{letter-spacing:13.463313px;}
.ls74{letter-spacing:13.517234px;}
.ls30{letter-spacing:13.537164px;}
.ls70{letter-spacing:14.715106px;}
.lse{letter-spacing:14.868848px;}
.ls4e{letter-spacing:14.944200px;}
.ls10{letter-spacing:14.944766px;}
.ls7a{letter-spacing:14.950400px;}
.ls77{letter-spacing:15.068047px;}
.lsf{letter-spacing:15.964766px;}
.ls32{letter-spacing:16.694918px;}
.lsb{letter-spacing:17.935200px;}
.ls75{letter-spacing:21.132753px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.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;}
.ws111{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.ws66{word-spacing:-13.500000px;}
.ws134{word-spacing:-13.449600px;}
.wsce{word-spacing:-12.161520px;}
.ws65{word-spacing:-12.151944px;}
.ws17{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.wsa{word-spacing:-10.460700px;}
.ws67{word-spacing:-8.303184px;}
.ws68{word-spacing:-8.299872px;}
.ws69{word-spacing:-8.280000px;}
.ws118{word-spacing:-3.347434px;}
.wsf8{word-spacing:-3.168324px;}
.wsc8{word-spacing:-2.988780px;}
.wsf7{word-spacing:-2.735460px;}
.ws124{word-spacing:-2.570351px;}
.ws11a{word-spacing:-2.391024px;}
.ws11e{word-spacing:-2.271473px;}
.ws2b{word-spacing:-2.151922px;}
.wsbb{word-spacing:-2.140272px;}
.ws3f{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws123{word-spacing:-1.793268px;}
.ws81{word-spacing:-1.663200px;}
.ws83{word-spacing:-1.641600px;}
.ws82{word-spacing:-1.614600px;}
.ws35{word-spacing:-1.613941px;}
.ws33{word-spacing:-1.494390px;}
.ws19{word-spacing:-1.344960px;}
.ws101{word-spacing:-1.328652px;}
.ws6{word-spacing:-1.322630px;}
.ws42{word-spacing:-1.315063px;}
.ws131{word-spacing:-1.291162px;}
.ws132{word-spacing:-1.237363px;}
.ws121{word-spacing:-1.195512px;}
.ws102{word-spacing:-1.190376px;}
.ws38{word-spacing:-1.135736px;}
.ws120{word-spacing:-1.075961px;}
.ws48{word-spacing:-0.956410px;}
.ws144{word-spacing:-0.914573px;}
.ws47{word-spacing:-0.896634px;}
.wsc7{word-spacing:-0.836858px;}
.ws12c{word-spacing:-0.806976px;}
.ws62{word-spacing:-0.777083px;}
.ws12d{word-spacing:-0.753178px;}
.ws10a{word-spacing:-0.661320px;}
.ws56{word-spacing:-0.657532px;}
.ws75{word-spacing:-0.645581px;}
.ws84{word-spacing:-0.540000px;}
.ws86{word-spacing:-0.513000px;}
.ws85{word-spacing:-0.502200px;}
.ws34{word-spacing:-0.418429px;}
.wsc1{word-spacing:-0.396792px;}
.wsb6{word-spacing:-0.366732px;}
.wse0{word-spacing:-0.360720px;}
.ws4a{word-spacing:-0.358654px;}
.ws130{word-spacing:-0.322790px;}
.ws27{word-spacing:-0.298878px;}
.wse1{word-spacing:-0.288576px;}
.wsd4{word-spacing:-0.282564px;}
.ws1a{word-spacing:-0.268992px;}
.wsb5{word-spacing:-0.253800px;}
.wse7{word-spacing:-0.252504px;}
.wsfa{word-spacing:-0.240480px;}
.ws29{word-spacing:-0.239102px;}
.ws77{word-spacing:-0.215194px;}
.ws8e{word-spacing:-0.199800px;}
.ws8f{word-spacing:-0.183600px;}
.ws3c{word-spacing:-0.179327px;}
.wsb7{word-spacing:-0.174348px;}
.ws76{word-spacing:-0.170580px;}
.ws18{word-spacing:-0.161395px;}
.wsd3{word-spacing:-0.138852px;}
.wsb8{word-spacing:-0.138276px;}
.ws7c{word-spacing:-0.134064px;}
.ws71{word-spacing:-0.124562px;}
.ws26{word-spacing:-0.119551px;}
.ws24{word-spacing:-0.107597px;}
.ws7b{word-spacing:-0.095760px;}
.ws2d{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.wsb{word-spacing:-0.041843px;}
.wse5{word-spacing:-0.024048px;}
.ws4{word-spacing:-0.003740px;}
.ws1{word-spacing:-0.002933px;}
.ws0{word-spacing:0.000000px;}
.wsc0{word-spacing:0.030060px;}
.ws139{word-spacing:0.053798px;}
.wsd5{word-spacing:0.054108px;}
.ws37{word-spacing:0.059776px;}
.ws105{word-spacing:0.066132px;}
.ws70{word-spacing:0.071130px;}
.wsf9{word-spacing:0.072144px;}
.wsdf{word-spacing:0.091800px;}
.ws23{word-spacing:0.107597px;}
.ws36{word-spacing:0.119551px;}
.wsde{word-spacing:0.129600px;}
.ws135{word-spacing:0.161395px;}
.wsd6{word-spacing:0.162324px;}
.ws44{word-spacing:0.179327px;}
.wse6{word-spacing:0.192384px;}
.wsc{word-spacing:0.209214px;}
.ws1e{word-spacing:0.215194px;}
.ws39{word-spacing:0.239102px;}
.wsd2{word-spacing:0.268992px;}
.wse{word-spacing:0.292900px;}
.ws3d{word-spacing:0.298878px;}
.ws1c{word-spacing:0.322790px;}
.ws4b{word-spacing:0.358654px;}
.ws6d{word-spacing:0.376589px;}
.ws10f{word-spacing:0.418429px;}
.wsf4{word-spacing:0.438876px;}
.wsea{word-spacing:0.480960px;}
.wseb{word-spacing:0.492984px;}
.wsab{word-spacing:0.502200px;}
.wsa4{word-spacing:0.507600px;}
.wsa6{word-spacing:0.518400px;}
.ws8b{word-spacing:0.529200px;}
.wsad{word-spacing:0.534600px;}
.ws41{word-spacing:0.537980px;}
.wsa5{word-spacing:0.540000px;}
.wsac{word-spacing:0.545400px;}
.ws49{word-spacing:0.597756px;}
.ws59{word-spacing:0.717307px;}
.ws9b{word-spacing:0.718704px;}
.ws11b{word-spacing:0.777083px;}
.ws8d{word-spacing:0.826200px;}
.ws8a{word-spacing:0.837000px;}
.ws8c{word-spacing:0.842400px;}
.ws89{word-spacing:0.864000px;}
.ws7f{word-spacing:0.891000px;}
.ws4f{word-spacing:0.896634px;}
.ws7e{word-spacing:0.923400px;}
.ws88{word-spacing:0.939600px;}
.ws87{word-spacing:0.955800px;}
.ws137{word-spacing:0.968371px;}
.wsf3{word-spacing:0.973944px;}
.ws5e{word-spacing:1.016185px;}
.wsa8{word-spacing:1.059840px;}
.ws55{word-spacing:1.075961px;}
.ws80{word-spacing:1.144800px;}
.ws109{word-spacing:1.172340px;}
.ws15c{word-spacing:1.183565px;}
.ws9d{word-spacing:1.188000px;}
.ws9c{word-spacing:1.193400px;}
.ws2c{word-spacing:1.195512px;}
.ws108{word-spacing:1.214424px;}
.wsda{word-spacing:1.225800px;}
.ws9e{word-spacing:1.231200px;}
.ws9a{word-spacing:1.236600px;}
.ws152{word-spacing:1.237363px;}
.ws50{word-spacing:1.255288px;}
.ws138{word-spacing:1.291162px;}
.ws45{word-spacing:1.315063px;}
.wsd0{word-spacing:1.398758px;}
.ws64{word-spacing:1.434614px;}
.wsee{word-spacing:1.490976px;}
.ws57{word-spacing:1.494390px;}
.wse4{word-spacing:1.503000px;}
.ws6f{word-spacing:1.506355px;}
.wse8{word-spacing:1.515024px;}
.wsa9{word-spacing:1.549800px;}
.wsef{word-spacing:1.557108px;}
.wsed{word-spacing:1.563120px;}
.wsb3{word-spacing:1.576800px;}
.wsa7{word-spacing:1.582200px;}
.wsaa{word-spacing:1.603800px;}
.ws154{word-spacing:1.613952px;}
.wsb4{word-spacing:1.614600px;}
.wse9{word-spacing:1.617228px;}
.wsdb{word-spacing:1.625400px;}
.wscf{word-spacing:1.667750px;}
.ws63{word-spacing:1.673717px;}
.wsec{word-spacing:1.683360px;}
.ws125{word-spacing:1.733492px;}
.ws12b{word-spacing:1.775347px;}
.ws1d{word-spacing:1.829146px;}
.ws28{word-spacing:1.912819px;}
.ws2f{word-spacing:1.972595px;}
.wsd{word-spacing:2.008454px;}
.ws79{word-spacing:2.032370px;}
.ws43{word-spacing:2.151922px;}
.wsf2{word-spacing:2.212416px;}
.ws104{word-spacing:2.236464px;}
.wsbe{word-spacing:2.254500px;}
.ws149{word-spacing:2.259533px;}
.wsa3{word-spacing:2.305800px;}
.wsa2{word-spacing:2.316600px;}
.wsbf{word-spacing:2.338668px;}
.wsc4{word-spacing:2.350692px;}
.ws61{word-spacing:2.391024px;}
.wsc6{word-spacing:2.416824px;}
.wsa1{word-spacing:2.419200px;}
.ws5b{word-spacing:2.510575px;}
.ws12a{word-spacing:2.528525px;}
.ws122{word-spacing:2.570351px;}
.ws141{word-spacing:2.582323px;}
.ws103{word-spacing:2.615220px;}
.ws10e{word-spacing:2.689902px;}
.ws4d{word-spacing:2.749678px;}
.ws117{word-spacing:2.809453px;}
.ws12f{word-spacing:2.851315px;}
.ws22{word-spacing:2.905114px;}
.ws11c{word-spacing:2.929004px;}
.wsba{word-spacing:2.963916px;}
.wsf1{word-spacing:2.975940px;}
.wsf0{word-spacing:2.981952px;}
.ws54{word-spacing:2.988780px;}
.ws13e{word-spacing:3.012710px;}
.ws11d{word-spacing:3.048556px;}
.wsb9{word-spacing:3.072132px;}
.wsc5{word-spacing:3.108204px;}
.ws114{word-spacing:3.108331px;}
.ws12e{word-spacing:3.174106px;}
.ws142{word-spacing:3.221501px;}
.ws2e{word-spacing:3.227882px;}
.ws74{word-spacing:3.227904px;}
.ws6c{word-spacing:3.281702px;}
.wsfd{word-spacing:3.318624px;}
.ws3a{word-spacing:3.347434px;}
.wsdc{word-spacing:3.353400px;}
.wsfe{word-spacing:3.366720px;}
.wsdd{word-spacing:3.369600px;}
.ws92{word-spacing:3.380400px;}
.ws91{word-spacing:3.396600px;}
.ws90{word-spacing:3.402000px;}
.ws72{word-spacing:3.443098px;}
.ws112{word-spacing:3.466985px;}
.ws3b{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws110{word-spacing:3.646312px;}
.wse2{word-spacing:3.661308px;}
.wsbd{word-spacing:3.709404px;}
.wsae{word-spacing:3.763800px;}
.wsb2{word-spacing:3.796200px;}
.ws46{word-spacing:3.825638px;}
.ws1f{word-spacing:3.873485px;}
.ws116{word-spacing:3.885414px;}
.wsaf{word-spacing:3.909600px;}
.ws147{word-spacing:3.927283px;}
.wsb0{word-spacing:4.012200px;}
.ws5c{word-spacing:4.064741px;}
.wsb1{word-spacing:4.082400px;}
.wscc{word-spacing:4.124516px;}
.ws126{word-spacing:4.184292px;}
.ws129{word-spacing:4.196275px;}
.ws30{word-spacing:4.244068px;}
.ws31{word-spacing:4.303843px;}
.ws21{word-spacing:4.303872px;}
.wsff{word-spacing:4.346676px;}
.ws100{word-spacing:4.424832px;}
.wsd8{word-spacing:4.476600px;}
.wsd9{word-spacing:4.487400px;}
.wsd7{word-spacing:4.492800px;}
.ws128{word-spacing:4.519066px;}
.ws51{word-spacing:4.602721px;}
.ws53{word-spacing:4.662497px;}
.wsbc{word-spacing:4.695372px;}
.wsca{word-spacing:4.722272px;}
.wse3{word-spacing:4.731444px;}
.ws107{word-spacing:4.749480px;}
.ws6e{word-spacing:4.788058px;}
.ws93{word-spacing:4.822200px;}
.ws95{word-spacing:4.854600px;}
.ws94{word-spacing:4.865400px;}
.ws106{word-spacing:4.887756px;}
.ws40{word-spacing:4.901599px;}
.ws1b{word-spacing:5.057050px;}
.ws78{word-spacing:5.080926px;}
.wsc3{word-spacing:5.092164px;}
.ws13a{word-spacing:5.164646px;}
.wsc2{word-spacing:5.176332px;}
.wsa0{word-spacing:5.184000px;}
.ws9f{word-spacing:5.227200px;}
.ws119{word-spacing:5.260253px;}
.ws13d{word-spacing:5.272243px;}
.ws115{word-spacing:5.320028px;}
.ws20{word-spacing:5.541235px;}
.ws10d{word-spacing:5.559131px;}
.wsd1{word-spacing:5.595034px;}
.ws52{word-spacing:5.798233px;}
.ws32{word-spacing:5.858009px;}
.ws14{word-spacing:6.067206px;}
.ws14f{word-spacing:6.079219px;}
.ws113{word-spacing:6.097111px;}
.ws15{word-spacing:6.150892px;}
.ws7a{word-spacing:6.156887px;}
.wscd{word-spacing:6.336214px;}
.ws127{word-spacing:6.395989px;}
.ws60{word-spacing:6.515540px;}
.ws5f{word-spacing:6.575316px;}
.ws10b{word-spacing:6.577128px;}
.ws98{word-spacing:6.582600px;}
.wsfb{word-spacing:6.589152px;}
.ws4e{word-spacing:6.635092px;}
.ws99{word-spacing:6.636600px;}
.ws97{word-spacing:6.647400px;}
.ws96{word-spacing:6.696000px;}
.wsfc{word-spacing:6.745464px;}
.ws10c{word-spacing:6.751476px;}
.wsf6{word-spacing:7.250472px;}
.wsf5{word-spacing:7.322616px;}
.ws5d{word-spacing:7.471950px;}
.ws151{word-spacing:7.693171px;}
.wscb{word-spacing:7.711052px;}
.ws11f{word-spacing:7.950155px;}
.ws4c{word-spacing:8.488135px;}
.ws12{word-spacing:8.661460px;}
.ws73{word-spacing:9.898906px;}
.ws7d{word-spacing:11.620476px;}
.ws2a{word-spacing:11.904926px;}
.ws9{word-spacing:12.929296px;}
.ws157{word-spacing:13.342003px;}
.ws156{word-spacing:13.385568px;}
.ws155{word-spacing:13.386221px;}
.ws140{word-spacing:13.388467px;}
.ws13f{word-spacing:13.389485px;}
.ws15a{word-spacing:13.392221px;}
.ws14b{word-spacing:13.393037px;}
.ws14a{word-spacing:13.393469px;}
.ws159{word-spacing:13.393958px;}
.ws133{word-spacing:13.395802px;}
.ws158{word-spacing:13.395984px;}
.ws14d{word-spacing:13.397952px;}
.ws143{word-spacing:13.398336px;}
.ws3e{word-spacing:14.823519px;}
.wsc9{word-spacing:14.824349px;}
.ws58{word-spacing:14.884124px;}
.ws8{word-spacing:15.483541px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.ws15b{word-spacing:16.462310px;}
.ws136{word-spacing:16.621075px;}
.ws13c{word-spacing:16.621373px;}
.ws13b{word-spacing:16.623706px;}
.ws146{word-spacing:16.731302px;}
.ws148{word-spacing:16.765680px;}
.ws145{word-spacing:16.892698px;}
.ws14e{word-spacing:16.946496px;}
.ws14c{word-spacing:17.269286px;}
.ws11{word-spacing:17.699504px;}
.ws5a{word-spacing:18.470660px;}
.ws150{word-spacing:19.475021px;}
.ws153{word-spacing:20.819981px;}
.ws13{word-spacing:27.448877px;}
.ws3{word-spacing:46.608830px;}
._3{margin-left:-11.943245px;}
._6{margin-left:-7.477031px;}
._1f{margin-left:-6.425998px;}
._9{margin-left:-5.397721px;}
._0{margin-left:-3.981082px;}
._8{margin-left:-2.964823px;}
._1{margin-left:-1.936742px;}
._4{width:1.077058px;}
._5{width:2.994580px;}
._1d{width:4.737456px;}
._21{width:11.321512px;}
._a{width:12.737183px;}
._c{width:14.407124px;}
._d{width:15.822612px;}
._11{width:17.645875px;}
._16{width:18.793462px;}
._10{width:19.905408px;}
._18{width:21.973537px;}
._19{width:23.599433px;}
._13{width:24.908659px;}
._b{width:25.946266px;}
._1e{width:27.060595px;}
._12{width:28.082765px;}
._24{width:29.158733px;}
._1a{width:30.545332px;}
._f{width:31.597542px;}
._2{width:33.355008px;}
._20{width:34.532362px;}
._17{width:36.367488px;}
._1b{width:38.734589px;}
._e{width:56.810873px;}
._25{width:61.868160px;}
._7{width:69.368015px;}
._22{width:88.767360px;}
._14{width:937.503218px;}
._1c{width:2046.051494px;}
._23{width:2428.316365px;}
._15{width:2452.226365px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(46,92,87);}
.fc0{color:rgb(14,15,14);}
.fs10{font-size:33.120000px;}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs12{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs11{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs1{font-size:75.592800px;}
.fs3{font-size:107.596800px;}
.y151{bottom:-832.879050px;}
.y17a{bottom:-763.025964px;}
.y179{bottom:-743.766522px;}
.y178{bottom:-724.597260px;}
.y177{bottom:-705.337818px;}
.y176{bottom:-686.078376px;}
.y175{bottom:-666.909114px;}
.yf4{bottom:-666.410550px;}
.y174{bottom:-647.649672px;}
.y173{bottom:-628.480410px;}
.y172{bottom:-609.220968px;}
.y113{bottom:-593.505702px;}
.y171{bottom:-589.961526px;}
.y112{bottom:-574.246260px;}
.y170{bottom:-570.792264px;}
.y111{bottom:-555.076998px;}
.y16f{bottom:-547.121517px;}
.y110{bottom:-535.817556px;}
.y10f{bottom:-512.146809px;}
.y16e{bottom:-509.862147px;}
.y16d{bottom:-490.602705px;}
.y10e{bottom:-474.887439px;}
.y16c{bottom:-471.343263px;}
.y10d{bottom:-455.627997px;}
.y16b{bottom:-452.174001px;}
.y10c{bottom:-436.458735px;}
.y16a{bottom:-432.914559px;}
.y10b{bottom:-417.199293px;}
.y169{bottom:-413.745297px;}
.y10a{bottom:-398.030031px;}
.y168{bottom:-394.485855px;}
.y109{bottom:-378.770589px;}
.y167{bottom:-375.226413px;}
.y108{bottom:-359.511147px;}
.y166{bottom:-356.055648px;}
.y165{bottom:-336.796206px;}
.y107{bottom:-335.840400px;}
.y164{bottom:-317.536764px;}
.y106{bottom:-299.031300px;}
.y163{bottom:-293.866017px;}
.y105{bottom:-281.660850px;}
.y104{bottom:-264.290400px;}
.y162{bottom:-256.606647px;}
.y103{bottom:-247.010400px;}
.y161{bottom:-237.437385px;}
.y102{bottom:-229.730550px;}
.y160{bottom:-218.177943px;}
.y101{bottom:-212.451000px;}
.y15f{bottom:-198.918501px;}
.y100{bottom:-195.080550px;}
.y15e{bottom:-179.749239px;}
.yff{bottom:-177.800550px;}
.yfe{bottom:-160.520550px;}
.y15d{bottom:-160.489797px;}
.yfd{bottom:-143.241000px;}
.y15c{bottom:-136.819050px;}
.yfc{bottom:-125.870550px;}
.yfb{bottom:-108.590550px;}
.y15b{bottom:-100.008600px;}
.yfa{bottom:-91.310550px;}
.y15a{bottom:-82.549050px;}
.yf9{bottom:-74.031000px;}
.y159{bottom:-65.269050px;}
.yf8{bottom:-56.660550px;}
.y157{bottom:-47.989050px;}
.y158{bottom:-44.209050px;}
.yf7{bottom:-39.380550px;}
.y156{bottom:-30.709050px;}
.yf6{bottom:-22.100550px;}
.y155{bottom:-8.298681px;}
.y0{bottom:0.000000px;}
.yf5{bottom:0.309729px;}
.yc{bottom:3.425340px;}
.y3{bottom:10.988264px;}
.yb{bottom:14.151273px;}
.y2{bottom:30.831374px;}
.y51{bottom:31.890000px;}
.y200{bottom:92.977500px;}
.y136{bottom:99.193500px;}
.y1bc{bottom:101.764500px;}
.y28{bottom:102.823500px;}
.y50{bottom:103.621500px;}
.yc0{bottom:104.902500px;}
.y8b{bottom:109.366500px;}
.y1ff{bottom:110.238000px;}
.y135{bottom:118.023000px;}
.y188{bottom:118.752000px;}
.y1bb{bottom:120.594000px;}
.y27{bottom:120.711000px;}
.y4f{bottom:122.449500px;}
.yf0{bottom:123.283500px;}
.ybf{bottom:123.732000px;}
.y1c9{bottom:125.076000px;}
.y1fe{bottom:127.497000px;}
.y8a{bottom:128.196000px;}
.y134{bottom:136.852500px;}
.y187{bottom:137.581500px;}
.y26{bottom:138.600000px;}
.y1ba{bottom:139.422000px;}
.y4e{bottom:141.279000px;}
.yef{bottom:142.113000px;}
.ybe{bottom:142.561500px;}
.y1c8{bottom:143.905500px;}
.y1fd{bottom:144.757500px;}
.y89{bottom:147.025500px;}
.y133{bottom:155.682000px;}
.y186{bottom:156.411000px;}
.y25{bottom:156.487500px;}
.y1b9{bottom:158.251500px;}
.y4d{bottom:160.108500px;}
.yee{bottom:160.942500px;}
.ybd{bottom:161.391000px;}
.y1fc{bottom:162.018000px;}
.y1c7{bottom:162.735000px;}
.y88{bottom:165.855000px;}
.y24{bottom:174.375000px;}
.y132{bottom:174.511500px;}
.y185{bottom:175.240500px;}
.y1b8{bottom:177.081000px;}
.y1fb{bottom:179.278500px;}
.yed{bottom:179.772000px;}
.ybc{bottom:180.220500px;}
.y1c6{bottom:181.564500px;}
.y4c{bottom:183.421500px;}
.y87{bottom:184.684500px;}
.y23{bottom:192.264000px;}
.y131{bottom:193.341000px;}
.y184{bottom:194.070000px;}
.y1b7{bottom:195.910500px;}
.y1fa{bottom:196.539000px;}
.yec{bottom:198.601500px;}
.ybb{bottom:199.050000px;}
.y1c5{bottom:200.394000px;}
.y86{bottom:203.514000px;}
.y154{bottom:208.061175px;}
.y22{bottom:210.151500px;}
.y130{bottom:212.170500px;}
.y183{bottom:212.899500px;}
.y1f9{bottom:213.799500px;}
.y1b6{bottom:214.740000px;}
.yeb{bottom:217.431000px;}
.yba{bottom:217.878000px;}
.y1c4{bottom:219.223500px;}
.y85{bottom:222.343500px;}
.y153{bottom:227.320617px;}
.y21{bottom:228.039000px;}
.y12f{bottom:231.000000px;}
.y1f8{bottom:231.060000px;}
.y1b5{bottom:233.569500px;}
.y182{bottom:236.211000px;}
.yea{bottom:236.260500px;}
.yb9{bottom:236.707500px;}
.y1c3{bottom:238.053000px;}
.y84{bottom:238.932000px;}
.y83{bottom:241.173000px;}
.y152{bottom:246.491382px;}
.y1f7{bottom:248.320500px;}
.y12e{bottom:249.829500px;}
.y1b4{bottom:252.399000px;}
.ye9{bottom:255.090000px;}
.y1c2{bottom:256.882500px;}
.y4b{bottom:258.571500px;}
.y81{bottom:260.002500px;}
.yb8{bottom:260.020500px;}
.y82{bottom:265.428000px;}
.y1f6{bottom:265.581000px;}
.y12d{bottom:268.659000px;}
.y1b3{bottom:271.228500px;}
.ye8{bottom:273.919500px;}
.y181{bottom:275.605500px;}
.y1c1{bottom:275.712000px;}
.y4a{bottom:278.029500px;}
.y80{bottom:278.832000px;}
.yb7{bottom:280.195500px;}
.y1f5{bottom:282.840000px;}
.y12c{bottom:287.488500px;}
.y1b2{bottom:290.058000px;}
.ye7{bottom:292.749000px;}
.y1c0{bottom:294.541500px;}
.y180{bottom:294.838500px;}
.y7f{bottom:297.661500px;}
.y1f4{bottom:300.100500px;}
.y150{bottom:301.211085px;}
.y12b{bottom:306.318000px;}
.y20{bottom:307.299000px;}
.y1b1{bottom:308.887500px;}
.y14f{bottom:310.840950px;}
.ye6{bottom:311.578500px;}
.y1bf{bottom:313.371000px;}
.y7e{bottom:313.761000px;}
.yb6{bottom:313.819500px;}
.y17f{bottom:314.071500px;}
.y49{bottom:315.418500px;}
.y7d{bottom:316.491000px;}
.y1f3{bottom:317.361000px;}
.y1f{bottom:325.186500px;}
.y1b0{bottom:327.717000px;}
.y12a{bottom:329.631000px;}
.ye4{bottom:330.408000px;}
.y17d{bottom:330.681000px;}
.yb5{bottom:332.649000px;}
.y17c{bottom:333.304500px;}
.y1f2{bottom:334.621500px;}
.y48{bottom:334.875000px;}
.y7c{bottom:335.320500px;}
.ye5{bottom:335.832000px;}
.y1be{bottom:336.684000px;}
.y17e{bottom:338.185500px;}
.y1e{bottom:343.074000px;}
.y1af{bottom:346.546500px;}
.ye3{bottom:349.237500px;}
.yb4{bottom:351.478500px;}
.y1f1{bottom:351.882000px;}
.y17b{bottom:352.537500px;}
.y7b{bottom:354.150000px;}
.y47{bottom:354.333000px;}
.y1d{bottom:360.963000px;}
.y228{bottom:362.461500px;}
.y129{bottom:364.540500px;}
.y1ae{bottom:365.376000px;}
.ye2{bottom:368.065500px;}
.y1f0{bottom:369.142500px;}
.yb3{bottom:370.308000px;}
.y7a{bottom:372.979500px;}
.y46{bottom:373.789500px;}
.y14e{bottom:374.965500px;}
.y227{bottom:379.722000px;}
.y128{bottom:383.773500px;}
.y1ad{bottom:384.205500px;}
.y1ef{bottom:386.403000px;}
.yb2{bottom:389.137500px;}
.ye1{bottom:391.378500px;}
.y79{bottom:391.809000px;}
.y45{bottom:393.247500px;}
.y226{bottom:396.982500px;}
.y1c{bottom:399.024000px;}
.y127{bottom:403.006500px;}
.y1ac{bottom:403.035000px;}
.y1ee{bottom:403.663500px;}
.yb1{bottom:407.967000px;}
.y78{bottom:410.638500px;}
.y44{bottom:412.704000px;}
.y225{bottom:414.243000px;}
.y1b{bottom:416.913000px;}
.y1ed{bottom:420.922500px;}
.y1ab{bottom:421.864500px;}
.y126{bottom:422.239500px;}
.ye0{bottom:425.002500px;}
.yb0{bottom:426.796500px;}
.y77{bottom:429.468000px;}
.y224{bottom:431.503500px;}
.y43{bottom:432.160500px;}
.y1a{bottom:434.800500px;}
.y1ec{bottom:438.183000px;}
.y125{bottom:438.531000px;}
.y1aa{bottom:440.694000px;}
.y124{bottom:441.472500px;}
.ydf{bottom:443.832000px;}
.yaf{bottom:445.626000px;}
.y76{bottom:448.297500px;}
.y223{bottom:448.764000px;}
.y42{bottom:451.618500px;}
.y1eb{bottom:455.443500px;}
.y123{bottom:457.764000px;}
.y1a9{bottom:459.523500px;}
.y122{bottom:460.705500px;}
.yde{bottom:462.661500px;}
.yae{bottom:464.454000px;}
.y222{bottom:466.024500px;}
.y75{bottom:467.127000px;}
.yf3{bottom:467.679585px;}
.y19{bottom:470.622000px;}
.y41{bottom:471.075000px;}
.y1ea{bottom:472.704000px;}
.yf2{bottom:477.309450px;}
.y1a8{bottom:478.353000px;}
.y121{bottom:479.938500px;}
.ydd{bottom:481.491000px;}
.yad{bottom:483.283500px;}
.y74{bottom:485.956500px;}
.y18{bottom:488.509500px;}
.y1e9{bottom:489.964500px;}
.y40{bottom:490.533000px;}
.y1a7{bottom:497.182500px;}
.y120{bottom:499.171500px;}
.ydc{bottom:500.320500px;}
.y221{bottom:500.544000px;}
.yac{bottom:502.113000px;}
.y73{bottom:504.786000px;}
.y1e8{bottom:507.225000px;}
.y3f{bottom:509.989500px;}
.y11f{bottom:515.461500px;}
.y1a6{bottom:516.012000px;}
.y220{bottom:517.804500px;}
.y11e{bottom:518.404500px;}
.ydb{bottom:519.150000px;}
.yab{bottom:520.942500px;}
.y72{bottom:523.615500px;}
.y17{bottom:524.329500px;}
.y1e7{bottom:524.485500px;}
.y3e{bottom:529.446000px;}
.y11d{bottom:534.694500px;}
.y1a5{bottom:534.841500px;}
.y21f{bottom:535.065000px;}
.y11c{bottom:537.636000px;}
.yda{bottom:537.979500px;}
.yaa{bottom:539.772000px;}
.y1e6{bottom:541.746000px;}
.y16{bottom:542.218500px;}
.y71{bottom:542.445000px;}
.y3d{bottom:548.904000px;}
.y21e{bottom:552.325500px;}
.y1a4{bottom:553.671000px;}
.y11b{bottom:556.869000px;}
.ya9{bottom:558.601500px;}
.y1e5{bottom:559.006500px;}
.y15{bottom:560.106000px;}
.y70{bottom:561.274500px;}
.yd9{bottom:561.292500px;}
.y3c{bottom:568.360500px;}
.y21d{bottom:569.586000px;}
.y1a3{bottom:572.500500px;}
.y14d{bottom:575.190000px;}
.y11a{bottom:576.102000px;}
.y1e4{bottom:576.265500px;}
.ya8{bottom:577.431000px;}
.y14{bottom:577.993500px;}
.y6f{bottom:580.104000px;}
.y21c{bottom:586.846500px;}
.y3b{bottom:587.817000px;}
.y1a2{bottom:591.330000px;}
.y1e3{bottom:593.526000px;}
.y14c{bottom:594.019500px;}
.yd8{bottom:594.916500px;}
.y119{bottom:595.335000px;}
.y13{bottom:595.882500px;}
.ya7{bottom:596.260500px;}
.y6e{bottom:598.932000px;}
.y21b{bottom:604.107000px;}
.y3a{bottom:607.275000px;}
.y1a1{bottom:610.159500px;}
.y1e2{bottom:610.786500px;}
.y118{bottom:611.626500px;}
.y14b{bottom:612.849000px;}
.yd7{bottom:613.746000px;}
.y12{bottom:613.770000px;}
.y117{bottom:614.568000px;}
.ya6{bottom:615.090000px;}
.y6d{bottom:617.761500px;}
.y21a{bottom:621.366000px;}
.y39{bottom:626.731500px;}
.y1e1{bottom:628.047000px;}
.y1a0{bottom:628.989000px;}
.y11{bottom:631.657500px;}
.y14a{bottom:631.678500px;}
.yd6{bottom:632.575500px;}
.y116{bottom:633.801000px;}
.ya5{bottom:633.919500px;}
.y6c{bottom:636.591000px;}
.y219{bottom:638.626500px;}
.y1e0{bottom:645.307500px;}
.y19f{bottom:647.817000px;}
.y10{bottom:649.546500px;}
.y149{bottom:650.508000px;}
.yd5{bottom:651.405000px;}
.ya4{bottom:652.749000px;}
.y115{bottom:653.034000px;}
.y6b{bottom:655.420500px;}
.y218{bottom:655.887000px;}
.y1df{bottom:662.568000px;}
.y38{bottom:663.460500px;}
.y148{bottom:666.607500px;}
.y19e{bottom:666.646500px;}
.yf{bottom:667.434000px;}
.y147{bottom:669.337500px;}
.yd4{bottom:670.234500px;}
.ya3{bottom:671.578500px;}
.y114{bottom:672.267000px;}
.y217{bottom:673.147500px;}
.y6a{bottom:674.250000px;}
.y37{bottom:679.599000px;}
.y1de{bottom:679.828500px;}
.ye{bottom:685.321500px;}
.y146{bottom:685.437000px;}
.y19d{bottom:685.476000px;}
.y145{bottom:688.167000px;}
.yd3{bottom:689.064000px;}
.ya2{bottom:690.408000px;}
.y69{bottom:693.079500px;}
.yf1{bottom:694.696500px;}
.y36{bottom:695.739000px;}
.y1dd{bottom:697.089000px;}
.yd{bottom:703.210500px;}
.y19c{bottom:704.305500px;}
.y144{bottom:706.996500px;}
.y216{bottom:707.668500px;}
.yd2{bottom:707.892000px;}
.ya1{bottom:709.237500px;}
.y35{bottom:711.879000px;}
.y68{bottom:711.909000px;}
.y1dc{bottom:718.831500px;}
.y142{bottom:723.096000px;}
.y19b{bottom:723.135000px;}
.y215{bottom:724.929000px;}
.ya{bottom:725.581464px;}
.y141{bottom:725.826000px;}
.ya0{bottom:728.067000px;}
.y67{bottom:730.738500px;}
.yd1{bottom:731.205000px;}
.y143{bottom:731.250000px;}
.y34{bottom:732.357000px;}
.y13f{bottom:741.925500px;}
.y19a{bottom:741.964500px;}
.y214{bottom:742.189500px;}
.y33{bottom:744.157500px;}
.y13e{bottom:744.655500px;}
.y9f{bottom:746.896500px;}
.y66{bottom:749.568000px;}
.y140{bottom:750.079500px;}
.y1db{bottom:752.455500px;}
.y213{bottom:759.450000px;}
.y199{bottom:760.794000px;}
.y13d{bottom:763.485000px;}
.y32{bottom:764.637000px;}
.yd0{bottom:764.829000px;}
.y9e{bottom:765.726000px;}
.y65{bottom:768.397500px;}
.y212{bottom:776.709000px;}
.y1da{bottom:778.996500px;}
.y198{bottom:779.623500px;}
.y31{bottom:780.777000px;}
.y13c{bottom:782.314500px;}
.ycf{bottom:783.658500px;}
.y9d{bottom:784.555500px;}
.y64{bottom:787.227000px;}
.y30{bottom:792.576000px;}
.y211{bottom:793.969500px;}
.y197{bottom:798.453000px;}
.y13b{bottom:801.144000px;}
.yce{bottom:802.488000px;}
.y9c{bottom:803.385000px;}
.y1d9{bottom:805.537500px;}
.y63{bottom:806.056500px;}
.y210{bottom:811.230000px;}
.y2f{bottom:813.055500px;}
.y196{bottom:817.282500px;}
.ycc{bottom:821.317500px;}
.y9b{bottom:822.214500px;}
.y1d8{bottom:823.111500px;}
.y13a{bottom:824.455500px;}
.y2e{bottom:824.856000px;}
.y62{bottom:824.886000px;}
.ycd{bottom:826.743000px;}
.y20f{bottom:828.490500px;}
.y195{bottom:836.112000px;}
.ycb{bottom:840.147000px;}
.y1d7{bottom:840.685500px;}
.y9a{bottom:841.044000px;}
.y61{bottom:843.715500px;}
.y139{bottom:844.630500px;}
.y2d{bottom:845.334000px;}
.y20e{bottom:845.751000px;}
.y2c{bottom:857.134500px;}
.y1d6{bottom:858.259500px;}
.y194{bottom:859.425000px;}
.y99{bottom:859.873500px;}
.y60{bottom:862.545000px;}
.y20d{bottom:863.011500px;}
.yca{bottom:863.460000px;}
.y2b{bottom:877.614000px;}
.y138{bottom:878.254500px;}
.y98{bottom:878.703000px;}
.y20c{bottom:880.272000px;}
.y5f{bottom:881.374500px;}
.y1d5{bottom:884.800500px;}
.y2a{bottom:889.413000px;}
.y193{bottom:893.049000px;}
.yc9{bottom:897.084000px;}
.y97{bottom:897.532500px;}
.y5e{bottom:900.204000px;}
.y1d4{bottom:902.374500px;}
.y29{bottom:909.892500px;}
.y192{bottom:911.878500px;}
.y20b{bottom:914.793000px;}
.yc8{bottom:915.913500px;}
.y96{bottom:916.362000px;}
.y5d{bottom:919.033500px;}
.y1d3{bottom:919.948500px;}
.y191{bottom:930.708000px;}
.yc6{bottom:932.013000px;}
.y20a{bottom:932.052000px;}
.yc5{bottom:934.743000px;}
.y95{bottom:935.191500px;}
.y1d2{bottom:937.522500px;}
.y5c{bottom:937.863000px;}
.yc7{bottom:940.167000px;}
.y9{bottom:948.228000px;}
.y209{bottom:949.312500px;}
.y190{bottom:949.537500px;}
.yc4{bottom:953.572500px;}
.y94{bottom:954.021000px;}
.y1d1{bottom:955.096500px;}
.y5b{bottom:956.692500px;}
.y208{bottom:966.573000px;}
.y8{bottom:967.057500px;}
.y18f{bottom:968.367000px;}
.yc3{bottom:972.402000px;}
.y1d0{bottom:972.670500px;}
.y93{bottom:972.849000px;}
.y5a{bottom:975.522000px;}
.y137{bottom:976.884000px;}
.y207{bottom:983.833500px;}
.y18e{bottom:987.196500px;}
.y1bd{bottom:988.950000px;}
.y1cf{bottom:990.244500px;}
.yc2{bottom:991.231500px;}
.y92{bottom:991.678500px;}
.y59{bottom:994.351500px;}
.y206{bottom:1001.094000px;}
.y18d{bottom:1006.026000px;}
.y1ce{bottom:1007.818500px;}
.y91{bottom:1010.508000px;}
.y7{bottom:1012.954500px;}
.y58{bottom:1013.181000px;}
.yc1{bottom:1014.543000px;}
.y205{bottom:1018.354500px;}
.y18c{bottom:1024.855500px;}
.y90{bottom:1029.337500px;}
.y57{bottom:1032.010500px;}
.y1cd{bottom:1034.359500px;}
.y204{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y18b{bottom:1043.685000px;}
.y8f{bottom:1048.167000px;}
.y56{bottom:1050.840000px;}
.y1cc{bottom:1051.933500px;}
.y203{bottom:1052.875500px;}
.y18a{bottom:1062.513000px;}
.y8e{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y1cb{bottom:1069.507500px;}
.y55{bottom:1069.669500px;}
.y202{bottom:1070.134500px;}
.y189{bottom:1081.342500px;}
.y8d{bottom:1085.826000px;}
.y1ca{bottom:1087.081500px;}
.y201{bottom:1087.395000px;}
.y54{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y8c{bottom:1104.655500px;}
.y53{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y52{bottom:1173.397500px;}
.h23{height:24.176953px;}
.h20{height:25.070054px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.h15{height:27.855430px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h16{height:31.526842px;}
.h14{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.he{height:34.813397px;}
.h19{height:34.951465px;}
.h13{height:35.052500px;}
.h21{height:37.334628px;}
.hf{height:38.734848px;}
.h10{height:39.165235px;}
.h3{height:39.402747px;}
.h1b{height:39.418945px;}
.h1d{height:39.419545px;}
.h1c{height:39.420745px;}
.h1f{height:39.434227px;}
.h17{height:41.482876px;}
.h11{height:43.038432px;}
.h1e{height:43.269961px;}
.h12{height:43.516637px;}
.h5{height:43.815515px;}
.h1a{height:43.886426px;}
.h2{height:50.931027px;}
.h4{height:51.251918px;}
.h7{height:54.411312px;}
.h6{height:77.469696px;}
.h22{height:176.583000px;}
.h18{height:424.905000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:209.166223px;}
.w5{width:685.837650px;}
.w4{width:696.087750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x52{left:-42.569250px;}
.x92{left:-35.342850px;}
.x53{left:-10.709250px;}
.x95{left:-3.482850px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.055459px;}
.x74{left:84.841500px;}
.x56{left:85.890000px;}
.x60{left:89.983500px;}
.x51{left:98.414250px;}
.x61{left:99.693000px;}
.x91{left:103.538850px;}
.x6e{left:136.155000px;}
.x75{left:138.571500px;}
.x6d{left:140.817000px;}
.x57{left:143.104500px;}
.x9a{left:144.811500px;}
.x54{left:153.000750px;}
.x70{left:159.124500px;}
.x94{left:160.226060px;}
.x6f{left:174.277500px;}
.x55{left:184.861344px;}
.x93{left:192.085955px;}
.x71{left:201.361500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x5{left:271.221000px;}
.xb5{left:275.202000px;}
.x10{left:278.173500px;}
.x3b{left:281.743500px;}
.x9{left:282.786000px;}
.x2c{left:284.047500px;}
.x11{left:285.645000px;}
.x3c{left:290.973000px;}
.x3a{left:292.279500px;}
.xad{left:294.874500px;}
.x2d{left:298.990500px;}
.x5c{left:300.108000px;}
.x79{left:305.808000px;}
.x7{left:309.435000px;}
.xb8{left:310.680000px;}
.xae{left:313.584000px;}
.x36{left:315.463500px;}
.xa5{left:318.487500px;}
.x8{left:321.184500px;}
.xb6{left:325.102500px;}
.xaf{left:328.528500px;}
.x37{left:330.408000px;}
.xa6{left:333.432000px;}
.xab{left:351.814500px;}
.x34{left:353.635500px;}
.x76{left:354.727500px;}
.x35{left:361.108500px;}
.x96{left:362.367150px;}
.x77{left:363.957000px;}
.x2b{left:365.974500px;}
.x28{left:371.505000px;}
.xba{left:373.516500px;}
.x4c{left:376.030500px;}
.x72{left:377.878500px;}
.x29{left:381.837000px;}
.x3d{left:384.501000px;}
.x2a{left:386.068500px;}
.x97{left:389.547150px;}
.x20{left:391.900500px;}
.x98{left:394.047150px;}
.xb7{left:395.415000px;}
.x3e{left:396.604500px;}
.x99{left:402.237150px;}
.xa7{left:404.238000px;}
.x21{left:406.843500px;}
.x12{left:408.937500px;}
.x8f{left:411.781500px;}
.x13{left:416.410500px;}
.xa8{left:419.182500px;}
.x3f{left:420.220500px;}
.x90{left:421.947000px;}
.x14{left:424.032000px;}
.x40{left:425.239500px;}
.x7a{left:434.746500px;}
.x15{left:438.975000px;}
.x41{left:444.633000px;}
.x7b{left:450.819000px;}
.x58{left:452.977500px;}
.x89{left:457.666500px;}
.x59{left:463.441500px;}
.x9c{left:467.863500px;}
.x8a{left:469.647000px;}
.x30{left:470.686500px;}
.xa1{left:477.033000px;}
.x9d{left:479.071500px;}
.x8b{left:481.752000px;}
.x31{left:485.631000px;}
.xe{left:486.703500px;}
.x24{left:487.957500px;}
.x32{left:489.441000px;}
.x80{left:491.656500px;}
.xb9{left:494.350500px;}
.x25{left:498.105000px;}
.x84{left:499.455000px;}
.x9e{left:501.061500px;}
.x8c{left:502.737000px;}
.x33{left:504.385500px;}
.x81{left:506.601000px;}
.x82{left:510.285000px;}
.x85{left:511.558500px;}
.x78{left:513.898500px;}
.x5d{left:516.150000px;}
.x62{left:518.296500px;}
.x9f{left:520.342500px;}
.x86{left:523.540500px;}
.x83{left:525.228000px;}
.x63{left:526.603500px;}
.x9b{left:530.505000px;}
.xa4{left:534.208500px;}
.x87{left:535.644000px;}
.xf{left:538.608000px;}
.x67{left:541.461000px;}
.xa{left:547.771500px;}
.x69{left:549.835500px;}
.x64{left:551.361000px;}
.xb{left:555.244500px;}
.x88{left:556.629000px;}
.xc{left:562.566000px;}
.x65{left:565.714500px;}
.xb0{left:567.225000px;}
.x73{left:569.031000px;}
.xd{left:570.039000px;}
.x7c{left:571.215000px;}
.x66{left:573.933000px;}
.xa9{left:575.074500px;}
.xb1{left:577.393500px;}
.x68{left:583.906500px;}
.xaa{left:590.019000px;}
.x6a{left:592.279500px;}
.xc2{left:604.843500px;}
.xa3{left:606.625500px;}
.x2e{left:614.664000px;}
.x2f{left:629.608500px;}
.xc3{left:631.743000px;}
.x26{left:649.155000px;}
.xa0{left:650.682000px;}
.x22{left:653.290500px;}
.xc1{left:654.708000px;}
.x27{left:660.484500px;}
.x23{left:668.235000px;}
.x7e{left:674.205000px;}
.x7f{left:681.676500px;}
.x5e{left:684.966000px;}
.xb3{left:687.582000px;}
.x42{left:689.694000px;}
.xbe{left:695.659500px;}
.xc0{left:700.365000px;}
.x43{left:701.799000px;}
.x6b{left:702.810000px;}
.x38{left:706.666500px;}
.x6c{left:710.287500px;}
.x47{left:711.337500px;}
.x44{left:713.310000px;}
.x5f{left:714.339000px;}
.x48{left:718.144500px;}
.xb4{left:721.279500px;}
.x1a{left:722.896500px;}
.x16{left:725.461500px;}
.x1c{left:727.311000px;}
.x45{left:730.432500px;}
.xbd{left:735.549000px;}
.x1b{left:737.841000px;}
.x17{left:740.406000px;}
.x1d{left:742.254000px;}
.xbf{left:744.748500px;}
.x18{left:747.847500px;}
.x46{left:749.826000px;}
.x39{left:757.831500px;}
.x19{left:762.792000px;}
.x5a{left:766.251000px;}
.xbb{left:769.135500px;}
.xb2{left:771.226500px;}
.x4a{left:773.290500px;}
.x5b{left:775.222500px;}
.xac{left:776.553000px;}
.x4b{left:789.265500px;}
.x8d{left:790.776000px;}
.x4d{left:792.639000px;}
.xbc{left:796.035000px;}
.x8e{left:800.952000px;}
.x4e{left:808.654500px;}
.xa2{left:816.751500px;}
.x1e{left:817.810500px;}
.x4f{left:819.873000px;}
.x50{left:826.680000px;}
.x1f{left:832.755000px;}
.x7d{left:833.838000px;}
.x49{left:835.522500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls43{letter-spacing:-0.268800pt;}
.ls3b{letter-spacing:-0.216000pt;}
.ls42{letter-spacing:-0.206400pt;}
.ls69{letter-spacing:-0.154976pt;}
.ls4d{letter-spacing:-0.149632pt;}
.ls66{letter-spacing:-0.138944pt;}
.ls65{letter-spacing:-0.128256pt;}
.ls4c{letter-spacing:-0.122912pt;}
.ls46{letter-spacing:-0.117568pt;}
.ls41{letter-spacing:-0.115200pt;}
.ls68{letter-spacing:-0.096192pt;}
.ls47{letter-spacing:-0.090848pt;}
.ls45{letter-spacing:-0.085504pt;}
.ls39{letter-spacing:-0.080864pt;}
.ls4a{letter-spacing:-0.080160pt;}
.ls5e{letter-spacing:-0.076608pt;}
.ls40{letter-spacing:-0.072000pt;}
.ls62{letter-spacing:-0.069472pt;}
.ls60{letter-spacing:-0.058784pt;}
.ls3f{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.042752pt;}
.ls3d{letter-spacing:-0.033600pt;}
.ls64{letter-spacing:-0.032064pt;}
.ls67{letter-spacing:-0.026720pt;}
.ls3e{letter-spacing:-0.024000pt;}
.ls63{letter-spacing:-0.021376pt;}
.ls3a{letter-spacing:-0.019200pt;}
.ls48{letter-spacing:-0.016032pt;}
.ls44{letter-spacing:-0.014400pt;}
.ls61{letter-spacing:-0.010688pt;}
.ls49{letter-spacing:-0.005344pt;}
.ls3c{letter-spacing:-0.004800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000600pt;}
.ls71{letter-spacing:0.000711pt;}
.ls6a{letter-spacing:0.001077pt;}
.ls6{letter-spacing:0.001718pt;}
.ls5{letter-spacing:0.001735pt;}
.ls7b{letter-spacing:0.001973pt;}
.ls6e{letter-spacing:0.002439pt;}
.lsd{letter-spacing:0.002666pt;}
.ls6c{letter-spacing:0.002950pt;}
.ls11{letter-spacing:0.004256pt;}
.ls76{letter-spacing:0.004267pt;}
.ls6b{letter-spacing:0.004416pt;}
.ls20{letter-spacing:0.004800pt;}
.ls28{letter-spacing:0.005344pt;}
.ls56{letter-spacing:0.005888pt;}
.ls50{letter-spacing:0.008512pt;}
.ls15{letter-spacing:0.009600pt;}
.ls17{letter-spacing:0.014400pt;}
.ls54{letter-spacing:0.016032pt;}
.ls22{letter-spacing:0.017664pt;}
.ls1f{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.020608pt;}
.ls5a{letter-spacing:0.021376pt;}
.ls24{letter-spacing:0.024000pt;}
.ls2a{letter-spacing:0.026720pt;}
.ls25{letter-spacing:0.028800pt;}
.ls2d{letter-spacing:0.032064pt;}
.ls1a{letter-spacing:0.033600pt;}
.ls55{letter-spacing:0.037408pt;}
.ls1b{letter-spacing:0.038272pt;}
.ls13{letter-spacing:0.038304pt;}
.ls16{letter-spacing:0.038400pt;}
.ls5b{letter-spacing:0.042752pt;}
.ls57{letter-spacing:0.043200pt;}
.ls52{letter-spacing:0.046816pt;}
.ls58{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.052800pt;}
.ls2b{letter-spacing:0.053440pt;}
.ls23{letter-spacing:0.057600pt;}
.ls1c{letter-spacing:0.062400pt;}
.ls29{letter-spacing:0.064128pt;}
.ls1e{letter-spacing:0.067200pt;}
.ls59{letter-spacing:0.081600pt;}
.ls27{letter-spacing:0.085504pt;}
.ls18{letter-spacing:0.096000pt;}
.ls5c{letter-spacing:0.106880pt;}
.ls21{letter-spacing:0.110400pt;}
.ls2c{letter-spacing:0.112224pt;}
.ls14{letter-spacing:0.148960pt;}
.ls53{letter-spacing:0.157472pt;}
.ls12{letter-spacing:0.161728pt;}
.ls51{letter-spacing:0.170240pt;}
.ls5d{letter-spacing:0.447791pt;}
.ls26{letter-spacing:0.480000pt;}
.ls4f{letter-spacing:0.482502pt;}
.lsc{letter-spacing:0.487835pt;}
.lsa{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls5f{letter-spacing:2.004000pt;}
.ls0{letter-spacing:2.665203pt;}
.ls3{letter-spacing:9.293600pt;}
.ls8{letter-spacing:10.626533pt;}
.ls33{letter-spacing:11.398444pt;}
.ls38{letter-spacing:11.773840pt;}
.ls37{letter-spacing:11.778665pt;}
.ls36{letter-spacing:11.783935pt;}
.ls73{letter-spacing:11.846107pt;}
.ls31{letter-spacing:11.846814pt;}
.ls2f{letter-spacing:11.866492pt;}
.ls2e{letter-spacing:11.871805pt;}
.ls78{letter-spacing:11.924920pt;}
.ls34{letter-spacing:11.952375pt;}
.ls6f{letter-spacing:11.954133pt;}
.ls35{letter-spacing:11.956267pt;}
.ls72{letter-spacing:11.959467pt;}
.ls79{letter-spacing:11.967389pt;}
.ls74{letter-spacing:12.015319pt;}
.ls30{letter-spacing:12.033034pt;}
.ls70{letter-spacing:13.080094pt;}
.lse{letter-spacing:13.216754pt;}
.ls4e{letter-spacing:13.283733pt;}
.ls10{letter-spacing:13.284237pt;}
.ls7a{letter-spacing:13.289244pt;}
.ls77{letter-spacing:13.393820pt;}
.lsf{letter-spacing:14.190903pt;}
.ls32{letter-spacing:14.839927pt;}
.lsb{letter-spacing:15.942400pt;}
.ls75{letter-spacing:18.784669pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ws6a{word-spacing:-53.440000pt;}
.ws111{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.ws66{word-spacing:-12.000000pt;}
.ws134{word-spacing:-11.955200pt;}
.wsce{word-spacing:-10.810240pt;}
.ws65{word-spacing:-10.801728pt;}
.ws17{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.wsa{word-spacing:-9.298400pt;}
.ws67{word-spacing:-7.380608pt;}
.ws68{word-spacing:-7.377664pt;}
.ws69{word-spacing:-7.360000pt;}
.ws118{word-spacing:-2.975497pt;}
.wsf8{word-spacing:-2.816288pt;}
.wsc8{word-spacing:-2.656693pt;}
.wsf7{word-spacing:-2.431520pt;}
.ws124{word-spacing:-2.284756pt;}
.ws11a{word-spacing:-2.125355pt;}
.ws11e{word-spacing:-2.019087pt;}
.ws2b{word-spacing:-1.912819pt;}
.wsbb{word-spacing:-1.902464pt;}
.ws3f{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws123{word-spacing:-1.594016pt;}
.ws81{word-spacing:-1.478400pt;}
.ws83{word-spacing:-1.459200pt;}
.ws82{word-spacing:-1.435200pt;}
.ws35{word-spacing:-1.434614pt;}
.ws33{word-spacing:-1.328347pt;}
.ws19{word-spacing:-1.195520pt;}
.ws101{word-spacing:-1.181024pt;}
.ws6{word-spacing:-1.175671pt;}
.ws42{word-spacing:-1.168945pt;}
.ws131{word-spacing:-1.147699pt;}
.ws132{word-spacing:-1.099878pt;}
.ws121{word-spacing:-1.062677pt;}
.ws102{word-spacing:-1.058112pt;}
.ws38{word-spacing:-1.009543pt;}
.ws120{word-spacing:-0.956410pt;}
.ws48{word-spacing:-0.850142pt;}
.ws144{word-spacing:-0.812954pt;}
.ws47{word-spacing:-0.797008pt;}
.wsc7{word-spacing:-0.743874pt;}
.ws12c{word-spacing:-0.717312pt;}
.ws62{word-spacing:-0.690740pt;}
.ws12d{word-spacing:-0.669491pt;}
.ws10a{word-spacing:-0.587840pt;}
.ws56{word-spacing:-0.584473pt;}
.ws75{word-spacing:-0.573850pt;}
.ws84{word-spacing:-0.480000pt;}
.ws86{word-spacing:-0.456000pt;}
.ws85{word-spacing:-0.446400pt;}
.ws34{word-spacing:-0.371937pt;}
.wsc1{word-spacing:-0.352704pt;}
.wsb6{word-spacing:-0.325984pt;}
.wse0{word-spacing:-0.320640pt;}
.ws4a{word-spacing:-0.318803pt;}
.ws130{word-spacing:-0.286925pt;}
.ws27{word-spacing:-0.265669pt;}
.wse1{word-spacing:-0.256512pt;}
.wsd4{word-spacing:-0.251168pt;}
.ws1a{word-spacing:-0.239104pt;}
.wsb5{word-spacing:-0.225600pt;}
.wse7{word-spacing:-0.224448pt;}
.wsfa{word-spacing:-0.213760pt;}
.ws29{word-spacing:-0.212535pt;}
.ws77{word-spacing:-0.191283pt;}
.ws8e{word-spacing:-0.177600pt;}
.ws8f{word-spacing:-0.163200pt;}
.ws3c{word-spacing:-0.159402pt;}
.wsb7{word-spacing:-0.154976pt;}
.ws76{word-spacing:-0.151626pt;}
.ws18{word-spacing:-0.143462pt;}
.wsd3{word-spacing:-0.123424pt;}
.wsb8{word-spacing:-0.122912pt;}
.ws7c{word-spacing:-0.119168pt;}
.ws71{word-spacing:-0.110722pt;}
.ws26{word-spacing:-0.106268pt;}
.ws24{word-spacing:-0.095642pt;}
.ws7b{word-spacing:-0.085120pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.wsb{word-spacing:-0.037194pt;}
.wse5{word-spacing:-0.021376pt;}
.ws4{word-spacing:-0.003325pt;}
.ws1{word-spacing:-0.002607pt;}
.ws0{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.026720pt;}
.ws139{word-spacing:0.047821pt;}
.wsd5{word-spacing:0.048096pt;}
.ws37{word-spacing:0.053134pt;}
.ws105{word-spacing:0.058784pt;}
.ws70{word-spacing:0.063227pt;}
.wsf9{word-spacing:0.064128pt;}
.wsdf{word-spacing:0.081600pt;}
.ws23{word-spacing:0.095642pt;}
.ws36{word-spacing:0.106268pt;}
.wsde{word-spacing:0.115200pt;}
.ws135{word-spacing:0.143462pt;}
.wsd6{word-spacing:0.144288pt;}
.ws44{word-spacing:0.159402pt;}
.wse6{word-spacing:0.171008pt;}
.wsc{word-spacing:0.185968pt;}
.ws1e{word-spacing:0.191283pt;}
.ws39{word-spacing:0.212535pt;}
.wsd2{word-spacing:0.239104pt;}
.wse{word-spacing:0.260355pt;}
.ws3d{word-spacing:0.265669pt;}
.ws1c{word-spacing:0.286925pt;}
.ws4b{word-spacing:0.318803pt;}
.ws6d{word-spacing:0.334746pt;}
.ws10f{word-spacing:0.371937pt;}
.wsf4{word-spacing:0.390112pt;}
.wsea{word-spacing:0.427520pt;}
.wseb{word-spacing:0.438208pt;}
.wsab{word-spacing:0.446400pt;}
.wsa4{word-spacing:0.451200pt;}
.wsa6{word-spacing:0.460800pt;}
.ws8b{word-spacing:0.470400pt;}
.wsad{word-spacing:0.475200pt;}
.ws41{word-spacing:0.478205pt;}
.wsa5{word-spacing:0.480000pt;}
.wsac{word-spacing:0.484800pt;}
.ws49{word-spacing:0.531339pt;}
.ws59{word-spacing:0.637606pt;}
.ws9b{word-spacing:0.638848pt;}
.ws11b{word-spacing:0.690740pt;}
.ws8d{word-spacing:0.734400pt;}
.ws8a{word-spacing:0.744000pt;}
.ws8c{word-spacing:0.748800pt;}
.ws89{word-spacing:0.768000pt;}
.ws7f{word-spacing:0.792000pt;}
.ws4f{word-spacing:0.797008pt;}
.ws7e{word-spacing:0.820800pt;}
.ws88{word-spacing:0.835200pt;}
.ws87{word-spacing:0.849600pt;}
.ws137{word-spacing:0.860774pt;}
.wsf3{word-spacing:0.865728pt;}
.ws5e{word-spacing:0.903276pt;}
.wsa8{word-spacing:0.942080pt;}
.ws55{word-spacing:0.956410pt;}
.ws80{word-spacing:1.017600pt;}
.ws109{word-spacing:1.042080pt;}
.ws15c{word-spacing:1.052058pt;}
.ws9d{word-spacing:1.056000pt;}
.ws9c{word-spacing:1.060800pt;}
.ws2c{word-spacing:1.062677pt;}
.ws108{word-spacing:1.079488pt;}
.wsda{word-spacing:1.089600pt;}
.ws9e{word-spacing:1.094400pt;}
.ws9a{word-spacing:1.099200pt;}
.ws152{word-spacing:1.099878pt;}
.ws50{word-spacing:1.115811pt;}
.ws138{word-spacing:1.147699pt;}
.ws45{word-spacing:1.168945pt;}
.wsd0{word-spacing:1.243341pt;}
.ws64{word-spacing:1.275213pt;}
.wsee{word-spacing:1.325312pt;}
.ws57{word-spacing:1.328347pt;}
.wse4{word-spacing:1.336000pt;}
.ws6f{word-spacing:1.338982pt;}
.wse8{word-spacing:1.346688pt;}
.wsa9{word-spacing:1.377600pt;}
.wsef{word-spacing:1.384096pt;}
.wsed{word-spacing:1.389440pt;}
.wsb3{word-spacing:1.401600pt;}
.wsa7{word-spacing:1.406400pt;}
.wsaa{word-spacing:1.425600pt;}
.ws154{word-spacing:1.434624pt;}
.wsb4{word-spacing:1.435200pt;}
.wse9{word-spacing:1.437536pt;}
.wsdb{word-spacing:1.444800pt;}
.wscf{word-spacing:1.482445pt;}
.ws63{word-spacing:1.487748pt;}
.wsec{word-spacing:1.496320pt;}
.ws125{word-spacing:1.540882pt;}
.ws12b{word-spacing:1.578086pt;}
.ws1d{word-spacing:1.625907pt;}
.ws28{word-spacing:1.700284pt;}
.ws2f{word-spacing:1.753418pt;}
.wsd{word-spacing:1.785293pt;}
.ws79{word-spacing:1.806551pt;}
.ws43{word-spacing:1.912819pt;}
.wsf2{word-spacing:1.966592pt;}
.ws104{word-spacing:1.987968pt;}
.wsbe{word-spacing:2.004000pt;}
.ws149{word-spacing:2.008474pt;}
.wsa3{word-spacing:2.049600pt;}
.wsa2{word-spacing:2.059200pt;}
.wsbf{word-spacing:2.078816pt;}
.wsc4{word-spacing:2.089504pt;}
.ws61{word-spacing:2.125355pt;}
.wsc6{word-spacing:2.148288pt;}
.wsa1{word-spacing:2.150400pt;}
.ws5b{word-spacing:2.231622pt;}
.ws12a{word-spacing:2.247578pt;}
.ws122{word-spacing:2.284756pt;}
.ws141{word-spacing:2.295398pt;}
.ws103{word-spacing:2.324640pt;}
.ws10e{word-spacing:2.391024pt;}
.ws4d{word-spacing:2.444158pt;}
.ws117{word-spacing:2.497292pt;}
.ws12f{word-spacing:2.534502pt;}
.ws22{word-spacing:2.582323pt;}
.ws11c{word-spacing:2.603559pt;}
.wsba{word-spacing:2.634592pt;}
.wsf1{word-spacing:2.645280pt;}
.wsf0{word-spacing:2.650624pt;}
.ws54{word-spacing:2.656693pt;}
.ws13e{word-spacing:2.677965pt;}
.ws11d{word-spacing:2.709827pt;}
.wsb9{word-spacing:2.730784pt;}
.wsc5{word-spacing:2.762848pt;}
.ws114{word-spacing:2.762961pt;}
.ws12e{word-spacing:2.821427pt;}
.ws142{word-spacing:2.863556pt;}
.ws2e{word-spacing:2.869229pt;}
.ws74{word-spacing:2.869248pt;}
.ws6c{word-spacing:2.917069pt;}
.wsfd{word-spacing:2.949888pt;}
.ws3a{word-spacing:2.975497pt;}
.wsdc{word-spacing:2.980800pt;}
.wsfe{word-spacing:2.992640pt;}
.wsdd{word-spacing:2.995200pt;}
.ws92{word-spacing:3.004800pt;}
.ws91{word-spacing:3.019200pt;}
.ws90{word-spacing:3.024000pt;}
.ws72{word-spacing:3.060531pt;}
.ws112{word-spacing:3.081764pt;}
.ws3b{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws110{word-spacing:3.241166pt;}
.wse2{word-spacing:3.254496pt;}
.wsbd{word-spacing:3.297248pt;}
.wsae{word-spacing:3.345600pt;}
.wsb2{word-spacing:3.374400pt;}
.ws46{word-spacing:3.400567pt;}
.ws1f{word-spacing:3.443098pt;}
.ws116{word-spacing:3.453701pt;}
.wsaf{word-spacing:3.475200pt;}
.ws147{word-spacing:3.490918pt;}
.wsb0{word-spacing:3.566400pt;}
.ws5c{word-spacing:3.613103pt;}
.wsb1{word-spacing:3.628800pt;}
.wscc{word-spacing:3.666237pt;}
.ws126{word-spacing:3.719371pt;}
.ws129{word-spacing:3.730022pt;}
.ws30{word-spacing:3.772505pt;}
.ws31{word-spacing:3.825638pt;}
.ws21{word-spacing:3.825664pt;}
.wsff{word-spacing:3.863712pt;}
.ws100{word-spacing:3.933184pt;}
.wsd8{word-spacing:3.979200pt;}
.wsd9{word-spacing:3.988800pt;}
.wsd7{word-spacing:3.993600pt;}
.ws128{word-spacing:4.016947pt;}
.ws51{word-spacing:4.091308pt;}
.ws53{word-spacing:4.144442pt;}
.wsbc{word-spacing:4.173664pt;}
.wsca{word-spacing:4.197575pt;}
.wse3{word-spacing:4.205728pt;}
.ws107{word-spacing:4.221760pt;}
.ws6e{word-spacing:4.256051pt;}
.ws93{word-spacing:4.286400pt;}
.ws95{word-spacing:4.315200pt;}
.ws94{word-spacing:4.324800pt;}
.ws106{word-spacing:4.344672pt;}
.ws40{word-spacing:4.356977pt;}
.ws1b{word-spacing:4.495155pt;}
.ws78{word-spacing:4.516379pt;}
.wsc3{word-spacing:4.526368pt;}
.ws13a{word-spacing:4.590797pt;}
.wsc2{word-spacing:4.601184pt;}
.wsa0{word-spacing:4.608000pt;}
.ws9f{word-spacing:4.646400pt;}
.ws119{word-spacing:4.675780pt;}
.ws13d{word-spacing:4.686438pt;}
.ws115{word-spacing:4.728914pt;}
.ws20{word-spacing:4.925542pt;}
.ws10d{word-spacing:4.941450pt;}
.wsd1{word-spacing:4.973363pt;}
.ws52{word-spacing:5.153985pt;}
.ws32{word-spacing:5.207119pt;}
.ws14{word-spacing:5.393072pt;}
.ws14f{word-spacing:5.403750pt;}
.ws113{word-spacing:5.419654pt;}
.ws15{word-spacing:5.467459pt;}
.ws7a{word-spacing:5.472788pt;}
.wscd{word-spacing:5.632190pt;}
.ws127{word-spacing:5.685324pt;}
.ws60{word-spacing:5.791591pt;}
.ws5f{word-spacing:5.844725pt;}
.ws10b{word-spacing:5.846336pt;}
.ws98{word-spacing:5.851200pt;}
.wsfb{word-spacing:5.857024pt;}
.ws4e{word-spacing:5.897859pt;}
.ws99{word-spacing:5.899200pt;}
.ws97{word-spacing:5.908800pt;}
.ws96{word-spacing:5.952000pt;}
.wsfc{word-spacing:5.995968pt;}
.ws10c{word-spacing:6.001312pt;}
.wsf6{word-spacing:6.444864pt;}
.wsf5{word-spacing:6.508992pt;}
.ws5d{word-spacing:6.641733pt;}
.ws151{word-spacing:6.838374pt;}
.wscb{word-spacing:6.854269pt;}
.ws11f{word-spacing:7.066804pt;}
.ws4c{word-spacing:7.545009pt;}
.ws12{word-spacing:7.699075pt;}
.ws73{word-spacing:8.799027pt;}
.ws7d{word-spacing:10.329312pt;}
.ws2a{word-spacing:10.582157pt;}
.ws9{word-spacing:11.492707pt;}
.ws157{word-spacing:11.859558pt;}
.ws156{word-spacing:11.898283pt;}
.ws155{word-spacing:11.898863pt;}
.ws140{word-spacing:11.900860pt;}
.ws13f{word-spacing:11.901764pt;}
.ws15a{word-spacing:11.904196pt;}
.ws14b{word-spacing:11.904922pt;}
.ws14a{word-spacing:11.905306pt;}
.ws159{word-spacing:11.905741pt;}
.ws133{word-spacing:11.907379pt;}
.ws158{word-spacing:11.907541pt;}
.ws14d{word-spacing:11.909291pt;}
.ws143{word-spacing:11.909632pt;}
.ws3e{word-spacing:13.176461pt;}
.wsc9{word-spacing:13.177199pt;}
.ws58{word-spacing:13.230333pt;}
.ws8{word-spacing:13.763148pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.ws15b{word-spacing:14.633165pt;}
.ws136{word-spacing:14.774289pt;}
.ws13c{word-spacing:14.774554pt;}
.ws13b{word-spacing:14.776627pt;}
.ws146{word-spacing:14.872269pt;}
.ws148{word-spacing:14.902827pt;}
.ws145{word-spacing:15.015731pt;}
.ws14e{word-spacing:15.063552pt;}
.ws14c{word-spacing:15.350477pt;}
.ws11{word-spacing:15.732893pt;}
.ws5a{word-spacing:16.418365pt;}
.ws150{word-spacing:17.311130pt;}
.ws153{word-spacing:18.506650pt;}
.ws13{word-spacing:24.399002pt;}
.ws3{word-spacing:41.430071pt;}
._3{margin-left:-10.616218pt;}
._6{margin-left:-6.646250pt;}
._1f{margin-left:-5.711998pt;}
._9{margin-left:-4.797974pt;}
._0{margin-left:-3.538739pt;}
._8{margin-left:-2.635398pt;}
._1{margin-left:-1.721549pt;}
._4{width:0.957385pt;}
._5{width:2.661849pt;}
._1d{width:4.211072pt;}
._21{width:10.063566pt;}
._a{width:11.321940pt;}
._c{width:12.806333pt;}
._d{width:14.064544pt;}
._11{width:15.685222pt;}
._16{width:16.705299pt;}
._10{width:17.693696pt;}
._18{width:19.532033pt;}
._19{width:20.977274pt;}
._13{width:22.141030pt;}
._b{width:23.063347pt;}
._1e{width:24.053862pt;}
._12{width:24.962458pt;}
._24{width:25.918874pt;}
._1a{width:27.151406pt;}
._f{width:28.086704pt;}
._2{width:29.648896pt;}
._20{width:30.695433pt;}
._17{width:32.326656pt;}
._1b{width:34.430746pt;}
._e{width:50.498554pt;}
._25{width:54.993920pt;}
._7{width:61.660458pt;}
._22{width:78.904320pt;}
._14{width:833.336194pt;}
._1c{width:1818.712439pt;}
._23{width:2158.503435pt;}
._15{width:2179.756769pt;}
.fs10{font-size:29.440000pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs12{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs11{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs1{font-size:67.193600pt;}
.fs3{font-size:95.641600pt;}
.y151{bottom:-740.336933pt;}
.y17a{bottom:-678.245301pt;}
.y179{bottom:-661.125797pt;}
.y178{bottom:-644.086453pt;}
.y177{bottom:-626.966949pt;}
.y176{bottom:-609.847445pt;}
.y175{bottom:-592.808101pt;}
.yf4{bottom:-592.364933pt;}
.y174{bottom:-575.688597pt;}
.y173{bottom:-558.649253pt;}
.y172{bottom:-541.529749pt;}
.y113{bottom:-527.560624pt;}
.y171{bottom:-524.410245pt;}
.y112{bottom:-510.441120pt;}
.y170{bottom:-507.370901pt;}
.y111{bottom:-493.401776pt;}
.y16f{bottom:-486.330237pt;}
.y110{bottom:-476.282272pt;}
.y10f{bottom:-455.241608pt;}
.y16e{bottom:-453.210797pt;}
.y16d{bottom:-436.091293pt;}
.y10e{bottom:-422.122168pt;}
.y16c{bottom:-418.971789pt;}
.y10d{bottom:-405.002664pt;}
.y16b{bottom:-401.932445pt;}
.y10c{bottom:-387.963320pt;}
.y16a{bottom:-384.812941pt;}
.y10b{bottom:-370.843816pt;}
.y169{bottom:-367.773597pt;}
.y10a{bottom:-353.804472pt;}
.y168{bottom:-350.654093pt;}
.y109{bottom:-336.684968pt;}
.y167{bottom:-333.534589pt;}
.y108{bottom:-319.565464pt;}
.y166{bottom:-316.493909pt;}
.y165{bottom:-299.374405pt;}
.y107{bottom:-298.524800pt;}
.y164{bottom:-282.254901pt;}
.y106{bottom:-265.805600pt;}
.y163{bottom:-261.214237pt;}
.y105{bottom:-250.365200pt;}
.y104{bottom:-234.924800pt;}
.y162{bottom:-228.094797pt;}
.y103{bottom:-219.564800pt;}
.y161{bottom:-211.055453pt;}
.y102{bottom:-204.204933pt;}
.y160{bottom:-193.935949pt;}
.y101{bottom:-188.845333pt;}
.y15f{bottom:-176.816445pt;}
.y100{bottom:-173.404933pt;}
.y15e{bottom:-159.777101pt;}
.yff{bottom:-158.044933pt;}
.yfe{bottom:-142.684933pt;}
.y15d{bottom:-142.657597pt;}
.yfd{bottom:-127.325333pt;}
.y15c{bottom:-121.616933pt;}
.yfc{bottom:-111.884933pt;}
.yfb{bottom:-96.524933pt;}
.y15b{bottom:-88.896533pt;}
.yfa{bottom:-81.164933pt;}
.y15a{bottom:-73.376933pt;}
.yf9{bottom:-65.805333pt;}
.y159{bottom:-58.016933pt;}
.yf8{bottom:-50.364933pt;}
.y157{bottom:-42.656933pt;}
.y158{bottom:-39.296933pt;}
.yf7{bottom:-35.004933pt;}
.y156{bottom:-27.296933pt;}
.yf6{bottom:-19.644933pt;}
.y155{bottom:-7.376605pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:0.275315pt;}
.yc{bottom:3.044747pt;}
.y3{bottom:9.767346pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:27.405666pt;}
.y51{bottom:28.346667pt;}
.y200{bottom:82.646667pt;}
.y136{bottom:88.172000pt;}
.y1bc{bottom:90.457333pt;}
.y28{bottom:91.398667pt;}
.y50{bottom:92.108000pt;}
.yc0{bottom:93.246667pt;}
.y8b{bottom:97.214667pt;}
.y1ff{bottom:97.989333pt;}
.y135{bottom:104.909333pt;}
.y188{bottom:105.557333pt;}
.y1bb{bottom:107.194667pt;}
.y27{bottom:107.298667pt;}
.y4f{bottom:108.844000pt;}
.yf0{bottom:109.585333pt;}
.ybf{bottom:109.984000pt;}
.y1c9{bottom:111.178667pt;}
.y1fe{bottom:113.330667pt;}
.y8a{bottom:113.952000pt;}
.y134{bottom:121.646667pt;}
.y187{bottom:122.294667pt;}
.y26{bottom:123.200000pt;}
.y1ba{bottom:123.930667pt;}
.y4e{bottom:125.581333pt;}
.yef{bottom:126.322667pt;}
.ybe{bottom:126.721333pt;}
.y1c8{bottom:127.916000pt;}
.y1fd{bottom:128.673333pt;}
.y89{bottom:130.689333pt;}
.y133{bottom:138.384000pt;}
.y186{bottom:139.032000pt;}
.y25{bottom:139.100000pt;}
.y1b9{bottom:140.668000pt;}
.y4d{bottom:142.318667pt;}
.yee{bottom:143.060000pt;}
.ybd{bottom:143.458667pt;}
.y1fc{bottom:144.016000pt;}
.y1c7{bottom:144.653333pt;}
.y88{bottom:147.426667pt;}
.y24{bottom:155.000000pt;}
.y132{bottom:155.121333pt;}
.y185{bottom:155.769333pt;}
.y1b8{bottom:157.405333pt;}
.y1fb{bottom:159.358667pt;}
.yed{bottom:159.797333pt;}
.ybc{bottom:160.196000pt;}
.y1c6{bottom:161.390667pt;}
.y4c{bottom:163.041333pt;}
.y87{bottom:164.164000pt;}
.y23{bottom:170.901333pt;}
.y131{bottom:171.858667pt;}
.y184{bottom:172.506667pt;}
.y1b7{bottom:174.142667pt;}
.y1fa{bottom:174.701333pt;}
.yec{bottom:176.534667pt;}
.ybb{bottom:176.933333pt;}
.y1c5{bottom:178.128000pt;}
.y86{bottom:180.901333pt;}
.y154{bottom:184.943267pt;}
.y22{bottom:186.801333pt;}
.y130{bottom:188.596000pt;}
.y183{bottom:189.244000pt;}
.y1f9{bottom:190.044000pt;}
.y1b6{bottom:190.880000pt;}
.yeb{bottom:193.272000pt;}
.yba{bottom:193.669333pt;}
.y1c4{bottom:194.865333pt;}
.y85{bottom:197.638667pt;}
.y153{bottom:202.062771pt;}
.y21{bottom:202.701333pt;}
.y12f{bottom:205.333333pt;}
.y1f8{bottom:205.386667pt;}
.y1b5{bottom:207.617333pt;}
.y182{bottom:209.965333pt;}
.yea{bottom:210.009333pt;}
.yb9{bottom:210.406667pt;}
.y1c3{bottom:211.602667pt;}
.y84{bottom:212.384000pt;}
.y83{bottom:214.376000pt;}
.y152{bottom:219.103451pt;}
.y1f7{bottom:220.729333pt;}
.y12e{bottom:222.070667pt;}
.y1b4{bottom:224.354667pt;}
.ye9{bottom:226.746667pt;}
.y1c2{bottom:228.340000pt;}
.y4b{bottom:229.841333pt;}
.y81{bottom:231.113333pt;}
.yb8{bottom:231.129333pt;}
.y82{bottom:235.936000pt;}
.y1f6{bottom:236.072000pt;}
.y12d{bottom:238.808000pt;}
.y1b3{bottom:241.092000pt;}
.ye8{bottom:243.484000pt;}
.y181{bottom:244.982667pt;}
.y1c1{bottom:245.077333pt;}
.y4a{bottom:247.137333pt;}
.y80{bottom:247.850667pt;}
.yb7{bottom:249.062667pt;}
.y1f5{bottom:251.413333pt;}
.y12c{bottom:255.545333pt;}
.y1b2{bottom:257.829333pt;}
.ye7{bottom:260.221333pt;}
.y1c0{bottom:261.814667pt;}
.y180{bottom:262.078667pt;}
.y7f{bottom:264.588000pt;}
.y1f4{bottom:266.756000pt;}
.y150{bottom:267.743187pt;}
.y12b{bottom:272.282667pt;}
.y20{bottom:273.154667pt;}
.y1b1{bottom:274.566667pt;}
.y14f{bottom:276.303067pt;}
.ye6{bottom:276.958667pt;}
.y1bf{bottom:278.552000pt;}
.y7e{bottom:278.898667pt;}
.yb6{bottom:278.950667pt;}
.y17f{bottom:279.174667pt;}
.y49{bottom:280.372000pt;}
.y7d{bottom:281.325333pt;}
.y1f3{bottom:282.098667pt;}
.y1f{bottom:289.054667pt;}
.y1b0{bottom:291.304000pt;}
.y12a{bottom:293.005333pt;}
.ye4{bottom:293.696000pt;}
.y17d{bottom:293.938667pt;}
.yb5{bottom:295.688000pt;}
.y17c{bottom:296.270667pt;}
.y1f2{bottom:297.441333pt;}
.y48{bottom:297.666667pt;}
.y7c{bottom:298.062667pt;}
.ye5{bottom:298.517333pt;}
.y1be{bottom:299.274667pt;}
.y17e{bottom:300.609333pt;}
.y1e{bottom:304.954667pt;}
.y1af{bottom:308.041333pt;}
.ye3{bottom:310.433333pt;}
.yb4{bottom:312.425333pt;}
.y1f1{bottom:312.784000pt;}
.y17b{bottom:313.366667pt;}
.y7b{bottom:314.800000pt;}
.y47{bottom:314.962667pt;}
.y1d{bottom:320.856000pt;}
.y228{bottom:322.188000pt;}
.y129{bottom:324.036000pt;}
.y1ae{bottom:324.778667pt;}
.ye2{bottom:327.169333pt;}
.y1f0{bottom:328.126667pt;}
.yb3{bottom:329.162667pt;}
.y7a{bottom:331.537333pt;}
.y46{bottom:332.257333pt;}
.y14e{bottom:333.302667pt;}
.y227{bottom:337.530667pt;}
.y128{bottom:341.132000pt;}
.y1ad{bottom:341.516000pt;}
.y1ef{bottom:343.469333pt;}
.yb2{bottom:345.900000pt;}
.ye1{bottom:347.892000pt;}
.y79{bottom:348.274667pt;}
.y45{bottom:349.553333pt;}
.y226{bottom:352.873333pt;}
.y1c{bottom:354.688000pt;}
.y127{bottom:358.228000pt;}
.y1ac{bottom:358.253333pt;}
.y1ee{bottom:358.812000pt;}
.yb1{bottom:362.637333pt;}
.y78{bottom:365.012000pt;}
.y44{bottom:366.848000pt;}
.y225{bottom:368.216000pt;}
.y1b{bottom:370.589333pt;}
.y1ed{bottom:374.153333pt;}
.y1ab{bottom:374.990667pt;}
.y126{bottom:375.324000pt;}
.ye0{bottom:377.780000pt;}
.yb0{bottom:379.374667pt;}
.y77{bottom:381.749333pt;}
.y224{bottom:383.558667pt;}
.y43{bottom:384.142667pt;}
.y1a{bottom:386.489333pt;}
.y1ec{bottom:389.496000pt;}
.y125{bottom:389.805333pt;}
.y1aa{bottom:391.728000pt;}
.y124{bottom:392.420000pt;}
.ydf{bottom:394.517333pt;}
.yaf{bottom:396.112000pt;}
.y76{bottom:398.486667pt;}
.y223{bottom:398.901333pt;}
.y42{bottom:401.438667pt;}
.y1eb{bottom:404.838667pt;}
.y123{bottom:406.901333pt;}
.y1a9{bottom:408.465333pt;}
.y122{bottom:409.516000pt;}
.yde{bottom:411.254667pt;}
.yae{bottom:412.848000pt;}
.y222{bottom:414.244000pt;}
.y75{bottom:415.224000pt;}
.yf3{bottom:415.715187pt;}
.y19{bottom:418.330667pt;}
.y41{bottom:418.733333pt;}
.y1ea{bottom:420.181333pt;}
.yf2{bottom:424.275067pt;}
.y1a8{bottom:425.202667pt;}
.y121{bottom:426.612000pt;}
.ydd{bottom:427.992000pt;}
.yad{bottom:429.585333pt;}
.y74{bottom:431.961333pt;}
.y18{bottom:434.230667pt;}
.y1e9{bottom:435.524000pt;}
.y40{bottom:436.029333pt;}
.y1a7{bottom:441.940000pt;}
.y120{bottom:443.708000pt;}
.ydc{bottom:444.729333pt;}
.y221{bottom:444.928000pt;}
.yac{bottom:446.322667pt;}
.y73{bottom:448.698667pt;}
.y1e8{bottom:450.866667pt;}
.y3f{bottom:453.324000pt;}
.y11f{bottom:458.188000pt;}
.y1a6{bottom:458.677333pt;}
.y220{bottom:460.270667pt;}
.y11e{bottom:460.804000pt;}
.ydb{bottom:461.466667pt;}
.yab{bottom:463.060000pt;}
.y72{bottom:465.436000pt;}
.y17{bottom:466.070667pt;}
.y1e7{bottom:466.209333pt;}
.y3e{bottom:470.618667pt;}
.y11d{bottom:475.284000pt;}
.y1a5{bottom:475.414667pt;}
.y21f{bottom:475.613333pt;}
.y11c{bottom:477.898667pt;}
.yda{bottom:478.204000pt;}
.yaa{bottom:479.797333pt;}
.y1e6{bottom:481.552000pt;}
.y16{bottom:481.972000pt;}
.y71{bottom:482.173333pt;}
.y3d{bottom:487.914667pt;}
.y21e{bottom:490.956000pt;}
.y1a4{bottom:492.152000pt;}
.y11b{bottom:494.994667pt;}
.ya9{bottom:496.534667pt;}
.y1e5{bottom:496.894667pt;}
.y15{bottom:497.872000pt;}
.y70{bottom:498.910667pt;}
.yd9{bottom:498.926667pt;}
.y3c{bottom:505.209333pt;}
.y21d{bottom:506.298667pt;}
.y1a3{bottom:508.889333pt;}
.y14d{bottom:511.280000pt;}
.y11a{bottom:512.090667pt;}
.y1e4{bottom:512.236000pt;}
.ya8{bottom:513.272000pt;}
.y14{bottom:513.772000pt;}
.y6f{bottom:515.648000pt;}
.y21c{bottom:521.641333pt;}
.y3b{bottom:522.504000pt;}
.y1a2{bottom:525.626667pt;}
.y1e3{bottom:527.578667pt;}
.y14c{bottom:528.017333pt;}
.yd8{bottom:528.814667pt;}
.y119{bottom:529.186667pt;}
.y13{bottom:529.673333pt;}
.ya7{bottom:530.009333pt;}
.y6e{bottom:532.384000pt;}
.y21b{bottom:536.984000pt;}
.y3a{bottom:539.800000pt;}
.y1a1{bottom:542.364000pt;}
.y1e2{bottom:542.921333pt;}
.y118{bottom:543.668000pt;}
.y14b{bottom:544.754667pt;}
.yd7{bottom:545.552000pt;}
.y12{bottom:545.573333pt;}
.y117{bottom:546.282667pt;}
.ya6{bottom:546.746667pt;}
.y6d{bottom:549.121333pt;}
.y21a{bottom:552.325333pt;}
.y39{bottom:557.094667pt;}
.y1e1{bottom:558.264000pt;}
.y1a0{bottom:559.101333pt;}
.y11{bottom:561.473333pt;}
.y14a{bottom:561.492000pt;}
.yd6{bottom:562.289333pt;}
.y116{bottom:563.378667pt;}
.ya5{bottom:563.484000pt;}
.y6c{bottom:565.858667pt;}
.y219{bottom:567.668000pt;}
.y1e0{bottom:573.606667pt;}
.y19f{bottom:575.837333pt;}
.y10{bottom:577.374667pt;}
.y149{bottom:578.229333pt;}
.yd5{bottom:579.026667pt;}
.ya4{bottom:580.221333pt;}
.y115{bottom:580.474667pt;}
.y6b{bottom:582.596000pt;}
.y218{bottom:583.010667pt;}
.y1df{bottom:588.949333pt;}
.y38{bottom:589.742667pt;}
.y148{bottom:592.540000pt;}
.y19e{bottom:592.574667pt;}
.yf{bottom:593.274667pt;}
.y147{bottom:594.966667pt;}
.yd4{bottom:595.764000pt;}
.ya3{bottom:596.958667pt;}
.y114{bottom:597.570667pt;}
.y217{bottom:598.353333pt;}
.y6a{bottom:599.333333pt;}
.y37{bottom:604.088000pt;}
.y1de{bottom:604.292000pt;}
.ye{bottom:609.174667pt;}
.y146{bottom:609.277333pt;}
.y19d{bottom:609.312000pt;}
.y145{bottom:611.704000pt;}
.yd3{bottom:612.501333pt;}
.ya2{bottom:613.696000pt;}
.y69{bottom:616.070667pt;}
.yf1{bottom:617.508000pt;}
.y36{bottom:618.434667pt;}
.y1dd{bottom:619.634667pt;}
.yd{bottom:625.076000pt;}
.y19c{bottom:626.049333pt;}
.y144{bottom:628.441333pt;}
.y216{bottom:629.038667pt;}
.yd2{bottom:629.237333pt;}
.ya1{bottom:630.433333pt;}
.y35{bottom:632.781333pt;}
.y68{bottom:632.808000pt;}
.y1dc{bottom:638.961333pt;}
.y142{bottom:642.752000pt;}
.y19b{bottom:642.786667pt;}
.y215{bottom:644.381333pt;}
.ya{bottom:644.961301pt;}
.y141{bottom:645.178667pt;}
.ya0{bottom:647.170667pt;}
.y67{bottom:649.545333pt;}
.yd1{bottom:649.960000pt;}
.y143{bottom:650.000000pt;}
.y34{bottom:650.984000pt;}
.y13f{bottom:659.489333pt;}
.y19a{bottom:659.524000pt;}
.y214{bottom:659.724000pt;}
.y33{bottom:661.473333pt;}
.y13e{bottom:661.916000pt;}
.y9f{bottom:663.908000pt;}
.y66{bottom:666.282667pt;}
.y140{bottom:666.737333pt;}
.y1db{bottom:668.849333pt;}
.y213{bottom:675.066667pt;}
.y199{bottom:676.261333pt;}
.y13d{bottom:678.653333pt;}
.y32{bottom:679.677333pt;}
.yd0{bottom:679.848000pt;}
.y9e{bottom:680.645333pt;}
.y65{bottom:683.020000pt;}
.y212{bottom:690.408000pt;}
.y1da{bottom:692.441333pt;}
.y198{bottom:692.998667pt;}
.y31{bottom:694.024000pt;}
.y13c{bottom:695.390667pt;}
.ycf{bottom:696.585333pt;}
.y9d{bottom:697.382667pt;}
.y64{bottom:699.757333pt;}
.y30{bottom:704.512000pt;}
.y211{bottom:705.750667pt;}
.y197{bottom:709.736000pt;}
.y13b{bottom:712.128000pt;}
.yce{bottom:713.322667pt;}
.y9c{bottom:714.120000pt;}
.y1d9{bottom:716.033333pt;}
.y63{bottom:716.494667pt;}
.y210{bottom:721.093333pt;}
.y2f{bottom:722.716000pt;}
.y196{bottom:726.473333pt;}
.ycc{bottom:730.060000pt;}
.y9b{bottom:730.857333pt;}
.y1d8{bottom:731.654667pt;}
.y13a{bottom:732.849333pt;}
.y2e{bottom:733.205333pt;}
.y62{bottom:733.232000pt;}
.ycd{bottom:734.882667pt;}
.y20f{bottom:736.436000pt;}
.y195{bottom:743.210667pt;}
.ycb{bottom:746.797333pt;}
.y1d7{bottom:747.276000pt;}
.y9a{bottom:747.594667pt;}
.y61{bottom:749.969333pt;}
.y139{bottom:750.782667pt;}
.y2d{bottom:751.408000pt;}
.y20e{bottom:751.778667pt;}
.y2c{bottom:761.897333pt;}
.y1d6{bottom:762.897333pt;}
.y194{bottom:763.933333pt;}
.y99{bottom:764.332000pt;}
.y60{bottom:766.706667pt;}
.y20d{bottom:767.121333pt;}
.yca{bottom:767.520000pt;}
.y2b{bottom:780.101333pt;}
.y138{bottom:780.670667pt;}
.y98{bottom:781.069333pt;}
.y20c{bottom:782.464000pt;}
.y5f{bottom:783.444000pt;}
.y1d5{bottom:786.489333pt;}
.y2a{bottom:790.589333pt;}
.y193{bottom:793.821333pt;}
.yc9{bottom:797.408000pt;}
.y97{bottom:797.806667pt;}
.y5e{bottom:800.181333pt;}
.y1d4{bottom:802.110667pt;}
.y29{bottom:808.793333pt;}
.y192{bottom:810.558667pt;}
.y20b{bottom:813.149333pt;}
.yc8{bottom:814.145333pt;}
.y96{bottom:814.544000pt;}
.y5d{bottom:816.918667pt;}
.y1d3{bottom:817.732000pt;}
.y191{bottom:827.296000pt;}
.yc6{bottom:828.456000pt;}
.y20a{bottom:828.490667pt;}
.yc5{bottom:830.882667pt;}
.y95{bottom:831.281333pt;}
.y1d2{bottom:833.353333pt;}
.y5c{bottom:833.656000pt;}
.yc7{bottom:835.704000pt;}
.y9{bottom:842.869333pt;}
.y209{bottom:843.833333pt;}
.y190{bottom:844.033333pt;}
.yc4{bottom:847.620000pt;}
.y94{bottom:848.018667pt;}
.y1d1{bottom:848.974667pt;}
.y5b{bottom:850.393333pt;}
.y208{bottom:859.176000pt;}
.y8{bottom:859.606667pt;}
.y18f{bottom:860.770667pt;}
.yc3{bottom:864.357333pt;}
.y1d0{bottom:864.596000pt;}
.y93{bottom:864.754667pt;}
.y5a{bottom:867.130667pt;}
.y137{bottom:868.341333pt;}
.y207{bottom:874.518667pt;}
.y18e{bottom:877.508000pt;}
.y1bd{bottom:879.066667pt;}
.y1cf{bottom:880.217333pt;}
.yc2{bottom:881.094667pt;}
.y92{bottom:881.492000pt;}
.y59{bottom:883.868000pt;}
.y206{bottom:889.861333pt;}
.y18d{bottom:894.245333pt;}
.y1ce{bottom:895.838667pt;}
.y91{bottom:898.229333pt;}
.y7{bottom:900.404000pt;}
.y58{bottom:900.605333pt;}
.yc1{bottom:901.816000pt;}
.y205{bottom:905.204000pt;}
.y18c{bottom:910.982667pt;}
.y90{bottom:914.966667pt;}
.y57{bottom:917.342667pt;}
.y1cd{bottom:919.430667pt;}
.y204{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y18b{bottom:927.720000pt;}
.y8f{bottom:931.704000pt;}
.y56{bottom:934.080000pt;}
.y1cc{bottom:935.052000pt;}
.y203{bottom:935.889333pt;}
.y18a{bottom:944.456000pt;}
.y8e{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y1cb{bottom:950.673333pt;}
.y55{bottom:950.817333pt;}
.y202{bottom:951.230667pt;}
.y189{bottom:961.193333pt;}
.y8d{bottom:965.178667pt;}
.y1ca{bottom:966.294667pt;}
.y201{bottom:966.573333pt;}
.y54{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y8c{bottom:981.916000pt;}
.y53{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y52{bottom:1043.020000pt;}
.h23{height:21.490625pt;}
.h20{height:22.284493pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.h15{height:24.760382pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h16{height:28.023859pt;}
.h14{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.he{height:30.945242pt;}
.h19{height:31.067969pt;}
.h13{height:31.157778pt;}
.h21{height:33.186336pt;}
.hf{height:34.430976pt;}
.h10{height:34.813542pt;}
.h3{height:35.024664pt;}
.h1b{height:35.039062pt;}
.h1d{height:35.039596pt;}
.h1c{height:35.040662pt;}
.h1f{height:35.052646pt;}
.h17{height:36.873667pt;}
.h11{height:38.256384pt;}
.h1e{height:38.462187pt;}
.h12{height:38.681455pt;}
.h5{height:38.947124pt;}
.h1a{height:39.010156pt;}
.h2{height:45.272024pt;}
.h4{height:45.557261pt;}
.h7{height:48.365611pt;}
.h6{height:68.861952pt;}
.h22{height:156.962667pt;}
.h18{height:377.693333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:185.925531pt;}
.w5{width:609.633467pt;}
.w4{width:618.744667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x52{left:-37.839333pt;}
.x92{left:-31.415867pt;}
.x53{left:-9.519333pt;}
.x95{left:-3.095867pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.604853pt;}
.x74{left:75.414667pt;}
.x56{left:76.346667pt;}
.x60{left:79.985333pt;}
.x51{left:87.479333pt;}
.x61{left:88.616000pt;}
.x91{left:92.034533pt;}
.x6e{left:121.026667pt;}
.x75{left:123.174667pt;}
.x6d{left:125.170667pt;}
.x57{left:127.204000pt;}
.x9a{left:128.721333pt;}
.x54{left:136.000667pt;}
.x70{left:141.444000pt;}
.x94{left:142.423165pt;}
.x6f{left:154.913333pt;}
.x55{left:164.321195pt;}
.x93{left:170.743071pt;}
.x71{left:178.988000pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x5{left:241.085333pt;}
.xb5{left:244.624000pt;}
.x10{left:247.265333pt;}
.x3b{left:250.438667pt;}
.x9{left:251.365333pt;}
.x2c{left:252.486667pt;}
.x11{left:253.906667pt;}
.x3c{left:258.642667pt;}
.x3a{left:259.804000pt;}
.xad{left:262.110667pt;}
.x2d{left:265.769333pt;}
.x5c{left:266.762667pt;}
.x79{left:271.829333pt;}
.x7{left:275.053333pt;}
.xb8{left:276.160000pt;}
.xae{left:278.741333pt;}
.x36{left:280.412000pt;}
.xa5{left:283.100000pt;}
.x8{left:285.497333pt;}
.xb6{left:288.980000pt;}
.xaf{left:292.025333pt;}
.x37{left:293.696000pt;}
.xa6{left:296.384000pt;}
.xab{left:312.724000pt;}
.x34{left:314.342667pt;}
.x76{left:315.313333pt;}
.x35{left:320.985333pt;}
.x96{left:322.104133pt;}
.x77{left:323.517333pt;}
.x2b{left:325.310667pt;}
.x28{left:330.226667pt;}
.xba{left:332.014667pt;}
.x4c{left:334.249333pt;}
.x72{left:335.892000pt;}
.x29{left:339.410667pt;}
.x3d{left:341.778667pt;}
.x2a{left:343.172000pt;}
.x97{left:346.264133pt;}
.x20{left:348.356000pt;}
.x98{left:350.264133pt;}
.xb7{left:351.480000pt;}
.x3e{left:352.537333pt;}
.x99{left:357.544133pt;}
.xa7{left:359.322667pt;}
.x21{left:361.638667pt;}
.x12{left:363.500000pt;}
.x8f{left:366.028000pt;}
.x13{left:370.142667pt;}
.xa8{left:372.606667pt;}
.x3f{left:373.529333pt;}
.x90{left:375.064000pt;}
.x14{left:376.917333pt;}
.x40{left:377.990667pt;}
.x7a{left:386.441333pt;}
.x15{left:390.200000pt;}
.x41{left:395.229333pt;}
.x7b{left:400.728000pt;}
.x58{left:402.646667pt;}
.x89{left:406.814667pt;}
.x59{left:411.948000pt;}
.x9c{left:415.878667pt;}
.x8a{left:417.464000pt;}
.x30{left:418.388000pt;}
.xa1{left:424.029333pt;}
.x9d{left:425.841333pt;}
.x8b{left:428.224000pt;}
.x31{left:431.672000pt;}
.xe{left:432.625333pt;}
.x24{left:433.740000pt;}
.x32{left:435.058667pt;}
.x80{left:437.028000pt;}
.xb9{left:439.422667pt;}
.x25{left:442.760000pt;}
.x84{left:443.960000pt;}
.x9e{left:445.388000pt;}
.x8c{left:446.877333pt;}
.x33{left:448.342667pt;}
.x81{left:450.312000pt;}
.x82{left:453.586667pt;}
.x85{left:454.718667pt;}
.x78{left:456.798667pt;}
.x5d{left:458.800000pt;}
.x62{left:460.708000pt;}
.x9f{left:462.526667pt;}
.x86{left:465.369333pt;}
.x83{left:466.869333pt;}
.x63{left:468.092000pt;}
.x9b{left:471.560000pt;}
.xa4{left:474.852000pt;}
.x87{left:476.128000pt;}
.xf{left:478.762667pt;}
.x67{left:481.298667pt;}
.xa{left:486.908000pt;}
.x69{left:488.742667pt;}
.x64{left:490.098667pt;}
.xb{left:493.550667pt;}
.x88{left:494.781333pt;}
.xc{left:500.058667pt;}
.x65{left:502.857333pt;}
.xb0{left:504.200000pt;}
.x73{left:505.805333pt;}
.xd{left:506.701333pt;}
.x7c{left:507.746667pt;}
.x66{left:510.162667pt;}
.xa9{left:511.177333pt;}
.xb1{left:513.238667pt;}
.x68{left:519.028000pt;}
.xaa{left:524.461333pt;}
.x6a{left:526.470667pt;}
.xc2{left:537.638667pt;}
.xa3{left:539.222667pt;}
.x2e{left:546.368000pt;}
.x2f{left:559.652000pt;}
.xc3{left:561.549333pt;}
.x26{left:577.026667pt;}
.xa0{left:578.384000pt;}
.x22{left:580.702667pt;}
.xc1{left:581.962667pt;}
.x27{left:587.097333pt;}
.x23{left:593.986667pt;}
.x7e{left:599.293333pt;}
.x7f{left:605.934667pt;}
.x5e{left:608.858667pt;}
.xb3{left:611.184000pt;}
.x42{left:613.061333pt;}
.xbe{left:618.364000pt;}
.xc0{left:622.546667pt;}
.x43{left:623.821333pt;}
.x6b{left:624.720000pt;}
.x38{left:628.148000pt;}
.x6c{left:631.366667pt;}
.x47{left:632.300000pt;}
.x44{left:634.053333pt;}
.x5f{left:634.968000pt;}
.x48{left:638.350667pt;}
.xb4{left:641.137333pt;}
.x1a{left:642.574667pt;}
.x16{left:644.854667pt;}
.x1c{left:646.498667pt;}
.x45{left:649.273333pt;}
.xbd{left:653.821333pt;}
.x1b{left:655.858667pt;}
.x17{left:658.138667pt;}
.x1d{left:659.781333pt;}
.xbf{left:661.998667pt;}
.x18{left:664.753333pt;}
.x46{left:666.512000pt;}
.x39{left:673.628000pt;}
.x19{left:678.037333pt;}
.x5a{left:681.112000pt;}
.xbb{left:683.676000pt;}
.xb2{left:685.534667pt;}
.x4a{left:687.369333pt;}
.x5b{left:689.086667pt;}
.xac{left:690.269333pt;}
.x4b{left:701.569333pt;}
.x8d{left:702.912000pt;}
.x4d{left:704.568000pt;}
.xbc{left:707.586667pt;}
.x8e{left:711.957333pt;}
.x4e{left:718.804000pt;}
.xa2{left:726.001333pt;}
.x1e{left:726.942667pt;}
.x4f{left:728.776000pt;}
.x50{left:734.826667pt;}
.x1f{left:740.226667pt;}
.x7d{left:741.189333pt;}
.x49{left:742.686667pt;}
}




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