
    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_6c7419373027a2b9702360c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0a60d3d1053e068d12d9ffe5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4d923471afeddf2c3bafde9c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7b5e8dbc7a71683757cc8bf3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_82dc817d48782cbcd6bdd281.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.751800;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_da7ec8f1b9d4b179fcadc7ac.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0f75d2e8d92706700ef0bfd4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bced8d5bdb8f1e3760edbc20.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_591717a580a4c9c8f5fff91d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_6c4a19c9c6f91cf4a90b5e2e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888000;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_a40396ba3dbeafb9d592029e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e93daa7932c2448f96b00ac7.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_20ffdd259c9e0fc94d27284a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_60eb31986d525cc8b49a78db.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_7ff0f085b350154ae1c08776.woff2')format("woff");}.fff{font-family:fff;line-height:0.875977;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;}
.m9{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);}
.m21{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);}
.m1f{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);}
.m14{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);}
.m2{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);}
.m3{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);}
.m28{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);}
.m2b{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);}
.m12{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);}
.m11{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);}
.m23{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);}
.m25{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);}
.m1a{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);}
.m29{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);}
.m19{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);}
.m1c{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);}
.m4{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);}
.m1e{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);}
.m7{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);}
.m15{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);}
.m17{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m22{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m10{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);}
.m26{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);}
.m5{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);}
.m8{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);}
.m2c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2a{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);}
.ma{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);}
.m6{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);}
.mf{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);}
.m20{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);}
.mb{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.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m24{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);}
.m1{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);}
.md{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);}
.v4{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:32.874000px;}
.v2{vertical-align:65.754000px;}
.ls23{letter-spacing:-0.202003px;}
.ls24{letter-spacing:-0.126252px;}
.ls29{letter-spacing:-0.122044px;}
.ls4e{letter-spacing:-0.112545px;}
.ls2b{letter-spacing:-0.105210px;}
.ls1f{letter-spacing:-0.096793px;}
.ls50{letter-spacing:-0.093787px;}
.ls4a{letter-spacing:-0.089098px;}
.ls4f{letter-spacing:-0.084408px;}
.ls2c{letter-spacing:-0.079960px;}
.ls4b{letter-spacing:-0.079719px;}
.ls44{letter-spacing:-0.075030px;}
.ls43{letter-spacing:-0.070958px;}
.ls49{letter-spacing:-0.070340px;}
.ls47{letter-spacing:-0.065651px;}
.ls21{letter-spacing:-0.063126px;}
.ls1b{letter-spacing:-0.060329px;}
.ls2a{letter-spacing:-0.058918px;}
.ls27{letter-spacing:-0.046292px;}
.ls51{letter-spacing:-0.033696px;}
.ls1e{letter-spacing:-0.029459px;}
.ls45{letter-spacing:-0.028136px;}
.ls28{letter-spacing:-0.025250px;}
.ls4d{letter-spacing:-0.023447px;}
.ls25{letter-spacing:-0.021042px;}
.ls46{letter-spacing:-0.018757px;}
.ls26{letter-spacing:-0.016834px;}
.ls4c{letter-spacing:-0.014068px;}
.ls20{letter-spacing:-0.012625px;}
.ls1c{letter-spacing:-0.008417px;}
.ls48{letter-spacing:-0.004689px;}
.ls52{letter-spacing:-0.004212px;}
.ls22{letter-spacing:-0.004208px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000319px;}
.ls19{letter-spacing:0.001133px;}
.ls2f{letter-spacing:0.002728px;}
.ls69{letter-spacing:0.002841px;}
.ls6{letter-spacing:0.004208px;}
.ls3b{letter-spacing:0.004212px;}
.ls14{letter-spacing:0.007560px;}
.lsb{letter-spacing:0.008417px;}
.ls41{letter-spacing:0.008424px;}
.ls12{letter-spacing:0.011340px;}
.ls9{letter-spacing:0.012625px;}
.ls7{letter-spacing:0.016834px;}
.ls39{letter-spacing:0.018757px;}
.ls16{letter-spacing:0.018900px;}
.ls11{letter-spacing:0.021042px;}
.ls15{letter-spacing:0.022680px;}
.ls3a{letter-spacing:0.023447px;}
.ls3c{letter-spacing:0.025272px;}
.ls17{letter-spacing:0.026460px;}
.ls10{letter-spacing:0.029459px;}
.ls35{letter-spacing:0.032826px;}
.lse{letter-spacing:0.033667px;}
.ls40{letter-spacing:0.033696px;}
.ls36{letter-spacing:0.037515px;}
.lsa{letter-spacing:0.037876px;}
.ls3f{letter-spacing:0.037908px;}
.ls18{letter-spacing:0.041580px;}
.ls3d{letter-spacing:0.042120px;}
.lsf{letter-spacing:0.046292px;}
.ls37{letter-spacing:0.046894px;}
.ls13{letter-spacing:0.049140px;}
.lsc{letter-spacing:0.050501px;}
.ls38{letter-spacing:0.051583px;}
.ls3e{letter-spacing:0.054756px;}
.ls32{letter-spacing:0.056020px;}
.ls3{letter-spacing:0.056977px;}
.ls8{letter-spacing:0.058918px;}
.ls1d{letter-spacing:0.067334px;}
.ls42{letter-spacing:0.088452px;}
.ls5{letter-spacing:0.127361px;}
.ls4{letter-spacing:0.134064px;}
.ls34{letter-spacing:0.134447px;}
.lsd{letter-spacing:0.134669px;}
.ls33{letter-spacing:0.141916px;}
.ls1{letter-spacing:11.954850px;}
.ls62{letter-spacing:12.546318px;}
.ls5a{letter-spacing:13.259311px;}
.ls65{letter-spacing:13.279835px;}
.ls63{letter-spacing:13.297675px;}
.ls5d{letter-spacing:13.315979px;}
.ls61{letter-spacing:13.419187px;}
.ls68{letter-spacing:13.446318px;}
.ls2e{letter-spacing:13.446382px;}
.ls54{letter-spacing:13.448400px;}
.ls2d{letter-spacing:13.452382px;}
.ls58{letter-spacing:13.454400px;}
.ls6a{letter-spacing:13.505083px;}
.ls53{letter-spacing:13.505265px;}
.ls60{letter-spacing:13.520158px;}
.ls5c{letter-spacing:13.541355px;}
.ls67{letter-spacing:14.150400px;}
.ls66{letter-spacing:14.903341px;}
.ls31{letter-spacing:14.941200px;}
.ls56{letter-spacing:15.144518px;}
.ls5e{letter-spacing:15.362165px;}
.ls57{letter-spacing:15.944518px;}
.ls5f{letter-spacing:16.326871px;}
.ls5b{letter-spacing:16.827787px;}
.ls59{letter-spacing:17.515106px;}
.ls55{letter-spacing:18.626871px;}
.ls64{letter-spacing:21.126871px;}
.ls0{letter-spacing:26.897510px;}
.ls30{letter-spacing:268.857178px;}
.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;}
}
.ws21{word-spacing:-14.943900px;}
.ws93{word-spacing:-13.449600px;}
.ws1e{word-spacing:-11.955150px;}
.ws113{word-spacing:-10.567908px;}
.ws112{word-spacing:-10.530000px;}
.ws28{word-spacing:-10.529417px;}
.ws111{word-spacing:-9.478516px;}
.ws27{word-spacing:-8.513064px;}
.ws16{word-spacing:-2.988780px;}
.wsd0{word-spacing:-2.749678px;}
.ws13f{word-spacing:-2.699892px;}
.ws11{word-spacing:-2.630126px;}
.wse8{word-spacing:-2.570351px;}
.ws129{word-spacing:-2.490050px;}
.ws140{word-spacing:-2.392416px;}
.ws133{word-spacing:-2.391574px;}
.ws132{word-spacing:-2.344680px;}
.ws14{word-spacing:-2.211697px;}
.ws128{word-spacing:-2.171174px;}
.wsc5{word-spacing:-2.151922px;}
.ws20{word-spacing:-2.032370px;}
.ws162{word-spacing:-1.990541px;}
.ws54{word-spacing:-1.961114px;}
.ws163{word-spacing:-1.936742px;}
.ws15{word-spacing:-1.733492px;}
.ws14f{word-spacing:-1.667750px;}
.ws106{word-spacing:-1.554166px;}
.ws100{word-spacing:-1.494390px;}
.ws3b{word-spacing:-1.460315px;}
.ws3a{word-spacing:-1.380355px;}
.ws180{word-spacing:-1.291162px;}
.wsf5{word-spacing:-1.255288px;}
.ws3f{word-spacing:-1.233061px;}
.ws40{word-spacing:-1.203602px;}
.wse0{word-spacing:-1.195512px;}
.ws3e{word-spacing:-1.190977px;}
.ws177{word-spacing:-1.183565px;}
.wse1{word-spacing:-1.135736px;}
.ws119{word-spacing:-1.102000px;}
.ws185{word-spacing:-1.075968px;}
.ws11a{word-spacing:-0.980076px;}
.ws52{word-spacing:-0.951098px;}
.ws167{word-spacing:-0.914573px;}
.ws30{word-spacing:-0.896634px;}
.ws13d{word-spacing:-0.758160px;}
.ws13c{word-spacing:-0.745524px;}
.ws44{word-spacing:-0.740678px;}
.ws45{word-spacing:-0.736470px;}
.ws13b{word-spacing:-0.728676px;}
.ws2e{word-spacing:-0.717307px;}
.ws3d{word-spacing:-0.702803px;}
.ws46{word-spacing:-0.690178px;}
.ws101{word-spacing:-0.657532px;}
.ws164{word-spacing:-0.591782px;}
.ws47{word-spacing:-0.563926px;}
.ws5f{word-spacing:-0.475549px;}
.ws5e{word-spacing:-0.450299px;}
.ws2c{word-spacing:-0.358654px;}
.ws175{word-spacing:-0.322790px;}
.ws12{word-spacing:-0.298878px;}
.ws15b{word-spacing:-0.268992px;}
.ws11c{word-spacing:-0.262604px;}
.ws10{word-spacing:-0.239102px;}
.ws158{word-spacing:-0.215194px;}
.ws6e{word-spacing:-0.214628px;}
.ws116{word-spacing:-0.205405px;}
.ws31{word-spacing:-0.187690px;}
.ws4a{word-spacing:-0.185170px;}
.ws2{word-spacing:-0.179327px;}
.ws115{word-spacing:-0.161395px;}
.ws130{word-spacing:-0.145370px;}
.ws131{word-spacing:-0.140681px;}
.wsd2{word-spacing:-0.133802px;}
.ws8{word-spacing:-0.119551px;}
.ws157{word-spacing:-0.107597px;}
.ws70{word-spacing:-0.079960px;}
.ws22{word-spacing:-0.059776px;}
.ws75{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.047821px;}
.ws1f{word-spacing:-0.009117px;}
.ws9f{word-spacing:-0.008515px;}
.ws89{word-spacing:-0.008198px;}
.ws76{word-spacing:-0.007930px;}
.ws78{word-spacing:-0.007056px;}
.wsa4{word-spacing:-0.006653px;}
.wsa3{word-spacing:-0.006422px;}
.ws9d{word-spacing:-0.006067px;}
.ws98{word-spacing:-0.005587px;}
.ws84{word-spacing:-0.004992px;}
.wsb3{word-spacing:-0.004330px;}
.wsa8{word-spacing:-0.004234px;}
.ws87{word-spacing:-0.003754px;}
.wsb7{word-spacing:-0.003600px;}
.wsa9{word-spacing:-0.003322px;}
.ws1d{word-spacing:-0.003117px;}
.wsb1{word-spacing:-0.002707px;}
.ws7b{word-spacing:-0.002554px;}
.wsb4{word-spacing:-0.002467px;}
.ws90{word-spacing:-0.002400px;}
.ws8a{word-spacing:-0.002390px;}
.ws17b{word-spacing:-0.002170px;}
.wsa6{word-spacing:-0.002102px;}
.wsbe{word-spacing:-0.002029px;}
.wsb{word-spacing:-0.001991px;}
.ws7e{word-spacing:-0.001354px;}
.wsb8{word-spacing:-0.001267px;}
.wsa1{word-spacing:-0.001200px;}
.ws7d{word-spacing:-0.001114px;}
.wsb2{word-spacing:-0.001094px;}
.ws92{word-spacing:-0.001056px;}
.wsba{word-spacing:-0.001037px;}
.ws8c{word-spacing:-0.000710px;}
.ws10b{word-spacing:-0.000519px;}
.wsa{word-spacing:-0.000456px;}
.ws8d{word-spacing:-0.000106px;}
.wsa2{word-spacing:-0.000067px;}
.ws0{word-spacing:0.000000px;}
.wsac{word-spacing:0.000365px;}
.ws8b{word-spacing:0.000413px;}
.ws79{word-spacing:0.000528px;}
.ws99{word-spacing:0.001123px;}
.ws91{word-spacing:0.001133px;}
.wsab{word-spacing:0.001200px;}
.ws10a{word-spacing:0.001711px;}
.ws86{word-spacing:0.002486px;}
.ws85{word-spacing:0.003562px;}
.wsb0{word-spacing:0.003850px;}
.ws80{word-spacing:0.004070px;}
.ws9c{word-spacing:0.004800px;}
.wsa0{word-spacing:0.005654px;}
.ws95{word-spacing:0.007411px;}
.ws3c{word-spacing:0.008417px;}
.wsae{word-spacing:0.014918px;}
.ws41{word-spacing:0.016834px;}
.ws55{word-spacing:0.037876px;}
.ws6a{word-spacing:0.046292px;}
.ws114{word-spacing:0.053798px;}
.ws5{word-spacing:0.059776px;}
.ws42{word-spacing:0.075751px;}
.ws4b{word-spacing:0.084168px;}
.ws5b{word-spacing:0.086940px;}
.ws4c{word-spacing:0.096793px;}
.ws11b{word-spacing:0.098477px;}
.ws5a{word-spacing:0.102060px;}
.ws7c{word-spacing:0.107597px;}
.wsc9{word-spacing:0.119551px;}
.ws77{word-spacing:0.161395px;}
.ws74{word-spacing:0.164128px;}
.ws13e{word-spacing:0.172692px;}
.ws4{word-spacing:0.179327px;}
.ws6b{word-spacing:0.189378px;}
.wsa5{word-spacing:0.215194px;}
.wsd1{word-spacing:0.239102px;}
.wsa7{word-spacing:0.268992px;}
.ws3{word-spacing:0.298878px;}
.ws151{word-spacing:0.322790px;}
.ws25{word-spacing:0.358654px;}
.ws16f{word-spacing:0.376589px;}
.wsc8{word-spacing:0.478205px;}
.ws183{word-spacing:0.484186px;}
.wsf6{word-spacing:0.537980px;}
.ws12a{word-spacing:0.586170px;}
.ws24{word-spacing:0.597756px;}
.ws117{word-spacing:0.600238px;}
.wsf7{word-spacing:0.657532px;}
.ws168{word-spacing:0.699379px;}
.ws34{word-spacing:0.757512px;}
.wsc7{word-spacing:0.777083px;}
.ws33{word-spacing:0.820638px;}
.ws32{word-spacing:0.833263px;}
.wsc6{word-spacing:0.836858px;}
.ws1{word-spacing:0.896634px;}
.wse2{word-spacing:0.956410px;}
.ws19{word-spacing:1.016185px;}
.ws36{word-spacing:1.039475px;}
.wsec{word-spacing:1.075961px;}
.ws181{word-spacing:1.075968px;}
.ws67{word-spacing:1.081559px;}
.ws35{word-spacing:1.106809px;}
.ws17f{word-spacing:1.129766px;}
.ws126{word-spacing:1.158272px;}
.ws148{word-spacing:1.237363px;}
.ws125{word-spacing:1.270817px;}
.ws124{word-spacing:1.280195px;}
.ws150{word-spacing:1.291162px;}
.ws104{word-spacing:1.315063px;}
.ws137{word-spacing:1.449012px;}
.ws16b{word-spacing:1.506355px;}
.ws139{word-spacing:1.520532px;}
.ws60{word-spacing:1.544483px;}
.ws51{word-spacing:1.548691px;}
.ws1a{word-spacing:1.554166px;}
.wsea{word-spacing:1.613941px;}
.ws182{word-spacing:1.613952px;}
.ws187{word-spacing:1.667750px;}
.wsf4{word-spacing:1.733492px;}
.ws13a{word-spacing:1.781676px;}
.wsd{word-spacing:1.793268px;}
.ws138{word-spacing:1.819584px;}
.ws147{word-spacing:1.829146px;}
.wse{word-spacing:1.853044px;}
.ws2a{word-spacing:1.882944px;}
.ws154{word-spacing:1.936742px;}
.ws2f{word-spacing:1.972595px;}
.ws155{word-spacing:1.990541px;}
.ws127{word-spacing:1.997667px;}
.wsd6{word-spacing:2.032370px;}
.ws73{word-spacing:2.062116px;}
.wse7{word-spacing:2.092146px;}
.ws39{word-spacing:2.095783px;}
.wscb{word-spacing:2.151922px;}
.ws146{word-spacing:2.151936px;}
.ws38{word-spacing:2.179951px;}
.ws29{word-spacing:2.205734px;}
.wsd8{word-spacing:2.211697px;}
.ws172{word-spacing:2.259533px;}
.ws118{word-spacing:2.279029px;}
.ws16e{word-spacing:2.313331px;}
.wse4{word-spacing:2.331248px;}
.wsf{word-spacing:2.391024px;}
.ws37{word-spacing:2.432455px;}
.ws156{word-spacing:2.474726px;}
.wsca{word-spacing:2.510575px;}
.ws11f{word-spacing:2.579148px;}
.ws15c{word-spacing:2.582323px;}
.wsdf{word-spacing:2.630126px;}
.ws170{word-spacing:2.743718px;}
.ws26{word-spacing:2.749678px;}
.ws173{word-spacing:2.851315px;}
.wsc4{word-spacing:2.869229px;}
.wscd{word-spacing:2.929004px;}
.wsf8{word-spacing:2.988780px;}
.ws161{word-spacing:3.037418px;}
.ws6{word-spacing:3.048556px;}
.ws179{word-spacing:3.066509px;}
.wse3{word-spacing:3.108331px;}
.ws17d{word-spacing:3.174106px;}
.ws15a{word-spacing:3.224880px;}
.wsad{word-spacing:3.225686px;}
.ws176{word-spacing:3.227232px;}
.ws17e{word-spacing:3.227414px;}
.wsd7{word-spacing:3.227882px;}
.ws149{word-spacing:3.227904px;}
.ws159{word-spacing:3.227933px;}
.ws174{word-spacing:3.228787px;}
.ws166{word-spacing:3.281702px;}
.ws7{word-spacing:3.287658px;}
.ws68{word-spacing:3.316219px;}
.ws48{word-spacing:3.324636px;}
.ws186{word-spacing:3.335501px;}
.ws69{word-spacing:3.337261px;}
.wsd4{word-spacing:3.347434px;}
.ws49{word-spacing:3.366720px;}
.ws184{word-spacing:3.389299px;}
.ws6f{word-spacing:3.404596px;}
.wse9{word-spacing:3.407209px;}
.wscf{word-spacing:3.466985px;}
.wsce{word-spacing:3.526760px;}
.ws9{word-spacing:3.583475px;}
.wsd3{word-spacing:3.586536px;}
.ws171{word-spacing:3.604493px;}
.ws23{word-spacing:3.646312px;}
.ws105{word-spacing:3.706087px;}
.ws65{word-spacing:3.808602px;}
.ws108{word-spacing:3.825638px;}
.ws64{word-spacing:3.833852px;}
.ws66{word-spacing:3.838061px;}
.ws6d{word-spacing:3.842269px;}
.ws6c{word-spacing:3.871728px;}
.wsc0{word-spacing:3.885414px;}
.wsc1{word-spacing:3.945190px;}
.wse6{word-spacing:4.004965px;}
.wsfe{word-spacing:4.064741px;}
.ws14c{word-spacing:4.088678px;}
.ws18{word-spacing:4.124516px;}
.wsd5{word-spacing:4.244068px;}
.ws10f{word-spacing:4.303843px;}
.wsf2{word-spacing:4.423394px;}
.ws152{word-spacing:4.519066px;}
.ws13{word-spacing:4.542946px;}
.wsd9{word-spacing:4.602721px;}
.wse5{word-spacing:4.722272px;}
.ws10c{word-spacing:4.782048px;}
.ws134{word-spacing:4.825351px;}
.wsdc{word-spacing:4.901599px;}
.ws10e{word-spacing:4.947322px;}
.ws10d{word-spacing:4.956009px;}
.wsf3{word-spacing:4.961375px;}
.ws14b{word-spacing:5.057050px;}
.ws110{word-spacing:5.080926px;}
.ws58{word-spacing:5.121900px;}
.ws59{word-spacing:5.148360px;}
.ws57{word-spacing:5.155920px;}
.ws56{word-spacing:5.159700px;}
.ws14e{word-spacing:5.164646px;}
.wscc{word-spacing:5.320028px;}
.wsee{word-spacing:5.439580px;}
.ws14a{word-spacing:5.756429px;}
.ws1b{word-spacing:5.798233px;}
.ws16a{word-spacing:6.025421px;}
.wsff{word-spacing:6.037336px;}
.ws169{word-spacing:6.079219px;}
.wsda{word-spacing:6.455765px;}
.ws17{word-spacing:6.515540px;}
.ws109{word-spacing:6.575316px;}
.ws4d{word-spacing:6.624022px;}
.ws4e{word-spacing:6.636647px;}
.wsf0{word-spacing:6.754643px;}
.ws2d{word-spacing:6.814418px;}
.ws71{word-spacing:6.838650px;}
.wsde{word-spacing:6.993745px;}
.wsdd{word-spacing:7.053521px;}
.ws72{word-spacing:7.204781px;}
.wsef{word-spacing:7.232848px;}
.ws160{word-spacing:7.262784px;}
.wsc3{word-spacing:7.471950px;}
.wsf9{word-spacing:7.531726px;}
.ws12e{word-spacing:7.606142px;}
.wsc2{word-spacing:7.651277px;}
.ws12d{word-spacing:7.676482px;}
.ws17c{word-spacing:7.693171px;}
.ws1c{word-spacing:7.711052px;}
.ws61{word-spacing:7.836041px;}
.ws62{word-spacing:7.894958px;}
.ws16c{word-spacing:8.123558px;}
.ws102{word-spacing:8.129482px;}
.ws145{word-spacing:8.177357px;}
.ws143{word-spacing:8.276580px;}
.ws141{word-spacing:8.280792px;}
.ws142{word-spacing:8.289216px;}
.wsfa{word-spacing:8.308808px;}
.wsfb{word-spacing:8.607686px;}
.wseb{word-spacing:8.906564px;}
.wsdb{word-spacing:9.085891px;}
.ws63{word-spacing:9.153270px;}
.ws11e{word-spacing:9.284933px;}
.wsed{word-spacing:9.504320px;}
.ws11d{word-spacing:9.636635px;}
.ws136{word-spacing:9.861724px;}
.ws123{word-spacing:9.866413px;}
.ws122{word-spacing:9.969579px;}
.ws135{word-spacing:9.983647px;}
.ws15d{word-spacing:10.006502px;}
.ws5d{word-spacing:10.121202px;}
.ws5c{word-spacing:10.175911px;}
.wsfc{word-spacing:10.520506px;}
.ws2b{word-spacing:10.759608px;}
.ws17a{word-spacing:10.759680px;}
.ws16d{word-spacing:10.921075px;}
.ws43{word-spacing:11.379514px;}
.ws178{word-spacing:11.997043px;}
.ws103{word-spacing:12.014896px;}
.wsfd{word-spacing:12.134447px;}
.wsf1{word-spacing:12.552876px;}
.ws12b{word-spacing:12.984838px;}
.ws12c{word-spacing:12.998906px;}
.ws120{word-spacing:13.050489px;}
.ws107{word-spacing:13.210408px;}
.ws121{word-spacing:13.270889px;}
.ws15e{word-spacing:13.288205px;}
.ws153{word-spacing:13.718592px;}
.ws53{word-spacing:14.906153px;}
.ws12f{word-spacing:15.479577px;}
.ws14d{word-spacing:15.978125px;}
.ws144{word-spacing:16.031923px;}
.ws4f{word-spacing:16.501136px;}
.ws50{word-spacing:16.551637px;}
.ws165{word-spacing:18.883238px;}
.wsc{word-spacing:22.116972px;}
.ws15f{word-spacing:34.484774px;}
.wsb9{word-spacing:69.166982px;}
.wsb5{word-spacing:89.338982px;}
.wsbd{word-spacing:96.064982px;}
.ws83{word-spacing:124.636982px;}
.ws88{word-spacing:131.362982px;}
.ws96{word-spacing:138.088982px;}
.ws82{word-spacing:144.777677px;}
.ws9e{word-spacing:147.412982px;}
.ws97{word-spacing:160.864982px;}
.wsbb{word-spacing:166.344653px;}
.wsaf{word-spacing:180.339850px;}
.ws94{word-spacing:187.659677px;}
.wsb6{word-spacing:209.577677px;}
.ws9a{word-spacing:222.464688px;}
.ws8f{word-spacing:239.241485px;}
.ws81{word-spacing:245.139850px;}
.ws7f{word-spacing:252.375677px;}
.wsbc{word-spacing:252.453677px;}
.ws9b{word-spacing:341.449651px;}
.wsaa{word-spacing:354.531456px;}
.ws7a{word-spacing:364.579642px;}
.ws8e{word-spacing:551.824522px;}
._55{margin-left:-7.746970px;}
._8{margin-left:-6.575316px;}
._2{margin-left:-4.949453px;}
._a{margin-left:-3.538690px;}
._0{margin-left:-1.936742px;}
._f{width:1.039475px;}
._10{width:3.100982px;}
._54{width:10.490688px;}
._53{width:12.696422px;}
._4e{width:13.748388px;}
._48{width:15.027599px;}
._1{width:16.677504px;}
._3{width:18.530436px;}
._4{width:19.821648px;}
._47{width:20.885608px;}
._11{width:22.003546px;}
._12{width:23.551586px;}
._6{width:24.567772px;}
._44{width:26.050240px;}
._7{width:27.152532px;}
._45{width:28.692288px;}
._5{width:29.792172px;}
._9{width:31.872396px;}
._49{width:33.235234px;}
._4a{width:35.446931px;}
._14{width:37.060872px;}
._46{width:38.375935px;}
._13{width:39.451896px;}
._b{width:42.261349px;}
._4c{width:44.795848px;}
._4d{width:55.411981px;}
._4b{width:56.535796px;}
._52{width:64.342886px;}
._51{width:65.418854px;}
._2e{width:150.159850px;}
._24{width:159.508984px;}
._41{width:164.888824px;}
._37{width:169.088371px;}
._2d{width:202.171116px;}
._2f{width:205.993356px;}
._1f{width:208.845389px;}
._43{width:221.249280px;}
._20{width:235.475597px;}
._28{width:240.963034px;}
._2c{width:247.956826px;}
._16{width:248.978995px;}
._34{width:250.592947px;}
._22{width:252.691085px;}
._42{width:262.589990px;}
._35{width:268.776806px;}
._1e{width:277.115558px;}
._27{width:284.754931px;}
._3b{width:289.489190px;}
._17{width:297.989338px;}
._30{width:313.806067px;}
._3c{width:316.119398px;}
._1c{width:317.410560px;}
._21{width:319.992883px;}
._18{width:333.603878px;}
._3a{width:348.212139px;}
._26{width:353.294093px;}
._36{width:354.889507px;}
._1d{width:355.984013px;}
._40{width:361.202458px;}
._39{width:367.981056px;}
._29{width:375.074083px;}
._1b{width:384.712358px;}
._33{width:398.646144px;}
._3d{width:414.785664px;}
._3e{width:423.178214px;}
._31{width:449.162842px;}
._32{width:467.561894px;}
._38{width:468.584064px;}
._2b{width:499.635842px;}
._1a{width:506.673331px;}
._2a{width:576.421853px;}
._19{width:640.362355px;}
._25{width:694.025155px;}
._23{width:774.354144px;}
._3f{width:796.915699px;}
._c{width:931.406326px;}
._e{width:1495.607929px;}
._50{width:1645.347937px;}
._4f{width:2113.581900px;}
._d{width:2137.491900px;}
._15{width:3617.175900px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,57,62);}
.fs5{font-size:33.516000px;}
.fsa{font-size:35.865600px;}
.fsb{font-size:37.346400px;}
.fs8{font-size:37.800000px;}
.fs9{font-size:41.842800px;}
.fs6{font-size:42.084000px;}
.fsc{font-size:42.120000px;}
.fsd{font-size:46.893600px;}
.fs4{font-size:47.820600px;}
.fs7{font-size:50.400000px;}
.fs3{font-size:53.798400px;}
.fse{font-size:56.160000px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y45{bottom:-318.458280px;}
.y6c{bottom:-302.203150px;}
.y6b{bottom:-288.028207px;}
.y6a{bottom:-273.853264px;}
.y69{bottom:-259.678320px;}
.y68{bottom:-245.503377px;}
.y67{bottom:-231.328434px;}
.y66{bottom:-217.153490px;}
.y65{bottom:-196.678572px;}
.y64{bottom:-169.966805px;}
.y63{bottom:-155.791862px;}
.y62{bottom:-141.616919px;}
.y16c{bottom:-132.837939px;}
.y61{bottom:-127.441976px;}
.y18a{bottom:-115.007139px;}
.y60{bottom:-113.267032px;}
.y189{bottom:-100.756890px;}
.y5f{bottom:-99.092089px;}
.y188{bottom:-86.506641px;}
.y5e{bottom:-84.980272px;}
.y5d{bottom:-70.805328px;}
.y187{bottom:-58.286241px;}
.y5c{bottom:-56.630385px;}
.y186{bottom:-43.052490px;}
.y5b{bottom:-30.170700px;}
.y185{bottom:-27.818739px;}
.y5a{bottom:-16.499385px;}
.y0{bottom:0.000000px;}
.y184{bottom:0.612261px;}
.y59{bottom:0.636615px;}
.y2{bottom:15.759303px;}
.y2e{bottom:63.780000px;}
.y2d{bottom:108.612000px;}
.y168{bottom:113.349000px;}
.y117{bottom:116.607000px;}
.y18d{bottom:117.846000px;}
.y135{bottom:119.863500px;}
.y13d{bottom:123.121500px;}
.y7f{bottom:124.792500px;}
.y1ef{bottom:128.325000px;}
.y2c{bottom:128.875500px;}
.y167{bottom:133.612500px;}
.yf0{bottom:134.419500px;}
.y116{bottom:136.870500px;}
.y18c{bottom:137.077500px;}
.y134{bottom:140.128500px;}
.y13c{bottom:143.386500px;}
.y7e{bottom:145.057500px;}
.y1ee{bottom:147.691500px;}
.y2b{bottom:149.139000px;}
.y166{bottom:153.877500px;}
.yef{bottom:154.683000px;}
.y18b{bottom:156.310500px;}
.y115{bottom:157.134000px;}
.y133{bottom:160.392000px;}
.y13b{bottom:163.650000px;}
.y7d{bottom:165.321000px;}
.y1bc{bottom:166.611000px;}
.y1ed{bottom:167.059500px;}
.y2a{bottom:169.404000px;}
.y165{bottom:174.141000px;}
.yee{bottom:174.948000px;}
.y58{bottom:175.588942px;}
.y114{bottom:177.399000px;}
.y132{bottom:180.657000px;}
.y13a{bottom:183.913500px;}
.y16a{bottom:184.717500px;}
.y7c{bottom:185.586000px;}
.y1bb{bottom:185.979000px;}
.y1ec{bottom:186.427500px;}
.y29{bottom:189.667500px;}
.y57{bottom:189.763886px;}
.y164{bottom:194.404500px;}
.yed{bottom:195.211500px;}
.y113{bottom:197.662500px;}
.y131{bottom:200.920500px;}
.y56{bottom:203.875703px;}
.y139{bottom:204.178500px;}
.y1ba{bottom:205.345500px;}
.y1eb{bottom:205.794000px;}
.y7b{bottom:205.849500px;}
.ya0{bottom:209.470500px;}
.y28{bottom:209.932500px;}
.y163{bottom:214.669500px;}
.yec{bottom:215.476500px;}
.yc0{bottom:216.510000px;}
.y112{bottom:217.927500px;}
.y55{bottom:218.050646px;}
.y130{bottom:221.184000px;}
.y138{bottom:224.442000px;}
.y1b9{bottom:224.713500px;}
.y1ea{bottom:225.162000px;}
.y9f{bottom:225.907500px;}
.y7a{bottom:226.113000px;}
.y27{bottom:230.196000px;}
.y54{bottom:232.225589px;}
.ybf{bottom:233.871000px;}
.y162{bottom:234.933000px;}
.yeb{bottom:235.740000px;}
.y111{bottom:238.191000px;}
.y1b8{bottom:244.081500px;}
.y1e9{bottom:244.528500px;}
.y137{bottom:244.707000px;}
.y79{bottom:246.378000px;}
.y53{bottom:246.400533px;}
.y9e{bottom:249.549000px;}
.ybe{bottom:250.309500px;}
.y12f{bottom:250.414500px;}
.y26{bottom:250.459500px;}
.yea{bottom:256.003500px;}
.y110{bottom:258.454500px;}
.y52{bottom:260.575476px;}
.y1b7{bottom:263.448000px;}
.y1e8{bottom:263.896500px;}
.y161{bottom:264.163500px;}
.y136{bottom:264.970500px;}
.y9d{bottom:265.987500px;}
.y25{bottom:270.724500px;}
.ybd{bottom:273.951000px;}
.y51{bottom:274.750419px;}
.y78{bottom:275.608500px;}
.ye9{bottom:276.268500px;}
.y10f{bottom:278.719500px;}
.y1b6{bottom:282.816000px;}
.y1e7{bottom:283.264500px;}
.y12e{bottom:285.234000px;}
.y50{bottom:288.925363px;}
.y9c{bottom:289.627500px;}
.ybc{bottom:290.389500px;}
.y24{bottom:290.988000px;}
.ye8{bottom:296.532000px;}
.y9b{bottom:297.847500px;}
.y160{bottom:298.983000px;}
.y1b5{bottom:302.182500px;}
.y1e6{bottom:302.631000px;}
.y4f{bottom:303.037180px;}
.y12d{bottom:305.499000px;}
.y10e{bottom:307.950000px;}
.y77{bottom:310.428000px;}
.y23{bottom:311.253000px;}
.ybb{bottom:314.029500px;}
.ye7{bottom:316.797000px;}
.y4e{bottom:317.212123px;}
.y15f{bottom:319.248000px;}
.y1b4{bottom:321.550500px;}
.y1e5{bottom:321.999000px;}
.y12c{bottom:325.762500px;}
.y9a{bottom:329.707500px;}
.yba{bottom:330.468000px;}
.y76{bottom:330.691500px;}
.y4d{bottom:331.387066px;}
.y22{bottom:331.516500px;}
.y183{bottom:332.940956px;}
.ye6{bottom:337.060500px;}
.y15e{bottom:339.511500px;}
.y1b3{bottom:340.918500px;}
.y1e4{bottom:341.367000px;}
.y10d{bottom:342.769500px;}
.y4c{bottom:345.562010px;}
.y12b{bottom:346.027500px;}
.y99{bottom:346.146000px;}
.y182{bottom:348.735893px;}
.y75{bottom:350.956500px;}
.y21{bottom:351.780000px;}
.yb9{bottom:354.108000px;}
.ye5{bottom:357.324000px;}
.y4b{bottom:359.736953px;}
.y15d{bottom:359.775000px;}
.y1b2{bottom:360.285000px;}
.y1e3{bottom:360.733500px;}
.yb8{bottom:362.328000px;}
.y10c{bottom:363.033000px;}
.y181{bottom:364.530830px;}
.y12a{bottom:366.291000px;}
.y98{bottom:369.786000px;}
.y74{bottom:371.220000px;}
.y20{bottom:372.045000px;}
.y4a{bottom:373.911896px;}
.ye4{bottom:377.589000px;}
.y1b1{bottom:379.653000px;}
.y15c{bottom:380.040000px;}
.y1e2{bottom:380.101500px;}
.y180{bottom:380.325767px;}
.y10b{bottom:383.298000px;}
.y97{bottom:386.224500px;}
.y129{bottom:386.554500px;}
.y49{bottom:388.086840px;}
.y73{bottom:391.483500px;}
.y1f{bottom:392.308500px;}
.yb7{bottom:394.188000px;}
.y17f{bottom:396.120704px;}
.ye3{bottom:397.852500px;}
.y1b0{bottom:399.019500px;}
.y1e1{bottom:399.468000px;}
.y15b{bottom:400.303500px;}
.y48{bottom:402.198657px;}
.y10a{bottom:403.561500px;}
.y128{bottom:406.819500px;}
.y95{bottom:409.864500px;}
.yb6{bottom:410.626500px;}
.y72{bottom:411.748500px;}
.y17e{bottom:411.915641px;}
.y1e{bottom:412.573500px;}
.y47{bottom:416.373600px;}
.y94{bottom:418.084500px;}
.ye2{bottom:418.117500px;}
.y1af{bottom:418.387500px;}
.y1e0{bottom:418.836000px;}
.yb3{bottom:418.845000px;}
.y15a{bottom:420.568500px;}
.y109{bottom:423.825000px;}
.y96{bottom:426.303000px;}
.yb5{bottom:427.065000px;}
.y127{bottom:427.083000px;}
.y17d{bottom:427.640237px;}
.y46{bottom:430.548544px;}
.y71{bottom:432.012000px;}
.y1d{bottom:432.837000px;}
.y1ae{bottom:437.755500px;}
.y1df{bottom:438.204000px;}
.ye1{bottom:438.381000px;}
.y159{bottom:440.832000px;}
.y17c{bottom:443.435174px;}
.yb4{bottom:443.503500px;}
.y108{bottom:444.090000px;}
.y126{bottom:447.348000px;}
.y93{bottom:449.944500px;}
.y70{bottom:452.277000px;}
.y1c{bottom:453.100500px;}
.y44{bottom:456.756615px;}
.y1ad{bottom:457.122000px;}
.y1de{bottom:457.570500px;}
.y92{bottom:458.163000px;}
.ye0{bottom:458.644500px;}
.y17b{bottom:459.230111px;}
.y158{bottom:461.095500px;}
.y107{bottom:464.353500px;}
.yb2{bottom:467.143500px;}
.y125{bottom:467.611500px;}
.y6f{bottom:472.540500px;}
.y1b{bottom:473.365500px;}
.y17a{bottom:475.025047px;}
.yb1{bottom:475.362000px;}
.y1ac{bottom:476.490000px;}
.y1dd{bottom:476.938500px;}
.ydf{bottom:478.909500px;}
.y157{bottom:481.360500px;}
.y106{bottom:484.618500px;}
.y124{bottom:487.875000px;}
.y91{bottom:490.023000px;}
.y179{bottom:490.819984px;}
.y1a{bottom:493.629000px;}
.y1ab{bottom:495.856500px;}
.y1dc{bottom:496.305000px;}
.yde{bottom:499.173000px;}
.y156{bottom:501.624000px;}
.y105{bottom:504.882000px;}
.y90{bottom:506.461500px;}
.y178{bottom:506.614921px;}
.yae{bottom:507.222000px;}
.y123{bottom:508.140000px;}
.y1aa{bottom:515.224500px;}
.yb0{bottom:515.442000px;}
.y1db{bottom:515.673000px;}
.y6e{bottom:516.507000px;}
.ydd{bottom:519.438000px;}
.y155{bottom:521.889000px;}
.y177{bottom:522.409858px;}
.y19{bottom:522.859500px;}
.yac{bottom:523.660500px;}
.y104{bottom:525.145500px;}
.y122{bottom:528.403500px;}
.y8f{bottom:530.103000px;}
.yaf{bottom:531.880500px;}
.y1a9{bottom:534.592500px;}
.y1da{bottom:535.041000px;}
.y6d{bottom:535.740000px;}
.y176{bottom:538.134454px;}
.ydc{bottom:539.701500px;}
.yad{bottom:540.099000px;}
.y154{bottom:542.152500px;}
.y103{bottom:545.410500px;}
.y8e{bottom:546.541500px;}
.y121{bottom:548.667000px;}
.y175{bottom:553.929391px;}
.y1a8{bottom:553.959000px;}
.y1d9{bottom:554.407500px;}
.ydb{bottom:559.965000px;}
.y153{bottom:562.416000px;}
.yab{bottom:563.740500px;}
.y43{bottom:564.147000px;}
.y102{bottom:565.674000px;}
.y120{bottom:568.932000px;}
.y174{bottom:569.724328px;}
.y8d{bottom:570.181500px;}
.y1a7{bottom:573.327000px;}
.y1d8{bottom:573.775500px;}
.y8b{bottom:578.400000px;}
.ya8{bottom:580.179000px;}
.yda{bottom:580.230000px;}
.y152{bottom:582.681000px;}
.y173{bottom:585.519265px;}
.y101{bottom:585.939000px;}
.y8c{bottom:586.620000px;}
.ya7{bottom:588.397500px;}
.y11f{bottom:589.195500px;}
.y1a6{bottom:592.693500px;}
.y1d7{bottom:593.142000px;}
.yaa{bottom:596.616000px;}
.y18{bottom:598.879500px;}
.yd9{bottom:600.493500px;}
.y172{bottom:601.314202px;}
.y151{bottom:602.944500px;}
.y100{bottom:606.202500px;}
.y11e{bottom:609.460500px;}
.y8a{bottom:610.260000px;}
.y1a5{bottom:612.061500px;}
.y1d6{bottom:612.510000px;}
.ya9{bottom:613.054500px;}
.y88{bottom:618.480000px;}
.yd8{bottom:620.758500px;}
.y150{bottom:623.209500px;}
.y171{bottom:624.199451px;}
.yff{bottom:626.466000px;}
.y89{bottom:626.698500px;}
.y11d{bottom:629.724000px;}
.y1a4{bottom:631.429500px;}
.y1d5{bottom:631.878000px;}
.ya6{bottom:636.696000px;}
.y17{bottom:637.077000px;}
.yd7{bottom:641.022000px;}
.y14f{bottom:643.473000px;}
.yfe{bottom:646.731000px;}
.y11c{bottom:649.987500px;}
.y87{bottom:650.340000px;}
.y1a3{bottom:650.796000px;}
.y1d4{bottom:651.244500px;}
.ya3{bottom:653.134500px;}
.y170{bottom:653.963991px;}
.y16{bottom:657.340500px;}
.y85{bottom:658.558500px;}
.yd6{bottom:661.285500px;}
.ya2{bottom:661.353000px;}
.y14e{bottom:663.736500px;}
.y86{bottom:666.778500px;}
.yfd{bottom:666.994500px;}
.ya5{bottom:669.573000px;}
.y16f{bottom:669.688587px;}
.y1a2{bottom:670.164000px;}
.y11b{bottom:670.252500px;}
.y1d3{bottom:670.612500px;}
.y15{bottom:677.604000px;}
.yd5{bottom:681.550500px;}
.y14d{bottom:684.001500px;}
.y16e{bottom:685.483524px;}
.ya4{bottom:686.011500px;}
.yfc{bottom:687.258000px;}
.y1a1{bottom:689.530500px;}
.y1d2{bottom:689.979000px;}
.y11a{bottom:690.516000px;}
.y84{bottom:690.792000px;}
.y14{bottom:697.869000px;}
.y16d{bottom:701.278461px;}
.yd4{bottom:701.814000px;}
.y14c{bottom:704.265000px;}
.yfb{bottom:707.523000px;}
.y1a0{bottom:708.898500px;}
.y1d1{bottom:709.347000px;}
.ya1{bottom:710.025000px;}
.y119{bottom:710.781000px;}
.y13{bottom:718.132500px;}
.yd3{bottom:722.077500px;}
.y14b{bottom:724.530000px;}
.yfa{bottom:727.786500px;}
.y19f{bottom:728.266500px;}
.y83{bottom:728.389500px;}
.y1d0{bottom:728.715000px;}
.y16b{bottom:730.481661px;}
.y118{bottom:731.044500px;}
.y12{bottom:738.397500px;}
.yd2{bottom:742.342500px;}
.y14a{bottom:744.793500px;}
.y81{bottom:747.622500px;}
.y19e{bottom:747.633000px;}
.yf9{bottom:748.051500px;}
.y1cf{bottom:748.081500px;}
.y42{bottom:751.308000px;}
.y82{bottom:752.505000px;}
.y11{bottom:758.661000px;}
.yd1{bottom:762.606000px;}
.y149{bottom:765.057000px;}
.y19d{bottom:767.001000px;}
.y1ce{bottom:767.449500px;}
.yf8{bottom:768.315000px;}
.y41{bottom:771.573000px;}
.y10{bottom:778.924500px;}
.yd0{bottom:782.871000px;}
.y148{bottom:785.322000px;}
.y19c{bottom:786.367500px;}
.y1cd{bottom:786.816000px;}
.yf7{bottom:788.578500px;}
.y40{bottom:791.836500px;}
.y80{bottom:798.445500px;}
.yf{bottom:799.189500px;}
.ycf{bottom:803.134500px;}
.y147{bottom:805.585500px;}
.y19b{bottom:805.735500px;}
.y1cc{bottom:806.184000px;}
.yf6{bottom:808.843500px;}
.y3f{bottom:812.101500px;}
.ye{bottom:819.453000px;}
.yce{bottom:823.398000px;}
.y19a{bottom:825.103500px;}
.y1cb{bottom:825.552000px;}
.y146{bottom:825.849000px;}
.yf5{bottom:829.107000px;}
.y3e{bottom:832.365000px;}
.yd{bottom:839.718000px;}
.ycd{bottom:843.663000px;}
.y199{bottom:844.470000px;}
.y1ca{bottom:844.918500px;}
.y145{bottom:846.114000px;}
.yf4{bottom:849.372000px;}
.y3d{bottom:852.628500px;}
.y198{bottom:863.838000px;}
.ycc{bottom:863.926500px;}
.y1c9{bottom:864.286500px;}
.yf3{bottom:869.635500px;}
.y3c{bottom:872.893500px;}
.yc{bottom:874.671000px;}
.y144{bottom:875.344500px;}
.y197{bottom:883.204500px;}
.y1c8{bottom:883.653000px;}
.ycb{bottom:884.191500px;}
.yf2{bottom:889.899000px;}
.yb{bottom:892.827000px;}
.y3b{bottom:893.157000px;}
.y169{bottom:898.866000px;}
.y196{bottom:902.572500px;}
.y1c7{bottom:903.021000px;}
.yca{bottom:904.455000px;}
.y143{bottom:910.164000px;}
.ya{bottom:910.984500px;}
.y3a{bottom:913.422000px;}
.yf1{bottom:919.129500px;}
.y195{bottom:921.940500px;}
.y1c6{bottom:922.389000px;}
.yc9{bottom:924.718500px;}
.y1f2{bottom:929.140500px;}
.y9{bottom:929.142000px;}
.y142{bottom:930.427500px;}
.y39{bottom:933.685500px;}
.y194{bottom:941.307000px;}
.y1c5{bottom:941.755500px;}
.yc8{bottom:944.983500px;}
.y1f1{bottom:948.508500px;}
.y141{bottom:950.692500px;}
.y38{bottom:953.949000px;}
.y8{bottom:956.265000px;}
.y1c4{bottom:961.123500px;}
.yc7{bottom:965.247000px;}
.y1f0{bottom:967.876500px;}
.y193{bottom:969.640500px;}
.y140{bottom:970.956000px;}
.y37{bottom:974.214000px;}
.y7{bottom:974.422500px;}
.y1c3{bottom:980.490000px;}
.yc6{bottom:985.512000px;}
.y13f{bottom:991.219500px;}
.y36{bottom:994.477500px;}
.y1c2{bottom:999.858000px;}
.y6{bottom:1001.545500px;}
.yc5{bottom:1005.775500px;}
.y192{bottom:1006.941000px;}
.y35{bottom:1014.742500px;}
.y1c1{bottom:1019.226000px;}
.y13e{bottom:1020.450000px;}
.yc4{bottom:1026.039000px;}
.y191{bottom:1031.106000px;}
.y34{bottom:1035.006000px;}
.y1c0{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.yc3{bottom:1046.304000px;}
.y33{bottom:1055.269500px;}
.y1bf{bottom:1057.960500px;}
.y190{bottom:1061.502000px;}
.yc2{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y32{bottom:1075.534500px;}
.y1be{bottom:1077.327000px;}
.y18f{bottom:1085.667000px;}
.yc1{bottom:1086.832500px;}
.y31{bottom:1095.798000px;}
.y1bd{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y18e{bottom:1100.865000px;}
.y30{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2f{bottom:1168.366500px;}
.hc{height:24.580582px;}
.h1e{height:26.110157px;}
.h21{height:27.389791px;}
.h10{height:27.593262px;}
.hf{height:27.722461px;}
.h22{height:28.073145px;}
.h16{height:30.461558px;}
.hd{height:30.720498px;}
.h27{height:30.746777px;}
.h11{height:30.864340px;}
.h26{height:30.890742px;}
.h23{height:34.231412px;}
.h24{height:34.391693px;}
.h9{height:35.100320px;}
.he{height:36.791016px;}
.h13{height:37.389888px;}
.h28{height:37.551283px;}
.h12{height:38.734848px;}
.h7{height:39.165235px;}
.h1a{height:39.488026px;}
.ha{height:39.810550px;}
.h25{height:40.995703px;}
.h1f{height:41.723369px;}
.h6{height:43.038432px;}
.h8{height:43.516637px;}
.h4{height:43.875290px;}
.h1d{height:49.991558px;}
.h2{height:50.930649px;}
.h17{height:72.039235px;}
.h18{height:72.045235px;}
.h1c{height:72.362026px;}
.h1b{height:72.368026px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h19{height:104.919235px;}
.hb{height:163.521750px;}
.h20{height:316.788030px;}
.h14{height:892.914000px;}
.h15{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:184.032561px;}
.w3{width:202.197450px;}
.w6{width:424.904220px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x31{left:-129.951150px;}
.x32{left:-107.649224px;}
.xd6{left:-48.027330px;}
.xd7{left:-23.176067px;}
.x0{left:0.000000px;}
.x2{left:58.056593px;}
.x1{left:114.802500px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.xcf{left:136.782000px;}
.xa4{left:138.417000px;}
.x93{left:144.376500px;}
.xa{left:146.692500px;}
.x63{left:150.489000px;}
.x94{left:154.216500px;}
.x64{left:157.962000px;}
.x65{left:161.772000px;}
.x36{left:164.103000px;}
.x81{left:169.357500px;}
.xcd{left:173.571000px;}
.x66{left:176.716500px;}
.x28{left:177.867000px;}
.x82{left:180.640500px;}
.x23{left:182.818500px;}
.x29{left:185.338500px;}
.xd0{left:186.835500px;}
.x5{left:188.958000px;}
.x6d{left:191.511000px;}
.x2a{left:192.684000px;}
.x24{left:194.439000px;}
.x37{left:197.473500px;}
.x4f{left:198.552000px;}
.xb7{left:199.798500px;}
.x98{left:201.103500px;}
.xb{left:203.026500px;}
.x83{left:204.687000px;}
.x33{left:206.131500px;}
.x2b{left:207.627000px;}
.xc{left:210.499500px;}
.x3d{left:213.534000px;}
.x69{left:214.885500px;}
.x48{left:218.935500px;}
.xc6{left:220.288500px;}
.xc7{left:222.609000px;}
.x5a{left:226.432500px;}
.xba{left:231.952500px;}
.xd5{left:234.006000px;}
.xbb{left:239.424000px;}
.xd9{left:245.908500px;}
.xec{left:250.854000px;}
.xed{left:252.858000px;}
.xda{left:257.538000px;}
.x19{left:259.027500px;}
.xcb{left:264.673500px;}
.x1a{left:266.500500px;}
.xd4{left:269.506500px;}
.x6b{left:270.960000px;}
.x67{left:272.394000px;}
.x1b{left:274.122000px;}
.x6c{left:280.191000px;}
.x7b{left:285.192000px;}
.x68{left:287.337000px;}
.x1c{left:289.065000px;}
.x7f{left:290.215500px;}
.x70{left:295.285500px;}
.x80{left:297.688500px;}
.x9c{left:300.850500px;}
.x27{left:303.280500px;}
.x71{left:304.516500px;}
.x9e{left:306.535500px;}
.x9d{left:310.080000px;}
.xf{left:314.647500px;}
.x10{left:322.119000px;}
.x25{left:323.908500px;}
.x11{left:325.930500px;}
.xab{left:327.327000px;}
.xb2{left:332.047500px;}
.x12{left:333.402000px;}
.x26{left:335.529000px;}
.xac{left:336.558000px;}
.x8a{left:338.095500px;}
.xb3{left:341.278500px;}
.x1d{left:343.683000px;}
.x30{left:345.358500px;}
.xc0{left:351.399000px;}
.x78{left:357.549000px;}
.x1e{left:358.627500px;}
.x6e{left:359.730000px;}
.x45{left:360.871500px;}
.x8e{left:364.758000px;}
.x1f{left:366.249000px;}
.x6f{left:368.961000px;}
.x44{left:372.781500px;}
.x21{left:377.575500px;}
.x8f{left:379.701000px;}
.x20{left:381.192000px;}
.x97{left:383.877000px;}
.x22{left:392.518500px;}
.xdd{left:394.632000px;}
.x87{left:400.362000px;}
.xbc{left:401.589000px;}
.x88{left:408.660000px;}
.xbd{left:416.533500px;}
.xa5{left:419.280000px;}
.xd8{left:422.102070px;}
.xa2{left:425.883000px;}
.xa6{left:428.511000px;}
.xd2{left:431.832000px;}
.xa3{left:433.356000px;}
.xde{left:438.483000px;}
.xd3{left:440.131500px;}
.x9a{left:443.332500px;}
.x5e{left:447.655500px;}
.xbe{left:449.019000px;}
.xb5{left:451.578000px;}
.x9b{left:458.275500px;}
.xb6{left:460.809000px;}
.x92{left:462.679500px;}
.xbf{left:463.962000px;}
.x6{left:465.358500px;}
.xb4{left:467.217000px;}
.xcc{left:474.022500px;}
.x73{left:475.281000px;}
.xad{left:481.650000px;}
.xae{left:489.123000px;}
.x86{left:492.066000px;}
.x8c{left:495.385500px;}
.x74{left:497.248500px;}
.xc4{left:498.826500px;}
.xaf{left:500.404500px;}
.xdf{left:502.246500px;}
.x8d{left:505.225500px;}
.x75{left:506.479500px;}
.x2c{left:510.363000px;}
.xc5{left:513.771000px;}
.x7{left:514.989000px;}
.x2d{left:525.307500px;}
.x2e{left:528.979500px;}
.x2f{left:543.924000px;}
.x8{left:545.445000px;}
.x5f{left:547.641000px;}
.x79{left:549.969000px;}
.x60{left:555.112500px;}
.x9f{left:557.281500px;}
.x61{left:558.924000px;}
.xa0{left:561.093000px;}
.xa8{left:562.735500px;}
.x7a{left:564.913500px;}
.xa9{left:566.407500px;}
.xa1{left:568.564500px;}
.x62{left:573.867000px;}
.x17{left:577.057500px;}
.xaa{left:581.352000px;}
.x18{left:584.530500px;}
.xd{left:587.986500px;}
.x47{left:590.443500px;}
.x9{left:592.026000px;}
.xe{left:595.458000px;}
.xe2{left:599.757000px;}
.x46{left:602.824500px;}
.x43{left:606.186000px;}
.xe0{left:608.124000px;}
.x8b{left:610.135500px;}
.xe8{left:616.498500px;}
.xc1{left:617.851500px;}
.xdc{left:619.779000px;}
.xce{left:623.443500px;}
.x15{left:624.829500px;}
.x76{left:627.738000px;}
.x34{left:630.342000px;}
.x16{left:632.301000px;}
.xe1{left:635.023500px;}
.xa7{left:636.073500px;}
.x38{left:639.198000px;}
.x35{left:641.091000px;}
.x77{left:642.682500px;}
.xe9{left:643.804500px;}
.xca{left:645.889500px;}
.x5c{left:658.861500px;}
.x50{left:660.541500px;}
.x49{left:662.223000px;}
.x5b{left:663.904500px;}
.x5d{left:665.586000px;}
.x59{left:668.287500px;}
.x6a{left:673.194000px;}
.x95{left:676.239000px;}
.x89{left:677.451000px;}
.x58{left:678.720000px;}
.x7c{left:681.492000px;}
.x90{left:683.731500px;}
.xb8{left:684.949500px;}
.x96{left:689.715000px;}
.x7d{left:690.721500px;}
.x91{left:692.961000px;}
.x84{left:695.703000px;}
.x99{left:696.996000px;}
.xb9{left:699.892500px;}
.xeb{left:703.641000px;}
.x85{left:704.934000px;}
.xc8{left:706.818000px;}
.xb0{left:719.247000px;}
.xc9{left:721.762500px;}
.xb1{left:728.476500px;}
.xe6{left:735.988500px;}
.x7e{left:738.166500px;}
.xe3{left:748.437000px;}
.xe4{left:749.593500px;}
.xd1{left:751.819500px;}
.x3e{left:753.187500px;}
.xdb{left:755.352000px;}
.x72{left:757.209000px;}
.xc2{left:760.498500px;}
.xe7{left:762.886500px;}
.x13{left:764.367000px;}
.xc3{left:768.796500px;}
.xea{left:770.056500px;}
.x14{left:771.838500px;}
.xe5{left:776.493000px;}
.x4a{left:796.387500px;}
.x39{left:840.964500px;}
.x3a{left:847.875000px;}
.x51{left:861.750000px;}
.x4b{left:870.031500px;}
.x52{left:872.022000px;}
.x4c{left:880.303500px;}
.x53{left:910.813500px;}
.x3f{left:916.882500px;}
.x41{left:918.993000px;}
.x54{left:921.087000px;}
.x42{left:925.902000px;}
.x40{left:927.130500px;}
.x3b{left:930.183000px;}
.x3c{left:937.093500px;}
.x55{left:947.566500px;}
.x56{left:957.840000px;}
.x4d{left:997.749000px;}
.x4e{left:1031.518500px;}
.x57{left:1039.924500px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:29.221333pt;}
.v2{vertical-align:58.448000pt;}
.ls23{letter-spacing:-0.179558pt;}
.ls24{letter-spacing:-0.112224pt;}
.ls29{letter-spacing:-0.108483pt;}
.ls4e{letter-spacing:-0.100040pt;}
.ls2b{letter-spacing:-0.093520pt;}
.ls1f{letter-spacing:-0.086038pt;}
.ls50{letter-spacing:-0.083366pt;}
.ls4a{letter-spacing:-0.079198pt;}
.ls4f{letter-spacing:-0.075030pt;}
.ls2c{letter-spacing:-0.071075pt;}
.ls4b{letter-spacing:-0.070861pt;}
.ls44{letter-spacing:-0.066693pt;}
.ls43{letter-spacing:-0.063074pt;}
.ls49{letter-spacing:-0.062525pt;}
.ls47{letter-spacing:-0.058356pt;}
.ls21{letter-spacing:-0.056112pt;}
.ls1b{letter-spacing:-0.053626pt;}
.ls2a{letter-spacing:-0.052371pt;}
.ls27{letter-spacing:-0.041149pt;}
.ls51{letter-spacing:-0.029952pt;}
.ls1e{letter-spacing:-0.026186pt;}
.ls45{letter-spacing:-0.025010pt;}
.ls28{letter-spacing:-0.022445pt;}
.ls4d{letter-spacing:-0.020842pt;}
.ls25{letter-spacing:-0.018704pt;}
.ls46{letter-spacing:-0.016673pt;}
.ls26{letter-spacing:-0.014963pt;}
.ls4c{letter-spacing:-0.012505pt;}
.ls20{letter-spacing:-0.011222pt;}
.ls1c{letter-spacing:-0.007482pt;}
.ls48{letter-spacing:-0.004168pt;}
.ls52{letter-spacing:-0.003744pt;}
.ls22{letter-spacing:-0.003741pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000283pt;}
.ls19{letter-spacing:0.001007pt;}
.ls2f{letter-spacing:0.002425pt;}
.ls69{letter-spacing:0.002525pt;}
.ls6{letter-spacing:0.003741pt;}
.ls3b{letter-spacing:0.003744pt;}
.ls14{letter-spacing:0.006720pt;}
.lsb{letter-spacing:0.007482pt;}
.ls41{letter-spacing:0.007488pt;}
.ls12{letter-spacing:0.010080pt;}
.ls9{letter-spacing:0.011222pt;}
.ls7{letter-spacing:0.014963pt;}
.ls39{letter-spacing:0.016673pt;}
.ls16{letter-spacing:0.016800pt;}
.ls11{letter-spacing:0.018704pt;}
.ls15{letter-spacing:0.020160pt;}
.ls3a{letter-spacing:0.020842pt;}
.ls3c{letter-spacing:0.022464pt;}
.ls17{letter-spacing:0.023520pt;}
.ls10{letter-spacing:0.026186pt;}
.ls35{letter-spacing:0.029178pt;}
.lse{letter-spacing:0.029926pt;}
.ls40{letter-spacing:0.029952pt;}
.ls36{letter-spacing:0.033347pt;}
.lsa{letter-spacing:0.033667pt;}
.ls3f{letter-spacing:0.033696pt;}
.ls18{letter-spacing:0.036960pt;}
.ls3d{letter-spacing:0.037440pt;}
.lsf{letter-spacing:0.041149pt;}
.ls37{letter-spacing:0.041683pt;}
.ls13{letter-spacing:0.043680pt;}
.lsc{letter-spacing:0.044890pt;}
.ls38{letter-spacing:0.045852pt;}
.ls3e{letter-spacing:0.048672pt;}
.ls32{letter-spacing:0.049795pt;}
.ls3{letter-spacing:0.050646pt;}
.ls8{letter-spacing:0.052371pt;}
.ls1d{letter-spacing:0.059853pt;}
.ls42{letter-spacing:0.078624pt;}
.ls5{letter-spacing:0.113210pt;}
.ls4{letter-spacing:0.119168pt;}
.ls34{letter-spacing:0.119508pt;}
.lsd{letter-spacing:0.119706pt;}
.ls33{letter-spacing:0.126148pt;}
.ls1{letter-spacing:10.626533pt;}
.ls62{letter-spacing:11.152283pt;}
.ls5a{letter-spacing:11.786054pt;}
.ls65{letter-spacing:11.804298pt;}
.ls63{letter-spacing:11.820155pt;}
.ls5d{letter-spacing:11.836425pt;}
.ls61{letter-spacing:11.928166pt;}
.ls68{letter-spacing:11.952283pt;}
.ls2e{letter-spacing:11.952340pt;}
.ls54{letter-spacing:11.954133pt;}
.ls2d{letter-spacing:11.957673pt;}
.ls58{letter-spacing:11.959467pt;}
.ls6a{letter-spacing:12.004518pt;}
.ls53{letter-spacing:12.004680pt;}
.ls60{letter-spacing:12.017918pt;}
.ls5c{letter-spacing:12.036760pt;}
.ls67{letter-spacing:12.578133pt;}
.ls66{letter-spacing:13.247414pt;}
.ls31{letter-spacing:13.281067pt;}
.ls56{letter-spacing:13.461793pt;}
.ls5e{letter-spacing:13.655258pt;}
.ls57{letter-spacing:14.172905pt;}
.ls5f{letter-spacing:14.512774pt;}
.ls5b{letter-spacing:14.958033pt;}
.ls59{letter-spacing:15.568983pt;}
.ls55{letter-spacing:16.557218pt;}
.ls64{letter-spacing:18.779441pt;}
.ls0{letter-spacing:23.908898pt;}
.ls30{letter-spacing:238.984158pt;}
.ws21{word-spacing:-13.283467pt;}
.ws93{word-spacing:-11.955200pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws113{word-spacing:-9.393696pt;}
.ws112{word-spacing:-9.360000pt;}
.ws28{word-spacing:-9.359482pt;}
.ws111{word-spacing:-8.425348pt;}
.ws27{word-spacing:-7.567168pt;}
.ws16{word-spacing:-2.656693pt;}
.wsd0{word-spacing:-2.444158pt;}
.ws13f{word-spacing:-2.399904pt;}
.ws11{word-spacing:-2.337890pt;}
.wse8{word-spacing:-2.284756pt;}
.ws129{word-spacing:-2.213378pt;}
.ws140{word-spacing:-2.126592pt;}
.ws133{word-spacing:-2.125843pt;}
.ws132{word-spacing:-2.084160pt;}
.ws14{word-spacing:-1.965953pt;}
.ws128{word-spacing:-1.929932pt;}
.wsc5{word-spacing:-1.912819pt;}
.ws20{word-spacing:-1.806551pt;}
.ws162{word-spacing:-1.769370pt;}
.ws54{word-spacing:-1.743213pt;}
.ws163{word-spacing:-1.721549pt;}
.ws15{word-spacing:-1.540882pt;}
.ws14f{word-spacing:-1.482445pt;}
.ws106{word-spacing:-1.381481pt;}
.ws100{word-spacing:-1.328347pt;}
.ws3b{word-spacing:-1.298058pt;}
.ws3a{word-spacing:-1.226982pt;}
.ws180{word-spacing:-1.147699pt;}
.wsf5{word-spacing:-1.115811pt;}
.ws3f{word-spacing:-1.096054pt;}
.ws40{word-spacing:-1.069869pt;}
.wse0{word-spacing:-1.062677pt;}
.ws3e{word-spacing:-1.058646pt;}
.ws177{word-spacing:-1.052058pt;}
.wse1{word-spacing:-1.009543pt;}
.ws119{word-spacing:-0.979555pt;}
.ws185{word-spacing:-0.956416pt;}
.ws11a{word-spacing:-0.871179pt;}
.ws52{word-spacing:-0.845421pt;}
.ws167{word-spacing:-0.812954pt;}
.ws30{word-spacing:-0.797008pt;}
.ws13d{word-spacing:-0.673920pt;}
.ws13c{word-spacing:-0.662688pt;}
.ws44{word-spacing:-0.658381pt;}
.ws45{word-spacing:-0.654640pt;}
.ws13b{word-spacing:-0.647712pt;}
.ws2e{word-spacing:-0.637606pt;}
.ws3d{word-spacing:-0.624714pt;}
.ws46{word-spacing:-0.613491pt;}
.ws101{word-spacing:-0.584473pt;}
.ws164{word-spacing:-0.526029pt;}
.ws47{word-spacing:-0.501267pt;}
.ws5f{word-spacing:-0.422710pt;}
.ws5e{word-spacing:-0.400266pt;}
.ws2c{word-spacing:-0.318803pt;}
.ws175{word-spacing:-0.286925pt;}
.ws12{word-spacing:-0.265669pt;}
.ws15b{word-spacing:-0.239104pt;}
.ws11c{word-spacing:-0.233426pt;}
.ws10{word-spacing:-0.212535pt;}
.ws158{word-spacing:-0.191283pt;}
.ws6e{word-spacing:-0.190781pt;}
.ws116{word-spacing:-0.182582pt;}
.ws31{word-spacing:-0.166835pt;}
.ws4a{word-spacing:-0.164595pt;}
.ws2{word-spacing:-0.159402pt;}
.ws115{word-spacing:-0.143462pt;}
.ws130{word-spacing:-0.129218pt;}
.ws131{word-spacing:-0.125050pt;}
.wsd2{word-spacing:-0.118935pt;}
.ws8{word-spacing:-0.106268pt;}
.ws157{word-spacing:-0.095642pt;}
.ws70{word-spacing:-0.071075pt;}
.ws22{word-spacing:-0.053134pt;}
.ws75{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.042507pt;}
.ws1f{word-spacing:-0.008104pt;}
.ws9f{word-spacing:-0.007569pt;}
.ws89{word-spacing:-0.007287pt;}
.ws76{word-spacing:-0.007049pt;}
.ws78{word-spacing:-0.006272pt;}
.wsa4{word-spacing:-0.005914pt;}
.wsa3{word-spacing:-0.005709pt;}
.ws9d{word-spacing:-0.005393pt;}
.ws98{word-spacing:-0.004966pt;}
.ws84{word-spacing:-0.004437pt;}
.wsb3{word-spacing:-0.003849pt;}
.wsa8{word-spacing:-0.003763pt;}
.ws87{word-spacing:-0.003337pt;}
.wsb7{word-spacing:-0.003200pt;}
.wsa9{word-spacing:-0.002953pt;}
.ws1d{word-spacing:-0.002771pt;}
.wsb1{word-spacing:-0.002406pt;}
.ws7b{word-spacing:-0.002270pt;}
.wsb4{word-spacing:-0.002193pt;}
.ws90{word-spacing:-0.002133pt;}
.ws8a{word-spacing:-0.002125pt;}
.ws17b{word-spacing:-0.001929pt;}
.wsa6{word-spacing:-0.001869pt;}
.wsbe{word-spacing:-0.001803pt;}
.wsb{word-spacing:-0.001770pt;}
.ws7e{word-spacing:-0.001203pt;}
.wsb8{word-spacing:-0.001126pt;}
.wsa1{word-spacing:-0.001067pt;}
.ws7d{word-spacing:-0.000990pt;}
.wsb2{word-spacing:-0.000973pt;}
.ws92{word-spacing:-0.000939pt;}
.wsba{word-spacing:-0.000922pt;}
.ws8c{word-spacing:-0.000631pt;}
.ws10b{word-spacing:-0.000462pt;}
.wsa{word-spacing:-0.000405pt;}
.ws8d{word-spacing:-0.000094pt;}
.wsa2{word-spacing:-0.000060pt;}
.ws0{word-spacing:0.000000pt;}
.wsac{word-spacing:0.000324pt;}
.ws8b{word-spacing:0.000367pt;}
.ws79{word-spacing:0.000469pt;}
.ws99{word-spacing:0.000998pt;}
.ws91{word-spacing:0.001007pt;}
.wsab{word-spacing:0.001067pt;}
.ws10a{word-spacing:0.001521pt;}
.ws86{word-spacing:0.002210pt;}
.ws85{word-spacing:0.003166pt;}
.wsb0{word-spacing:0.003422pt;}
.ws80{word-spacing:0.003618pt;}
.ws9c{word-spacing:0.004267pt;}
.wsa0{word-spacing:0.005026pt;}
.ws95{word-spacing:0.006588pt;}
.ws3c{word-spacing:0.007482pt;}
.wsae{word-spacing:0.013261pt;}
.ws41{word-spacing:0.014963pt;}
.ws55{word-spacing:0.033667pt;}
.ws6a{word-spacing:0.041149pt;}
.ws114{word-spacing:0.047821pt;}
.ws5{word-spacing:0.053134pt;}
.ws42{word-spacing:0.067334pt;}
.ws4b{word-spacing:0.074816pt;}
.ws5b{word-spacing:0.077280pt;}
.ws4c{word-spacing:0.086038pt;}
.ws11b{word-spacing:0.087535pt;}
.ws5a{word-spacing:0.090720pt;}
.ws7c{word-spacing:0.095642pt;}
.wsc9{word-spacing:0.106268pt;}
.ws77{word-spacing:0.143462pt;}
.ws74{word-spacing:0.145891pt;}
.ws13e{word-spacing:0.153504pt;}
.ws4{word-spacing:0.159402pt;}
.ws6b{word-spacing:0.168336pt;}
.wsa5{word-spacing:0.191283pt;}
.wsd1{word-spacing:0.212535pt;}
.wsa7{word-spacing:0.239104pt;}
.ws3{word-spacing:0.265669pt;}
.ws151{word-spacing:0.286925pt;}
.ws25{word-spacing:0.318803pt;}
.ws16f{word-spacing:0.334746pt;}
.wsc8{word-spacing:0.425071pt;}
.ws183{word-spacing:0.430387pt;}
.wsf6{word-spacing:0.478205pt;}
.ws12a{word-spacing:0.521040pt;}
.ws24{word-spacing:0.531339pt;}
.ws117{word-spacing:0.533545pt;}
.wsf7{word-spacing:0.584473pt;}
.ws168{word-spacing:0.621670pt;}
.ws34{word-spacing:0.673344pt;}
.wsc7{word-spacing:0.690740pt;}
.ws33{word-spacing:0.729456pt;}
.ws32{word-spacing:0.740678pt;}
.wsc6{word-spacing:0.743874pt;}
.ws1{word-spacing:0.797008pt;}
.wse2{word-spacing:0.850142pt;}
.ws19{word-spacing:0.903276pt;}
.ws36{word-spacing:0.923978pt;}
.wsec{word-spacing:0.956410pt;}
.ws181{word-spacing:0.956416pt;}
.ws67{word-spacing:0.961386pt;}
.ws35{word-spacing:0.983830pt;}
.ws17f{word-spacing:1.004237pt;}
.ws126{word-spacing:1.029575pt;}
.ws148{word-spacing:1.099878pt;}
.ws125{word-spacing:1.129615pt;}
.ws124{word-spacing:1.137951pt;}
.ws150{word-spacing:1.147699pt;}
.ws104{word-spacing:1.168945pt;}
.ws137{word-spacing:1.288011pt;}
.ws16b{word-spacing:1.338982pt;}
.ws139{word-spacing:1.351584pt;}
.ws60{word-spacing:1.372874pt;}
.ws51{word-spacing:1.376614pt;}
.ws1a{word-spacing:1.381481pt;}
.wsea{word-spacing:1.434614pt;}
.ws182{word-spacing:1.434624pt;}
.ws187{word-spacing:1.482445pt;}
.wsf4{word-spacing:1.540882pt;}
.ws13a{word-spacing:1.583712pt;}
.wsd{word-spacing:1.594016pt;}
.ws138{word-spacing:1.617408pt;}
.ws147{word-spacing:1.625907pt;}
.wse{word-spacing:1.647150pt;}
.ws2a{word-spacing:1.673728pt;}
.ws154{word-spacing:1.721549pt;}
.ws2f{word-spacing:1.753418pt;}
.ws155{word-spacing:1.769370pt;}
.ws127{word-spacing:1.775704pt;}
.wsd6{word-spacing:1.806551pt;}
.ws73{word-spacing:1.832992pt;}
.wse7{word-spacing:1.859685pt;}
.ws39{word-spacing:1.862918pt;}
.wscb{word-spacing:1.912819pt;}
.ws146{word-spacing:1.912832pt;}
.ws38{word-spacing:1.937734pt;}
.ws29{word-spacing:1.960653pt;}
.wsd8{word-spacing:1.965953pt;}
.ws172{word-spacing:2.008474pt;}
.ws118{word-spacing:2.025804pt;}
.ws16e{word-spacing:2.056294pt;}
.wse4{word-spacing:2.072221pt;}
.wsf{word-spacing:2.125355pt;}
.ws37{word-spacing:2.162182pt;}
.ws156{word-spacing:2.199757pt;}
.wsca{word-spacing:2.231622pt;}
.ws11f{word-spacing:2.292576pt;}
.ws15c{word-spacing:2.295398pt;}
.wsdf{word-spacing:2.337890pt;}
.ws170{word-spacing:2.438861pt;}
.ws26{word-spacing:2.444158pt;}
.ws173{word-spacing:2.534502pt;}
.wsc4{word-spacing:2.550426pt;}
.wscd{word-spacing:2.603559pt;}
.wsf8{word-spacing:2.656693pt;}
.ws161{word-spacing:2.699927pt;}
.ws6{word-spacing:2.709827pt;}
.ws179{word-spacing:2.725786pt;}
.wse3{word-spacing:2.762961pt;}
.ws17d{word-spacing:2.821427pt;}
.ws15a{word-spacing:2.866560pt;}
.wsad{word-spacing:2.867277pt;}
.ws176{word-spacing:2.868651pt;}
.ws17e{word-spacing:2.868813pt;}
.wsd7{word-spacing:2.869229pt;}
.ws149{word-spacing:2.869248pt;}
.ws159{word-spacing:2.869274pt;}
.ws174{word-spacing:2.870033pt;}
.ws166{word-spacing:2.917069pt;}
.ws7{word-spacing:2.922363pt;}
.ws68{word-spacing:2.947750pt;}
.ws48{word-spacing:2.955232pt;}
.ws186{word-spacing:2.964890pt;}
.ws69{word-spacing:2.966454pt;}
.wsd4{word-spacing:2.975497pt;}
.ws49{word-spacing:2.992640pt;}
.ws184{word-spacing:3.012710pt;}
.ws6f{word-spacing:3.026307pt;}
.wse9{word-spacing:3.028630pt;}
.wscf{word-spacing:3.081764pt;}
.wsce{word-spacing:3.134898pt;}
.ws9{word-spacing:3.185311pt;}
.wsd3{word-spacing:3.188032pt;}
.ws171{word-spacing:3.203994pt;}
.ws23{word-spacing:3.241166pt;}
.ws105{word-spacing:3.294300pt;}
.ws65{word-spacing:3.385424pt;}
.ws108{word-spacing:3.400567pt;}
.ws64{word-spacing:3.407869pt;}
.ws66{word-spacing:3.411610pt;}
.ws6d{word-spacing:3.415350pt;}
.ws6c{word-spacing:3.441536pt;}
.wsc0{word-spacing:3.453701pt;}
.wsc1{word-spacing:3.506835pt;}
.wse6{word-spacing:3.559969pt;}
.wsfe{word-spacing:3.613103pt;}
.ws14c{word-spacing:3.634381pt;}
.ws18{word-spacing:3.666237pt;}
.wsd5{word-spacing:3.772505pt;}
.ws10f{word-spacing:3.825638pt;}
.wsf2{word-spacing:3.931906pt;}
.ws152{word-spacing:4.016947pt;}
.ws13{word-spacing:4.038174pt;}
.wsd9{word-spacing:4.091308pt;}
.wse5{word-spacing:4.197575pt;}
.ws10c{word-spacing:4.250709pt;}
.ws134{word-spacing:4.289201pt;}
.wsdc{word-spacing:4.356977pt;}
.ws10e{word-spacing:4.397619pt;}
.ws10d{word-spacing:4.405342pt;}
.wsf3{word-spacing:4.410111pt;}
.ws14b{word-spacing:4.495155pt;}
.ws110{word-spacing:4.516379pt;}
.ws58{word-spacing:4.552800pt;}
.ws59{word-spacing:4.576320pt;}
.ws57{word-spacing:4.583040pt;}
.ws56{word-spacing:4.586400pt;}
.ws14e{word-spacing:4.590797pt;}
.wscc{word-spacing:4.728914pt;}
.wsee{word-spacing:4.835182pt;}
.ws14a{word-spacing:5.116826pt;}
.ws1b{word-spacing:5.153985pt;}
.ws16a{word-spacing:5.355930pt;}
.wsff{word-spacing:5.366521pt;}
.ws169{word-spacing:5.403750pt;}
.wsda{word-spacing:5.738458pt;}
.ws17{word-spacing:5.791591pt;}
.ws109{word-spacing:5.844725pt;}
.ws4d{word-spacing:5.888019pt;}
.ws4e{word-spacing:5.899242pt;}
.wsf0{word-spacing:6.004127pt;}
.ws2d{word-spacing:6.057261pt;}
.ws71{word-spacing:6.078800pt;}
.wsde{word-spacing:6.216662pt;}
.wsdd{word-spacing:6.269796pt;}
.ws72{word-spacing:6.404250pt;}
.wsef{word-spacing:6.429198pt;}
.ws160{word-spacing:6.455808pt;}
.wsc3{word-spacing:6.641733pt;}
.wsf9{word-spacing:6.694867pt;}
.ws12e{word-spacing:6.761015pt;}
.wsc2{word-spacing:6.801135pt;}
.ws12d{word-spacing:6.823540pt;}
.ws17c{word-spacing:6.838374pt;}
.ws1c{word-spacing:6.854269pt;}
.ws61{word-spacing:6.965370pt;}
.ws62{word-spacing:7.017741pt;}
.ws16c{word-spacing:7.220941pt;}
.ws102{word-spacing:7.226206pt;}
.ws145{word-spacing:7.268762pt;}
.ws143{word-spacing:7.356960pt;}
.ws141{word-spacing:7.360704pt;}
.ws142{word-spacing:7.368192pt;}
.wsfa{word-spacing:7.385607pt;}
.wsfb{word-spacing:7.651277pt;}
.wseb{word-spacing:7.916946pt;}
.wsdb{word-spacing:8.076348pt;}
.ws63{word-spacing:8.136240pt;}
.ws11e{word-spacing:8.253274pt;}
.wsed{word-spacing:8.448285pt;}
.ws11d{word-spacing:8.565898pt;}
.ws136{word-spacing:8.765977pt;}
.ws123{word-spacing:8.770145pt;}
.ws122{word-spacing:8.861848pt;}
.ws135{word-spacing:8.874353pt;}
.ws15d{word-spacing:8.894669pt;}
.ws5d{word-spacing:8.996624pt;}
.ws5c{word-spacing:9.045254pt;}
.wsfc{word-spacing:9.351561pt;}
.ws2b{word-spacing:9.564096pt;}
.ws17a{word-spacing:9.564160pt;}
.ws16d{word-spacing:9.707622pt;}
.ws43{word-spacing:10.115123pt;}
.ws178{word-spacing:10.664038pt;}
.ws103{word-spacing:10.679907pt;}
.wsfd{word-spacing:10.786175pt;}
.wsf1{word-spacing:11.158112pt;}
.ws12b{word-spacing:11.542078pt;}
.ws12c{word-spacing:11.554583pt;}
.ws120{word-spacing:11.600435pt;}
.ws107{word-spacing:11.742585pt;}
.ws121{word-spacing:11.796346pt;}
.ws15e{word-spacing:11.811738pt;}
.ws153{word-spacing:12.194304pt;}
.ws53{word-spacing:13.249914pt;}
.ws12f{word-spacing:13.759624pt;}
.ws14d{word-spacing:14.202778pt;}
.ws144{word-spacing:14.250598pt;}
.ws4f{word-spacing:14.667677pt;}
.ws50{word-spacing:14.712566pt;}
.ws165{word-spacing:16.785101pt;}
.wsc{word-spacing:19.659531pt;}
.ws15f{word-spacing:30.653133pt;}
.wsb9{word-spacing:61.481762pt;}
.wsb5{word-spacing:79.412429pt;}
.wsbd{word-spacing:85.391095pt;}
.ws83{word-spacing:110.788429pt;}
.ws88{word-spacing:116.767095pt;}
.ws96{word-spacing:122.745762pt;}
.ws82{word-spacing:128.691268pt;}
.ws9e{word-spacing:131.033762pt;}
.ws97{word-spacing:142.991095pt;}
.wsbb{word-spacing:147.861914pt;}
.wsaf{word-spacing:160.302089pt;}
.ws94{word-spacing:166.808602pt;}
.wsb6{word-spacing:186.291268pt;}
.ws9a{word-spacing:197.746389pt;}
.ws8f{word-spacing:212.659098pt;}
.ws81{word-spacing:217.902089pt;}
.ws7f{word-spacing:224.333935pt;}
.wsbc{word-spacing:224.403268pt;}
.ws9b{word-spacing:303.510801pt;}
.wsaa{word-spacing:315.139072pt;}
.ws7a{word-spacing:324.070793pt;}
.ws8e{word-spacing:490.510686pt;}
._55{margin-left:-6.886195pt;}
._8{margin-left:-5.844725pt;}
._2{margin-left:-4.399514pt;}
._a{margin-left:-3.145502pt;}
._0{margin-left:-1.721549pt;}
._f{width:0.923978pt;}
._10{width:2.756429pt;}
._54{width:9.325056pt;}
._53{width:11.285709pt;}
._4e{width:12.220789pt;}
._48{width:13.357866pt;}
._1{width:14.824448pt;}
._3{width:16.471499pt;}
._4{width:17.619243pt;}
._47{width:18.564985pt;}
._11{width:19.558707pt;}
._12{width:20.934743pt;}
._6{width:21.838019pt;}
._44{width:23.155769pt;}
._7{width:24.135584pt;}
._45{width:25.504256pt;}
._5{width:26.481931pt;}
._9{width:28.331019pt;}
._49{width:29.542430pt;}
._4a{width:31.508383pt;}
._14{width:32.942997pt;}
._46{width:34.111942pt;}
._13{width:35.068352pt;}
._b{width:37.565644pt;}
._4c{width:39.818531pt;}
._4d{width:49.255094pt;}
._4b{width:50.254041pt;}
._52{width:57.193677pt;}
._51{width:58.150093pt;}
._2e{width:133.475422pt;}
._24{width:141.785764pt;}
._41{width:146.567844pt;}
._37{width:150.300774pt;}
._2d{width:179.707658pt;}
._2f{width:183.105205pt;}
._1f{width:185.640346pt;}
._43{width:196.666027pt;}
._20{width:209.311642pt;}
._28{width:214.189363pt;}
._2c{width:220.406067pt;}
._16{width:221.314662pt;}
._34{width:222.749286pt;}
._22{width:224.614298pt;}
._42{width:233.413325pt;}
._35{width:238.912717pt;}
._1e{width:246.324941pt;}
._27{width:253.115494pt;}
._3b{width:257.323725pt;}
._17{width:264.879411pt;}
._30{width:278.938726pt;}
._3c{width:280.995021pt;}
._1c{width:282.142720pt;}
._21{width:284.438118pt;}
._18{width:296.536781pt;}
._3a{width:309.521901pt;}
._26{width:314.039194pt;}
._36{width:315.457340pt;}
._1d{width:316.430234pt;}
._40{width:321.068851pt;}
._39{width:327.094272pt;}
._29{width:333.399185pt;}
._1b{width:341.966541pt;}
._33{width:354.352128pt;}
._3d{width:368.698368pt;}
._3e{width:376.158413pt;}
._31{width:399.255859pt;}
._32{width:415.610573pt;}
._38{width:416.519168pt;}
._2b{width:444.120748pt;}
._1a{width:450.376294pt;}
._2a{width:512.374980pt;}
._19{width:569.210982pt;}
._25{width:616.911249pt;}
._23{width:688.314795pt;}
._3f{width:708.369510pt;}
._c{width:827.916734pt;}
._e{width:1329.429270pt;}
._50{width:1462.531500pt;}
._4f{width:1878.739467pt;}
._d{width:1899.992800pt;}
._15{width:3215.267467pt;}
.fs5{font-size:29.792000pt;}
.fsa{font-size:31.880533pt;}
.fsb{font-size:33.196800pt;}
.fs8{font-size:33.600000pt;}
.fs9{font-size:37.193600pt;}
.fs6{font-size:37.408000pt;}
.fsc{font-size:37.440000pt;}
.fsd{font-size:41.683200pt;}
.fs4{font-size:42.507200pt;}
.fs7{font-size:44.800000pt;}
.fs3{font-size:47.820800pt;}
.fse{font-size:49.920000pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y45{bottom:-283.074027pt;}
.y6c{bottom:-268.625022pt;}
.y6b{bottom:-256.025073pt;}
.y6a{bottom:-243.425123pt;}
.y69{bottom:-230.825174pt;}
.y68{bottom:-218.225224pt;}
.y67{bottom:-205.625274pt;}
.y66{bottom:-193.025325pt;}
.y65{bottom:-174.825398pt;}
.y64{bottom:-151.081605pt;}
.y63{bottom:-138.481655pt;}
.y62{bottom:-125.881706pt;}
.y16c{bottom:-118.078168pt;}
.y61{bottom:-113.281756pt;}
.y18a{bottom:-102.228568pt;}
.y60{bottom:-100.681806pt;}
.y189{bottom:-89.561680pt;}
.y5f{bottom:-88.081857pt;}
.y188{bottom:-76.894792pt;}
.y5e{bottom:-75.538019pt;}
.y5d{bottom:-62.938070pt;}
.y187{bottom:-51.809992pt;}
.y5c{bottom:-50.338120pt;}
.y186{bottom:-38.268880pt;}
.y5b{bottom:-26.818400pt;}
.y185{bottom:-24.727768pt;}
.y5a{bottom:-14.666120pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:0.544232pt;}
.y59{bottom:0.565880pt;}
.y2{bottom:14.008270pt;}
.y2e{bottom:56.693333pt;}
.y2d{bottom:96.544000pt;}
.y168{bottom:100.754667pt;}
.y117{bottom:103.650667pt;}
.y18d{bottom:104.752000pt;}
.y135{bottom:106.545333pt;}
.y13d{bottom:109.441333pt;}
.y7f{bottom:110.926667pt;}
.y1ef{bottom:114.066667pt;}
.y2c{bottom:114.556000pt;}
.y167{bottom:118.766667pt;}
.yf0{bottom:119.484000pt;}
.y116{bottom:121.662667pt;}
.y18c{bottom:121.846667pt;}
.y134{bottom:124.558667pt;}
.y13c{bottom:127.454667pt;}
.y7e{bottom:128.940000pt;}
.y1ee{bottom:131.281333pt;}
.y2b{bottom:132.568000pt;}
.y166{bottom:136.780000pt;}
.yef{bottom:137.496000pt;}
.y18b{bottom:138.942667pt;}
.y115{bottom:139.674667pt;}
.y133{bottom:142.570667pt;}
.y13b{bottom:145.466667pt;}
.y7d{bottom:146.952000pt;}
.y1bc{bottom:148.098667pt;}
.y1ed{bottom:148.497333pt;}
.y2a{bottom:150.581333pt;}
.y165{bottom:154.792000pt;}
.yee{bottom:155.509333pt;}
.y58{bottom:156.079060pt;}
.y114{bottom:157.688000pt;}
.y132{bottom:160.584000pt;}
.y13a{bottom:163.478667pt;}
.y16a{bottom:164.193333pt;}
.y7c{bottom:164.965333pt;}
.y1bb{bottom:165.314667pt;}
.y1ec{bottom:165.713333pt;}
.y29{bottom:168.593333pt;}
.y57{bottom:168.679009pt;}
.y164{bottom:172.804000pt;}
.yed{bottom:173.521333pt;}
.y113{bottom:175.700000pt;}
.y131{bottom:178.596000pt;}
.y56{bottom:181.222847pt;}
.y139{bottom:181.492000pt;}
.y1ba{bottom:182.529333pt;}
.y1eb{bottom:182.928000pt;}
.y7b{bottom:182.977333pt;}
.ya0{bottom:186.196000pt;}
.y28{bottom:186.606667pt;}
.y163{bottom:190.817333pt;}
.yec{bottom:191.534667pt;}
.yc0{bottom:192.453333pt;}
.y112{bottom:193.713333pt;}
.y55{bottom:193.822797pt;}
.y130{bottom:196.608000pt;}
.y138{bottom:199.504000pt;}
.y1b9{bottom:199.745333pt;}
.y1ea{bottom:200.144000pt;}
.y9f{bottom:200.806667pt;}
.y7a{bottom:200.989333pt;}
.y27{bottom:204.618667pt;}
.y54{bottom:206.422746pt;}
.ybf{bottom:207.885333pt;}
.y162{bottom:208.829333pt;}
.yeb{bottom:209.546667pt;}
.y111{bottom:211.725333pt;}
.y1b8{bottom:216.961333pt;}
.y1e9{bottom:217.358667pt;}
.y137{bottom:217.517333pt;}
.y79{bottom:219.002667pt;}
.y53{bottom:219.022696pt;}
.y9e{bottom:221.821333pt;}
.ybe{bottom:222.497333pt;}
.y12f{bottom:222.590667pt;}
.y26{bottom:222.630667pt;}
.yea{bottom:227.558667pt;}
.y110{bottom:229.737333pt;}
.y52{bottom:231.622645pt;}
.y1b7{bottom:234.176000pt;}
.y1e8{bottom:234.574667pt;}
.y161{bottom:234.812000pt;}
.y136{bottom:235.529333pt;}
.y9d{bottom:236.433333pt;}
.y25{bottom:240.644000pt;}
.ybd{bottom:243.512000pt;}
.y51{bottom:244.222595pt;}
.y78{bottom:244.985333pt;}
.ye9{bottom:245.572000pt;}
.y10f{bottom:247.750667pt;}
.y1b6{bottom:251.392000pt;}
.y1e7{bottom:251.790667pt;}
.y12e{bottom:253.541333pt;}
.y50{bottom:256.822545pt;}
.y9c{bottom:257.446667pt;}
.ybc{bottom:258.124000pt;}
.y24{bottom:258.656000pt;}
.ye8{bottom:263.584000pt;}
.y9b{bottom:264.753333pt;}
.y160{bottom:265.762667pt;}
.y1b5{bottom:268.606667pt;}
.y1e6{bottom:269.005333pt;}
.y4f{bottom:269.366382pt;}
.y12d{bottom:271.554667pt;}
.y10e{bottom:273.733333pt;}
.y77{bottom:275.936000pt;}
.y23{bottom:276.669333pt;}
.ybb{bottom:279.137333pt;}
.ye7{bottom:281.597333pt;}
.y4e{bottom:281.966332pt;}
.y15f{bottom:283.776000pt;}
.y1b4{bottom:285.822667pt;}
.y1e5{bottom:286.221333pt;}
.y12c{bottom:289.566667pt;}
.y9a{bottom:293.073333pt;}
.yba{bottom:293.749333pt;}
.y76{bottom:293.948000pt;}
.y4d{bottom:294.566281pt;}
.y22{bottom:294.681333pt;}
.y183{bottom:295.947517pt;}
.ye6{bottom:299.609333pt;}
.y15e{bottom:301.788000pt;}
.y1b3{bottom:303.038667pt;}
.y1e4{bottom:303.437333pt;}
.y10d{bottom:304.684000pt;}
.y4c{bottom:307.166231pt;}
.y12b{bottom:307.580000pt;}
.y99{bottom:307.685333pt;}
.y182{bottom:309.987461pt;}
.y75{bottom:311.961333pt;}
.y21{bottom:312.693333pt;}
.yb9{bottom:314.762667pt;}
.ye5{bottom:317.621333pt;}
.y4b{bottom:319.766181pt;}
.y15d{bottom:319.800000pt;}
.y1b2{bottom:320.253333pt;}
.y1e3{bottom:320.652000pt;}
.yb8{bottom:322.069333pt;}
.y10c{bottom:322.696000pt;}
.y181{bottom:324.027404pt;}
.y12a{bottom:325.592000pt;}
.y98{bottom:328.698667pt;}
.y74{bottom:329.973333pt;}
.y20{bottom:330.706667pt;}
.y4a{bottom:332.366130pt;}
.ye4{bottom:335.634667pt;}
.y1b1{bottom:337.469333pt;}
.y15c{bottom:337.813333pt;}
.y1e2{bottom:337.868000pt;}
.y180{bottom:338.067348pt;}
.y10b{bottom:340.709333pt;}
.y97{bottom:343.310667pt;}
.y129{bottom:343.604000pt;}
.y49{bottom:344.966080pt;}
.y73{bottom:347.985333pt;}
.y1f{bottom:348.718667pt;}
.yb7{bottom:350.389333pt;}
.y17f{bottom:352.107292pt;}
.ye3{bottom:353.646667pt;}
.y1b0{bottom:354.684000pt;}
.y1e1{bottom:355.082667pt;}
.y15b{bottom:355.825333pt;}
.y48{bottom:357.509917pt;}
.y10a{bottom:358.721333pt;}
.y128{bottom:361.617333pt;}
.y95{bottom:364.324000pt;}
.yb6{bottom:365.001333pt;}
.y72{bottom:365.998667pt;}
.y17e{bottom:366.147236pt;}
.y1e{bottom:366.732000pt;}
.y47{bottom:370.109867pt;}
.y94{bottom:371.630667pt;}
.ye2{bottom:371.660000pt;}
.y1af{bottom:371.900000pt;}
.y1e0{bottom:372.298667pt;}
.yb3{bottom:372.306667pt;}
.y15a{bottom:373.838667pt;}
.y109{bottom:376.733333pt;}
.y96{bottom:378.936000pt;}
.yb5{bottom:379.613333pt;}
.y127{bottom:379.629333pt;}
.y17d{bottom:380.124655pt;}
.y46{bottom:382.709817pt;}
.y71{bottom:384.010667pt;}
.y1d{bottom:384.744000pt;}
.y1ae{bottom:389.116000pt;}
.y1df{bottom:389.514667pt;}
.ye1{bottom:389.672000pt;}
.y159{bottom:391.850667pt;}
.y17c{bottom:394.164599pt;}
.yb4{bottom:394.225333pt;}
.y108{bottom:394.746667pt;}
.y126{bottom:397.642667pt;}
.y93{bottom:399.950667pt;}
.y70{bottom:402.024000pt;}
.y1c{bottom:402.756000pt;}
.y44{bottom:406.005880pt;}
.y1ad{bottom:406.330667pt;}
.y1de{bottom:406.729333pt;}
.y92{bottom:407.256000pt;}
.ye0{bottom:407.684000pt;}
.y17b{bottom:408.204543pt;}
.y158{bottom:409.862667pt;}
.y107{bottom:412.758667pt;}
.yb2{bottom:415.238667pt;}
.y125{bottom:415.654667pt;}
.y6f{bottom:420.036000pt;}
.y1b{bottom:420.769333pt;}
.y17a{bottom:422.244487pt;}
.yb1{bottom:422.544000pt;}
.y1ac{bottom:423.546667pt;}
.y1dd{bottom:423.945333pt;}
.ydf{bottom:425.697333pt;}
.y157{bottom:427.876000pt;}
.y106{bottom:430.772000pt;}
.y124{bottom:433.666667pt;}
.y91{bottom:435.576000pt;}
.y179{bottom:436.284430pt;}
.y1a{bottom:438.781333pt;}
.y1ab{bottom:440.761333pt;}
.y1dc{bottom:441.160000pt;}
.yde{bottom:443.709333pt;}
.y156{bottom:445.888000pt;}
.y105{bottom:448.784000pt;}
.y90{bottom:450.188000pt;}
.y178{bottom:450.324374pt;}
.yae{bottom:450.864000pt;}
.y123{bottom:451.680000pt;}
.y1aa{bottom:457.977333pt;}
.yb0{bottom:458.170667pt;}
.y1db{bottom:458.376000pt;}
.y6e{bottom:459.117333pt;}
.ydd{bottom:461.722667pt;}
.y155{bottom:463.901333pt;}
.y177{bottom:464.364318pt;}
.y19{bottom:464.764000pt;}
.yac{bottom:465.476000pt;}
.y104{bottom:466.796000pt;}
.y122{bottom:469.692000pt;}
.y8f{bottom:471.202667pt;}
.yaf{bottom:472.782667pt;}
.y1a9{bottom:475.193333pt;}
.y1da{bottom:475.592000pt;}
.y6d{bottom:476.213333pt;}
.y176{bottom:478.341737pt;}
.ydc{bottom:479.734667pt;}
.yad{bottom:480.088000pt;}
.y154{bottom:481.913333pt;}
.y103{bottom:484.809333pt;}
.y8e{bottom:485.814667pt;}
.y121{bottom:487.704000pt;}
.y175{bottom:492.381681pt;}
.y1a8{bottom:492.408000pt;}
.y1d9{bottom:492.806667pt;}
.ydb{bottom:497.746667pt;}
.y153{bottom:499.925333pt;}
.yab{bottom:501.102667pt;}
.y43{bottom:501.464000pt;}
.y102{bottom:502.821333pt;}
.y120{bottom:505.717333pt;}
.y174{bottom:506.421625pt;}
.y8d{bottom:506.828000pt;}
.y1a7{bottom:509.624000pt;}
.y1d8{bottom:510.022667pt;}
.y8b{bottom:514.133333pt;}
.ya8{bottom:515.714667pt;}
.yda{bottom:515.760000pt;}
.y152{bottom:517.938667pt;}
.y173{bottom:520.461569pt;}
.y101{bottom:520.834667pt;}
.y8c{bottom:521.440000pt;}
.ya7{bottom:523.020000pt;}
.y11f{bottom:523.729333pt;}
.y1a6{bottom:526.838667pt;}
.y1d7{bottom:527.237333pt;}
.yaa{bottom:530.325333pt;}
.y18{bottom:532.337333pt;}
.yd9{bottom:533.772000pt;}
.y172{bottom:534.501512pt;}
.y151{bottom:535.950667pt;}
.y100{bottom:538.846667pt;}
.y11e{bottom:541.742667pt;}
.y8a{bottom:542.453333pt;}
.y1a5{bottom:544.054667pt;}
.y1d6{bottom:544.453333pt;}
.ya9{bottom:544.937333pt;}
.y88{bottom:549.760000pt;}
.yd8{bottom:551.785333pt;}
.y150{bottom:553.964000pt;}
.y171{bottom:554.843956pt;}
.yff{bottom:556.858667pt;}
.y89{bottom:557.065333pt;}
.y11d{bottom:559.754667pt;}
.y1a4{bottom:561.270667pt;}
.y1d5{bottom:561.669333pt;}
.ya6{bottom:565.952000pt;}
.y17{bottom:566.290667pt;}
.yd7{bottom:569.797333pt;}
.y14f{bottom:571.976000pt;}
.yfe{bottom:574.872000pt;}
.y11c{bottom:577.766667pt;}
.y87{bottom:578.080000pt;}
.y1a3{bottom:578.485333pt;}
.y1d4{bottom:578.884000pt;}
.ya3{bottom:580.564000pt;}
.y170{bottom:581.301325pt;}
.y16{bottom:584.302667pt;}
.y85{bottom:585.385333pt;}
.yd6{bottom:587.809333pt;}
.ya2{bottom:587.869333pt;}
.y14e{bottom:589.988000pt;}
.y86{bottom:592.692000pt;}
.yfd{bottom:592.884000pt;}
.ya5{bottom:595.176000pt;}
.y16f{bottom:595.278744pt;}
.y1a2{bottom:595.701333pt;}
.y11b{bottom:595.780000pt;}
.y1d3{bottom:596.100000pt;}
.y15{bottom:602.314667pt;}
.yd5{bottom:605.822667pt;}
.y14d{bottom:608.001333pt;}
.y16e{bottom:609.318688pt;}
.ya4{bottom:609.788000pt;}
.yfc{bottom:610.896000pt;}
.y1a1{bottom:612.916000pt;}
.y1d2{bottom:613.314667pt;}
.y11a{bottom:613.792000pt;}
.y84{bottom:614.037333pt;}
.y14{bottom:620.328000pt;}
.y16d{bottom:623.358632pt;}
.yd4{bottom:623.834667pt;}
.y14c{bottom:626.013333pt;}
.yfb{bottom:628.909333pt;}
.y1a0{bottom:630.132000pt;}
.y1d1{bottom:630.530667pt;}
.ya1{bottom:631.133333pt;}
.y119{bottom:631.805333pt;}
.y13{bottom:638.340000pt;}
.yd3{bottom:641.846667pt;}
.y14b{bottom:644.026667pt;}
.yfa{bottom:646.921333pt;}
.y19f{bottom:647.348000pt;}
.y83{bottom:647.457333pt;}
.y1d0{bottom:647.746667pt;}
.y16b{bottom:649.317032pt;}
.y118{bottom:649.817333pt;}
.y12{bottom:656.353333pt;}
.yd2{bottom:659.860000pt;}
.y14a{bottom:662.038667pt;}
.y81{bottom:664.553333pt;}
.y19e{bottom:664.562667pt;}
.yf9{bottom:664.934667pt;}
.y1cf{bottom:664.961333pt;}
.y42{bottom:667.829333pt;}
.y82{bottom:668.893333pt;}
.y11{bottom:674.365333pt;}
.yd1{bottom:677.872000pt;}
.y149{bottom:680.050667pt;}
.y19d{bottom:681.778667pt;}
.y1ce{bottom:682.177333pt;}
.yf8{bottom:682.946667pt;}
.y41{bottom:685.842667pt;}
.y10{bottom:692.377333pt;}
.yd0{bottom:695.885333pt;}
.y148{bottom:698.064000pt;}
.y19c{bottom:698.993333pt;}
.y1cd{bottom:699.392000pt;}
.yf7{bottom:700.958667pt;}
.y40{bottom:703.854667pt;}
.y80{bottom:709.729333pt;}
.yf{bottom:710.390667pt;}
.ycf{bottom:713.897333pt;}
.y147{bottom:716.076000pt;}
.y19b{bottom:716.209333pt;}
.y1cc{bottom:716.608000pt;}
.yf6{bottom:718.972000pt;}
.y3f{bottom:721.868000pt;}
.ye{bottom:728.402667pt;}
.yce{bottom:731.909333pt;}
.y19a{bottom:733.425333pt;}
.y1cb{bottom:733.824000pt;}
.y146{bottom:734.088000pt;}
.yf5{bottom:736.984000pt;}
.y3e{bottom:739.880000pt;}
.yd{bottom:746.416000pt;}
.ycd{bottom:749.922667pt;}
.y199{bottom:750.640000pt;}
.y1ca{bottom:751.038667pt;}
.y145{bottom:752.101333pt;}
.yf4{bottom:754.997333pt;}
.y3d{bottom:757.892000pt;}
.y198{bottom:767.856000pt;}
.ycc{bottom:767.934667pt;}
.y1c9{bottom:768.254667pt;}
.yf3{bottom:773.009333pt;}
.y3c{bottom:775.905333pt;}
.yc{bottom:777.485333pt;}
.y144{bottom:778.084000pt;}
.y197{bottom:785.070667pt;}
.y1c8{bottom:785.469333pt;}
.ycb{bottom:785.948000pt;}
.yf2{bottom:791.021333pt;}
.yb{bottom:793.624000pt;}
.y3b{bottom:793.917333pt;}
.y169{bottom:798.992000pt;}
.y196{bottom:802.286667pt;}
.y1c7{bottom:802.685333pt;}
.yca{bottom:803.960000pt;}
.y143{bottom:809.034667pt;}
.ya{bottom:809.764000pt;}
.y3a{bottom:811.930667pt;}
.yf1{bottom:817.004000pt;}
.y195{bottom:819.502667pt;}
.y1c6{bottom:819.901333pt;}
.yc9{bottom:821.972000pt;}
.y1f2{bottom:825.902667pt;}
.y9{bottom:825.904000pt;}
.y142{bottom:827.046667pt;}
.y39{bottom:829.942667pt;}
.y194{bottom:836.717333pt;}
.y1c5{bottom:837.116000pt;}
.yc8{bottom:839.985333pt;}
.y1f1{bottom:843.118667pt;}
.y141{bottom:845.060000pt;}
.y38{bottom:847.954667pt;}
.y8{bottom:850.013333pt;}
.y1c4{bottom:854.332000pt;}
.yc7{bottom:857.997333pt;}
.y1f0{bottom:860.334667pt;}
.y193{bottom:861.902667pt;}
.y140{bottom:863.072000pt;}
.y37{bottom:865.968000pt;}
.y7{bottom:866.153333pt;}
.y1c3{bottom:871.546667pt;}
.yc6{bottom:876.010667pt;}
.y13f{bottom:881.084000pt;}
.y36{bottom:883.980000pt;}
.y1c2{bottom:888.762667pt;}
.y6{bottom:890.262667pt;}
.yc5{bottom:894.022667pt;}
.y192{bottom:895.058667pt;}
.y35{bottom:901.993333pt;}
.y1c1{bottom:905.978667pt;}
.y13e{bottom:907.066667pt;}
.yc4{bottom:912.034667pt;}
.y191{bottom:916.538667pt;}
.y34{bottom:920.005333pt;}
.y1c0{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.yc3{bottom:930.048000pt;}
.y33{bottom:938.017333pt;}
.y1bf{bottom:940.409333pt;}
.y190{bottom:943.557333pt;}
.yc2{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y32{bottom:956.030667pt;}
.y1be{bottom:957.624000pt;}
.y18f{bottom:965.037333pt;}
.yc1{bottom:966.073333pt;}
.y31{bottom:974.042667pt;}
.y1bd{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y18e{bottom:978.546667pt;}
.y30{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2f{bottom:1038.548000pt;}
.hc{height:21.849406pt;}
.h1e{height:23.209028pt;}
.h21{height:24.346481pt;}
.h10{height:24.527344pt;}
.hf{height:24.642188pt;}
.h22{height:24.953906pt;}
.h16{height:27.076941pt;}
.hd{height:27.307109pt;}
.h27{height:27.330469pt;}
.h11{height:27.434969pt;}
.h26{height:27.458437pt;}
.h23{height:30.427922pt;}
.h24{height:30.570394pt;}
.h9{height:31.200285pt;}
.he{height:32.703125pt;}
.h13{height:33.235456pt;}
.h28{height:33.378918pt;}
.h12{height:34.430976pt;}
.h7{height:34.813542pt;}
.h1a{height:35.100467pt;}
.ha{height:35.387155pt;}
.h25{height:36.440625pt;}
.h1f{height:37.087439pt;}
.h6{height:38.256384pt;}
.h8{height:38.681455pt;}
.h4{height:39.000258pt;}
.h1d{height:44.436941pt;}
.h2{height:45.271688pt;}
.h17{height:64.034876pt;}
.h18{height:64.040209pt;}
.h1c{height:64.321801pt;}
.h1b{height:64.327134pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h19{height:93.261542pt;}
.hb{height:145.352667pt;}
.h20{height:281.589360pt;}
.h14{height:793.701333pt;}
.h15{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:163.584499pt;}
.w3{width:179.731067pt;}
.w6{width:377.692640pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x31{left:-115.512133pt;}
.x32{left:-95.688199pt;}
.xd6{left:-42.690960pt;}
.xd7{left:-20.600948pt;}
.x0{left:0.000000pt;}
.x2{left:51.605861pt;}
.x1{left:102.046667pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.xcf{left:121.584000pt;}
.xa4{left:123.037333pt;}
.x93{left:128.334667pt;}
.xa{left:130.393333pt;}
.x63{left:133.768000pt;}
.x94{left:137.081333pt;}
.x64{left:140.410667pt;}
.x65{left:143.797333pt;}
.x36{left:145.869333pt;}
.x81{left:150.540000pt;}
.xcd{left:154.285333pt;}
.x66{left:157.081333pt;}
.x28{left:158.104000pt;}
.x82{left:160.569333pt;}
.x23{left:162.505333pt;}
.x29{left:164.745333pt;}
.xd0{left:166.076000pt;}
.x5{left:167.962667pt;}
.x6d{left:170.232000pt;}
.x2a{left:171.274667pt;}
.x24{left:172.834667pt;}
.x37{left:175.532000pt;}
.x4f{left:176.490667pt;}
.xb7{left:177.598667pt;}
.x98{left:178.758667pt;}
.xb{left:180.468000pt;}
.x83{left:181.944000pt;}
.x33{left:183.228000pt;}
.x2b{left:184.557333pt;}
.xc{left:187.110667pt;}
.x3d{left:189.808000pt;}
.x69{left:191.009333pt;}
.x48{left:194.609333pt;}
.xc6{left:195.812000pt;}
.xc7{left:197.874667pt;}
.x5a{left:201.273333pt;}
.xba{left:206.180000pt;}
.xd5{left:208.005333pt;}
.xbb{left:212.821333pt;}
.xd9{left:218.585333pt;}
.xec{left:222.981333pt;}
.xed{left:224.762667pt;}
.xda{left:228.922667pt;}
.x19{left:230.246667pt;}
.xcb{left:235.265333pt;}
.x1a{left:236.889333pt;}
.xd4{left:239.561333pt;}
.x6b{left:240.853333pt;}
.x67{left:242.128000pt;}
.x1b{left:243.664000pt;}
.x6c{left:249.058667pt;}
.x7b{left:253.504000pt;}
.x68{left:255.410667pt;}
.x1c{left:256.946667pt;}
.x7f{left:257.969333pt;}
.x70{left:262.476000pt;}
.x80{left:264.612000pt;}
.x9c{left:267.422667pt;}
.x27{left:269.582667pt;}
.x71{left:270.681333pt;}
.x9e{left:272.476000pt;}
.x9d{left:275.626667pt;}
.xf{left:279.686667pt;}
.x10{left:286.328000pt;}
.x25{left:287.918667pt;}
.x11{left:289.716000pt;}
.xab{left:290.957333pt;}
.xb2{left:295.153333pt;}
.x12{left:296.357333pt;}
.x26{left:298.248000pt;}
.xac{left:299.162667pt;}
.x8a{left:300.529333pt;}
.xb3{left:303.358667pt;}
.x1d{left:305.496000pt;}
.x30{left:306.985333pt;}
.xc0{left:312.354667pt;}
.x78{left:317.821333pt;}
.x1e{left:318.780000pt;}
.x6e{left:319.760000pt;}
.x45{left:320.774667pt;}
.x8e{left:324.229333pt;}
.x1f{left:325.554667pt;}
.x6f{left:327.965333pt;}
.x44{left:331.361333pt;}
.x21{left:335.622667pt;}
.x8f{left:337.512000pt;}
.x20{left:338.837333pt;}
.x97{left:341.224000pt;}
.x22{left:348.905333pt;}
.xdd{left:350.784000pt;}
.x87{left:355.877333pt;}
.xbc{left:356.968000pt;}
.x88{left:363.253333pt;}
.xbd{left:370.252000pt;}
.xa5{left:372.693333pt;}
.xd8{left:375.201840pt;}
.xa2{left:378.562667pt;}
.xa6{left:380.898667pt;}
.xd2{left:383.850667pt;}
.xa3{left:385.205333pt;}
.xde{left:389.762667pt;}
.xd3{left:391.228000pt;}
.x9a{left:394.073333pt;}
.x5e{left:397.916000pt;}
.xbe{left:399.128000pt;}
.xb5{left:401.402667pt;}
.x9b{left:407.356000pt;}
.xb6{left:409.608000pt;}
.x92{left:411.270667pt;}
.xbf{left:412.410667pt;}
.x6{left:413.652000pt;}
.xb4{left:415.304000pt;}
.xcc{left:421.353333pt;}
.x73{left:422.472000pt;}
.xad{left:428.133333pt;}
.xae{left:434.776000pt;}
.x86{left:437.392000pt;}
.x8c{left:440.342667pt;}
.x74{left:441.998667pt;}
.xc4{left:443.401333pt;}
.xaf{left:444.804000pt;}
.xdf{left:446.441333pt;}
.x8d{left:449.089333pt;}
.x75{left:450.204000pt;}
.x2c{left:453.656000pt;}
.xc5{left:456.685333pt;}
.x7{left:457.768000pt;}
.x2d{left:466.940000pt;}
.x2e{left:470.204000pt;}
.x2f{left:483.488000pt;}
.x8{left:484.840000pt;}
.x5f{left:486.792000pt;}
.x79{left:488.861333pt;}
.x60{left:493.433333pt;}
.x9f{left:495.361333pt;}
.x61{left:496.821333pt;}
.xa0{left:498.749333pt;}
.xa8{left:500.209333pt;}
.x7a{left:502.145333pt;}
.xa9{left:503.473333pt;}
.xa1{left:505.390667pt;}
.x62{left:510.104000pt;}
.x17{left:512.940000pt;}
.xaa{left:516.757333pt;}
.x18{left:519.582667pt;}
.xd{left:522.654667pt;}
.x47{left:524.838667pt;}
.x9{left:526.245333pt;}
.xe{left:529.296000pt;}
.xe2{left:533.117333pt;}
.x46{left:535.844000pt;}
.x43{left:538.832000pt;}
.xe0{left:540.554667pt;}
.x8b{left:542.342667pt;}
.xe8{left:547.998667pt;}
.xc1{left:549.201333pt;}
.xdc{left:550.914667pt;}
.xce{left:554.172000pt;}
.x15{left:555.404000pt;}
.x76{left:557.989333pt;}
.x34{left:560.304000pt;}
.x16{left:562.045333pt;}
.xe1{left:564.465333pt;}
.xa7{left:565.398667pt;}
.x38{left:568.176000pt;}
.x35{left:569.858667pt;}
.x77{left:571.273333pt;}
.xe9{left:572.270667pt;}
.xca{left:574.124000pt;}
.x5c{left:585.654667pt;}
.x50{left:587.148000pt;}
.x49{left:588.642667pt;}
.x5b{left:590.137333pt;}
.x5d{left:591.632000pt;}
.x59{left:594.033333pt;}
.x6a{left:598.394667pt;}
.x95{left:601.101333pt;}
.x89{left:602.178667pt;}
.x58{left:603.306667pt;}
.x7c{left:605.770667pt;}
.x90{left:607.761333pt;}
.xb8{left:608.844000pt;}
.x96{left:613.080000pt;}
.x7d{left:613.974667pt;}
.x91{left:615.965333pt;}
.x84{left:618.402667pt;}
.x99{left:619.552000pt;}
.xb9{left:622.126667pt;}
.xeb{left:625.458667pt;}
.x85{left:626.608000pt;}
.xc8{left:628.282667pt;}
.xb0{left:639.330667pt;}
.xc9{left:641.566667pt;}
.xb1{left:647.534667pt;}
.xe6{left:654.212000pt;}
.x7e{left:656.148000pt;}
.xe3{left:665.277333pt;}
.xe4{left:666.305333pt;}
.xd1{left:668.284000pt;}
.x3e{left:669.500000pt;}
.xdb{left:671.424000pt;}
.x72{left:673.074667pt;}
.xc2{left:675.998667pt;}
.xe7{left:678.121333pt;}
.x13{left:679.437333pt;}
.xc3{left:683.374667pt;}
.xea{left:684.494667pt;}
.x14{left:686.078667pt;}
.xe5{left:690.216000pt;}
.x4a{left:707.900000pt;}
.x39{left:747.524000pt;}
.x3a{left:753.666667pt;}
.x51{left:766.000000pt;}
.x4b{left:773.361333pt;}
.x52{left:775.130667pt;}
.x4c{left:782.492000pt;}
.x53{left:809.612000pt;}
.x3f{left:815.006667pt;}
.x41{left:816.882667pt;}
.x54{left:818.744000pt;}
.x42{left:823.024000pt;}
.x40{left:824.116000pt;}
.x3b{left:826.829333pt;}
.x3c{left:832.972000pt;}
.x55{left:842.281333pt;}
.x56{left:851.413333pt;}
.x4d{left:886.888000pt;}
.x4e{left:916.905333pt;}
.x57{left:924.377333pt;}
}




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