
    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_4a2172c0af34cc1485427214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_4545fd836fcb42e458ead79c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f8ef233369c0dfe7f031c542.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_06be8abf2aac1bc7e11bc411.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_40fcedb7249b481613c1d4c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7f7cc25fa4f71f0b138b750c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9c95c9a4573bcba7e0e29639.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_88c478fd1516ba34d43414f6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_55bc1929ae05f124257386f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.200195;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_d494b5f20a2fce16e3da538f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ceb457d38fda305221361501.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.856934;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_95b6f90af798e0e5a48c5244.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_88c478fd1516ba34d43414f6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_55bc1929ae05f124257386f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d494b5f20a2fce16e3da538f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ceb457d38fda305221361501.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_88c478fd1516ba34d43414f6.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a839d5704065615cafbce660.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8175202cc622ed9d744ceaaa.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b07a0f689146228ecbf838ac.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c03a9e04d1be6e78de2538ae.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.486000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_79557e2d71a8791730503901.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.552000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_4255011e03d6f5247fe76126.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mb{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);}
.m1b{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);}
.m8{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);}
.m2{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);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m27{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);}
.m23{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);}
.m4{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);}
.m2a{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);}
.m9{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);}
.m14{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);}
.m24{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);}
.m16{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m12{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);}
.m11{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);}
.me{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);}
.m28{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);}
.m1a{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);}
.m1c{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);}
.md{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);}
.m2b{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);}
.m21{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);}
.m5{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);}
.m1f{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);}
.m19{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);}
.m6{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);}
.m1e{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);}
.m2d{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);}
.m26{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);}
.m1d{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m29{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);}
.m2c{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-6.755400px;}
.v6{vertical-align:-1.420320px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:29.586600px;}
.v9{vertical-align:32.874000px;}
.v7{vertical-align:44.695200px;}
.v8{vertical-align:57.863520px;}
.v5{vertical-align:59.178600px;}
.ls32{letter-spacing:-0.204408px;}
.ls42{letter-spacing:-0.194188px;}
.ls51{letter-spacing:-0.150300px;}
.ls2e{letter-spacing:-0.132264px;}
.ls3e{letter-spacing:-0.125651px;}
.ls31{letter-spacing:-0.120240px;}
.ls41{letter-spacing:-0.114228px;}
.ls2f{letter-spacing:-0.096192px;}
.ls3f{letter-spacing:-0.091382px;}
.ls4f{letter-spacing:-0.090972px;}
.ls2c{letter-spacing:-0.090180px;}
.ls29{letter-spacing:-0.086184px;}
.ls3c{letter-spacing:-0.085671px;}
.ls39{letter-spacing:-0.081875px;}
.ls35{letter-spacing:-0.075600px;}
.ls53{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.071820px;}
.ls38{letter-spacing:-0.061731px;}
.ls48{letter-spacing:-0.058644px;}
.ls37{letter-spacing:-0.048600px;}
.ls2b{letter-spacing:-0.048096px;}
.ls47{letter-spacing:-0.046170px;}
.ls3b{letter-spacing:-0.045691px;}
.ls52{letter-spacing:-0.042084px;}
.ls36{letter-spacing:-0.032400px;}
.ls46{letter-spacing:-0.030780px;}
.ls34{letter-spacing:-0.018036px;}
.ls44{letter-spacing:-0.017134px;}
.ls50{letter-spacing:-0.014364px;}
.ls2d{letter-spacing:-0.012024px;}
.ls3d{letter-spacing:-0.011423px;}
.ls30{letter-spacing:-0.010800px;}
.ls40{letter-spacing:-0.010260px;}
.ls33{letter-spacing:-0.006012px;}
.ls43{letter-spacing:-0.005711px;}
.ls2a{letter-spacing:-0.004788px;}
.ls3a{letter-spacing:-0.004549px;}
.lsd{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000566px;}
.lsa2{letter-spacing:0.000699px;}
.ls2{letter-spacing:0.000925px;}
.ls93{letter-spacing:0.001518px;}
.ls90{letter-spacing:0.001890px;}
.lsf{letter-spacing:0.002239px;}
.ls6f{letter-spacing:0.002316px;}
.ls8e{letter-spacing:0.002522px;}
.ls4{letter-spacing:0.002725px;}
.ls94{letter-spacing:0.002728px;}
.ls9c{letter-spacing:0.002818px;}
.ls92{letter-spacing:0.002940px;}
.ls8d{letter-spacing:0.003291px;}
.ls7a{letter-spacing:0.003396px;}
.lsc{letter-spacing:0.003488px;}
.ls49{letter-spacing:0.003494px;}
.ls9b{letter-spacing:0.003720px;}
.ls8{letter-spacing:0.003859px;}
.ls91{letter-spacing:0.004704px;}
.ls78{letter-spacing:0.004815px;}
.ls5f{letter-spacing:0.004925px;}
.ls28{letter-spacing:0.005130px;}
.ls1c{letter-spacing:0.005400px;}
.ls8f{letter-spacing:0.005415px;}
.ls25{letter-spacing:0.015390px;}
.ls19{letter-spacing:0.016200px;}
.ls22{letter-spacing:0.017134px;}
.ls16{letter-spacing:0.018036px;}
.ls27{letter-spacing:0.020520px;}
.ls1b{letter-spacing:0.021600px;}
.ls26{letter-spacing:0.025650px;}
.ls1a{letter-spacing:0.027000px;}
.ls24{letter-spacing:0.028557px;}
.ls18{letter-spacing:0.030060px;}
.ls23{letter-spacing:0.030780px;}
.ls17{letter-spacing:0.032400px;}
.ls4e{letter-spacing:0.037800px;}
.ls21{letter-spacing:0.045691px;}
.ls15{letter-spacing:0.048096px;}
.ls20{letter-spacing:0.051403px;}
.ls4c{letter-spacing:0.052668px;}
.ls14{letter-spacing:0.054108px;}
.ls1d{letter-spacing:0.054583px;}
.ls10{letter-spacing:0.057456px;}
.ls1f{letter-spacing:0.085671px;}
.ls13{letter-spacing:0.090180px;}
.ls4d{letter-spacing:0.172368px;}
.ls1e{letter-spacing:0.172847px;}
.ls12{letter-spacing:0.181944px;}
.ls11{letter-spacing:0.191520px;}
.lse{letter-spacing:1.275394px;}
.lsa{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls77{letter-spacing:11.835006px;}
.ls7c{letter-spacing:11.836704px;}
.ls81{letter-spacing:11.840286px;}
.lsb{letter-spacing:11.954850px;}
.ls70{letter-spacing:11.955746px;}
.ls5c{letter-spacing:12.103983px;}
.ls9d{letter-spacing:13.321460px;}
.ls95{letter-spacing:13.448400px;}
.ls97{letter-spacing:13.454400px;}
.ls99{letter-spacing:13.511204px;}
.ls9e{letter-spacing:13.526871px;}
.lsa1{letter-spacing:13.614101px;}
.ls98{letter-spacing:13.730461px;}
.lsa4{letter-spacing:14.262165px;}
.ls4b{letter-spacing:14.286368px;}
.lsa6{letter-spacing:14.420988px;}
.ls4a{letter-spacing:14.884124px;}
.ls96{letter-spacing:15.744518px;}
.lsa0{letter-spacing:16.297459px;}
.lsa5{letter-spacing:16.344518px;}
.ls9f{letter-spacing:18.847509px;}
.ls9a{letter-spacing:19.326871px;}
.lsa3{letter-spacing:19.585694px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:57.421200px;}
.ls6{letter-spacing:70.236600px;}
.ls9{letter-spacing:72.353510px;}
.ls5{letter-spacing:72.361200px;}
.ls60{letter-spacing:93.730919px;}
.ls6e{letter-spacing:100.443119px;}
.ls5b{letter-spacing:117.944519px;}
.ls7b{letter-spacing:120.598250px;}
.ls58{letter-spacing:121.935119px;}
.ls8b{letter-spacing:125.239370px;}
.ls68{letter-spacing:128.647319px;}
.ls6b{letter-spacing:138.081119px;}
.ls65{letter-spacing:139.441919px;}
.ls59{letter-spacing:139.634220px;}
.ls7e{letter-spacing:140.857610px;}
.ls76{letter-spacing:142.351850px;}
.ls87{letter-spacing:143.159690px;}
.ls54{letter-spacing:143.260281px;}
.ls6a{letter-spacing:143.265681px;}
.ls85{letter-spacing:144.527210px;}
.ls56{letter-spacing:151.741020px;}
.ls74{letter-spacing:155.773610px;}
.ls67{letter-spacing:157.596719px;}
.ls80{letter-spacing:160.720970px;}
.ls71{letter-spacing:161.783306px;}
.ls84{letter-spacing:162.806570px;}
.ls57{letter-spacing:163.623119px;}
.ls86{letter-spacing:168.155210px;}
.ls7d{letter-spacing:168.244970px;}
.ls5e{letter-spacing:169.895820px;}
.ls69{letter-spacing:180.811319px;}
.ls66{letter-spacing:181.102919px;}
.ls79{letter-spacing:181.122890px;}
.ls75{letter-spacing:186.497930px;}
.ls83{letter-spacing:192.110570px;}
.ls6c{letter-spacing:193.231319px;}
.ls55{letter-spacing:194.566199px;}
.ls61{letter-spacing:195.464820px;}
.ls5a{letter-spacing:196.264020px;}
.ls64{letter-spacing:197.275919px;}
.ls7f{letter-spacing:203.969450px;}
.ls88{letter-spacing:207.681290px;}
.ls5d{letter-spacing:210.711119px;}
.ls62{letter-spacing:213.841020px;}
.ls6d{letter-spacing:214.755719px;}
.ls63{letter-spacing:215.187719px;}
.ls8a{letter-spacing:216.889610px;}
.ls82{letter-spacing:219.920330px;}
.ls89{letter-spacing:272.065610px;}
.ls72{letter-spacing:288.277968px;}
.ls73{letter-spacing:406.309956px;}
.ls8c{letter-spacing:601.876090px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws10{word-spacing:-17.394700px;}
.wsa{word-spacing:-15.655334px;}
.ws21{word-spacing:-14.943900px;}
.ws1b{word-spacing:-13.915795px;}
.wsd3{word-spacing:-13.776694px;}
.ws29{word-spacing:-13.449600px;}
.ws1f{word-spacing:-12.161520px;}
.ws9b{word-spacing:-12.151944px;}
.wsab{word-spacing:-12.104640px;}
.ws19{word-spacing:-11.955150px;}
.wsd0{word-spacing:-11.835648px;}
.ws25{word-spacing:-11.553444px;}
.ws5{word-spacing:-11.357400px;}
.ws112{word-spacing:-4.680461px;}
.wsf8{word-spacing:-4.602721px;}
.ws121{word-spacing:-4.303872px;}
.ws89{word-spacing:-4.303843px;}
.ws8a{word-spacing:-4.244068px;}
.ws134{word-spacing:-3.712090px;}
.ws83{word-spacing:-3.526760px;}
.wsa5{word-spacing:-3.468924px;}
.wsa6{word-spacing:-3.390768px;}
.ws78{word-spacing:-2.988780px;}
.ws7b{word-spacing:-2.929004px;}
.ws91{word-spacing:-2.749678px;}
.ws122{word-spacing:-2.743718px;}
.ws123{word-spacing:-2.689920px;}
.ws4a{word-spacing:-2.354400px;}
.ws6f{word-spacing:-2.236680px;}
.wsf0{word-spacing:-2.211697px;}
.ws13b{word-spacing:-2.098138px;}
.ws24{word-spacing:-2.032370px;}
.wsa9{word-spacing:-2.019600px;}
.wsa8{word-spacing:-2.008800px;}
.ws49{word-spacing:-1.944000px;}
.ws149{word-spacing:-1.936742px;}
.wsd{word-spacing:-1.908367px;}
.ws125{word-spacing:-1.882944px;}
.ws6e{word-spacing:-1.846800px;}
.ws126{word-spacing:-1.721549px;}
.wsaf{word-spacing:-1.694650px;}
.ws15{word-spacing:-1.554166px;}
.ws101{word-spacing:-1.494390px;}
.wsc{word-spacing:-1.322630px;}
.wsf2{word-spacing:-1.195512px;}
.ws74{word-spacing:-1.135736px;}
.ws7a{word-spacing:-1.016185px;}
.ws10e{word-spacing:-0.968371px;}
.ws9a{word-spacing:-0.717307px;}
.ws80{word-spacing:-0.657532px;}
.wsfa{word-spacing:-0.597756px;}
.ws127{word-spacing:-0.591782px;}
.ws139{word-spacing:-0.537984px;}
.ws7f{word-spacing:-0.537980px;}
.wsbf{word-spacing:-0.435767px;}
.ws104{word-spacing:-0.418429px;}
.ws11a{word-spacing:-0.376589px;}
.wsfb{word-spacing:-0.358654px;}
.ws119{word-spacing:-0.322790px;}
.ws7c{word-spacing:-0.298878px;}
.ws12e{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.268128px;}
.wsa2{word-spacing:-0.263340px;}
.ws51{word-spacing:-0.254722px;}
.ws13{word-spacing:-0.239102px;}
.ws117{word-spacing:-0.215194px;}
.wsa7{word-spacing:-0.198396px;}
.ws1e{word-spacing:-0.179327px;}
.ws124{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.143640px;}
.ws4f{word-spacing:-0.136458px;}
.ws7e{word-spacing:-0.119551px;}
.wse9{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.081396px;}
.ws50{word-spacing:-0.077326px;}
.wsa1{word-spacing:-0.076608px;}
.ws2{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.wsac{word-spacing:-0.048419px;}
.wsd1{word-spacing:-0.047343px;}
.ws4e{word-spacing:-0.015433px;}
.ws73{word-spacing:-0.014661px;}
.wsdd{word-spacing:-0.014328px;}
.wse1{word-spacing:-0.011878px;}
.wsb{word-spacing:-0.009850px;}
.ws136{word-spacing:-0.008477px;}
.ws13c{word-spacing:-0.003466px;}
.ws110{word-spacing:-0.002774px;}
.ws8{word-spacing:-0.001500px;}
.ws18{word-spacing:-0.001225px;}
.ws135{word-spacing:-0.000922px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:0.000350px;}
.wscb{word-spacing:0.001365px;}
.ws10c{word-spacing:0.001382px;}
.ws7{word-spacing:0.001792px;}
.ws3{word-spacing:0.002717px;}
.ws4{word-spacing:0.004500px;}
.ws52{word-spacing:0.005711px;}
.ws2d{word-spacing:0.006012px;}
.ws28{word-spacing:0.053798px;}
.ws14{word-spacing:0.059776px;}
.ws6a{word-spacing:0.062825px;}
.ws45{word-spacing:0.066132px;}
.ws57{word-spacing:0.091382px;}
.ws32{word-spacing:0.096192px;}
.wsbd{word-spacing:0.096837px;}
.ws58{word-spacing:0.102805px;}
.ws106{word-spacing:0.107597px;}
.ws33{word-spacing:0.108216px;}
.ws11{word-spacing:0.119551px;}
.wsdb{word-spacing:0.142028px;}
.ws5f{word-spacing:0.143640px;}
.wscf{word-spacing:0.145256px;}
.ws3a{word-spacing:0.151200px;}
.ws71{word-spacing:0.153900px;}
.wsaa{word-spacing:0.156600px;}
.ws131{word-spacing:0.161395px;}
.ws4c{word-spacing:0.162000px;}
.ws70{word-spacing:0.169290px;}
.ws61{word-spacing:0.174420px;}
.ws4b{word-spacing:0.178200px;}
.ws9f{word-spacing:0.179327px;}
.ws5e{word-spacing:0.182765px;}
.ws3c{word-spacing:0.183600px;}
.ws60{word-spacing:0.184680px;}
.ws39{word-spacing:0.192384px;}
.wsb6{word-spacing:0.193674px;}
.ws3b{word-spacing:0.194400px;}
.ws111{word-spacing:0.215194px;}
.ws72{word-spacing:0.220590px;}
.ws4d{word-spacing:0.232200px;}
.wsf{word-spacing:0.239102px;}
.ws115{word-spacing:0.268992px;}
.ws77{word-spacing:0.298878px;}
.ws92{word-spacing:0.358654px;}
.ws105{word-spacing:0.376589px;}
.ws56{word-spacing:0.388375px;}
.ws31{word-spacing:0.408816px;}
.ws16{word-spacing:0.418429px;}
.ws81{word-spacing:0.478205px;}
.ws13d{word-spacing:0.591782px;}
.ws102{word-spacing:0.597756px;}
.ws103{word-spacing:0.657532px;}
.ws148{word-spacing:0.699379px;}
.ws96{word-spacing:0.717307px;}
.wsfc{word-spacing:0.777083px;}
.ws13f{word-spacing:0.806976px;}
.wsfd{word-spacing:0.836858px;}
.ws95{word-spacing:0.896634px;}
.ws10b{word-spacing:0.968371px;}
.ws142{word-spacing:1.022170px;}
.ws82{word-spacing:1.075961px;}
.ws11d{word-spacing:1.129766px;}
.ws27{word-spacing:1.183565px;}
.wsf4{word-spacing:1.195512px;}
.wsf5{word-spacing:1.255288px;}
.ws5c{word-spacing:1.444984px;}
.ws26{word-spacing:1.452557px;}
.ws5d{word-spacing:1.473541px;}
.ws37{word-spacing:1.521036px;}
.ws38{word-spacing:1.551096px;}
.ws79{word-spacing:1.613941px;}
.ws9d{word-spacing:1.667750px;}
.ws10d{word-spacing:1.775347px;}
.ws66{word-spacing:1.804802px;}
.ws67{word-spacing:1.816225px;}
.ws41{word-spacing:1.899792px;}
.ws42{word-spacing:1.911816px;}
.ws9c{word-spacing:1.990541px;}
.ws8d{word-spacing:2.032370px;}
.ws107{word-spacing:2.044339px;}
.ws8f{word-spacing:2.092146px;}
.ws12{word-spacing:2.151922px;}
.ws12b{word-spacing:2.205734px;}
.ws141{word-spacing:2.259533px;}
.ws75{word-spacing:2.271473px;}
.ws86{word-spacing:2.450800px;}
.ws94{word-spacing:2.630126px;}
.ws93{word-spacing:2.689902px;}
.ws108{word-spacing:2.689920px;}
.ws76{word-spacing:2.749678px;}
.ws69{word-spacing:2.844277px;}
.ws130{word-spacing:2.851315px;}
.ws8c{word-spacing:2.869229px;}
.ws68{word-spacing:2.872834px;}
.ws11e{word-spacing:2.905114px;}
.ws88{word-spacing:2.988780px;}
.ws44{word-spacing:2.993976px;}
.ws43{word-spacing:3.024036px;}
.ws8b{word-spacing:3.048556px;}
.ws65{word-spacing:3.181250px;}
.ws40{word-spacing:3.348684px;}
.ws147{word-spacing:3.443098px;}
.ws97{word-spacing:3.526760px;}
.ws64{word-spacing:3.558202px;}
.ws3f{word-spacing:3.745476px;}
.wsff{word-spacing:3.765863px;}
.ws12a{word-spacing:3.765888px;}
.ws9e{word-spacing:3.825638px;}
.ws99{word-spacing:3.885414px;}
.ws10a{word-spacing:3.981082px;}
.ws90{word-spacing:4.124516px;}
.ws84{word-spacing:4.244068px;}
.ws100{word-spacing:4.542946px;}
.ws6c{word-spacing:4.596480px;}
.wse{word-spacing:4.602721px;}
.ws6b{word-spacing:4.606740px;}
.ws11b{word-spacing:4.626662px;}
.ws6d{word-spacing:4.693950px;}
.wsf9{word-spacing:4.782048px;}
.ws47{word-spacing:4.838400px;}
.ws132{word-spacing:4.841856px;}
.ws46{word-spacing:4.849200px;}
.ws48{word-spacing:4.941000px;}
.ws13a{word-spacing:5.003251px;}
.ws8e{word-spacing:5.080926px;}
.ws87{word-spacing:5.140702px;}
.ws146{word-spacing:5.218445px;}
.wsa0{word-spacing:5.260253px;}
.ws12f{word-spacing:5.272243px;}
.wsf1{word-spacing:5.320028px;}
.ws144{word-spacing:5.372544px;}
.ws116{word-spacing:5.375626px;}
.ws128{word-spacing:5.377027px;}
.ws143{word-spacing:5.378726px;}
.ws109{word-spacing:5.378822px;}
.wsea{word-spacing:5.379840px;}
.ws118{word-spacing:5.433638px;}
.wsf3{word-spacing:5.439580px;}
.ws138{word-spacing:5.487437px;}
.wsa3{word-spacing:5.603184px;}
.wsa4{word-spacing:5.639256px;}
.wsf7{word-spacing:5.798233px;}
.ws113{word-spacing:5.810227px;}
.ws11c{word-spacing:5.864026px;}
.ws5a{word-spacing:5.917010px;}
.ws1c{word-spacing:5.977560px;}
.ws59{word-spacing:5.991259px;}
.ws145{word-spacing:6.025421px;}
.ws5b{word-spacing:6.031238px;}
.ws85{word-spacing:6.097111px;}
.ws35{word-spacing:6.228432px;}
.ws34{word-spacing:6.306588px;}
.ws36{word-spacing:6.348672px;}
.ws62{word-spacing:6.362500px;}
.ws98{word-spacing:6.395989px;}
.ws63{word-spacing:6.442459px;}
.wsef{word-spacing:6.515540px;}
.ws3d{word-spacing:6.697368px;}
.ws3e{word-spacing:6.781536px;}
.wsfe{word-spacing:7.053521px;}
.ws133{word-spacing:7.370381px;}
.ws13e{word-spacing:7.585574px;}
.ws1d{word-spacing:8.009930px;}
.ws11f{word-spacing:8.015962px;}
.ws140{word-spacing:8.177357px;}
.ws114{word-spacing:8.338752px;}
.ws129{word-spacing:8.607744px;}
.ws23{word-spacing:9.265218px;}
.wsf6{word-spacing:9.444545px;}
.ws22{word-spacing:9.623872px;}
.ws12d{word-spacing:9.845107px;}
.ws10f{word-spacing:10.006502px;}
.ws137{word-spacing:10.759680px;}
.ws20{word-spacing:11.118262px;}
.ws120{word-spacing:11.136269px;}
.ws55{word-spacing:11.468491px;}
.ws54{word-spacing:12.016786px;}
.ws30{word-spacing:12.072096px;}
.ws53{word-spacing:12.113879px;}
.ws12c{word-spacing:12.481229px;}
.ws2f{word-spacing:12.649248px;}
.ws2e{word-spacing:12.751452px;}
.ws7d{word-spacing:14.166817px;}
.ws17{word-spacing:28.931390px;}
.wsae{word-spacing:51.388240px;}
.wsba{word-spacing:95.045633px;}
.wsc7{word-spacing:107.976370px;}
.wsb1{word-spacing:125.498290px;}
.wsbe{word-spacing:125.500908px;}
.wsb9{word-spacing:126.707890px;}
.wscd{word-spacing:131.980234px;}
.wsbb{word-spacing:137.600770px;}
.wscc{word-spacing:137.606170px;}
.wsc3{word-spacing:138.810370px;}
.wsc6{word-spacing:138.815770px;}
.wsb3{word-spacing:139.655716px;}
.wsb0{word-spacing:149.177583px;}
.wsb5{word-spacing:153.777347px;}
.wsb2{word-spacing:156.969490px;}
.wsd2{word-spacing:176.161785px;}
.wsb4{word-spacing:176.356993px;}
.wsc9{word-spacing:176.893001px;}
.wse8{word-spacing:177.617004px;}
.wsb7{word-spacing:180.117043px;}
.wsca{word-spacing:187.735916px;}
.wsdf{word-spacing:189.426936px;}
.wsd9{word-spacing:189.449458px;}
.wsc2{word-spacing:189.574327px;}
.wsda{word-spacing:191.548127px;}
.wsc0{word-spacing:193.497733px;}
.wsc1{word-spacing:196.038282px;}
.wsce{word-spacing:199.837316px;}
.wsc5{word-spacing:199.842716px;}
.wsd7{word-spacing:204.107752px;}
.wsb8{word-spacing:208.317692px;}
.wsd4{word-spacing:212.236840px;}
.wse5{word-spacing:212.757608px;}
.wse0{word-spacing:219.557505px;}
.wsbc{word-spacing:221.723654px;}
.wse6{word-spacing:223.362349px;}
.wse4{word-spacing:224.593256px;}
.wse3{word-spacing:225.161368px;}
.wse2{word-spacing:231.505275px;}
.wsde{word-spacing:235.197997px;}
.wsd8{word-spacing:241.270783px;}
.wsdc{word-spacing:256.596849px;}
.wsc8{word-spacing:333.476974px;}
.wsad{word-spacing:333.482374px;}
.wsd6{word-spacing:369.982356px;}
.wse7{word-spacing:370.029699px;}
.wsc4{word-spacing:432.861926px;}
.wsd5{word-spacing:441.272122px;}
.wsed{word-spacing:571.231411px;}
.wseb{word-spacing:577.956211px;}
.wsee{word-spacing:584.681011px;}
.ws1a{word-spacing:1030.199186px;}
.wsec{word-spacing:1301.590531px;}
._95{margin-left:-24.747264px;}
._0{margin-left:-11.943245px;}
._6{margin-left:-7.908365px;}
._1{margin-left:-6.641557px;}
._c{margin-left:-5.559131px;}
._5{margin-left:-4.279518px;}
._1b{margin-left:-3.174572px;}
._4{margin-left:-1.936742px;}
._9{width:1.091170px;}
._2{width:2.998354px;}
._94{width:5.864026px;}
._92{width:10.436890px;}
._93{width:11.781850px;}
._19{width:12.875677px;}
._16{width:14.154730px;}
._b{width:16.217074px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._d{width:21.160562px;}
._a{width:22.266912px;}
._1d{width:23.348506px;}
._e{width:25.010124px;}
._1e{width:26.145860px;}
._15{width:27.204364px;}
._13{width:28.931390px;}
._1c{width:30.580782px;}
._18{width:32.816804px;}
._1a{width:34.131868px;}
._8d{width:36.510962px;}
._1f{width:38.160756px;}
._14{width:40.348530px;}
._8e{width:43.618849px;}
._11{width:46.350013px;}
._8c{width:50.474530px;}
._3{width:54.404726px;}
._f{width:58.400761px;}
._3c{width:76.174231px;}
._35{width:83.037830px;}
._36{width:94.997215px;}
._24{width:98.822281px;}
._2c{width:101.313004px;}
._26{width:106.054125px;}
._37{width:107.150273px;}
._33{width:109.283213px;}
._30{width:112.300845px;}
._4d{width:115.186695px;}
._3a{width:117.437325px;}
._32{width:119.273325px;}
._31{width:125.737125px;}
._67{width:127.019175px;}
._39{width:130.052252px;}
._2b{width:133.264725px;}
._4c{width:134.358276px;}
._28{width:138.005925px;}
._23{width:142.447404px;}
._38{width:148.548142px;}
._2f{width:149.710188px;}
._49{width:150.714018px;}
._22{width:151.840604px;}
._41{width:161.059498px;}
._57{width:163.803391px;}
._52{width:168.459270px;}
._5e{width:173.901218px;}
._21{width:180.117043px;}
._51{width:181.237124px;}
._29{width:182.925320px;}
._2d{width:184.009213px;}
._61{width:187.396256px;}
._25{width:192.221683px;}
._73{width:196.451175px;}
._34{width:198.970548px;}
._5a{width:201.292091px;}
._56{width:207.076497px;}
._59{width:212.414826px;}
._27{width:213.879692px;}
._55{width:222.178784px;}
._74{width:225.721546px;}
._58{width:228.096608px;}
._4f{width:230.937299px;}
._3f{width:234.176508px;}
._45{width:237.830504px;}
._5c{width:240.826840px;}
._75{width:243.474460px;}
._5d{width:247.681091px;}
._44{width:248.760535px;}
._43{width:251.688197px;}
._4a{width:255.317036px;}
._60{width:257.129904px;}
._5f{width:265.213200px;}
._3b{width:266.654123px;}
._6e{width:268.480295px;}
._3d{width:270.042145px;}
._50{width:280.101170px;}
._4b{width:283.169205px;}
._48{width:285.996598px;}
._66{width:288.408646px;}
._42{width:291.514705px;}
._6c{width:292.532301px;}
._3e{width:294.518265px;}
._4e{width:298.116302px;}
._40{width:300.578117px;}
._2e{width:303.439116px;}
._68{width:312.413765px;}
._69{width:315.869774px;}
._47{width:317.324021px;}
._62{width:321.114917px;}
._53{width:328.954536px;}
._6d{width:332.723737px;}
._5b{width:343.343802px;}
._64{width:344.559385px;}
._6f{width:349.929153px;}
._76{width:352.595925px;}
._77{width:363.354394px;}
._54{width:366.894993px;}
._63{width:381.818004px;}
._8f{width:385.304141px;}
._65{width:401.559037px;}
._90{width:405.209549px;}
._91{width:416.399616px;}
._6b{width:440.759532px;}
._2a{width:445.014985px;}
._46{width:495.913651px;}
._71{width:533.882410px;}
._6a{width:548.716270px;}
._72{width:552.866789px;}
._7c{width:712.766390px;}
._86{width:739.988381px;}
._87{width:885.997238px;}
._88{width:900.949594px;}
._7f{width:918.868061px;}
._70{width:950.499002px;}
._82{width:1032.544080px;}
._84{width:1044.272131px;}
._83{width:1053.364061px;}
._80{width:1072.785283px;}
._89{width:1083.760157px;}
._8a{width:1123.513574px;}
._85{width:1131.048950px;}
._78{width:1169.780554px;}
._7e{width:1224.227779px;}
._81{width:1237.679779px;}
._7a{width:1262.962627px;}
._7d{width:1364.587805px;}
._79{width:1400.686998px;}
._7b{width:1406.442960px;}
._17{width:1560.029287px;}
._12{width:1642.193522px;}
._8b{width:2099.724836px;}
._10{width:2123.634836px;}
._20{width:3502.974836px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs10{font-size:36.652710px;}
.fs13{font-size:36.821664px;}
.fsc{font-size:38.581800px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:45.486000px;}
.fs6{font-size:47.236800px;}
.fs12{font-size:47.342592px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs11{font-size:48.418560px;}
.fsf{font-size:51.300000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fse{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y4b{bottom:-487.919550px;}
.y4a{bottom:-468.389100px;}
.y49{bottom:-448.769550px;}
.y48{bottom:-424.379469px;}
.y4c{bottom:-187.499400px;}
.y47{bottom:-139.439226px;}
.y46{bottom:-119.189307px;}
.y45{bottom:-98.939388px;}
.y44{bottom:-78.689469px;}
.y67{bottom:-77.150498px;}
.y66{bottom:-58.596570px;}
.y43{bottom:-58.439550px;}
.ybf{bottom:-53.392950px;}
.y65{bottom:-39.957998px;}
.ybe{bottom:-33.773400px;}
.y42{bottom:-20.639550px;}
.y64{bottom:-16.787421px;}
.ybd{bottom:-9.383910px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.y19{bottom:3.425340px;}
.y41{bottom:3.751494px;}
.y18{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y2d{bottom:63.780000px;}
.y6b{bottom:105.580500px;}
.y1ef{bottom:111.592500px;}
.y16c{bottom:119.073000px;}
.y95{bottom:119.571000px;}
.y192{bottom:120.376500px;}
.yb7{bottom:122.022000px;}
.y6a{bottom:124.813500px;}
.y1a4{bottom:129.343500px;}
.y1ee{bottom:130.960500px;}
.y16b{bottom:139.338000px;}
.y94{bottom:139.834500px;}
.y191{bottom:140.641500px;}
.yb6{bottom:142.285500px;}
.y1bf{bottom:143.209500px;}
.y69{bottom:144.046500px;}
.y1a3{bottom:149.607000px;}
.y1ed{bottom:150.327000px;}
.y128{bottom:150.536400px;}
.yff{bottom:156.685650px;}
.y16a{bottom:159.601500px;}
.y93{bottom:160.098000px;}
.y190{bottom:160.905000px;}
.yb5{bottom:162.549000px;}
.y1be{bottom:162.577500px;}
.y53{bottom:166.476000px;}
.y1ec{bottom:169.695000px;}
.y1a2{bottom:169.872000px;}
.y127{bottom:171.339600px;}
.yfd{bottom:177.963000px;}
.y126{bottom:178.573200px;}
.y169{bottom:179.866500px;}
.y18f{bottom:181.170000px;}
.y1bd{bottom:181.945500px;}
.yb4{bottom:182.814000px;}
.y2c{bottom:183.967500px;}
.yfc{bottom:185.359650px;}
.y1eb{bottom:189.061500px;}
.y92{bottom:189.328500px;}
.y1a1{bottom:190.135500px;}
.yfe{bottom:192.756300px;}
.y168{bottom:200.130000px;}
.y1bc{bottom:201.312000px;}
.y18e{bottom:201.433500px;}
.yb3{bottom:203.077500px;}
.y2b{bottom:204.231000px;}
.y125{bottom:206.610000px;}
.y68{bottom:208.248645px;}
.y1ea{bottom:208.429500px;}
.y1a0{bottom:210.400500px;}
.y123{bottom:213.842280px;}
.yfa{bottom:214.033650px;}
.y167{bottom:220.393500px;}
.y1bb{bottom:220.680000px;}
.y124{bottom:221.075880px;}
.yf9{bottom:221.430300px;}
.y18d{bottom:221.697000px;}
.yb2{bottom:223.342500px;}
.y91{bottom:224.148000px;}
.y1e9{bottom:227.797500px;}
.yfb{bottom:228.828300px;}
.y19f{bottom:230.664000px;}
.y1ba{bottom:240.046500px;}
.y166{bottom:240.658500px;}
.y122{bottom:241.879080px;}
.y18c{bottom:241.962000px;}
.y2a{bottom:242.428500px;}
.yb1{bottom:243.606000px;}
.y90{bottom:244.413000px;}
.y1e8{bottom:247.164000px;}
.y121{bottom:249.111360px;}
.yf7{bottom:250.104300px;}
.y19e{bottom:250.927500px;}
.y63{bottom:253.905810px;}
.yf6{bottom:257.502300px;}
.y1b9{bottom:259.414500px;}
.y165{bottom:260.922000px;}
.y18b{bottom:262.225500px;}
.y29{bottom:262.692000px;}
.y8f{bottom:264.676500px;}
.yf8{bottom:264.898950px;}
.y1e7{bottom:266.532000px;}
.y19d{bottom:271.192500px;}
.yb0{bottom:272.836500px;}
.y62{bottom:273.143233px;}
.y120{bottom:277.148160px;}
.y1b8{bottom:278.782500px;}
.y164{bottom:281.185500px;}
.y18a{bottom:282.490500px;}
.y28{bottom:282.957000px;}
.y11e{bottom:284.381760px;}
.y8e{bottom:284.941500px;}
.y1e6{bottom:285.898500px;}
.yf4{bottom:286.176300px;}
.y19c{bottom:291.456000px;}
.y11f{bottom:291.614040px;}
.y61{bottom:292.380656px;}
.yf3{bottom:293.572950px;}
.y1b7{bottom:298.149000px;}
.yca{bottom:300.954000px;}
.yf5{bottom:300.970950px;}
.y163{bottom:301.450500px;}
.y189{bottom:302.754000px;}
.y27{bottom:303.220500px;}
.y8d{bottom:305.205000px;}
.y1e5{bottom:305.266500px;}
.yaf{bottom:307.656000px;}
.y60{bottom:311.618079px;}
.y19b{bottom:311.721000px;}
.y11d{bottom:312.418560px;}
.y1b6{bottom:317.517000px;}
.y11c{bottom:319.650840px;}
.yc9{bottom:321.217500px;}
.y162{bottom:321.714000px;}
.yf1{bottom:322.246950px;}
.y188{bottom:323.017500px;}
.y26{bottom:323.485500px;}
.y1e4{bottom:324.634500px;}
.y8c{bottom:325.468500px;}
.yf0{bottom:329.644950px;}
.y5f{bottom:330.855502px;}
.y19a{bottom:331.984500px;}
.y1b5{bottom:336.883500px;}
.yf2{bottom:337.041600px;}
.y40{bottom:339.451053px;}
.yc8{bottom:341.482500px;}
.y161{bottom:341.979000px;}
.yae{bottom:342.475500px;}
.y187{bottom:343.282500px;}
.y25{bottom:343.749000px;}
.y1e3{bottom:344.001000px;}
.y8b{bottom:345.733500px;}
.y11b{bottom:347.687640px;}
.y199{bottom:352.248000px;}
.y11a{bottom:354.921240px;}
.y1b4{bottom:356.251500px;}
.yef{bottom:358.318950px;}
.y3f{bottom:359.700972px;}
.yc7{bottom:361.746000px;}
.y160{bottom:362.242500px;}
.yad{bottom:362.739000px;}
.y1e2{bottom:363.369000px;}
.y186{bottom:363.546000px;}
.y24{bottom:364.012500px;}
.y5e{bottom:366.765502px;}
.y198{bottom:372.513000px;}
.yed{bottom:373.112250px;}
.y8a{bottom:374.964000px;}
.y1b3{bottom:375.619500px;}
.y13d{bottom:376.630500px;}
.y3e{bottom:379.950891px;}
.yc6{bottom:382.009500px;}
.y15f{bottom:382.506000px;}
.y1e1{bottom:382.735500px;}
.y119{bottom:382.958040px;}
.yac{bottom:383.004000px;}
.y185{bottom:383.811000px;}
.y23{bottom:384.277500px;}
.yee{bottom:387.906900px;}
.y5d{bottom:389.936994px;}
.y118{bottom:390.190320px;}
.y197{bottom:392.776500px;}
.y1b2{bottom:394.986000px;}
.y13c{bottom:397.288740px;}
.y3d{bottom:400.200810px;}
.y1e0{bottom:402.103500px;}
.yc5{bottom:402.274500px;}
.y15e{bottom:402.771000px;}
.yab{bottom:403.267500px;}
.y184{bottom:404.074500px;}
.y13b{bottom:404.522340px;}
.y22{bottom:404.541000px;}
.y52{bottom:408.687000px;}
.yeb{bottom:409.184250px;}
.y89{bottom:409.783500px;}
.y196{bottom:413.041500px;}
.y117{bottom:418.227120px;}
.y3c{bottom:420.450729px;}
.y1df{bottom:421.471500px;}
.yc4{bottom:422.538000px;}
.y15d{bottom:423.034500px;}
.y1b1{bottom:423.319500px;}
.yaa{bottom:423.532500px;}
.yea{bottom:423.978900px;}
.y183{bottom:424.338000px;}
.y21{bottom:424.806000px;}
.y116{bottom:425.459400px;}
.y51{bottom:428.952000px;}
.y88{bottom:430.047000px;}
.ye7{bottom:431.375550px;}
.y13a{bottom:432.557820px;}
.y195{bottom:433.305000px;}
.ye9{bottom:438.773550px;}
.y139{bottom:439.791420px;}
.y3b{bottom:440.610468px;}
.y1de{bottom:440.838000px;}
.yc3{bottom:442.803000px;}
.y15c{bottom:443.299500px;}
.ya9{bottom:443.796000px;}
.y182{bottom:444.603000px;}
.y20{bottom:445.069500px;}
.y50{bottom:449.215500px;}
.ye8{bottom:453.566850px;}
.yec{bottom:453.568200px;}
.y194{bottom:453.568500px;}
.y115{bottom:453.810360px;}
.y87{bottom:459.277500px;}
.y1dd{bottom:460.206000px;}
.y3a{bottom:460.860387px;}
.y1b0{bottom:463.383000px;}
.y15b{bottom:463.563000px;}
.ya8{bottom:464.059500px;}
.y181{bottom:464.866500px;}
.y1f{bottom:465.333000px;}
.y138{bottom:468.142380px;}
.y4f{bottom:469.479000px;}
.yc2{bottom:472.033500px;}
.y193{bottom:473.833500px;}
.ye5{bottom:474.844200px;}
.y1dc{bottom:479.572500px;}
.y1af{bottom:481.959000px;}
.ye4{bottom:482.240850px;}
.y114{bottom:483.405000px;}
.y180{bottom:485.131500px;}
.y1e{bottom:485.598000px;}
.y137{bottom:488.945580px;}
.ye6{bottom:489.638850px;}
.y4e{bottom:489.744000px;}
.y39{bottom:490.200450px;}
.y15a{bottom:492.793500px;}
.ya7{bottom:493.290000px;}
.y86{bottom:494.097000px;}
.y136{bottom:496.179180px;}
.y1db{bottom:498.940500px;}
.y1ae{bottom:500.533500px;}
.yc1{bottom:503.656500px;}
.y1f2{bottom:505.312500px;}
.y17f{bottom:505.395000px;}
.y1d{bottom:505.861500px;}
.ye2{bottom:510.914850px;}
.y85{bottom:514.362000px;}
.y1da{bottom:518.308500px;}
.ye1{bottom:518.312850px;}
.y113{bottom:519.673500px;}
.yc0{bottom:522.888000px;}
.y135{bottom:524.215980px;}
.y1f1{bottom:524.679000px;}
.y4d{bottom:524.743500px;}
.y17e{bottom:525.658500px;}
.ye3{bottom:525.709500px;}
.y1c{bottom:526.126500px;}
.y38{bottom:527.550450px;}
.ya6{bottom:528.109500px;}
.y1ad{bottom:529.063500px;}
.y134{bottom:531.448260px;}
.y84{bottom:534.625500px;}
.y159{bottom:536.670000px;}
.y1d9{bottom:537.675000px;}
.y111{bottom:540.503250px;}
.y1f0{bottom:544.047000px;}
.yb8{bottom:545.317500px;}
.y17d{bottom:545.923500px;}
.y1b{bottom:546.390000px;}
.ydf{bottom:546.986850px;}
.y37{bottom:547.173000px;}
.y110{bottom:547.899900px;}
.ya5{bottom:548.374500px;}
.y158{bottom:553.465500px;}
.yde{bottom:554.383500px;}
.y83{bottom:554.889000px;}
.y112{bottom:555.297900px;}
.y1d8{bottom:557.043000px;}
.y133{bottom:559.485060px;}
.ye0{bottom:561.781500px;}
.y1ac{bottom:563.883000px;}
.y17c{bottom:566.187000px;}
.ybc{bottom:566.526612px;}
.y1a{bottom:566.653500px;}
.y132{bottom:566.718660px;}
.ya4{bottom:568.638000px;}
.y157{bottom:570.261000px;}
.y82{bottom:575.154000px;}
.y1d7{bottom:576.409500px;}
.y10e{bottom:576.573900px;}
.ydc{bottom:583.057500px;}
.y10d{bottom:583.971900px;}
.y17b{bottom:586.452000px;}
.ybb{bottom:586.776531px;}
.y156{bottom:587.056500px;}
.y1ab{bottom:588.048000px;}
.ya3{bottom:588.903000px;}
.ydb{bottom:590.455500px;}
.y10f{bottom:591.368550px;}
.y131{bottom:595.069620px;}
.y81{bottom:595.417500px;}
.y1d6{bottom:595.777500px;}
.ydd{bottom:597.852150px;}
.y17{bottom:602.086464px;}
.y16{bottom:602.853000px;}
.y17a{bottom:606.715500px;}
.yba{bottom:607.026450px;}
.ya2{bottom:609.166500px;}
.y155{bottom:611.055000px;}
.y1aa{bottom:612.211500px;}
.y10b{bottom:612.645900px;}
.y1d5{bottom:615.145500px;}
.y80{bottom:615.682500px;}
.y130{bottom:615.872820px;}
.yda{bottom:619.129500px;}
.y10a{bottom:620.042550px;}
.y12f{bottom:623.106420px;}
.yd7{bottom:626.526150px;}
.y179{bottom:626.979000px;}
.y1a9{bottom:627.409500px;}
.y10c{bottom:627.440550px;}
.y154{bottom:627.850500px;}
.ya1{bottom:629.430000px;}
.yd6{bottom:633.922800px;}
.y1d4{bottom:634.512000px;}
.y7f{bottom:635.946000px;}
.yd8{bottom:641.320800px;}
.y15{bottom:641.859000px;}
.y1a8{bottom:642.607500px;}
.yb9{bottom:644.466450px;}
.y153{bottom:644.646000px;}
.y178{bottom:647.244000px;}
.y108{bottom:648.716550px;}
.yd9{bottom:648.717450px;}
.ya0{bottom:649.695000px;}
.y12e{bottom:651.143220px;}
.y1d3{bottom:653.880000px;}
.y107{bottom:656.113200px;}
.y7e{bottom:656.209500px;}
.y12d{bottom:658.375500px;}
.y14{bottom:660.015000px;}
.y1a7{bottom:660.349500px;}
.y152{bottom:661.441500px;}
.y109{bottom:663.511200px;}
.y177{bottom:667.507500px;}
.y9f{bottom:669.958500px;}
.yd5{bottom:669.994800px;}
.y1d2{bottom:673.246500px;}
.y7d{bottom:676.474500px;}
.yd2{bottom:677.391450px;}
.y13{bottom:683.055000px;}
.y105{bottom:684.787200px;}
.yd1{bottom:684.789450px;}
.y151{bottom:685.440000px;}
.y12c{bottom:686.726460px;}
.y176{bottom:687.772500px;}
.y104{bottom:692.185200px;}
.yd3{bottom:692.186100px;}
.y1d1{bottom:692.614500px;}
.y1a6{bottom:693.480000px;}
.y12{bottom:696.330000px;}
.y7c{bottom:696.738000px;}
.y9e{bottom:699.189000px;}
.y106{bottom:699.581850px;}
.yd4{bottom:699.584100px;}
.y150{bottom:702.235500px;}
.y12b{bottom:707.530980px;}
.y175{bottom:708.036000px;}
.y5c{bottom:708.851575px;}
.y1d0{bottom:711.982500px;}
.y1a5{bottom:713.745000px;}
.y12a{bottom:714.763260px;}
.y7b{bottom:717.003000px;}
.y14f{bottom:719.031000px;}
.y11{bottom:719.368500px;}
.y103{bottom:721.180500px;}
.yd0{bottom:721.181400px;}
.y5b{bottom:728.088998px;}
.y174{bottom:728.299500px;}
.y102{bottom:730.645350px;}
.ycf{bottom:730.646250px;}
.y1cf{bottom:731.349000px;}
.y100{bottom:732.176250px;}
.ycd{bottom:732.177150px;}
.y9d{bottom:734.008500px;}
.y14e{bottom:735.826500px;}
.y7a{bottom:737.266500px;}
.y10{bottom:737.526000px;}
.y101{bottom:742.779150px;}
.yce{bottom:742.780050px;}
.y129{bottom:743.114220px;}
.y5a{bottom:747.326421px;}
.y173{bottom:748.564500px;}
.y1ce{bottom:750.717000px;}
.yf{bottom:750.801000px;}
.y14d{bottom:752.622000px;}
.y9c{bottom:754.273500px;}
.y79{bottom:757.530000px;}
.y59{bottom:766.563844px;}
.y172{bottom:768.828000px;}
.y14c{bottom:769.417500px;}
.y1cd{bottom:770.083500px;}
.ycc{bottom:772.708500px;}
.ye{bottom:773.839500px;}
.y9b{bottom:774.537000px;}
.y78{bottom:777.795000px;}
.y58{bottom:785.801268px;}
.y14b{bottom:786.213000px;}
.yd{bottom:787.114500px;}
.y171{bottom:789.093000px;}
.y1cc{bottom:789.451500px;}
.y9a{bottom:794.800500px;}
.y77{bottom:798.058500px;}
.y14a{bottom:803.008500px;}
.y57{bottom:804.953020px;}
.yc{bottom:805.272000px;}
.y1cb{bottom:808.819500px;}
.y170{bottom:809.356500px;}
.y99{bottom:815.065500px;}
.y76{bottom:818.322000px;}
.y149{bottom:819.447000px;}
.ycb{bottom:823.531500px;}
.y56{bottom:824.190443px;}
.y1ca{bottom:828.186000px;}
.yb{bottom:828.310500px;}
.y16f{bottom:829.620000px;}
.y98{bottom:835.329000px;}
.y148{bottom:835.885500px;}
.y75{bottom:838.587000px;}
.y1c9{bottom:847.554000px;}
.y16e{bottom:849.885000px;}
.ya{bottom:850.552500px;}
.y55{bottom:852.063503px;}
.y147{bottom:852.681000px;}
.y97{bottom:855.594000px;}
.y74{bottom:858.850500px;}
.y1c8{bottom:866.920500px;}
.y146{bottom:869.476500px;}
.y16d{bottom:870.148500px;}
.y9{bottom:870.816000px;}
.y73{bottom:879.115500px;}
.y96{bottom:884.823000px;}
.y1c7{bottom:886.288500px;}
.y54{bottom:887.546002px;}
.y36{bottom:890.413500px;}
.y8{bottom:891.079500px;}
.y145{bottom:893.473500px;}
.y72{bottom:899.379000px;}
.y1c6{bottom:905.656500px;}
.y144{bottom:910.269000px;}
.y35{bottom:910.677000px;}
.y71{bottom:919.642500px;}
.y1c5{bottom:925.023000px;}
.y143{bottom:927.064500px;}
.y34{bottom:930.940500px;}
.y7{bottom:935.617500px;}
.y70{bottom:939.907500px;}
.y1c4{bottom:944.391000px;}
.y142{bottom:951.063000px;}
.y33{bottom:951.205500px;}
.y6f{bottom:960.171000px;}
.y1c3{bottom:963.757500px;}
.y6{bottom:966.013500px;}
.y141{bottom:967.858500px;}
.y32{bottom:971.469000px;}
.y6e{bottom:980.436000px;}
.y1c2{bottom:983.125500px;}
.y31{bottom:991.732500px;}
.y140{bottom:991.857000px;}
.y5{bottom:996.409500px;}
.y6d{bottom:1000.699500px;}
.y1c1{bottom:1002.493500px;}
.y30{bottom:1011.997500px;}
.y6c{bottom:1020.963000px;}
.y1c0{bottom:1021.860000px;}
.y13f{bottom:1023.475500px;}
.y4{bottom:1025.311500px;}
.y2f{bottom:1041.228000px;}
.y13e{bottom:1042.708500px;}
.y1{bottom:1063.119000px;}
.y2e{bottom:1093.531500px;}
.h1c{height:24.912389px;}
.h8{height:25.508090px;}
.h14{height:26.223567px;}
.h2a{height:26.484952px;}
.h15{height:27.855430px;}
.h6{height:30.461558px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h30{height:34.465407px;}
.h2b{height:34.512750px;}
.h31{height:34.813397px;}
.h21{height:35.006619px;}
.hd{height:35.052500px;}
.h23{height:35.248712px;}
.h26{height:35.297130px;}
.h29{height:35.633019px;}
.h20{height:35.638419px;}
.h1b{height:37.447998px;}
.h34{height:37.927872px;}
.h1d{height:38.896243px;}
.h7{height:39.165235px;}
.h13{height:39.418945px;}
.h28{height:39.434227px;}
.h19{height:41.692104px;}
.h17{height:42.309976px;}
.hb{height:43.217759px;}
.hc{height:43.516637px;}
.h3{height:43.815515px;}
.h11{height:43.886426px;}
.hf{height:44.536816px;}
.h1a{height:47.718018px;}
.h33{height:49.117939px;}
.h12{height:50.229492px;}
.h1{height:50.931027px;}
.h18{height:53.126060px;}
.h5{height:55.352206px;}
.h10{height:55.922168px;}
.h2e{height:63.394527px;}
.h2c{height:63.399807px;}
.h22{height:64.835312px;}
.h25{height:64.840712px;}
.h2d{height:71.501371px;}
.h32{height:72.039235px;}
.h2{height:77.379634px;}
.h4{height:77.792486px;}
.h2f{height:92.328927px;}
.h27{height:94.421912px;}
.h24{height:94.427312px;}
.h16{height:218.563650px;}
.he{height:319.591500px;}
.h1e{height:510.855000px;}
.h1f{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:75.364879px;}
.w1{width:207.609956px;}
.w4{width:533.148075px;}
.w3{width:542.919000px;}
.w5{width:567.590250px;}
.w0{width:918.000000px;}
.w6{width:1188.000000px;}
.xf{left:-60.357000px;}
.x1c{left:-44.994375px;}
.x3f{left:-30.210750px;}
.x10{left:-28.497106px;}
.x1d{left:-14.727475px;}
.x14{left:-9.147000px;}
.x0{left:0.000000px;}
.x41{left:1.649250px;}
.x21{left:3.655125px;}
.x8{left:29.274117px;}
.x12{left:31.713000px;}
.x1f{left:42.472125px;}
.x2{left:58.054042px;}
.x32{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.xa{left:121.065000px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.xa0{left:127.102320px;}
.xa8{left:128.746320px;}
.x9d{left:131.380440px;}
.xa7{left:138.598800px;}
.x66{left:140.216850px;}
.xa3{left:141.238800px;}
.x9a{left:142.547640px;}
.x8f{left:143.573700px;}
.x23{left:144.675000px;}
.x5{left:146.170500px;}
.x5e{left:147.266550px;}
.xa5{left:148.464480px;}
.x98{left:150.111240px;}
.x7b{left:151.969950px;}
.x75{left:154.668600px;}
.x78{left:156.181950px;}
.x54{left:157.688550px;}
.x7c{left:160.720650px;}
.x77{left:162.058500px;}
.x48{left:165.424050px;}
.xb9{left:168.120000px;}
.x63{left:169.460550px;}
.x72{left:170.579700px;}
.x8d{left:172.153200px;}
.x97{left:173.881800px;}
.x3e{left:175.205250px;}
.xba{left:179.391000px;}
.xf6{left:184.522500px;}
.xe{left:187.540500px;}
.x45{left:189.850950px;}
.x9{left:191.448000px;}
.xd9{left:193.203000px;}
.xbb{left:194.335500px;}
.x95{left:198.919500px;}
.xda{left:200.674500px;}
.xbc{left:201.934500px;}
.xdb{left:204.336000px;}
.x22{left:205.932000px;}
.xdd{left:211.201500px;}
.xb{left:216.910500px;}
.xdc{left:219.280500px;}
.x15{left:221.026500px;}
.xde{left:226.146000px;}
.xdf{left:229.806000px;}
.xbd{left:235.621500px;}
.xf7{left:236.757000px;}
.xbe{left:239.421000px;}
.xe0{left:244.750500px;}
.xe1{left:248.412000px;}
.xbf{left:254.364000px;}
.x122{left:256.726500px;}
.xc0{left:258.163500px;}
.x132{left:259.371000px;}
.x11f{left:261.220500px;}
.xe2{left:263.356500px;}
.xe3{left:267.016500px;}
.x131{left:271.954500px;}
.xc1{left:273.108000px;}
.x104{left:274.471500px;}
.xc2{left:276.907500px;}
.x105{left:278.283000px;}
.x120{left:279.975000px;}
.xe4{left:281.961000px;}
.xfd{left:283.686000px;}
.xe7{left:289.543500px;}
.xc3{left:291.852000px;}
.xe8{left:293.353500px;}
.x30{left:294.693000px;}
.xab{left:296.889000px;}
.xfe{left:298.630500px;}
.xff{left:302.358000px;}
.x9b{left:303.788280px;}
.x10b{left:307.074000px;}
.xac{left:308.170500px;}
.xc4{left:310.594500px;}
.x106{left:311.982000px;}
.x2e{left:313.039500px;}
.x100{left:317.302500px;}
.x69{left:319.870800px;}
.x101{left:321.031500px;}
.x81{left:322.146300px;}
.x49{left:323.793900px;}
.x8e{left:325.474050px;}
.xad{left:326.926500px;}
.x10c{left:329.640000px;}
.xe9{left:330.864000px;}
.x121{left:332.428500px;}
.x123{left:333.514500px;}
.x107{left:334.546500px;}
.x102{left:335.974500px;}
.x11c{left:337.633500px;}
.xae{left:341.869500px;}
.x31{left:343.486500px;}
.x10d{left:344.583000px;}
.xaf{left:345.681000px;}
.xea{left:349.618500px;}
.x11d{left:352.578000px;}
.xfa{left:354.849000px;}
.xc6{left:356.698500px;}
.x103{left:358.062000px;}
.xb0{left:360.624000px;}
.xfb{left:362.322000px;}
.x2f{left:364.587000px;}
.xc7{left:367.911000px;}
.x11e{left:371.332500px;}
.x4a{left:379.098000px;}
.x28{left:381.445500px;}
.x60{left:383.436900px;}
.x5f{left:386.621550px;}
.xeb{left:393.879000px;}
.x29{left:396.390000px;}
.xec{left:397.560000px;}
.x16{left:399.177000px;}
.xc8{left:401.538000px;}
.x96{left:405.171000px;}
.x17{left:408.406500px;}
.xe5{left:410.766000px;}
.xed{left:412.503000px;}
.xc5{left:414.604500px;}
.xee{left:416.184000px;}
.xc9{left:420.222000px;}
.xca{left:423.961500px;}
.x44{left:427.497000px;}
.xe6{left:429.372000px;}
.xef{left:431.127000px;}
.x119{left:436.219500px;}
.x125{left:437.665500px;}
.xcb{left:438.906000px;}
.x38{left:442.134000px;}
.x11a{left:443.691000px;}
.x18{left:445.557000px;}
.x10f{left:447.475500px;}
.x39{left:449.605500px;}
.x19{left:453.028500px;}
.x11b{left:454.869000px;}
.x12f{left:455.943000px;}
.xcc{left:457.590000px;}
.x2a{left:458.604000px;}
.x1a{left:460.351500px;}
.x110{left:462.420000px;}
.x126{left:465.171000px;}
.x111{left:466.227000px;}
.x1b{left:467.823000px;}
.x82{left:468.887250px;}
.x64{left:471.043800px;}
.x3a{left:472.171500px;}
.x2b{left:473.547000px;}
.x6a{left:475.582500px;}
.x9f{left:477.129360px;}
.xa6{left:478.773360px;}
.x10e{left:480.175500px;}
.x112{left:484.977000px;}
.x3b{left:487.114500px;}
.xa1{left:490.663320px;}
.xd6{left:491.710500px;}
.x3c{left:494.736000px;}
.x113{left:499.921500px;}
.x114{left:503.728500px;}
.x127{left:505.596000px;}
.xd7{left:506.655000px;}
.x99{left:508.273440px;}
.x3d{left:509.680500px;}
.xf1{left:511.275000px;}
.xa4{left:514.835760px;}
.x9e{left:516.144600px;}
.xa9{left:517.788600px;}
.x2c{left:521.286000px;}
.x115{left:522.480000px;}
.x1e{left:525.459468px;}
.x9c{left:527.643120px;}
.xd8{left:529.003500px;}
.xa2{left:537.075840px;}
.x11{left:540.120730px;}
.x20{left:542.217263px;}
.x4b{left:544.408200px;}
.x83{left:546.089700px;}
.x42{left:548.269500px;}
.x13{left:557.760514px;}
.x80{left:558.902550px;}
.x43{left:563.214000px;}
.x116{left:568.764000px;}
.x2d{left:571.179000px;}
.xaa{left:574.882500px;}
.x109{left:577.230000px;}
.x108{left:583.497000px;}
.x117{left:587.421000px;}
.x7d{left:590.175000px;}
.x10a{left:592.174500px;}
.xf8{left:594.136500px;}
.x4d{left:595.991700px;}
.x56{left:599.018400px;}
.x4c{left:601.039350px;}
.x118{left:602.365500px;}
.x55{left:604.066050px;}
.x36{left:607.782000px;}
.xf9{left:609.081000px;}
.x6b{left:610.656750px;}
.xcd{left:627.984000px;}
.x40{left:633.539601px;}
.xce{left:635.455500px;}
.x34{left:638.641500px;}
.x12c{left:640.135500px;}
.x57{left:648.591750px;}
.x65{left:651.109500px;}
.x84{left:652.487250px;}
.x35{left:653.586000px;}
.x130{left:654.895500px;}
.xcf{left:658.021500px;}
.x37{left:660.730500px;}
.x128{left:663.292500px;}
.x12d{left:667.035000px;}
.xb1{left:669.951000px;}
.xd0{left:672.966000px;}
.xd1{left:680.587500px;}
.xb2{left:684.895500px;}
.xb3{left:688.557000px;}
.x129{left:690.192000px;}
.xf2{left:693.768000px;}
.xd2{left:695.530500px;}
.xd3{left:699.342000px;}
.x90{left:701.553000px;}
.x26{left:703.183500px;}
.x85{left:705.391050px;}
.x4e{left:707.436900px;}
.xf3{left:708.712500px;}
.x67{left:713.029950px;}
.x58{left:714.838950px;}
.x12a{left:716.616000px;}
.x27{left:718.126500px;}
.x46{left:719.374950px;}
.x7e{left:721.056450px;}
.xb4{left:722.106000px;}
.x7{left:725.924982px;}
.xc{left:729.133500px;}
.xd4{left:733.039500px;}
.xd{left:736.606500px;}
.xb5{left:740.712000px;}
.xb6{left:744.372000px;}
.xf4{left:746.665500px;}
.xfc{left:748.738500px;}
.x62{left:751.963950px;}
.x86{left:753.644100px;}
.x33{left:754.959000px;}
.x79{left:756.502650px;}
.x12b{left:758.175000px;}
.x4f{left:759.529350px;}
.xb7{left:762.978000px;}
.x6c{left:766.931400px;}
.x12e{left:773.272500px;}
.xd5{left:774.360000px;}
.xb8{left:777.922500px;}
.x124{left:780.285000px;}
.x24{left:782.329500px;}
.xf5{left:789.558000px;}
.x25{left:797.274000px;}
.xf0{left:801.255000px;}
.x7a{left:807.891750px;}
.x88{left:809.065650px;}
.x6d{left:817.212150px;}
.x59{left:819.022500px;}
.x87{left:820.704000px;}
.x68{left:859.475250px;}
.x89{left:861.665700px;}
.x5a{left:869.304600px;}
.x6e{left:871.113600px;}
.x50{left:911.566350px;}
.x8a{left:913.756800px;}
.x6f{left:923.204700px;}
.x5b{left:958.331700px;}
.x52{left:960.977700px;}
.x70{left:963.241650px;}
.x51{left:964.584900px;}
.x8c{left:966.853650px;}
.x8b{left:968.801700px;}
.x5c{left:971.455050px;}
.x5d{left:974.389950px;}
.x76{left:979.691400px;}
.x73{left:984.872700px;}
.x71{left:986.888250px;}
.x47{left:993.937950px;}
.x7f{left:995.619450px;}
.x53{left:997.430400px;}
.x91{left:1005.537900px;}
.x61{left:1011.018150px;}
.x74{left:1012.707000px;}
.x92{left:1016.643000px;}
.x93{left:1090.459650px;}
.x94{left:1101.566100px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-6.004800pt;}
.v6{vertical-align:-1.262507pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:26.299200pt;}
.v9{vertical-align:29.221333pt;}
.v7{vertical-align:39.729067pt;}
.v8{vertical-align:51.434240pt;}
.v5{vertical-align:52.603200pt;}
.ls32{letter-spacing:-0.181696pt;}
.ls42{letter-spacing:-0.172611pt;}
.ls51{letter-spacing:-0.133600pt;}
.ls2e{letter-spacing:-0.117568pt;}
.ls3e{letter-spacing:-0.111690pt;}
.ls31{letter-spacing:-0.106880pt;}
.ls41{letter-spacing:-0.101536pt;}
.ls2f{letter-spacing:-0.085504pt;}
.ls3f{letter-spacing:-0.081229pt;}
.ls4f{letter-spacing:-0.080864pt;}
.ls2c{letter-spacing:-0.080160pt;}
.ls29{letter-spacing:-0.076608pt;}
.ls3c{letter-spacing:-0.076152pt;}
.ls39{letter-spacing:-0.072778pt;}
.ls35{letter-spacing:-0.067200pt;}
.ls53{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.063840pt;}
.ls38{letter-spacing:-0.054872pt;}
.ls48{letter-spacing:-0.052128pt;}
.ls37{letter-spacing:-0.043200pt;}
.ls2b{letter-spacing:-0.042752pt;}
.ls47{letter-spacing:-0.041040pt;}
.ls3b{letter-spacing:-0.040614pt;}
.ls52{letter-spacing:-0.037408pt;}
.ls36{letter-spacing:-0.028800pt;}
.ls46{letter-spacing:-0.027360pt;}
.ls34{letter-spacing:-0.016032pt;}
.ls44{letter-spacing:-0.015230pt;}
.ls50{letter-spacing:-0.012768pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls3d{letter-spacing:-0.010154pt;}
.ls30{letter-spacing:-0.009600pt;}
.ls40{letter-spacing:-0.009120pt;}
.ls33{letter-spacing:-0.005344pt;}
.ls43{letter-spacing:-0.005077pt;}
.ls2a{letter-spacing:-0.004256pt;}
.ls3a{letter-spacing:-0.004043pt;}
.lsd{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000503pt;}
.lsa2{letter-spacing:0.000621pt;}
.ls2{letter-spacing:0.000822pt;}
.ls93{letter-spacing:0.001349pt;}
.ls90{letter-spacing:0.001680pt;}
.lsf{letter-spacing:0.001990pt;}
.ls6f{letter-spacing:0.002058pt;}
.ls8e{letter-spacing:0.002242pt;}
.ls4{letter-spacing:0.002422pt;}
.ls94{letter-spacing:0.002425pt;}
.ls9c{letter-spacing:0.002505pt;}
.ls92{letter-spacing:0.002613pt;}
.ls8d{letter-spacing:0.002925pt;}
.ls7a{letter-spacing:0.003019pt;}
.lsc{letter-spacing:0.003100pt;}
.ls49{letter-spacing:0.003106pt;}
.ls9b{letter-spacing:0.003307pt;}
.ls8{letter-spacing:0.003430pt;}
.ls91{letter-spacing:0.004181pt;}
.ls78{letter-spacing:0.004280pt;}
.ls5f{letter-spacing:0.004378pt;}
.ls28{letter-spacing:0.004560pt;}
.ls1c{letter-spacing:0.004800pt;}
.ls8f{letter-spacing:0.004813pt;}
.ls25{letter-spacing:0.013680pt;}
.ls19{letter-spacing:0.014400pt;}
.ls22{letter-spacing:0.015230pt;}
.ls16{letter-spacing:0.016032pt;}
.ls27{letter-spacing:0.018240pt;}
.ls1b{letter-spacing:0.019200pt;}
.ls26{letter-spacing:0.022800pt;}
.ls1a{letter-spacing:0.024000pt;}
.ls24{letter-spacing:0.025384pt;}
.ls18{letter-spacing:0.026720pt;}
.ls23{letter-spacing:0.027360pt;}
.ls17{letter-spacing:0.028800pt;}
.ls4e{letter-spacing:0.033600pt;}
.ls21{letter-spacing:0.040614pt;}
.ls15{letter-spacing:0.042752pt;}
.ls20{letter-spacing:0.045691pt;}
.ls4c{letter-spacing:0.046816pt;}
.ls14{letter-spacing:0.048096pt;}
.ls1d{letter-spacing:0.048518pt;}
.ls10{letter-spacing:0.051072pt;}
.ls1f{letter-spacing:0.076152pt;}
.ls13{letter-spacing:0.080160pt;}
.ls4d{letter-spacing:0.153216pt;}
.ls1e{letter-spacing:0.153642pt;}
.ls12{letter-spacing:0.161728pt;}
.ls11{letter-spacing:0.170240pt;}
.lse{letter-spacing:1.133683pt;}
.lsa{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls77{letter-spacing:10.520005pt;}
.ls7c{letter-spacing:10.521515pt;}
.ls81{letter-spacing:10.524699pt;}
.lsb{letter-spacing:10.626533pt;}
.ls70{letter-spacing:10.627330pt;}
.ls5c{letter-spacing:10.759096pt;}
.ls9d{letter-spacing:11.841298pt;}
.ls95{letter-spacing:11.954133pt;}
.ls97{letter-spacing:11.959467pt;}
.ls99{letter-spacing:12.009959pt;}
.ls9e{letter-spacing:12.023885pt;}
.lsa1{letter-spacing:12.101423pt;}
.ls98{letter-spacing:12.204854pt;}
.lsa4{letter-spacing:12.677480pt;}
.ls4b{letter-spacing:12.698994pt;}
.lsa6{letter-spacing:12.818656pt;}
.ls4a{letter-spacing:13.230333pt;}
.ls96{letter-spacing:13.995127pt;}
.lsa0{letter-spacing:14.486630pt;}
.lsa5{letter-spacing:14.528460pt;}
.ls9f{letter-spacing:16.753341pt;}
.ls9a{letter-spacing:17.179441pt;}
.lsa3{letter-spacing:17.409506pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:51.041067pt;}
.ls6{letter-spacing:62.432533pt;}
.ls9{letter-spacing:64.314231pt;}
.ls5{letter-spacing:64.321067pt;}
.ls60{letter-spacing:83.316372pt;}
.ls6e{letter-spacing:89.282772pt;}
.ls5b{letter-spacing:104.839572pt;}
.ls7b{letter-spacing:107.198444pt;}
.ls58{letter-spacing:108.386772pt;}
.ls8b{letter-spacing:111.323884pt;}
.ls68{letter-spacing:114.353172pt;}
.ls6b{letter-spacing:122.738772pt;}
.ls65{letter-spacing:123.948372pt;}
.ls59{letter-spacing:124.119306pt;}
.ls7e{letter-spacing:125.206764pt;}
.ls76{letter-spacing:126.534978pt;}
.ls87{letter-spacing:127.253058pt;}
.ls54{letter-spacing:127.342472pt;}
.ls6a{letter-spacing:127.347272pt;}
.ls85{letter-spacing:128.468631pt;}
.ls56{letter-spacing:134.880906pt;}
.ls74{letter-spacing:138.465431pt;}
.ls67{letter-spacing:140.085972pt;}
.ls80{letter-spacing:142.863084pt;}
.ls71{letter-spacing:143.807383pt;}
.ls84{letter-spacing:144.716951pt;}
.ls57{letter-spacing:145.442772pt;}
.ls86{letter-spacing:149.471298pt;}
.ls7d{letter-spacing:149.551084pt;}
.ls5e{letter-spacing:151.018506pt;}
.ls69{letter-spacing:160.721172pt;}
.ls66{letter-spacing:160.980372pt;}
.ls79{letter-spacing:160.998124pt;}
.ls75{letter-spacing:165.775938pt;}
.ls83{letter-spacing:170.764951pt;}
.ls6c{letter-spacing:171.761172pt;}
.ls55{letter-spacing:172.947732pt;}
.ls61{letter-spacing:173.746506pt;}
.ls5a{letter-spacing:174.456906pt;}
.ls64{letter-spacing:175.356372pt;}
.ls7f{letter-spacing:181.306178pt;}
.ls88{letter-spacing:184.605591pt;}
.ls5d{letter-spacing:187.298772pt;}
.ls62{letter-spacing:190.080906pt;}
.ls6d{letter-spacing:190.893972pt;}
.ls63{letter-spacing:191.277972pt;}
.ls8a{letter-spacing:192.790764pt;}
.ls82{letter-spacing:195.484738pt;}
.ls89{letter-spacing:241.836098pt;}
.ls72{letter-spacing:256.247083pt;}
.ls73{letter-spacing:361.164405pt;}
.ls8c{letter-spacing:535.000969pt;}
.ws0{word-spacing:-25.362056pt;}
.ws10{word-spacing:-15.461955pt;}
.wsa{word-spacing:-13.915853pt;}
.ws21{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-12.369595pt;}
.wsd3{word-spacing:-12.245950pt;}
.ws29{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.810240pt;}
.ws9b{word-spacing:-10.801728pt;}
.wsab{word-spacing:-10.759680pt;}
.ws19{word-spacing:-10.626800pt;}
.wsd0{word-spacing:-10.520576pt;}
.ws25{word-spacing:-10.269728pt;}
.ws5{word-spacing:-10.095467pt;}
.ws112{word-spacing:-4.160410pt;}
.wsf8{word-spacing:-4.091308pt;}
.ws121{word-spacing:-3.825664pt;}
.ws89{word-spacing:-3.825638pt;}
.ws8a{word-spacing:-3.772505pt;}
.ws134{word-spacing:-3.299635pt;}
.ws83{word-spacing:-3.134898pt;}
.wsa5{word-spacing:-3.083488pt;}
.wsa6{word-spacing:-3.014016pt;}
.ws78{word-spacing:-2.656693pt;}
.ws7b{word-spacing:-2.603559pt;}
.ws91{word-spacing:-2.444158pt;}
.ws122{word-spacing:-2.438861pt;}
.ws123{word-spacing:-2.391040pt;}
.ws4a{word-spacing:-2.092800pt;}
.ws6f{word-spacing:-1.988160pt;}
.wsf0{word-spacing:-1.965953pt;}
.ws13b{word-spacing:-1.865011pt;}
.ws24{word-spacing:-1.806551pt;}
.wsa9{word-spacing:-1.795200pt;}
.wsa8{word-spacing:-1.785600pt;}
.ws49{word-spacing:-1.728000pt;}
.ws149{word-spacing:-1.721549pt;}
.wsd{word-spacing:-1.696326pt;}
.ws125{word-spacing:-1.673728pt;}
.ws6e{word-spacing:-1.641600pt;}
.ws126{word-spacing:-1.530266pt;}
.wsaf{word-spacing:-1.506355pt;}
.ws15{word-spacing:-1.381481pt;}
.ws101{word-spacing:-1.328347pt;}
.wsc{word-spacing:-1.175671pt;}
.wsf2{word-spacing:-1.062677pt;}
.ws74{word-spacing:-1.009543pt;}
.ws7a{word-spacing:-0.903276pt;}
.ws10e{word-spacing:-0.860774pt;}
.ws9a{word-spacing:-0.637606pt;}
.ws80{word-spacing:-0.584473pt;}
.wsfa{word-spacing:-0.531339pt;}
.ws127{word-spacing:-0.526029pt;}
.ws139{word-spacing:-0.478208pt;}
.ws7f{word-spacing:-0.478205pt;}
.wsbf{word-spacing:-0.387348pt;}
.ws104{word-spacing:-0.371937pt;}
.ws11a{word-spacing:-0.334746pt;}
.wsfb{word-spacing:-0.318803pt;}
.ws119{word-spacing:-0.286925pt;}
.ws7c{word-spacing:-0.265669pt;}
.ws12e{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.238336pt;}
.wsa2{word-spacing:-0.234080pt;}
.ws51{word-spacing:-0.226419pt;}
.ws13{word-spacing:-0.212535pt;}
.ws117{word-spacing:-0.191283pt;}
.wsa7{word-spacing:-0.176352pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws124{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.127680pt;}
.ws4f{word-spacing:-0.121296pt;}
.ws7e{word-spacing:-0.106268pt;}
.wse9{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.072352pt;}
.ws50{word-spacing:-0.068734pt;}
.wsa1{word-spacing:-0.068096pt;}
.ws2{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.wsac{word-spacing:-0.043039pt;}
.wsd1{word-spacing:-0.042082pt;}
.ws4e{word-spacing:-0.013718pt;}
.ws73{word-spacing:-0.013032pt;}
.wsdd{word-spacing:-0.012736pt;}
.wse1{word-spacing:-0.010558pt;}
.wsb{word-spacing:-0.008755pt;}
.ws136{word-spacing:-0.007535pt;}
.ws13c{word-spacing:-0.003081pt;}
.ws110{word-spacing:-0.002466pt;}
.ws8{word-spacing:-0.001333pt;}
.ws18{word-spacing:-0.001089pt;}
.ws135{word-spacing:-0.000819pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:0.000311pt;}
.wscb{word-spacing:0.001213pt;}
.ws10c{word-spacing:0.001229pt;}
.ws7{word-spacing:0.001593pt;}
.ws3{word-spacing:0.002415pt;}
.ws4{word-spacing:0.004000pt;}
.ws52{word-spacing:0.005077pt;}
.ws2d{word-spacing:0.005344pt;}
.ws28{word-spacing:0.047821pt;}
.ws14{word-spacing:0.053134pt;}
.ws6a{word-spacing:0.055845pt;}
.ws45{word-spacing:0.058784pt;}
.ws57{word-spacing:0.081229pt;}
.ws32{word-spacing:0.085504pt;}
.wsbd{word-spacing:0.086077pt;}
.ws58{word-spacing:0.091382pt;}
.ws106{word-spacing:0.095642pt;}
.ws33{word-spacing:0.096192pt;}
.ws11{word-spacing:0.106268pt;}
.wsdb{word-spacing:0.126247pt;}
.ws5f{word-spacing:0.127680pt;}
.wscf{word-spacing:0.129116pt;}
.ws3a{word-spacing:0.134400pt;}
.ws71{word-spacing:0.136800pt;}
.wsaa{word-spacing:0.139200pt;}
.ws131{word-spacing:0.143462pt;}
.ws4c{word-spacing:0.144000pt;}
.ws70{word-spacing:0.150480pt;}
.ws61{word-spacing:0.155040pt;}
.ws4b{word-spacing:0.158400pt;}
.ws9f{word-spacing:0.159402pt;}
.ws5e{word-spacing:0.162458pt;}
.ws3c{word-spacing:0.163200pt;}
.ws60{word-spacing:0.164160pt;}
.ws39{word-spacing:0.171008pt;}
.wsb6{word-spacing:0.172155pt;}
.ws3b{word-spacing:0.172800pt;}
.ws111{word-spacing:0.191283pt;}
.ws72{word-spacing:0.196080pt;}
.ws4d{word-spacing:0.206400pt;}
.wsf{word-spacing:0.212535pt;}
.ws115{word-spacing:0.239104pt;}
.ws77{word-spacing:0.265669pt;}
.ws92{word-spacing:0.318803pt;}
.ws105{word-spacing:0.334746pt;}
.ws56{word-spacing:0.345222pt;}
.ws31{word-spacing:0.363392pt;}
.ws16{word-spacing:0.371937pt;}
.ws81{word-spacing:0.425071pt;}
.ws13d{word-spacing:0.526029pt;}
.ws102{word-spacing:0.531339pt;}
.ws103{word-spacing:0.584473pt;}
.ws148{word-spacing:0.621670pt;}
.ws96{word-spacing:0.637606pt;}
.wsfc{word-spacing:0.690740pt;}
.ws13f{word-spacing:0.717312pt;}
.wsfd{word-spacing:0.743874pt;}
.ws95{word-spacing:0.797008pt;}
.ws10b{word-spacing:0.860774pt;}
.ws142{word-spacing:0.908595pt;}
.ws82{word-spacing:0.956410pt;}
.ws11d{word-spacing:1.004237pt;}
.ws27{word-spacing:1.052058pt;}
.wsf4{word-spacing:1.062677pt;}
.wsf5{word-spacing:1.115811pt;}
.ws5c{word-spacing:1.284430pt;}
.ws26{word-spacing:1.291162pt;}
.ws5d{word-spacing:1.309814pt;}
.ws37{word-spacing:1.352032pt;}
.ws38{word-spacing:1.378752pt;}
.ws79{word-spacing:1.434614pt;}
.ws9d{word-spacing:1.482445pt;}
.ws10d{word-spacing:1.578086pt;}
.ws66{word-spacing:1.604269pt;}
.ws67{word-spacing:1.614422pt;}
.ws41{word-spacing:1.688704pt;}
.ws42{word-spacing:1.699392pt;}
.ws9c{word-spacing:1.769370pt;}
.ws8d{word-spacing:1.806551pt;}
.ws107{word-spacing:1.817190pt;}
.ws8f{word-spacing:1.859685pt;}
.ws12{word-spacing:1.912819pt;}
.ws12b{word-spacing:1.960653pt;}
.ws141{word-spacing:2.008474pt;}
.ws75{word-spacing:2.019087pt;}
.ws86{word-spacing:2.178489pt;}
.ws94{word-spacing:2.337890pt;}
.ws93{word-spacing:2.391024pt;}
.ws108{word-spacing:2.391040pt;}
.ws76{word-spacing:2.444158pt;}
.ws69{word-spacing:2.528246pt;}
.ws130{word-spacing:2.534502pt;}
.ws8c{word-spacing:2.550426pt;}
.ws68{word-spacing:2.553630pt;}
.ws11e{word-spacing:2.582323pt;}
.ws88{word-spacing:2.656693pt;}
.ws44{word-spacing:2.661312pt;}
.ws43{word-spacing:2.688032pt;}
.ws8b{word-spacing:2.709827pt;}
.ws65{word-spacing:2.827778pt;}
.ws40{word-spacing:2.976608pt;}
.ws147{word-spacing:3.060531pt;}
.ws97{word-spacing:3.134898pt;}
.ws64{word-spacing:3.162846pt;}
.ws3f{word-spacing:3.329312pt;}
.wsff{word-spacing:3.347434pt;}
.ws12a{word-spacing:3.347456pt;}
.ws9e{word-spacing:3.400567pt;}
.ws99{word-spacing:3.453701pt;}
.ws10a{word-spacing:3.538739pt;}
.ws90{word-spacing:3.666237pt;}
.ws84{word-spacing:3.772505pt;}
.ws100{word-spacing:4.038174pt;}
.ws6c{word-spacing:4.085760pt;}
.wse{word-spacing:4.091308pt;}
.ws6b{word-spacing:4.094880pt;}
.ws11b{word-spacing:4.112589pt;}
.ws6d{word-spacing:4.172400pt;}
.wsf9{word-spacing:4.250709pt;}
.ws47{word-spacing:4.300800pt;}
.ws132{word-spacing:4.303872pt;}
.ws46{word-spacing:4.310400pt;}
.ws48{word-spacing:4.392000pt;}
.ws13a{word-spacing:4.447334pt;}
.ws8e{word-spacing:4.516379pt;}
.ws87{word-spacing:4.569513pt;}
.ws146{word-spacing:4.638618pt;}
.wsa0{word-spacing:4.675780pt;}
.ws12f{word-spacing:4.686438pt;}
.wsf1{word-spacing:4.728914pt;}
.ws144{word-spacing:4.775595pt;}
.ws116{word-spacing:4.778334pt;}
.ws128{word-spacing:4.779580pt;}
.ws143{word-spacing:4.781090pt;}
.ws109{word-spacing:4.781175pt;}
.wsea{word-spacing:4.782080pt;}
.ws118{word-spacing:4.829901pt;}
.wsf3{word-spacing:4.835182pt;}
.ws138{word-spacing:4.877722pt;}
.wsa3{word-spacing:4.980608pt;}
.wsa4{word-spacing:5.012672pt;}
.wsf7{word-spacing:5.153985pt;}
.ws113{word-spacing:5.164646pt;}
.ws11c{word-spacing:5.212467pt;}
.ws5a{word-spacing:5.259565pt;}
.ws1c{word-spacing:5.313387pt;}
.ws59{word-spacing:5.325563pt;}
.ws145{word-spacing:5.355930pt;}
.ws5b{word-spacing:5.361101pt;}
.ws85{word-spacing:5.419654pt;}
.ws35{word-spacing:5.536384pt;}
.ws34{word-spacing:5.605856pt;}
.ws36{word-spacing:5.643264pt;}
.ws62{word-spacing:5.655555pt;}
.ws98{word-spacing:5.685324pt;}
.ws63{word-spacing:5.726630pt;}
.wsef{word-spacing:5.791591pt;}
.ws3d{word-spacing:5.953216pt;}
.ws3e{word-spacing:6.028032pt;}
.wsfe{word-spacing:6.269796pt;}
.ws133{word-spacing:6.551450pt;}
.ws13e{word-spacing:6.742733pt;}
.ws1d{word-spacing:7.119938pt;}
.ws11f{word-spacing:7.125299pt;}
.ws140{word-spacing:7.268762pt;}
.ws114{word-spacing:7.412224pt;}
.ws129{word-spacing:7.651328pt;}
.ws23{word-spacing:8.235749pt;}
.wsf6{word-spacing:8.395151pt;}
.ws22{word-spacing:8.554553pt;}
.ws12d{word-spacing:8.751206pt;}
.ws10f{word-spacing:8.894669pt;}
.ws137{word-spacing:9.564160pt;}
.ws20{word-spacing:9.882899pt;}
.ws120{word-spacing:9.898906pt;}
.ws55{word-spacing:10.194214pt;}
.ws54{word-spacing:10.681587pt;}
.ws30{word-spacing:10.730752pt;}
.ws53{word-spacing:10.767893pt;}
.ws12c{word-spacing:11.094426pt;}
.ws2f{word-spacing:11.243776pt;}
.ws2e{word-spacing:11.334624pt;}
.ws7d{word-spacing:12.592726pt;}
.ws17{word-spacing:25.716791pt;}
.wsae{word-spacing:45.678436pt;}
.wsba{word-spacing:84.485007pt;}
.wsc7{word-spacing:95.978995pt;}
.wsb1{word-spacing:111.554035pt;}
.wsbe{word-spacing:111.556362pt;}
.wsb9{word-spacing:112.629235pt;}
.wscd{word-spacing:117.315763pt;}
.wsbb{word-spacing:122.311795pt;}
.wscc{word-spacing:122.316595pt;}
.wsc3{word-spacing:123.386995pt;}
.wsc6{word-spacing:123.391795pt;}
.wsb3{word-spacing:124.138414pt;}
.wsb0{word-spacing:132.602296pt;}
.wsb5{word-spacing:136.690975pt;}
.wsb2{word-spacing:139.528435pt;}
.wsd2{word-spacing:156.588253pt;}
.wsb4{word-spacing:156.761772pt;}
.wsc9{word-spacing:157.238223pt;}
.wse8{word-spacing:157.881781pt;}
.wsb7{word-spacing:160.104038pt;}
.wsca{word-spacing:166.876370pt;}
.wsdf{word-spacing:168.379498pt;}
.wsd9{word-spacing:168.399518pt;}
.wsc2{word-spacing:168.510513pt;}
.wsda{word-spacing:170.265002pt;}
.wsc0{word-spacing:171.997985pt;}
.wsc1{word-spacing:174.256251pt;}
.wsce{word-spacing:177.633170pt;}
.wsc5{word-spacing:177.637970pt;}
.wsd7{word-spacing:181.429113pt;}
.wsb8{word-spacing:185.171282pt;}
.wsd4{word-spacing:188.654969pt;}
.wse5{word-spacing:189.117874pt;}
.wse0{word-spacing:195.162227pt;}
.wsbc{word-spacing:197.087693pt;}
.wse6{word-spacing:198.544310pt;}
.wse4{word-spacing:199.638450pt;}
.wse3{word-spacing:200.143438pt;}
.wse2{word-spacing:205.782467pt;}
.wsde{word-spacing:209.064886pt;}
.wsd8{word-spacing:214.462918pt;}
.wsdc{word-spacing:228.086088pt;}
.wsc8{word-spacing:296.423977pt;}
.wsad{word-spacing:296.428777pt;}
.wsd6{word-spacing:328.873206pt;}
.wse7{word-spacing:328.915288pt;}
.wsc4{word-spacing:384.766157pt;}
.wsd5{word-spacing:392.241887pt;}
.wsed{word-spacing:507.761254pt;}
.wseb{word-spacing:513.738854pt;}
.wsee{word-spacing:519.716454pt;}
.ws1a{word-spacing:915.732610pt;}
.wsec{word-spacing:1156.969361pt;}
._95{margin-left:-21.997568pt;}
._0{margin-left:-10.616218pt;}
._6{margin-left:-7.029658pt;}
._1{margin-left:-5.903606pt;}
._c{margin-left:-4.941450pt;}
._5{margin-left:-3.804016pt;}
._1b{margin-left:-2.821842pt;}
._4{margin-left:-1.721549pt;}
._9{width:0.969929pt;}
._2{width:2.665203pt;}
._94{width:5.212467pt;}
._92{width:9.277235pt;}
._93{width:10.472755pt;}
._19{width:11.445046pt;}
._16{width:12.581982pt;}
._b{width:14.415176pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._d{width:18.809389pt;}
._a{width:19.792811pt;}
._1d{width:20.754227pt;}
._e{width:22.231221pt;}
._1e{width:23.240765pt;}
._15{width:24.181657pt;}
._13{width:25.716791pt;}
._1c{width:27.182917pt;}
._18{width:29.170493pt;}
._1a{width:30.339438pt;}
._8d{width:32.454189pt;}
._1f{width:33.920672pt;}
._14{width:35.865360pt;}
._8e{width:38.772310pt;}
._11{width:41.200012pt;}
._8c{width:44.866249pt;}
._3{width:48.359757pt;}
._f{width:51.911788pt;}
._3c{width:67.710427pt;}
._35{width:73.811405pt;}
._36{width:84.441969pt;}
._24{width:87.842028pt;}
._2c{width:90.056004pt;}
._26{width:94.270333pt;}
._37{width:95.244687pt;}
._33{width:97.140634pt;}
._30{width:99.822973pt;}
._4d{width:102.388174pt;}
._3a{width:104.388733pt;}
._32{width:106.020733pt;}
._31{width:111.766333pt;}
._67{width:112.905934pt;}
._39{width:115.602002pt;}
._2b{width:118.457533pt;}
._4c{width:119.429579pt;}
._28{width:122.671933pt;}
._23{width:126.619914pt;}
._38{width:132.042793pt;}
._2f{width:133.075722pt;}
._49{width:133.968016pt;}
._22{width:134.969426pt;}
._41{width:143.163998pt;}
._57{width:145.603015pt;}
._52{width:149.741573pt;}
._5e{width:154.578861pt;}
._21{width:160.104038pt;}
._51{width:161.099665pt;}
._29{width:162.600284pt;}
._2d{width:163.563745pt;}
._61{width:166.574450pt;}
._25{width:170.863718pt;}
._73{width:174.623267pt;}
._34{width:176.862709pt;}
._5a{width:178.926303pt;}
._56{width:184.067998pt;}
._59{width:188.813179pt;}
._27{width:190.115282pt;}
._55{width:197.492253pt;}
._74{width:200.641374pt;}
._58{width:202.752541pt;}
._4f{width:205.277599pt;}
._3f{width:208.156896pt;}
._45{width:211.404892pt;}
._5c{width:214.068303pt;}
._75{width:216.421743pt;}
._5d{width:220.160970pt;}
._44{width:221.120475pt;}
._43{width:223.722842pt;}
._4a{width:226.948476pt;}
._60{width:228.559915pt;}
._5f{width:235.745067pt;}
._3b{width:237.025887pt;}
._6e{width:238.649151pt;}
._3d{width:240.037462pt;}
._50{width:248.978818pt;}
._4b{width:251.705960pt;}
._48{width:254.219198pt;}
._66{width:256.363241pt;}
._42{width:259.124182pt;}
._6c{width:260.028712pt;}
._3e{width:261.794013pt;}
._4e{width:264.992268pt;}
._40{width:267.180548pt;}
._2e{width:269.723658pt;}
._68{width:277.701124pt;}
._69{width:280.773132pt;}
._47{width:282.065796pt;}
._62{width:285.435482pt;}
._53{width:292.404032pt;}
._6d{width:295.754433pt;}
._5b{width:305.194491pt;}
._64{width:306.275009pt;}
._6f{width:311.048136pt;}
._76{width:313.418600pt;}
._77{width:322.981683pt;}
._54{width:326.128882pt;}
._63{width:339.393782pt;}
._8f{width:342.492570pt;}
._65{width:356.941367pt;}
._90{width:360.186266pt;}
._91{width:370.132992pt;}
._6b{width:391.786250pt;}
._2a{width:395.568876pt;}
._46{width:440.812134pt;}
._71{width:474.562142pt;}
._6a{width:487.747796pt;}
._72{width:491.437146pt;}
._7c{width:633.570125pt;}
._86{width:657.767450pt;}
._87{width:787.553101pt;}
._88{width:800.844083pt;}
._7f{width:816.771610pt;}
._70{width:844.888002pt;}
._82{width:917.816960pt;}
._84{width:928.241894pt;}
._83{width:936.323610pt;}
._80{width:953.586918pt;}
._89{width:963.342362pt;}
._8a{width:998.678733pt;}
._85{width:1005.376845pt;}
._78{width:1039.804937pt;}
._7e{width:1088.202470pt;}
._81{width:1100.159804pt;}
._7a{width:1122.633446pt;}
._7d{width:1212.966938pt;}
._79{width:1245.055109pt;}
._7b{width:1250.171520pt;}
._17{width:1386.692700pt;}
._12{width:1459.727575pt;}
._8b{width:1866.422077pt;}
._10{width:1887.675410pt;}
._20{width:3113.755410pt;}
.fs10{font-size:32.580187pt;}
.fs13{font-size:32.730368pt;}
.fsc{font-size:34.294933pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:40.432000pt;}
.fs6{font-size:41.988267pt;}
.fs12{font-size:42.082304pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs11{font-size:43.038720pt;}
.fsf{font-size:45.600000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y4b{bottom:-433.706267pt;}
.y4a{bottom:-416.345867pt;}
.y49{bottom:-398.906267pt;}
.y48{bottom:-377.226195pt;}
.y4c{bottom:-166.666133pt;}
.y47{bottom:-123.945979pt;}
.y46{bottom:-105.946051pt;}
.y45{bottom:-87.946123pt;}
.y44{bottom:-69.946195pt;}
.y67{bottom:-68.578220pt;}
.y66{bottom:-52.085840pt;}
.y43{bottom:-51.946267pt;}
.ybf{bottom:-47.460400pt;}
.y65{bottom:-35.518220pt;}
.ybe{bottom:-30.020800pt;}
.y42{bottom:-18.346267pt;}
.y64{bottom:-14.922152pt;}
.ybd{bottom:-8.341253pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.y19{bottom:3.044747pt;}
.y41{bottom:3.334661pt;}
.y18{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y2d{bottom:56.693333pt;}
.y6b{bottom:93.849333pt;}
.y1ef{bottom:99.193333pt;}
.y16c{bottom:105.842667pt;}
.y95{bottom:106.285333pt;}
.y192{bottom:107.001333pt;}
.yb7{bottom:108.464000pt;}
.y6a{bottom:110.945333pt;}
.y1a4{bottom:114.972000pt;}
.y1ee{bottom:116.409333pt;}
.y16b{bottom:123.856000pt;}
.y94{bottom:124.297333pt;}
.y191{bottom:125.014667pt;}
.yb6{bottom:126.476000pt;}
.y1bf{bottom:127.297333pt;}
.y69{bottom:128.041333pt;}
.y1a3{bottom:132.984000pt;}
.y1ed{bottom:133.624000pt;}
.y128{bottom:133.810133pt;}
.yff{bottom:139.276133pt;}
.y16a{bottom:141.868000pt;}
.y93{bottom:142.309333pt;}
.y190{bottom:143.026667pt;}
.yb5{bottom:144.488000pt;}
.y1be{bottom:144.513333pt;}
.y53{bottom:147.978667pt;}
.y1ec{bottom:150.840000pt;}
.y1a2{bottom:150.997333pt;}
.y127{bottom:152.301867pt;}
.yfd{bottom:158.189333pt;}
.y126{bottom:158.731733pt;}
.y169{bottom:159.881333pt;}
.y18f{bottom:161.040000pt;}
.y1bd{bottom:161.729333pt;}
.yb4{bottom:162.501333pt;}
.y2c{bottom:163.526667pt;}
.yfc{bottom:164.764133pt;}
.y1eb{bottom:168.054667pt;}
.y92{bottom:168.292000pt;}
.y1a1{bottom:169.009333pt;}
.yfe{bottom:171.338933pt;}
.y168{bottom:177.893333pt;}
.y1bc{bottom:178.944000pt;}
.y18e{bottom:179.052000pt;}
.yb3{bottom:180.513333pt;}
.y2b{bottom:181.538667pt;}
.y125{bottom:183.653333pt;}
.y68{bottom:185.109907pt;}
.y1ea{bottom:185.270667pt;}
.y1a0{bottom:187.022667pt;}
.y123{bottom:190.082027pt;}
.yfa{bottom:190.252133pt;}
.y167{bottom:195.905333pt;}
.y1bb{bottom:196.160000pt;}
.y124{bottom:196.511893pt;}
.yf9{bottom:196.826933pt;}
.y18d{bottom:197.064000pt;}
.yb2{bottom:198.526667pt;}
.y91{bottom:199.242667pt;}
.y1e9{bottom:202.486667pt;}
.yfb{bottom:203.402933pt;}
.y19f{bottom:205.034667pt;}
.y1ba{bottom:213.374667pt;}
.y166{bottom:213.918667pt;}
.y122{bottom:215.003627pt;}
.y18c{bottom:215.077333pt;}
.y2a{bottom:215.492000pt;}
.yb1{bottom:216.538667pt;}
.y90{bottom:217.256000pt;}
.y1e8{bottom:219.701333pt;}
.y121{bottom:221.432320pt;}
.yf7{bottom:222.314933pt;}
.y19e{bottom:223.046667pt;}
.y63{bottom:225.694054pt;}
.yf6{bottom:228.890933pt;}
.y1b9{bottom:230.590667pt;}
.y165{bottom:231.930667pt;}
.y18b{bottom:233.089333pt;}
.y29{bottom:233.504000pt;}
.y8f{bottom:235.268000pt;}
.yf8{bottom:235.465733pt;}
.y1e7{bottom:236.917333pt;}
.y19d{bottom:241.060000pt;}
.yb0{bottom:242.521333pt;}
.y62{bottom:242.793985pt;}
.y120{bottom:246.353920pt;}
.y1b8{bottom:247.806667pt;}
.y164{bottom:249.942667pt;}
.y18a{bottom:251.102667pt;}
.y28{bottom:251.517333pt;}
.y11e{bottom:252.783787pt;}
.y8e{bottom:253.281333pt;}
.y1e6{bottom:254.132000pt;}
.yf4{bottom:254.378933pt;}
.y19c{bottom:259.072000pt;}
.y11f{bottom:259.212480pt;}
.y61{bottom:259.893917pt;}
.yf3{bottom:260.953733pt;}
.y1b7{bottom:265.021333pt;}
.yca{bottom:267.514667pt;}
.yf5{bottom:267.529733pt;}
.y163{bottom:267.956000pt;}
.y189{bottom:269.114667pt;}
.y27{bottom:269.529333pt;}
.y8d{bottom:271.293333pt;}
.y1e5{bottom:271.348000pt;}
.yaf{bottom:273.472000pt;}
.y60{bottom:276.993848pt;}
.y19b{bottom:277.085333pt;}
.y11d{bottom:277.705387pt;}
.y1b6{bottom:282.237333pt;}
.y11c{bottom:284.134080pt;}
.yc9{bottom:285.526667pt;}
.y162{bottom:285.968000pt;}
.yf1{bottom:286.441733pt;}
.y188{bottom:287.126667pt;}
.y26{bottom:287.542667pt;}
.y1e4{bottom:288.564000pt;}
.y8c{bottom:289.305333pt;}
.yf0{bottom:293.017733pt;}
.y5f{bottom:294.093780pt;}
.y19a{bottom:295.097333pt;}
.y1b5{bottom:299.452000pt;}
.yf2{bottom:299.592533pt;}
.y40{bottom:301.734269pt;}
.yc8{bottom:303.540000pt;}
.y161{bottom:303.981333pt;}
.yae{bottom:304.422667pt;}
.y187{bottom:305.140000pt;}
.y25{bottom:305.554667pt;}
.y1e3{bottom:305.778667pt;}
.y8b{bottom:307.318667pt;}
.y11b{bottom:309.055680pt;}
.y199{bottom:313.109333pt;}
.y11a{bottom:315.485547pt;}
.y1b4{bottom:316.668000pt;}
.yef{bottom:318.505733pt;}
.y3f{bottom:319.734197pt;}
.yc7{bottom:321.552000pt;}
.y160{bottom:321.993333pt;}
.yad{bottom:322.434667pt;}
.y1e2{bottom:322.994667pt;}
.y186{bottom:323.152000pt;}
.y24{bottom:323.566667pt;}
.y5e{bottom:326.013780pt;}
.y198{bottom:331.122667pt;}
.yed{bottom:331.655333pt;}
.y8a{bottom:333.301333pt;}
.y1b3{bottom:333.884000pt;}
.y13d{bottom:334.782667pt;}
.y3e{bottom:337.734125pt;}
.yc6{bottom:339.564000pt;}
.y15f{bottom:340.005333pt;}
.y1e1{bottom:340.209333pt;}
.y119{bottom:340.407147pt;}
.yac{bottom:340.448000pt;}
.y185{bottom:341.165333pt;}
.y23{bottom:341.580000pt;}
.yee{bottom:344.806133pt;}
.y5d{bottom:346.610662pt;}
.y118{bottom:346.835840pt;}
.y197{bottom:349.134667pt;}
.y1b2{bottom:351.098667pt;}
.y13c{bottom:353.145547pt;}
.y3d{bottom:355.734053pt;}
.y1e0{bottom:357.425333pt;}
.yc5{bottom:357.577333pt;}
.y15e{bottom:358.018667pt;}
.yab{bottom:358.460000pt;}
.y184{bottom:359.177333pt;}
.y13b{bottom:359.575413pt;}
.y22{bottom:359.592000pt;}
.y52{bottom:363.277333pt;}
.yeb{bottom:363.719333pt;}
.y89{bottom:364.252000pt;}
.y196{bottom:367.148000pt;}
.y117{bottom:371.757440pt;}
.y3c{bottom:373.733981pt;}
.y1df{bottom:374.641333pt;}
.yc4{bottom:375.589333pt;}
.y15d{bottom:376.030667pt;}
.y1b1{bottom:376.284000pt;}
.yaa{bottom:376.473333pt;}
.yea{bottom:376.870133pt;}
.y183{bottom:377.189333pt;}
.y21{bottom:377.605333pt;}
.y116{bottom:378.186133pt;}
.y51{bottom:381.290667pt;}
.y88{bottom:382.264000pt;}
.ye7{bottom:383.444933pt;}
.y13a{bottom:384.495840pt;}
.y195{bottom:385.160000pt;}
.ye9{bottom:390.020933pt;}
.y139{bottom:390.925707pt;}
.y3b{bottom:391.653749pt;}
.y1de{bottom:391.856000pt;}
.yc3{bottom:393.602667pt;}
.y15c{bottom:394.044000pt;}
.ya9{bottom:394.485333pt;}
.y182{bottom:395.202667pt;}
.y20{bottom:395.617333pt;}
.y50{bottom:399.302667pt;}
.ye8{bottom:403.170533pt;}
.yec{bottom:403.171733pt;}
.y194{bottom:403.172000pt;}
.y115{bottom:403.386987pt;}
.y87{bottom:408.246667pt;}
.y1dd{bottom:409.072000pt;}
.y3a{bottom:409.653677pt;}
.y1b0{bottom:411.896000pt;}
.y15b{bottom:412.056000pt;}
.ya8{bottom:412.497333pt;}
.y181{bottom:413.214667pt;}
.y1f{bottom:413.629333pt;}
.y138{bottom:416.126560pt;}
.y4f{bottom:417.314667pt;}
.yc2{bottom:419.585333pt;}
.y193{bottom:421.185333pt;}
.ye5{bottom:422.083733pt;}
.y1dc{bottom:426.286667pt;}
.y1af{bottom:428.408000pt;}
.ye4{bottom:428.658533pt;}
.y114{bottom:429.693333pt;}
.y180{bottom:431.228000pt;}
.y1e{bottom:431.642667pt;}
.y137{bottom:434.618293pt;}
.ye6{bottom:435.234533pt;}
.y4e{bottom:435.328000pt;}
.y39{bottom:435.733733pt;}
.y15a{bottom:438.038667pt;}
.ya7{bottom:438.480000pt;}
.y86{bottom:439.197333pt;}
.y136{bottom:441.048160pt;}
.y1db{bottom:443.502667pt;}
.y1ae{bottom:444.918667pt;}
.yc1{bottom:447.694667pt;}
.y1f2{bottom:449.166667pt;}
.y17f{bottom:449.240000pt;}
.y1d{bottom:449.654667pt;}
.ye2{bottom:454.146533pt;}
.y85{bottom:457.210667pt;}
.y1da{bottom:460.718667pt;}
.ye1{bottom:460.722533pt;}
.y113{bottom:461.932000pt;}
.yc0{bottom:464.789333pt;}
.y135{bottom:465.969760pt;}
.y1f1{bottom:466.381333pt;}
.y4d{bottom:466.438667pt;}
.y17e{bottom:467.252000pt;}
.ye3{bottom:467.297333pt;}
.y1c{bottom:467.668000pt;}
.y38{bottom:468.933733pt;}
.ya6{bottom:469.430667pt;}
.y1ad{bottom:470.278667pt;}
.y134{bottom:472.398453pt;}
.y84{bottom:475.222667pt;}
.y159{bottom:477.040000pt;}
.y1d9{bottom:477.933333pt;}
.y111{bottom:480.447333pt;}
.y1f0{bottom:483.597333pt;}
.yb8{bottom:484.726667pt;}
.y17d{bottom:485.265333pt;}
.y1b{bottom:485.680000pt;}
.ydf{bottom:486.210533pt;}
.y37{bottom:486.376000pt;}
.y110{bottom:487.022133pt;}
.ya5{bottom:487.444000pt;}
.y158{bottom:491.969333pt;}
.yde{bottom:492.785333pt;}
.y83{bottom:493.234667pt;}
.y112{bottom:493.598133pt;}
.y1d8{bottom:495.149333pt;}
.y133{bottom:497.320053pt;}
.ye0{bottom:499.361333pt;}
.y1ac{bottom:501.229333pt;}
.y17c{bottom:503.277333pt;}
.ybc{bottom:503.579211pt;}
.y1a{bottom:503.692000pt;}
.y132{bottom:503.749920pt;}
.ya4{bottom:505.456000pt;}
.y157{bottom:506.898667pt;}
.y82{bottom:511.248000pt;}
.y1d7{bottom:512.364000pt;}
.y10e{bottom:512.510133pt;}
.ydc{bottom:518.273333pt;}
.y10d{bottom:519.086133pt;}
.y17b{bottom:521.290667pt;}
.ybb{bottom:521.579139pt;}
.y156{bottom:521.828000pt;}
.y1ab{bottom:522.709333pt;}
.ya3{bottom:523.469333pt;}
.ydb{bottom:524.849333pt;}
.y10f{bottom:525.660933pt;}
.y131{bottom:528.950773pt;}
.y81{bottom:529.260000pt;}
.y1d6{bottom:529.580000pt;}
.ydd{bottom:531.424133pt;}
.y17{bottom:535.187968pt;}
.y16{bottom:535.869333pt;}
.y17a{bottom:539.302667pt;}
.yba{bottom:539.579067pt;}
.ya2{bottom:541.481333pt;}
.y155{bottom:543.160000pt;}
.y1aa{bottom:544.188000pt;}
.y10b{bottom:544.574133pt;}
.y1d5{bottom:546.796000pt;}
.y80{bottom:547.273333pt;}
.y130{bottom:547.442507pt;}
.yda{bottom:550.337333pt;}
.y10a{bottom:551.148933pt;}
.y12f{bottom:553.872373pt;}
.yd7{bottom:556.912133pt;}
.y179{bottom:557.314667pt;}
.y1a9{bottom:557.697333pt;}
.y10c{bottom:557.724933pt;}
.y154{bottom:558.089333pt;}
.ya1{bottom:559.493333pt;}
.yd6{bottom:563.486933pt;}
.y1d4{bottom:564.010667pt;}
.y7f{bottom:565.285333pt;}
.yd8{bottom:570.062933pt;}
.y15{bottom:570.541333pt;}
.y1a8{bottom:571.206667pt;}
.yb9{bottom:572.859067pt;}
.y153{bottom:573.018667pt;}
.y178{bottom:575.328000pt;}
.y108{bottom:576.636933pt;}
.yd9{bottom:576.637733pt;}
.ya0{bottom:577.506667pt;}
.y12e{bottom:578.793973pt;}
.y1d3{bottom:581.226667pt;}
.y107{bottom:583.211733pt;}
.y7e{bottom:583.297333pt;}
.y12d{bottom:585.222667pt;}
.y14{bottom:586.680000pt;}
.y1a7{bottom:586.977333pt;}
.y152{bottom:587.948000pt;}
.y109{bottom:589.787733pt;}
.y177{bottom:593.340000pt;}
.y9f{bottom:595.518667pt;}
.yd5{bottom:595.550933pt;}
.y1d2{bottom:598.441333pt;}
.y7d{bottom:601.310667pt;}
.yd2{bottom:602.125733pt;}
.y13{bottom:607.160000pt;}
.y105{bottom:608.699733pt;}
.yd1{bottom:608.701733pt;}
.y151{bottom:609.280000pt;}
.y12c{bottom:610.423520pt;}
.y176{bottom:611.353333pt;}
.y104{bottom:615.275733pt;}
.yd3{bottom:615.276533pt;}
.y1d1{bottom:615.657333pt;}
.y1a6{bottom:616.426667pt;}
.y12{bottom:618.960000pt;}
.y7c{bottom:619.322667pt;}
.y9e{bottom:621.501333pt;}
.y106{bottom:621.850533pt;}
.yd4{bottom:621.852533pt;}
.y150{bottom:624.209333pt;}
.y12b{bottom:628.916427pt;}
.y175{bottom:629.365333pt;}
.y5c{bottom:630.090289pt;}
.y1d0{bottom:632.873333pt;}
.y1a5{bottom:634.440000pt;}
.y12a{bottom:635.345120pt;}
.y7b{bottom:637.336000pt;}
.y14f{bottom:639.138667pt;}
.y11{bottom:639.438667pt;}
.y103{bottom:641.049333pt;}
.yd0{bottom:641.050133pt;}
.y5b{bottom:647.190221pt;}
.y174{bottom:647.377333pt;}
.y102{bottom:649.462533pt;}
.ycf{bottom:649.463333pt;}
.y1cf{bottom:650.088000pt;}
.y100{bottom:650.823333pt;}
.ycd{bottom:650.824133pt;}
.y9d{bottom:652.452000pt;}
.y14e{bottom:654.068000pt;}
.y7a{bottom:655.348000pt;}
.y10{bottom:655.578667pt;}
.y101{bottom:660.248133pt;}
.yce{bottom:660.248933pt;}
.y129{bottom:660.545973pt;}
.y5a{bottom:664.290152pt;}
.y173{bottom:665.390667pt;}
.y1ce{bottom:667.304000pt;}
.yf{bottom:667.378667pt;}
.y14d{bottom:668.997333pt;}
.y9c{bottom:670.465333pt;}
.y79{bottom:673.360000pt;}
.y59{bottom:681.390084pt;}
.y172{bottom:683.402667pt;}
.y14c{bottom:683.926667pt;}
.y1cd{bottom:684.518667pt;}
.ycc{bottom:686.852000pt;}
.ye{bottom:687.857333pt;}
.y9b{bottom:688.477333pt;}
.y78{bottom:691.373333pt;}
.y58{bottom:698.490016pt;}
.y14b{bottom:698.856000pt;}
.yd{bottom:699.657333pt;}
.y171{bottom:701.416000pt;}
.y1cc{bottom:701.734667pt;}
.y9a{bottom:706.489333pt;}
.y77{bottom:709.385333pt;}
.y14a{bottom:713.785333pt;}
.y57{bottom:715.513795pt;}
.yc{bottom:715.797333pt;}
.y1cb{bottom:718.950667pt;}
.y170{bottom:719.428000pt;}
.y99{bottom:724.502667pt;}
.y76{bottom:727.397333pt;}
.y149{bottom:728.397333pt;}
.ycb{bottom:732.028000pt;}
.y56{bottom:732.613727pt;}
.y1ca{bottom:736.165333pt;}
.yb{bottom:736.276000pt;}
.y16f{bottom:737.440000pt;}
.y98{bottom:742.514667pt;}
.y148{bottom:743.009333pt;}
.y75{bottom:745.410667pt;}
.y1c9{bottom:753.381333pt;}
.y16e{bottom:755.453333pt;}
.ya{bottom:756.046667pt;}
.y55{bottom:757.389780pt;}
.y147{bottom:757.938667pt;}
.y97{bottom:760.528000pt;}
.y74{bottom:763.422667pt;}
.y1c8{bottom:770.596000pt;}
.y146{bottom:772.868000pt;}
.y16d{bottom:773.465333pt;}
.y9{bottom:774.058667pt;}
.y73{bottom:781.436000pt;}
.y96{bottom:786.509333pt;}
.y1c7{bottom:787.812000pt;}
.y54{bottom:788.929780pt;}
.y36{bottom:791.478667pt;}
.y8{bottom:792.070667pt;}
.y145{bottom:794.198667pt;}
.y72{bottom:799.448000pt;}
.y1c6{bottom:805.028000pt;}
.y144{bottom:809.128000pt;}
.y35{bottom:809.490667pt;}
.y71{bottom:817.460000pt;}
.y1c5{bottom:822.242667pt;}
.y143{bottom:824.057333pt;}
.y34{bottom:827.502667pt;}
.y7{bottom:831.660000pt;}
.y70{bottom:835.473333pt;}
.y1c4{bottom:839.458667pt;}
.y142{bottom:845.389333pt;}
.y33{bottom:845.516000pt;}
.y6f{bottom:853.485333pt;}
.y1c3{bottom:856.673333pt;}
.y6{bottom:858.678667pt;}
.y141{bottom:860.318667pt;}
.y32{bottom:863.528000pt;}
.y6e{bottom:871.498667pt;}
.y1c2{bottom:873.889333pt;}
.y31{bottom:881.540000pt;}
.y140{bottom:881.650667pt;}
.y5{bottom:885.697333pt;}
.y6d{bottom:889.510667pt;}
.y1c1{bottom:891.105333pt;}
.y30{bottom:899.553333pt;}
.y6c{bottom:907.522667pt;}
.y1c0{bottom:908.320000pt;}
.y13f{bottom:909.756000pt;}
.y4{bottom:911.388000pt;}
.y2f{bottom:925.536000pt;}
.y13e{bottom:926.852000pt;}
.y1{bottom:944.994667pt;}
.y2e{bottom:972.028000pt;}
.h1c{height:22.144346pt;}
.h8{height:22.673858pt;}
.h14{height:23.309838pt;}
.h2a{height:23.542180pt;}
.h15{height:24.760382pt;}
.h6{height:27.076941pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h30{height:30.635917pt;}
.h2b{height:30.678000pt;}
.h31{height:30.945242pt;}
.h21{height:31.116995pt;}
.hd{height:31.157778pt;}
.h23{height:31.332188pt;}
.h26{height:31.375227pt;}
.h29{height:31.673795pt;}
.h20{height:31.678595pt;}
.h1b{height:33.287109pt;}
.h34{height:33.713664pt;}
.h1d{height:34.574438pt;}
.h7{height:34.813542pt;}
.h13{height:35.039062pt;}
.h28{height:35.052646pt;}
.h19{height:37.059648pt;}
.h17{height:37.608867pt;}
.hb{height:38.415786pt;}
.hc{height:38.681455pt;}
.h3{height:38.947124pt;}
.h11{height:39.010156pt;}
.hf{height:39.588281pt;}
.h1a{height:42.416016pt;}
.h33{height:43.660390pt;}
.h12{height:44.648438pt;}
.h1{height:45.272024pt;}
.h18{height:47.223164pt;}
.h5{height:49.201961pt;}
.h10{height:49.708594pt;}
.h2e{height:56.350691pt;}
.h2c{height:56.355384pt;}
.h22{height:57.631388pt;}
.h25{height:57.636188pt;}
.h2d{height:63.556775pt;}
.h32{height:64.034876pt;}
.h2{height:68.781897pt;}
.h4{height:69.148877pt;}
.h2f{height:82.070157pt;}
.h27{height:83.930588pt;}
.h24{height:83.935388pt;}
.h16{height:194.278800pt;}
.he{height:284.081333pt;}
.h1e{height:454.093333pt;}
.h1f{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:66.991004pt;}
.w1{width:184.542183pt;}
.w4{width:473.909400pt;}
.w3{width:482.594667pt;}
.w5{width:504.524667pt;}
.w0{width:816.000000pt;}
.w6{width:1056.000000pt;}
.xf{left:-53.650667pt;}
.x1c{left:-39.995000pt;}
.x3f{left:-26.854000pt;}
.x10{left:-25.330761pt;}
.x1d{left:-13.091089pt;}
.x14{left:-8.130667pt;}
.x0{left:0.000000pt;}
.x41{left:1.466000pt;}
.x21{left:3.249000pt;}
.x8{left:26.021437pt;}
.x12{left:28.189333pt;}
.x1f{left:37.753000pt;}
.x2{left:51.603593pt;}
.x32{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.xa{left:107.613333pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.xa0{left:112.979840pt;}
.xa8{left:114.441173pt;}
.x9d{left:116.782613pt;}
.xa7{left:123.198933pt;}
.x66{left:124.637200pt;}
.xa3{left:125.545600pt;}
.x9a{left:126.709013pt;}
.x8f{left:127.621067pt;}
.x23{left:128.600000pt;}
.x5{left:129.929333pt;}
.x5e{left:130.903600pt;}
.xa5{left:131.968427pt;}
.x98{left:133.432213pt;}
.x7b{left:135.084400pt;}
.x75{left:137.483200pt;}
.x78{left:138.828400pt;}
.x54{left:140.167600pt;}
.x7c{left:142.862800pt;}
.x77{left:144.052000pt;}
.x48{left:147.043600pt;}
.xb9{left:149.440000pt;}
.x63{left:150.631600pt;}
.x72{left:151.626400pt;}
.x8d{left:153.025067pt;}
.x97{left:154.561600pt;}
.x3e{left:155.738000pt;}
.xba{left:159.458667pt;}
.xf6{left:164.020000pt;}
.xe{left:166.702667pt;}
.x45{left:168.756400pt;}
.x9{left:170.176000pt;}
.xd9{left:171.736000pt;}
.xbb{left:172.742667pt;}
.x95{left:176.817333pt;}
.xda{left:178.377333pt;}
.xbc{left:179.497333pt;}
.xdb{left:181.632000pt;}
.x22{left:183.050667pt;}
.xdd{left:187.734667pt;}
.xb{left:192.809333pt;}
.xdc{left:194.916000pt;}
.x15{left:196.468000pt;}
.xde{left:201.018667pt;}
.xdf{left:204.272000pt;}
.xbd{left:209.441333pt;}
.xf7{left:210.450667pt;}
.xbe{left:212.818667pt;}
.xe0{left:217.556000pt;}
.xe1{left:220.810667pt;}
.xbf{left:226.101333pt;}
.x122{left:228.201333pt;}
.xc0{left:229.478667pt;}
.x132{left:230.552000pt;}
.x11f{left:232.196000pt;}
.xe2{left:234.094667pt;}
.xe3{left:237.348000pt;}
.x131{left:241.737333pt;}
.xc1{left:242.762667pt;}
.x104{left:243.974667pt;}
.xc2{left:246.140000pt;}
.x105{left:247.362667pt;}
.x120{left:248.866667pt;}
.xe4{left:250.632000pt;}
.xfd{left:252.165333pt;}
.xe7{left:257.372000pt;}
.xc3{left:259.424000pt;}
.xe8{left:260.758667pt;}
.x30{left:261.949333pt;}
.xab{left:263.901333pt;}
.xfe{left:265.449333pt;}
.xff{left:268.762667pt;}
.x9b{left:270.034027pt;}
.x10b{left:272.954667pt;}
.xac{left:273.929333pt;}
.xc4{left:276.084000pt;}
.x106{left:277.317333pt;}
.x2e{left:278.257333pt;}
.x100{left:282.046667pt;}
.x69{left:284.329600pt;}
.x101{left:285.361333pt;}
.x81{left:286.352267pt;}
.x49{left:287.816800pt;}
.x8e{left:289.310267pt;}
.xad{left:290.601333pt;}
.x10c{left:293.013333pt;}
.xe9{left:294.101333pt;}
.x121{left:295.492000pt;}
.x123{left:296.457333pt;}
.x107{left:297.374667pt;}
.x102{left:298.644000pt;}
.x11c{left:300.118667pt;}
.xae{left:303.884000pt;}
.x31{left:305.321333pt;}
.x10d{left:306.296000pt;}
.xaf{left:307.272000pt;}
.xea{left:310.772000pt;}
.x11d{left:313.402667pt;}
.xfa{left:315.421333pt;}
.xc6{left:317.065333pt;}
.x103{left:318.277333pt;}
.xb0{left:320.554667pt;}
.xfb{left:322.064000pt;}
.x2f{left:324.077333pt;}
.xc7{left:327.032000pt;}
.x11e{left:330.073333pt;}
.x4a{left:336.976000pt;}
.x28{left:339.062667pt;}
.x60{left:340.832800pt;}
.x5f{left:343.663600pt;}
.xeb{left:350.114667pt;}
.x29{left:352.346667pt;}
.xec{left:353.386667pt;}
.x16{left:354.824000pt;}
.xc8{left:356.922667pt;}
.x96{left:360.152000pt;}
.x17{left:363.028000pt;}
.xe5{left:365.125333pt;}
.xed{left:366.669333pt;}
.xc5{left:368.537333pt;}
.xee{left:369.941333pt;}
.xc9{left:373.530667pt;}
.xca{left:376.854667pt;}
.x44{left:379.997333pt;}
.xe6{left:381.664000pt;}
.xef{left:383.224000pt;}
.x119{left:387.750667pt;}
.x125{left:389.036000pt;}
.xcb{left:390.138667pt;}
.x38{left:393.008000pt;}
.x11a{left:394.392000pt;}
.x18{left:396.050667pt;}
.x10f{left:397.756000pt;}
.x39{left:399.649333pt;}
.x19{left:402.692000pt;}
.x11b{left:404.328000pt;}
.x12f{left:405.282667pt;}
.xcc{left:406.746667pt;}
.x2a{left:407.648000pt;}
.x1a{left:409.201333pt;}
.x110{left:411.040000pt;}
.x126{left:413.485333pt;}
.x111{left:414.424000pt;}
.x1b{left:415.842667pt;}
.x82{left:416.788667pt;}
.x64{left:418.705600pt;}
.x3a{left:419.708000pt;}
.x2b{left:420.930667pt;}
.x6a{left:422.740000pt;}
.x9f{left:424.114987pt;}
.xa6{left:425.576320pt;}
.x10e{left:426.822667pt;}
.x112{left:431.090667pt;}
.x3b{left:432.990667pt;}
.xa1{left:436.145173pt;}
.xd6{left:437.076000pt;}
.x3c{left:439.765333pt;}
.x113{left:444.374667pt;}
.x114{left:447.758667pt;}
.x127{left:449.418667pt;}
.xd7{left:450.360000pt;}
.x99{left:451.798613pt;}
.x3d{left:453.049333pt;}
.xf1{left:454.466667pt;}
.xa4{left:457.631787pt;}
.x9e{left:458.795200pt;}
.xa9{left:460.256533pt;}
.x2c{left:463.365333pt;}
.x115{left:464.426667pt;}
.x1e{left:467.075083pt;}
.x9c{left:469.016107pt;}
.xd8{left:470.225333pt;}
.xa2{left:477.400747pt;}
.x11{left:480.107315pt;}
.x20{left:481.970900pt;}
.x4b{left:483.918400pt;}
.x83{left:485.413067pt;}
.x42{left:487.350667pt;}
.x13{left:495.787123pt;}
.x80{left:496.802267pt;}
.x43{left:500.634667pt;}
.x116{left:505.568000pt;}
.x2d{left:507.714667pt;}
.xaa{left:511.006667pt;}
.x109{left:513.093333pt;}
.x108{left:518.664000pt;}
.x117{left:522.152000pt;}
.x7d{left:524.600000pt;}
.x10a{left:526.377333pt;}
.xf8{left:528.121333pt;}
.x4d{left:529.770400pt;}
.x56{left:532.460800pt;}
.x4c{left:534.257200pt;}
.x118{left:535.436000pt;}
.x55{left:536.947600pt;}
.x36{left:540.250667pt;}
.xf9{left:541.405333pt;}
.x6b{left:542.806000pt;}
.xcd{left:558.208000pt;}
.x40{left:563.146312pt;}
.xce{left:564.849333pt;}
.x34{left:567.681333pt;}
.x12c{left:569.009333pt;}
.x57{left:576.526000pt;}
.x65{left:578.764000pt;}
.x84{left:579.988667pt;}
.x35{left:580.965333pt;}
.x130{left:582.129333pt;}
.xcf{left:584.908000pt;}
.x37{left:587.316000pt;}
.x128{left:589.593333pt;}
.x12d{left:592.920000pt;}
.xb1{left:595.512000pt;}
.xd0{left:598.192000pt;}
.xd1{left:604.966667pt;}
.xb2{left:608.796000pt;}
.xb3{left:612.050667pt;}
.x129{left:613.504000pt;}
.xf2{left:616.682667pt;}
.xd2{left:618.249333pt;}
.xd3{left:621.637333pt;}
.x90{left:623.602667pt;}
.x26{left:625.052000pt;}
.x85{left:627.014267pt;}
.x4e{left:628.832800pt;}
.xf3{left:629.966667pt;}
.x67{left:633.804400pt;}
.x58{left:635.412400pt;}
.x12a{left:636.992000pt;}
.x27{left:638.334667pt;}
.x46{left:639.444400pt;}
.x7e{left:640.939067pt;}
.xb4{left:641.872000pt;}
.x7{left:645.266651pt;}
.xc{left:648.118667pt;}
.xd4{left:651.590667pt;}
.xd{left:654.761333pt;}
.xb5{left:658.410667pt;}
.xb6{left:661.664000pt;}
.xf4{left:663.702667pt;}
.xfc{left:665.545333pt;}
.x62{left:668.412400pt;}
.x86{left:669.905867pt;}
.x33{left:671.074667pt;}
.x79{left:672.446800pt;}
.x12b{left:673.933333pt;}
.x4f{left:675.137200pt;}
.xb7{left:678.202667pt;}
.x6c{left:681.716800pt;}
.x12e{left:687.353333pt;}
.xd5{left:688.320000pt;}
.xb8{left:691.486667pt;}
.x124{left:693.586667pt;}
.x24{left:695.404000pt;}
.xf5{left:701.829333pt;}
.x25{left:708.688000pt;}
.xf0{left:712.226667pt;}
.x7a{left:718.126000pt;}
.x88{left:719.169467pt;}
.x6d{left:726.410800pt;}
.x59{left:728.020000pt;}
.x87{left:729.514667pt;}
.x68{left:763.978000pt;}
.x89{left:765.925067pt;}
.x5a{left:772.715200pt;}
.x6e{left:774.323200pt;}
.x50{left:810.281200pt;}
.x8a{left:812.228267pt;}
.x6f{left:820.626400pt;}
.x5b{left:851.850400pt;}
.x52{left:854.202400pt;}
.x70{left:856.214800pt;}
.x51{left:857.408800pt;}
.x8c{left:859.425467pt;}
.x8b{left:861.157067pt;}
.x5c{left:863.515600pt;}
.x5d{left:866.124400pt;}
.x76{left:870.836800pt;}
.x73{left:875.442400pt;}
.x71{left:877.234000pt;}
.x47{left:883.500400pt;}
.x7f{left:884.995067pt;}
.x53{left:886.604800pt;}
.x91{left:893.811467pt;}
.x61{left:898.682800pt;}
.x74{left:900.184000pt;}
.x92{left:903.682667pt;}
.x93{left:969.297467pt;}
.x94{left:979.169867pt;}
}




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