
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ddb7022d8022d46a614e9a36.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_67ce145baa8ec7c33217e83f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_aad4c11675e353d3ff5344f3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_528a31f6b1a6eabdbc5cd668.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638000;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_490e28ed25bd48864bc6a766.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_39e22092c1abb4bc535d3973.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b12f4f85e86823b06b3f7134.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.803000;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_566998f0e49b0abbb3ea58a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c9b133c25c14d8f874f0812d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a5b0cd08463dbf0e43c920e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;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_5cc43f6f08172f850d9304fd.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.211426;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_c9b133c25c14d8f874f0812d.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5b81ba75242a36f3d6225966.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_9cfd3ac8c0fc4e7c27407ccf.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.211426;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_d2932266251bac5147cda57b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m22{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);}
.m29{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);}
.m6{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);}
.m8{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);}
.m28{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);}
.me{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);}
.m26{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);}
.m17{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);}
.m24{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m5{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);}
.m14{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);}
.m12{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);}
.m13{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);}
.m7{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);}
.m27{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);}
.m11{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);}
.mb{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);}
.m2a{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);}
.m2c{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);}
.m2b{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);}
.m21{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);}
.m10{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);}
.m1e{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);}
.mf{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);}
.m1a{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);}
.ma{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);}
.m20{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);}
.m25{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);}
.m2{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);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1{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);}
.m15{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);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-1.884000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.884000px;}
.v5{vertical-align:18.276000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v7{vertical-align:32.880000px;}
.lsba{letter-spacing:-0.171943px;}
.lsb6{letter-spacing:-0.168538px;}
.lsc0{letter-spacing:-0.165330px;}
.lsbb{letter-spacing:-0.158717px;}
.lsa5{letter-spacing:-0.158004px;}
.lsab{letter-spacing:-0.148500px;}
.lsae{letter-spacing:-0.132264px;}
.lsc1{letter-spacing:-0.125651px;}
.lsbf{letter-spacing:-0.119038px;}
.lsb9{letter-spacing:-0.083160px;}
.lsbc{letter-spacing:-0.072745px;}
.lsc2{letter-spacing:-0.059519px;}
.lsad{letter-spacing:-0.047520px;}
.lsbd{letter-spacing:-0.046292px;}
.lsa9{letter-spacing:-0.039679px;}
.lsaf{letter-spacing:-0.033066px;}
.lsa8{letter-spacing:-0.026453px;}
.lsb8{letter-spacing:-0.023760px;}
.lsac{letter-spacing:-0.017820px;}
.lsb7{letter-spacing:-0.015800px;}
.lsa7{letter-spacing:-0.006613px;}
.lsa6{letter-spacing:-0.005267px;}
.lsc{letter-spacing:0.000000px;}
.lsc9{letter-spacing:0.000009px;}
.lsca{letter-spacing:0.000253px;}
.lsd2{letter-spacing:0.000503px;}
.lsd4{letter-spacing:0.000566px;}
.ls10{letter-spacing:0.000612px;}
.lsc6{letter-spacing:0.000676px;}
.lscc{letter-spacing:0.000800px;}
.lsd7{letter-spacing:0.001036px;}
.lsc8{letter-spacing:0.001096px;}
.lsc7{letter-spacing:0.001155px;}
.lsd1{letter-spacing:0.001276px;}
.ls6{letter-spacing:0.001573px;}
.lsd9{letter-spacing:0.001834px;}
.ls8{letter-spacing:0.002669px;}
.ls4{letter-spacing:0.002725px;}
.lscb{letter-spacing:0.003070px;}
.lscf{letter-spacing:0.003284px;}
.lsd8{letter-spacing:0.003668px;}
.ls2b{letter-spacing:0.003859px;}
.lsc4{letter-spacing:0.004110px;}
.lscd{letter-spacing:0.004267px;}
.lsd0{letter-spacing:0.004800px;}
.lsa1{letter-spacing:0.005940px;}
.lsce{letter-spacing:0.005999px;}
.ls97{letter-spacing:0.011880px;}
.ls93{letter-spacing:0.013226px;}
.ls9c{letter-spacing:0.017820px;}
.ls9b{letter-spacing:0.023760px;}
.ls94{letter-spacing:0.026453px;}
.ls96{letter-spacing:0.029700px;}
.lsa4{letter-spacing:0.033066px;}
.ls95{letter-spacing:0.035640px;}
.lsb3{letter-spacing:0.041580px;}
.lsb5{letter-spacing:0.046292px;}
.ls99{letter-spacing:0.047520px;}
.lsbe{letter-spacing:0.052906px;}
.lsa0{letter-spacing:0.053460px;}
.lsb0{letter-spacing:0.063202px;}
.lsa2{letter-spacing:0.065340px;}
.ls9f{letter-spacing:0.071280px;}
.ls90{letter-spacing:0.073735px;}
.lsb4{letter-spacing:0.077220px;}
.ls98{letter-spacing:0.100980px;}
.lsa3{letter-spacing:0.112860px;}
.lsb2{letter-spacing:0.136620px;}
.ls9d{letter-spacing:0.142560px;}
.ls9a{letter-spacing:0.154440px;}
.ls9e{letter-spacing:0.166320px;}
.lsaa{letter-spacing:0.178556px;}
.lsb1{letter-spacing:0.189605px;}
.ls92{letter-spacing:0.200138px;}
.ls91{letter-spacing:0.210672px;}
.ls1a{letter-spacing:0.642088px;}
.lsb{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.lsa{letter-spacing:11.954850px;}
.ls31{letter-spacing:11.957700px;}
.ls6a{letter-spacing:12.047147px;}
.lsdc{letter-spacing:12.772849px;}
.lsd6{letter-spacing:13.350400px;}
.lsdb{letter-spacing:13.376747px;}
.lsc3{letter-spacing:13.448400px;}
.lsc5{letter-spacing:13.454400px;}
.lsd3{letter-spacing:13.532377px;}
.lsd5{letter-spacing:13.553433px;}
.ls8d{letter-spacing:13.791483px;}
.ls8c{letter-spacing:13.797483px;}
.ls11{letter-spacing:14.010159px;}
.lsf{letter-spacing:14.091483px;}
.ls14{letter-spacing:14.094088px;}
.lse{letter-spacing:14.097483px;}
.ls16{letter-spacing:14.100088px;}
.lsda{letter-spacing:14.162165px;}
.ls12{letter-spacing:14.719870px;}
.ls32{letter-spacing:14.941200px;}
.ls13{letter-spacing:14.943900px;}
.ls8f{letter-spacing:14.944200px;}
.ls1{letter-spacing:14.945108px;}
.ls6c{letter-spacing:15.657483px;}
.ls6b{letter-spacing:15.663483px;}
.ls9{letter-spacing:16.434600px;}
.ls8e{letter-spacing:16.800435px;}
.lsd{letter-spacing:18.653376px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls3b{letter-spacing:90.456049px;}
.ls57{letter-spacing:95.037403px;}
.ls53{letter-spacing:96.843797px;}
.ls5e{letter-spacing:98.340785px;}
.ls49{letter-spacing:98.997299px;}
.ls40{letter-spacing:99.705403px;}
.ls4e{letter-spacing:99.706348px;}
.ls37{letter-spacing:100.045490px;}
.ls62{letter-spacing:100.626785px;}
.ls4c{letter-spacing:101.775403px;}
.ls7b{letter-spacing:104.133403px;}
.ls45{letter-spacing:107.319745px;}
.ls35{letter-spacing:107.340049px;}
.ls36{letter-spacing:107.943403px;}
.ls43{letter-spacing:109.557299px;}
.ls47{letter-spacing:109.722600px;}
.ls66{letter-spacing:109.724932px;}
.ls56{letter-spacing:110.103299px;}
.ls48{letter-spacing:110.162932px;}
.ls52{letter-spacing:110.287490px;}
.ls46{letter-spacing:110.739299px;}
.ls67{letter-spacing:110.832600px;}
.ls38{letter-spacing:111.471797px;}
.ls3a{letter-spacing:112.006348px;}
.ls51{letter-spacing:112.612348px;}
.ls3f{letter-spacing:113.158348px;}
.ls3e{letter-spacing:113.216932px;}
.ls44{letter-spacing:113.491490px;}
.ls5d{letter-spacing:114.078049px;}
.ls7a{letter-spacing:114.387797px;}
.ls77{letter-spacing:114.987403px;}
.ls39{letter-spacing:115.497797px;}
.ls82{letter-spacing:116.100049px;}
.ls81{letter-spacing:116.623490px;}
.ls61{letter-spacing:117.573797px;}
.ls74{letter-spacing:119.193299px;}
.ls70{letter-spacing:119.319745px;}
.ls4d{letter-spacing:119.892785px;}
.ls80{letter-spacing:120.118348px;}
.ls86{letter-spacing:123.526348px;}
.ls41{letter-spacing:124.251403px;}
.ls3c{letter-spacing:126.405403px;}
.ls5f{letter-spacing:128.308348px;}
.ls58{letter-spacing:128.751299px;}
.ls54{letter-spacing:128.917490px;}
.ls78{letter-spacing:128.928049px;}
.ls33{letter-spacing:129.460348px;}
.ls4a{letter-spacing:129.793490px;}
.ls4b{letter-spacing:130.341745px;}
.ls83{letter-spacing:132.309299px;}
.ls7f{letter-spacing:133.339490px;}
.ls76{letter-spacing:134.116348px;}
.ls34{letter-spacing:137.097403px;}
.ls4f{letter-spacing:137.154049px;}
.ls42{letter-spacing:139.309490px;}
.ls6f{letter-spacing:139.660348px;}
.ls3d{letter-spacing:139.917299px;}
.ls73{letter-spacing:143.358049px;}
.ls84{letter-spacing:144.405299px;}
.ls75{letter-spacing:146.121299px;}
.ls79{letter-spacing:147.579797px;}
.ls7e{letter-spacing:148.502932px;}
.ls6e{letter-spacing:148.998785px;}
.ls85{letter-spacing:149.169299px;}
.ls8a{letter-spacing:150.804600px;}
.ls6d{letter-spacing:151.332049px;}
.ls68{letter-spacing:152.924932px;}
.ls63{letter-spacing:154.032600px;}
.ls50{letter-spacing:156.422932px;}
.ls7d{letter-spacing:156.476932px;}
.ls89{letter-spacing:158.688600px;}
.ls71{letter-spacing:163.887797px;}
.ls72{letter-spacing:165.687797px;}
.ls7c{letter-spacing:178.070932px;}
.ls88{letter-spacing:180.288600px;}
.ls8b{letter-spacing:187.334932px;}
.ls87{letter-spacing:188.442600px;}
.ls5c{letter-spacing:245.305133px;}
.ls65{letter-spacing:246.511133px;}
.ls5a{letter-spacing:246.517133px;}
.ls60{letter-spacing:278.046049px;}
.ls5b{letter-spacing:280.803299px;}
.ls59{letter-spacing:281.535797px;}
.ls55{letter-spacing:283.858348px;}
.ls69{letter-spacing:293.814600px;}
.ls64{letter-spacing:293.820600px;}
.ls29{letter-spacing:305.964600px;}
.ls25{letter-spacing:306.068932px;}
.ls23{letter-spacing:307.134049px;}
.ls15{letter-spacing:307.557299px;}
.ls1f{letter-spacing:308.727299px;}
.ls1d{letter-spacing:309.460348px;}
.ls21{letter-spacing:311.487745px;}
.ls18{letter-spacing:311.493403px;}
.ls1b{letter-spacing:311.581490px;}
.ls27{letter-spacing:312.951797px;}
.ls2d{letter-spacing:317.031745px;}
.ls2f{letter-spacing:317.344348px;}
.ls26{letter-spacing:319.454932px;}
.ls2a{letter-spacing:323.784049px;}
.ls17{letter-spacing:332.847403px;}
.ls22{letter-spacing:332.907403px;}
.ls1e{letter-spacing:333.300049px;}
.ls1c{letter-spacing:334.639490px;}
.ls24{letter-spacing:334.641797px;}
.ls2c{letter-spacing:337.012800px;}
.ls19{letter-spacing:337.239745px;}
.ls2e{letter-spacing:339.561745px;}
.ls20{letter-spacing:340.752600px;}
.ls28{letter-spacing:343.054348px;}
.ls30{letter-spacing:344.244785px;}
.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;}
}
.ws10{word-spacing:-112.399962px;}
.ws56{word-spacing:-14.943900px;}
.ws103{word-spacing:-14.850000px;}
.ws1b{word-spacing:-13.449600px;}
.wsdc{word-spacing:-13.377672px;}
.ws102{word-spacing:-13.367138px;}
.wsdd{word-spacing:-13.167000px;}
.ws30{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsea{word-spacing:-3.881948px;}
.wseb{word-spacing:-3.829043px;}
.ws54{word-spacing:-3.347434px;}
.wsda{word-spacing:-3.287658px;}
.ws5f{word-spacing:-3.048556px;}
.ws60{word-spacing:-2.630126px;}
.ws37{word-spacing:-2.570351px;}
.wsdb{word-spacing:-2.331248px;}
.ws117{word-spacing:-2.274941px;}
.ws50{word-spacing:-2.271473px;}
.ws110{word-spacing:-2.209680px;}
.ws10f{word-spacing:-2.191860px;}
.ws3d{word-spacing:-2.092146px;}
.ws43{word-spacing:-2.032370px;}
.wsc7{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.wsc5{word-spacing:-1.872030px;}
.wsc6{word-spacing:-1.867440px;}
.ws5b{word-spacing:-1.853044px;}
.ws116{word-spacing:-1.831856px;}
.ws158{word-spacing:-1.829146px;}
.ws115{word-spacing:-1.805404px;}
.ws131{word-spacing:-1.613952px;}
.wsc3{word-spacing:-1.613941px;}
.ws4d{word-spacing:-1.554166px;}
.ws118{word-spacing:-1.540876px;}
.ws6b{word-spacing:-1.494390px;}
.wse9{word-spacing:-1.474744px;}
.ws5d{word-spacing:-1.434614px;}
.ws6a{word-spacing:-1.374839px;}
.ws0{word-spacing:-1.322630px;}
.ws68{word-spacing:-1.315063px;}
.ws145{word-spacing:-1.291162px;}
.ws12e{word-spacing:-1.261880px;}
.ws6c{word-spacing:-1.255288px;}
.ws130{word-spacing:-1.237363px;}
.ws6{word-spacing:-1.171598px;}
.ws69{word-spacing:-1.135736px;}
.wsc4{word-spacing:-1.118850px;}
.ws85{word-spacing:-1.052053px;}
.ws8{word-spacing:-1.046070px;}
.wse3{word-spacing:-1.022170px;}
.ws58{word-spacing:-1.016185px;}
.ws12f{word-spacing:-0.968371px;}
.ws59{word-spacing:-0.956410px;}
.ws139{word-spacing:-0.914573px;}
.ws76{word-spacing:-0.896634px;}
.ws2b{word-spacing:-0.836858px;}
.ws61{word-spacing:-0.822762px;}
.ws57{word-spacing:-0.777083px;}
.ws155{word-spacing:-0.699379px;}
.wsd9{word-spacing:-0.657532px;}
.ws5a{word-spacing:-0.597756px;}
.ws49{word-spacing:-0.537980px;}
.ws5c{word-spacing:-0.478205px;}
.ws154{word-spacing:-0.430387px;}
.ws75{word-spacing:-0.418429px;}
.ws23{word-spacing:-0.376589px;}
.ws38{word-spacing:-0.358654px;}
.ws119{word-spacing:-0.343886px;}
.ws4f{word-spacing:-0.338421px;}
.ws137{word-spacing:-0.322790px;}
.ws35{word-spacing:-0.298878px;}
.ws1c{word-spacing:-0.268992px;}
.ws36{word-spacing:-0.239102px;}
.ws11e{word-spacing:-0.238075px;}
.ws18{word-spacing:-0.215194px;}
.ws2d{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.wse4{word-spacing:-0.107597px;}
.ws5e{word-spacing:-0.096252px;}
.wse6{word-spacing:-0.089536px;}
.ws108{word-spacing:-0.084269px;}
.ws12{word-spacing:-0.059776px;}
.wsbf{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws141{word-spacing:-0.011011px;}
.ws144{word-spacing:-0.009014px;}
.ws13c{word-spacing:-0.008467px;}
.ws146{word-spacing:-0.007267px;}
.ws126{word-spacing:-0.006998px;}
.ws12d{word-spacing:-0.006221px;}
.wsad{word-spacing:-0.006000px;}
.ws14a{word-spacing:-0.005520px;}
.ws150{word-spacing:-0.005350px;}
.ws77{word-spacing:-0.004934px;}
.ws7e{word-spacing:-0.004800px;}
.ws14e{word-spacing:-0.004282px;}
.ws4{word-spacing:-0.003743px;}
.ws7b{word-spacing:-0.003600px;}
.ws15{word-spacing:-0.003196px;}
.wsca{word-spacing:-0.003000px;}
.ws142{word-spacing:-0.002986px;}
.wscf{word-spacing:-0.001200px;}
.ws13{word-spacing:-0.000017px;}
.ws3{word-spacing:0.000000px;}
.ws2f{word-spacing:0.000629px;}
.ws79{word-spacing:0.001200px;}
.ws81{word-spacing:0.002400px;}
.ws147{word-spacing:0.025177px;}
.wsf7{word-spacing:0.047520px;}
.ws1d{word-spacing:0.053798px;}
.wsf4{word-spacing:0.059400px;}
.ws120{word-spacing:0.059519px;}
.ws2e{word-spacing:0.059776px;}
.wse5{word-spacing:0.063202px;}
.ws107{word-spacing:0.068468px;}
.wsfa{word-spacing:0.089100px;}
.ws98{word-spacing:0.095641px;}
.wsee{word-spacing:0.100980px;}
.ws104{word-spacing:0.107597px;}
.ws111{word-spacing:0.118800px;}
.ws33{word-spacing:0.119551px;}
.wsf5{word-spacing:0.130680px;}
.wsf9{word-spacing:0.136620px;}
.ws101{word-spacing:0.138877px;}
.ws112{word-spacing:0.142560px;}
.wsf6{word-spacing:0.148500px;}
.wsef{word-spacing:0.154440px;}
.wse1{word-spacing:0.161395px;}
.wsed{word-spacing:0.166320px;}
.wsfc{word-spacing:0.172260px;}
.wsf2{word-spacing:0.178200px;}
.ws2c{word-spacing:0.179327px;}
.wsf3{word-spacing:0.184140px;}
.wsfd{word-spacing:0.190080px;}
.ws132{word-spacing:0.195469px;}
.wsf8{word-spacing:0.196020px;}
.ws21{word-spacing:0.215194px;}
.ws11b{word-spacing:0.218236px;}
.wsf1{word-spacing:0.219780px;}
.ws31{word-spacing:0.239102px;}
.wsfb{word-spacing:0.249480px;}
.ws11c{word-spacing:0.264528px;}
.ws24{word-spacing:0.268992px;}
.ws46{word-spacing:0.298878px;}
.ws12a{word-spacing:0.322790px;}
.wsf0{word-spacing:0.350460px;}
.ws45{word-spacing:0.358654px;}
.wse0{word-spacing:0.376589px;}
.ws4a{word-spacing:0.418429px;}
.ws9e{word-spacing:0.478205px;}
.ws66{word-spacing:0.537980px;}
.ws151{word-spacing:0.537984px;}
.ws70{word-spacing:0.597756px;}
.ws8c{word-spacing:0.646291px;}
.ws93{word-spacing:0.646733px;}
.ws8e{word-spacing:0.648826px;}
.ws78{word-spacing:0.654221px;}
.ws7d{word-spacing:0.655882px;}
.ws6f{word-spacing:0.657532px;}
.ws96{word-spacing:0.666298px;}
.ws7a{word-spacing:0.667200px;}
.ws7c{word-spacing:0.668400px;}
.wsc0{word-spacing:0.670656px;}
.wsa9{word-spacing:0.670800px;}
.ws8b{word-spacing:0.672000px;}
.ws80{word-spacing:0.673200px;}
.ws91{word-spacing:0.673910px;}
.ws7f{word-spacing:0.674400px;}
.wsab{word-spacing:0.676800px;}
.wsaa{word-spacing:0.680314px;}
.ws94{word-spacing:0.691632px;}
.ws153{word-spacing:0.699379px;}
.ws6d{word-spacing:0.717307px;}
.ws9b{word-spacing:0.742800px;}
.wsce{word-spacing:0.745200px;}
.ws9f{word-spacing:0.748800px;}
.wsc9{word-spacing:0.751200px;}
.wsa3{word-spacing:0.753000px;}
.ws97{word-spacing:0.765130px;}
.ws19{word-spacing:0.914573px;}
.wsd5{word-spacing:0.956410px;}
.ws14f{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws67{word-spacing:1.016185px;}
.ws121{word-spacing:1.075961px;}
.ws4c{word-spacing:1.195512px;}
.ws9c{word-spacing:1.255288px;}
.wsfe{word-spacing:1.263121px;}
.wsa2{word-spacing:1.315063px;}
.ws27{word-spacing:1.434614px;}
.ws143{word-spacing:1.452557px;}
.ws55{word-spacing:1.494390px;}
.ws140{word-spacing:1.560154px;}
.ws20{word-spacing:1.721549px;}
.wsa4{word-spacing:1.733492px;}
.wsa6{word-spacing:1.775347px;}
.ws44{word-spacing:1.793268px;}
.wsd6{word-spacing:1.853044px;}
.ws71{word-spacing:1.912819px;}
.ws86{word-spacing:2.032370px;}
.wsa5{word-spacing:2.098138px;}
.ws73{word-spacing:2.151922px;}
.ws3c{word-spacing:2.211697px;}
.ws3a{word-spacing:2.391024px;}
.ws13f{word-spacing:2.474726px;}
.ws65{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws148{word-spacing:2.528525px;}
.ws39{word-spacing:2.570351px;}
.ws11d{word-spacing:2.598988px;}
.wsd8{word-spacing:2.630126px;}
.ws105{word-spacing:2.689902px;}
.ws122{word-spacing:2.749678px;}
.ws4e{word-spacing:2.809453px;}
.ws16{word-spacing:2.869236px;}
.ws22{word-spacing:2.905114px;}
.ws14b{word-spacing:2.958912px;}
.ws13b{word-spacing:3.012710px;}
.ws48{word-spacing:3.108331px;}
.wscc{word-spacing:3.168107px;}
.ws156{word-spacing:3.219725px;}
.ws152{word-spacing:3.221674px;}
.ws14c{word-spacing:3.222518px;}
.ws125{word-spacing:3.222758px;}
.ws133{word-spacing:3.223334px;}
.ws14d{word-spacing:3.223747px;}
.ws159{word-spacing:3.223776px;}
.ws127{word-spacing:3.224074px;}
.ws13e{word-spacing:3.224093px;}
.ws123{word-spacing:3.224822px;}
.ws149{word-spacing:3.225965px;}
.ws13a{word-spacing:3.226118px;}
.ws129{word-spacing:3.227453px;}
.ws157{word-spacing:3.227645px;}
.ws12b{word-spacing:3.227904px;}
.ws138{word-spacing:3.227933px;}
.ws28{word-spacing:3.287658px;}
.ws1a{word-spacing:3.335501px;}
.wsc2{word-spacing:3.347442px;}
.wse2{word-spacing:3.389299px;}
.ws128{word-spacing:3.443098px;}
.ws51{word-spacing:3.466985px;}
.ws32{word-spacing:3.526760px;}
.ws13d{word-spacing:3.550694px;}
.ws26{word-spacing:3.586536px;}
.ws136{word-spacing:3.604493px;}
.ws64{word-spacing:3.646312px;}
.ws3b{word-spacing:3.706087px;}
.ws52{word-spacing:3.765863px;}
.ws12c{word-spacing:3.765888px;}
.ws6e{word-spacing:3.885414px;}
.wsdf{word-spacing:3.927283px;}
.wsde{word-spacing:3.981082px;}
.ws62{word-spacing:4.184292px;}
.wsa1{word-spacing:4.483170px;}
.wsd3{word-spacing:4.542946px;}
.wsc8{word-spacing:4.602721px;}
.ws9d{word-spacing:4.662497px;}
.wse{word-spacing:4.770079px;}
.ws100{word-spacing:4.827636px;}
.ws9a{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws10a{word-spacing:4.900500px;}
.ws10e{word-spacing:4.906440px;}
.ws10b{word-spacing:4.924260px;}
.ws4b{word-spacing:4.961375px;}
.ws109{word-spacing:4.971780px;}
.wsd2{word-spacing:5.021150px;}
.ws134{word-spacing:5.057050px;}
.ws47{word-spacing:5.140702px;}
.wsd4{word-spacing:5.200477px;}
.ws1e{word-spacing:5.218445px;}
.ws2a{word-spacing:5.320028px;}
.ws10c{word-spacing:5.346000px;}
.ws10d{word-spacing:5.429160px;}
.ws106{word-spacing:5.439580px;}
.ws74{word-spacing:5.499355px;}
.ws3f{word-spacing:5.559131px;}
.ws11f{word-spacing:5.594767px;}
.wsd7{word-spacing:5.678682px;}
.ws99{word-spacing:5.798233px;}
.ws124{word-spacing:5.864026px;}
.wse8{word-spacing:6.031238px;}
.ws42{word-spacing:6.037336px;}
.wsa0{word-spacing:6.216662px;}
.ws40{word-spacing:6.276438px;}
.ws34{word-spacing:6.635092px;}
.ws87{word-spacing:6.694867px;}
.wscd{word-spacing:6.814418px;}
.ws3e{word-spacing:7.053521px;}
.ws135{word-spacing:7.101389px;}
.wsd1{word-spacing:7.232848px;}
.ws114{word-spacing:7.386944px;}
.ws113{word-spacing:7.400171px;}
.ws72{word-spacing:7.531726px;}
.wsec{word-spacing:7.671312px;}
.ws1f{word-spacing:7.746970px;}
.ws53{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.ws25{word-spacing:7.962163px;}
.wscb{word-spacing:8.249033px;}
.ws41{word-spacing:8.308808px;}
.ws11a{word-spacing:8.769103px;}
.wsff{word-spacing:10.144649px;}
.wsa{word-spacing:12.176255px;}
.wse7{word-spacing:12.777257px;}
.wsd0{word-spacing:13.389734px;}
.wsb{word-spacing:16.109478px;}
.ws63{word-spacing:16.737168px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.wsb5{word-spacing:78.005836px;}
.ws92{word-spacing:81.251494px;}
.wsba{word-spacing:93.995045px;}
.ws89{word-spacing:95.438362px;}
.wsb8{word-spacing:106.487836px;}
.wsb9{word-spacing:107.234246px;}
.ws8f{word-spacing:113.284446px;}
.wsac{word-spacing:114.116246px;}
.wsb1{word-spacing:114.395494px;}
.ws8d{word-spacing:114.454446px;}
.wsbb{word-spacing:115.618446px;}
.wsb0{word-spacing:119.132351px;}
.wsbc{word-spacing:119.135494px;}
.wsb2{word-spacing:127.264446px;}
.wsbd{word-spacing:129.998351px;}
.wsae{word-spacing:131.612246px;}
.wsb4{word-spacing:136.001130px;}
.wsbe{word-spacing:139.239948px;}
.wsb3{word-spacing:140.195494px;}
.wsb7{word-spacing:163.502351px;}
.ws8a{word-spacing:196.453008px;}
.ws88{word-spacing:199.116576px;}
.ws90{word-spacing:231.397584px;}
.wsa8{word-spacing:238.495008px;}
.wsa7{word-spacing:276.792768px;}
.wsaf{word-spacing:277.461034px;}
.wsb6{word-spacing:281.659584px;}
.ws95{word-spacing:283.961530px;}
.ws83{word-spacing:320.851584px;}
.ws82{word-spacing:322.467034px;}
.wsc1{word-spacing:331.817530px;}
.ws84{word-spacing:364.565530px;}
._8{margin-left:-11.943245px;}
._40{margin-left:-7.870976px;}
._18{margin-left:-6.748201px;}
._c{margin-left:-5.260266px;}
._2{margin-left:-3.849538px;}
._1b{margin-left:-2.491172px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._a{width:3.679564px;}
._3e{width:9.931884px;}
._6{width:11.398711px;}
._3{width:12.971268px;}
._16{width:14.174384px;}
._e{width:15.762931px;}
._f{width:16.838899px;}
._11{width:17.861069px;}
._d{width:19.851610px;}
._13{width:21.661469px;}
._17{width:23.148292px;}
._12{width:24.882845px;}
._4{width:25.943736px;}
._10{width:27.275789px;}
._7{width:30.587087px;}
._9{width:33.355008px;}
._1c{width:35.387155px;}
._1a{width:38.317285px;}
._19{width:39.638790px;}
._3f{width:43.875290px;}
._b{width:54.423634px;}
._44{width:61.868160px;}
._43{width:88.767360px;}
._2b{width:109.963930px;}
._2d{width:133.581427px;}
._28{width:136.325146px;}
._37{width:147.232675px;}
._2f{width:154.556390px;}
._29{width:157.306522px;}
._2e{width:171.154003px;}
._38{width:178.675766px;}
._31{width:180.977818px;}
._3a{width:202.412390px;}
._22{width:205.600675px;}
._39{width:215.596003px;}
._23{width:223.048166px;}
._3c{width:224.874451px;}
._2a{width:237.573734px;}
._2c{width:241.823808px;}
._24{width:244.616390px;}
._30{width:248.064422px;}
._3b{width:254.886672px;}
._27{width:256.994957px;}
._1f{width:265.801210px;}
._26{width:272.757888px;}
._36{width:285.400512px;}
._35{width:291.802522px;}
._25{width:293.682672px;}
._20{width:296.632400px;}
._3d{width:304.493165px;}
._21{width:324.673344px;}
._34{width:352.218125px;}
._33{width:363.408192px;}
._1e{width:404.779162px;}
._32{width:418.521155px;}
._1d{width:463.066230px;}
._14{width:812.394142px;}
._42{width:2288.255120px;}
._41{width:2538.102529px;}
._15{width:2562.012529px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(48,84,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:49.829400px;}
.fsf{font-size:52.668000px;}
.fs9{font-size:53.798400px;}
.fsd{font-size:56.058000px;}
.fs11{font-size:59.400000px;}
.fs4{font-size:59.775600px;}
.fsc{font-size:62.286600px;}
.fs10{font-size:66.132000px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:144.472959px;}
.y1d6{bottom:-429.458205px;}
.y1b3{bottom:-398.792955px;}
.y1e6{bottom:-334.114275px;}
.y1e5{bottom:-312.928889px;}
.y1c7{bottom:-299.592104px;}
.y1e4{bottom:-291.842701px;}
.y1c6{bottom:-278.505916px;}
.y1e3{bottom:-270.657314px;}
.y1c5{bottom:-257.320529px;}
.y1e2{bottom:-249.471928px;}
.y1c4{bottom:-236.135143px;}
.y1e1{bottom:-228.385740px;}
.y1c3{bottom:-215.048955px;}
.y1e0{bottom:-207.200354px;}
.y1df{bottom:-186.114166px;}
.y1c2{bottom:-174.559275px;}
.y1de{bottom:-164.928779px;}
.y1c1{bottom:-155.451780px;}
.y1dd{bottom:-143.743393px;}
.y1c0{bottom:-136.443780px;}
.y1dc{bottom:-122.657205px;}
.y1bf{bottom:-117.336285px;}
.y1be{bottom:-98.328285px;}
.y1db{bottom:-82.167195px;}
.y1bd{bottom:-79.320285px;}
.y1da{bottom:-63.059700px;}
.y1bc{bottom:-60.312285px;}
.y1d9{bottom:-43.952205px;}
.y1bb{bottom:-41.204790px;}
.y1d8{bottom:-24.944205px;}
.y1ba{bottom:-22.196790px;}
.y1d7{bottom:-0.292938px;}
.y0{bottom:0.000000px;}
.y1b9{bottom:2.456342px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1f{bottom:17.538002px;}
.y4e{bottom:31.890000px;}
.y16b{bottom:91.665000px;}
.y1ef{bottom:93.261000px;}
.y134{bottom:95.773500px;}
.ydd{bottom:102.261000px;}
.yb3{bottom:104.503500px;}
.y1d{bottom:104.646000px;}
.y214{bottom:106.699500px;}
.y1af{bottom:107.193000px;}
.y4d{bottom:110.136000px;}
.y16a{bottom:110.494500px;}
.y1ee{bottom:112.090500px;}
.y133{bottom:114.603000px;}
.y1d2{bottom:115.378500px;}
.ydc{bottom:121.090500px;}
.y24a{bottom:121.762500px;}
.y1c{bottom:122.535000px;}
.yb2{bottom:123.333000px;}
.y213{bottom:123.960000px;}
.y1ae{bottom:126.022500px;}
.y85{bottom:126.471000px;}
.y4c{bottom:128.965500px;}
.y169{bottom:129.324000px;}
.y1ed{bottom:130.920000px;}
.y132{bottom:133.432500px;}
.y1d1{bottom:134.208000px;}
.y249{bottom:139.023000px;}
.ydb{bottom:139.920000px;}
.y1b{bottom:140.422500px;}
.y212{bottom:141.220500px;}
.yb1{bottom:142.162500px;}
.y1ad{bottom:144.852000px;}
.y84{bottom:145.300500px;}
.y4b{bottom:147.795000px;}
.y168{bottom:148.153500px;}
.y1ec{bottom:149.749500px;}
.y131{bottom:152.262000px;}
.y248{bottom:156.283500px;}
.y1a{bottom:158.310000px;}
.y211{bottom:158.481000px;}
.y105{bottom:162.336000px;}
.yda{bottom:163.233000px;}
.y1ac{bottom:163.681500px;}
.y83{bottom:164.130000px;}
.yb0{bottom:165.474000px;}
.y4a{bottom:166.624500px;}
.y167{bottom:166.983000px;}
.y1d0{bottom:167.773500px;}
.y130{bottom:171.091500px;}
.y1eb{bottom:173.061000px;}
.y247{bottom:173.544000px;}
.y210{bottom:175.741500px;}
.y19{bottom:176.199000px;}
.y104{bottom:181.165500px;}
.y1ab{bottom:182.511000px;}
.y82{bottom:182.959500px;}
.yd9{bottom:183.408000px;}
.y49{bottom:185.454000px;}
.y166{bottom:185.812500px;}
.y1cf{bottom:187.006500px;}
.y12f{bottom:189.921000px;}
.y246{bottom:190.804500px;}
.y20f{bottom:193.002000px;}
.y18{bottom:194.086500px;}
.yaf{bottom:199.098000px;}
.y103{bottom:199.995000px;}
.y1aa{bottom:201.340500px;}
.y81{bottom:201.789000px;}
.y1ea{bottom:203.488500px;}
.y48{bottom:204.282000px;}
.y165{bottom:204.642000px;}
.y1ce{bottom:206.239500px;}
.y245{bottom:208.065000px;}
.y12e{bottom:208.749000px;}
.y20e{bottom:210.262500px;}
.y17{bottom:211.974000px;}
.yd8{bottom:217.032000px;}
.yae{bottom:217.927500px;}
.y102{bottom:218.824500px;}
.y1a9{bottom:220.170000px;}
.y80{bottom:220.618500px;}
.y1e9{bottom:222.721500px;}
.y47{bottom:223.111500px;}
.y164{bottom:223.471500px;}
.y244{bottom:225.325500px;}
.y1cd{bottom:225.471000px;}
.y20d{bottom:227.523000px;}
.y12d{bottom:227.578500px;}
.y16{bottom:229.863000px;}
.yd7{bottom:235.861500px;}
.yac{bottom:236.757000px;}
.y101{bottom:237.654000px;}
.y1a8{bottom:238.999500px;}
.y7f{bottom:239.446500px;}
.y46{bottom:241.941000px;}
.y1e8{bottom:241.954500px;}
.yad{bottom:242.182500px;}
.y163{bottom:242.301000px;}
.y243{bottom:242.586000px;}
.y1cc{bottom:244.704000px;}
.y20c{bottom:244.782000px;}
.y12c{bottom:246.408000px;}
.yd6{bottom:254.691000px;}
.yab{bottom:255.586500px;}
.y100{bottom:256.483500px;}
.y1a7{bottom:257.829000px;}
.y7e{bottom:258.276000px;}
.y242{bottom:259.846500px;}
.y45{bottom:260.770500px;}
.y162{bottom:261.130500px;}
.y1e7{bottom:261.187500px;}
.y20b{bottom:262.042500px;}
.y1cb{bottom:263.937000px;}
.y12b{bottom:265.237500px;}
.yd5{bottom:273.520500px;}
.yaa{bottom:274.416000px;}
.yff{bottom:275.313000px;}
.y1a6{bottom:276.658500px;}
.y7d{bottom:277.105500px;}
.y20a{bottom:279.303000px;}
.y44{bottom:279.600000px;}
.y161{bottom:279.960000px;}
.y1ca{bottom:283.170000px;}
.y1d3{bottom:286.605000px;}
.y12a{bottom:288.550500px;}
.yd4{bottom:292.350000px;}
.ya9{bottom:293.245500px;}
.yfe{bottom:294.142500px;}
.y241{bottom:294.366000px;}
.y1a5{bottom:295.488000px;}
.y7c{bottom:295.935000px;}
.y209{bottom:296.563500px;}
.y43{bottom:298.429500px;}
.y160{bottom:298.789500px;}
.y15{bottom:300.154500px;}
.y1c9{bottom:302.403000px;}
.yd3{bottom:311.179500px;}
.y240{bottom:311.626500px;}
.ya8{bottom:312.075000px;}
.yfd{bottom:312.972000px;}
.y208{bottom:313.824000px;}
.y1a4{bottom:314.317500px;}
.y7b{bottom:314.764500px;}
.y15f{bottom:317.619000px;}
.y14{bottom:318.043500px;}
.y1c8{bottom:321.636000px;}
.y42{bottom:321.742500px;}
.y129{bottom:322.174500px;}
.y23f{bottom:328.887000px;}
.yd2{bottom:330.009000px;}
.ya7{bottom:330.904500px;}
.y207{bottom:331.084500px;}
.yfc{bottom:331.801500px;}
.y1a3{bottom:333.145500px;}
.y79{bottom:333.594000px;}
.y13{bottom:335.931000px;}
.y15e{bottom:336.448500px;}
.y7a{bottom:339.019500px;}
.y128{bottom:341.004000px;}
.y23e{bottom:346.147500px;}
.y1b0{bottom:347.053500px;}
.y206{bottom:348.345000px;}
.ya6{bottom:349.734000px;}
.y1a2{bottom:351.975000px;}
.y78{bottom:352.423500px;}
.yd1{bottom:353.320500px;}
.y12{bottom:353.818500px;}
.yfb{bottom:355.114500px;}
.y15d{bottom:355.278000px;}
.y127{bottom:359.833500px;}
.y23d{bottom:363.408000px;}
.y205{bottom:365.605500px;}
.y1a1{bottom:370.804500px;}
.y77{bottom:371.253000px;}
.ya5{bottom:373.047000px;}
.y15c{bottom:374.107500px;}
.y126{bottom:378.663000px;}
.y23c{bottom:380.668500px;}
.y11{bottom:380.673000px;}
.y204{bottom:382.866000px;}
.yd0{bottom:386.944500px;}
.yfa{bottom:388.738500px;}
.y1a0{bottom:389.634000px;}
.y76{bottom:390.082500px;}
.y15b{bottom:392.937000px;}
.y41{bottom:396.892500px;}
.y125{bottom:397.492500px;}
.y23b{bottom:397.929000px;}
.y10{bottom:398.562000px;}
.y203{bottom:400.125000px;}
.ycf{bottom:405.774000px;}
.ya4{bottom:406.671000px;}
.yf9{bottom:407.568000px;}
.y19f{bottom:408.463500px;}
.y75{bottom:408.912000px;}
.y15a{bottom:411.766500px;}
.y23a{bottom:415.188000px;}
.y124{bottom:416.322000px;}
.y40{bottom:416.349000px;}
.yf{bottom:416.449500px;}
.y202{bottom:417.385500px;}
.yce{bottom:424.603500px;}
.ya3{bottom:425.500500px;}
.yf8{bottom:426.397500px;}
.y19e{bottom:427.293000px;}
.y74{bottom:427.741500px;}
.y159{bottom:430.596000px;}
.y239{bottom:432.448500px;}
.y201{bottom:434.646000px;}
.y123{bottom:435.151500px;}
.ycd{bottom:443.433000px;}
.ya2{bottom:444.330000px;}
.ye{bottom:444.798000px;}
.yf7{bottom:445.227000px;}
.y19d{bottom:446.122500px;}
.y73{bottom:446.571000px;}
.y158{bottom:449.425500px;}
.y238{bottom:449.709000px;}
.y200{bottom:451.906500px;}
.y3f{bottom:453.739500px;}
.ycc{bottom:462.262500px;}
.yd{bottom:462.685500px;}
.ya1{bottom:463.159500px;}
.yf6{bottom:464.056500px;}
.y19c{bottom:464.952000px;}
.y72{bottom:465.400500px;}
.y122{bottom:466.318500px;}
.y237{bottom:466.969500px;}
.y157{bottom:468.255000px;}
.y1ff{bottom:469.167000px;}
.y3e{bottom:473.196000px;}
.y121{bottom:480.514500px;}
.ya0{bottom:481.989000px;}
.yf5{bottom:482.886000px;}
.y19a{bottom:483.781500px;}
.y71{bottom:484.230000px;}
.ycb{bottom:485.575500px;}
.y1fe{bottom:486.427500px;}
.y156{bottom:487.084500px;}
.y19b{bottom:489.207000px;}
.yc{bottom:489.540000px;}
.y3d{bottom:492.654000px;}
.y120{bottom:499.830000px;}
.y9f{bottom:500.818500px;}
.y236{bottom:501.490500px;}
.yf4{bottom:501.714000px;}
.y198{bottom:502.611000px;}
.y70{bottom:503.059500px;}
.y155{bottom:505.914000px;}
.yb{bottom:507.429000px;}
.y199{bottom:508.036500px;}
.y1fd{bottom:508.170000px;}
.y3c{bottom:512.110500px;}
.y11f{bottom:517.053000px;}
.y235{bottom:518.751000px;}
.yca{bottom:519.199500px;}
.y9e{bottom:519.648000px;}
.yf3{bottom:520.543500px;}
.y196{bottom:521.440500px;}
.y6f{bottom:521.889000px;}
.y186{bottom:524.299500px;}
.y154{bottom:524.743500px;}
.ya{bottom:525.316500px;}
.y197{bottom:526.866000px;}
.y3b{bottom:531.568500px;}
.y11e{bottom:534.276000px;}
.y234{bottom:536.011500px;}
.yc9{bottom:538.029000px;}
.y9d{bottom:538.477500px;}
.y185{bottom:538.495500px;}
.yf2{bottom:539.373000px;}
.y194{bottom:540.270000px;}
.y6e{bottom:540.718500px;}
.y1fc{bottom:541.794000px;}
.y9{bottom:543.204000px;}
.y153{bottom:543.573000px;}
.y195{bottom:545.694000px;}
.y3a{bottom:551.025000px;}
.y11d{bottom:551.658000px;}
.y233{bottom:553.272000px;}
.yc8{bottom:556.858500px;}
.y9c{bottom:557.307000px;}
.yf1{bottom:558.202500px;}
.y193{bottom:559.099500px;}
.y6d{bottom:559.548000px;}
.y184{bottom:560.800500px;}
.y8{bottom:561.093000px;}
.y152{bottom:562.401000px;}
.y1fb{bottom:568.335000px;}
.y11c{bottom:569.040000px;}
.y38{bottom:570.481500px;}
.y232{bottom:570.531000px;}
.y39{bottom:575.364000px;}
.yc7{bottom:575.688000px;}
.y9b{bottom:576.136500px;}
.y192{bottom:577.929000px;}
.y183{bottom:578.022000px;}
.y6c{bottom:578.377500px;}
.y7{bottom:578.980500px;}
.y151{bottom:581.230500px;}
.yf0{bottom:581.515500px;}
.y1fa{bottom:585.909000px;}
.y11b{bottom:586.422000px;}
.y231{bottom:587.791500px;}
.y37{bottom:589.939500px;}
.yc6{bottom:594.517500px;}
.y9a{bottom:594.964500px;}
.y182{bottom:595.245000px;}
.y191{bottom:596.758500px;}
.y6{bottom:596.868000px;}
.y6b{bottom:597.207000px;}
.y150{bottom:600.060000px;}
.y230{bottom:605.052000px;}
.y35{bottom:609.396000px;}
.y11a{bottom:610.534500px;}
.y180{bottom:612.154500px;}
.y1f9{bottom:612.450000px;}
.y17f{bottom:612.627000px;}
.y36{bottom:614.278500px;}
.y5{bottom:614.757000px;}
.yef{bottom:615.139500px;}
.y190{bottom:615.588000px;}
.y6a{bottom:616.036500px;}
.y181{bottom:617.037000px;}
.yc5{bottom:617.829000px;}
.y99{bottom:618.277500px;}
.y22f{bottom:622.312500px;}
.y34{bottom:628.852500px;}
.y17e{bottom:630.009000px;}
.y14f{bottom:630.667500px;}
.y4{bottom:632.644500px;}
.yee{bottom:633.969000px;}
.y18e{bottom:634.417500px;}
.y119{bottom:634.647000px;}
.y69{bottom:634.866000px;}
.y1f8{bottom:638.991000px;}
.y22e{bottom:639.573000px;}
.y18f{bottom:639.841500px;}
.y14e{bottom:644.865000px;}
.y17d{bottom:647.391000px;}
.y33{bottom:648.310500px;}
.y1{bottom:650.532055px;}
.yc4{bottom:651.453000px;}
.y98{bottom:651.901500px;}
.y118{bottom:652.029000px;}
.yec{bottom:652.798500px;}
.y18d{bottom:653.247000px;}
.y68{bottom:653.695500px;}
.y22d{bottom:656.833500px;}
.yed{bottom:658.222500px;}
.y14d{bottom:659.061000px;}
.y1f7{bottom:665.530500px;}
.y32{bottom:667.767000px;}
.y117{bottom:669.252000px;}
.yc3{bottom:670.282500px;}
.y97{bottom:670.731000px;}
.y17c{bottom:671.503500px;}
.yeb{bottom:671.628000px;}
.y18b{bottom:672.076500px;}
.y67{bottom:672.525000px;}
.y14c{bottom:673.258500px;}
.y22c{bottom:674.094000px;}
.y18c{bottom:677.500500px;}
.y116{bottom:686.473500px;}
.y31{bottom:687.225000px;}
.yc2{bottom:689.112000px;}
.y96{bottom:689.560500px;}
.yea{bottom:690.457500px;}
.y189{bottom:690.906000px;}
.y66{bottom:691.354500px;}
.y1f6{bottom:692.071500px;}
.y14b{bottom:695.562000px;}
.y17b{bottom:695.616000px;}
.y18a{bottom:696.330000px;}
.y115{bottom:703.855500px;}
.y1b8{bottom:703.969718px;}
.y30{bottom:706.681500px;}
.yc1{bottom:707.941500px;}
.y95{bottom:708.390000px;}
.y22b{bottom:708.613500px;}
.ye9{bottom:709.287000px;}
.y65{bottom:710.184000px;}
.y14a{bottom:712.944000px;}
.y17a{bottom:712.998000px;}
.y188{bottom:714.219000px;}
.y1f5{bottom:718.612500px;}
.y114{bottom:721.237500px;}
.y1b7{bottom:725.055906px;}
.y22a{bottom:725.874000px;}
.y2f{bottom:726.138000px;}
.yc0{bottom:726.771000px;}
.y94{bottom:727.219500px;}
.ye8{bottom:728.116500px;}
.y64{bottom:729.013500px;}
.y149{bottom:730.326000px;}
.y179{bottom:730.380000px;}
.y1f4{bottom:736.186500px;}
.y113{bottom:738.148500px;}
.y229{bottom:743.134500px;}
.y2e{bottom:745.596000px;}
.ybf{bottom:745.600500px;}
.y93{bottom:746.049000px;}
.y1b6{bottom:746.241293px;}
.y148{bottom:747.708000px;}
.y178{bottom:747.762000px;}
.y187{bottom:747.841500px;}
.y63{bottom:747.843000px;}
.ye7{bottom:751.429500px;}
.y1f3{bottom:753.760500px;}
.y228{bottom:760.395000px;}
.y112{bottom:761.788500px;}
.ybe{bottom:764.430000px;}
.y146{bottom:764.619000px;}
.y176{bottom:764.673000px;}
.y91{bottom:764.878500px;}
.y2d{bottom:765.052500px;}
.y145{bottom:765.090000px;}
.y175{bottom:765.144000px;}
.y62{bottom:766.671000px;}
.y1b5{bottom:767.426679px;}
.y147{bottom:769.501500px;}
.y177{bottom:769.554000px;}
.y92{bottom:770.302500px;}
.y1f2{bottom:771.334500px;}
.y227{bottom:777.655500px;}
.y144{bottom:782.472000px;}
.y174{bottom:782.526000px;}
.ybd{bottom:783.259500px;}
.y90{bottom:783.708000px;}
.ye6{bottom:785.053500px;}
.y61{bottom:785.500500px;}
.y111{bottom:785.623500px;}
.y1b4{bottom:788.514520px;}
.y1f1{bottom:788.908500px;}
.y226{bottom:794.916000px;}
.y173{bottom:799.908000px;}
.ybc{bottom:802.089000px;}
.y8f{bottom:802.537500px;}
.y2c{bottom:803.638500px;}
.ye5{bottom:803.883000px;}
.y60{bottom:804.330000px;}
.y1f0{bottom:806.482500px;}
.y143{bottom:806.584500px;}
.y225{bottom:812.176500px;}
.y110{bottom:817.438500px;}
.y1d5{bottom:818.040944px;}
.y2b{bottom:819.777000px;}
.ybb{bottom:820.918500px;}
.y8e{bottom:821.367000px;}
.ye4{bottom:822.712500px;}
.y5f{bottom:823.159500px;}
.y172{bottom:824.020500px;}
.y1d4{bottom:828.633795px;}
.y224{bottom:829.437000px;}
.y142{bottom:830.698500px;}
.y8d{bottom:840.196500px;}
.y2a{bottom:840.256500px;}
.ye3{bottom:841.540500px;}
.y5e{bottom:841.989000px;}
.yba{bottom:844.231500px;}
.y223{bottom:846.697500px;}
.y171{bottom:847.662000px;}
.y141{bottom:848.080500px;}
.y1b2{bottom:848.706194px;}
.y29{bottom:852.057000px;}
.y10f{bottom:854.542500px;}
.y8b{bottom:859.026000px;}
.y1b1{bottom:859.299045px;}
.ye2{bottom:860.370000px;}
.y5d{bottom:860.818500px;}
.y222{bottom:863.956500px;}
.y8c{bottom:864.450000px;}
.y140{bottom:865.462500px;}
.y28{bottom:868.195500px;}
.y8a{bottom:877.855500px;}
.ye1{bottom:879.199500px;}
.y5c{bottom:879.648000px;}
.y221{bottom:881.217000px;}
.y170{bottom:882.270000px;}
.y13f{bottom:882.844500px;}
.y27{bottom:884.335500px;}
.y89{bottom:896.685000px;}
.ye0{bottom:898.029000px;}
.y5b{bottom:898.477500px;}
.y13e{bottom:900.226500px;}
.y16f{bottom:901.503000px;}
.y26{bottom:904.815000px;}
.y88{bottom:915.514500px;}
.y220{bottom:915.738000px;}
.y5a{bottom:917.307000px;}
.y13d{bottom:917.608500px;}
.ydf{bottom:921.342000px;}
.y10e{bottom:931.653000px;}
.y21f{bottom:932.998500px;}
.yb9{bottom:934.344000px;}
.y13c{bottom:934.989000px;}
.y16e{bottom:935.688000px;}
.y59{bottom:936.136500px;}
.y87{bottom:938.826000px;}
.y25{bottom:949.491000px;}
.y21e{bottom:950.259000px;}
.y10d{bottom:950.482500px;}
.yb8{bottom:953.173500px;}
.y58{bottom:954.966000px;}
.y86{bottom:959.001000px;}
.y13b{bottom:959.103000px;}
.y21d{bottom:967.519500px;}
.y24{bottom:968.320500px;}
.y10c{bottom:969.312000px;}
.yb7{bottom:972.003000px;}
.y57{bottom:973.795500px;}
.y138{bottom:982.743000px;}
.y21c{bottom:984.780000px;}
.y10b{bottom:988.141500px;}
.yb6{bottom:990.832500px;}
.y13a{bottom:990.961500px;}
.y56{bottom:992.625000px;}
.y136{bottom:999.181500px;}
.y21a{bottom:1002.039000px;}
.y21b{bottom:1002.040500px;}
.y10a{bottom:1006.971000px;}
.y139{bottom:1007.400000px;}
.y23{bottom:1008.240000px;}
.y55{bottom:1011.454500px;}
.yb5{bottom:1014.144000px;}
.y137{bottom:1015.620000px;}
.y16d{bottom:1016.878500px;}
.y219{bottom:1019.299500px;}
.y109{bottom:1025.800500px;}
.y54{bottom:1030.284000px;}
.yb4{bottom:1034.319000px;}
.yde{bottom:1035.708000px;}
.y22{bottom:1036.485000px;}
.y218{bottom:1036.560000px;}
.y108{bottom:1044.630000px;}
.y53{bottom:1049.113500px;}
.y135{bottom:1050.228000px;}
.y217{bottom:1053.820500px;}
.y107{bottom:1063.459500px;}
.y21{bottom:1064.728500px;}
.y52{bottom:1067.943000px;}
.y216{bottom:1071.081000px;}
.y106{bottom:1082.289000px;}
.y51{bottom:1086.772500px;}
.y215{bottom:1088.341500px;}
.y16c{bottom:1092.196500px;}
.y20{bottom:1092.972000px;}
.y50{bottom:1105.602000px;}
.y1e{bottom:1136.460000px;}
.y4f{bottom:1168.366500px;}
.h2{height:25.508090px;}
.h10{height:29.037733px;}
.hb{height:31.131341px;}
.h15{height:31.526842px;}
.h4{height:33.112997px;}
.h1a{height:33.186380px;}
.h20{height:33.378779px;}
.h3{height:34.199443px;}
.h5{height:36.319550px;}
.h1e{height:37.334628px;}
.h25{height:37.551283px;}
.he{height:38.734848px;}
.h1f{height:39.432893px;}
.h16{height:41.482876px;}
.hd{height:41.508281px;}
.h14{height:41.723369px;}
.h12{height:43.038432px;}
.hc{height:43.660208px;}
.h8{height:43.815515px;}
.hf{height:46.697011px;}
.h1b{height:48.489341px;}
.h17{height:48.876816px;}
.h22{height:48.990498px;}
.h27{height:49.117939px;}
.h6{height:50.930649px;}
.h13{height:51.885221px;}
.h19{height:53.959550px;}
.ha{height:54.411312px;}
.h18{height:54.601550px;}
.h24{height:55.252441px;}
.h1d{height:55.843550px;}
.h11{height:55.849550px;}
.h23{height:61.514385px;}
.h1c{height:71.614848px;}
.h9{height:77.469696px;}
.h7{height:90.295600px;}
.h21{height:697.245450px;}
.h26{height:776.523000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:200.382339px;}
.w5{width:663.122955px;}
.w4{width:680.829600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xf2{left:-192.886650px;}
.xfb{left:-92.880645px;}
.x0{left:0.000000px;}
.xf3{left:22.239151px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:57.920054px;}
.x9c{left:71.241000px;}
.xc7{left:75.186000px;}
.x9e{left:76.743000px;}
.xca{left:80.686500px;}
.xa2{left:82.525500px;}
.xa5{left:85.578000px;}
.x9f{left:86.674500px;}
.xa4{left:88.995000px;}
.xcb{left:90.619500px;}
.xcd{left:92.940000px;}
.x9a{left:95.061000px;}
.xc5{left:99.006000px;}
.x9b{left:102.552000px;}
.x9d{left:104.199000px;}
.xa0{left:105.247500px;}
.xc6{left:106.497000px;}
.xc9{left:108.144000px;}
.x94{left:109.195500px;}
.xa1{left:113.230500px;}
.xa6{left:114.723000px;}
.xcc{left:117.175500px;}
.x99{left:119.418000px;}
.xfc{left:122.246355px;}
.xc4{left:123.361500px;}
.xfd{left:157.292355px;}
.x96{left:232.677000px;}
.x97{left:234.916500px;}
.x95{left:244.251000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x16{left:253.714500px;}
.xf7{left:261.753000px;}
.x81{left:263.257500px;}
.x4e{left:268.668000px;}
.x6{left:269.914500px;}
.x85{left:274.542000px;}
.x4f{left:277.897500px;}
.x19{left:281.479500px;}
.x6a{left:283.428000px;}
.x86{left:286.807500px;}
.x55{left:287.980500px;}
.xa{left:290.617500px;}
.x2a{left:294.184500px;}
.x82{left:296.215500px;}
.x83{left:297.264000px;}
.xf1{left:299.136000px;}
.x2b{left:301.656000px;}
.xda{left:303.135000px;}
.x84{left:305.247000px;}
.xf{left:306.484500px;}
.x8{left:308.155500px;}
.xd{left:311.394000px;}
.x8f{left:314.629500px;}
.xf4{left:317.962500px;}
.x98{left:319.200000px;}
.x17{left:320.538000px;}
.x18{left:324.102000px;}
.x6d{left:325.836000px;}
.x90{left:329.574000px;}
.xf6{left:331.080000px;}
.x91{left:333.268500px;}
.x73{left:335.377500px;}
.x26{left:338.967000px;}
.x3f{left:341.046000px;}
.x46{left:342.997500px;}
.x40{left:345.193500px;}
.x92{left:348.213000px;}
.xa9{left:351.208500px;}
.x27{left:353.911500px;}
.x1c{left:357.802500px;}
.x28{left:361.345500px;}
.x1d{left:365.275500px;}
.x44{left:366.939000px;}
.x30{left:369.097500px;}
.xbf{left:370.758000px;}
.x31{left:371.832000px;}
.x29{left:376.290000px;}
.xe4{left:377.607000px;}
.x45{left:379.230000px;}
.xc0{left:380.922000px;}
.xe7{left:384.933000px;}
.xb{left:389.347500px;}
.xff{left:390.742500px;}
.xe8{left:395.104500px;}
.x2c{left:397.416000px;}
.x47{left:399.100500px;}
.xdb{left:406.993500px;}
.x8e{left:410.616000px;}
.x2d{left:412.360500px;}
.xfe{left:413.556000px;}
.x3d{left:423.031500px;}
.x5c{left:425.568000px;}
.x3e{left:427.180500px;}
.x67{left:435.706500px;}
.x1e{left:437.659500px;}
.x5d{left:440.512500px;}
.x64{left:442.776000px;}
.x1f{left:445.131000px;}
.x79{left:448.470000px;}
.x62{left:449.569500px;}
.x20{left:452.544000px;}
.xc2{left:454.468500px;}
.x63{left:458.799000px;}
.x21{left:460.015500px;}
.xdc{left:462.117000px;}
.x7a{left:463.414500px;}
.x7d{left:464.770500px;}
.x80{left:471.136500px;}
.xcf{left:475.162500px;}
.x12{left:477.487500px;}
.x6b{left:479.551500px;}
.xb9{left:480.802500px;}
.x13{left:486.825000px;}
.x6c{left:488.782500px;}
.xde{left:496.197000px;}
.xb0{left:503.109000px;}
.x6e{left:504.745500px;}
.xf9{left:510.949500px;}
.x6f{left:513.976500px;}
.xfa{left:519.258000px;}
.xe0{left:520.423500px;}
.xed{left:524.212500px;}
.x71{left:526.284000px;}
.x57{left:530.500500px;}
.xad{left:534.385500px;}
.x72{left:535.515000px;}
.xc1{left:541.105500px;}
.x58{left:545.445000px;}
.xae{left:550.632000px;}
.x1a{left:552.426000px;}
.xe1{left:553.713000px;}
.x48{left:554.877000px;}
.x1b{left:559.899000px;}
.x49{left:561.682500px;}
.xf5{left:567.837000px;}
.x66{left:576.019500px;}
.x38{left:580.960500px;}
.x39{left:590.860500px;}
.xb1{left:592.677000px;}
.xd7{left:595.969500px;}
.xbe{left:598.716000px;}
.x56{left:603.763500px;}
.xe9{left:605.497500px;}
.xd2{left:607.014000px;}
.xb4{left:608.632500px;}
.xb2{left:610.366500px;}
.x8b{left:613.476000px;}
.xb7{left:614.884500px;}
.x74{left:616.791000px;}
.x10{left:618.225000px;}
.xef{left:620.748000px;}
.x11{left:622.104000px;}
.xb5{left:624.799500px;}
.x75{left:626.020500px;}
.xea{left:627.738000px;}
.x88{left:629.211000px;}
.x22{left:630.346500px;}
.x59{left:634.009500px;}
.xf8{left:636.615000px;}
.x23{left:637.819500px;}
.xdf{left:640.627500px;}
.xd5{left:643.683000px;}
.x89{left:645.223500px;}
.xbc{left:650.193000px;}
.x24{left:651.256500px;}
.xd0{left:652.362000px;}
.x102{left:654.225000px;}
.xc3{left:655.750500px;}
.xaa{left:659.119500px;}
.xbd{left:660.546000px;}
.x5e{left:662.404500px;}
.x93{left:665.088000px;}
.x25{left:666.199500px;}
.xd1{left:667.924500px;}
.x5f{left:671.635500px;}
.xab{left:675.535500px;}
.xaf{left:677.379000px;}
.x54{left:679.509000px;}
.x7e{left:683.080500px;}
.x34{left:684.252000px;}
.xa3{left:686.152500px;}
.xe5{left:687.655500px;}
.x37{left:689.386500px;}
.xeb{left:690.892500px;}
.x7f{left:692.311500px;}
.x65{left:694.356000px;}
.x52{left:695.611500px;}
.xe6{left:697.812000px;}
.x35{left:699.196500px;}
.xec{left:700.728000px;}
.x14{left:703.374000px;}
.x53{left:704.842500px;}
.xb8{left:705.976500px;}
.xbb{left:707.985000px;}
.xd8{left:710.268000px;}
.x15{left:712.710000px;}
.xe2{left:713.907000px;}
.x8c{left:715.806000px;}
.x36{left:717.913500px;}
.xb6{left:719.425500px;}
.x2e{left:720.676500px;}
.x7b{left:722.137500px;}
.xb3{left:723.877500px;}
.x3b{left:725.823000px;}
.x50{left:727.501500px;}
.x7c{left:730.110000px;}
.x8d{left:731.995500px;}
.xa7{left:733.528500px;}
.x2f{left:735.619500px;}
.x51{left:736.732500px;}
.xe3{left:737.965500px;}
.x3c{left:740.767500px;}
.x42{left:743.365500px;}
.x8a{left:746.775000px;}
.xa8{left:748.471500px;}
.xd6{left:750.933000px;}
.xee{left:752.113500px;}
.x43{left:755.658000px;}
.xd3{left:759.435000px;}
.x9{left:760.773000px;}
.x105{left:762.022500px;}
.xd9{left:763.038000px;}
.x77{left:764.680500px;}
.x4c{left:766.374000px;}
.xce{left:767.478000px;}
.xd4{left:768.666000px;}
.x76{left:769.741500px;}
.x78{left:772.653000px;}
.xf0{left:774.505500px;}
.xba{left:776.746500px;}
.x100{left:778.278000px;}
.xc{left:779.668500px;}
.x4d{left:781.318500px;}
.x4a{left:785.445000px;}
.xac{left:787.674000px;}
.xe{left:790.186500px;}
.xdd{left:791.718000px;}
.x3a{left:794.370000px;}
.x5a{left:795.735000px;}
.x4b{left:800.388000px;}
.x70{left:802.177500px;}
.x60{left:803.502000px;}
.x5b{left:810.678000px;}
.x61{left:812.731500px;}
.xc8{left:814.738500px;}
.x103{left:816.612000px;}
.x32{left:817.698000px;}
.x68{left:819.093000px;}
.x101{left:821.692500px;}
.x41{left:826.572000px;}
.x33{left:832.642500px;}
.x69{left:834.036000px;}
.x87{left:836.208000px;}
.x104{left:837.300000px;}
@media print{
.v8{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-1.674667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.674667pt;}
.v5{vertical-align:16.245333pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v7{vertical-align:29.226667pt;}
.lsba{letter-spacing:-0.152838pt;}
.lsb6{letter-spacing:-0.149811pt;}
.lsc0{letter-spacing:-0.146960pt;}
.lsbb{letter-spacing:-0.141082pt;}
.lsa5{letter-spacing:-0.140448pt;}
.lsab{letter-spacing:-0.132000pt;}
.lsae{letter-spacing:-0.117568pt;}
.lsc1{letter-spacing:-0.111690pt;}
.lsbf{letter-spacing:-0.105811pt;}
.lsb9{letter-spacing:-0.073920pt;}
.lsbc{letter-spacing:-0.064662pt;}
.lsc2{letter-spacing:-0.052906pt;}
.lsad{letter-spacing:-0.042240pt;}
.lsbd{letter-spacing:-0.041149pt;}
.lsa9{letter-spacing:-0.035270pt;}
.lsaf{letter-spacing:-0.029392pt;}
.lsa8{letter-spacing:-0.023514pt;}
.lsb8{letter-spacing:-0.021120pt;}
.lsac{letter-spacing:-0.015840pt;}
.lsb7{letter-spacing:-0.014045pt;}
.lsa7{letter-spacing:-0.005878pt;}
.lsa6{letter-spacing:-0.004682pt;}
.lsc{letter-spacing:0.000000pt;}
.lsc9{letter-spacing:0.000008pt;}
.lsca{letter-spacing:0.000225pt;}
.lsd2{letter-spacing:0.000447pt;}
.lsd4{letter-spacing:0.000503pt;}
.ls10{letter-spacing:0.000544pt;}
.lsc6{letter-spacing:0.000600pt;}
.lscc{letter-spacing:0.000711pt;}
.lsd7{letter-spacing:0.000921pt;}
.lsc8{letter-spacing:0.000974pt;}
.lsc7{letter-spacing:0.001026pt;}
.lsd1{letter-spacing:0.001134pt;}
.ls6{letter-spacing:0.001398pt;}
.lsd9{letter-spacing:0.001630pt;}
.ls8{letter-spacing:0.002372pt;}
.ls4{letter-spacing:0.002422pt;}
.lscb{letter-spacing:0.002729pt;}
.lscf{letter-spacing:0.002919pt;}
.lsd8{letter-spacing:0.003261pt;}
.ls2b{letter-spacing:0.003430pt;}
.lsc4{letter-spacing:0.003653pt;}
.lscd{letter-spacing:0.003793pt;}
.lsd0{letter-spacing:0.004267pt;}
.lsa1{letter-spacing:0.005280pt;}
.lsce{letter-spacing:0.005332pt;}
.ls97{letter-spacing:0.010560pt;}
.ls93{letter-spacing:0.011757pt;}
.ls9c{letter-spacing:0.015840pt;}
.ls9b{letter-spacing:0.021120pt;}
.ls94{letter-spacing:0.023514pt;}
.ls96{letter-spacing:0.026400pt;}
.lsa4{letter-spacing:0.029392pt;}
.ls95{letter-spacing:0.031680pt;}
.lsb3{letter-spacing:0.036960pt;}
.lsb5{letter-spacing:0.041149pt;}
.ls99{letter-spacing:0.042240pt;}
.lsbe{letter-spacing:0.047027pt;}
.lsa0{letter-spacing:0.047520pt;}
.lsb0{letter-spacing:0.056179pt;}
.lsa2{letter-spacing:0.058080pt;}
.ls9f{letter-spacing:0.063360pt;}
.ls90{letter-spacing:0.065542pt;}
.lsb4{letter-spacing:0.068640pt;}
.ls98{letter-spacing:0.089760pt;}
.lsa3{letter-spacing:0.100320pt;}
.lsb2{letter-spacing:0.121440pt;}
.ls9d{letter-spacing:0.126720pt;}
.ls9a{letter-spacing:0.137280pt;}
.ls9e{letter-spacing:0.147840pt;}
.lsaa{letter-spacing:0.158717pt;}
.lsb1{letter-spacing:0.168538pt;}
.ls92{letter-spacing:0.177901pt;}
.ls91{letter-spacing:0.187264pt;}
.ls1a{letter-spacing:0.570745pt;}
.lsb{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.lsa{letter-spacing:10.626533pt;}
.ls31{letter-spacing:10.629067pt;}
.ls6a{letter-spacing:10.708575pt;}
.lsdc{letter-spacing:11.353644pt;}
.lsd6{letter-spacing:11.867022pt;}
.lsdb{letter-spacing:11.890442pt;}
.lsc3{letter-spacing:11.954133pt;}
.lsc5{letter-spacing:11.959467pt;}
.lsd3{letter-spacing:12.028780pt;}
.lsd5{letter-spacing:12.047496pt;}
.ls8d{letter-spacing:12.259096pt;}
.ls8c{letter-spacing:12.264429pt;}
.ls11{letter-spacing:12.453475pt;}
.lsf{letter-spacing:12.525762pt;}
.ls14{letter-spacing:12.528078pt;}
.lse{letter-spacing:12.531096pt;}
.ls16{letter-spacing:12.533411pt;}
.lsda{letter-spacing:12.588591pt;}
.ls12{letter-spacing:13.084329pt;}
.ls32{letter-spacing:13.281067pt;}
.ls13{letter-spacing:13.283467pt;}
.ls8f{letter-spacing:13.283733pt;}
.ls1{letter-spacing:13.284541pt;}
.ls6c{letter-spacing:13.917762pt;}
.ls6b{letter-spacing:13.923096pt;}
.ls9{letter-spacing:14.608533pt;}
.ls8e{letter-spacing:14.933720pt;}
.lsd{letter-spacing:16.580779pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls3b{letter-spacing:80.405377pt;}
.ls57{letter-spacing:84.477692pt;}
.ls53{letter-spacing:86.083375pt;}
.ls5e{letter-spacing:87.414031pt;}
.ls49{letter-spacing:87.997599pt;}
.ls40{letter-spacing:88.627025pt;}
.ls4e{letter-spacing:88.627865pt;}
.ls37{letter-spacing:88.929325pt;}
.ls62{letter-spacing:89.446031pt;}
.ls4c{letter-spacing:90.467025pt;}
.ls7b{letter-spacing:92.563025pt;}
.ls45{letter-spacing:95.395329pt;}
.ls35{letter-spacing:95.413377pt;}
.ls36{letter-spacing:95.949692pt;}
.ls43{letter-spacing:97.384266pt;}
.ls47{letter-spacing:97.531200pt;}
.ls66{letter-spacing:97.533273pt;}
.ls56{letter-spacing:97.869599pt;}
.ls48{letter-spacing:97.922606pt;}
.ls52{letter-spacing:98.033325pt;}
.ls46{letter-spacing:98.434932pt;}
.ls67{letter-spacing:98.517867pt;}
.ls38{letter-spacing:99.086042pt;}
.ls3a{letter-spacing:99.561198pt;}
.ls51{letter-spacing:100.099865pt;}
.ls3f{letter-spacing:100.585198pt;}
.ls3e{letter-spacing:100.637273pt;}
.ls44{letter-spacing:100.881325pt;}
.ls5d{letter-spacing:101.402710pt;}
.ls7a{letter-spacing:101.678042pt;}
.ls77{letter-spacing:102.211025pt;}
.ls39{letter-spacing:102.664708pt;}
.ls82{letter-spacing:103.200044pt;}
.ls81{letter-spacing:103.665325pt;}
.ls61{letter-spacing:104.510042pt;}
.ls74{letter-spacing:105.949599pt;}
.ls70{letter-spacing:106.061996pt;}
.ls4d{letter-spacing:106.571364pt;}
.ls80{letter-spacing:106.771865pt;}
.ls86{letter-spacing:109.801198pt;}
.ls41{letter-spacing:110.445692pt;}
.ls3c{letter-spacing:112.360358pt;}
.ls5f{letter-spacing:114.051865pt;}
.ls58{letter-spacing:114.445599pt;}
.ls54{letter-spacing:114.593325pt;}
.ls78{letter-spacing:114.602710pt;}
.ls33{letter-spacing:115.075865pt;}
.ls4a{letter-spacing:115.371991pt;}
.ls4b{letter-spacing:115.859329pt;}
.ls83{letter-spacing:117.608266pt;}
.ls7f{letter-spacing:118.523991pt;}
.ls76{letter-spacing:119.214531pt;}
.ls34{letter-spacing:121.864358pt;}
.ls4f{letter-spacing:121.914710pt;}
.ls42{letter-spacing:123.830658pt;}
.ls6f{letter-spacing:124.142531pt;}
.ls3d{letter-spacing:124.370932pt;}
.ls73{letter-spacing:127.429377pt;}
.ls84{letter-spacing:128.360266pt;}
.ls75{letter-spacing:129.885599pt;}
.ls79{letter-spacing:131.182042pt;}
.ls7e{letter-spacing:132.002606pt;}
.ls6e{letter-spacing:132.443364pt;}
.ls85{letter-spacing:132.594932pt;}
.ls8a{letter-spacing:134.048533pt;}
.ls6d{letter-spacing:134.517377pt;}
.ls68{letter-spacing:135.933273pt;}
.ls63{letter-spacing:136.917867pt;}
.ls50{letter-spacing:139.042606pt;}
.ls7d{letter-spacing:139.090606pt;}
.ls89{letter-spacing:141.056533pt;}
.ls71{letter-spacing:145.678042pt;}
.ls72{letter-spacing:147.278042pt;}
.ls7c{letter-spacing:158.285273pt;}
.ls88{letter-spacing:160.256533pt;}
.ls8b{letter-spacing:166.519939pt;}
.ls87{letter-spacing:167.504533pt;}
.ls5c{letter-spacing:218.049007pt;}
.ls65{letter-spacing:219.121007pt;}
.ls5a{letter-spacing:219.126340pt;}
.ls60{letter-spacing:247.152044pt;}
.ls5b{letter-spacing:249.602932pt;}
.ls59{letter-spacing:250.254042pt;}
.ls55{letter-spacing:252.318531pt;}
.ls69{letter-spacing:261.168533pt;}
.ls64{letter-spacing:261.173867pt;}
.ls29{letter-spacing:271.968533pt;}
.ls25{letter-spacing:272.061273pt;}
.ls23{letter-spacing:273.008044pt;}
.ls15{letter-spacing:273.384266pt;}
.ls1f{letter-spacing:274.424266pt;}
.ls1d{letter-spacing:275.075865pt;}
.ls21{letter-spacing:276.877996pt;}
.ls18{letter-spacing:276.883025pt;}
.ls1b{letter-spacing:276.961325pt;}
.ls27{letter-spacing:278.179375pt;}
.ls2d{letter-spacing:281.805996pt;}
.ls2f{letter-spacing:282.083865pt;}
.ls26{letter-spacing:283.959939pt;}
.ls2a{letter-spacing:287.808044pt;}
.ls17{letter-spacing:295.864358pt;}
.ls22{letter-spacing:295.917692pt;}
.ls1e{letter-spacing:296.266710pt;}
.ls1c{letter-spacing:297.457325pt;}
.ls24{letter-spacing:297.459375pt;}
.ls2c{letter-spacing:299.566933pt;}
.ls19{letter-spacing:299.768662pt;}
.ls2e{letter-spacing:301.832662pt;}
.ls20{letter-spacing:302.891200pt;}
.ls28{letter-spacing:304.937198pt;}
.ls30{letter-spacing:305.995364pt;}
.ws10{word-spacing:-99.911078pt;}
.ws56{word-spacing:-13.283467pt;}
.ws103{word-spacing:-13.200000pt;}
.ws1b{word-spacing:-11.955200pt;}
.wsdc{word-spacing:-11.891264pt;}
.ws102{word-spacing:-11.881901pt;}
.wsdd{word-spacing:-11.704000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsea{word-spacing:-3.450621pt;}
.wseb{word-spacing:-3.403594pt;}
.ws54{word-spacing:-2.975497pt;}
.wsda{word-spacing:-2.922363pt;}
.ws5f{word-spacing:-2.709827pt;}
.ws60{word-spacing:-2.337890pt;}
.ws37{word-spacing:-2.284756pt;}
.wsdb{word-spacing:-2.072221pt;}
.ws117{word-spacing:-2.022170pt;}
.ws50{word-spacing:-2.019087pt;}
.ws110{word-spacing:-1.964160pt;}
.ws10f{word-spacing:-1.948320pt;}
.ws3d{word-spacing:-1.859685pt;}
.ws43{word-spacing:-1.806551pt;}
.wsc7{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.wsc5{word-spacing:-1.664027pt;}
.wsc6{word-spacing:-1.659947pt;}
.ws5b{word-spacing:-1.647150pt;}
.ws116{word-spacing:-1.628317pt;}
.ws158{word-spacing:-1.625907pt;}
.ws115{word-spacing:-1.604803pt;}
.ws131{word-spacing:-1.434624pt;}
.wsc3{word-spacing:-1.434614pt;}
.ws4d{word-spacing:-1.381481pt;}
.ws118{word-spacing:-1.369667pt;}
.ws6b{word-spacing:-1.328347pt;}
.wse9{word-spacing:-1.310883pt;}
.ws5d{word-spacing:-1.275213pt;}
.ws6a{word-spacing:-1.222079pt;}
.ws0{word-spacing:-1.175671pt;}
.ws68{word-spacing:-1.168945pt;}
.ws145{word-spacing:-1.147699pt;}
.ws12e{word-spacing:-1.121671pt;}
.ws6c{word-spacing:-1.115811pt;}
.ws130{word-spacing:-1.099878pt;}
.ws6{word-spacing:-1.041421pt;}
.ws69{word-spacing:-1.009543pt;}
.wsc4{word-spacing:-0.994533pt;}
.ws85{word-spacing:-0.935158pt;}
.ws8{word-spacing:-0.929840pt;}
.wse3{word-spacing:-0.908595pt;}
.ws58{word-spacing:-0.903276pt;}
.ws12f{word-spacing:-0.860774pt;}
.ws59{word-spacing:-0.850142pt;}
.ws139{word-spacing:-0.812954pt;}
.ws76{word-spacing:-0.797008pt;}
.ws2b{word-spacing:-0.743874pt;}
.ws61{word-spacing:-0.731344pt;}
.ws57{word-spacing:-0.690740pt;}
.ws155{word-spacing:-0.621670pt;}
.wsd9{word-spacing:-0.584473pt;}
.ws5a{word-spacing:-0.531339pt;}
.ws49{word-spacing:-0.478205pt;}
.ws5c{word-spacing:-0.425071pt;}
.ws154{word-spacing:-0.382566pt;}
.ws75{word-spacing:-0.371937pt;}
.ws23{word-spacing:-0.334746pt;}
.ws38{word-spacing:-0.318803pt;}
.ws119{word-spacing:-0.305677pt;}
.ws4f{word-spacing:-0.300819pt;}
.ws137{word-spacing:-0.286925pt;}
.ws35{word-spacing:-0.265669pt;}
.ws1c{word-spacing:-0.239104pt;}
.ws36{word-spacing:-0.212535pt;}
.ws11e{word-spacing:-0.211622pt;}
.ws18{word-spacing:-0.191283pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.wse4{word-spacing:-0.095642pt;}
.ws5e{word-spacing:-0.085557pt;}
.wse6{word-spacing:-0.079587pt;}
.ws108{word-spacing:-0.074906pt;}
.ws12{word-spacing:-0.053134pt;}
.wsbf{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws141{word-spacing:-0.009788pt;}
.ws144{word-spacing:-0.008013pt;}
.ws13c{word-spacing:-0.007526pt;}
.ws146{word-spacing:-0.006460pt;}
.ws126{word-spacing:-0.006221pt;}
.ws12d{word-spacing:-0.005530pt;}
.wsad{word-spacing:-0.005333pt;}
.ws14a{word-spacing:-0.004907pt;}
.ws150{word-spacing:-0.004755pt;}
.ws77{word-spacing:-0.004386pt;}
.ws7e{word-spacing:-0.004267pt;}
.ws14e{word-spacing:-0.003806pt;}
.ws4{word-spacing:-0.003327pt;}
.ws7b{word-spacing:-0.003200pt;}
.ws15{word-spacing:-0.002841pt;}
.wsca{word-spacing:-0.002667pt;}
.ws142{word-spacing:-0.002654pt;}
.wscf{word-spacing:-0.001067pt;}
.ws13{word-spacing:-0.000015pt;}
.ws3{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.000559pt;}
.ws79{word-spacing:0.001067pt;}
.ws81{word-spacing:0.002133pt;}
.ws147{word-spacing:0.022380pt;}
.wsf7{word-spacing:0.042240pt;}
.ws1d{word-spacing:0.047821pt;}
.wsf4{word-spacing:0.052800pt;}
.ws120{word-spacing:0.052906pt;}
.ws2e{word-spacing:0.053134pt;}
.wse5{word-spacing:0.056179pt;}
.ws107{word-spacing:0.060861pt;}
.wsfa{word-spacing:0.079200pt;}
.ws98{word-spacing:0.085014pt;}
.wsee{word-spacing:0.089760pt;}
.ws104{word-spacing:0.095642pt;}
.ws111{word-spacing:0.105600pt;}
.ws33{word-spacing:0.106268pt;}
.wsf5{word-spacing:0.116160pt;}
.wsf9{word-spacing:0.121440pt;}
.ws101{word-spacing:0.123446pt;}
.ws112{word-spacing:0.126720pt;}
.wsf6{word-spacing:0.132000pt;}
.wsef{word-spacing:0.137280pt;}
.wse1{word-spacing:0.143462pt;}
.wsed{word-spacing:0.147840pt;}
.wsfc{word-spacing:0.153120pt;}
.wsf2{word-spacing:0.158400pt;}
.ws2c{word-spacing:0.159402pt;}
.wsf3{word-spacing:0.163680pt;}
.wsfd{word-spacing:0.168960pt;}
.ws132{word-spacing:0.173750pt;}
.wsf8{word-spacing:0.174240pt;}
.ws21{word-spacing:0.191283pt;}
.ws11b{word-spacing:0.193987pt;}
.wsf1{word-spacing:0.195360pt;}
.ws31{word-spacing:0.212535pt;}
.wsfb{word-spacing:0.221760pt;}
.ws11c{word-spacing:0.235136pt;}
.ws24{word-spacing:0.239104pt;}
.ws46{word-spacing:0.265669pt;}
.ws12a{word-spacing:0.286925pt;}
.wsf0{word-spacing:0.311520pt;}
.ws45{word-spacing:0.318803pt;}
.wse0{word-spacing:0.334746pt;}
.ws4a{word-spacing:0.371937pt;}
.ws9e{word-spacing:0.425071pt;}
.ws66{word-spacing:0.478205pt;}
.ws151{word-spacing:0.478208pt;}
.ws70{word-spacing:0.531339pt;}
.ws8c{word-spacing:0.574481pt;}
.ws93{word-spacing:0.574874pt;}
.ws8e{word-spacing:0.576734pt;}
.ws78{word-spacing:0.581530pt;}
.ws7d{word-spacing:0.583006pt;}
.ws6f{word-spacing:0.584473pt;}
.ws96{word-spacing:0.592265pt;}
.ws7a{word-spacing:0.593067pt;}
.ws7c{word-spacing:0.594133pt;}
.wsc0{word-spacing:0.596139pt;}
.wsa9{word-spacing:0.596267pt;}
.ws8b{word-spacing:0.597333pt;}
.ws80{word-spacing:0.598400pt;}
.ws91{word-spacing:0.599031pt;}
.ws7f{word-spacing:0.599467pt;}
.wsab{word-spacing:0.601600pt;}
.wsaa{word-spacing:0.604723pt;}
.ws94{word-spacing:0.614784pt;}
.ws153{word-spacing:0.621670pt;}
.ws6d{word-spacing:0.637606pt;}
.ws9b{word-spacing:0.660267pt;}
.wsce{word-spacing:0.662400pt;}
.ws9f{word-spacing:0.665600pt;}
.wsc9{word-spacing:0.667733pt;}
.wsa3{word-spacing:0.669333pt;}
.ws97{word-spacing:0.680115pt;}
.ws19{word-spacing:0.812954pt;}
.wsd5{word-spacing:0.850142pt;}
.ws14f{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws67{word-spacing:0.903276pt;}
.ws121{word-spacing:0.956410pt;}
.ws4c{word-spacing:1.062677pt;}
.ws9c{word-spacing:1.115811pt;}
.wsfe{word-spacing:1.122774pt;}
.wsa2{word-spacing:1.168945pt;}
.ws27{word-spacing:1.275213pt;}
.ws143{word-spacing:1.291162pt;}
.ws55{word-spacing:1.328347pt;}
.ws140{word-spacing:1.386803pt;}
.ws20{word-spacing:1.530266pt;}
.wsa4{word-spacing:1.540882pt;}
.wsa6{word-spacing:1.578086pt;}
.ws44{word-spacing:1.594016pt;}
.wsd6{word-spacing:1.647150pt;}
.ws71{word-spacing:1.700284pt;}
.ws86{word-spacing:1.806551pt;}
.wsa5{word-spacing:1.865011pt;}
.ws73{word-spacing:1.912819pt;}
.ws3c{word-spacing:1.965953pt;}
.ws3a{word-spacing:2.125355pt;}
.ws13f{word-spacing:2.199757pt;}
.ws65{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws148{word-spacing:2.247578pt;}
.ws39{word-spacing:2.284756pt;}
.ws11d{word-spacing:2.310211pt;}
.wsd8{word-spacing:2.337890pt;}
.ws105{word-spacing:2.391024pt;}
.ws122{word-spacing:2.444158pt;}
.ws4e{word-spacing:2.497292pt;}
.ws16{word-spacing:2.550432pt;}
.ws22{word-spacing:2.582323pt;}
.ws14b{word-spacing:2.630144pt;}
.ws13b{word-spacing:2.677965pt;}
.ws48{word-spacing:2.762961pt;}
.wscc{word-spacing:2.816095pt;}
.ws156{word-spacing:2.861978pt;}
.ws152{word-spacing:2.863710pt;}
.ws14c{word-spacing:2.864461pt;}
.ws125{word-spacing:2.864674pt;}
.ws133{word-spacing:2.865186pt;}
.ws14d{word-spacing:2.865553pt;}
.ws159{word-spacing:2.865579pt;}
.ws127{word-spacing:2.865843pt;}
.ws13e{word-spacing:2.865860pt;}
.ws123{word-spacing:2.866509pt;}
.ws149{word-spacing:2.867524pt;}
.ws13a{word-spacing:2.867661pt;}
.ws129{word-spacing:2.868847pt;}
.ws157{word-spacing:2.869018pt;}
.ws12b{word-spacing:2.869248pt;}
.ws138{word-spacing:2.869274pt;}
.ws28{word-spacing:2.922363pt;}
.ws1a{word-spacing:2.964890pt;}
.wsc2{word-spacing:2.975504pt;}
.wse2{word-spacing:3.012710pt;}
.ws128{word-spacing:3.060531pt;}
.ws51{word-spacing:3.081764pt;}
.ws32{word-spacing:3.134898pt;}
.ws13d{word-spacing:3.156173pt;}
.ws26{word-spacing:3.188032pt;}
.ws136{word-spacing:3.203994pt;}
.ws64{word-spacing:3.241166pt;}
.ws3b{word-spacing:3.294300pt;}
.ws52{word-spacing:3.347434pt;}
.ws12c{word-spacing:3.347456pt;}
.ws6e{word-spacing:3.453701pt;}
.wsdf{word-spacing:3.490918pt;}
.wsde{word-spacing:3.538739pt;}
.ws62{word-spacing:3.719371pt;}
.wsa1{word-spacing:3.985040pt;}
.wsd3{word-spacing:4.038174pt;}
.wsc8{word-spacing:4.091308pt;}
.ws9d{word-spacing:4.144442pt;}
.wse{word-spacing:4.240070pt;}
.ws100{word-spacing:4.291232pt;}
.ws9a{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws10a{word-spacing:4.356000pt;}
.ws10e{word-spacing:4.361280pt;}
.ws10b{word-spacing:4.377120pt;}
.ws4b{word-spacing:4.410111pt;}
.ws109{word-spacing:4.419360pt;}
.wsd2{word-spacing:4.463245pt;}
.ws134{word-spacing:4.495155pt;}
.ws47{word-spacing:4.569513pt;}
.wsd4{word-spacing:4.622646pt;}
.ws1e{word-spacing:4.638618pt;}
.ws2a{word-spacing:4.728914pt;}
.ws10c{word-spacing:4.752000pt;}
.ws10d{word-spacing:4.825920pt;}
.ws106{word-spacing:4.835182pt;}
.ws74{word-spacing:4.888316pt;}
.ws3f{word-spacing:4.941450pt;}
.ws11f{word-spacing:4.973126pt;}
.wsd7{word-spacing:5.047717pt;}
.ws99{word-spacing:5.153985pt;}
.ws124{word-spacing:5.212467pt;}
.wse8{word-spacing:5.361101pt;}
.ws42{word-spacing:5.366521pt;}
.wsa0{word-spacing:5.525922pt;}
.ws40{word-spacing:5.579056pt;}
.ws34{word-spacing:5.897859pt;}
.ws87{word-spacing:5.950993pt;}
.wscd{word-spacing:6.057261pt;}
.ws3e{word-spacing:6.269796pt;}
.ws135{word-spacing:6.312346pt;}
.wsd1{word-spacing:6.429198pt;}
.ws114{word-spacing:6.566173pt;}
.ws113{word-spacing:6.577930pt;}
.ws72{word-spacing:6.694867pt;}
.wsec{word-spacing:6.818944pt;}
.ws1f{word-spacing:6.886195pt;}
.ws53{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.ws25{word-spacing:7.077478pt;}
.wscb{word-spacing:7.332474pt;}
.ws41{word-spacing:7.385607pt;}
.ws11a{word-spacing:7.794758pt;}
.wsff{word-spacing:9.017466pt;}
.wsa{word-spacing:10.823338pt;}
.wse7{word-spacing:11.357562pt;}
.wsd0{word-spacing:11.901986pt;}
.wsb{word-spacing:14.319536pt;}
.ws63{word-spacing:14.877483pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.wsb5{word-spacing:69.338521pt;}
.ws92{word-spacing:72.223550pt;}
.wsba{word-spacing:83.551151pt;}
.ws89{word-spacing:84.834099pt;}
.wsb8{word-spacing:94.655854pt;}
.wsb9{word-spacing:95.319330pt;}
.ws8f{word-spacing:100.697285pt;}
.wsac{word-spacing:101.436663pt;}
.wsb1{word-spacing:101.684883pt;}
.ws8d{word-spacing:101.737285pt;}
.wsbb{word-spacing:102.771952pt;}
.wsb0{word-spacing:105.895423pt;}
.wsbc{word-spacing:105.898217pt;}
.wsb2{word-spacing:113.123952pt;}
.wsbd{word-spacing:115.554090pt;}
.wsae{word-spacing:116.988663pt;}
.wsb4{word-spacing:120.889893pt;}
.wsbe{word-spacing:123.768843pt;}
.wsb3{word-spacing:124.618217pt;}
.wsb7{word-spacing:145.335423pt;}
.ws8a{word-spacing:174.624896pt;}
.ws88{word-spacing:176.992512pt;}
.ws90{word-spacing:205.686741pt;}
.wsa8{word-spacing:211.995563pt;}
.wsa7{word-spacing:246.038016pt;}
.wsaf{word-spacing:246.632030pt;}
.wsb6{word-spacing:250.364075pt;}
.ws95{word-spacing:252.410249pt;}
.ws83{word-spacing:285.201408pt;}
.ws82{word-spacing:286.637363pt;}
.wsc1{word-spacing:294.948915pt;}
.ws84{word-spacing:324.058249pt;}
._8{margin-left:-10.616218pt;}
._40{margin-left:-6.996423pt;}
._18{margin-left:-5.998401pt;}
._c{margin-left:-4.675792pt;}
._2{margin-left:-3.421811pt;}
._1b{margin-left:-2.214375pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._a{width:3.270723pt;}
._3e{width:8.828341pt;}
._6{width:10.132188pt;}
._3{width:11.530016pt;}
._16{width:12.599453pt;}
._e{width:14.011494pt;}
._f{width:14.967910pt;}
._11{width:15.876506pt;}
._d{width:17.645875pt;}
._13{width:19.254639pt;}
._17{width:20.576259pt;}
._12{width:22.118084pt;}
._4{width:23.061099pt;}
._10{width:24.245146pt;}
._7{width:27.188522pt;}
._9{width:29.648896pt;}
._1c{width:31.455249pt;}
._1a{width:34.059809pt;}
._19{width:35.234480pt;}
._3f{width:39.000258pt;}
._b{width:48.376563pt;}
._44{width:54.993920pt;}
._43{width:78.904320pt;}
._2b{width:97.745715pt;}
._2d{width:118.739046pt;}
._28{width:121.177907pt;}
._37{width:130.873489pt;}
._2f{width:137.383458pt;}
._29{width:139.828019pt;}
._2e{width:152.136892pt;}
._38{width:158.822903pt;}
._31{width:160.869171pt;}
._3a{width:179.922125pt;}
._22{width:182.756156pt;}
._39{width:191.640892pt;}
._23{width:198.265037pt;}
._3c{width:199.888401pt;}
._2a{width:211.176653pt;}
._2c{width:214.954496pt;}
._24{width:217.436791pt;}
._30{width:220.501709pt;}
._3b{width:226.565931pt;}
._27{width:228.439962pt;}
._1f{width:236.267742pt;}
._26{width:242.451456pt;}
._36{width:253.689344pt;}
._35{width:259.380019pt;}
._25{width:261.051264pt;}
._20{width:263.673245pt;}
._3d{width:270.660591pt;}
._21{width:288.598528pt;}
._34{width:313.082778pt;}
._33{width:323.029504pt;}
._1e{width:359.803699pt;}
._32{width:372.018804pt;}
._1d{width:411.614427pt;}
._14{width:722.128126pt;}
._42{width:2034.004551pt;}
._41{width:2256.091137pt;}
._15{width:2277.344470pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:44.292800pt;}
.fsf{font-size:46.816000pt;}
.fs9{font-size:47.820800pt;}
.fsd{font-size:49.829333pt;}
.fs11{font-size:52.800000pt;}
.fs4{font-size:53.133867pt;}
.fsc{font-size:55.365867pt;}
.fs10{font-size:58.784000pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:128.420408pt;}
.y1d6{bottom:-381.740627pt;}
.y1b3{bottom:-354.482627pt;}
.y1e6{bottom:-296.990467pt;}
.y1e5{bottom:-278.159012pt;}
.y1c7{bottom:-266.304092pt;}
.y1e4{bottom:-259.415734pt;}
.y1c6{bottom:-247.560814pt;}
.y1e3{bottom:-240.584279pt;}
.y1c5{bottom:-228.729359pt;}
.y1e2{bottom:-221.752825pt;}
.y1c4{bottom:-209.897905pt;}
.y1e1{bottom:-203.009547pt;}
.y1c3{bottom:-191.154627pt;}
.y1e0{bottom:-184.178092pt;}
.y1df{bottom:-165.434814pt;}
.y1c2{bottom:-155.163800pt;}
.y1de{bottom:-146.603359pt;}
.y1c1{bottom:-138.179360pt;}
.y1dd{bottom:-127.771905pt;}
.y1c0{bottom:-121.283360pt;}
.y1dc{bottom:-109.028627pt;}
.y1bf{bottom:-104.298920pt;}
.y1be{bottom:-87.402920pt;}
.y1db{bottom:-73.037507pt;}
.y1bd{bottom:-70.506920pt;}
.y1da{bottom:-56.053067pt;}
.y1bc{bottom:-53.610920pt;}
.y1d9{bottom:-39.068627pt;}
.y1bb{bottom:-36.626480pt;}
.y1d8{bottom:-22.172627pt;}
.y1ba{bottom:-19.730480pt;}
.y1d7{bottom:-0.260389pt;}
.y0{bottom:0.000000pt;}
.y1b9{bottom:2.183415pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:15.589335pt;}
.y4e{bottom:28.346667pt;}
.y16b{bottom:81.480000pt;}
.y1ef{bottom:82.898667pt;}
.y134{bottom:85.132000pt;}
.ydd{bottom:90.898667pt;}
.yb3{bottom:92.892000pt;}
.y1d{bottom:93.018667pt;}
.y214{bottom:94.844000pt;}
.y1af{bottom:95.282667pt;}
.y4d{bottom:97.898667pt;}
.y16a{bottom:98.217333pt;}
.y1ee{bottom:99.636000pt;}
.y133{bottom:101.869333pt;}
.y1d2{bottom:102.558667pt;}
.ydc{bottom:107.636000pt;}
.y24a{bottom:108.233333pt;}
.y1c{bottom:108.920000pt;}
.yb2{bottom:109.629333pt;}
.y213{bottom:110.186667pt;}
.y1ae{bottom:112.020000pt;}
.y85{bottom:112.418667pt;}
.y4c{bottom:114.636000pt;}
.y169{bottom:114.954667pt;}
.y1ed{bottom:116.373333pt;}
.y132{bottom:118.606667pt;}
.y1d1{bottom:119.296000pt;}
.y249{bottom:123.576000pt;}
.ydb{bottom:124.373333pt;}
.y1b{bottom:124.820000pt;}
.y212{bottom:125.529333pt;}
.yb1{bottom:126.366667pt;}
.y1ad{bottom:128.757333pt;}
.y84{bottom:129.156000pt;}
.y4b{bottom:131.373333pt;}
.y168{bottom:131.692000pt;}
.y1ec{bottom:133.110667pt;}
.y131{bottom:135.344000pt;}
.y248{bottom:138.918667pt;}
.y1a{bottom:140.720000pt;}
.y211{bottom:140.872000pt;}
.y105{bottom:144.298667pt;}
.yda{bottom:145.096000pt;}
.y1ac{bottom:145.494667pt;}
.y83{bottom:145.893333pt;}
.yb0{bottom:147.088000pt;}
.y4a{bottom:148.110667pt;}
.y167{bottom:148.429333pt;}
.y1d0{bottom:149.132000pt;}
.y130{bottom:152.081333pt;}
.y1eb{bottom:153.832000pt;}
.y247{bottom:154.261333pt;}
.y210{bottom:156.214667pt;}
.y19{bottom:156.621333pt;}
.y104{bottom:161.036000pt;}
.y1ab{bottom:162.232000pt;}
.y82{bottom:162.630667pt;}
.yd9{bottom:163.029333pt;}
.y49{bottom:164.848000pt;}
.y166{bottom:165.166667pt;}
.y1cf{bottom:166.228000pt;}
.y12f{bottom:168.818667pt;}
.y246{bottom:169.604000pt;}
.y20f{bottom:171.557333pt;}
.y18{bottom:172.521333pt;}
.yaf{bottom:176.976000pt;}
.y103{bottom:177.773333pt;}
.y1aa{bottom:178.969333pt;}
.y81{bottom:179.368000pt;}
.y1ea{bottom:180.878667pt;}
.y48{bottom:181.584000pt;}
.y165{bottom:181.904000pt;}
.y1ce{bottom:183.324000pt;}
.y245{bottom:184.946667pt;}
.y12e{bottom:185.554667pt;}
.y20e{bottom:186.900000pt;}
.y17{bottom:188.421333pt;}
.yd8{bottom:192.917333pt;}
.yae{bottom:193.713333pt;}
.y102{bottom:194.510667pt;}
.y1a9{bottom:195.706667pt;}
.y80{bottom:196.105333pt;}
.y1e9{bottom:197.974667pt;}
.y47{bottom:198.321333pt;}
.y164{bottom:198.641333pt;}
.y244{bottom:200.289333pt;}
.y1cd{bottom:200.418667pt;}
.y20d{bottom:202.242667pt;}
.y12d{bottom:202.292000pt;}
.y16{bottom:204.322667pt;}
.yd7{bottom:209.654667pt;}
.yac{bottom:210.450667pt;}
.y101{bottom:211.248000pt;}
.y1a8{bottom:212.444000pt;}
.y7f{bottom:212.841333pt;}
.y46{bottom:215.058667pt;}
.y1e8{bottom:215.070667pt;}
.yad{bottom:215.273333pt;}
.y163{bottom:215.378667pt;}
.y243{bottom:215.632000pt;}
.y1cc{bottom:217.514667pt;}
.y20c{bottom:217.584000pt;}
.y12c{bottom:219.029333pt;}
.yd6{bottom:226.392000pt;}
.yab{bottom:227.188000pt;}
.y100{bottom:227.985333pt;}
.y1a7{bottom:229.181333pt;}
.y7e{bottom:229.578667pt;}
.y242{bottom:230.974667pt;}
.y45{bottom:231.796000pt;}
.y162{bottom:232.116000pt;}
.y1e7{bottom:232.166667pt;}
.y20b{bottom:232.926667pt;}
.y1cb{bottom:234.610667pt;}
.y12b{bottom:235.766667pt;}
.yd5{bottom:243.129333pt;}
.yaa{bottom:243.925333pt;}
.yff{bottom:244.722667pt;}
.y1a6{bottom:245.918667pt;}
.y7d{bottom:246.316000pt;}
.y20a{bottom:248.269333pt;}
.y44{bottom:248.533333pt;}
.y161{bottom:248.853333pt;}
.y1ca{bottom:251.706667pt;}
.y1d3{bottom:254.760000pt;}
.y12a{bottom:256.489333pt;}
.yd4{bottom:259.866667pt;}
.ya9{bottom:260.662667pt;}
.yfe{bottom:261.460000pt;}
.y241{bottom:261.658667pt;}
.y1a5{bottom:262.656000pt;}
.y7c{bottom:263.053333pt;}
.y209{bottom:263.612000pt;}
.y43{bottom:265.270667pt;}
.y160{bottom:265.590667pt;}
.y15{bottom:266.804000pt;}
.y1c9{bottom:268.802667pt;}
.yd3{bottom:276.604000pt;}
.y240{bottom:277.001333pt;}
.ya8{bottom:277.400000pt;}
.yfd{bottom:278.197333pt;}
.y208{bottom:278.954667pt;}
.y1a4{bottom:279.393333pt;}
.y7b{bottom:279.790667pt;}
.y15f{bottom:282.328000pt;}
.y14{bottom:282.705333pt;}
.y1c8{bottom:285.898667pt;}
.y42{bottom:285.993333pt;}
.y129{bottom:286.377333pt;}
.y23f{bottom:292.344000pt;}
.yd2{bottom:293.341333pt;}
.ya7{bottom:294.137333pt;}
.y207{bottom:294.297333pt;}
.yfc{bottom:294.934667pt;}
.y1a3{bottom:296.129333pt;}
.y79{bottom:296.528000pt;}
.y13{bottom:298.605333pt;}
.y15e{bottom:299.065333pt;}
.y7a{bottom:301.350667pt;}
.y128{bottom:303.114667pt;}
.y23e{bottom:307.686667pt;}
.y1b0{bottom:308.492000pt;}
.y206{bottom:309.640000pt;}
.ya6{bottom:310.874667pt;}
.y1a2{bottom:312.866667pt;}
.y78{bottom:313.265333pt;}
.yd1{bottom:314.062667pt;}
.y12{bottom:314.505333pt;}
.yfb{bottom:315.657333pt;}
.y15d{bottom:315.802667pt;}
.y127{bottom:319.852000pt;}
.y23d{bottom:323.029333pt;}
.y205{bottom:324.982667pt;}
.y1a1{bottom:329.604000pt;}
.y77{bottom:330.002667pt;}
.ya5{bottom:331.597333pt;}
.y15c{bottom:332.540000pt;}
.y126{bottom:336.589333pt;}
.y23c{bottom:338.372000pt;}
.y11{bottom:338.376000pt;}
.y204{bottom:340.325333pt;}
.yd0{bottom:343.950667pt;}
.yfa{bottom:345.545333pt;}
.y1a0{bottom:346.341333pt;}
.y76{bottom:346.740000pt;}
.y15b{bottom:349.277333pt;}
.y41{bottom:352.793333pt;}
.y125{bottom:353.326667pt;}
.y23b{bottom:353.714667pt;}
.y10{bottom:354.277333pt;}
.y203{bottom:355.666667pt;}
.ycf{bottom:360.688000pt;}
.ya4{bottom:361.485333pt;}
.yf9{bottom:362.282667pt;}
.y19f{bottom:363.078667pt;}
.y75{bottom:363.477333pt;}
.y15a{bottom:366.014667pt;}
.y23a{bottom:369.056000pt;}
.y124{bottom:370.064000pt;}
.y40{bottom:370.088000pt;}
.yf{bottom:370.177333pt;}
.y202{bottom:371.009333pt;}
.yce{bottom:377.425333pt;}
.ya3{bottom:378.222667pt;}
.yf8{bottom:379.020000pt;}
.y19e{bottom:379.816000pt;}
.y74{bottom:380.214667pt;}
.y159{bottom:382.752000pt;}
.y239{bottom:384.398667pt;}
.y201{bottom:386.352000pt;}
.y123{bottom:386.801333pt;}
.ycd{bottom:394.162667pt;}
.ya2{bottom:394.960000pt;}
.ye{bottom:395.376000pt;}
.yf7{bottom:395.757333pt;}
.y19d{bottom:396.553333pt;}
.y73{bottom:396.952000pt;}
.y158{bottom:399.489333pt;}
.y238{bottom:399.741333pt;}
.y200{bottom:401.694667pt;}
.y3f{bottom:403.324000pt;}
.ycc{bottom:410.900000pt;}
.yd{bottom:411.276000pt;}
.ya1{bottom:411.697333pt;}
.yf6{bottom:412.494667pt;}
.y19c{bottom:413.290667pt;}
.y72{bottom:413.689333pt;}
.y122{bottom:414.505333pt;}
.y237{bottom:415.084000pt;}
.y157{bottom:416.226667pt;}
.y1ff{bottom:417.037333pt;}
.y3e{bottom:420.618667pt;}
.y121{bottom:427.124000pt;}
.ya0{bottom:428.434667pt;}
.yf5{bottom:429.232000pt;}
.y19a{bottom:430.028000pt;}
.y71{bottom:430.426667pt;}
.ycb{bottom:431.622667pt;}
.y1fe{bottom:432.380000pt;}
.y156{bottom:432.964000pt;}
.y19b{bottom:434.850667pt;}
.yc{bottom:435.146667pt;}
.y3d{bottom:437.914667pt;}
.y120{bottom:444.293333pt;}
.y9f{bottom:445.172000pt;}
.y236{bottom:445.769333pt;}
.yf4{bottom:445.968000pt;}
.y198{bottom:446.765333pt;}
.y70{bottom:447.164000pt;}
.y155{bottom:449.701333pt;}
.yb{bottom:451.048000pt;}
.y199{bottom:451.588000pt;}
.y1fd{bottom:451.706667pt;}
.y3c{bottom:455.209333pt;}
.y11f{bottom:459.602667pt;}
.y235{bottom:461.112000pt;}
.yca{bottom:461.510667pt;}
.y9e{bottom:461.909333pt;}
.yf3{bottom:462.705333pt;}
.y196{bottom:463.502667pt;}
.y6f{bottom:463.901333pt;}
.y186{bottom:466.044000pt;}
.y154{bottom:466.438667pt;}
.ya{bottom:466.948000pt;}
.y197{bottom:468.325333pt;}
.y3b{bottom:472.505333pt;}
.y11e{bottom:474.912000pt;}
.y234{bottom:476.454667pt;}
.yc9{bottom:478.248000pt;}
.y9d{bottom:478.646667pt;}
.y185{bottom:478.662667pt;}
.yf2{bottom:479.442667pt;}
.y194{bottom:480.240000pt;}
.y6e{bottom:480.638667pt;}
.y1fc{bottom:481.594667pt;}
.y9{bottom:482.848000pt;}
.y153{bottom:483.176000pt;}
.y195{bottom:485.061333pt;}
.y3a{bottom:489.800000pt;}
.y11d{bottom:490.362667pt;}
.y233{bottom:491.797333pt;}
.yc8{bottom:494.985333pt;}
.y9c{bottom:495.384000pt;}
.yf1{bottom:496.180000pt;}
.y193{bottom:496.977333pt;}
.y6d{bottom:497.376000pt;}
.y184{bottom:498.489333pt;}
.y8{bottom:498.749333pt;}
.y152{bottom:499.912000pt;}
.y1fb{bottom:505.186667pt;}
.y11c{bottom:505.813333pt;}
.y38{bottom:507.094667pt;}
.y232{bottom:507.138667pt;}
.y39{bottom:511.434667pt;}
.yc7{bottom:511.722667pt;}
.y9b{bottom:512.121333pt;}
.y192{bottom:513.714667pt;}
.y183{bottom:513.797333pt;}
.y6c{bottom:514.113333pt;}
.y7{bottom:514.649333pt;}
.y151{bottom:516.649333pt;}
.yf0{bottom:516.902667pt;}
.y1fa{bottom:520.808000pt;}
.y11b{bottom:521.264000pt;}
.y231{bottom:522.481333pt;}
.y37{bottom:524.390667pt;}
.yc6{bottom:528.460000pt;}
.y9a{bottom:528.857333pt;}
.y182{bottom:529.106667pt;}
.y191{bottom:530.452000pt;}
.y6{bottom:530.549333pt;}
.y6b{bottom:530.850667pt;}
.y150{bottom:533.386667pt;}
.y230{bottom:537.824000pt;}
.y35{bottom:541.685333pt;}
.y11a{bottom:542.697333pt;}
.y180{bottom:544.137333pt;}
.y1f9{bottom:544.400000pt;}
.y17f{bottom:544.557333pt;}
.y36{bottom:546.025333pt;}
.y5{bottom:546.450667pt;}
.yef{bottom:546.790667pt;}
.y190{bottom:547.189333pt;}
.y6a{bottom:547.588000pt;}
.y181{bottom:548.477333pt;}
.yc5{bottom:549.181333pt;}
.y99{bottom:549.580000pt;}
.y22f{bottom:553.166667pt;}
.y34{bottom:558.980000pt;}
.y17e{bottom:560.008000pt;}
.y14f{bottom:560.593333pt;}
.y4{bottom:562.350667pt;}
.yee{bottom:563.528000pt;}
.y18e{bottom:563.926667pt;}
.y119{bottom:564.130667pt;}
.y69{bottom:564.325333pt;}
.y1f8{bottom:567.992000pt;}
.y22e{bottom:568.509333pt;}
.y18f{bottom:568.748000pt;}
.y14e{bottom:573.213333pt;}
.y17d{bottom:575.458667pt;}
.y33{bottom:576.276000pt;}
.y1{bottom:578.250715pt;}
.yc4{bottom:579.069333pt;}
.y98{bottom:579.468000pt;}
.y118{bottom:579.581333pt;}
.yec{bottom:580.265333pt;}
.y18d{bottom:580.664000pt;}
.y68{bottom:581.062667pt;}
.y22d{bottom:583.852000pt;}
.yed{bottom:585.086667pt;}
.y14d{bottom:585.832000pt;}
.y1f7{bottom:591.582667pt;}
.y32{bottom:593.570667pt;}
.y117{bottom:594.890667pt;}
.yc3{bottom:595.806667pt;}
.y97{bottom:596.205333pt;}
.y17c{bottom:596.892000pt;}
.yeb{bottom:597.002667pt;}
.y18b{bottom:597.401333pt;}
.y67{bottom:597.800000pt;}
.y14c{bottom:598.452000pt;}
.y22c{bottom:599.194667pt;}
.y18c{bottom:602.222667pt;}
.y116{bottom:610.198667pt;}
.y31{bottom:610.866667pt;}
.yc2{bottom:612.544000pt;}
.y96{bottom:612.942667pt;}
.yea{bottom:613.740000pt;}
.y189{bottom:614.138667pt;}
.y66{bottom:614.537333pt;}
.y1f6{bottom:615.174667pt;}
.y14b{bottom:618.277333pt;}
.y17b{bottom:618.325333pt;}
.y18a{bottom:618.960000pt;}
.y115{bottom:625.649333pt;}
.y1b8{bottom:625.750861pt;}
.y30{bottom:628.161333pt;}
.yc1{bottom:629.281333pt;}
.y95{bottom:629.680000pt;}
.y22b{bottom:629.878667pt;}
.ye9{bottom:630.477333pt;}
.y65{bottom:631.274667pt;}
.y14a{bottom:633.728000pt;}
.y17a{bottom:633.776000pt;}
.y188{bottom:634.861333pt;}
.y1f5{bottom:638.766667pt;}
.y114{bottom:641.100000pt;}
.y1b7{bottom:644.494139pt;}
.y22a{bottom:645.221333pt;}
.y2f{bottom:645.456000pt;}
.yc0{bottom:646.018667pt;}
.y94{bottom:646.417333pt;}
.ye8{bottom:647.214667pt;}
.y64{bottom:648.012000pt;}
.y149{bottom:649.178667pt;}
.y179{bottom:649.226667pt;}
.y1f4{bottom:654.388000pt;}
.y113{bottom:656.132000pt;}
.y229{bottom:660.564000pt;}
.y2e{bottom:662.752000pt;}
.ybf{bottom:662.756000pt;}
.y93{bottom:663.154667pt;}
.y1b6{bottom:663.325593pt;}
.y148{bottom:664.629333pt;}
.y178{bottom:664.677333pt;}
.y187{bottom:664.748000pt;}
.y63{bottom:664.749333pt;}
.ye7{bottom:667.937333pt;}
.y1f3{bottom:670.009333pt;}
.y228{bottom:675.906667pt;}
.y112{bottom:677.145333pt;}
.ybe{bottom:679.493333pt;}
.y146{bottom:679.661333pt;}
.y176{bottom:679.709333pt;}
.y91{bottom:679.892000pt;}
.y2d{bottom:680.046667pt;}
.y145{bottom:680.080000pt;}
.y175{bottom:680.128000pt;}
.y62{bottom:681.485333pt;}
.y1b5{bottom:682.157048pt;}
.y147{bottom:684.001333pt;}
.y177{bottom:684.048000pt;}
.y92{bottom:684.713333pt;}
.y1f2{bottom:685.630667pt;}
.y227{bottom:691.249333pt;}
.y144{bottom:695.530667pt;}
.y174{bottom:695.578667pt;}
.ybd{bottom:696.230667pt;}
.y90{bottom:696.629333pt;}
.ye6{bottom:697.825333pt;}
.y61{bottom:698.222667pt;}
.y111{bottom:698.332000pt;}
.y1b4{bottom:700.901796pt;}
.y1f1{bottom:701.252000pt;}
.y226{bottom:706.592000pt;}
.y173{bottom:711.029333pt;}
.ybc{bottom:712.968000pt;}
.y8f{bottom:713.366667pt;}
.y2c{bottom:714.345333pt;}
.ye5{bottom:714.562667pt;}
.y60{bottom:714.960000pt;}
.y1f0{bottom:716.873333pt;}
.y143{bottom:716.964000pt;}
.y225{bottom:721.934667pt;}
.y110{bottom:726.612000pt;}
.y1d5{bottom:727.147505pt;}
.y2b{bottom:728.690667pt;}
.ybb{bottom:729.705333pt;}
.y8e{bottom:730.104000pt;}
.ye4{bottom:731.300000pt;}
.y5f{bottom:731.697333pt;}
.y172{bottom:732.462667pt;}
.y1d4{bottom:736.563373pt;}
.y224{bottom:737.277333pt;}
.y142{bottom:738.398667pt;}
.y8d{bottom:746.841333pt;}
.y2a{bottom:746.894667pt;}
.ye3{bottom:748.036000pt;}
.y5e{bottom:748.434667pt;}
.yba{bottom:750.428000pt;}
.y223{bottom:752.620000pt;}
.y171{bottom:753.477333pt;}
.y141{bottom:753.849333pt;}
.y1b2{bottom:754.405505pt;}
.y29{bottom:757.384000pt;}
.y10f{bottom:759.593333pt;}
.y8b{bottom:763.578667pt;}
.y1b1{bottom:763.821373pt;}
.ye2{bottom:764.773333pt;}
.y5d{bottom:765.172000pt;}
.y222{bottom:767.961333pt;}
.y8c{bottom:768.400000pt;}
.y140{bottom:769.300000pt;}
.y28{bottom:771.729333pt;}
.y8a{bottom:780.316000pt;}
.ye1{bottom:781.510667pt;}
.y5c{bottom:781.909333pt;}
.y221{bottom:783.304000pt;}
.y170{bottom:784.240000pt;}
.y13f{bottom:784.750667pt;}
.y27{bottom:786.076000pt;}
.y89{bottom:797.053333pt;}
.ye0{bottom:798.248000pt;}
.y5b{bottom:798.646667pt;}
.y13e{bottom:800.201333pt;}
.y16f{bottom:801.336000pt;}
.y26{bottom:804.280000pt;}
.y88{bottom:813.790667pt;}
.y220{bottom:813.989333pt;}
.y5a{bottom:815.384000pt;}
.y13d{bottom:815.652000pt;}
.ydf{bottom:818.970667pt;}
.y10e{bottom:828.136000pt;}
.y21f{bottom:829.332000pt;}
.yb9{bottom:830.528000pt;}
.y13c{bottom:831.101333pt;}
.y16e{bottom:831.722667pt;}
.y59{bottom:832.121333pt;}
.y87{bottom:834.512000pt;}
.y25{bottom:843.992000pt;}
.y21e{bottom:844.674667pt;}
.y10d{bottom:844.873333pt;}
.yb8{bottom:847.265333pt;}
.y58{bottom:848.858667pt;}
.y86{bottom:852.445333pt;}
.y13b{bottom:852.536000pt;}
.y21d{bottom:860.017333pt;}
.y24{bottom:860.729333pt;}
.y10c{bottom:861.610667pt;}
.yb7{bottom:864.002667pt;}
.y57{bottom:865.596000pt;}
.y138{bottom:873.549333pt;}
.y21c{bottom:875.360000pt;}
.y10b{bottom:878.348000pt;}
.yb6{bottom:880.740000pt;}
.y13a{bottom:880.854667pt;}
.y56{bottom:882.333333pt;}
.y136{bottom:888.161333pt;}
.y21a{bottom:890.701333pt;}
.y21b{bottom:890.702667pt;}
.y10a{bottom:895.085333pt;}
.y139{bottom:895.466667pt;}
.y23{bottom:896.213333pt;}
.y55{bottom:899.070667pt;}
.yb5{bottom:901.461333pt;}
.y137{bottom:902.773333pt;}
.y16d{bottom:903.892000pt;}
.y219{bottom:906.044000pt;}
.y109{bottom:911.822667pt;}
.y54{bottom:915.808000pt;}
.yb4{bottom:919.394667pt;}
.yde{bottom:920.629333pt;}
.y22{bottom:921.320000pt;}
.y218{bottom:921.386667pt;}
.y108{bottom:928.560000pt;}
.y53{bottom:932.545333pt;}
.y135{bottom:933.536000pt;}
.y217{bottom:936.729333pt;}
.y107{bottom:945.297333pt;}
.y21{bottom:946.425333pt;}
.y52{bottom:949.282667pt;}
.y216{bottom:952.072000pt;}
.y106{bottom:962.034667pt;}
.y51{bottom:966.020000pt;}
.y215{bottom:967.414667pt;}
.y16c{bottom:970.841333pt;}
.y20{bottom:971.530667pt;}
.y50{bottom:982.757333pt;}
.y1e{bottom:1010.186667pt;}
.y4f{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.h10{height:25.811318pt;}
.hb{height:27.672303pt;}
.h15{height:28.023859pt;}
.h4{height:29.433775pt;}
.h1a{height:29.499005pt;}
.h20{height:29.670026pt;}
.h3{height:30.399505pt;}
.h5{height:32.284045pt;}
.h1e{height:33.186336pt;}
.h25{height:33.378918pt;}
.he{height:34.430976pt;}
.h1f{height:35.051460pt;}
.h16{height:36.873667pt;}
.hd{height:36.896250pt;}
.h14{height:37.087439pt;}
.h12{height:38.256384pt;}
.hc{height:38.809074pt;}
.h8{height:38.947124pt;}
.hf{height:41.508454pt;}
.h1b{height:43.101636pt;}
.h17{height:43.446059pt;}
.h22{height:43.547109pt;}
.h27{height:43.660390pt;}
.h6{height:45.271688pt;}
.h13{height:46.120196pt;}
.h19{height:47.964045pt;}
.ha{height:48.365611pt;}
.h18{height:48.534711pt;}
.h24{height:49.113281pt;}
.h1d{height:49.638711pt;}
.h11{height:49.644045pt;}
.h23{height:54.679453pt;}
.h1c{height:63.657643pt;}
.h9{height:68.861952pt;}
.h7{height:80.262755pt;}
.h21{height:619.773733pt;}
.h26{height:690.242667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:178.117635pt;}
.w5{width:589.442627pt;}
.w4{width:605.181867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xf2{left:-171.454800pt;}
.xfb{left:-82.560573pt;}
.x0{left:0.000000pt;}
.xf3{left:19.768135pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:51.484492pt;}
.x9c{left:63.325333pt;}
.xc7{left:66.832000pt;}
.x9e{left:68.216000pt;}
.xca{left:71.721333pt;}
.xa2{left:73.356000pt;}
.xa5{left:76.069333pt;}
.x9f{left:77.044000pt;}
.xa4{left:79.106667pt;}
.xcb{left:80.550667pt;}
.xcd{left:82.613333pt;}
.x9a{left:84.498667pt;}
.xc5{left:88.005333pt;}
.x9b{left:91.157333pt;}
.x9d{left:92.621333pt;}
.xa0{left:93.553333pt;}
.xc6{left:94.664000pt;}
.xc9{left:96.128000pt;}
.x94{left:97.062667pt;}
.xa1{left:100.649333pt;}
.xa6{left:101.976000pt;}
.xcc{left:104.156000pt;}
.x99{left:106.149333pt;}
.xfc{left:108.663427pt;}
.xc4{left:109.654667pt;}
.xfd{left:139.815427pt;}
.x96{left:206.824000pt;}
.x97{left:208.814667pt;}
.x95{left:217.112000pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x16{left:225.524000pt;}
.xf7{left:232.669333pt;}
.x81{left:234.006667pt;}
.x4e{left:238.816000pt;}
.x6{left:239.924000pt;}
.x85{left:244.037333pt;}
.x4f{left:247.020000pt;}
.x19{left:250.204000pt;}
.x6a{left:251.936000pt;}
.x86{left:254.940000pt;}
.x55{left:255.982667pt;}
.xa{left:258.326667pt;}
.x2a{left:261.497333pt;}
.x82{left:263.302667pt;}
.x83{left:264.234667pt;}
.xf1{left:265.898667pt;}
.x2b{left:268.138667pt;}
.xda{left:269.453333pt;}
.x84{left:271.330667pt;}
.xf{left:272.430667pt;}
.x8{left:273.916000pt;}
.xd{left:276.794667pt;}
.x8f{left:279.670667pt;}
.xf4{left:282.633333pt;}
.x98{left:283.733333pt;}
.x17{left:284.922667pt;}
.x18{left:288.090667pt;}
.x6d{left:289.632000pt;}
.x90{left:292.954667pt;}
.xf6{left:294.293333pt;}
.x91{left:296.238667pt;}
.x73{left:298.113333pt;}
.x26{left:301.304000pt;}
.x3f{left:303.152000pt;}
.x46{left:304.886667pt;}
.x40{left:306.838667pt;}
.x92{left:309.522667pt;}
.xa9{left:312.185333pt;}
.x27{left:314.588000pt;}
.x1c{left:318.046667pt;}
.x28{left:321.196000pt;}
.x1d{left:324.689333pt;}
.x44{left:326.168000pt;}
.x30{left:328.086667pt;}
.xbf{left:329.562667pt;}
.x31{left:330.517333pt;}
.x29{left:334.480000pt;}
.xe4{left:335.650667pt;}
.x45{left:337.093333pt;}
.xc0{left:338.597333pt;}
.xe7{left:342.162667pt;}
.xb{left:346.086667pt;}
.xff{left:347.326667pt;}
.xe8{left:351.204000pt;}
.x2c{left:353.258667pt;}
.x47{left:354.756000pt;}
.xdb{left:361.772000pt;}
.x8e{left:364.992000pt;}
.x2d{left:366.542667pt;}
.xfe{left:367.605333pt;}
.x3d{left:376.028000pt;}
.x5c{left:378.282667pt;}
.x3e{left:379.716000pt;}
.x67{left:387.294667pt;}
.x1e{left:389.030667pt;}
.x5d{left:391.566667pt;}
.x64{left:393.578667pt;}
.x1f{left:395.672000pt;}
.x79{left:398.640000pt;}
.x62{left:399.617333pt;}
.x20{left:402.261333pt;}
.xc2{left:403.972000pt;}
.x63{left:407.821333pt;}
.x21{left:408.902667pt;}
.xdc{left:410.770667pt;}
.x7a{left:411.924000pt;}
.x7d{left:413.129333pt;}
.x80{left:418.788000pt;}
.xcf{left:422.366667pt;}
.x12{left:424.433333pt;}
.x6b{left:426.268000pt;}
.xb9{left:427.380000pt;}
.x13{left:432.733333pt;}
.x6c{left:434.473333pt;}
.xde{left:441.064000pt;}
.xb0{left:447.208000pt;}
.x6e{left:448.662667pt;}
.xf9{left:454.177333pt;}
.x6f{left:456.868000pt;}
.xfa{left:461.562667pt;}
.xe0{left:462.598667pt;}
.xed{left:465.966667pt;}
.x71{left:467.808000pt;}
.x57{left:471.556000pt;}
.xad{left:475.009333pt;}
.x72{left:476.013333pt;}
.xc1{left:480.982667pt;}
.x58{left:484.840000pt;}
.xae{left:489.450667pt;}
.x1a{left:491.045333pt;}
.xe1{left:492.189333pt;}
.x48{left:493.224000pt;}
.x1b{left:497.688000pt;}
.x49{left:499.273333pt;}
.xf5{left:504.744000pt;}
.x66{left:512.017333pt;}
.x38{left:516.409333pt;}
.x39{left:525.209333pt;}
.xb1{left:526.824000pt;}
.xd7{left:529.750667pt;}
.xbe{left:532.192000pt;}
.x56{left:536.678667pt;}
.xe9{left:538.220000pt;}
.xd2{left:539.568000pt;}
.xb4{left:541.006667pt;}
.xb2{left:542.548000pt;}
.x8b{left:545.312000pt;}
.xb7{left:546.564000pt;}
.x74{left:548.258667pt;}
.x10{left:549.533333pt;}
.xef{left:551.776000pt;}
.x11{left:552.981333pt;}
.xb5{left:555.377333pt;}
.x75{left:556.462667pt;}
.xea{left:557.989333pt;}
.x88{left:559.298667pt;}
.x22{left:560.308000pt;}
.x59{left:563.564000pt;}
.xf8{left:565.880000pt;}
.x23{left:566.950667pt;}
.xdf{left:569.446667pt;}
.xd5{left:572.162667pt;}
.x89{left:573.532000pt;}
.xbc{left:577.949333pt;}
.x24{left:578.894667pt;}
.xd0{left:579.877333pt;}
.x102{left:581.533333pt;}
.xc3{left:582.889333pt;}
.xaa{left:585.884000pt;}
.xbd{left:587.152000pt;}
.x5e{left:588.804000pt;}
.x93{left:591.189333pt;}
.x25{left:592.177333pt;}
.xd1{left:593.710667pt;}
.x5f{left:597.009333pt;}
.xab{left:600.476000pt;}
.xaf{left:602.114667pt;}
.x54{left:604.008000pt;}
.x7e{left:607.182667pt;}
.x34{left:608.224000pt;}
.xa3{left:609.913333pt;}
.xe5{left:611.249333pt;}
.x37{left:612.788000pt;}
.xeb{left:614.126667pt;}
.x7f{left:615.388000pt;}
.x65{left:617.205333pt;}
.x52{left:618.321333pt;}
.xe6{left:620.277333pt;}
.x35{left:621.508000pt;}
.xec{left:622.869333pt;}
.x14{left:625.221333pt;}
.x53{left:626.526667pt;}
.xb8{left:627.534667pt;}
.xbb{left:629.320000pt;}
.xd8{left:631.349333pt;}
.x15{left:633.520000pt;}
.xe2{left:634.584000pt;}
.x8c{left:636.272000pt;}
.x36{left:638.145333pt;}
.xb6{left:639.489333pt;}
.x2e{left:640.601333pt;}
.x7b{left:641.900000pt;}
.xb3{left:643.446667pt;}
.x3b{left:645.176000pt;}
.x50{left:646.668000pt;}
.x7c{left:648.986667pt;}
.x8d{left:650.662667pt;}
.xa7{left:652.025333pt;}
.x2f{left:653.884000pt;}
.x51{left:654.873333pt;}
.xe3{left:655.969333pt;}
.x3c{left:658.460000pt;}
.x42{left:660.769333pt;}
.x8a{left:663.800000pt;}
.xa8{left:665.308000pt;}
.xd6{left:667.496000pt;}
.xee{left:668.545333pt;}
.x43{left:671.696000pt;}
.xd3{left:675.053333pt;}
.x9{left:676.242667pt;}
.x105{left:677.353333pt;}
.xd9{left:678.256000pt;}
.x77{left:679.716000pt;}
.x4c{left:681.221333pt;}
.xce{left:682.202667pt;}
.xd4{left:683.258667pt;}
.x76{left:684.214667pt;}
.x78{left:686.802667pt;}
.xf0{left:688.449333pt;}
.xba{left:690.441333pt;}
.x100{left:691.802667pt;}
.xc{left:693.038667pt;}
.x4d{left:694.505333pt;}
.x4a{left:698.173333pt;}
.xac{left:700.154667pt;}
.xe{left:702.388000pt;}
.xdd{left:703.749333pt;}
.x3a{left:706.106667pt;}
.x5a{left:707.320000pt;}
.x4b{left:711.456000pt;}
.x70{left:713.046667pt;}
.x60{left:714.224000pt;}
.x5b{left:720.602667pt;}
.x61{left:722.428000pt;}
.xc8{left:724.212000pt;}
.x103{left:725.877333pt;}
.x32{left:726.842667pt;}
.x68{left:728.082667pt;}
.x101{left:730.393333pt;}
.x41{left:734.730667pt;}
.x33{left:740.126667pt;}
.x69{left:741.365333pt;}
.x87{left:743.296000pt;}
.x104{left:744.266667pt;}
}




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