
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f31c94d4cdea298591929c1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3241ba441a2df5e39e274fbc.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_1aa8402c98ddf4a0a401a1ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a1299e4be33c4101bd0cab4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688000;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_bced99df1026dad5e56d4b06.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a4155c44d17b2d741cd73069.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0afcbc2597e358be96276cb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_20c20a831f7e4cd8acc71648.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002441;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_8d1aa8a7fd315bbf37ba5c9f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_64363dbfc4dbd26c04448634.woff2')format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c5b4bafcc4e2f6c12a0f1860.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_332f47b21b2c45911c838692.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.002441;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_452d11f9b85ffd1ab5299613.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_38f4634ee8c189067d7e612b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_c5b4bafcc4e2f6c12a0f1860.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_332f47b21b2c45911c838692.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.002441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_452d11f9b85ffd1ab5299613.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_38f4634ee8c189067d7e612b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c5b4bafcc4e2f6c12a0f1860.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ee776a7cff39360e0280eaf7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a77a7e4b9921a70e5924136e.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_5ed1a46abfaa4b490e853780.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.116000;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:ff1c;src:url('chunks/assets/font_3e0937ffb34b11f5a9ae03de.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9cb4c24c060577774e097d86.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m16{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);}
.m2{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);}
.m27{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);}
.m11{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);}
.m7{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);}
.m29{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);}
.m10{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);}
.me{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);}
.m1{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);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m1e{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);}
.m18{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);}
.m17{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);}
.m1d{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);}
.m12{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);}
.m5{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);}
.m13{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m21{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);}
.m26{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);}
.m9{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);}
.m1f{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);}
.md{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);}
.m14{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);}
.m20{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);}
.mc{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);}
.m15{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);}
.m19{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);}
.m8{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);}
.m25{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);}
.ma{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);}
.mf{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);}
.m1c{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);}
.m6{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);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v6{vertical-align:-17.358000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.108912px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls39{letter-spacing:-0.991980px;}
.ls38{letter-spacing:-0.378756px;}
.ls56{letter-spacing:-0.270540px;}
.ls45{letter-spacing:-0.259200px;}
.ls55{letter-spacing:-0.216432px;}
.ls54{letter-spacing:-0.192384px;}
.ls53{letter-spacing:-0.168336px;}
.ls57{letter-spacing:-0.162324px;}
.ls33{letter-spacing:-0.156312px;}
.ls36{letter-spacing:-0.150300px;}
.ls3c{letter-spacing:-0.144288px;}
.ls37{letter-spacing:-0.138276px;}
.ls34{letter-spacing:-0.126252px;}
.ls2d{letter-spacing:-0.120240px;}
.ls3d{letter-spacing:-0.108216px;}
.ls3e{letter-spacing:-0.102204px;}
.ls2e{letter-spacing:-0.096192px;}
.ls28{letter-spacing:-0.090972px;}
.ls2a{letter-spacing:-0.090180px;}
.ls35{letter-spacing:-0.084168px;}
.ls29{letter-spacing:-0.078156px;}
.ls42{letter-spacing:-0.075600px;}
.ls3b{letter-spacing:-0.072144px;}
.ls30{letter-spacing:-0.060120px;}
.ls59{letter-spacing:-0.054000px;}
.ls32{letter-spacing:-0.048096px;}
.ls44{letter-spacing:-0.043200px;}
.ls3a{letter-spacing:-0.042084px;}
.ls27{letter-spacing:-0.038304px;}
.ls31{letter-spacing:-0.036072px;}
.ls2b{letter-spacing:-0.030060px;}
.ls58{letter-spacing:-0.027000px;}
.ls46{letter-spacing:-0.024048px;}
.ls40{letter-spacing:-0.021600px;}
.ls52{letter-spacing:-0.018036px;}
.ls2f{letter-spacing:-0.012024px;}
.ls43{letter-spacing:-0.010800px;}
.ls2c{letter-spacing:-0.006012px;}
.ls41{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000154px;}
.ls5e{letter-spacing:0.000182px;}
.ls0{letter-spacing:0.000240px;}
.ls8{letter-spacing:0.000435px;}
.ls70{letter-spacing:0.000500px;}
.ls7f{letter-spacing:0.000604px;}
.ls6b{letter-spacing:0.000656px;}
.ls76{letter-spacing:0.000676px;}
.ls5f{letter-spacing:0.000846px;}
.ls5d{letter-spacing:0.000933px;}
.lse{letter-spacing:0.000990px;}
.ls68{letter-spacing:0.001014px;}
.ls6a{letter-spacing:0.001331px;}
.ls6f{letter-spacing:0.001541px;}
.ls10{letter-spacing:0.001673px;}
.ls66{letter-spacing:0.001996px;}
.ls74{letter-spacing:0.002338px;}
.ls48{letter-spacing:0.002360px;}
.ls63{letter-spacing:0.002496px;}
.ls5a{letter-spacing:0.002573px;}
.lsf{letter-spacing:0.002589px;}
.ls60{letter-spacing:0.002688px;}
.ls6e{letter-spacing:0.002958px;}
.ls61{letter-spacing:0.003026px;}
.ls26{letter-spacing:0.003178px;}
.ls67{letter-spacing:0.003329px;}
.ls80{letter-spacing:0.003404px;}
.lsa{letter-spacing:0.003488px;}
.ls7{letter-spacing:0.003494px;}
.ls12{letter-spacing:0.003741px;}
.ls62{letter-spacing:0.003743px;}
.ls6c{letter-spacing:0.004176px;}
.ls69{letter-spacing:0.004264px;}
.ls6d{letter-spacing:0.004435px;}
.ls83{letter-spacing:0.004800px;}
.ls65{letter-spacing:0.005059px;}
.lsd{letter-spacing:0.005415px;}
.ls1d{letter-spacing:0.006012px;}
.ls1f{letter-spacing:0.012024px;}
.ls20{letter-spacing:0.016200px;}
.ls19{letter-spacing:0.018036px;}
.ls22{letter-spacing:0.021600px;}
.ls25{letter-spacing:0.024048px;}
.ls4b{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030060px;}
.ls1c{letter-spacing:0.036072px;}
.ls17{letter-spacing:0.042084px;}
.ls16{letter-spacing:0.048096px;}
.ls4a{letter-spacing:0.048600px;}
.ls4c{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.054108px;}
.ls1e{letter-spacing:0.060120px;}
.ls4d{letter-spacing:0.064800px;}
.ls1a{letter-spacing:0.066132px;}
.ls49{letter-spacing:0.072144px;}
.ls23{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.096192px;}
.ls21{letter-spacing:0.124200px;}
.ls24{letter-spacing:0.138276px;}
.ls14{letter-spacing:0.172368px;}
.ls13{letter-spacing:0.181944px;}
.ls81{letter-spacing:0.537859px;}
.lsc{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls7c{letter-spacing:10.746318px;}
.ls47{letter-spacing:11.535692px;}
.ls9{letter-spacing:11.954850px;}
.ls7e{letter-spacing:13.232129px;}
.ls85{letter-spacing:13.263700px;}
.ls73{letter-spacing:13.309089px;}
.ls4e{letter-spacing:13.323043px;}
.ls82{letter-spacing:13.329724px;}
.ls71{letter-spacing:13.345652px;}
.ls7d{letter-spacing:13.386547px;}
.ls72{letter-spacing:13.448400px;}
.ls4f{letter-spacing:13.448870px;}
.ls5c{letter-spacing:13.450090px;}
.ls77{letter-spacing:13.454400px;}
.ls79{letter-spacing:13.481053px;}
.ls84{letter-spacing:13.583700px;}
.ls7a{letter-spacing:13.752029px;}
.ls51{letter-spacing:14.091223px;}
.ls50{letter-spacing:14.097106px;}
.ls64{letter-spacing:14.947200px;}
.ls75{letter-spacing:15.244518px;}
.ls3{letter-spacing:17.935200px;}
.ls78{letter-spacing:21.550400px;}
.ls7b{letter-spacing:22.432753px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:70.236600px;}
.ls5{letter-spacing:72.353510px;}
.ls5b{letter-spacing:172.332600px;}
.ls3f{letter-spacing:1093.680000px;}
.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;}
}
.ws1{word-spacing:-26.899200px;}
.ws14{word-spacing:-17.394700px;}
.wsb4{word-spacing:-15.655334px;}
.wsfd{word-spacing:-15.185674px;}
.wsac{word-spacing:-15.048036px;}
.wsae{word-spacing:-15.030000px;}
.wsab{word-spacing:-15.017976px;}
.wsad{word-spacing:-15.005952px;}
.ws13{word-spacing:-14.943900px;}
.ws4f{word-spacing:-13.500000px;}
.ws53{word-spacing:-13.449600px;}
.ws4d{word-spacing:-12.151944px;}
.ws21{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws4e{word-spacing:-9.000000px;}
.wsd{word-spacing:-5.021150px;}
.ws124{word-spacing:-4.423394px;}
.ws25{word-spacing:-4.363619px;}
.wsa5{word-spacing:-4.342113px;}
.ws26{word-spacing:-4.303843px;}
.ws89{word-spacing:-3.883752px;}
.ws8b{word-spacing:-3.751488px;}
.ws14e{word-spacing:-3.658291px;}
.ws18{word-spacing:-3.646312px;}
.ws8a{word-spacing:-3.450888px;}
.ws160{word-spacing:-3.443098px;}
.ws182{word-spacing:-3.227904px;}
.wse9{word-spacing:-2.929004px;}
.ws12d{word-spacing:-2.869229px;}
.ws106{word-spacing:-2.809453px;}
.ws7c{word-spacing:-2.795580px;}
.ws15f{word-spacing:-2.689920px;}
.ws129{word-spacing:-2.689902px;}
.ws121{word-spacing:-2.630126px;}
.ws122{word-spacing:-2.570351px;}
.ws12b{word-spacing:-2.510575px;}
.ws7b{word-spacing:-2.416824px;}
.ws16e{word-spacing:-2.367130px;}
.ws117{word-spacing:-2.331248px;}
.ws12e{word-spacing:-2.211697px;}
.wsa1{word-spacing:-2.122236px;}
.ws8c{word-spacing:-2.104200px;}
.ws146{word-spacing:-2.098138px;}
.wse0{word-spacing:-2.092146px;}
.ws9d{word-spacing:-2.080152px;}
.wsbc{word-spacing:-2.068128px;}
.ws60{word-spacing:-2.056104px;}
.wsf{word-spacing:-2.032370px;}
.ws61{word-spacing:-2.008008px;}
.wsa0{word-spacing:-1.989972px;}
.ws91{word-spacing:-1.976400px;}
.ws3d{word-spacing:-1.972595px;}
.ws90{word-spacing:-1.960200px;}
.ws11a{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws92{word-spacing:-1.906200px;}
.wsbb{word-spacing:-1.875744px;}
.ws9a{word-spacing:-1.797588px;}
.wsee{word-spacing:-1.793268px;}
.ws9b{word-spacing:-1.737468px;}
.wsec{word-spacing:-1.733492px;}
.ws9f{word-spacing:-1.731456px;}
.ws99{word-spacing:-1.725444px;}
.ws9e{word-spacing:-1.707408px;}
.ws5d{word-spacing:-1.701396px;}
.ws8d{word-spacing:-1.695384px;}
.ws5c{word-spacing:-1.677348px;}
.ws135{word-spacing:-1.667750px;}
.ws9c{word-spacing:-1.629252px;}
.wsfa{word-spacing:-1.565533px;}
.ws10e{word-spacing:-1.554166px;}
.ws180{word-spacing:-1.506355px;}
.ws120{word-spacing:-1.494390px;}
.wsff{word-spacing:-1.461165px;}
.ws108{word-spacing:-1.374839px;}
.ws6{word-spacing:-1.322630px;}
.ws104{word-spacing:-1.315063px;}
.ws10a{word-spacing:-1.255288px;}
.ws10f{word-spacing:-1.195512px;}
.ws16f{word-spacing:-1.183565px;}
.ws39{word-spacing:-1.135736px;}
.ws71{word-spacing:-1.040076px;}
.ws158{word-spacing:-1.022170px;}
.wse1{word-spacing:-1.016185px;}
.ws73{word-spacing:-0.979956px;}
.wsf3{word-spacing:-0.956410px;}
.ws7f{word-spacing:-0.949896px;}
.ws72{word-spacing:-0.907812px;}
.ws8{word-spacing:-0.896634px;}
.ws70{word-spacing:-0.895788px;}
.ws13d{word-spacing:-0.860774px;}
.ws74{word-spacing:-0.841680px;}
.ws1f{word-spacing:-0.836858px;}
.ws138{word-spacing:-0.753178px;}
.wsf9{word-spacing:-0.717307px;}
.ws5b{word-spacing:-0.685368px;}
.ws10c{word-spacing:-0.657532px;}
.ws17c{word-spacing:-0.645581px;}
.ws7e{word-spacing:-0.613224px;}
.ws114{word-spacing:-0.597756px;}
.ws12f{word-spacing:-0.537980px;}
.wsc{word-spacing:-0.478205px;}
.wsf4{word-spacing:-0.418429px;}
.ws13b{word-spacing:-0.376589px;}
.ws78{word-spacing:-0.366732px;}
.ws3a{word-spacing:-0.358654px;}
.wsc3{word-spacing:-0.312624px;}
.ws40{word-spacing:-0.298878px;}
.ws147{word-spacing:-0.268992px;}
.ws55{word-spacing:-0.263340px;}
.wsc8{word-spacing:-0.246492px;}
.wse{word-spacing:-0.239102px;}
.wsc9{word-spacing:-0.228456px;}
.wsd8{word-spacing:-0.226800px;}
.ws134{word-spacing:-0.215194px;}
.wsd6{word-spacing:-0.205200px;}
.ws17{word-spacing:-0.179327px;}
.wsd7{word-spacing:-0.172800px;}
.wsb0{word-spacing:-0.161395px;}
.ws15{word-spacing:-0.119551px;}
.wscb{word-spacing:-0.108216px;}
.wsaf{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.wsb7{word-spacing:-0.053798px;}
.ws54{word-spacing:-0.052668px;}
.wsfc{word-spacing:-0.052184px;}
.ws187{word-spacing:-0.047939px;}
.ws176{word-spacing:-0.026621px;}
.ws13e{word-spacing:-0.011424px;}
.ws16a{word-spacing:-0.006682px;}
.ws14d{word-spacing:-0.005933px;}
.ws100{word-spacing:-0.004451px;}
.wsa7{word-spacing:-0.004094px;}
.wsa8{word-spacing:-0.003524px;}
.ws17a{word-spacing:-0.003466px;}
.ws181{word-spacing:-0.003322px;}
.ws15e{word-spacing:-0.001238px;}
.ws0{word-spacing:0.000000px;}
.ws145{word-spacing:0.000067px;}
.ws6c{word-spacing:0.024048px;}
.ws6f{word-spacing:0.036072px;}
.ws178{word-spacing:0.041706px;}
.ws50{word-spacing:0.053798px;}
.ws177{word-spacing:0.056942px;}
.wsa{word-spacing:0.059776px;}
.ws77{word-spacing:0.060120px;}
.wsbf{word-spacing:0.078156px;}
.ws133{word-spacing:0.107597px;}
.wsca{word-spacing:0.108216px;}
.wsd9{word-spacing:0.113400px;}
.ws34{word-spacing:0.119551px;}
.ws96{word-spacing:0.156600px;}
.ws4{word-spacing:0.161395px;}
.ws57{word-spacing:0.168336px;}
.ws12{word-spacing:0.179327px;}
.ws8e{word-spacing:0.180360px;}
.ws170{word-spacing:0.186354px;}
.wscf{word-spacing:0.205200px;}
.ws51{word-spacing:0.215194px;}
.ws95{word-spacing:0.221400px;}
.ws29{word-spacing:0.239102px;}
.wsa6{word-spacing:0.246063px;}
.ws5{word-spacing:0.268992px;}
.ws3f{word-spacing:0.298878px;}
.ws67{word-spacing:0.354708px;}
.wsea{word-spacing:0.358654px;}
.ws17e{word-spacing:0.376589px;}
.wsc6{word-spacing:0.384768px;}
.ws12a{word-spacing:0.418429px;}
.wsc7{word-spacing:0.462924px;}
.wscd{word-spacing:0.491400px;}
.ws6a{word-spacing:0.498996px;}
.wse5{word-spacing:0.537980px;}
.wscc{word-spacing:0.561600px;}
.ws6b{word-spacing:0.607212px;}
.wsb6{word-spacing:0.619687px;}
.wsb5{word-spacing:0.645581px;}
.ws105{word-spacing:0.657532px;}
.ws148{word-spacing:0.699379px;}
.ws4c{word-spacing:0.717307px;}
.ws58{word-spacing:0.763524px;}
.wsf7{word-spacing:0.777083px;}
.ws161{word-spacing:0.806976px;}
.ws48{word-spacing:0.836858px;}
.ws83{word-spacing:0.883764px;}
.ws107{word-spacing:0.896634px;}
.ws41{word-spacing:0.956410px;}
.ws46{word-spacing:1.016185px;}
.ws126{word-spacing:1.075961px;}
.ws16b{word-spacing:1.129766px;}
.wse8{word-spacing:1.135736px;}
.ws2d{word-spacing:1.195512px;}
.wsce{word-spacing:1.231200px;}
.wsb{word-spacing:1.255288px;}
.wse3{word-spacing:1.374839px;}
.ws140{word-spacing:1.398758px;}
.ws24{word-spacing:1.434614px;}
.ws11b{word-spacing:1.554166px;}
.ws11c{word-spacing:1.613941px;}
.wsdc{word-spacing:1.667750px;}
.ws12c{word-spacing:1.673717px;}
.ws123{word-spacing:1.733492px;}
.ws137{word-spacing:1.775347px;}
.ws118{word-spacing:1.912819px;}
.ws136{word-spacing:2.044339px;}
.ws9{word-spacing:2.092146px;}
.ws62{word-spacing:2.230452px;}
.wsf1{word-spacing:2.271473px;}
.ws63{word-spacing:2.284560px;}
.wsbe{word-spacing:2.350692px;}
.ws164{word-spacing:2.367130px;}
.ws11f{word-spacing:2.391024px;}
.wsbd{word-spacing:2.464920px;}
.ws1c{word-spacing:2.510575px;}
.ws2e{word-spacing:2.570351px;}
.ws143{word-spacing:2.582323px;}
.wsa4{word-spacing:2.630126px;}
.wse2{word-spacing:2.689902px;}
.ws93{word-spacing:2.705400px;}
.ws86{word-spacing:2.717424px;}
.ws84{word-spacing:2.735460px;}
.ws49{word-spacing:2.749678px;}
.ws85{word-spacing:2.753496px;}
.ws11e{word-spacing:2.809453px;}
.wsf6{word-spacing:2.869229px;}
.ws27{word-spacing:2.929004px;}
.ws32{word-spacing:3.048556px;}
.ws94{word-spacing:3.072600px;}
.ws10b{word-spacing:3.108331px;}
.ws10{word-spacing:3.168107px;}
.ws16{word-spacing:3.347434px;}
.ws3e{word-spacing:3.407209px;}
.ws37{word-spacing:3.526760px;}
.ws151{word-spacing:3.550694px;}
.ws80{word-spacing:3.631248px;}
.ws64{word-spacing:3.661308px;}
.ws43{word-spacing:3.706087px;}
.ws81{word-spacing:3.733452px;}
.ws115{word-spacing:3.765863px;}
.ws175{word-spacing:3.819686px;}
.ws110{word-spacing:3.885414px;}
.ws65{word-spacing:3.985956px;}
.ws97{word-spacing:4.076136px;}
.ws15d{word-spacing:4.088678px;}
.ws98{word-spacing:4.124232px;}
.ws11{word-spacing:4.184292px;}
.ws35{word-spacing:4.244068px;}
.ws132{word-spacing:4.250074px;}
.ws109{word-spacing:4.303843px;}
.wsc4{word-spacing:4.358700px;}
.wsc5{word-spacing:4.376736px;}
.ws19{word-spacing:4.423394px;}
.ws10d{word-spacing:4.483170px;}
.wsd4{word-spacing:4.503600px;}
.wsd5{word-spacing:4.519800px;}
.ws4b{word-spacing:4.542946px;}
.ws23{word-spacing:4.602721px;}
.ws131{word-spacing:4.626662px;}
.ws1b{word-spacing:4.662497px;}
.ws130{word-spacing:4.722272px;}
.ws20{word-spacing:4.782060px;}
.ws165{word-spacing:4.788058px;}
.ws127{word-spacing:4.841824px;}
.wsb3{word-spacing:4.841856px;}
.ws174{word-spacing:4.949453px;}
.wsef{word-spacing:5.021150px;}
.wsf8{word-spacing:5.080926px;}
.ws66{word-spacing:5.086152px;}
.ws13f{word-spacing:5.110848px;}
.ws189{word-spacing:5.164646px;}
.ws13c{word-spacing:5.218445px;}
.ws139{word-spacing:5.272243px;}
.ws188{word-spacing:5.326042px;}
.ws163{word-spacing:5.370384px;}
.ws155{word-spacing:5.371709px;}
.ws184{word-spacing:5.373101px;}
.ws173{word-spacing:5.373350px;}
.ws142{word-spacing:5.373888px;}
.ws183{word-spacing:5.374704px;}
.ws144{word-spacing:5.375184px;}
.ws172{word-spacing:5.375741px;}
.ws16c{word-spacing:5.377027px;}
.ws150{word-spacing:5.377411px;}
.ws13a{word-spacing:5.377709px;}
.ws156{word-spacing:5.377795px;}
.ws157{word-spacing:5.378035px;}
.ws14f{word-spacing:5.379802px;}
.ws169{word-spacing:5.379811px;}
.ws3{word-spacing:5.379840px;}
.ws17f{word-spacing:5.380051px;}
.ws153{word-spacing:5.380109px;}
.ws152{word-spacing:5.381501px;}
.ws179{word-spacing:5.381558px;}
.ws154{word-spacing:5.382518px;}
.ws14b{word-spacing:5.433638px;}
.ws162{word-spacing:5.541235px;}
.ws17d{word-spacing:5.595034px;}
.wseb{word-spacing:5.678682px;}
.ws116{word-spacing:5.738458px;}
.ws11d{word-spacing:5.798233px;}
.ws6d{word-spacing:5.813604px;}
.ws56{word-spacing:5.819616px;}
.ws47{word-spacing:5.858009px;}
.ws166{word-spacing:5.864026px;}
.ws45{word-spacing:5.917784px;}
.ws14c{word-spacing:5.917824px;}
.ws6e{word-spacing:5.975928px;}
.ws1a{word-spacing:5.977560px;}
.ws185{word-spacing:6.025421px;}
.ws17b{word-spacing:6.079219px;}
.wsaa{word-spacing:6.156887px;}
.ws171{word-spacing:6.186816px;}
.ws44{word-spacing:6.216662px;}
.wsdb{word-spacing:6.240614px;}
.wse4{word-spacing:6.276438px;}
.ws149{word-spacing:6.402010px;}
.wsb2{word-spacing:6.455808px;}
.ws186{word-spacing:6.509606px;}
.ws1e{word-spacing:6.515540px;}
.ws1d{word-spacing:6.575316px;}
.wsda{word-spacing:6.617203px;}
.wsf0{word-spacing:6.635092px;}
.ws52{word-spacing:6.671002px;}
.ws4a{word-spacing:6.694867px;}
.ws3b{word-spacing:6.754643px;}
.ws3c{word-spacing:6.814418px;}
.wsb1{word-spacing:6.832397px;}
.ws59{word-spacing:6.889752px;}
.ws42{word-spacing:6.933970px;}
.ws87{word-spacing:6.967908px;}
.ws113{word-spacing:6.993745px;}
.ws5a{word-spacing:7.022016px;}
.ws88{word-spacing:7.034040px;}
.wsf2{word-spacing:7.053521px;}
.ws15b{word-spacing:7.101389px;}
.ws15a{word-spacing:7.155187px;}
.ws30{word-spacing:7.232848px;}
.ws31{word-spacing:7.292623px;}
.ws2f{word-spacing:7.352399px;}
.ws16d{word-spacing:7.531776px;}
.ws125{word-spacing:7.770828px;}
.ws36{word-spacing:8.009930px;}
.ws168{word-spacing:8.069760px;}
.ws14a{word-spacing:8.123558px;}
.wsa9{word-spacing:8.368584px;}
.wsa2{word-spacing:8.607686px;}
.wsa3{word-spacing:8.667462px;}
.wsf5{word-spacing:8.787013px;}
.ws15c{word-spacing:8.984333px;}
.wsd3{word-spacing:9.234000px;}
.ws128{word-spacing:9.265218px;}
.ws2b{word-spacing:9.324994px;}
.ws2a{word-spacing:9.384769px;}
.ws79{word-spacing:9.450864px;}
.ws102{word-spacing:9.504320px;}
.ws103{word-spacing:9.564096px;}
.ws7a{word-spacing:9.589140px;}
.ws111{word-spacing:9.862974px;}
.ws141{word-spacing:9.952704px;}
.ws68{word-spacing:10.172304px;}
.ws69{word-spacing:10.184328px;}
.ws2c{word-spacing:10.281403px;}
.wsed{word-spacing:10.341179px;}
.ws75{word-spacing:10.490940px;}
.ws76{word-spacing:10.617192px;}
.ws7d{word-spacing:10.845648px;}
.wsc0{word-spacing:10.893744px;}
.wsc1{word-spacing:10.917792px;}
.wsd1{word-spacing:10.924200px;}
.wsd0{word-spacing:10.951200px;}
.wsd2{word-spacing:10.956600px;}
.wsc2{word-spacing:11.176308px;}
.ws112{word-spacing:11.716018px;}
.ws38{word-spacing:11.775793px;}
.ws5f{word-spacing:12.066084px;}
.ws5e{word-spacing:12.090132px;}
.ws119{word-spacing:12.672427px;}
.ws159{word-spacing:13.126810px;}
.ws167{word-spacing:14.794560px;}
.ws33{word-spacing:15.661207px;}
.ws82{word-spacing:17.681292px;}
.wsba{word-spacing:22.737384px;}
.wsb8{word-spacing:22.785480px;}
.wsb9{word-spacing:22.935780px;}
.wsdd{word-spacing:107.220211px;}
.wsde{word-spacing:139.768243px;}
.wse6{word-spacing:146.331648px;}
.wsdf{word-spacing:207.070042px;}
.wse7{word-spacing:312.192115px;}
.ws22{word-spacing:430.815785px;}
.ws101{word-spacing:455.778969px;}
.wsfe{word-spacing:555.920925px;}
.wsfb{word-spacing:574.289850px;}
.ws8f{word-spacing:1054.603800px;}
._2{margin-left:-7.962163px;}
._7{margin-left:-6.845341px;}
._5{margin-left:-4.949453px;}
._6{margin-left:-2.958912px;}
._1{margin-left:-1.063024px;}
._a{width:1.091170px;}
._3{width:3.002380px;}
._0{width:10.165172px;}
._d{width:11.893754px;}
._12{width:12.942675px;}
._1a{width:14.095181px;}
._c{width:15.542711px;}
._10{width:17.196351px;}
._8{width:18.211769px;}
._9{width:19.447111px;}
._2d{width:20.465235px;}
._b{width:21.490363px;}
._11{width:23.192933px;}
._16{width:24.196181px;}
._43{width:25.208981px;}
._14{width:26.289342px;}
._15{width:28.172293px;}
._e{width:30.844210px;}
._3d{width:31.920170px;}
._f{width:32.983194px;}
._42{width:34.215782px;}
._41{width:35.722138px;}
._3c{width:37.619817px;}
._18{width:39.392120px;}
._17{width:43.157983px;}
._3e{width:49.195319px;}
._31{width:51.659609px;}
._4{width:54.400700px;}
._3a{width:56.547718px;}
._40{width:61.868160px;}
._33{width:68.836300px;}
._3f{width:88.767360px;}
._1d{width:129.546547px;}
._28{width:134.065613px;}
._22{width:142.242970px;}
._23{width:144.663898px;}
._1c{width:148.053197px;}
._27{width:155.692570px;}
._24{width:164.300314px;}
._2a{width:170.594726px;}
._1f{width:175.920768px;}
._2b{width:182.591770px;}
._1b{width:193.728038px;}
._1e{width:199.230512px;}
._29{width:200.345242px;}
._21{width:207.016243px;}
._2e{width:223.962739px;}
._20{width:237.842726px;}
._2c{width:255.434803px;}
._26{width:260.868442px;}
._34{width:282.689956px;}
._25{width:291.587328px;}
._2f{width:312.245914px;}
._37{width:347.923840px;}
._30{width:357.597965px;}
._39{width:384.920323px;}
._36{width:568.145917px;}
._35{width:670.373788px;}
._32{width:776.657024px;}
._38{width:848.253509px;}
._19{width:1146.425926px;}
._3b{width:1514.620064px;}
._13{width:1538.530364px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs11{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs10{font-size:40.587516px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fsf{font-size:52.184448px;}
.fs6{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:60.474240px;}
.fse{font-size:72.000000px;}
.fs3{font-size:107.596800px;}
.ya5{bottom:-605.342550px;}
.yba{bottom:-510.753900px;}
.yb9{bottom:-491.223450px;}
.yb8{bottom:-471.783450px;}
.yb7{bottom:-452.253000px;}
.yb6{bottom:-432.722550px;}
.yb5{bottom:-397.892550px;}
.yc0{bottom:-216.884550px;}
.y75{bottom:-177.284550px;}
.y9e{bottom:-140.024388px;}
.yd5{bottom:-122.295900px;}
.y9d{bottom:-119.774469px;}
.yd4{bottom:-102.765450px;}
.y9c{bottom:-99.524550px;}
.yd3{bottom:-83.325450px;}
.yb4{bottom:-68.403000px;}
.yd2{bottom:-63.795000px;}
.y9b{bottom:-61.815000px;}
.yb3{bottom:-48.872550px;}
.yd1{bottom:-44.264550px;}
.y9a{bottom:-42.284550px;}
.yb2{bottom:-29.432550px;}
.y99{bottom:-22.754100px;}
.yd0{bottom:-9.434550px;}
.yb1{bottom:-3.062550px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.425340px;}
.y98{bottom:5.775450px;}
.y4{bottom:6.350457px;}
.y18{bottom:14.151273px;}
.y97{bottom:19.905450px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y32{bottom:63.780000px;}
.y188{bottom:108.612000px;}
.y23b{bottom:108.957000px;}
.y31{bottom:112.627500px;}
.y1ca{bottom:115.948500px;}
.y1d9{bottom:119.863500px;}
.ya1{bottom:119.967000px;}
.y207{bottom:120.255000px;}
.y1b1{bottom:120.880500px;}
.y107{bottom:121.023000px;}
.y63{bottom:125.572500px;}
.y23a{bottom:128.325000px;}
.y187{bottom:128.875500px;}
.y30{bottom:132.892500px;}
.yda{bottom:135.762000px;}
.y15e{bottom:136.120500px;}
.y1c9{bottom:136.213500px;}
.ya0{bottom:139.200000px;}
.y206{bottom:139.621500px;}
.y1d8{bottom:140.128500px;}
.y1b0{bottom:141.144000px;}
.y106{bottom:141.288000px;}
.y62{bottom:145.837500px;}
.y239{bottom:147.691500px;}
.y186{bottom:149.139000px;}
.y2f{bottom:153.156000px;}
.yd9{bottom:154.995000px;}
.y15d{bottom:156.385500px;}
.y1c8{bottom:156.477000px;}
.y9f{bottom:158.433000px;}
.y205{bottom:158.989500px;}
.y1d7{bottom:160.392000px;}
.y1af{bottom:161.409000px;}
.y105{bottom:161.551500px;}
.y61{bottom:166.101000px;}
.y238{bottom:167.059500px;}
.y185{bottom:169.404000px;}
.y2e{bottom:173.419500px;}
.yd8{bottom:174.228000px;}
.y15c{bottom:176.649000px;}
.y1c7{bottom:176.740500px;}
.y204{bottom:178.356000px;}
.y1d6{bottom:180.657000px;}
.y73{bottom:180.861000px;}
.y104{bottom:181.816500px;}
.y60{bottom:186.364500px;}
.y237{bottom:186.427500px;}
.yd7{bottom:193.461000px;}
.y2d{bottom:193.684500px;}
.y1ae{bottom:196.617000px;}
.y15b{bottom:196.912500px;}
.y1c6{bottom:197.005500px;}
.y203{bottom:197.724000px;}
.y1d5{bottom:200.920500px;}
.y103{bottom:202.080000px;}
.y184{bottom:202.612500px;}
.y236{bottom:205.794000px;}
.y5f{bottom:206.629500px;}
.yd6{bottom:212.692500px;}
.y1ad{bottom:216.880500px;}
.y202{bottom:217.092000px;}
.y15a{bottom:217.177500px;}
.y1c5{bottom:217.269000px;}
.y96{bottom:217.906197px;}
.y1d4{bottom:221.184000px;}
.y102{bottom:222.343500px;}
.y183{bottom:222.877500px;}
.y2c{bottom:222.915000px;}
.y235{bottom:225.162000px;}
.y5e{bottom:226.893000px;}
.ybe{bottom:235.122000px;}
.y201{bottom:236.458500px;}
.y1ac{bottom:237.145500px;}
.y159{bottom:237.441000px;}
.y1c4{bottom:237.534000px;}
.y95{bottom:238.156116px;}
.y1d3{bottom:241.449000px;}
.y101{bottom:242.608500px;}
.y182{bottom:243.141000px;}
.y234{bottom:244.528500px;}
.y12d{bottom:255.198000px;}
.y200{bottom:255.826500px;}
.y5d{bottom:256.123500px;}
.y1ab{bottom:257.409000px;}
.y158{bottom:257.706000px;}
.y1c3{bottom:257.797500px;}
.y94{bottom:258.406035px;}
.y1d2{bottom:261.712500px;}
.yb0{bottom:262.078620px;}
.y100{bottom:262.872000px;}
.y181{bottom:263.406000px;}
.y233{bottom:263.896500px;}
.y1ff{bottom:275.193000px;}
.y12c{bottom:275.461500px;}
.y1aa{bottom:277.672500px;}
.y157{bottom:277.969500px;}
.y1c2{bottom:278.061000px;}
.y93{bottom:278.655954px;}
.y1d1{bottom:281.977500px;}
.yaf{bottom:282.328539px;}
.yff{bottom:283.137000px;}
.y232{bottom:283.264500px;}
.y180{bottom:283.669500px;}
.y5c{bottom:290.943000px;}
.y1fe{bottom:294.561000px;}
.y12b{bottom:295.725000px;}
.y1a9{bottom:297.937500px;}
.y156{bottom:298.233000px;}
.y1c1{bottom:298.326000px;}
.y92{bottom:298.815693px;}
.y2b{bottom:299.331000px;}
.y1d0{bottom:302.241000px;}
.yae{bottom:302.488278px;}
.y231{bottom:302.631000px;}
.yfe{bottom:303.400500px;}
.y17f{bottom:303.933000px;}
.y1fd{bottom:313.929000px;}
.y12a{bottom:315.990000px;}
.y1a8{bottom:318.201000px;}
.y155{bottom:318.498000px;}
.y1c0{bottom:318.589500px;}
.y91{bottom:319.065612px;}
.y2a{bottom:319.594500px;}
.ycf{bottom:320.055000px;}
.y230{bottom:321.999000px;}
.y1cf{bottom:322.504500px;}
.yad{bottom:322.738197px;}
.y17e{bottom:324.198000px;}
.y5b{bottom:325.762500px;}
.y1fc{bottom:333.295500px;}
.y129{bottom:336.253500px;}
.y1a7{bottom:338.466000px;}
.y154{bottom:338.761500px;}
.y1bf{bottom:338.854500px;}
.y90{bottom:339.315531px;}
.yce{bottom:339.585450px;}
.y22f{bottom:341.367000px;}
.y1ce{bottom:342.769500px;}
.yac{bottom:342.988116px;}
.y17d{bottom:344.461500px;}
.y5a{bottom:346.027500px;}
.yfd{bottom:350.653500px;}
.y1fb{bottom:352.663500px;}
.y128{bottom:356.518500px;}
.y29{bottom:357.792000px;}
.y1a6{bottom:358.729500px;}
.ycd{bottom:359.025450px;}
.y153{bottom:359.026500px;}
.y1be{bottom:359.118000px;}
.y8f{bottom:359.565531px;}
.y22e{bottom:360.733500px;}
.y1cd{bottom:363.033000px;}
.yab{bottom:363.238035px;}
.y17c{bottom:364.726500px;}
.y59{bottom:366.291000px;}
.yfc{bottom:367.450500px;}
.y1fa{bottom:372.030000px;}
.y127{bottom:376.782000px;}
.y28{bottom:378.055500px;}
.y1a5{bottom:378.993000px;}
.y1bd{bottom:379.381500px;}
.y8e{bottom:379.818222px;}
.y22d{bottom:380.101500px;}
.y1cc{bottom:383.298000px;}
.yaa{bottom:383.487954px;}
.y17b{bottom:384.990000px;}
.ycc{bottom:385.395450px;}
.y58{bottom:386.554500px;}
.y152{bottom:388.257000px;}
.y1f9{bottom:391.398000px;}
.yfb{bottom:391.447500px;}
.y126{bottom:397.045500px;}
.y27{bottom:398.319000px;}
.y1a4{bottom:399.258000px;}
.y22c{bottom:399.468000px;}
.y1bc{bottom:399.646500px;}
.y8d{bottom:400.068141px;}
.y72{bottom:403.561500px;}
.ya9{bottom:403.737873px;}
.y57{bottom:406.819500px;}
.y1f8{bottom:410.766000px;}
.y17a{bottom:414.220500px;}
.y125{bottom:417.310500px;}
.y26{bottom:418.584000px;}
.y22b{bottom:418.836000px;}
.y1a3{bottom:419.521500px;}
.y1bb{bottom:419.910000px;}
.y8c{bottom:420.227880px;}
.yfa{bottom:423.067500px;}
.y71{bottom:423.825000px;}
.ya8{bottom:423.987792px;}
.y56{bottom:427.083000px;}
.y1f7{bottom:430.132500px;}
.y151{bottom:430.792500px;}
.y124{bottom:437.574000px;}
.y22a{bottom:438.204000px;}
.y25{bottom:438.847500px;}
.y1ba{bottom:440.175000px;}
.y8b{bottom:440.477799px;}
.y70{bottom:444.090000px;}
.ya7{bottom:444.147531px;}
.y55{bottom:447.348000px;}
.y150{bottom:448.239960px;}
.y1a2{bottom:448.752000px;}
.y179{bottom:449.040000px;}
.y1f6{bottom:449.500500px;}
.y229{bottom:457.570500px;}
.y24{bottom:459.112500px;}
.yf9{bottom:460.179000px;}
.y1b9{bottom:460.438500px;}
.y6f{bottom:464.353500px;}
.ya6{bottom:464.397450px;}
.y14f{bottom:464.531595px;}
.y123{bottom:466.804500px;}
.y54{bottom:467.611500px;}
.y1f5{bottom:468.868500px;}
.y178{bottom:469.303500px;}
.y8a{bottom:469.727682px;}
.y228{bottom:476.938500px;}
.y23{bottom:479.376000px;}
.yf8{bottom:480.442500px;}
.y1b8{bottom:480.702000px;}
.y1a1{bottom:483.571500px;}
.y6e{bottom:484.618500px;}
.y14e{bottom:487.810140px;}
.y53{bottom:487.875000px;}
.y1f4{bottom:488.235000px;}
.y177{bottom:489.568500px;}
.y227{bottom:496.305000px;}
.y22{bottom:499.639500px;}
.yf7{bottom:500.707500px;}
.y1b7{bottom:500.967000px;}
.y122{bottom:501.624000px;}
.ya4{bottom:501.747450px;}
.y1a0{bottom:503.836500px;}
.y6d{bottom:504.882000px;}
.y1f3{bottom:507.603000px;}
.y89{bottom:507.977529px;}
.y52{bottom:508.140000px;}
.y176{bottom:509.832000px;}
.y14d{bottom:511.087230px;}
.y226{bottom:515.673000px;}
.y21{bottom:519.904500px;}
.yf6{bottom:520.971000px;}
.y1b6{bottom:521.230500px;}
.y121{bottom:521.889000px;}
.y19f{bottom:524.100000px;}
.y6c{bottom:525.145500px;}
.y1f2{bottom:526.969500px;}
.y14c{bottom:527.378865px;}
.y88{bottom:528.227448px;}
.y51{bottom:528.403500px;}
.y175{bottom:530.095500px;}
.y225{bottom:535.041000px;}
.ybd{bottom:537.501000px;}
.y20{bottom:540.168000px;}
.yf5{bottom:541.236000px;}
.y1b5{bottom:541.495500px;}
.y120{bottom:542.152500px;}
.y23e{bottom:542.230500px;}
.y14b{bottom:543.670500px;}
.y19e{bottom:544.363500px;}
.y6a{bottom:545.410500px;}
.y1f1{bottom:546.337500px;}
.y87{bottom:548.477367px;}
.y50{bottom:548.667000px;}
.y174{bottom:550.360500px;}
.y6b{bottom:550.834500px;}
.y224{bottom:554.407500px;}
.ybc{bottom:556.734000px;}
.y14a{bottom:559.962135px;}
.y1f{bottom:560.433000px;}
.yf4{bottom:561.499500px;}
.y23d{bottom:561.597000px;}
.y11f{bottom:562.416000px;}
.y19d{bottom:564.628500px;}
.y68{bottom:565.674000px;}
.y1f0{bottom:565.705500px;}
.y86{bottom:568.727286px;}
.y4f{bottom:568.932000px;}
.y1b4{bottom:570.726000px;}
.y69{bottom:571.099500px;}
.y223{bottom:573.775500px;}
.ybb{bottom:575.967000px;}
.y149{bottom:576.253770px;}
.y1e{bottom:580.696500px;}
.y23c{bottom:580.965000px;}
.yf3{bottom:581.763000px;}
.y11e{bottom:582.681000px;}
.y173{bottom:583.569000px;}
.y19c{bottom:584.892000px;}
.y1ef{bottom:585.072000px;}
.y67{bottom:585.939000px;}
.y85{bottom:588.887025px;}
.y4e{bottom:589.195500px;}
.y148{bottom:592.546860px;}
.y222{bottom:593.142000px;}
.ya3{bottom:598.396500px;}
.y1d{bottom:600.960000px;}
.yf2{bottom:602.028000px;}
.y172{bottom:603.834000px;}
.y1ee{bottom:604.440000px;}
.y1b3{bottom:605.545500px;}
.y66{bottom:606.202500px;}
.y84{bottom:609.136944px;}
.y4d{bottom:609.460500px;}
.y11d{bottom:611.911500px;}
.y221{bottom:612.510000px;}
.y147{bottom:615.823950px;}
.y19b{bottom:620.100000px;}
.y1c{bottom:621.225000px;}
.yf1{bottom:622.291500px;}
.y1ed{bottom:623.806500px;}
.y171{bottom:624.097500px;}
.y65{bottom:626.466000px;}
.y83{bottom:629.386863px;}
.y4c{bottom:629.724000px;}
.y220{bottom:631.878000px;}
.y146{bottom:639.102495px;}
.y19a{bottom:640.365000px;}
.y1b{bottom:641.488500px;}
.yf0{bottom:642.556500px;}
.y1ec{bottom:643.174500px;}
.y170{bottom:644.362500px;}
.y11c{bottom:646.731000px;}
.y82{bottom:649.636782px;}
.y4b{bottom:649.987500px;}
.ycb{bottom:650.536620px;}
.y21f{bottom:651.244500px;}
.y64{bottom:655.696500px;}
.y199{bottom:660.628500px;}
.y1a{bottom:661.753500px;}
.y145{bottom:662.379585px;}
.y1eb{bottom:662.542500px;}
.yef{bottom:662.820000px;}
.y16f{bottom:664.626000px;}
.y11b{bottom:666.994500px;}
.y81{bottom:669.886701px;}
.y4a{bottom:670.252500px;}
.y21e{bottom:670.612500px;}
.yca{bottom:670.786539px;}
.y198{bottom:680.892000px;}
.y1ea{bottom:681.909000px;}
.yee{bottom:683.083500px;}
.y16e{bottom:684.889500px;}
.y144{bottom:685.658130px;}
.y11a{bottom:687.258000px;}
.y21d{bottom:689.979000px;}
.y80{bottom:690.136620px;}
.y49{bottom:690.516000px;}
.yc9{bottom:690.946278px;}
.y1cb{bottom:696.225000px;}
.y17{bottom:697.184964px;}
.y16{bottom:697.951500px;}
.y197{bottom:701.157000px;}
.y1e9{bottom:701.277000px;}
.y143{bottom:701.949765px;}
.y119{bottom:707.523000px;}
.y21c{bottom:709.347000px;}
.y7f{bottom:710.386539px;}
.y48{bottom:710.781000px;}
.yc8{bottom:711.196197px;}
.yed{bottom:712.314000px;}
.y16d{bottom:718.099500px;}
.y142{bottom:718.241400px;}
.y1e8{bottom:720.643500px;}
.y1b2{bottom:721.420500px;}
.y118{bottom:727.786500px;}
.y21b{bottom:728.715000px;}
.y7e{bottom:730.546278px;}
.y47{bottom:731.044500px;}
.yc7{bottom:731.446116px;}
.y141{bottom:734.533035px;}
.y196{bottom:736.365000px;}
.y15{bottom:736.957500px;}
.y16c{bottom:738.363000px;}
.y1e7{bottom:740.011500px;}
.yec{bottom:747.133500px;}
.y117{bottom:748.051500px;}
.y21a{bottom:748.081500px;}
.y7d{bottom:750.796197px;}
.y46{bottom:751.308000px;}
.yc6{bottom:751.696035px;}
.y14{bottom:755.115000px;}
.y195{bottom:756.628500px;}
.y140{bottom:757.811580px;}
.y16b{bottom:758.628000px;}
.yeb{bottom:767.398500px;}
.y219{bottom:767.449500px;}
.y116{bottom:768.315000px;}
.y1e6{bottom:768.345000px;}
.y7c{bottom:771.046116px;}
.y45{bottom:771.573000px;}
.yc5{bottom:771.945954px;}
.y13{bottom:773.271000px;}
.y194{bottom:776.893500px;}
.y16a{bottom:778.891500px;}
.y13f{bottom:781.088670px;}
.y218{bottom:786.816000px;}
.yea{bottom:787.662000px;}
.y115{bottom:788.578500px;}
.y7b{bottom:791.296035px;}
.y12{bottom:791.428500px;}
.y44{bottom:791.836500px;}
.yc4{bottom:792.195873px;}
.y193{bottom:797.157000px;}
.y13e{bottom:797.380305px;}
.y169{bottom:799.156500px;}
.y217{bottom:806.184000px;}
.y1e5{bottom:807.798000px;}
.ye9{bottom:807.925500px;}
.y114{bottom:808.843500px;}
.y11{bottom:809.586000px;}
.y7a{bottom:811.545954px;}
.y43{bottom:812.101500px;}
.yc3{bottom:812.445792px;}
.y13d{bottom:813.671940px;}
.y192{bottom:817.420500px;}
.y168{bottom:819.420000px;}
.y1e4{bottom:822.996000px;}
.y216{bottom:825.552000px;}
.ye8{bottom:828.190500px;}
.y113{bottom:829.107000px;}
.y13c{bottom:829.963575px;}
.y79{bottom:831.795873px;}
.y42{bottom:832.365000px;}
.yc2{bottom:832.605531px;}
.y10{bottom:832.624500px;}
.y191{bottom:837.685500px;}
.y1e3{bottom:838.194000px;}
.y167{bottom:839.683500px;}
.y215{bottom:844.918500px;}
.y13b{bottom:846.256665px;}
.ye7{bottom:848.454000px;}
.y112{bottom:849.372000px;}
.yf{bottom:850.782000px;}
.y78{bottom:852.045792px;}
.y41{bottom:852.628500px;}
.yc1{bottom:852.855450px;}
.y190{bottom:857.949000px;}
.y166{bottom:859.948500px;}
.y1e2{bottom:862.357500px;}
.y13a{bottom:862.548300px;}
.ye{bottom:864.057000px;}
.y214{bottom:864.286500px;}
.ye6{bottom:868.719000px;}
.y111{bottom:869.635500px;}
.y77{bottom:872.205531px;}
.y40{bottom:872.893500px;}
.y1e1{bottom:877.555500px;}
.y18f{bottom:878.214000px;}
.y165{bottom:880.212000px;}
.y213{bottom:883.653000px;}
.y139{bottom:885.825390px;}
.yd{bottom:887.095500px;}
.ye5{bottom:888.982500px;}
.y110{bottom:889.899000px;}
.ybf{bottom:890.205450px;}
.y76{bottom:892.455450px;}
.y3f{bottom:893.157000px;}
.y18e{bottom:898.477500px;}
.yc{bottom:900.370500px;}
.y164{bottom:900.477000px;}
.y1e0{bottom:901.720500px;}
.y212{bottom:903.021000px;}
.y138{bottom:909.103935px;}
.ye4{bottom:909.246000px;}
.y10f{bottom:910.164000px;}
.y3e{bottom:913.422000px;}
.y1df{bottom:916.918500px;}
.y18d{bottom:918.741000px;}
.y163{bottom:920.740500px;}
.y211{bottom:922.389000px;}
.yb{bottom:923.409000px;}
.y137{bottom:925.395570px;}
.y74{bottom:929.805450px;}
.y10e{bottom:930.427500px;}
.y3d{bottom:933.685500px;}
.y18c{bottom:939.006000px;}
.y162{bottom:941.004000px;}
.y1de{bottom:941.083500px;}
.y136{bottom:941.687205px;}
.y210{bottom:941.755500px;}
.ya{bottom:945.651000px;}
.y10d{bottom:950.692500px;}
.ye3{bottom:950.821500px;}
.y3c{bottom:953.949000px;}
.y1dd{bottom:956.281500px;}
.y135{bottom:957.632550px;}
.y18b{bottom:959.269500px;}
.y20f{bottom:961.123500px;}
.y161{bottom:961.269000px;}
.y9{bottom:965.914500px;}
.y10c{bottom:970.956000px;}
.y1dc{bottom:971.479500px;}
.ye2{bottom:972.879000px;}
.y3b{bottom:974.214000px;}
.y134{bottom:974.706975px;}
.y18a{bottom:979.534500px;}
.y20e{bottom:980.490000px;}
.y160{bottom:981.532500px;}
.y1db{bottom:986.677500px;}
.ye1{bottom:989.674500px;}
.y133{bottom:990.998610px;}
.y10b{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.y189{bottom:999.798000px;}
.y20d{bottom:999.858000px;}
.y15f{bottom:1001.797500px;}
.y1da{bottom:1001.875500px;}
.ye0{bottom:1006.470000px;}
.y132{bottom:1007.290245px;}
.y8{bottom:1010.451000px;}
.y10a{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y20c{bottom:1019.226000px;}
.ydf{bottom:1023.265500px;}
.y131{bottom:1023.581880px;}
.y109{bottom:1031.748000px;}
.y38{bottom:1035.006000px;}
.y20b{bottom:1038.592500px;}
.y130{bottom:1039.873515px;}
.y7{bottom:1040.848500px;}
.yde{bottom:1047.264000px;}
.y37{bottom:1055.269500px;}
.y20a{bottom:1057.960500px;}
.y108{bottom:1060.978500px;}
.y12f{bottom:1063.152060px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y209{bottom:1077.327000px;}
.ydd{bottom:1079.077500px;}
.y12e{bottom:1086.430605px;}
.y35{bottom:1095.798000px;}
.y208{bottom:1096.695000px;}
.ydc{bottom:1098.310500px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.ydb{bottom:1117.543500px;}
.ya2{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h23{height:6.635092px;}
.hc{height:25.508090px;}
.h22{height:26.110157px;}
.h9{height:30.461558px;}
.h12{height:33.072749px;}
.he{height:33.112997px;}
.hd{height:34.199443px;}
.h1e{height:34.813397px;}
.h14{height:34.951465px;}
.h11{height:35.100320px;}
.h15{height:35.991211px;}
.hb{height:37.336090px;}
.h1f{height:37.572803px;}
.h26{height:37.927872px;}
.h20{height:37.990278px;}
.h25{height:38.412058px;}
.h1a{height:38.734848px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h19{height:39.418945px;}
.h24{height:39.488026px;}
.h4{height:41.001535px;}
.hf{height:43.038432px;}
.h17{height:43.387383px;}
.h10{height:43.516637px;}
.h5{height:43.875290px;}
.h16{height:43.886426px;}
.h21{height:48.491812px;}
.h1d{height:48.876816px;}
.h2{height:50.931027px;}
.h18{height:52.558594px;}
.h8{height:54.405312px;}
.h7{height:54.411312px;}
.h6{height:77.469696px;}
.h13{height:199.051500px;}
.h1b{height:230.584500px;}
.h1c{height:286.149000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w6{width:320.542500px;}
.w5{width:387.066000px;}
.w4{width:560.496000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x80{left:-161.754000px;}
.x7c{left:-135.451500px;}
.x81{left:-129.890400px;}
.x7d{left:-103.587900px;}
.x6c{left:-51.889500px;}
.x6d{left:-20.028906px;}
.x0{left:0.000000px;}
.x8{left:29.274117px;}
.x2{left:59.014071px;}
.x8a{left:112.726500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x90{left:128.211990px;}
.x6f{left:132.880500px;}
.x78{left:136.692000px;}
.x93{left:143.778000px;}
.x5{left:146.170500px;}
.x87{left:149.661000px;}
.x70{left:150.817500px;}
.x86{left:152.572500px;}
.x79{left:155.401500px;}
.x71{left:159.034500px;}
.x88{left:162.283500px;}
.x6b{left:166.209000px;}
.x95{left:167.592000px;}
.x7a{left:170.346000px;}
.x9e{left:171.430500px;}
.x3f{left:175.059000px;}
.x8d{left:177.192000px;}
.xa6{left:181.684500px;}
.x89{left:183.033000px;}
.x9f{left:186.375000px;}
.x9{left:188.808000px;}
.x40{left:190.003500px;}
.x8e{left:192.136500px;}
.x41{left:193.813500px;}
.x94{left:197.466000px;}
.x4d{left:199.588500px;}
.xa{left:203.607000px;}
.x84{left:204.667500px;}
.x42{left:208.758000px;}
.x83{left:211.290000px;}
.x29{left:212.304000px;}
.x15{left:214.927500px;}
.x96{left:216.931500px;}
.xac{left:219.193500px;}
.x16{left:222.400500px;}
.x8b{left:225.670500px;}
.x2a{left:227.247000px;}
.x17{left:229.722000px;}
.x2b{left:231.043500px;}
.x18{left:237.195000px;}
.x23{left:242.374500px;}
.x2c{left:245.988000px;}
.xa9{left:247.966500px;}
.xbc{left:251.667000px;}
.x7b{left:252.924000px;}
.xbd{left:254.101500px;}
.x8f{left:255.225000px;}
.x24{left:257.319000px;}
.xaf{left:259.909500px;}
.xaa{left:262.909500px;}
.x85{left:264.922500px;}
.xb{left:268.077000px;}
.x4e{left:274.237500px;}
.xc{left:275.550000px;}
.x6e{left:277.240500px;}
.xd{left:279.342000px;}
.x21{left:281.857500px;}
.x49{left:284.262000px;}
.xe{left:286.813500px;}
.x4f{left:289.182000px;}
.x50{left:290.994000px;}
.x22{left:296.800500px;}
.x4a{left:299.206500px;}
.x25{left:309.105000px;}
.x59{left:316.768500px;}
.x26{left:324.049500px;}
.xf{left:326.211000px;}
.x27{left:327.846000px;}
.x3d{left:330.025500px;}
.x5a{left:331.711500px;}
.x10{left:333.684000px;}
.x82{left:339.726000px;}
.x28{left:342.789000px;}
.x3e{left:344.970000px;}
.x2d{left:349.048500px;}
.xad{left:350.308500px;}
.x92{left:354.687000px;}
.x8c{left:360.730500px;}
.x98{left:362.487000px;}
.x2e{left:363.993000px;}
.x7f{left:366.028500px;}
.x2f{left:371.614500px;}
.x99{left:377.430000px;}
.x62{left:379.362000px;}
.x63{left:383.172000px;}
.x30{left:386.557500px;}
.x7e{left:393.028500px;}
.xa0{left:396.243000px;}
.x64{left:398.116500px;}
.xa1{left:403.714500px;}
.x91{left:407.952000px;}
.x43{left:413.191500px;}
.x39{left:417.145500px;}
.xa2{left:422.416500px;}
.xae{left:423.685500px;}
.x44{left:428.136000px;}
.x3a{left:432.090000px;}
.x3b{left:439.441500px;}
.x4b{left:441.810000px;}
.x51{left:447.519000px;}
.x52{left:451.180500px;}
.x3c{left:454.386000px;}
.x4c{left:456.754500px;}
.x53{left:466.125000px;}
.x54{left:473.446500px;}
.x31{left:476.794500px;}
.x9c{left:486.889500px;}
.x55{left:488.391000px;}
.x32{left:491.737500px;}
.x33{left:495.549000px;}
.x9d{left:501.834000px;}
.x69{left:505.710000px;}
.x34{left:510.492000px;}
.x6a{left:516.196500px;}
.x35{left:518.113500px;}
.x60{left:520.827000px;}
.x36{left:533.058000px;}
.x61{left:535.771500px;}
.x72{left:543.201000px;}
.x73{left:555.633000px;}
.x74{left:556.731000px;}
.x65{left:566.400000px;}
.x75{left:571.674000px;}
.x76{left:579.295500px;}
.x66{left:581.344500px;}
.x97{left:587.368500px;}
.x77{left:594.240000px;}
.xb7{left:598.195500px;}
.x1d{left:599.218500px;}
.x9a{left:605.605500px;}
.x1e{left:614.161500px;}
.x1f{left:617.935500px;}
.x9b{left:620.550000px;}
.xb8{left:625.093500px;}
.xb1{left:626.176500px;}
.xbb{left:631.842000px;}
.x20{left:632.880000px;}
.x5d{left:636.334500px;}
.x5b{left:645.375000px;}
.x56{left:647.118000px;}
.x19{left:649.257000px;}
.x57{left:650.782500px;}
.x5e{left:655.011000px;}
.x68{left:657.273000px;}
.x5c{left:660.318000px;}
.x11{left:661.861500px;}
.x1a{left:664.201500px;}
.x58{left:665.727000px;}
.x12{left:669.333000px;}
.x1b{left:671.823000px;}
.xb2{left:673.768500px;}
.x13{left:676.656000px;}
.x14{left:684.127500px;}
.x1c{left:686.767500px;}
.xab{left:688.395000px;}
.xa7{left:695.191500px;}
.xb6{left:697.000500px;}
.x5f{left:698.217000px;}
.xa3{left:700.029000px;}
.x7{left:701.339982px;}
.xa4{left:703.788000px;}
.x37{left:705.613500px;}
.xa8{left:710.136000px;}
.xb5{left:711.169500px;}
.x67{left:715.732500px;}
.xa5{left:718.732500px;}
.x38{left:720.558000px;}
.xb0{left:729.123000px;}
.xb9{left:735.832500px;}
.x45{left:738.141000px;}
.xb3{left:749.514000px;}
.x46{left:753.084000px;}
.x47{left:756.895500px;}
.xba{left:762.732000px;}
.x48{left:771.838500px;}
.xb4{left:776.412000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v6{vertical-align:-15.429333pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.430144pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls39{letter-spacing:-0.881760pt;}
.ls38{letter-spacing:-0.336672pt;}
.ls56{letter-spacing:-0.240480pt;}
.ls45{letter-spacing:-0.230400pt;}
.ls55{letter-spacing:-0.192384pt;}
.ls54{letter-spacing:-0.171008pt;}
.ls53{letter-spacing:-0.149632pt;}
.ls57{letter-spacing:-0.144288pt;}
.ls33{letter-spacing:-0.138944pt;}
.ls36{letter-spacing:-0.133600pt;}
.ls3c{letter-spacing:-0.128256pt;}
.ls37{letter-spacing:-0.122912pt;}
.ls34{letter-spacing:-0.112224pt;}
.ls2d{letter-spacing:-0.106880pt;}
.ls3d{letter-spacing:-0.096192pt;}
.ls3e{letter-spacing:-0.090848pt;}
.ls2e{letter-spacing:-0.085504pt;}
.ls28{letter-spacing:-0.080864pt;}
.ls2a{letter-spacing:-0.080160pt;}
.ls35{letter-spacing:-0.074816pt;}
.ls29{letter-spacing:-0.069472pt;}
.ls42{letter-spacing:-0.067200pt;}
.ls3b{letter-spacing:-0.064128pt;}
.ls30{letter-spacing:-0.053440pt;}
.ls59{letter-spacing:-0.048000pt;}
.ls32{letter-spacing:-0.042752pt;}
.ls44{letter-spacing:-0.038400pt;}
.ls3a{letter-spacing:-0.037408pt;}
.ls27{letter-spacing:-0.034048pt;}
.ls31{letter-spacing:-0.032064pt;}
.ls2b{letter-spacing:-0.026720pt;}
.ls58{letter-spacing:-0.024000pt;}
.ls46{letter-spacing:-0.021376pt;}
.ls40{letter-spacing:-0.019200pt;}
.ls52{letter-spacing:-0.016032pt;}
.ls2f{letter-spacing:-0.010688pt;}
.ls43{letter-spacing:-0.009600pt;}
.ls2c{letter-spacing:-0.005344pt;}
.ls41{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000137pt;}
.ls5e{letter-spacing:0.000162pt;}
.ls0{letter-spacing:0.000213pt;}
.ls8{letter-spacing:0.000387pt;}
.ls70{letter-spacing:0.000444pt;}
.ls7f{letter-spacing:0.000536pt;}
.ls6b{letter-spacing:0.000583pt;}
.ls76{letter-spacing:0.000600pt;}
.ls5f{letter-spacing:0.000752pt;}
.ls5d{letter-spacing:0.000830pt;}
.lse{letter-spacing:0.000880pt;}
.ls68{letter-spacing:0.000901pt;}
.ls6a{letter-spacing:0.001183pt;}
.ls6f{letter-spacing:0.001370pt;}
.ls10{letter-spacing:0.001487pt;}
.ls66{letter-spacing:0.001774pt;}
.ls74{letter-spacing:0.002078pt;}
.ls48{letter-spacing:0.002097pt;}
.ls63{letter-spacing:0.002218pt;}
.ls5a{letter-spacing:0.002287pt;}
.lsf{letter-spacing:0.002301pt;}
.ls60{letter-spacing:0.002389pt;}
.ls6e{letter-spacing:0.002630pt;}
.ls61{letter-spacing:0.002690pt;}
.ls26{letter-spacing:0.002825pt;}
.ls67{letter-spacing:0.002959pt;}
.ls80{letter-spacing:0.003026pt;}
.lsa{letter-spacing:0.003100pt;}
.ls7{letter-spacing:0.003106pt;}
.ls12{letter-spacing:0.003325pt;}
.ls62{letter-spacing:0.003327pt;}
.ls6c{letter-spacing:0.003712pt;}
.ls69{letter-spacing:0.003791pt;}
.ls6d{letter-spacing:0.003942pt;}
.ls83{letter-spacing:0.004267pt;}
.ls65{letter-spacing:0.004497pt;}
.lsd{letter-spacing:0.004813pt;}
.ls1d{letter-spacing:0.005344pt;}
.ls1f{letter-spacing:0.010688pt;}
.ls20{letter-spacing:0.014400pt;}
.ls19{letter-spacing:0.016032pt;}
.ls22{letter-spacing:0.019200pt;}
.ls25{letter-spacing:0.021376pt;}
.ls4b{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.026720pt;}
.ls1c{letter-spacing:0.032064pt;}
.ls17{letter-spacing:0.037408pt;}
.ls16{letter-spacing:0.042752pt;}
.ls4a{letter-spacing:0.043200pt;}
.ls4c{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.048096pt;}
.ls1e{letter-spacing:0.053440pt;}
.ls4d{letter-spacing:0.057600pt;}
.ls1a{letter-spacing:0.058784pt;}
.ls49{letter-spacing:0.064128pt;}
.ls23{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.085504pt;}
.ls21{letter-spacing:0.110400pt;}
.ls24{letter-spacing:0.122912pt;}
.ls14{letter-spacing:0.153216pt;}
.ls13{letter-spacing:0.161728pt;}
.ls81{letter-spacing:0.478097pt;}
.lsc{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls7c{letter-spacing:9.552283pt;}
.ls47{letter-spacing:10.253948pt;}
.ls9{letter-spacing:10.626533pt;}
.ls7e{letter-spacing:11.761892pt;}
.ls85{letter-spacing:11.789956pt;}
.ls73{letter-spacing:11.830301pt;}
.ls4e{letter-spacing:11.842705pt;}
.ls82{letter-spacing:11.848644pt;}
.ls71{letter-spacing:11.862802pt;}
.ls7d{letter-spacing:11.899153pt;}
.ls72{letter-spacing:11.954133pt;}
.ls4f{letter-spacing:11.954551pt;}
.ls5c{letter-spacing:11.955635pt;}
.ls77{letter-spacing:11.959467pt;}
.ls79{letter-spacing:11.983158pt;}
.ls84{letter-spacing:12.074400pt;}
.ls7a{letter-spacing:12.224026pt;}
.ls51{letter-spacing:12.525532pt;}
.ls50{letter-spacing:12.530761pt;}
.ls64{letter-spacing:13.286400pt;}
.ls75{letter-spacing:13.550682pt;}
.ls3{letter-spacing:15.942400pt;}
.ls78{letter-spacing:19.155911pt;}
.ls7b{letter-spacing:19.940225pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:62.432533pt;}
.ls5{letter-spacing:64.314231pt;}
.ls5b{letter-spacing:153.184533pt;}
.ls3f{letter-spacing:972.160000pt;}
.ws1{word-spacing:-23.910400pt;}
.ws14{word-spacing:-15.461955pt;}
.wsb4{word-spacing:-13.915853pt;}
.wsfd{word-spacing:-13.498377pt;}
.wsac{word-spacing:-13.376032pt;}
.wsae{word-spacing:-13.360000pt;}
.wsab{word-spacing:-13.349312pt;}
.wsad{word-spacing:-13.338624pt;}
.ws13{word-spacing:-13.283467pt;}
.ws4f{word-spacing:-12.000000pt;}
.ws53{word-spacing:-11.955200pt;}
.ws4d{word-spacing:-10.801728pt;}
.ws21{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws4e{word-spacing:-8.000000pt;}
.wsd{word-spacing:-4.463245pt;}
.ws124{word-spacing:-3.931906pt;}
.ws25{word-spacing:-3.878772pt;}
.wsa5{word-spacing:-3.859656pt;}
.ws26{word-spacing:-3.825638pt;}
.ws89{word-spacing:-3.452224pt;}
.ws8b{word-spacing:-3.334656pt;}
.ws14e{word-spacing:-3.251814pt;}
.ws18{word-spacing:-3.241166pt;}
.ws8a{word-spacing:-3.067456pt;}
.ws160{word-spacing:-3.060531pt;}
.ws182{word-spacing:-2.869248pt;}
.wse9{word-spacing:-2.603559pt;}
.ws12d{word-spacing:-2.550426pt;}
.ws106{word-spacing:-2.497292pt;}
.ws7c{word-spacing:-2.484960pt;}
.ws15f{word-spacing:-2.391040pt;}
.ws129{word-spacing:-2.391024pt;}
.ws121{word-spacing:-2.337890pt;}
.ws122{word-spacing:-2.284756pt;}
.ws12b{word-spacing:-2.231622pt;}
.ws7b{word-spacing:-2.148288pt;}
.ws16e{word-spacing:-2.104115pt;}
.ws117{word-spacing:-2.072221pt;}
.ws12e{word-spacing:-1.965953pt;}
.wsa1{word-spacing:-1.886432pt;}
.ws8c{word-spacing:-1.870400pt;}
.ws146{word-spacing:-1.865011pt;}
.wse0{word-spacing:-1.859685pt;}
.ws9d{word-spacing:-1.849024pt;}
.wsbc{word-spacing:-1.838336pt;}
.ws60{word-spacing:-1.827648pt;}
.wsf{word-spacing:-1.806551pt;}
.ws61{word-spacing:-1.784896pt;}
.wsa0{word-spacing:-1.768864pt;}
.ws91{word-spacing:-1.756800pt;}
.ws3d{word-spacing:-1.753418pt;}
.ws90{word-spacing:-1.742400pt;}
.ws11a{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws92{word-spacing:-1.694400pt;}
.wsbb{word-spacing:-1.667328pt;}
.ws9a{word-spacing:-1.597856pt;}
.wsee{word-spacing:-1.594016pt;}
.ws9b{word-spacing:-1.544416pt;}
.wsec{word-spacing:-1.540882pt;}
.ws9f{word-spacing:-1.539072pt;}
.ws99{word-spacing:-1.533728pt;}
.ws9e{word-spacing:-1.517696pt;}
.ws5d{word-spacing:-1.512352pt;}
.ws8d{word-spacing:-1.507008pt;}
.ws5c{word-spacing:-1.490976pt;}
.ws135{word-spacing:-1.482445pt;}
.ws9c{word-spacing:-1.448224pt;}
.wsfa{word-spacing:-1.391585pt;}
.ws10e{word-spacing:-1.381481pt;}
.ws180{word-spacing:-1.338982pt;}
.ws120{word-spacing:-1.328347pt;}
.wsff{word-spacing:-1.298813pt;}
.ws108{word-spacing:-1.222079pt;}
.ws6{word-spacing:-1.175671pt;}
.ws104{word-spacing:-1.168945pt;}
.ws10a{word-spacing:-1.115811pt;}
.ws10f{word-spacing:-1.062677pt;}
.ws16f{word-spacing:-1.052058pt;}
.ws39{word-spacing:-1.009543pt;}
.ws71{word-spacing:-0.924512pt;}
.ws158{word-spacing:-0.908595pt;}
.wse1{word-spacing:-0.903276pt;}
.ws73{word-spacing:-0.871072pt;}
.wsf3{word-spacing:-0.850142pt;}
.ws7f{word-spacing:-0.844352pt;}
.ws72{word-spacing:-0.806944pt;}
.ws8{word-spacing:-0.797008pt;}
.ws70{word-spacing:-0.796256pt;}
.ws13d{word-spacing:-0.765133pt;}
.ws74{word-spacing:-0.748160pt;}
.ws1f{word-spacing:-0.743874pt;}
.ws138{word-spacing:-0.669491pt;}
.wsf9{word-spacing:-0.637606pt;}
.ws5b{word-spacing:-0.609216pt;}
.ws10c{word-spacing:-0.584473pt;}
.ws17c{word-spacing:-0.573850pt;}
.ws7e{word-spacing:-0.545088pt;}
.ws114{word-spacing:-0.531339pt;}
.ws12f{word-spacing:-0.478205pt;}
.wsc{word-spacing:-0.425071pt;}
.wsf4{word-spacing:-0.371937pt;}
.ws13b{word-spacing:-0.334746pt;}
.ws78{word-spacing:-0.325984pt;}
.ws3a{word-spacing:-0.318803pt;}
.wsc3{word-spacing:-0.277888pt;}
.ws40{word-spacing:-0.265669pt;}
.ws147{word-spacing:-0.239104pt;}
.ws55{word-spacing:-0.234080pt;}
.wsc8{word-spacing:-0.219104pt;}
.wse{word-spacing:-0.212535pt;}
.wsc9{word-spacing:-0.203072pt;}
.wsd8{word-spacing:-0.201600pt;}
.ws134{word-spacing:-0.191283pt;}
.wsd6{word-spacing:-0.182400pt;}
.ws17{word-spacing:-0.159402pt;}
.wsd7{word-spacing:-0.153600pt;}
.wsb0{word-spacing:-0.143462pt;}
.ws15{word-spacing:-0.106268pt;}
.wscb{word-spacing:-0.096192pt;}
.wsaf{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.wsb7{word-spacing:-0.047821pt;}
.ws54{word-spacing:-0.046816pt;}
.wsfc{word-spacing:-0.046386pt;}
.ws187{word-spacing:-0.042613pt;}
.ws176{word-spacing:-0.023663pt;}
.ws13e{word-spacing:-0.010155pt;}
.ws16a{word-spacing:-0.005939pt;}
.ws14d{word-spacing:-0.005274pt;}
.ws100{word-spacing:-0.003957pt;}
.wsa7{word-spacing:-0.003639pt;}
.wsa8{word-spacing:-0.003133pt;}
.ws17a{word-spacing:-0.003081pt;}
.ws181{word-spacing:-0.002953pt;}
.ws15e{word-spacing:-0.001101pt;}
.ws0{word-spacing:0.000000pt;}
.ws145{word-spacing:0.000060pt;}
.ws6c{word-spacing:0.021376pt;}
.ws6f{word-spacing:0.032064pt;}
.ws178{word-spacing:0.037072pt;}
.ws50{word-spacing:0.047821pt;}
.ws177{word-spacing:0.050615pt;}
.wsa{word-spacing:0.053134pt;}
.ws77{word-spacing:0.053440pt;}
.wsbf{word-spacing:0.069472pt;}
.ws133{word-spacing:0.095642pt;}
.wsca{word-spacing:0.096192pt;}
.wsd9{word-spacing:0.100800pt;}
.ws34{word-spacing:0.106268pt;}
.ws96{word-spacing:0.139200pt;}
.ws4{word-spacing:0.143462pt;}
.ws57{word-spacing:0.149632pt;}
.ws12{word-spacing:0.159402pt;}
.ws8e{word-spacing:0.160320pt;}
.ws170{word-spacing:0.165648pt;}
.wscf{word-spacing:0.182400pt;}
.ws51{word-spacing:0.191283pt;}
.ws95{word-spacing:0.196800pt;}
.ws29{word-spacing:0.212535pt;}
.wsa6{word-spacing:0.218723pt;}
.ws5{word-spacing:0.239104pt;}
.ws3f{word-spacing:0.265669pt;}
.ws67{word-spacing:0.315296pt;}
.wsea{word-spacing:0.318803pt;}
.ws17e{word-spacing:0.334746pt;}
.wsc6{word-spacing:0.342016pt;}
.ws12a{word-spacing:0.371937pt;}
.wsc7{word-spacing:0.411488pt;}
.wscd{word-spacing:0.436800pt;}
.ws6a{word-spacing:0.443552pt;}
.wse5{word-spacing:0.478205pt;}
.wscc{word-spacing:0.499200pt;}
.ws6b{word-spacing:0.539744pt;}
.wsb6{word-spacing:0.550833pt;}
.wsb5{word-spacing:0.573850pt;}
.ws105{word-spacing:0.584473pt;}
.ws148{word-spacing:0.621670pt;}
.ws4c{word-spacing:0.637606pt;}
.ws58{word-spacing:0.678688pt;}
.wsf7{word-spacing:0.690740pt;}
.ws161{word-spacing:0.717312pt;}
.ws48{word-spacing:0.743874pt;}
.ws83{word-spacing:0.785568pt;}
.ws107{word-spacing:0.797008pt;}
.ws41{word-spacing:0.850142pt;}
.ws46{word-spacing:0.903276pt;}
.ws126{word-spacing:0.956410pt;}
.ws16b{word-spacing:1.004237pt;}
.wse8{word-spacing:1.009543pt;}
.ws2d{word-spacing:1.062677pt;}
.wsce{word-spacing:1.094400pt;}
.wsb{word-spacing:1.115811pt;}
.wse3{word-spacing:1.222079pt;}
.ws140{word-spacing:1.243341pt;}
.ws24{word-spacing:1.275213pt;}
.ws11b{word-spacing:1.381481pt;}
.ws11c{word-spacing:1.434614pt;}
.wsdc{word-spacing:1.482445pt;}
.ws12c{word-spacing:1.487748pt;}
.ws123{word-spacing:1.540882pt;}
.ws137{word-spacing:1.578086pt;}
.ws118{word-spacing:1.700284pt;}
.ws136{word-spacing:1.817190pt;}
.ws9{word-spacing:1.859685pt;}
.ws62{word-spacing:1.982624pt;}
.wsf1{word-spacing:2.019087pt;}
.ws63{word-spacing:2.030720pt;}
.wsbe{word-spacing:2.089504pt;}
.ws164{word-spacing:2.104115pt;}
.ws11f{word-spacing:2.125355pt;}
.wsbd{word-spacing:2.191040pt;}
.ws1c{word-spacing:2.231622pt;}
.ws2e{word-spacing:2.284756pt;}
.ws143{word-spacing:2.295398pt;}
.wsa4{word-spacing:2.337890pt;}
.wse2{word-spacing:2.391024pt;}
.ws93{word-spacing:2.404800pt;}
.ws86{word-spacing:2.415488pt;}
.ws84{word-spacing:2.431520pt;}
.ws49{word-spacing:2.444158pt;}
.ws85{word-spacing:2.447552pt;}
.ws11e{word-spacing:2.497292pt;}
.wsf6{word-spacing:2.550426pt;}
.ws27{word-spacing:2.603559pt;}
.ws32{word-spacing:2.709827pt;}
.ws94{word-spacing:2.731200pt;}
.ws10b{word-spacing:2.762961pt;}
.ws10{word-spacing:2.816095pt;}
.ws16{word-spacing:2.975497pt;}
.ws3e{word-spacing:3.028630pt;}
.ws37{word-spacing:3.134898pt;}
.ws151{word-spacing:3.156173pt;}
.ws80{word-spacing:3.227776pt;}
.ws64{word-spacing:3.254496pt;}
.ws43{word-spacing:3.294300pt;}
.ws81{word-spacing:3.318624pt;}
.ws115{word-spacing:3.347434pt;}
.ws175{word-spacing:3.395277pt;}
.ws110{word-spacing:3.453701pt;}
.ws65{word-spacing:3.543072pt;}
.ws97{word-spacing:3.623232pt;}
.ws15d{word-spacing:3.634381pt;}
.ws98{word-spacing:3.665984pt;}
.ws11{word-spacing:3.719371pt;}
.ws35{word-spacing:3.772505pt;}
.ws132{word-spacing:3.777843pt;}
.ws109{word-spacing:3.825638pt;}
.wsc4{word-spacing:3.874400pt;}
.wsc5{word-spacing:3.890432pt;}
.ws19{word-spacing:3.931906pt;}
.ws10d{word-spacing:3.985040pt;}
.wsd4{word-spacing:4.003200pt;}
.wsd5{word-spacing:4.017600pt;}
.ws4b{word-spacing:4.038174pt;}
.ws23{word-spacing:4.091308pt;}
.ws131{word-spacing:4.112589pt;}
.ws1b{word-spacing:4.144442pt;}
.ws130{word-spacing:4.197575pt;}
.ws20{word-spacing:4.250720pt;}
.ws165{word-spacing:4.256051pt;}
.ws127{word-spacing:4.303843pt;}
.wsb3{word-spacing:4.303872pt;}
.ws174{word-spacing:4.399514pt;}
.wsef{word-spacing:4.463245pt;}
.wsf8{word-spacing:4.516379pt;}
.ws66{word-spacing:4.521024pt;}
.ws13f{word-spacing:4.542976pt;}
.ws189{word-spacing:4.590797pt;}
.ws13c{word-spacing:4.638618pt;}
.ws139{word-spacing:4.686438pt;}
.ws188{word-spacing:4.734259pt;}
.ws163{word-spacing:4.773675pt;}
.ws155{word-spacing:4.774852pt;}
.ws184{word-spacing:4.776090pt;}
.ws173{word-spacing:4.776311pt;}
.ws142{word-spacing:4.776789pt;}
.ws183{word-spacing:4.777515pt;}
.ws144{word-spacing:4.777941pt;}
.ws172{word-spacing:4.778436pt;}
.ws16c{word-spacing:4.779580pt;}
.ws150{word-spacing:4.779921pt;}
.ws13a{word-spacing:4.780186pt;}
.ws156{word-spacing:4.780262pt;}
.ws157{word-spacing:4.780476pt;}
.ws14f{word-spacing:4.782046pt;}
.ws169{word-spacing:4.782054pt;}
.ws3{word-spacing:4.782080pt;}
.ws17f{word-spacing:4.782268pt;}
.ws153{word-spacing:4.782319pt;}
.ws152{word-spacing:4.783556pt;}
.ws179{word-spacing:4.783607pt;}
.ws154{word-spacing:4.784461pt;}
.ws14b{word-spacing:4.829901pt;}
.ws162{word-spacing:4.925542pt;}
.ws17d{word-spacing:4.973363pt;}
.wseb{word-spacing:5.047717pt;}
.ws116{word-spacing:5.100851pt;}
.ws11d{word-spacing:5.153985pt;}
.ws6d{word-spacing:5.167648pt;}
.ws56{word-spacing:5.172992pt;}
.ws47{word-spacing:5.207119pt;}
.ws166{word-spacing:5.212467pt;}
.ws45{word-spacing:5.260253pt;}
.ws14c{word-spacing:5.260288pt;}
.ws6e{word-spacing:5.311936pt;}
.ws1a{word-spacing:5.313387pt;}
.ws185{word-spacing:5.355930pt;}
.ws17b{word-spacing:5.403750pt;}
.wsaa{word-spacing:5.472788pt;}
.ws171{word-spacing:5.499392pt;}
.ws44{word-spacing:5.525922pt;}
.wsdb{word-spacing:5.547213pt;}
.wse4{word-spacing:5.579056pt;}
.ws149{word-spacing:5.690675pt;}
.wsb2{word-spacing:5.738496pt;}
.ws186{word-spacing:5.786317pt;}
.ws1e{word-spacing:5.791591pt;}
.ws1d{word-spacing:5.844725pt;}
.wsda{word-spacing:5.881958pt;}
.wsf0{word-spacing:5.897859pt;}
.ws52{word-spacing:5.929779pt;}
.ws4a{word-spacing:5.950993pt;}
.ws3b{word-spacing:6.004127pt;}
.ws3c{word-spacing:6.057261pt;}
.wsb1{word-spacing:6.073242pt;}
.ws59{word-spacing:6.124224pt;}
.ws42{word-spacing:6.163529pt;}
.ws87{word-spacing:6.193696pt;}
.ws113{word-spacing:6.216662pt;}
.ws5a{word-spacing:6.241792pt;}
.ws88{word-spacing:6.252480pt;}
.wsf2{word-spacing:6.269796pt;}
.ws15b{word-spacing:6.312346pt;}
.ws15a{word-spacing:6.360166pt;}
.ws30{word-spacing:6.429198pt;}
.ws31{word-spacing:6.482332pt;}
.ws2f{word-spacing:6.535466pt;}
.ws16d{word-spacing:6.694912pt;}
.ws125{word-spacing:6.907403pt;}
.ws36{word-spacing:7.119938pt;}
.ws168{word-spacing:7.173120pt;}
.ws14a{word-spacing:7.220941pt;}
.wsa9{word-spacing:7.438741pt;}
.wsa2{word-spacing:7.651277pt;}
.wsa3{word-spacing:7.704411pt;}
.wsf5{word-spacing:7.810678pt;}
.ws15c{word-spacing:7.986074pt;}
.wsd3{word-spacing:8.208000pt;}
.ws128{word-spacing:8.235749pt;}
.ws2b{word-spacing:8.288883pt;}
.ws2a{word-spacing:8.342017pt;}
.ws79{word-spacing:8.400768pt;}
.ws102{word-spacing:8.448285pt;}
.ws103{word-spacing:8.501419pt;}
.ws7a{word-spacing:8.523680pt;}
.ws111{word-spacing:8.767088pt;}
.ws141{word-spacing:8.846848pt;}
.ws68{word-spacing:9.042048pt;}
.ws69{word-spacing:9.052736pt;}
.ws2c{word-spacing:9.139025pt;}
.wsed{word-spacing:9.192159pt;}
.ws75{word-spacing:9.325280pt;}
.ws76{word-spacing:9.437504pt;}
.ws7d{word-spacing:9.640576pt;}
.wsc0{word-spacing:9.683328pt;}
.wsc1{word-spacing:9.704704pt;}
.wsd1{word-spacing:9.710400pt;}
.wsd0{word-spacing:9.734400pt;}
.wsd2{word-spacing:9.739200pt;}
.wsc2{word-spacing:9.934496pt;}
.ws112{word-spacing:10.414238pt;}
.ws38{word-spacing:10.467372pt;}
.ws5f{word-spacing:10.725408pt;}
.ws5e{word-spacing:10.746784pt;}
.ws119{word-spacing:11.264380pt;}
.ws159{word-spacing:11.668275pt;}
.ws167{word-spacing:13.150720pt;}
.ws33{word-spacing:13.921073pt;}
.ws82{word-spacing:15.716704pt;}
.wsba{word-spacing:20.211008pt;}
.wsb8{word-spacing:20.253760pt;}
.wsb9{word-spacing:20.387360pt;}
.wsdd{word-spacing:95.306854pt;}
.wsde{word-spacing:124.238438pt;}
.wse6{word-spacing:130.072576pt;}
.wsdf{word-spacing:184.062259pt;}
.wse7{word-spacing:277.504102pt;}
.ws22{word-spacing:382.947365pt;}
.ws101{word-spacing:405.136861pt;}
.wsfe{word-spacing:494.151933pt;}
.wsfb{word-spacing:510.479867pt;}
.ws8f{word-spacing:937.425600pt;}
._2{margin-left:-7.077478pt;}
._7{margin-left:-6.084748pt;}
._5{margin-left:-4.399514pt;}
._6{margin-left:-2.630144pt;}
._1{margin-left:-0.944910pt;}
._a{width:0.969929pt;}
._3{width:2.668782pt;}
._0{width:9.035708pt;}
._d{width:10.572225pt;}
._12{width:11.504600pt;}
._1a{width:12.529050pt;}
._c{width:13.815743pt;}
._10{width:15.285645pt;}
._8{width:16.188239pt;}
._9{width:17.286321pt;}
._2d{width:18.191320pt;}
._b{width:19.102545pt;}
._11{width:20.615940pt;}
._16{width:21.507716pt;}
._43{width:22.407983pt;}
._14{width:23.368304pt;}
._15{width:25.042038pt;}
._e{width:27.417075pt;}
._3d{width:28.373485pt;}
._f{width:29.318395pt;}
._42{width:30.414029pt;}
._41{width:31.753011pt;}
._3c{width:33.439837pt;}
._18{width:35.015218pt;}
._17{width:38.362652pt;}
._3e{width:43.729172pt;}
._31{width:45.919652pt;}
._4{width:48.356178pt;}
._3a{width:50.264638pt;}
._40{width:54.993920pt;}
._33{width:61.187822pt;}
._3f{width:78.904320pt;}
._1d{width:115.152486pt;}
._28{width:119.169434pt;}
._22{width:126.438195pt;}
._23{width:128.590131pt;}
._1c{width:131.602842pt;}
._27{width:138.393395pt;}
._24{width:146.044723pt;}
._2a{width:151.639757pt;}
._1f{width:156.374016pt;}
._2b{width:162.303795pt;}
._1b{width:172.202701pt;}
._1e{width:177.093789pt;}
._29{width:178.084659pt;}
._21{width:184.014438pt;}
._2e{width:199.077990pt;}
._20{width:211.415757pt;}
._2c{width:227.053158pt;}
._26{width:231.883059pt;}
._34{width:251.279961pt;}
._25{width:259.188736pt;}
._2f{width:277.551923pt;}
._37{width:309.265636pt;}
._30{width:317.864858pt;}
._39{width:342.151398pt;}
._36{width:505.018593pt;}
._35{width:595.887812pt;}
._32{width:690.361799pt;}
._38{width:754.003119pt;}
._19{width:1019.045267pt;}
._3b{width:1346.328946pt;}
._13{width:1367.582546pt;}
.fs11{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs10{font-size:36.077792pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fsf{font-size:46.386176pt;}
.fs6{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:53.754880pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:95.641600pt;}
.ya5{bottom:-538.082267pt;}
.yba{bottom:-454.003467pt;}
.yb9{bottom:-436.643067pt;}
.yb8{bottom:-419.363067pt;}
.yb7{bottom:-402.002667pt;}
.yb6{bottom:-384.642267pt;}
.yb5{bottom:-353.682267pt;}
.yc0{bottom:-192.786267pt;}
.y75{bottom:-157.586267pt;}
.y9e{bottom:-124.466123pt;}
.yd5{bottom:-108.707467pt;}
.y9d{bottom:-106.466195pt;}
.yd4{bottom:-91.347067pt;}
.y9c{bottom:-88.466267pt;}
.yd3{bottom:-74.067067pt;}
.yb4{bottom:-60.802667pt;}
.yd2{bottom:-56.706667pt;}
.y9b{bottom:-54.946667pt;}
.yb3{bottom:-43.442267pt;}
.yd1{bottom:-39.346267pt;}
.y9a{bottom:-37.586267pt;}
.yb2{bottom:-26.162267pt;}
.y99{bottom:-20.225867pt;}
.yd0{bottom:-8.386267pt;}
.yb1{bottom:-2.722267pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:3.044747pt;}
.y98{bottom:5.133733pt;}
.y4{bottom:5.644850pt;}
.y18{bottom:12.578910pt;}
.y97{bottom:17.693733pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y32{bottom:56.693333pt;}
.y188{bottom:96.544000pt;}
.y23b{bottom:96.850667pt;}
.y31{bottom:100.113333pt;}
.y1ca{bottom:103.065333pt;}
.y1d9{bottom:106.545333pt;}
.ya1{bottom:106.637333pt;}
.y207{bottom:106.893333pt;}
.y1b1{bottom:107.449333pt;}
.y107{bottom:107.576000pt;}
.y63{bottom:111.620000pt;}
.y23a{bottom:114.066667pt;}
.y187{bottom:114.556000pt;}
.y30{bottom:118.126667pt;}
.yda{bottom:120.677333pt;}
.y15e{bottom:120.996000pt;}
.y1c9{bottom:121.078667pt;}
.ya0{bottom:123.733333pt;}
.y206{bottom:124.108000pt;}
.y1d8{bottom:124.558667pt;}
.y1b0{bottom:125.461333pt;}
.y106{bottom:125.589333pt;}
.y62{bottom:129.633333pt;}
.y239{bottom:131.281333pt;}
.y186{bottom:132.568000pt;}
.y2f{bottom:136.138667pt;}
.yd9{bottom:137.773333pt;}
.y15d{bottom:139.009333pt;}
.y1c8{bottom:139.090667pt;}
.y9f{bottom:140.829333pt;}
.y205{bottom:141.324000pt;}
.y1d7{bottom:142.570667pt;}
.y1af{bottom:143.474667pt;}
.y105{bottom:143.601333pt;}
.y61{bottom:147.645333pt;}
.y238{bottom:148.497333pt;}
.y185{bottom:150.581333pt;}
.y2e{bottom:154.150667pt;}
.yd8{bottom:154.869333pt;}
.y15c{bottom:157.021333pt;}
.y1c7{bottom:157.102667pt;}
.y204{bottom:158.538667pt;}
.y1d6{bottom:160.584000pt;}
.y73{bottom:160.765333pt;}
.y104{bottom:161.614667pt;}
.y60{bottom:165.657333pt;}
.y237{bottom:165.713333pt;}
.yd7{bottom:171.965333pt;}
.y2d{bottom:172.164000pt;}
.y1ae{bottom:174.770667pt;}
.y15b{bottom:175.033333pt;}
.y1c6{bottom:175.116000pt;}
.y203{bottom:175.754667pt;}
.y1d5{bottom:178.596000pt;}
.y103{bottom:179.626667pt;}
.y184{bottom:180.100000pt;}
.y236{bottom:182.928000pt;}
.y5f{bottom:183.670667pt;}
.yd6{bottom:189.060000pt;}
.y1ad{bottom:192.782667pt;}
.y202{bottom:192.970667pt;}
.y15a{bottom:193.046667pt;}
.y1c5{bottom:193.128000pt;}
.y96{bottom:193.694397pt;}
.y1d4{bottom:196.608000pt;}
.y102{bottom:197.638667pt;}
.y183{bottom:198.113333pt;}
.y2c{bottom:198.146667pt;}
.y235{bottom:200.144000pt;}
.y5e{bottom:201.682667pt;}
.ybe{bottom:208.997333pt;}
.y201{bottom:210.185333pt;}
.y1ac{bottom:210.796000pt;}
.y159{bottom:211.058667pt;}
.y1c4{bottom:211.141333pt;}
.y95{bottom:211.694325pt;}
.y1d3{bottom:214.621333pt;}
.y101{bottom:215.652000pt;}
.y182{bottom:216.125333pt;}
.y234{bottom:217.358667pt;}
.y12d{bottom:226.842667pt;}
.y200{bottom:227.401333pt;}
.y5d{bottom:227.665333pt;}
.y1ab{bottom:228.808000pt;}
.y158{bottom:229.072000pt;}
.y1c3{bottom:229.153333pt;}
.y94{bottom:229.694253pt;}
.y1d2{bottom:232.633333pt;}
.yb0{bottom:232.958773pt;}
.y100{bottom:233.664000pt;}
.y181{bottom:234.138667pt;}
.y233{bottom:234.574667pt;}
.y1ff{bottom:244.616000pt;}
.y12c{bottom:244.854667pt;}
.y1aa{bottom:246.820000pt;}
.y157{bottom:247.084000pt;}
.y1c2{bottom:247.165333pt;}
.y93{bottom:247.694181pt;}
.y1d1{bottom:250.646667pt;}
.yaf{bottom:250.958701pt;}
.yff{bottom:251.677333pt;}
.y232{bottom:251.790667pt;}
.y180{bottom:252.150667pt;}
.y5c{bottom:258.616000pt;}
.y1fe{bottom:261.832000pt;}
.y12b{bottom:262.866667pt;}
.y1a9{bottom:264.833333pt;}
.y156{bottom:265.096000pt;}
.y1c1{bottom:265.178667pt;}
.y92{bottom:265.613949pt;}
.y2b{bottom:266.072000pt;}
.y1d0{bottom:268.658667pt;}
.yae{bottom:268.878469pt;}
.y231{bottom:269.005333pt;}
.yfe{bottom:269.689333pt;}
.y17f{bottom:270.162667pt;}
.y1fd{bottom:279.048000pt;}
.y12a{bottom:280.880000pt;}
.y1a8{bottom:282.845333pt;}
.y155{bottom:283.109333pt;}
.y1c0{bottom:283.190667pt;}
.y91{bottom:283.613877pt;}
.y2a{bottom:284.084000pt;}
.ycf{bottom:284.493333pt;}
.y230{bottom:286.221333pt;}
.y1cf{bottom:286.670667pt;}
.yad{bottom:286.878397pt;}
.y17e{bottom:288.176000pt;}
.y5b{bottom:289.566667pt;}
.y1fc{bottom:296.262667pt;}
.y129{bottom:298.892000pt;}
.y1a7{bottom:300.858667pt;}
.y154{bottom:301.121333pt;}
.y1bf{bottom:301.204000pt;}
.y90{bottom:301.613805pt;}
.yce{bottom:301.853733pt;}
.y22f{bottom:303.437333pt;}
.y1ce{bottom:304.684000pt;}
.yac{bottom:304.878325pt;}
.y17d{bottom:306.188000pt;}
.y5a{bottom:307.580000pt;}
.yfd{bottom:311.692000pt;}
.y1fb{bottom:313.478667pt;}
.y128{bottom:316.905333pt;}
.y29{bottom:318.037333pt;}
.y1a6{bottom:318.870667pt;}
.ycd{bottom:319.133733pt;}
.y153{bottom:319.134667pt;}
.y1be{bottom:319.216000pt;}
.y8f{bottom:319.613805pt;}
.y22e{bottom:320.652000pt;}
.y1cd{bottom:322.696000pt;}
.yab{bottom:322.878253pt;}
.y17c{bottom:324.201333pt;}
.y59{bottom:325.592000pt;}
.yfc{bottom:326.622667pt;}
.y1fa{bottom:330.693333pt;}
.y127{bottom:334.917333pt;}
.y28{bottom:336.049333pt;}
.y1a5{bottom:336.882667pt;}
.y1bd{bottom:337.228000pt;}
.y8e{bottom:337.616197pt;}
.y22d{bottom:337.868000pt;}
.y1cc{bottom:340.709333pt;}
.yaa{bottom:340.878181pt;}
.y17b{bottom:342.213333pt;}
.ycc{bottom:342.573733pt;}
.y58{bottom:343.604000pt;}
.y152{bottom:345.117333pt;}
.y1f9{bottom:347.909333pt;}
.yfb{bottom:347.953333pt;}
.y126{bottom:352.929333pt;}
.y27{bottom:354.061333pt;}
.y1a4{bottom:354.896000pt;}
.y22c{bottom:355.082667pt;}
.y1bc{bottom:355.241333pt;}
.y8d{bottom:355.616125pt;}
.y72{bottom:358.721333pt;}
.ya9{bottom:358.878109pt;}
.y57{bottom:361.617333pt;}
.y1f8{bottom:365.125333pt;}
.y17a{bottom:368.196000pt;}
.y125{bottom:370.942667pt;}
.y26{bottom:372.074667pt;}
.y22b{bottom:372.298667pt;}
.y1a3{bottom:372.908000pt;}
.y1bb{bottom:373.253333pt;}
.y8c{bottom:373.535893pt;}
.yfa{bottom:376.060000pt;}
.y71{bottom:376.733333pt;}
.ya8{bottom:376.878037pt;}
.y56{bottom:379.629333pt;}
.y1f7{bottom:382.340000pt;}
.y151{bottom:382.926667pt;}
.y124{bottom:388.954667pt;}
.y22a{bottom:389.514667pt;}
.y25{bottom:390.086667pt;}
.y1ba{bottom:391.266667pt;}
.y8b{bottom:391.535821pt;}
.y70{bottom:394.746667pt;}
.ya7{bottom:394.797805pt;}
.y55{bottom:397.642667pt;}
.y150{bottom:398.435520pt;}
.y1a2{bottom:398.890667pt;}
.y179{bottom:399.146667pt;}
.y1f6{bottom:399.556000pt;}
.y229{bottom:406.729333pt;}
.y24{bottom:408.100000pt;}
.yf9{bottom:409.048000pt;}
.y1b9{bottom:409.278667pt;}
.y6f{bottom:412.758667pt;}
.ya6{bottom:412.797733pt;}
.y14f{bottom:412.916973pt;}
.y123{bottom:414.937333pt;}
.y54{bottom:415.654667pt;}
.y1f5{bottom:416.772000pt;}
.y178{bottom:417.158667pt;}
.y8a{bottom:417.535717pt;}
.y228{bottom:423.945333pt;}
.y23{bottom:426.112000pt;}
.yf8{bottom:427.060000pt;}
.y1b8{bottom:427.290667pt;}
.y1a1{bottom:429.841333pt;}
.y6e{bottom:430.772000pt;}
.y14e{bottom:433.609013pt;}
.y53{bottom:433.666667pt;}
.y1f4{bottom:433.986667pt;}
.y177{bottom:435.172000pt;}
.y227{bottom:441.160000pt;}
.y22{bottom:444.124000pt;}
.yf7{bottom:445.073333pt;}
.y1b7{bottom:445.304000pt;}
.y122{bottom:445.888000pt;}
.ya4{bottom:445.997733pt;}
.y1a0{bottom:447.854667pt;}
.y6d{bottom:448.784000pt;}
.y1f3{bottom:451.202667pt;}
.y89{bottom:451.535581pt;}
.y52{bottom:451.680000pt;}
.y176{bottom:453.184000pt;}
.y14d{bottom:454.299760pt;}
.y226{bottom:458.376000pt;}
.y21{bottom:462.137333pt;}
.yf6{bottom:463.085333pt;}
.y1b6{bottom:463.316000pt;}
.y121{bottom:463.901333pt;}
.y19f{bottom:465.866667pt;}
.y6c{bottom:466.796000pt;}
.y1f2{bottom:468.417333pt;}
.y14c{bottom:468.781213pt;}
.y88{bottom:469.535509pt;}
.y51{bottom:469.692000pt;}
.y175{bottom:471.196000pt;}
.y225{bottom:475.592000pt;}
.ybd{bottom:477.778667pt;}
.y20{bottom:480.149333pt;}
.yf5{bottom:481.098667pt;}
.y1b5{bottom:481.329333pt;}
.y120{bottom:481.913333pt;}
.y23e{bottom:481.982667pt;}
.y14b{bottom:483.262667pt;}
.y19e{bottom:483.878667pt;}
.y6a{bottom:484.809333pt;}
.y1f1{bottom:485.633333pt;}
.y87{bottom:487.535437pt;}
.y50{bottom:487.704000pt;}
.y174{bottom:489.209333pt;}
.y6b{bottom:489.630667pt;}
.y224{bottom:492.806667pt;}
.ybc{bottom:494.874667pt;}
.y14a{bottom:497.744120pt;}
.y1f{bottom:498.162667pt;}
.yf4{bottom:499.110667pt;}
.y23d{bottom:499.197333pt;}
.y11f{bottom:499.925333pt;}
.y19d{bottom:501.892000pt;}
.y68{bottom:502.821333pt;}
.y1f0{bottom:502.849333pt;}
.y86{bottom:505.535365pt;}
.y4f{bottom:505.717333pt;}
.y1b4{bottom:507.312000pt;}
.y69{bottom:507.644000pt;}
.y223{bottom:510.022667pt;}
.ybb{bottom:511.970667pt;}
.y149{bottom:512.225573pt;}
.y1e{bottom:516.174667pt;}
.y23c{bottom:516.413333pt;}
.yf3{bottom:517.122667pt;}
.y11e{bottom:517.938667pt;}
.y173{bottom:518.728000pt;}
.y19c{bottom:519.904000pt;}
.y1ef{bottom:520.064000pt;}
.y67{bottom:520.834667pt;}
.y85{bottom:523.455133pt;}
.y4e{bottom:523.729333pt;}
.y148{bottom:526.708320pt;}
.y222{bottom:527.237333pt;}
.ya3{bottom:531.908000pt;}
.y1d{bottom:534.186667pt;}
.yf2{bottom:535.136000pt;}
.y172{bottom:536.741333pt;}
.y1ee{bottom:537.280000pt;}
.y1b3{bottom:538.262667pt;}
.y66{bottom:538.846667pt;}
.y84{bottom:541.455061pt;}
.y4d{bottom:541.742667pt;}
.y11d{bottom:543.921333pt;}
.y221{bottom:544.453333pt;}
.y147{bottom:547.399067pt;}
.y19b{bottom:551.200000pt;}
.y1c{bottom:552.200000pt;}
.yf1{bottom:553.148000pt;}
.y1ed{bottom:554.494667pt;}
.y171{bottom:554.753333pt;}
.y65{bottom:556.858667pt;}
.y83{bottom:559.454989pt;}
.y4c{bottom:559.754667pt;}
.y220{bottom:561.669333pt;}
.y146{bottom:568.091107pt;}
.y19a{bottom:569.213333pt;}
.y1b{bottom:570.212000pt;}
.yf0{bottom:571.161333pt;}
.y1ec{bottom:571.710667pt;}
.y170{bottom:572.766667pt;}
.y11c{bottom:574.872000pt;}
.y82{bottom:577.454917pt;}
.y4b{bottom:577.766667pt;}
.ycb{bottom:578.254773pt;}
.y21f{bottom:578.884000pt;}
.y64{bottom:582.841333pt;}
.y199{bottom:587.225333pt;}
.y1a{bottom:588.225333pt;}
.y145{bottom:588.781853pt;}
.y1eb{bottom:588.926667pt;}
.yef{bottom:589.173333pt;}
.y16f{bottom:590.778667pt;}
.y11b{bottom:592.884000pt;}
.y81{bottom:595.454845pt;}
.y4a{bottom:595.780000pt;}
.y21e{bottom:596.100000pt;}
.yca{bottom:596.254701pt;}
.y198{bottom:605.237333pt;}
.y1ea{bottom:606.141333pt;}
.yee{bottom:607.185333pt;}
.y16e{bottom:608.790667pt;}
.y144{bottom:609.473893pt;}
.y11a{bottom:610.896000pt;}
.y21d{bottom:613.314667pt;}
.y80{bottom:613.454773pt;}
.y49{bottom:613.792000pt;}
.yc9{bottom:614.174469pt;}
.y1cb{bottom:618.866667pt;}
.y17{bottom:619.719968pt;}
.y16{bottom:620.401333pt;}
.y197{bottom:623.250667pt;}
.y1e9{bottom:623.357333pt;}
.y143{bottom:623.955347pt;}
.y119{bottom:628.909333pt;}
.y21c{bottom:630.530667pt;}
.y7f{bottom:631.454701pt;}
.y48{bottom:631.805333pt;}
.yc8{bottom:632.174397pt;}
.yed{bottom:633.168000pt;}
.y16d{bottom:638.310667pt;}
.y142{bottom:638.436800pt;}
.y1e8{bottom:640.572000pt;}
.y1b2{bottom:641.262667pt;}
.y118{bottom:646.921333pt;}
.y21b{bottom:647.746667pt;}
.y7e{bottom:649.374469pt;}
.y47{bottom:649.817333pt;}
.yc7{bottom:650.174325pt;}
.y141{bottom:652.918253pt;}
.y196{bottom:654.546667pt;}
.y15{bottom:655.073333pt;}
.y16c{bottom:656.322667pt;}
.y1e7{bottom:657.788000pt;}
.yec{bottom:664.118667pt;}
.y117{bottom:664.934667pt;}
.y21a{bottom:664.961333pt;}
.y7d{bottom:667.374397pt;}
.y46{bottom:667.829333pt;}
.yc6{bottom:668.174253pt;}
.y14{bottom:671.213333pt;}
.y195{bottom:672.558667pt;}
.y140{bottom:673.610293pt;}
.y16b{bottom:674.336000pt;}
.yeb{bottom:682.132000pt;}
.y219{bottom:682.177333pt;}
.y116{bottom:682.946667pt;}
.y1e6{bottom:682.973333pt;}
.y7c{bottom:685.374325pt;}
.y45{bottom:685.842667pt;}
.yc5{bottom:686.174181pt;}
.y13{bottom:687.352000pt;}
.y194{bottom:690.572000pt;}
.y16a{bottom:692.348000pt;}
.y13f{bottom:694.301040pt;}
.y218{bottom:699.392000pt;}
.yea{bottom:700.144000pt;}
.y115{bottom:700.958667pt;}
.y7b{bottom:703.374253pt;}
.y12{bottom:703.492000pt;}
.y44{bottom:703.854667pt;}
.yc4{bottom:704.174109pt;}
.y193{bottom:708.584000pt;}
.y13e{bottom:708.782493pt;}
.y169{bottom:710.361333pt;}
.y217{bottom:716.608000pt;}
.y1e5{bottom:718.042667pt;}
.ye9{bottom:718.156000pt;}
.y114{bottom:718.972000pt;}
.y11{bottom:719.632000pt;}
.y7a{bottom:721.374181pt;}
.y43{bottom:721.868000pt;}
.yc3{bottom:722.174037pt;}
.y13d{bottom:723.263947pt;}
.y192{bottom:726.596000pt;}
.y168{bottom:728.373333pt;}
.y1e4{bottom:731.552000pt;}
.y216{bottom:733.824000pt;}
.ye8{bottom:736.169333pt;}
.y113{bottom:736.984000pt;}
.y13c{bottom:737.745400pt;}
.y79{bottom:739.374109pt;}
.y42{bottom:739.880000pt;}
.yc2{bottom:740.093805pt;}
.y10{bottom:740.110667pt;}
.y191{bottom:744.609333pt;}
.y1e3{bottom:745.061333pt;}
.y167{bottom:746.385333pt;}
.y215{bottom:751.038667pt;}
.y13b{bottom:752.228147pt;}
.ye7{bottom:754.181333pt;}
.y112{bottom:754.997333pt;}
.yf{bottom:756.250667pt;}
.y78{bottom:757.374037pt;}
.y41{bottom:757.892000pt;}
.yc1{bottom:758.093733pt;}
.y190{bottom:762.621333pt;}
.y166{bottom:764.398667pt;}
.y1e2{bottom:766.540000pt;}
.y13a{bottom:766.709600pt;}
.ye{bottom:768.050667pt;}
.y214{bottom:768.254667pt;}
.ye6{bottom:772.194667pt;}
.y111{bottom:773.009333pt;}
.y77{bottom:775.293805pt;}
.y40{bottom:775.905333pt;}
.y1e1{bottom:780.049333pt;}
.y18f{bottom:780.634667pt;}
.y165{bottom:782.410667pt;}
.y213{bottom:785.469333pt;}
.y139{bottom:787.400347pt;}
.yd{bottom:788.529333pt;}
.ye5{bottom:790.206667pt;}
.y110{bottom:791.021333pt;}
.ybf{bottom:791.293733pt;}
.y76{bottom:793.293733pt;}
.y3f{bottom:793.917333pt;}
.y18e{bottom:798.646667pt;}
.yc{bottom:800.329333pt;}
.y164{bottom:800.424000pt;}
.y1e0{bottom:801.529333pt;}
.y212{bottom:802.685333pt;}
.y138{bottom:808.092387pt;}
.ye4{bottom:808.218667pt;}
.y10f{bottom:809.034667pt;}
.y3e{bottom:811.930667pt;}
.y1df{bottom:815.038667pt;}
.y18d{bottom:816.658667pt;}
.y163{bottom:818.436000pt;}
.y211{bottom:819.901333pt;}
.yb{bottom:820.808000pt;}
.y137{bottom:822.573840pt;}
.y74{bottom:826.493733pt;}
.y10e{bottom:827.046667pt;}
.y3d{bottom:829.942667pt;}
.y18c{bottom:834.672000pt;}
.y162{bottom:836.448000pt;}
.y1de{bottom:836.518667pt;}
.y136{bottom:837.055293pt;}
.y210{bottom:837.116000pt;}
.ya{bottom:840.578667pt;}
.y10d{bottom:845.060000pt;}
.ye3{bottom:845.174667pt;}
.y3c{bottom:847.954667pt;}
.y1dd{bottom:850.028000pt;}
.y135{bottom:851.228933pt;}
.y18b{bottom:852.684000pt;}
.y20f{bottom:854.332000pt;}
.y161{bottom:854.461333pt;}
.y9{bottom:858.590667pt;}
.y10c{bottom:863.072000pt;}
.y1dc{bottom:863.537333pt;}
.ye2{bottom:864.781333pt;}
.y3b{bottom:865.968000pt;}
.y134{bottom:866.406200pt;}
.y18a{bottom:870.697333pt;}
.y20e{bottom:871.546667pt;}
.y160{bottom:872.473333pt;}
.y1db{bottom:877.046667pt;}
.ye1{bottom:879.710667pt;}
.y133{bottom:880.887653pt;}
.y10b{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.y189{bottom:888.709333pt;}
.y20d{bottom:888.762667pt;}
.y15f{bottom:890.486667pt;}
.y1da{bottom:890.556000pt;}
.ye0{bottom:894.640000pt;}
.y132{bottom:895.369107pt;}
.y8{bottom:898.178667pt;}
.y10a{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y20c{bottom:905.978667pt;}
.ydf{bottom:909.569333pt;}
.y131{bottom:909.850560pt;}
.y109{bottom:917.109333pt;}
.y38{bottom:920.005333pt;}
.y20b{bottom:923.193333pt;}
.y130{bottom:924.332013pt;}
.y7{bottom:925.198667pt;}
.yde{bottom:930.901333pt;}
.y37{bottom:938.017333pt;}
.y20a{bottom:940.409333pt;}
.y108{bottom:943.092000pt;}
.y12f{bottom:945.024053pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y209{bottom:957.624000pt;}
.ydd{bottom:959.180000pt;}
.y12e{bottom:965.716093pt;}
.y35{bottom:974.042667pt;}
.y208{bottom:974.840000pt;}
.ydc{bottom:976.276000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.ydb{bottom:993.372000pt;}
.ya2{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h23{height:5.897859pt;}
.hc{height:22.673858pt;}
.h22{height:23.209028pt;}
.h9{height:27.076941pt;}
.h12{height:29.397999pt;}
.he{height:29.433775pt;}
.hd{height:30.399505pt;}
.h1e{height:30.945242pt;}
.h14{height:31.067969pt;}
.h11{height:31.200285pt;}
.h15{height:31.992188pt;}
.hb{height:33.187635pt;}
.h1f{height:33.398047pt;}
.h26{height:33.713664pt;}
.h20{height:33.769136pt;}
.h25{height:34.144051pt;}
.h1a{height:34.430976pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h19{height:35.039062pt;}
.h24{height:35.100467pt;}
.h4{height:36.445809pt;}
.hf{height:38.256384pt;}
.h17{height:38.566562pt;}
.h10{height:38.681455pt;}
.h5{height:39.000258pt;}
.h16{height:39.010156pt;}
.h21{height:43.103833pt;}
.h1d{height:43.446059pt;}
.h2{height:45.272024pt;}
.h18{height:46.718750pt;}
.h8{height:48.360277pt;}
.h7{height:48.365611pt;}
.h6{height:68.861952pt;}
.h13{height:176.934667pt;}
.h1b{height:204.964000pt;}
.h1c{height:254.354667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w6{width:284.926667pt;}
.w5{width:344.058667pt;}
.w4{width:498.218667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x80{left:-143.781333pt;}
.x7c{left:-120.401333pt;}
.x81{left:-115.458133pt;}
.x7d{left:-92.078133pt;}
.x6c{left:-46.124000pt;}
.x6d{left:-17.803472pt;}
.x0{left:0.000000pt;}
.x8{left:26.021437pt;}
.x2{left:52.456952pt;}
.x8a{left:100.201333pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x90{left:113.966213pt;}
.x6f{left:118.116000pt;}
.x78{left:121.504000pt;}
.x93{left:127.802667pt;}
.x5{left:129.929333pt;}
.x87{left:133.032000pt;}
.x70{left:134.060000pt;}
.x86{left:135.620000pt;}
.x79{left:138.134667pt;}
.x71{left:141.364000pt;}
.x88{left:144.252000pt;}
.x6b{left:147.741333pt;}
.x95{left:148.970667pt;}
.x7a{left:151.418667pt;}
.x9e{left:152.382667pt;}
.x3f{left:155.608000pt;}
.x8d{left:157.504000pt;}
.xa6{left:161.497333pt;}
.x89{left:162.696000pt;}
.x9f{left:165.666667pt;}
.x9{left:167.829333pt;}
.x40{left:168.892000pt;}
.x8e{left:170.788000pt;}
.x41{left:172.278667pt;}
.x94{left:175.525333pt;}
.x4d{left:177.412000pt;}
.xa{left:180.984000pt;}
.x84{left:181.926667pt;}
.x42{left:185.562667pt;}
.x83{left:187.813333pt;}
.x29{left:188.714667pt;}
.x15{left:191.046667pt;}
.x96{left:192.828000pt;}
.xac{left:194.838667pt;}
.x16{left:197.689333pt;}
.x8b{left:200.596000pt;}
.x2a{left:201.997333pt;}
.x17{left:204.197333pt;}
.x2b{left:205.372000pt;}
.x18{left:210.840000pt;}
.x23{left:215.444000pt;}
.x2c{left:218.656000pt;}
.xa9{left:220.414667pt;}
.xbc{left:223.704000pt;}
.x7b{left:224.821333pt;}
.xbd{left:225.868000pt;}
.x8f{left:226.866667pt;}
.x24{left:228.728000pt;}
.xaf{left:231.030667pt;}
.xaa{left:233.697333pt;}
.x85{left:235.486667pt;}
.xb{left:238.290667pt;}
.x4e{left:243.766667pt;}
.xc{left:244.933333pt;}
.x6e{left:246.436000pt;}
.xd{left:248.304000pt;}
.x21{left:250.540000pt;}
.x49{left:252.677333pt;}
.xe{left:254.945333pt;}
.x4f{left:257.050667pt;}
.x50{left:258.661333pt;}
.x22{left:263.822667pt;}
.x4a{left:265.961333pt;}
.x25{left:274.760000pt;}
.x59{left:281.572000pt;}
.x26{left:288.044000pt;}
.xf{left:289.965333pt;}
.x27{left:291.418667pt;}
.x3d{left:293.356000pt;}
.x5a{left:294.854667pt;}
.x10{left:296.608000pt;}
.x82{left:301.978667pt;}
.x28{left:304.701333pt;}
.x3e{left:306.640000pt;}
.x2d{left:310.265333pt;}
.xad{left:311.385333pt;}
.x92{left:315.277333pt;}
.x8c{left:320.649333pt;}
.x98{left:322.210667pt;}
.x2e{left:323.549333pt;}
.x7f{left:325.358667pt;}
.x2f{left:330.324000pt;}
.x99{left:335.493333pt;}
.x62{left:337.210667pt;}
.x63{left:340.597333pt;}
.x30{left:343.606667pt;}
.x7e{left:349.358667pt;}
.xa0{left:352.216000pt;}
.x64{left:353.881333pt;}
.xa1{left:358.857333pt;}
.x91{left:362.624000pt;}
.x43{left:367.281333pt;}
.x39{left:370.796000pt;}
.xa2{left:375.481333pt;}
.xae{left:376.609333pt;}
.x44{left:380.565333pt;}
.x3a{left:384.080000pt;}
.x3b{left:390.614667pt;}
.x4b{left:392.720000pt;}
.x51{left:397.794667pt;}
.x52{left:401.049333pt;}
.x3c{left:403.898667pt;}
.x4c{left:406.004000pt;}
.x53{left:414.333333pt;}
.x54{left:420.841333pt;}
.x31{left:423.817333pt;}
.x9c{left:432.790667pt;}
.x55{left:434.125333pt;}
.x32{left:437.100000pt;}
.x33{left:440.488000pt;}
.x9d{left:446.074667pt;}
.x69{left:449.520000pt;}
.x34{left:453.770667pt;}
.x6a{left:458.841333pt;}
.x35{left:460.545333pt;}
.x60{left:462.957333pt;}
.x36{left:473.829333pt;}
.x61{left:476.241333pt;}
.x72{left:482.845333pt;}
.x73{left:493.896000pt;}
.x74{left:494.872000pt;}
.x65{left:503.466667pt;}
.x75{left:508.154667pt;}
.x76{left:514.929333pt;}
.x66{left:516.750667pt;}
.x97{left:522.105333pt;}
.x77{left:528.213333pt;}
.xb7{left:531.729333pt;}
.x1d{left:532.638667pt;}
.x9a{left:538.316000pt;}
.x1e{left:545.921333pt;}
.x1f{left:549.276000pt;}
.x9b{left:551.600000pt;}
.xb8{left:555.638667pt;}
.xb1{left:556.601333pt;}
.xbb{left:561.637333pt;}
.x20{left:562.560000pt;}
.x5d{left:565.630667pt;}
.x5b{left:573.666667pt;}
.x56{left:575.216000pt;}
.x19{left:577.117333pt;}
.x57{left:578.473333pt;}
.x5e{left:582.232000pt;}
.x68{left:584.242667pt;}
.x5c{left:586.949333pt;}
.x11{left:588.321333pt;}
.x1a{left:590.401333pt;}
.x58{left:591.757333pt;}
.x12{left:594.962667pt;}
.x1b{left:597.176000pt;}
.xb2{left:598.905333pt;}
.x13{left:601.472000pt;}
.x14{left:608.113333pt;}
.x1c{left:610.460000pt;}
.xab{left:611.906667pt;}
.xa7{left:617.948000pt;}
.xb6{left:619.556000pt;}
.x5f{left:620.637333pt;}
.xa3{left:622.248000pt;}
.x7{left:623.413317pt;}
.xa4{left:625.589333pt;}
.x37{left:627.212000pt;}
.xa8{left:631.232000pt;}
.xb5{left:632.150667pt;}
.x67{left:636.206667pt;}
.xa5{left:638.873333pt;}
.x38{left:640.496000pt;}
.xb0{left:648.109333pt;}
.xb9{left:654.073333pt;}
.x45{left:656.125333pt;}
.xb3{left:666.234667pt;}
.x46{left:669.408000pt;}
.x47{left:672.796000pt;}
.xba{left:677.984000pt;}
.x48{left:686.078667pt;}
.xb4{left:690.144000pt;}
}




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