
    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_4a0b24ac9b4326d4739fe030.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f43376acb4251108ccb61b4a.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_0d6ebebac44750d8a50dc217.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dd7684d88a40ca0bf96b6903.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1be2a25e5ac3094ef7bda0c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_30ab296d79b5927913272063.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9cb2eb66546e05ccb879253e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_790841524387f7feaffe1e9f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_45d65ed304a55b51d0073067.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_c5fc2dda4123eaa0792e57a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.745117;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_7817f31ae3115287897069e7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.388000;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_30ab296d79b5927913272063.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_a29c06e315bf83efaa5f7fea.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_92df1ece419b93c998ef51ad.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_45d65ed304a55b51d0073067.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727539;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_d95d47250b01fc269f825a45.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.745117;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_158499b2a24c801f1eef0f89.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;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_30ab296d79b5927913272063.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_94c470816aa6d15728de5c02.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_af8c940a6ea12b14daddbfc2.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_e605539d2be8e2c6ec7283af.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.745117;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_645b3fc787813ee38b493aba.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.971191;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_30ab296d79b5927913272063.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4e8d9e2d8729bb46243c1a1d.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c6faae1b0dd4ed61db25129a.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_9e7679551ea83497077c2cd7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.745117;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;}
.m27{transform:matrix(0.179234,-0.179234,0.176777,0.176777,0,0);-ms-transform:matrix(0.179234,-0.179234,0.176777,0.176777,0,0);-webkit-transform:matrix(0.179234,-0.179234,0.176777,0.176777,0,0);}
.m6{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);}
.m2b{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);}
.m17{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);}
.m9{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);}
.mb{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);}
.mf{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);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m8{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);}
.m1e{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);}
.m25{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m13{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);}
.m16{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);}
.m3{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);}
.m1a{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);}
.m12{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);}
.m18{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);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1c{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);}
.m19{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);}
.m24{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);}
.m29{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);}
.m20{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);}
.m10{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);}
.m21{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253477,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.me{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);}
.m23{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);}
.mc{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);}
.m1d{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);}
.m2{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);}
.m1{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);}
.v5{vertical-align:-44.641800px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.ls59{letter-spacing:-1.202400px;}
.ls2f{letter-spacing:-0.517032px;}
.ls35{letter-spacing:-0.348696px;}
.ls4f{letter-spacing:-0.306612px;}
.ls7d{letter-spacing:-0.280400px;}
.ls2c{letter-spacing:-0.180360px;}
.ls83{letter-spacing:-0.178436px;}
.ls7c{letter-spacing:-0.159318px;}
.ls4e{letter-spacing:-0.144288px;}
.ls7a{letter-spacing:-0.140200px;}
.ls90{letter-spacing:-0.131829px;}
.ls5b{letter-spacing:-0.129600px;}
.ls8f{letter-spacing:-0.123040px;}
.ls82{letter-spacing:-0.121082px;}
.ls2e{letter-spacing:-0.120240px;}
.ls9f{letter-spacing:-0.114709px;}
.ls34{letter-spacing:-0.114228px;}
.ls26{letter-spacing:-0.108216px;}
.ls5c{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.102204px;}
.ls94{letter-spacing:-0.096675px;}
.ls79{letter-spacing:-0.095591px;}
.ls8a{letter-spacing:-0.092280px;}
.ls50{letter-spacing:-0.090180px;}
.ls7e{letter-spacing:-0.089218px;}
.ls8d{letter-spacing:-0.087886px;}
.ls2b{letter-spacing:-0.084168px;}
.ls80{letter-spacing:-0.076473px;}
.ls87{letter-spacing:-0.074703px;}
.ls2a{letter-spacing:-0.072144px;}
.ls85{letter-spacing:-0.070100px;}
.ls25{letter-spacing:-0.066132px;}
.ls51{letter-spacing:-0.060120px;}
.ls86{letter-spacing:-0.057354px;}
.ls8b{letter-spacing:-0.057126px;}
.ls5e{letter-spacing:-0.054000px;}
.ls36{letter-spacing:-0.048096px;}
.ls76{letter-spacing:-0.044609px;}
.ls30{letter-spacing:-0.042084px;}
.ls7f{letter-spacing:-0.038236px;}
.ls29{letter-spacing:-0.036072px;}
.ls92{letter-spacing:-0.035154px;}
.ls5d{letter-spacing:-0.032400px;}
.ls78{letter-spacing:-0.031864px;}
.ls27{letter-spacing:-0.030060px;}
.ls32{letter-spacing:-0.027000px;}
.ls91{letter-spacing:-0.026366px;}
.ls81{letter-spacing:-0.025491px;}
.ls33{letter-spacing:-0.024048px;}
.ls54{letter-spacing:-0.021600px;}
.ls28{letter-spacing:-0.018036px;}
.ls57{letter-spacing:-0.016200px;}
.ls75{letter-spacing:-0.015226px;}
.ls24{letter-spacing:-0.014364px;}
.ls77{letter-spacing:-0.012745px;}
.ls31{letter-spacing:-0.012024px;}
.ls55{letter-spacing:-0.010800px;}
.ls88{letter-spacing:-0.008789px;}
.ls7b{letter-spacing:-0.006373px;}
.ls58{letter-spacing:-0.006012px;}
.ls9d{letter-spacing:-0.005724px;}
.ls0{letter-spacing:0.000000px;}
.lsa2{letter-spacing:0.000741px;}
.ls3d{letter-spacing:0.005400px;}
.ls13{letter-spacing:0.006012px;}
.ls6b{letter-spacing:0.006373px;}
.ls8e{letter-spacing:0.008789px;}
.ls44{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.012024px;}
.ls96{letter-spacing:0.012745px;}
.ls56{letter-spacing:0.016200px;}
.ls97{letter-spacing:0.017172px;}
.ls74{letter-spacing:0.017577px;}
.ls17{letter-spacing:0.018036px;}
.ls63{letter-spacing:0.019118px;}
.ls10{letter-spacing:0.019152px;}
.ls5f{letter-spacing:0.020301px;}
.ls47{letter-spacing:0.021600px;}
.ls19{letter-spacing:0.024048px;}
.ls6d{letter-spacing:0.025491px;}
.ls1c{letter-spacing:0.027000px;}
.ls1b{letter-spacing:0.030060px;}
.ls69{letter-spacing:0.031864px;}
.ls4b{letter-spacing:0.032400px;}
.ls72{letter-spacing:0.035154px;}
.ls18{letter-spacing:0.036072px;}
.ls3e{letter-spacing:0.037800px;}
.ls95{letter-spacing:0.038236px;}
.ls1a{letter-spacing:0.042084px;}
.ls70{letter-spacing:0.043943px;}
.ls68{letter-spacing:0.044609px;}
.ls67{letter-spacing:0.045792px;}
.ls15{letter-spacing:0.048096px;}
.ls1e{letter-spacing:0.048600px;}
.ls6c{letter-spacing:0.050982px;}
.ls5a{letter-spacing:0.054000px;}
.ls20{letter-spacing:0.054108px;}
.ls4c{letter-spacing:0.059400px;}
.ls40{letter-spacing:0.060120px;}
.ls9b{letter-spacing:0.062964px;}
.ls65{letter-spacing:0.063727px;}
.ls41{letter-spacing:0.064800px;}
.ls14{letter-spacing:0.066132px;}
.ls6a{letter-spacing:0.070100px;}
.ls52{letter-spacing:0.072144px;}
.ls62{letter-spacing:0.076473px;}
.ls46{letter-spacing:0.081000px;}
.ls93{letter-spacing:0.083492px;}
.ls3c{letter-spacing:0.084168px;}
.lsa0{letter-spacing:0.089218px;}
.ls42{letter-spacing:0.091800px;}
.ls84{letter-spacing:0.101964px;}
.ls66{letter-spacing:0.108336px;}
.ls3b{letter-spacing:0.114228px;}
.ls45{letter-spacing:0.118800px;}
.ls99{letter-spacing:0.121082px;}
.ls6f{letter-spacing:0.127435px;}
.ls9e{letter-spacing:0.127454px;}
.ls48{letter-spacing:0.135000px;}
.ls64{letter-spacing:0.140200px;}
.ls43{letter-spacing:0.145800px;}
.ls98{letter-spacing:0.146573px;}
.ls6e{letter-spacing:0.158195px;}
.ls4a{letter-spacing:0.162000px;}
.lsa1{letter-spacing:0.165691px;}
.ls12{letter-spacing:0.167580px;}
.ls3f{letter-spacing:0.168336px;}
.ls9a{letter-spacing:0.172063px;}
.ls61{letter-spacing:0.177635px;}
.ls1d{letter-spacing:0.178200px;}
.ls11{letter-spacing:0.181944px;}
.ls73{letter-spacing:0.184561px;}
.ls9c{letter-spacing:0.188892px;}
.ls60{letter-spacing:0.192861px;}
.ls71{letter-spacing:0.206532px;}
.ls49{letter-spacing:0.221400px;}
.ls89{letter-spacing:0.224109px;}
.ls8c{letter-spacing:0.250475px;}
.ls3a{letter-spacing:0.648088px;}
.ls1f{letter-spacing:0.811620px;}
.ls53{letter-spacing:8.729424px;}
.ls8{letter-spacing:11.954850px;}
.ls38{letter-spacing:14.645022px;}
.lsf{letter-spacing:14.704798px;}
.ls5{letter-spacing:14.795234px;}
.ls6{letter-spacing:14.824349px;}
.ls37{letter-spacing:14.884124px;}
.lsa{letter-spacing:14.943900px;}
.lsc{letter-spacing:15.003676px;}
.ls22{letter-spacing:15.063451px;}
.ls4d{letter-spacing:15.242778px;}
.lsb{letter-spacing:15.422105px;}
.lsd{letter-spacing:15.780758px;}
.ls7{letter-spacing:17.155597px;}
.lse{letter-spacing:21.280114px;}
.ls23{letter-spacing:22.774504px;}
.ls21{letter-spacing:23.611362px;}
.ls9{letter-spacing:25.404630px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.ls39{letter-spacing:94.292700px;}
.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;}
}
.ws101{word-spacing:-63.727200px;}
.wsb2{word-spacing:-60.120000px;}
.wsb4{word-spacing:-54.000000px;}
.ws109{word-spacing:-15.692057px;}
.ws111{word-spacing:-15.652508px;}
.ws115{word-spacing:-15.551439px;}
.ws10a{word-spacing:-15.511890px;}
.ws10e{word-spacing:-15.476736px;}
.ws108{word-spacing:-15.467947px;}
.ws114{word-spacing:-15.459159px;}
.ws112{word-spacing:-15.441581px;}
.ws113{word-spacing:-15.432793px;}
.ws10c{word-spacing:-15.410821px;}
.ws107{word-spacing:-15.393244px;}
.ws10d{word-spacing:-15.380061px;}
.ws10b{word-spacing:-15.375667px;}
.ws116{word-spacing:-15.371273px;}
.ws10f{word-spacing:-15.344907px;}
.ws110{word-spacing:-15.336118px;}
.ws53{word-spacing:-15.042024px;}
.wsb5{word-spacing:-15.005952px;}
.ws54{word-spacing:-14.957856px;}
.ws57{word-spacing:-14.943900px;}
.wsb3{word-spacing:-13.516200px;}
.wscb{word-spacing:-13.449600px;}
.wsff{word-spacing:-12.881061px;}
.ws100{word-spacing:-12.688200px;}
.wsc5{word-spacing:-12.425400px;}
.wsc6{word-spacing:-12.366000px;}
.wsbb{word-spacing:-12.349800px;}
.wsc4{word-spacing:-12.339000px;}
.wsbe{word-spacing:-12.322800px;}
.wsba{word-spacing:-12.295800px;}
.wsbf{word-spacing:-12.285000px;}
.wsb6{word-spacing:-12.268800px;}
.wsc8{word-spacing:-12.263400px;}
.wsb8{word-spacing:-12.258000px;}
.wsbc{word-spacing:-12.252600px;}
.wsc7{word-spacing:-12.236400px;}
.wsb7{word-spacing:-12.231000px;}
.wsb9{word-spacing:-12.204000px;}
.wsc2{word-spacing:-12.187800px;}
.wsc1{word-spacing:-12.177000px;}
.wsc3{word-spacing:-12.171600px;}
.ws51{word-spacing:-12.151944px;}
.wsc9{word-spacing:-12.150000px;}
.wsc0{word-spacing:-12.096000px;}
.wsbd{word-spacing:-12.074400px;}
.ws52{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws126{word-spacing:-3.798141px;}
.ws125{word-spacing:-3.708923px;}
.wsd7{word-spacing:-3.480948px;}
.wsd6{word-spacing:-3.408804px;}
.wsce{word-spacing:-3.227882px;}
.wse5{word-spacing:-3.222432px;}
.ws8c{word-spacing:-3.174336px;}
.wse4{word-spacing:-3.150288px;}
.wsf9{word-spacing:-3.114216px;}
.ws8d{word-spacing:-3.108204px;}
.wsf8{word-spacing:-3.102192px;}
.ws14f{word-spacing:-2.982433px;}
.ws65{word-spacing:-2.807604px;}
.ws8b{word-spacing:-2.795580px;}
.ws184{word-spacing:-2.689902px;}
.wscc{word-spacing:-2.570351px;}
.wsa5{word-spacing:-2.343209px;}
.ws173{word-spacing:-2.331248px;}
.ws168{word-spacing:-2.211697px;}
.ws134{word-spacing:-2.192216px;}
.ws135{word-spacing:-2.166725px;}
.ws178{word-spacing:-2.151922px;}
.ws11f{word-spacing:-2.092146px;}
.ws5f{word-spacing:-2.074140px;}
.ws188{word-spacing:-2.044339px;}
.wscd{word-spacing:-2.032370px;}
.ws60{word-spacing:-2.001996px;}
.ws61{word-spacing:-1.959912px;}
.ws153{word-spacing:-1.848089px;}
.ws6e{word-spacing:-1.737468px;}
.ws6b{word-spacing:-1.707408px;}
.ws8e{word-spacing:-1.665324px;}
.ws59{word-spacing:-1.613941px;}
.ws99{word-spacing:-1.554166px;}
.ws11e{word-spacing:-1.434614px;}
.ws74{word-spacing:-1.364724px;}
.ws13c{word-spacing:-1.338271px;}
.ws4e{word-spacing:-1.315063px;}
.ws3e{word-spacing:-1.255288px;}
.ws13d{word-spacing:-1.249053px;}
.ws2c{word-spacing:-1.195512px;}
.ws11d{word-spacing:-1.135736px;}
.ws143{word-spacing:-1.127971px;}
.wsdc{word-spacing:-1.046088px;}
.ws177{word-spacing:-1.016185px;}
.ws73{word-spacing:-0.997992px;}
.wsdb{word-spacing:-0.901800px;}
.ws47{word-spacing:-0.896634px;}
.ws18{word-spacing:-0.806976px;}
.ws1a0{word-spacing:-0.753178px;}
.ws2a{word-spacing:-0.717307px;}
.ws14c{word-spacing:-0.700999px;}
.wsfc{word-spacing:-0.691380px;}
.ws9c{word-spacing:-0.657532px;}
.ws69{word-spacing:-0.655308px;}
.ws19a{word-spacing:-0.645581px;}
.ws142{word-spacing:-0.630899px;}
.ws78{word-spacing:-0.613224px;}
.ws58{word-spacing:-0.597756px;}
.ws3a{word-spacing:-0.537980px;}
.ws1a2{word-spacing:-0.430387px;}
.ws17b{word-spacing:-0.418429px;}
.ws4a{word-spacing:-0.358654px;}
.ws62{word-spacing:-0.336672px;}
.ws161{word-spacing:-0.331381px;}
.ws1a{word-spacing:-0.322790px;}
.ws4d{word-spacing:-0.298878px;}
.ws149{word-spacing:-0.293145px;}
.ws121{word-spacing:-0.289291px;}
.ws5c{word-spacing:-0.272916px;}
.ws19{word-spacing:-0.268992px;}
.wsd2{word-spacing:-0.258516px;}
.wsda{word-spacing:-0.252504px;}
.ws124{word-spacing:-0.242163px;}
.ws3d{word-spacing:-0.239102px;}
.ws1ae{word-spacing:-0.215194px;}
.ws7e{word-spacing:-0.205200px;}
.ws22{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.wsd3{word-spacing:-0.126252px;}
.ws29{word-spacing:-0.119551px;}
.ws79{word-spacing:-0.114228px;}
.ws1e{word-spacing:-0.107597px;}
.ws122{word-spacing:-0.081204px;}
.ws5d{word-spacing:-0.076608px;}
.ws55{word-spacing:-0.060120px;}
.ws25{word-spacing:-0.059776px;}
.wsa3{word-spacing:-0.053798px;}
.ws160{word-spacing:-0.050982px;}
.ws2f{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws15d{word-spacing:0.006373px;}
.wse{word-spacing:0.047821px;}
.ws11{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.ws136{word-spacing:0.076473px;}
.ws155{word-spacing:0.082845px;}
.ws148{word-spacing:0.089218px;}
.ws137{word-spacing:0.101964px;}
.ws7b{word-spacing:0.102204px;}
.ws14{word-spacing:0.107597px;}
.ws15c{word-spacing:0.108336px;}
.ws23{word-spacing:0.119551px;}
.ws154{word-spacing:0.121082px;}
.ws166{word-spacing:0.125928px;}
.ws164{word-spacing:0.127454px;}
.ws7f{word-spacing:0.129600px;}
.ws7a{word-spacing:0.132264px;}
.ws94{word-spacing:0.138276px;}
.ws157{word-spacing:0.140200px;}
.wsee{word-spacing:0.140400px;}
.ws139{word-spacing:0.143100px;}
.ws17{word-spacing:0.161395px;}
.ws159{word-spacing:0.171720px;}
.ws133{word-spacing:0.172063px;}
.ws6a{word-spacing:0.174348px;}
.ws7c{word-spacing:0.178200px;}
.ws24{word-spacing:0.179327px;}
.ws138{word-spacing:0.188892px;}
.wsef{word-spacing:0.194400px;}
.ws158{word-spacing:0.194616px;}
.ws89{word-spacing:0.204408px;}
.ws7d{word-spacing:0.205200px;}
.ws1b{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws187{word-spacing:0.268992px;}
.ws2b{word-spacing:0.298878px;}
.wsc{word-spacing:0.322790px;}
.ws120{word-spacing:0.358654px;}
.wsca{word-spacing:0.376589px;}
.wsfd{word-spacing:0.402804px;}
.ws90{word-spacing:0.408816px;}
.ws3f{word-spacing:0.418429px;}
.ws1b9{word-spacing:0.430387px;}
.ws141{word-spacing:0.446090px;}
.ws8f{word-spacing:0.450900px;}
.ws83{word-spacing:0.462924px;}
.ws40{word-spacing:0.478205px;}
.ws1a7{word-spacing:0.484186px;}
.ws34{word-spacing:0.537980px;}
.ws140{word-spacing:0.548054px;}
.ws71{word-spacing:0.553104px;}
.ws37{word-spacing:0.597756px;}
.ws181{word-spacing:0.657532px;}
.ws11a{word-spacing:0.717307px;}
.wsdf{word-spacing:0.763524px;}
.wsf6{word-spacing:0.769536px;}
.ws16f{word-spacing:0.777083px;}
.wsd4{word-spacing:0.787572px;}
.ws76{word-spacing:0.805608px;}
.wsf2{word-spacing:0.817632px;}
.ws75{word-spacing:0.829656px;}
.ws82{word-spacing:0.835668px;}
.ws145{word-spacing:0.892181px;}
.wsd0{word-spacing:0.896634px;}
.ws144{word-spacing:0.917672px;}
.ws18a{word-spacing:1.075968px;}
.wsf3{word-spacing:1.088172px;}
.ws15{word-spacing:1.129766px;}
.wsfb{word-spacing:1.130256px;}
.ws5a{word-spacing:1.135736px;}
.wsd5{word-spacing:1.136268px;}
.ws91{word-spacing:1.148292px;}
.wsf5{word-spacing:1.190376px;}
.ws185{word-spacing:1.195512px;}
.ws84{word-spacing:1.202400px;}
.wsfa{word-spacing:1.232460px;}
.ws31{word-spacing:1.255288px;}
.ws85{word-spacing:1.256508px;}
.ws96{word-spacing:1.315063px;}
.ws26{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws27{word-spacing:1.434614px;}
.ws19e{word-spacing:1.452557px;}
.ws68{word-spacing:1.490976px;}
.ws66{word-spacing:1.545084px;}
.ws67{word-spacing:1.563120px;}
.ws14a{word-spacing:1.586807px;}
.ws48{word-spacing:1.613941px;}
.wsd9{word-spacing:1.647288px;}
.ws14b{word-spacing:1.663280px;}
.ws4f{word-spacing:1.673717px;}
.ws28{word-spacing:1.793268px;}
.wsea{word-spacing:1.803600px;}
.wse9{word-spacing:1.815624px;}
.wse8{word-spacing:1.821636px;}
.wsd8{word-spacing:1.833660px;}
.ws16c{word-spacing:1.853044px;}
.wsf1{word-spacing:1.881756px;}
.wsf0{word-spacing:1.887768px;}
.wse7{word-spacing:1.905804px;}
.wsb1{word-spacing:1.912819px;}
.ws156{word-spacing:1.924561px;}
.ws8a{word-spacing:1.929852px;}
.ws147{word-spacing:1.930934px;}
.wsf4{word-spacing:1.935864px;}
.ws132{word-spacing:1.937307px;}
.ws38{word-spacing:1.972595px;}
.ws36{word-spacing:2.032370px;}
.ws131{word-spacing:2.039270px;}
.ws146{word-spacing:2.045643px;}
.ws171{word-spacing:2.092146px;}
.ws129{word-spacing:2.096625px;}
.ws97{word-spacing:2.151922px;}
.ws63{word-spacing:2.200392px;}
.wsb0{word-spacing:2.211697px;}
.ws1aa{word-spacing:2.259533px;}
.ws172{word-spacing:2.271473px;}
.ws42{word-spacing:2.331248px;}
.wsf7{word-spacing:2.374740px;}
.ws43{word-spacing:2.391024px;}
.ws3b{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws17e{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws6c{word-spacing:2.567124px;}
.wsae{word-spacing:2.570351px;}
.wsa6{word-spacing:2.689902px;}
.ws1c{word-spacing:2.743718px;}
.ws6d{word-spacing:2.789568px;}
.ws191{word-spacing:2.797517px;}
.ws9f{word-spacing:2.809453px;}
.ws1b1{word-spacing:2.851315px;}
.ws11c{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws87{word-spacing:2.915820px;}
.ws80{word-spacing:2.939868px;}
.ws88{word-spacing:2.957904px;}
.ws1b0{word-spacing:2.958912px;}
.wse2{word-spacing:2.987964px;}
.wsad{word-spacing:2.988780px;}
.ws81{word-spacing:3.006000px;}
.wse3{word-spacing:3.030048px;}
.ws175{word-spacing:3.048556px;}
.ws18b{word-spacing:3.066509px;}
.ws167{word-spacing:3.108331px;}
.ws1be{word-spacing:3.120307px;}
.ws17c{word-spacing:3.168107px;}
.ws1a6{word-spacing:3.216547px;}
.ws18f{word-spacing:3.219802px;}
.ws1ba{word-spacing:3.223171px;}
.wsa8{word-spacing:3.227904px;}
.ws19c{word-spacing:3.281702px;}
.ws9a{word-spacing:3.287658px;}
.ws6f{word-spacing:3.300588px;}
.ws199{word-spacing:3.335501px;}
.wsa7{word-spacing:3.347434px;}
.ws70{word-spacing:3.348684px;}
.ws10{word-spacing:3.467780px;}
.ws1c2{word-spacing:3.496896px;}
.ws9e{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.wse1{word-spacing:3.643272px;}
.ws11b{word-spacing:3.706087px;}
.ws77{word-spacing:3.811608px;}
.ws4c{word-spacing:3.825638px;}
.ws13{word-spacing:3.927283px;}
.ws170{word-spacing:3.945190px;}
.ws1c1{word-spacing:3.981082px;}
.ws98{word-spacing:4.004965px;}
.ws4b{word-spacing:4.124516px;}
.ws17d{word-spacing:4.184292px;}
.ws197{word-spacing:4.250074px;}
.ws1a9{word-spacing:4.357670px;}
.ws9b{word-spacing:4.363619px;}
.ws86{word-spacing:4.376736px;}
.wsde{word-spacing:4.400784px;}
.ws183{word-spacing:4.423394px;}
.wsdd{word-spacing:4.521024px;}
.ws41{word-spacing:4.542946px;}
.ws1d{word-spacing:4.626662px;}
.ws130{word-spacing:4.677576px;}
.ws128{word-spacing:4.703067px;}
.ws127{word-spacing:4.709440px;}
.ws16d{word-spacing:4.722272px;}
.ws12f{word-spacing:4.766795px;}
.ws45{word-spacing:4.782048px;}
.ws39{word-spacing:4.841824px;}
.ws176{word-spacing:4.901599px;}
.ws169{word-spacing:5.021150px;}
.ws12b{word-spacing:5.059940px;}
.ws5b{word-spacing:5.080926px;}
.ws180{word-spacing:5.140702px;}
.ws12a{word-spacing:5.193767px;}
.ws8{word-spacing:5.481407px;}
.ws117{word-spacing:5.499355px;}
.ws119{word-spacing:5.559131px;}
.ws189{word-spacing:5.567058px;}
.ws16b{word-spacing:5.618906px;}
.ws3c{word-spacing:5.678682px;}
.ws72{word-spacing:5.783544px;}
.ws16e{word-spacing:5.798233px;}
.ws12{word-spacing:5.864026px;}
.wscf{word-spacing:5.917784px;}
.ws118{word-spacing:6.037336px;}
.wsab{word-spacing:6.097111px;}
.ws13b{word-spacing:6.136929px;}
.ws13a{word-spacing:6.156048px;}
.ws14e{word-spacing:6.168793px;}
.ws95{word-spacing:6.216662px;}
.ws14d{word-spacing:6.226147px;}
.ws194{word-spacing:6.240614px;}
.wsaf{word-spacing:6.336214px;}
.ws174{word-spacing:6.395989px;}
.wsfe{word-spacing:6.601176px;}
.ws44{word-spacing:6.635092px;}
.ws33{word-spacing:6.814418px;}
.ws32{word-spacing:6.874194px;}
.ws1ac{word-spacing:6.886195px;}
.ws49{word-spacing:6.993745px;}
.ws56{word-spacing:7.173072px;}
.ws179{word-spacing:7.232848px;}
.ws9d{word-spacing:7.292623px;}
.ws12c{word-spacing:7.328628px;}
.ws186{word-spacing:7.352399px;}
.ws12d{word-spacing:7.507064px;}
.ws16a{word-spacing:7.531726px;}
.ws1a5{word-spacing:7.585574px;}
.ws12e{word-spacing:7.628146px;}
.ws17f{word-spacing:7.890379px;}
.wsac{word-spacing:8.009930px;}
.ws182{word-spacing:8.368584px;}
.wse6{word-spacing:8.765496px;}
.ws1b5{word-spacing:8.984333px;}
.wsa0{word-spacing:9.026116px;}
.ws1c0{word-spacing:9.629914px;}
.ws6{word-spacing:9.833058px;}
.wsd1{word-spacing:10.118196px;}
.ws17a{word-spacing:10.221628px;}
.ws3{word-spacing:10.419488px;}
.ws64{word-spacing:10.557072px;}
.ws20{word-spacing:11.190067px;}
.ws93{word-spacing:11.248452px;}
.ws92{word-spacing:11.272500px;}
.ws13e{word-spacing:11.439032px;}
.ws13f{word-spacing:11.579232px;}
.ws5e{word-spacing:11.620476px;}
.ws7{word-spacing:11.841512px;}
.ws2d{word-spacing:11.906882px;}
.ws1b3{word-spacing:12.212237px;}
.wse0{word-spacing:12.264480px;}
.ws123{word-spacing:12.317705px;}
.ws1a1{word-spacing:12.642624px;}
.ws19b{word-spacing:12.750221px;}
.ws1af{word-spacing:13.180608px;}
.ws196{word-spacing:13.288205px;}
.ws1a4{word-spacing:13.342003px;}
.ws1bc{word-spacing:13.385981px;}
.ws1b7{word-spacing:13.388016px;}
.ws1b8{word-spacing:13.388179px;}
.ws1bb{word-spacing:13.388563px;}
.ws1b6{word-spacing:13.388803px;}
.ws19d{word-spacing:13.388832px;}
.ws1ab{word-spacing:13.388986px;}
.ws19f{word-spacing:13.389120px;}
.ws1bd{word-spacing:13.389446px;}
.ws1a3{word-spacing:13.395120px;}
.ws190{word-spacing:13.395802px;}
.ws193{word-spacing:13.396714px;}
.ws18e{word-spacing:13.449600px;}
.ws1b4{word-spacing:13.557197px;}
.ws1a8{word-spacing:13.879987px;}
.ws1ad{word-spacing:14.471770px;}
.ws4{word-spacing:15.481836px;}
.ws9{word-spacing:16.067635px;}
.ws192{word-spacing:16.193318px;}
.ws1b2{word-spacing:16.247117px;}
.ws50{word-spacing:16.378514px;}
.ws18c{word-spacing:16.462310px;}
.ws1bf{word-spacing:16.516109px;}
.ws198{word-spacing:16.731302px;}
.ws1f{word-spacing:18.158961px;}
.ws195{word-spacing:18.345254px;}
.ws46{word-spacing:18.351109px;}
.ws5{word-spacing:22.339429px;}
.ws18d{word-spacing:43.146317px;}
.wsed{word-spacing:46.974600px;}
.wsec{word-spacing:46.990800px;}
.wseb{word-spacing:47.001600px;}
.ws102{word-spacing:107.248937px;}
.ws103{word-spacing:107.626837px;}
.ws105{word-spacing:117.412693px;}
.ws104{word-spacing:117.786199px;}
.ws106{word-spacing:127.202943px;}
.wsaa{word-spacing:153.971021px;}
.wsa2{word-spacing:178.406602px;}
.wsa1{word-spacing:215.527498px;}
.wsa4{word-spacing:240.705149px;}
.wsa9{word-spacing:285.292915px;}
.ws152{word-spacing:304.337549px;}
.ws150{word-spacing:332.743104px;}
.ws151{word-spacing:344.686349px;}
.ws15a{word-spacing:1556.135379px;}
.ws15f{word-spacing:1635.877224px;}
.ws165{word-spacing:1675.910651px;}
.ws15e{word-spacing:1679.734283px;}
.ws163{word-spacing:1709.539494px;}
.ws162{word-spacing:1729.747390px;}
.ws15b{word-spacing:1937.593652px;}
._3e{margin-left:-1596.232533px;}
._4c{margin-left:-1448.463129px;}
._4b{margin-left:-1436.405943px;}
._48{margin-left:-1418.378746px;}
._4d{margin-left:-1414.694086px;}
._49{margin-left:-1374.292269px;}
._3b{margin-left:-1272.850084px;}
._3c{margin-left:-1261.887778px;}
._3d{margin-left:-1249.295283px;}
._f{margin-left:-23.349575px;}
._60{margin-left:-20.694437px;}
._19{margin-left:-15.679296px;}
._5{margin-left:-12.050842px;}
._32{margin-left:-9.823608px;}
._31{margin-left:-8.591148px;}
._8{margin-left:-6.635092px;}
._7{margin-left:-5.378587px;}
._0{margin-left:-3.849538px;}
._1a{margin-left:-2.561238px;}
._4{margin-left:-1.464498px;}
._17{width:1.129968px;}
._15{width:2.779570px;}
._9{width:3.952388px;}
._1{width:12.971268px;}
._62{width:14.125032px;}
._a{width:15.135199px;}
._d{width:16.755185px;}
._c{width:18.452851px;}
._e{width:19.851610px;}
._13{width:21.453330px;}
._10{width:22.744620px;}
._14{width:24.239002px;}
._2{width:25.314894px;}
._5f{width:26.387870px;}
._b{width:27.544781px;}
._16{width:29.678581px;}
._3{width:31.256572px;}
._61{width:32.277787px;}
._6{width:33.677798px;}
._1b{width:36.044687px;}
._3a{width:37.120648px;}
._63{width:40.091911px;}
._5e{width:41.753252px;}
._1f{width:72.215995px;}
._38{width:122.716477px;}
._36{width:123.867694px;}
._35{width:132.111310px;}
._37{width:133.253739px;}
._39{width:141.923471px;}
._33{width:143.443800px;}
._25{width:170.612615px;}
._27{width:185.389286px;}
._24{width:201.636403px;}
._2a{width:205.079501px;}
._29{width:212.288486px;}
._21{width:229.513829px;}
._1e{width:230.902733px;}
._42{width:233.470970px;}
._23{width:252.422093px;}
._44{width:257.953415px;}
._46{width:260.739839px;}
._28{width:264.150144px;}
._47{width:265.184522px;}
._2b{width:266.517274px;}
._30{width:267.532337px;}
._2d{width:268.878550px;}
._20{width:270.455664px;}
._2c{width:271.789517px;}
._41{width:288.732300px;}
._54{width:290.027174px;}
._2f{width:291.694925px;}
._2e{width:308.474172px;}
._40{width:313.525079px;}
._52{width:316.926374px;}
._26{width:318.647923px;}
._3f{width:337.257088px;}
._5a{width:344.632550px;}
._22{width:360.144378px;}
._50{width:384.981350px;}
._51{width:448.463462px;}
._1c{width:507.982381px;}
._55{width:596.731853px;}
._45{width:685.757748px;}
._11{width:725.012307px;}
._53{width:746.130010px;}
._1d{width:826.881408px;}
._43{width:862.804655px;}
._4e{width:1312.680960px;}
._57{width:1401.717312px;}
._56{width:1438.838208px;}
._5c{width:1439.853271px;}
._58{width:1441.199484px;}
._5b{width:1464.015859px;}
._59{width:1480.795106px;}
._4f{width:1656.452736px;}
._4a{width:1681.759580px;}
._18{width:2089.406592px;}
._34{width:2214.838786px;}
._5d{width:2500.851000px;}
._12{width:2524.761000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:43.941876px;}
.fs15{font-size:43.943032px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs11{font-size:50.752800px;}
.fsb{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs13{font-size:57.240000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs12{font-size:63.727200px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.yc4{bottom:-326.126958px;}
.y1d0{bottom:-324.198933px;}
.yc3{bottom:-306.957696px;}
.y1cf{bottom:-303.591655px;}
.y181{bottom:-299.091924px;}
.yc2{bottom:-287.698254px;}
.y1ce{bottom:-282.126741px;}
.y180{bottom:-278.676915px;}
.yc1{bottom:-268.438812px;}
.y1cd{bottom:-260.661827px;}
.y17f{bottom:-258.357497px;}
.yc0{bottom:-249.269550px;}
.y1cc{bottom:-239.196913px;}
.y17e{bottom:-237.942489px;}
.ybf{bottom:-230.005899px;}
.y141{bottom:-225.334899px;}
.y1cb{bottom:-217.731999px;}
.y17d{bottom:-217.623071px;}
.ybe{bottom:-210.836637px;}
.y140{bottom:-206.075457px;}
.y17c{bottom:-197.208063px;}
.y1ca{bottom:-196.267085px;}
.ybd{bottom:-191.577195px;}
.y13f{bottom:-186.816015px;}
.y17b{bottom:-176.793054px;}
.y1c9{bottom:-174.802170px;}
.ybc{bottom:-172.317753px;}
.y13e{bottom:-167.646753px;}
.y17a{bottom:-156.473636px;}
.y1c8{bottom:-153.432847px;}
.ybb{bottom:-153.146988px;}
.y13d{bottom:-148.387311px;}
.y179{bottom:-136.058628px;}
.yba{bottom:-133.887546px;}
.y1c7{bottom:-131.967933px;}
.y13c{bottom:-129.218049px;}
.y178{bottom:-115.643619px;}
.yb9{bottom:-114.718284px;}
.y1c6{bottom:-110.502933px;}
.y13b{bottom:-109.958607px;}
.yb8{bottom:-95.458842px;}
.y177{bottom:-95.324202px;}
.y13a{bottom:-90.699165px;}
.y1c5{bottom:-88.274733px;}
.yb7{bottom:-76.199400px;}
.y176{bottom:-74.909193px;}
.y139{bottom:-71.528400px;}
.yb6{bottom:-57.029400px;}
.y1c4{bottom:-56.411133px;}
.y175{bottom:-35.890593px;}
.y138{bottom:-34.719000px;}
.yb5{bottom:-20.219400px;}
.y1c3{bottom:-19.014174px;}
.y137{bottom:-17.348550px;}
.y174{bottom:-12.130574px;}
.y0{bottom:0.000000px;}
.yb4{bottom:2.289081px;}
.y195{bottom:4.559007px;}
.y1c2{bottom:4.835826px;}
.y136{bottom:5.067921px;}
.y197{bottom:7.898007px;}
.y198{bottom:8.470407px;}
.y19b{bottom:9.424407px;}
.y196{bottom:12.858966px;}
.y199{bottom:15.053007px;}
.y194{bottom:15.243966px;}
.y19a{bottom:15.625407px;}
.y193{bottom:21.444807px;}
.y162{bottom:21.981450px;}
.y66{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y161{bottom:47.271450px;}
.y5{bottom:66.525004px;}
.y19c{bottom:70.003566px;}
.y15f{bottom:73.456500px;}
.y15e{bottom:84.616950px;}
.y15d{bottom:91.187400px;}
.y182{bottom:92.422566px;}
.y4{bottom:97.125005px;}
.y15c{bottom:101.896950px;}
.y65{bottom:103.621500px;}
.y37{bottom:104.646000px;}
.y121{bottom:107.895000px;}
.yef{bottom:110.181000px;}
.y1ba{bottom:110.409000px;}
.y22f{bottom:111.975000px;}
.y1de{bottom:114.657000px;}
.y15b{bottom:116.567400px;}
.y1eb{bottom:119.148000px;}
.y9d{bottom:119.596500px;}
.y64{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y120{bottom:126.724500px;}
.yee{bottom:129.010500px;}
.y22e{bottom:129.235500px;}
.y1b9{bottom:129.238500px;}
.y15a{bottom:134.836950px;}
.y1dd{bottom:136.489500px;}
.y18b{bottom:137.260407px;}
.y183{bottom:137.260856px;}
.y1e6{bottom:137.977500px;}
.y9c{bottom:138.426000px;}
.y22{bottom:139.264499px;}
.y35{bottom:140.422500px;}
.y63{bottom:141.279000px;}
.y11f{bottom:145.554000px;}
.y22d{bottom:146.496000px;}
.yed{bottom:147.840000px;}
.y1b8{bottom:148.068000px;}
.y1dc{bottom:152.928000px;}
.y1f5{bottom:153.669000px;}
.y159{bottom:156.166950px;}
.y1e5{bottom:156.807000px;}
.y9b{bottom:157.255500px;}
.y34{bottom:158.310000px;}
.y62{bottom:160.108500px;}
.y22c{bottom:163.756500px;}
.y11e{bottom:164.383500px;}
.yec{bottom:166.669500px;}
.y1b7{bottom:166.897500px;}
.y1db{bottom:169.366500px;}
.y19d{bottom:170.841207px;}
.y1e4{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.y61{bottom:178.938000px;}
.y158{bottom:180.017400px;}
.y1f4{bottom:180.210000px;}
.y22b{bottom:181.015500px;}
.y18c{bottom:182.003007px;}
.y184{bottom:182.003573px;}
.y11d{bottom:183.213000px;}
.yeb{bottom:185.499000px;}
.y1b6{bottom:185.727000px;}
.y1da{bottom:185.805000px;}
.y32{bottom:194.086500px;}
.y1e3{bottom:194.466000px;}
.y99{bottom:194.914500px;}
.y19{bottom:196.933500px;}
.y60{bottom:197.767500px;}
.y22a{bottom:198.276000px;}
.y11c{bottom:202.042500px;}
.y1d9{bottom:202.243500px;}
.yea{bottom:204.328500px;}
.y1b5{bottom:204.556500px;}
.y157{bottom:205.937400px;}
.y1f3{bottom:206.749500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y31{bottom:211.974000px;}
.y1e2{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.y229{bottom:215.536500px;}
.y5f{bottom:216.597000px;}
.y1d8{bottom:218.682000px;}
.y11b{bottom:220.872000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ye9{bottom:223.158000px;}
.y1b4{bottom:223.386000px;}
.y18d{bottom:226.841007px;}
.y185{bottom:226.841863px;}
.y30{bottom:229.863000px;}
.y1e1{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.y228{bottom:232.797000px;}
.y156{bottom:233.207400px;}
.y1f2{bottom:233.290500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1d7{bottom:235.120500px;}
.y5e{bottom:235.426500px;}
.y11a{bottom:239.701500px;}
.ye8{bottom:241.987500px;}
.y1b3{bottom:242.215500px;}
.y227{bottom:250.057500px;}
.y1f1{bottom:250.864500px;}
.y1e0{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.y1d6{bottom:251.559000px;}
.y5d{bottom:254.256000px;}
.y119{bottom:258.531000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y142{bottom:260.481450px;}
.y1b2{bottom:261.045000px;}
.y155{bottom:261.196950px;}
.ye7{bottom:265.300500px;}
.y226{bottom:267.318000px;}
.y1d5{bottom:267.996000px;}
.y1f0{bottom:268.438500px;}
.y1ea{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.y18e{bottom:271.679007px;}
.y186{bottom:271.680154px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y5c{bottom:273.085500px;}
.y1df{bottom:274.267500px;}
.y118{bottom:277.359000px;}
.y143{bottom:279.561000px;}
.y1b1{bottom:279.873000px;}
.ye6{bottom:284.130000px;}
.y1d4{bottom:284.434500px;}
.y225{bottom:284.578500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1e9{bottom:288.613500px;}
.y94{bottom:289.062000px;}
.y154{bottom:289.186500px;}
.y5b{bottom:291.915000px;}
.y1ef{bottom:294.979500px;}
.y117{bottom:296.188500px;}
.y2f{bottom:297.166500px;}
.y144{bottom:298.640550px;}
.y1b0{bottom:298.702500px;}
.y224{bottom:301.839000px;}
.ye5{bottom:302.959500px;}
.y1e8{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.y1d3{bottom:308.076000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5a{bottom:310.744500px;}
.y1ee{bottom:312.553500px;}
.y116{bottom:315.018000px;}
.y2e{bottom:315.054000px;}
.y153{bottom:316.456500px;}
.y18f{bottom:316.517007px;}
.y187{bottom:316.518444px;}
.y1af{bottom:317.532000px;}
.y145{bottom:317.720100px;}
.y223{bottom:319.099500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yb3{bottom:326.018748px;}
.ye4{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.y59{bottom:329.574000px;}
.y1ed{bottom:330.127500px;}
.y2d{bottom:332.941500px;}
.y222{bottom:336.358500px;}
.y1ae{bottom:336.361500px;}
.y146{bottom:336.799650px;}
.y152{bottom:342.376500px;}
.y1d2{bottom:342.684000px;}
.ye3{bottom:345.102000px;}
.yb2{bottom:345.278190px;}
.y91{bottom:345.549000px;}
.y1ec{bottom:347.701500px;}
.y10{bottom:348.133500px;}
.yce{bottom:348.403500px;}
.y2c{bottom:350.830500px;}
.y115{bottom:352.038000px;}
.y58{bottom:352.887000px;}
.y221{bottom:353.619000px;}
.y1ad{bottom:355.191000px;}
.y147{bottom:355.969650px;}
.y190{bottom:361.355007px;}
.y188{bottom:361.356734px;}
.ye2{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.yb1{bottom:364.447452px;}
.y151{bottom:366.226950px;}
.ycd{bottom:367.233000px;}
.y220{bottom:370.879500px;}
.y114{bottom:370.881000px;}
.y19e{bottom:372.516807px;}
.y1ac{bottom:374.020500px;}
.y148{bottom:375.049200px;}
.y1d1{bottom:376.861500px;}
.y2b{bottom:377.685000px;}
.ye1{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.yb0{bottom:383.706894px;}
.ycc{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.y113{bottom:387.319500px;}
.y150{bottom:387.556950px;}
.y21f{bottom:388.140000px;}
.y1ab{bottom:392.850000px;}
.y149{bottom:394.128750px;}
.y2a{bottom:395.572500px;}
.ye0{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.y1bb{bottom:402.279000px;}
.yaf{bottom:402.966336px;}
.y112{bottom:403.758000px;}
.ycb{bottom:404.892000px;}
.y21e{bottom:405.400500px;}
.y14f{bottom:405.826500px;}
.y191{bottom:406.193007px;}
.y189{bottom:406.195024px;}
.ye{bottom:408.044999px;}
.y1aa{bottom:411.679500px;}
.y14a{bottom:413.208300px;}
.y29{bottom:413.460000px;}
.y111{bottom:420.196500px;}
.ydf{bottom:420.418500px;}
.y14e{bottom:420.496950px;}
.y8d{bottom:420.867000px;}
.yae{bottom:422.137101px;}
.y21d{bottom:422.661000px;}
.yca{bottom:423.721500px;}
.y57{bottom:428.037000px;}
.y1a9{bottom:430.509000px;}
.y14d{bottom:431.206500px;}
.y28{bottom:431.349000px;}
.y14b{bottom:432.287850px;}
.y110{bottom:436.635000px;}
.y160{bottom:437.776950px;}
.yde{bottom:439.248000px;}
.y8c{bottom:439.696500px;}
.y21c{bottom:439.921500px;}
.yad{bottom:441.396543px;}
.yc9{bottom:442.551000px;}
.y56{bottom:447.493500px;}
.y14c{bottom:448.937400px;}
.y27{bottom:449.236500px;}
.y1a8{bottom:449.338500px;}
.y192{bottom:451.031007px;}
.y18a{bottom:451.033315px;}
.y10f{bottom:453.073500px;}
.y21b{bottom:457.182000px;}
.ydd{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.yac{bottom:460.565805px;}
.yc8{bottom:461.380500px;}
.y26{bottom:467.124000px;}
.y1a7{bottom:468.168000px;}
.y10e{bottom:469.512000px;}
.y19f{bottom:473.450007px;}
.y21a{bottom:474.441000px;}
.ydc{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.yab{bottom:479.825247px;}
.yc7{bottom:480.210000px;}
.y55{bottom:484.884000px;}
.y25{bottom:485.013000px;}
.y10d{bottom:485.950500px;}
.y1a6{bottom:486.997500px;}
.y135{bottom:488.548452px;}
.y219{bottom:491.701500px;}
.y1a0{bottom:494.914515px;}
.ydb{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.yc6{bottom:499.039500px;}
.yaa{bottom:499.084689px;}
.y10c{bottom:502.389000px;}
.yd{bottom:502.864502px;}
.y24{bottom:502.900500px;}
.y54{bottom:504.340500px;}
.y1a5{bottom:505.827000px;}
.y134{bottom:507.807894px;}
.y218{bottom:508.962000px;}
.y164{bottom:512.709000px;}
.yda{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.ya9{bottom:518.253951px;}
.y23{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.y53{bottom:523.798500px;}
.y1a4{bottom:524.656500px;}
.y10b{bottom:526.029000px;}
.y217{bottom:526.222500px;}
.y133{bottom:527.067336px;}
.yc5{bottom:530.581500px;}
.y163{bottom:531.942000px;}
.yd9{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.ya8{bottom:537.513393px;}
.yb{bottom:538.864499px;}
.y52{bottom:543.255000px;}
.y216{bottom:543.483000px;}
.y1a3{bottom:543.486000px;}
.y173{bottom:544.814883px;}
.y132{bottom:546.238101px;}
.yd8{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.y9e{bottom:553.011000px;}
.ya7{bottom:556.772835px;}
.ya{bottom:556.864499px;}
.y122{bottom:557.359500px;}
.y10a{bottom:557.649000px;}
.y215{bottom:560.743500px;}
.y1a2{bottom:562.315500px;}
.y51{bottom:562.711500px;}
.y172{bottom:565.229892px;}
.y131{bottom:565.497543px;}
.yd7{bottom:571.054500px;}
.y85{bottom:571.503000px;}
.ya6{bottom:575.942097px;}
.y214{bottom:578.004000px;}
.y50{bottom:582.169500px;}
.y130{bottom:584.666805px;}
.y171{bottom:585.644900px;}
.yd6{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y109{bottom:590.860500px;}
.y1e7{bottom:594.367500px;}
.y24a{bottom:595.189500px;}
.ya5{bottom:595.201539px;}
.y213{bottom:595.264500px;}
.y1a1{bottom:595.881000px;}
.y4f{bottom:601.626000px;}
.y12f{bottom:603.926247px;}
.y170{bottom:605.964318px;}
.yd5{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.y108{bottom:609.690000px;}
.y249{bottom:612.450000px;}
.y212{bottom:612.525000px;}
.ya4{bottom:614.370801px;}
.y4e{bottom:621.082500px;}
.y165{bottom:621.298500px;}
.y12e{bottom:623.185689px;}
.y16f{bottom:626.379327px;}
.yd4{bottom:627.543000px;}
.y82{bottom:627.991500px;}
.y107{bottom:628.518000px;}
.y248{bottom:629.710500px;}
.y211{bottom:629.784000px;}
.ya3{bottom:633.630243px;}
.y4d{bottom:640.540500px;}
.y12d{bottom:642.354951px;}
.y9{bottom:645.510000px;}
.yd3{bottom:646.372500px;}
.y16e{bottom:646.794335px;}
.y81{bottom:646.821000px;}
.y210{bottom:647.044500px;}
.y106{bottom:647.347500px;}
.ya2{bottom:652.889685px;}
.y4c{bottom:659.997000px;}
.y12c{bottom:661.614393px;}
.y20f{bottom:664.305000px;}
.yd2{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y105{bottom:666.177000px;}
.y8{bottom:666.771000px;}
.y16d{bottom:667.113753px;}
.y247{bottom:668.788500px;}
.ya1{bottom:672.060450px;}
.y4b{bottom:679.455000px;}
.y12b{bottom:680.873835px;}
.y20e{bottom:681.565500px;}
.yd1{bottom:684.031500px;}
.y7f{bottom:684.480000px;}
.y1c1{bottom:684.751467px;}
.y246{bottom:686.049000px;}
.y16c{bottom:687.528761px;}
.y104{bottom:689.490000px;}
.y20d{bottom:698.826000px;}
.y4a{bottom:698.911500px;}
.y12a{bottom:700.043097px;}
.yd0{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.y1c0{bottom:705.167067px;}
.y16b{bottom:707.848179px;}
.y20c{bottom:716.086500px;}
.y49{bottom:718.368000px;}
.y129{bottom:719.302539px;}
.y245{bottom:720.570000px;}
.y7d{bottom:722.139000px;}
.y1bf{bottom:725.581856px;}
.ycf{bottom:726.174000px;}
.y7{bottom:726.298500px;}
.y103{bottom:726.486000px;}
.ya0{bottom:726.780585px;}
.y16a{bottom:728.263188px;}
.y20b{bottom:733.347000px;}
.y9f{bottom:736.410450px;}
.y48{bottom:737.826000px;}
.y244{bottom:737.829000px;}
.y128{bottom:738.471801px;}
.y7c{bottom:740.968500px;}
.y1be{bottom:745.902867px;}
.y101{bottom:748.318500px;}
.y169{bottom:748.678196px;}
.y20a{bottom:750.607500px;}
.y3{bottom:752.599495px;}
.y243{bottom:755.089500px;}
.y100{bottom:756.537000px;}
.y47{bottom:757.282500px;}
.y127{bottom:757.731243px;}
.y7b{bottom:759.798000px;}
.y102{bottom:764.757000px;}
.y209{bottom:767.866500px;}
.y168{bottom:768.999207px;}
.y242{bottom:772.350000px;}
.y46{bottom:776.739000px;}
.y126{bottom:776.990685px;}
.y7a{bottom:778.627500px;}
.yfe{bottom:781.194000px;}
.y208{bottom:785.127000px;}
.yfd{bottom:789.414000px;}
.y241{bottom:789.610500px;}
.y125{bottom:796.161450px;}
.y45{bottom:796.197000px;}
.y79{bottom:797.457000px;}
.yff{bottom:797.632500px;}
.y207{bottom:802.387500px;}
.y1bd{bottom:803.906210px;}
.y240{bottom:806.871000px;}
.yfb{bottom:814.071000px;}
.y1bc{bottom:814.113867px;}
.y44{bottom:815.653500px;}
.y78{bottom:816.286500px;}
.y206{bottom:819.648000px;}
.yfa{bottom:822.291000px;}
.y23f{bottom:824.131500px;}
.y167{bottom:827.002550px;}
.yfc{bottom:830.509500px;}
.y77{bottom:835.114500px;}
.y205{bottom:836.908500px;}
.y166{bottom:837.210207px;}
.y23e{bottom:841.392000px;}
.yf9{bottom:846.948000px;}
.y124{bottom:850.881585px;}
.y43{bottom:852.636000px;}
.y76{bottom:853.944000px;}
.y204{bottom:854.169000px;}
.yf8{bottom:855.168000px;}
.y23d{bottom:858.652500px;}
.y123{bottom:860.511450px;}
.y42{bottom:868.776000px;}
.y203{bottom:871.429500px;}
.y75{bottom:872.773500px;}
.y23c{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.yf6{bottom:879.825000px;}
.y41{bottom:884.914500px;}
.yf5{bottom:888.043500px;}
.y202{bottom:888.690000px;}
.y40{bottom:889.254000px;}
.y74{bottom:891.603000px;}
.y23b{bottom:893.172000px;}
.yf7{bottom:896.263500px;}
.y3f{bottom:901.054500px;}
.y201{bottom:905.950500px;}
.y73{bottom:910.432500px;}
.yf3{bottom:912.702000px;}
.yf2{bottom:920.920500px;}
.y3e{bottom:921.534000px;}
.y200{bottom:923.209500px;}
.y23a{bottom:927.693000px;}
.yf4{bottom:929.140500px;}
.y72{bottom:929.262000px;}
.y3d{bottom:933.333000px;}
.y1ff{bottom:940.470000px;}
.y239{bottom:944.953500px;}
.y71{bottom:948.091500px;}
.yf1{bottom:952.780500px;}
.y3c{bottom:953.812500px;}
.y1fe{bottom:957.730500px;}
.y238{bottom:962.214000px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y1fd{bottom:974.991000px;}
.y237{bottom:979.474500px;}
.y6f{bottom:985.750500px;}
.yf0{bottom:987.388500px;}
.y1fc{bottom:992.251500px;}
.y236{bottom:996.735000px;}
.y3b{bottom:996.886500px;}
.y6e{bottom:1004.580000px;}
.y1fb{bottom:1009.512000px;}
.y235{bottom:1013.995500px;}
.y6d{bottom:1023.409500px;}
.y1fa{bottom:1026.772500px;}
.y234{bottom:1031.254500px;}
.y3a{bottom:1036.804500px;}
.y6c{bottom:1042.239000px;}
.y1f9{bottom:1044.033000px;}
.y233{bottom:1048.515000px;}
.y6b{bottom:1061.068500px;}
.y1f8{bottom:1061.292000px;}
.y39{bottom:1065.049500px;}
.y232{bottom:1065.775500px;}
.y1f7{bottom:1078.552500px;}
.y6a{bottom:1079.898000px;}
.y231{bottom:1083.036000px;}
.y38{bottom:1093.293000px;}
.y1f6{bottom:1095.813000px;}
.y69{bottom:1098.727500px;}
.y230{bottom:1100.296500px;}
.y68{bottom:1117.557000px;}
.y67{bottom:1177.662000px;}
.he{height:26.110157px;}
.h1c{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h25{height:33.600087px;}
.h26{height:33.600971px;}
.h27{height:33.869023px;}
.hf{height:34.813397px;}
.h16{height:34.951465px;}
.h13{height:35.052500px;}
.h15{height:35.255391px;}
.h22{height:37.048553px;}
.h21{height:37.370714px;}
.h1f{height:37.415039px;}
.h19{height:38.734848px;}
.h10{height:39.165235px;}
.h1e{height:39.418945px;}
.h2b{height:39.434227px;}
.h18{height:39.761719px;}
.h2a{height:41.784082px;}
.h24{height:42.147422px;}
.h11{height:43.038432px;}
.h12{height:43.516637px;}
.hb{height:43.815515px;}
.h17{height:43.886426px;}
.h6{height:45.900000px;}
.h23{height:46.519611px;}
.h29{height:46.924130px;}
.h3{height:48.195000px;}
.hd{height:54.405312px;}
.h2{height:55.080000px;}
.h1b{height:72.039235px;}
.h1a{height:72.045235px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h14{height:307.111500px;}
.h1d{height:471.271500px;}
.h20{height:511.204080px;}
.h28{height:662.947320px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:540.390000px;}
.w2{width:637.794021px;}
.w6{width:678.552375px;}
.w7{width:704.575428px;}
.w5{width:751.677750px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-193.417500px;}
.x3d{left:-66.814185px;}
.x4e{left:-56.199822px;}
.x1e{left:-15.905250px;}
.x0{left:0.000000px;}
.xb{left:2.152500px;}
.x46{left:10.459815px;}
.x44{left:15.897615px;}
.x42{left:17.328615px;}
.x45{left:22.194015px;}
.x43{left:26.105415px;}
.xc{left:34.013094px;}
.x5{left:53.574000px;}
.xf{left:62.541000px;}
.x1d{left:70.406250px;}
.x3c{left:82.104750px;}
.x50{left:85.848000px;}
.x47{left:91.740615px;}
.xe{left:93.817500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x41{left:117.402734px;}
.x40{left:119.979015px;}
.x37{left:140.065650px;}
.x4f{left:151.104378px;}
.x35{left:153.745200px;}
.x38{left:162.205650px;}
.x34{left:167.154750px;}
.x33{left:168.595200px;}
.x36{left:172.105200px;}
.x3f{left:174.261615px;}
.x20{left:179.664156px;}
.x39{left:184.706100px;}
.x10{left:194.578500px;}
.x32{left:196.764300px;}
.x4{left:203.484001px;}
.x1f{left:211.524750px;}
.x3a{left:221.246550px;}
.x31{left:231.233850px;}
.x30{left:246.174300px;}
.x8{left:248.526000px;}
.x6{left:249.591000px;}
.x15{left:254.359500px;}
.x12{left:258.556500px;}
.x16{left:266.650500px;}
.x7{left:269.914500px;}
.x2f{left:273.804750px;}
.x9{left:281.479500px;}
.x2e{left:285.414750px;}
.x3b{left:291.176550px;}
.x48{left:295.896615px;}
.x2d{left:333.384300px;}
.x22{left:344.814750px;}
.x24{left:348.953850px;}
.x49{left:350.847015px;}
.x23{left:355.794300px;}
.x2c{left:404.303850px;}
.x4a{left:411.903015px;}
.x25{left:431.573850px;}
.x3{left:454.959000px;}
.x26{left:457.493850px;}
.x4b{left:466.948815px;}
.x17{left:481.137000px;}
.x18{left:493.428000px;}
.x27{left:502.763400px;}
.x4c{left:515.221215px;}
.x28{left:520.943850px;}
.x29{left:535.614300px;}
.xd{left:537.654867px;}
.x2a{left:546.323850px;}
.x11{left:553.416000px;}
.x2b{left:555.054300px;}
.x19{left:612.741000px;}
.x1a{left:625.032000px;}
.x4d{left:648.495015px;}
.x3e{left:705.162396px;}
.x13{left:718.851000px;}
.x14{left:731.142000px;}
.x21{left:746.664894px;}
.x1b{left:759.397500px;}
.x1c{left:771.688500px;}
@media print{
.v5{vertical-align:-39.681600pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.ls59{letter-spacing:-1.068800pt;}
.ls2f{letter-spacing:-0.459584pt;}
.ls35{letter-spacing:-0.309952pt;}
.ls4f{letter-spacing:-0.272544pt;}
.ls7d{letter-spacing:-0.249244pt;}
.ls2c{letter-spacing:-0.160320pt;}
.ls83{letter-spacing:-0.158610pt;}
.ls7c{letter-spacing:-0.141616pt;}
.ls4e{letter-spacing:-0.128256pt;}
.ls7a{letter-spacing:-0.124622pt;}
.ls90{letter-spacing:-0.117181pt;}
.ls5b{letter-spacing:-0.115200pt;}
.ls8f{letter-spacing:-0.109369pt;}
.ls82{letter-spacing:-0.107628pt;}
.ls2e{letter-spacing:-0.106880pt;}
.ls9f{letter-spacing:-0.101964pt;}
.ls34{letter-spacing:-0.101536pt;}
.ls26{letter-spacing:-0.096192pt;}
.ls5c{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.090848pt;}
.ls94{letter-spacing:-0.085933pt;}
.ls79{letter-spacing:-0.084970pt;}
.ls8a{letter-spacing:-0.082027pt;}
.ls50{letter-spacing:-0.080160pt;}
.ls7e{letter-spacing:-0.079305pt;}
.ls8d{letter-spacing:-0.078121pt;}
.ls2b{letter-spacing:-0.074816pt;}
.ls80{letter-spacing:-0.067976pt;}
.ls87{letter-spacing:-0.066403pt;}
.ls2a{letter-spacing:-0.064128pt;}
.ls85{letter-spacing:-0.062311pt;}
.ls25{letter-spacing:-0.058784pt;}
.ls51{letter-spacing:-0.053440pt;}
.ls86{letter-spacing:-0.050982pt;}
.ls8b{letter-spacing:-0.050779pt;}
.ls5e{letter-spacing:-0.048000pt;}
.ls36{letter-spacing:-0.042752pt;}
.ls76{letter-spacing:-0.039652pt;}
.ls30{letter-spacing:-0.037408pt;}
.ls7f{letter-spacing:-0.033988pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls92{letter-spacing:-0.031248pt;}
.ls5d{letter-spacing:-0.028800pt;}
.ls78{letter-spacing:-0.028323pt;}
.ls27{letter-spacing:-0.026720pt;}
.ls32{letter-spacing:-0.024000pt;}
.ls91{letter-spacing:-0.023436pt;}
.ls81{letter-spacing:-0.022659pt;}
.ls33{letter-spacing:-0.021376pt;}
.ls54{letter-spacing:-0.019200pt;}
.ls28{letter-spacing:-0.016032pt;}
.ls57{letter-spacing:-0.014400pt;}
.ls75{letter-spacing:-0.013534pt;}
.ls24{letter-spacing:-0.012768pt;}
.ls77{letter-spacing:-0.011329pt;}
.ls31{letter-spacing:-0.010688pt;}
.ls55{letter-spacing:-0.009600pt;}
.ls88{letter-spacing:-0.007812pt;}
.ls7b{letter-spacing:-0.005665pt;}
.ls58{letter-spacing:-0.005344pt;}
.ls9d{letter-spacing:-0.005088pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa2{letter-spacing:0.000659pt;}
.ls3d{letter-spacing:0.004800pt;}
.ls13{letter-spacing:0.005344pt;}
.ls6b{letter-spacing:0.005665pt;}
.ls8e{letter-spacing:0.007812pt;}
.ls44{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.010688pt;}
.ls96{letter-spacing:0.011329pt;}
.ls56{letter-spacing:0.014400pt;}
.ls97{letter-spacing:0.015264pt;}
.ls74{letter-spacing:0.015624pt;}
.ls17{letter-spacing:0.016032pt;}
.ls63{letter-spacing:0.016994pt;}
.ls10{letter-spacing:0.017024pt;}
.ls5f{letter-spacing:0.018045pt;}
.ls47{letter-spacing:0.019200pt;}
.ls19{letter-spacing:0.021376pt;}
.ls6d{letter-spacing:0.022659pt;}
.ls1c{letter-spacing:0.024000pt;}
.ls1b{letter-spacing:0.026720pt;}
.ls69{letter-spacing:0.028323pt;}
.ls4b{letter-spacing:0.028800pt;}
.ls72{letter-spacing:0.031248pt;}
.ls18{letter-spacing:0.032064pt;}
.ls3e{letter-spacing:0.033600pt;}
.ls95{letter-spacing:0.033988pt;}
.ls1a{letter-spacing:0.037408pt;}
.ls70{letter-spacing:0.039060pt;}
.ls68{letter-spacing:0.039652pt;}
.ls67{letter-spacing:0.040704pt;}
.ls15{letter-spacing:0.042752pt;}
.ls1e{letter-spacing:0.043200pt;}
.ls6c{letter-spacing:0.045317pt;}
.ls5a{letter-spacing:0.048000pt;}
.ls20{letter-spacing:0.048096pt;}
.ls4c{letter-spacing:0.052800pt;}
.ls40{letter-spacing:0.053440pt;}
.ls9b{letter-spacing:0.055968pt;}
.ls65{letter-spacing:0.056646pt;}
.ls41{letter-spacing:0.057600pt;}
.ls14{letter-spacing:0.058784pt;}
.ls6a{letter-spacing:0.062311pt;}
.ls52{letter-spacing:0.064128pt;}
.ls62{letter-spacing:0.067976pt;}
.ls46{letter-spacing:0.072000pt;}
.ls93{letter-spacing:0.074215pt;}
.ls3c{letter-spacing:0.074816pt;}
.lsa0{letter-spacing:0.079305pt;}
.ls42{letter-spacing:0.081600pt;}
.ls84{letter-spacing:0.090634pt;}
.ls66{letter-spacing:0.096299pt;}
.ls3b{letter-spacing:0.101536pt;}
.ls45{letter-spacing:0.105600pt;}
.ls99{letter-spacing:0.107628pt;}
.ls6f{letter-spacing:0.113275pt;}
.ls9e{letter-spacing:0.113293pt;}
.ls48{letter-spacing:0.120000pt;}
.ls64{letter-spacing:0.124622pt;}
.ls43{letter-spacing:0.129600pt;}
.ls98{letter-spacing:0.130287pt;}
.ls6e{letter-spacing:0.140618pt;}
.ls4a{letter-spacing:0.144000pt;}
.lsa1{letter-spacing:0.147281pt;}
.ls12{letter-spacing:0.148960pt;}
.ls3f{letter-spacing:0.149632pt;}
.ls9a{letter-spacing:0.152945pt;}
.ls61{letter-spacing:0.157898pt;}
.ls1d{letter-spacing:0.158400pt;}
.ls11{letter-spacing:0.161728pt;}
.ls73{letter-spacing:0.164054pt;}
.ls9c{letter-spacing:0.167904pt;}
.ls60{letter-spacing:0.171432pt;}
.ls71{letter-spacing:0.183584pt;}
.ls49{letter-spacing:0.196800pt;}
.ls89{letter-spacing:0.199208pt;}
.ls8c{letter-spacing:0.222645pt;}
.ls3a{letter-spacing:0.576078pt;}
.ls1f{letter-spacing:0.721440pt;}
.ls53{letter-spacing:7.759488pt;}
.ls8{letter-spacing:10.626533pt;}
.ls38{letter-spacing:13.017797pt;}
.lsf{letter-spacing:13.070931pt;}
.ls5{letter-spacing:13.151319pt;}
.ls6{letter-spacing:13.177199pt;}
.ls37{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.283467pt;}
.lsc{letter-spacing:13.336601pt;}
.ls22{letter-spacing:13.389734pt;}
.ls4d{letter-spacing:13.549136pt;}
.lsb{letter-spacing:13.708538pt;}
.lsd{letter-spacing:14.027341pt;}
.ls7{letter-spacing:15.249420pt;}
.lse{letter-spacing:18.915657pt;}
.ls23{letter-spacing:20.244003pt;}
.ls21{letter-spacing:20.987877pt;}
.ls9{letter-spacing:22.581893pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ls39{letter-spacing:83.815733pt;}
.ws101{word-spacing:-56.646400pt;}
.wsb2{word-spacing:-53.440000pt;}
.wsb4{word-spacing:-48.000000pt;}
.ws109{word-spacing:-13.948495pt;}
.ws111{word-spacing:-13.913340pt;}
.ws115{word-spacing:-13.823501pt;}
.ws10a{word-spacing:-13.788347pt;}
.ws10e{word-spacing:-13.757099pt;}
.ws108{word-spacing:-13.749286pt;}
.ws114{word-spacing:-13.741474pt;}
.ws112{word-spacing:-13.725850pt;}
.ws113{word-spacing:-13.718038pt;}
.ws10c{word-spacing:-13.698508pt;}
.ws107{word-spacing:-13.682884pt;}
.ws10d{word-spacing:-13.671166pt;}
.ws10b{word-spacing:-13.667260pt;}
.ws116{word-spacing:-13.663353pt;}
.ws10f{word-spacing:-13.639917pt;}
.ws110{word-spacing:-13.632105pt;}
.ws53{word-spacing:-13.370688pt;}
.wsb5{word-spacing:-13.338624pt;}
.ws54{word-spacing:-13.295872pt;}
.ws57{word-spacing:-13.283467pt;}
.wsb3{word-spacing:-12.014400pt;}
.wscb{word-spacing:-11.955200pt;}
.wsff{word-spacing:-11.449832pt;}
.ws100{word-spacing:-11.278400pt;}
.wsc5{word-spacing:-11.044800pt;}
.wsc6{word-spacing:-10.992000pt;}
.wsbb{word-spacing:-10.977600pt;}
.wsc4{word-spacing:-10.968000pt;}
.wsbe{word-spacing:-10.953600pt;}
.wsba{word-spacing:-10.929600pt;}
.wsbf{word-spacing:-10.920000pt;}
.wsb6{word-spacing:-10.905600pt;}
.wsc8{word-spacing:-10.900800pt;}
.wsb8{word-spacing:-10.896000pt;}
.wsbc{word-spacing:-10.891200pt;}
.wsc7{word-spacing:-10.876800pt;}
.wsb7{word-spacing:-10.872000pt;}
.wsb9{word-spacing:-10.848000pt;}
.wsc2{word-spacing:-10.833600pt;}
.wsc1{word-spacing:-10.824000pt;}
.wsc3{word-spacing:-10.819200pt;}
.ws51{word-spacing:-10.801728pt;}
.wsc9{word-spacing:-10.800000pt;}
.wsc0{word-spacing:-10.752000pt;}
.wsbd{word-spacing:-10.732800pt;}
.ws52{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws126{word-spacing:-3.376125pt;}
.ws125{word-spacing:-3.296820pt;}
.wsd7{word-spacing:-3.094176pt;}
.wsd6{word-spacing:-3.030048pt;}
.wsce{word-spacing:-2.869229pt;}
.wse5{word-spacing:-2.864384pt;}
.ws8c{word-spacing:-2.821632pt;}
.wse4{word-spacing:-2.800256pt;}
.wsf9{word-spacing:-2.768192pt;}
.ws8d{word-spacing:-2.762848pt;}
.wsf8{word-spacing:-2.757504pt;}
.ws14f{word-spacing:-2.651052pt;}
.ws65{word-spacing:-2.495648pt;}
.ws8b{word-spacing:-2.484960pt;}
.ws184{word-spacing:-2.391024pt;}
.wscc{word-spacing:-2.284756pt;}
.wsa5{word-spacing:-2.082853pt;}
.ws173{word-spacing:-2.072221pt;}
.ws168{word-spacing:-1.965953pt;}
.ws134{word-spacing:-1.948636pt;}
.ws135{word-spacing:-1.925978pt;}
.ws178{word-spacing:-1.912819pt;}
.ws11f{word-spacing:-1.859685pt;}
.ws5f{word-spacing:-1.843680pt;}
.ws188{word-spacing:-1.817190pt;}
.wscd{word-spacing:-1.806551pt;}
.ws60{word-spacing:-1.779552pt;}
.ws61{word-spacing:-1.742144pt;}
.ws153{word-spacing:-1.642746pt;}
.ws6e{word-spacing:-1.544416pt;}
.ws6b{word-spacing:-1.517696pt;}
.ws8e{word-spacing:-1.480288pt;}
.ws59{word-spacing:-1.434614pt;}
.ws99{word-spacing:-1.381481pt;}
.ws11e{word-spacing:-1.275213pt;}
.ws74{word-spacing:-1.213088pt;}
.ws13c{word-spacing:-1.189574pt;}
.ws4e{word-spacing:-1.168945pt;}
.ws3e{word-spacing:-1.115811pt;}
.ws13d{word-spacing:-1.110269pt;}
.ws2c{word-spacing:-1.062677pt;}
.ws11d{word-spacing:-1.009543pt;}
.ws143{word-spacing:-1.002641pt;}
.wsdc{word-spacing:-0.929856pt;}
.ws177{word-spacing:-0.903276pt;}
.ws73{word-spacing:-0.887104pt;}
.wsdb{word-spacing:-0.801600pt;}
.ws47{word-spacing:-0.797008pt;}
.ws18{word-spacing:-0.717312pt;}
.ws1a0{word-spacing:-0.669491pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws14c{word-spacing:-0.623110pt;}
.wsfc{word-spacing:-0.614560pt;}
.ws9c{word-spacing:-0.584473pt;}
.ws69{word-spacing:-0.582496pt;}
.ws19a{word-spacing:-0.573850pt;}
.ws142{word-spacing:-0.560799pt;}
.ws78{word-spacing:-0.545088pt;}
.ws58{word-spacing:-0.531339pt;}
.ws3a{word-spacing:-0.478205pt;}
.ws1a2{word-spacing:-0.382566pt;}
.ws17b{word-spacing:-0.371937pt;}
.ws4a{word-spacing:-0.318803pt;}
.ws62{word-spacing:-0.299264pt;}
.ws161{word-spacing:-0.294561pt;}
.ws1a{word-spacing:-0.286925pt;}
.ws4d{word-spacing:-0.265669pt;}
.ws149{word-spacing:-0.260573pt;}
.ws121{word-spacing:-0.257148pt;}
.ws5c{word-spacing:-0.242592pt;}
.ws19{word-spacing:-0.239104pt;}
.wsd2{word-spacing:-0.229792pt;}
.wsda{word-spacing:-0.224448pt;}
.ws124{word-spacing:-0.215256pt;}
.ws3d{word-spacing:-0.212535pt;}
.ws1ae{word-spacing:-0.191283pt;}
.ws7e{word-spacing:-0.182400pt;}
.ws22{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.wsd3{word-spacing:-0.112224pt;}
.ws29{word-spacing:-0.106268pt;}
.ws79{word-spacing:-0.101536pt;}
.ws1e{word-spacing:-0.095642pt;}
.ws122{word-spacing:-0.072182pt;}
.ws5d{word-spacing:-0.068096pt;}
.ws55{word-spacing:-0.053440pt;}
.ws25{word-spacing:-0.053134pt;}
.wsa3{word-spacing:-0.047821pt;}
.ws160{word-spacing:-0.045317pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws15d{word-spacing:0.005665pt;}
.wse{word-spacing:0.042507pt;}
.ws11{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.ws136{word-spacing:0.067976pt;}
.ws155{word-spacing:0.073640pt;}
.ws148{word-spacing:0.079305pt;}
.ws137{word-spacing:0.090634pt;}
.ws7b{word-spacing:0.090848pt;}
.ws14{word-spacing:0.095642pt;}
.ws15c{word-spacing:0.096299pt;}
.ws23{word-spacing:0.106268pt;}
.ws154{word-spacing:0.107628pt;}
.ws166{word-spacing:0.111936pt;}
.ws164{word-spacing:0.113293pt;}
.ws7f{word-spacing:0.115200pt;}
.ws7a{word-spacing:0.117568pt;}
.ws94{word-spacing:0.122912pt;}
.ws157{word-spacing:0.124622pt;}
.wsee{word-spacing:0.124800pt;}
.ws139{word-spacing:0.127200pt;}
.ws17{word-spacing:0.143462pt;}
.ws159{word-spacing:0.152640pt;}
.ws133{word-spacing:0.152945pt;}
.ws6a{word-spacing:0.154976pt;}
.ws7c{word-spacing:0.158400pt;}
.ws24{word-spacing:0.159402pt;}
.ws138{word-spacing:0.167904pt;}
.wsef{word-spacing:0.172800pt;}
.ws158{word-spacing:0.172992pt;}
.ws89{word-spacing:0.181696pt;}
.ws7d{word-spacing:0.182400pt;}
.ws1b{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws187{word-spacing:0.239104pt;}
.ws2b{word-spacing:0.265669pt;}
.wsc{word-spacing:0.286925pt;}
.ws120{word-spacing:0.318803pt;}
.wsca{word-spacing:0.334746pt;}
.wsfd{word-spacing:0.358048pt;}
.ws90{word-spacing:0.363392pt;}
.ws3f{word-spacing:0.371937pt;}
.ws1b9{word-spacing:0.382566pt;}
.ws141{word-spacing:0.396525pt;}
.ws8f{word-spacing:0.400800pt;}
.ws83{word-spacing:0.411488pt;}
.ws40{word-spacing:0.425071pt;}
.ws1a7{word-spacing:0.430387pt;}
.ws34{word-spacing:0.478205pt;}
.ws140{word-spacing:0.487159pt;}
.ws71{word-spacing:0.491648pt;}
.ws37{word-spacing:0.531339pt;}
.ws181{word-spacing:0.584473pt;}
.ws11a{word-spacing:0.637606pt;}
.wsdf{word-spacing:0.678688pt;}
.wsf6{word-spacing:0.684032pt;}
.ws16f{word-spacing:0.690740pt;}
.wsd4{word-spacing:0.700064pt;}
.ws76{word-spacing:0.716096pt;}
.wsf2{word-spacing:0.726784pt;}
.ws75{word-spacing:0.737472pt;}
.ws82{word-spacing:0.742816pt;}
.ws145{word-spacing:0.793050pt;}
.wsd0{word-spacing:0.797008pt;}
.ws144{word-spacing:0.815708pt;}
.ws18a{word-spacing:0.956416pt;}
.wsf3{word-spacing:0.967264pt;}
.ws15{word-spacing:1.004237pt;}
.wsfb{word-spacing:1.004672pt;}
.ws5a{word-spacing:1.009543pt;}
.wsd5{word-spacing:1.010016pt;}
.ws91{word-spacing:1.020704pt;}
.wsf5{word-spacing:1.058112pt;}
.ws185{word-spacing:1.062677pt;}
.ws84{word-spacing:1.068800pt;}
.wsfa{word-spacing:1.095520pt;}
.ws31{word-spacing:1.115811pt;}
.ws85{word-spacing:1.116896pt;}
.ws96{word-spacing:1.168945pt;}
.ws26{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws27{word-spacing:1.275213pt;}
.ws19e{word-spacing:1.291162pt;}
.ws68{word-spacing:1.325312pt;}
.ws66{word-spacing:1.373408pt;}
.ws67{word-spacing:1.389440pt;}
.ws14a{word-spacing:1.410495pt;}
.ws48{word-spacing:1.434614pt;}
.wsd9{word-spacing:1.464256pt;}
.ws14b{word-spacing:1.478471pt;}
.ws4f{word-spacing:1.487748pt;}
.ws28{word-spacing:1.594016pt;}
.wsea{word-spacing:1.603200pt;}
.wse9{word-spacing:1.613888pt;}
.wse8{word-spacing:1.619232pt;}
.wsd8{word-spacing:1.629920pt;}
.ws16c{word-spacing:1.647150pt;}
.wsf1{word-spacing:1.672672pt;}
.wsf0{word-spacing:1.678016pt;}
.wse7{word-spacing:1.694048pt;}
.wsb1{word-spacing:1.700284pt;}
.ws156{word-spacing:1.710721pt;}
.ws8a{word-spacing:1.715424pt;}
.ws147{word-spacing:1.716386pt;}
.wsf4{word-spacing:1.720768pt;}
.ws132{word-spacing:1.722051pt;}
.ws38{word-spacing:1.753418pt;}
.ws36{word-spacing:1.806551pt;}
.ws131{word-spacing:1.812685pt;}
.ws146{word-spacing:1.818349pt;}
.ws171{word-spacing:1.859685pt;}
.ws129{word-spacing:1.863667pt;}
.ws97{word-spacing:1.912819pt;}
.ws63{word-spacing:1.955904pt;}
.wsb0{word-spacing:1.965953pt;}
.ws1aa{word-spacing:2.008474pt;}
.ws172{word-spacing:2.019087pt;}
.ws42{word-spacing:2.072221pt;}
.wsf7{word-spacing:2.110880pt;}
.ws43{word-spacing:2.125355pt;}
.ws3b{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws17e{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws6c{word-spacing:2.281888pt;}
.wsae{word-spacing:2.284756pt;}
.wsa6{word-spacing:2.391024pt;}
.ws1c{word-spacing:2.438861pt;}
.ws6d{word-spacing:2.479616pt;}
.ws191{word-spacing:2.486682pt;}
.ws9f{word-spacing:2.497292pt;}
.ws1b1{word-spacing:2.534502pt;}
.ws11c{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws87{word-spacing:2.591840pt;}
.ws80{word-spacing:2.613216pt;}
.ws88{word-spacing:2.629248pt;}
.ws1b0{word-spacing:2.630144pt;}
.wse2{word-spacing:2.655968pt;}
.wsad{word-spacing:2.656693pt;}
.ws81{word-spacing:2.672000pt;}
.wse3{word-spacing:2.693376pt;}
.ws175{word-spacing:2.709827pt;}
.ws18b{word-spacing:2.725786pt;}
.ws167{word-spacing:2.762961pt;}
.ws1be{word-spacing:2.773606pt;}
.ws17c{word-spacing:2.816095pt;}
.ws1a6{word-spacing:2.859153pt;}
.ws18f{word-spacing:2.862046pt;}
.ws1ba{word-spacing:2.865041pt;}
.wsa8{word-spacing:2.869248pt;}
.ws19c{word-spacing:2.917069pt;}
.ws9a{word-spacing:2.922363pt;}
.ws6f{word-spacing:2.933856pt;}
.ws199{word-spacing:2.964890pt;}
.wsa7{word-spacing:2.975497pt;}
.ws70{word-spacing:2.976608pt;}
.ws10{word-spacing:3.082471pt;}
.ws1c2{word-spacing:3.108352pt;}
.ws9e{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.wse1{word-spacing:3.238464pt;}
.ws11b{word-spacing:3.294300pt;}
.ws77{word-spacing:3.388096pt;}
.ws4c{word-spacing:3.400567pt;}
.ws13{word-spacing:3.490918pt;}
.ws170{word-spacing:3.506835pt;}
.ws1c1{word-spacing:3.538739pt;}
.ws98{word-spacing:3.559969pt;}
.ws4b{word-spacing:3.666237pt;}
.ws17d{word-spacing:3.719371pt;}
.ws197{word-spacing:3.777843pt;}
.ws1a9{word-spacing:3.873485pt;}
.ws9b{word-spacing:3.878772pt;}
.ws86{word-spacing:3.890432pt;}
.wsde{word-spacing:3.911808pt;}
.ws183{word-spacing:3.931906pt;}
.wsdd{word-spacing:4.018688pt;}
.ws41{word-spacing:4.038174pt;}
.ws1d{word-spacing:4.112589pt;}
.ws130{word-spacing:4.157846pt;}
.ws128{word-spacing:4.180504pt;}
.ws127{word-spacing:4.186169pt;}
.ws16d{word-spacing:4.197575pt;}
.ws12f{word-spacing:4.237151pt;}
.ws45{word-spacing:4.250709pt;}
.ws39{word-spacing:4.303843pt;}
.ws176{word-spacing:4.356977pt;}
.ws169{word-spacing:4.463245pt;}
.ws12b{word-spacing:4.497724pt;}
.ws5b{word-spacing:4.516379pt;}
.ws180{word-spacing:4.569513pt;}
.ws12a{word-spacing:4.616682pt;}
.ws8{word-spacing:4.872362pt;}
.ws117{word-spacing:4.888316pt;}
.ws119{word-spacing:4.941450pt;}
.ws189{word-spacing:4.948496pt;}
.ws16b{word-spacing:4.994583pt;}
.ws3c{word-spacing:5.047717pt;}
.ws72{word-spacing:5.140928pt;}
.ws16e{word-spacing:5.153985pt;}
.ws12{word-spacing:5.212467pt;}
.wscf{word-spacing:5.260253pt;}
.ws118{word-spacing:5.366521pt;}
.wsab{word-spacing:5.419654pt;}
.ws13b{word-spacing:5.455048pt;}
.ws13a{word-spacing:5.472042pt;}
.ws14e{word-spacing:5.483372pt;}
.ws95{word-spacing:5.525922pt;}
.ws14d{word-spacing:5.534353pt;}
.ws194{word-spacing:5.547213pt;}
.wsaf{word-spacing:5.632190pt;}
.ws174{word-spacing:5.685324pt;}
.wsfe{word-spacing:5.867712pt;}
.ws44{word-spacing:5.897859pt;}
.ws33{word-spacing:6.057261pt;}
.ws32{word-spacing:6.110395pt;}
.ws1ac{word-spacing:6.121062pt;}
.ws49{word-spacing:6.216662pt;}
.ws56{word-spacing:6.376064pt;}
.ws179{word-spacing:6.429198pt;}
.ws9d{word-spacing:6.482332pt;}
.ws12c{word-spacing:6.514336pt;}
.ws186{word-spacing:6.535466pt;}
.ws12d{word-spacing:6.672946pt;}
.ws16a{word-spacing:6.694867pt;}
.ws1a5{word-spacing:6.742733pt;}
.ws12e{word-spacing:6.780574pt;}
.ws17f{word-spacing:7.013670pt;}
.wsac{word-spacing:7.119938pt;}
.ws182{word-spacing:7.438741pt;}
.wse6{word-spacing:7.791552pt;}
.ws1b5{word-spacing:7.986074pt;}
.wsa0{word-spacing:8.023214pt;}
.ws1c0{word-spacing:8.559923pt;}
.ws6{word-spacing:8.740496pt;}
.wsd1{word-spacing:8.993952pt;}
.ws17a{word-spacing:9.085891pt;}
.ws3{word-spacing:9.261767pt;}
.ws64{word-spacing:9.384064pt;}
.ws20{word-spacing:9.946726pt;}
.ws93{word-spacing:9.998624pt;}
.ws92{word-spacing:10.020000pt;}
.ws13e{word-spacing:10.168029pt;}
.ws13f{word-spacing:10.292651pt;}
.ws5e{word-spacing:10.329312pt;}
.ws7{word-spacing:10.525789pt;}
.ws2d{word-spacing:10.583895pt;}
.ws1b3{word-spacing:10.855322pt;}
.wse0{word-spacing:10.901760pt;}
.ws123{word-spacing:10.949071pt;}
.ws1a1{word-spacing:11.237888pt;}
.ws19b{word-spacing:11.333530pt;}
.ws1af{word-spacing:11.716096pt;}
.ws196{word-spacing:11.811738pt;}
.ws1a4{word-spacing:11.859558pt;}
.ws1bc{word-spacing:11.898650pt;}
.ws1b7{word-spacing:11.900459pt;}
.ws1b8{word-spacing:11.900604pt;}
.ws1bb{word-spacing:11.900945pt;}
.ws1b6{word-spacing:11.901158pt;}
.ws19d{word-spacing:11.901184pt;}
.ws1ab{word-spacing:11.901321pt;}
.ws19f{word-spacing:11.901440pt;}
.ws1bd{word-spacing:11.901730pt;}
.ws1a3{word-spacing:11.906773pt;}
.ws190{word-spacing:11.907379pt;}
.ws193{word-spacing:11.908190pt;}
.ws18e{word-spacing:11.955200pt;}
.ws1b4{word-spacing:12.050842pt;}
.ws1a8{word-spacing:12.337766pt;}
.ws1ad{word-spacing:12.863795pt;}
.ws4{word-spacing:13.761632pt;}
.ws9{word-spacing:14.282342pt;}
.ws192{word-spacing:14.394061pt;}
.ws1b2{word-spacing:14.441882pt;}
.ws50{word-spacing:14.558679pt;}
.ws18c{word-spacing:14.633165pt;}
.ws1bf{word-spacing:14.680986pt;}
.ws198{word-spacing:14.872269pt;}
.ws1f{word-spacing:16.141299pt;}
.ws195{word-spacing:16.306893pt;}
.ws46{word-spacing:16.312097pt;}
.ws5{word-spacing:19.857270pt;}
.ws18d{word-spacing:38.352282pt;}
.wsed{word-spacing:41.755200pt;}
.wsec{word-spacing:41.769600pt;}
.wseb{word-spacing:41.779200pt;}
.ws102{word-spacing:95.332388pt;}
.ws103{word-spacing:95.668299pt;}
.ws105{word-spacing:104.366838pt;}
.ws104{word-spacing:104.698843pt;}
.ws106{word-spacing:113.069282pt;}
.wsaa{word-spacing:136.863130pt;}
.wsa2{word-spacing:158.583646pt;}
.wsa1{word-spacing:191.579998pt;}
.wsa4{word-spacing:213.960132pt;}
.wsa9{word-spacing:253.593702pt;}
.ws152{word-spacing:270.522266pt;}
.ws150{word-spacing:295.771648pt;}
.ws151{word-spacing:306.387866pt;}
.ws15a{word-spacing:1383.231448pt;}
.ws15f{word-spacing:1454.113088pt;}
.ws165{word-spacing:1489.698356pt;}
.ws15e{word-spacing:1493.097140pt;}
.ws163{word-spacing:1519.590662pt;}
.ws162{word-spacing:1537.553235pt;}
.ws15b{word-spacing:1722.305469pt;}
._3e{margin-left:-1418.873363pt;}
._4c{margin-left:-1287.522781pt;}
._4b{margin-left:-1276.805283pt;}
._48{margin-left:-1260.781107pt;}
._4d{margin-left:-1257.505854pt;}
._49{margin-left:-1221.593128pt;}
._3b{margin-left:-1131.422297pt;}
._3c{margin-left:-1121.678025pt;}
._3d{margin-left:-1110.484696pt;}
._f{margin-left:-20.755178pt;}
._60{margin-left:-18.395055pt;}
._19{margin-left:-13.937152pt;}
._5{margin-left:-10.711859pt;}
._32{margin-left:-8.732096pt;}
._31{margin-left:-7.636576pt;}
._8{margin-left:-5.897859pt;}
._7{margin-left:-4.780966pt;}
._0{margin-left:-3.421811pt;}
._1a{margin-left:-2.276656pt;}
._4{margin-left:-1.301776pt;}
._17{width:1.004416pt;}
._15{width:2.470729pt;}
._9{width:3.513234pt;}
._1{width:11.530016pt;}
._62{width:12.555584pt;}
._a{width:13.453510pt;}
._d{width:14.893498pt;}
._c{width:16.402534pt;}
._e{width:17.645875pt;}
._13{width:19.069627pt;}
._10{width:20.217440pt;}
._14{width:21.545779pt;}
._2{width:22.502128pt;}
._5f{width:23.455885pt;}
._b{width:24.484250pt;}
._16{width:26.380961pt;}
._3{width:27.783619pt;}
._61{width:28.691366pt;}
._6{width:29.935821pt;}
._1b{width:32.039722pt;}
._3a{width:32.996131pt;}
._63{width:35.637254pt;}
._5e{width:37.114002pt;}
._1f{width:64.191996pt;}
._38{width:109.081313pt;}
._36{width:110.104617pt;}
._35{width:117.432276pt;}
._37{width:118.447768pt;}
._39{width:126.154197pt;}
._33{width:127.505600pt;}
._25{width:151.655658pt;}
._27{width:164.790477pt;}
._24{width:179.232358pt;}
._2a{width:182.292890pt;}
._29{width:188.700877pt;}
._21{width:204.012292pt;}
._1e{width:205.246874pt;}
._42{width:207.529751pt;}
._23{width:224.375194pt;}
._44{width:229.291924pt;}
._46{width:231.768746pt;}
._28{width:234.800128pt;}
._47{width:235.719575pt;}
._2b{width:236.904243pt;}
._30{width:237.806522pt;}
._2d{width:239.003155pt;}
._20{width:240.405035pt;}
._2c{width:241.590682pt;}
._41{width:256.650933pt;}
._54{width:257.801933pt;}
._2f{width:259.284378pt;}
._2e{width:274.199264pt;}
._40{width:278.688959pt;}
._52{width:281.712333pt;}
._26{width:283.242598pt;}
._3f{width:299.784078pt;}
._5a{width:306.340045pt;}
._22{width:320.128336pt;}
._50{width:342.205645pt;}
._51{width:398.634189pt;}
._1c{width:451.539894pt;}
._55{width:530.428314pt;}
._45{width:609.562443pt;}
._11{width:644.455384pt;}
._53{width:663.226675pt;}
._1d{width:735.005696pt;}
._43{width:766.937471pt;}
._4e{width:1166.827520pt;}
._57{width:1245.970944pt;}
._56{width:1278.967296pt;}
._5c{width:1279.869574pt;}
._58{width:1281.066208pt;}
._5b{width:1301.347430pt;}
._59{width:1316.262317pt;}
._4f{width:1472.402432pt;}
._4a{width:1494.897405pt;}
._18{width:1857.250304pt;}
._34{width:1968.745587pt;}
._5d{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:39.059445pt;}
.fs15{font-size:39.060473pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs11{font-size:45.113600pt;}
.fsb{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs13{font-size:50.880000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs12{font-size:56.646400pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.yc4{bottom:-289.890629pt;}
.y1d0{bottom:-288.176829pt;}
.yc3{bottom:-272.851285pt;}
.y1cf{bottom:-269.859249pt;}
.y181{bottom:-265.859488pt;}
.yc2{bottom:-255.731781pt;}
.y1ce{bottom:-250.779325pt;}
.y180{bottom:-247.712813pt;}
.yc1{bottom:-238.612277pt;}
.y1cd{bottom:-231.699402pt;}
.y17f{bottom:-229.651109pt;}
.yc0{bottom:-221.572933pt;}
.y1cc{bottom:-212.619478pt;}
.y17e{bottom:-211.504434pt;}
.ybf{bottom:-204.449688pt;}
.y141{bottom:-200.297688pt;}
.y1cb{bottom:-193.539554pt;}
.y17d{bottom:-193.442730pt;}
.ybe{bottom:-187.410344pt;}
.y140{bottom:-183.178184pt;}
.y17c{bottom:-175.296056pt;}
.y1ca{bottom:-174.459631pt;}
.ybd{bottom:-170.290840pt;}
.y13f{bottom:-166.058680pt;}
.y17b{bottom:-157.149381pt;}
.y1c9{bottom:-155.379707pt;}
.ybc{bottom:-153.171336pt;}
.y13e{bottom:-149.019336pt;}
.y17a{bottom:-139.087677pt;}
.y1c8{bottom:-136.384753pt;}
.ybb{bottom:-136.130656pt;}
.y13d{bottom:-131.899832pt;}
.y179{bottom:-120.941002pt;}
.yba{bottom:-119.011152pt;}
.y1c7{bottom:-117.304829pt;}
.y13c{bottom:-114.860488pt;}
.y178{bottom:-102.794328pt;}
.yb9{bottom:-101.971808pt;}
.y1c6{bottom:-98.224829pt;}
.y13b{bottom:-97.740984pt;}
.yb8{bottom:-84.852304pt;}
.y177{bottom:-84.732624pt;}
.y13a{bottom:-80.621480pt;}
.y1c5{bottom:-78.466429pt;}
.yb7{bottom:-67.732800pt;}
.y176{bottom:-66.585949pt;}
.y139{bottom:-63.580800pt;}
.yb6{bottom:-50.692800pt;}
.y1c4{bottom:-50.143229pt;}
.y175{bottom:-31.902749pt;}
.y138{bottom:-30.861333pt;}
.yb5{bottom:-17.972800pt;}
.y1c3{bottom:-16.901488pt;}
.y137{bottom:-15.420933pt;}
.y174{bottom:-10.782733pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.034739pt;}
.y195{bottom:4.052451pt;}
.y1c2{bottom:4.298512pt;}
.y136{bottom:4.504819pt;}
.y197{bottom:7.020451pt;}
.y198{bottom:7.529251pt;}
.y19b{bottom:8.377251pt;}
.y196{bottom:11.430192pt;}
.y199{bottom:13.380451pt;}
.y194{bottom:13.550192pt;}
.y19a{bottom:13.889251pt;}
.y193{bottom:19.062051pt;}
.y162{bottom:19.539067pt;}
.y66{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y161{bottom:42.019067pt;}
.y5{bottom:59.133337pt;}
.y19c{bottom:62.225392pt;}
.y15f{bottom:65.294667pt;}
.y15e{bottom:75.215067pt;}
.y15d{bottom:81.055467pt;}
.y182{bottom:82.153392pt;}
.y4{bottom:86.333337pt;}
.y15c{bottom:90.575067pt;}
.y65{bottom:92.108000pt;}
.y37{bottom:93.018667pt;}
.y121{bottom:95.906667pt;}
.yef{bottom:97.938667pt;}
.y1ba{bottom:98.141333pt;}
.y22f{bottom:99.533333pt;}
.y1de{bottom:101.917333pt;}
.y15b{bottom:103.615467pt;}
.y1eb{bottom:105.909333pt;}
.y9d{bottom:106.308000pt;}
.y64{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y120{bottom:112.644000pt;}
.yee{bottom:114.676000pt;}
.y22e{bottom:114.876000pt;}
.y1b9{bottom:114.878667pt;}
.y15a{bottom:119.855067pt;}
.y1dd{bottom:121.324000pt;}
.y18b{bottom:122.009251pt;}
.y183{bottom:122.009650pt;}
.y1e6{bottom:122.646667pt;}
.y9c{bottom:123.045333pt;}
.y22{bottom:123.790666pt;}
.y35{bottom:124.820000pt;}
.y63{bottom:125.581333pt;}
.y11f{bottom:129.381333pt;}
.y22d{bottom:130.218667pt;}
.yed{bottom:131.413333pt;}
.y1b8{bottom:131.616000pt;}
.y1dc{bottom:135.936000pt;}
.y1f5{bottom:136.594667pt;}
.y159{bottom:138.815067pt;}
.y1e5{bottom:139.384000pt;}
.y9b{bottom:139.782667pt;}
.y34{bottom:140.720000pt;}
.y62{bottom:142.318667pt;}
.y22c{bottom:145.561333pt;}
.y11e{bottom:146.118667pt;}
.yec{bottom:148.150667pt;}
.y1b7{bottom:148.353333pt;}
.y1db{bottom:150.548000pt;}
.y19d{bottom:151.858851pt;}
.y1e4{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.y61{bottom:159.056000pt;}
.y158{bottom:160.015467pt;}
.y1f4{bottom:160.186667pt;}
.y22b{bottom:160.902667pt;}
.y18c{bottom:161.780451pt;}
.y184{bottom:161.780954pt;}
.y11d{bottom:162.856000pt;}
.yeb{bottom:164.888000pt;}
.y1b6{bottom:165.090667pt;}
.y1da{bottom:165.160000pt;}
.y32{bottom:172.521333pt;}
.y1e3{bottom:172.858667pt;}
.y99{bottom:173.257333pt;}
.y19{bottom:175.052000pt;}
.y60{bottom:175.793333pt;}
.y22a{bottom:176.245333pt;}
.y11c{bottom:179.593333pt;}
.y1d9{bottom:179.772000pt;}
.yea{bottom:181.625333pt;}
.y1b5{bottom:181.828000pt;}
.y157{bottom:183.055467pt;}
.y1f3{bottom:183.777333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y31{bottom:188.421333pt;}
.y1e2{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.y229{bottom:191.588000pt;}
.y5f{bottom:192.530667pt;}
.y1d8{bottom:194.384000pt;}
.y11b{bottom:196.330667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ye9{bottom:198.362667pt;}
.y1b4{bottom:198.565333pt;}
.y18d{bottom:201.636451pt;}
.y185{bottom:201.637212pt;}
.y30{bottom:204.322667pt;}
.y1e1{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.y228{bottom:206.930667pt;}
.y156{bottom:207.295467pt;}
.y1f2{bottom:207.369333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1d7{bottom:208.996000pt;}
.y5e{bottom:209.268000pt;}
.y11a{bottom:213.068000pt;}
.ye8{bottom:215.100000pt;}
.y1b3{bottom:215.302667pt;}
.y227{bottom:222.273333pt;}
.y1f1{bottom:222.990667pt;}
.y1e0{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.y1d6{bottom:223.608000pt;}
.y5d{bottom:226.005333pt;}
.y119{bottom:229.805333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y142{bottom:231.539067pt;}
.y1b2{bottom:232.040000pt;}
.y155{bottom:232.175067pt;}
.ye7{bottom:235.822667pt;}
.y226{bottom:237.616000pt;}
.y1d5{bottom:238.218667pt;}
.y1f0{bottom:238.612000pt;}
.y1ea{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.y18e{bottom:241.492451pt;}
.y186{bottom:241.493470pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y5c{bottom:242.742667pt;}
.y1df{bottom:243.793333pt;}
.y118{bottom:246.541333pt;}
.y143{bottom:248.498667pt;}
.y1b1{bottom:248.776000pt;}
.ye6{bottom:252.560000pt;}
.y1d4{bottom:252.830667pt;}
.y225{bottom:252.958667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1e9{bottom:256.545333pt;}
.y94{bottom:256.944000pt;}
.y154{bottom:257.054667pt;}
.y5b{bottom:259.480000pt;}
.y1ef{bottom:262.204000pt;}
.y117{bottom:263.278667pt;}
.y2f{bottom:264.148000pt;}
.y144{bottom:265.458267pt;}
.y1b0{bottom:265.513333pt;}
.y224{bottom:268.301333pt;}
.ye5{bottom:269.297333pt;}
.y1e8{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.y1d3{bottom:273.845333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5a{bottom:276.217333pt;}
.y1ee{bottom:277.825333pt;}
.y116{bottom:280.016000pt;}
.y2e{bottom:280.048000pt;}
.y153{bottom:281.294667pt;}
.y18f{bottom:281.348451pt;}
.y187{bottom:281.349728pt;}
.y1af{bottom:282.250667pt;}
.y145{bottom:282.417867pt;}
.y223{bottom:283.644000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yb3{bottom:289.794443pt;}
.ye4{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.y59{bottom:292.954667pt;}
.y1ed{bottom:293.446667pt;}
.y2d{bottom:295.948000pt;}
.y222{bottom:298.985333pt;}
.y1ae{bottom:298.988000pt;}
.y146{bottom:299.377467pt;}
.y152{bottom:304.334667pt;}
.y1d2{bottom:304.608000pt;}
.ye3{bottom:306.757333pt;}
.yb2{bottom:306.913947pt;}
.y91{bottom:307.154667pt;}
.y1ec{bottom:309.068000pt;}
.y10{bottom:309.452000pt;}
.yce{bottom:309.692000pt;}
.y2c{bottom:311.849333pt;}
.y115{bottom:312.922667pt;}
.y58{bottom:313.677333pt;}
.y221{bottom:314.328000pt;}
.y1ad{bottom:315.725333pt;}
.y147{bottom:316.417467pt;}
.y190{bottom:321.204451pt;}
.y188{bottom:321.205986pt;}
.ye2{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.yb1{bottom:323.953291pt;}
.y151{bottom:325.535067pt;}
.ycd{bottom:326.429333pt;}
.y220{bottom:329.670667pt;}
.y114{bottom:329.672000pt;}
.y19e{bottom:331.126051pt;}
.y1ac{bottom:332.462667pt;}
.y148{bottom:333.377067pt;}
.y1d1{bottom:334.988000pt;}
.y2b{bottom:335.720000pt;}
.ye1{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.yb0{bottom:341.072795pt;}
.ycc{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.y113{bottom:344.284000pt;}
.y150{bottom:344.495067pt;}
.y21f{bottom:345.013333pt;}
.y1ab{bottom:349.200000pt;}
.y149{bottom:350.336667pt;}
.y2a{bottom:351.620000pt;}
.ye0{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.y1bb{bottom:357.581333pt;}
.yaf{bottom:358.192299pt;}
.y112{bottom:358.896000pt;}
.ycb{bottom:359.904000pt;}
.y21e{bottom:360.356000pt;}
.y14f{bottom:360.734667pt;}
.y191{bottom:361.060451pt;}
.y189{bottom:361.062244pt;}
.ye{bottom:362.706666pt;}
.y1aa{bottom:365.937333pt;}
.y14a{bottom:367.296267pt;}
.y29{bottom:367.520000pt;}
.y111{bottom:373.508000pt;}
.ydf{bottom:373.705333pt;}
.y14e{bottom:373.775067pt;}
.y8d{bottom:374.104000pt;}
.yae{bottom:375.232979pt;}
.y21d{bottom:375.698667pt;}
.yca{bottom:376.641333pt;}
.y57{bottom:380.477333pt;}
.y1a9{bottom:382.674667pt;}
.y14d{bottom:383.294667pt;}
.y28{bottom:383.421333pt;}
.y14b{bottom:384.255867pt;}
.y110{bottom:388.120000pt;}
.y160{bottom:389.135067pt;}
.yde{bottom:390.442667pt;}
.y8c{bottom:390.841333pt;}
.y21c{bottom:391.041333pt;}
.yad{bottom:392.352483pt;}
.yc9{bottom:393.378667pt;}
.y56{bottom:397.772000pt;}
.y14c{bottom:399.055467pt;}
.y27{bottom:399.321333pt;}
.y1a8{bottom:399.412000pt;}
.y192{bottom:400.916451pt;}
.y18a{bottom:400.918502pt;}
.y10f{bottom:402.732000pt;}
.y21b{bottom:406.384000pt;}
.ydd{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.yac{bottom:409.391827pt;}
.yc8{bottom:410.116000pt;}
.y26{bottom:415.221333pt;}
.y1a7{bottom:416.149333pt;}
.y10e{bottom:417.344000pt;}
.y19f{bottom:420.844451pt;}
.y21a{bottom:421.725333pt;}
.ydc{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.yab{bottom:426.511331pt;}
.yc7{bottom:426.853333pt;}
.y55{bottom:431.008000pt;}
.y25{bottom:431.122667pt;}
.y10d{bottom:431.956000pt;}
.y1a6{bottom:432.886667pt;}
.y135{bottom:434.265291pt;}
.y219{bottom:437.068000pt;}
.y1a0{bottom:439.924013pt;}
.ydb{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.yc6{bottom:443.590667pt;}
.yaa{bottom:443.630835pt;}
.y10c{bottom:446.568000pt;}
.yd{bottom:446.990669pt;}
.y24{bottom:447.022667pt;}
.y54{bottom:448.302667pt;}
.y1a5{bottom:449.624000pt;}
.y134{bottom:451.384795pt;}
.y218{bottom:452.410667pt;}
.y164{bottom:455.741333pt;}
.yda{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.ya9{bottom:460.670179pt;}
.y23{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.y53{bottom:465.598667pt;}
.y1a4{bottom:466.361333pt;}
.y10b{bottom:467.581333pt;}
.y217{bottom:467.753333pt;}
.y133{bottom:468.504299pt;}
.yc5{bottom:471.628000pt;}
.y163{bottom:472.837333pt;}
.yd9{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.ya8{bottom:477.789683pt;}
.yb{bottom:478.990666pt;}
.y52{bottom:482.893333pt;}
.y216{bottom:483.096000pt;}
.y1a3{bottom:483.098667pt;}
.y173{bottom:484.279896pt;}
.y132{bottom:485.544979pt;}
.yd8{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.y9e{bottom:491.565333pt;}
.ya7{bottom:494.909187pt;}
.ya{bottom:494.990666pt;}
.y122{bottom:495.430667pt;}
.y10a{bottom:495.688000pt;}
.y215{bottom:498.438667pt;}
.y1a2{bottom:499.836000pt;}
.y51{bottom:500.188000pt;}
.y172{bottom:502.426571pt;}
.y131{bottom:502.664483pt;}
.yd7{bottom:507.604000pt;}
.y85{bottom:508.002667pt;}
.ya6{bottom:511.948531pt;}
.y214{bottom:513.781333pt;}
.y50{bottom:517.484000pt;}
.y130{bottom:519.703827pt;}
.y171{bottom:520.573245pt;}
.yd6{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y109{bottom:525.209333pt;}
.y1e7{bottom:528.326667pt;}
.y24a{bottom:529.057333pt;}
.ya5{bottom:529.068035pt;}
.y213{bottom:529.124000pt;}
.y1a1{bottom:529.672000pt;}
.y4f{bottom:534.778667pt;}
.y12f{bottom:536.823331pt;}
.y170{bottom:538.634949pt;}
.yd5{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.y108{bottom:541.946667pt;}
.y249{bottom:544.400000pt;}
.y212{bottom:544.466667pt;}
.ya4{bottom:546.107379pt;}
.y4e{bottom:552.073333pt;}
.y165{bottom:552.265333pt;}
.y12e{bottom:553.942835pt;}
.y16f{bottom:556.781624pt;}
.yd4{bottom:557.816000pt;}
.y82{bottom:558.214667pt;}
.y107{bottom:558.682667pt;}
.y248{bottom:559.742667pt;}
.y211{bottom:559.808000pt;}
.ya3{bottom:563.226883pt;}
.y4d{bottom:569.369333pt;}
.y12d{bottom:570.982179pt;}
.y9{bottom:573.786667pt;}
.yd3{bottom:574.553333pt;}
.y16e{bottom:574.928298pt;}
.y81{bottom:574.952000pt;}
.y210{bottom:575.150667pt;}
.y106{bottom:575.420000pt;}
.ya2{bottom:580.346387pt;}
.y4c{bottom:586.664000pt;}
.y12c{bottom:588.101683pt;}
.y20f{bottom:590.493333pt;}
.yd2{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y105{bottom:592.157333pt;}
.y8{bottom:592.685334pt;}
.y16d{bottom:592.990003pt;}
.y247{bottom:594.478667pt;}
.ya1{bottom:597.387067pt;}
.y4b{bottom:603.960000pt;}
.y12b{bottom:605.221187pt;}
.y20e{bottom:605.836000pt;}
.yd1{bottom:608.028000pt;}
.y7f{bottom:608.426667pt;}
.y1c1{bottom:608.667971pt;}
.y246{bottom:609.821333pt;}
.y16c{bottom:611.136677pt;}
.y104{bottom:612.880000pt;}
.y20d{bottom:621.178667pt;}
.y4a{bottom:621.254667pt;}
.y12a{bottom:622.260531pt;}
.yd0{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.y1c0{bottom:626.815171pt;}
.y16b{bottom:629.198381pt;}
.y20c{bottom:636.521333pt;}
.y49{bottom:638.549333pt;}
.y129{bottom:639.380035pt;}
.y245{bottom:640.506667pt;}
.y7d{bottom:641.901333pt;}
.y1bf{bottom:644.961650pt;}
.ycf{bottom:645.488000pt;}
.y7{bottom:645.598667pt;}
.y103{bottom:645.765333pt;}
.ya0{bottom:646.027187pt;}
.y16a{bottom:647.345056pt;}
.y20b{bottom:651.864000pt;}
.y9f{bottom:654.587067pt;}
.y48{bottom:655.845333pt;}
.y244{bottom:655.848000pt;}
.y128{bottom:656.419379pt;}
.y7c{bottom:658.638667pt;}
.y1be{bottom:663.024771pt;}
.y101{bottom:665.172000pt;}
.y169{bottom:665.491730pt;}
.y20a{bottom:667.206667pt;}
.y3{bottom:668.977329pt;}
.y243{bottom:671.190667pt;}
.y100{bottom:672.477333pt;}
.y47{bottom:673.140000pt;}
.y127{bottom:673.538883pt;}
.y7b{bottom:675.376000pt;}
.y102{bottom:679.784000pt;}
.y209{bottom:682.548000pt;}
.y168{bottom:683.554851pt;}
.y242{bottom:686.533333pt;}
.y46{bottom:690.434667pt;}
.y126{bottom:690.658387pt;}
.y7a{bottom:692.113333pt;}
.yfe{bottom:694.394667pt;}
.y208{bottom:697.890667pt;}
.yfd{bottom:701.701333pt;}
.y241{bottom:701.876000pt;}
.y125{bottom:707.699067pt;}
.y45{bottom:707.730667pt;}
.y79{bottom:708.850667pt;}
.yff{bottom:709.006667pt;}
.y207{bottom:713.233333pt;}
.y1bd{bottom:714.583298pt;}
.y240{bottom:717.218667pt;}
.yfb{bottom:723.618667pt;}
.y1bc{bottom:723.656771pt;}
.y44{bottom:725.025333pt;}
.y78{bottom:725.588000pt;}
.y206{bottom:728.576000pt;}
.yfa{bottom:730.925333pt;}
.y23f{bottom:732.561333pt;}
.y167{bottom:735.113378pt;}
.yfc{bottom:738.230667pt;}
.y77{bottom:742.324000pt;}
.y205{bottom:743.918667pt;}
.y166{bottom:744.186851pt;}
.y23e{bottom:747.904000pt;}
.yf9{bottom:752.842667pt;}
.y124{bottom:756.339187pt;}
.y43{bottom:757.898667pt;}
.y76{bottom:759.061333pt;}
.y204{bottom:759.261333pt;}
.yf8{bottom:760.149333pt;}
.y23d{bottom:763.246667pt;}
.y123{bottom:764.899067pt;}
.y42{bottom:772.245333pt;}
.y203{bottom:774.604000pt;}
.y75{bottom:775.798667pt;}
.y23c{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.yf6{bottom:782.066667pt;}
.y41{bottom:786.590667pt;}
.yf5{bottom:789.372000pt;}
.y202{bottom:789.946667pt;}
.y40{bottom:790.448000pt;}
.y74{bottom:792.536000pt;}
.y23b{bottom:793.930667pt;}
.yf7{bottom:796.678667pt;}
.y3f{bottom:800.937333pt;}
.y201{bottom:805.289333pt;}
.y73{bottom:809.273333pt;}
.yf3{bottom:811.290667pt;}
.yf2{bottom:818.596000pt;}
.y3e{bottom:819.141333pt;}
.y200{bottom:820.630667pt;}
.y23a{bottom:824.616000pt;}
.yf4{bottom:825.902667pt;}
.y72{bottom:826.010667pt;}
.y3d{bottom:829.629333pt;}
.y1ff{bottom:835.973333pt;}
.y239{bottom:839.958667pt;}
.y71{bottom:842.748000pt;}
.yf1{bottom:846.916000pt;}
.y3c{bottom:847.833333pt;}
.y1fe{bottom:851.316000pt;}
.y238{bottom:855.301333pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y1fd{bottom:866.658667pt;}
.y237{bottom:870.644000pt;}
.y6f{bottom:876.222667pt;}
.yf0{bottom:877.678667pt;}
.y1fc{bottom:882.001333pt;}
.y236{bottom:885.986667pt;}
.y3b{bottom:886.121333pt;}
.y6e{bottom:892.960000pt;}
.y1fb{bottom:897.344000pt;}
.y235{bottom:901.329333pt;}
.y6d{bottom:909.697333pt;}
.y1fa{bottom:912.686667pt;}
.y234{bottom:916.670667pt;}
.y3a{bottom:921.604000pt;}
.y6c{bottom:926.434667pt;}
.y1f9{bottom:928.029333pt;}
.y233{bottom:932.013333pt;}
.y6b{bottom:943.172000pt;}
.y1f8{bottom:943.370667pt;}
.y39{bottom:946.710667pt;}
.y232{bottom:947.356000pt;}
.y1f7{bottom:958.713333pt;}
.y6a{bottom:959.909333pt;}
.y231{bottom:962.698667pt;}
.y38{bottom:971.816000pt;}
.y1f6{bottom:974.056000pt;}
.y69{bottom:976.646667pt;}
.y230{bottom:978.041333pt;}
.y68{bottom:993.384000pt;}
.y67{bottom:1046.810667pt;}
.he{height:23.209028pt;}
.h1c{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h25{height:29.866744pt;}
.h26{height:29.867530pt;}
.h27{height:30.105799pt;}
.hf{height:30.945242pt;}
.h16{height:31.067969pt;}
.h13{height:31.157778pt;}
.h15{height:31.338125pt;}
.h22{height:32.932047pt;}
.h21{height:33.218413pt;}
.h1f{height:33.257812pt;}
.h19{height:34.430976pt;}
.h10{height:34.813542pt;}
.h1e{height:35.039062pt;}
.h2b{height:35.052646pt;}
.h18{height:35.343750pt;}
.h2a{height:37.141406pt;}
.h24{height:37.464375pt;}
.h11{height:38.256384pt;}
.h12{height:38.681455pt;}
.hb{height:38.947124pt;}
.h17{height:39.010156pt;}
.h6{height:40.800000pt;}
.h23{height:41.350766pt;}
.h29{height:41.710338pt;}
.h3{height:42.840000pt;}
.hd{height:48.360277pt;}
.h2{height:48.960000pt;}
.h1b{height:64.034876pt;}
.h1a{height:64.040209pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h14{height:272.988000pt;}
.h1d{height:418.908000pt;}
.h20{height:454.403627pt;}
.h28{height:589.286507pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:480.346667pt;}
.w2{width:566.928019pt;}
.w6{width:603.157667pt;}
.w7{width:626.289269pt;}
.w5{width:668.158000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-171.926667pt;}
.x3d{left:-59.390387pt;}
.x4e{left:-49.955397pt;}
.x1e{left:-14.138000pt;}
.x0{left:0.000000pt;}
.xb{left:1.913333pt;}
.x46{left:9.297613pt;}
.x44{left:14.131213pt;}
.x42{left:15.403213pt;}
.x45{left:19.728013pt;}
.x43{left:23.204813pt;}
.xc{left:30.233861pt;}
.x5{left:47.621333pt;}
.xf{left:55.592000pt;}
.x1d{left:62.583333pt;}
.x3c{left:72.982000pt;}
.x50{left:76.309333pt;}
.x47{left:81.547213pt;}
.xe{left:83.393333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x41{left:104.357985pt;}
.x40{left:106.648013pt;}
.x37{left:124.502800pt;}
.x4f{left:134.315003pt;}
.x35{left:136.662400pt;}
.x38{left:144.182800pt;}
.x34{left:148.582000pt;}
.x33{left:149.862400pt;}
.x36{left:152.982400pt;}
.x3f{left:154.899213pt;}
.x20{left:159.701472pt;}
.x39{left:164.183200pt;}
.x10{left:172.958667pt;}
.x32{left:174.901600pt;}
.x4{left:180.874667pt;}
.x1f{left:188.022000pt;}
.x3a{left:196.663600pt;}
.x31{left:205.541200pt;}
.x30{left:218.821600pt;}
.x8{left:220.912000pt;}
.x6{left:221.858667pt;}
.x15{left:226.097333pt;}
.x12{left:229.828000pt;}
.x16{left:237.022667pt;}
.x7{left:239.924000pt;}
.x2f{left:243.382000pt;}
.x9{left:250.204000pt;}
.x2e{left:253.702000pt;}
.x3b{left:258.823600pt;}
.x48{left:263.019213pt;}
.x2d{left:296.341600pt;}
.x22{left:306.502000pt;}
.x24{left:310.181200pt;}
.x49{left:311.864013pt;}
.x23{left:316.261600pt;}
.x2c{left:359.381200pt;}
.x4a{left:366.136013pt;}
.x25{left:383.621200pt;}
.x3{left:404.408000pt;}
.x26{left:406.661200pt;}
.x4b{left:415.065613pt;}
.x17{left:427.677333pt;}
.x18{left:438.602667pt;}
.x27{left:446.900800pt;}
.x4c{left:457.974413pt;}
.x28{left:463.061200pt;}
.x29{left:476.101600pt;}
.xd{left:477.915437pt;}
.x2a{left:485.621200pt;}
.x11{left:491.925333pt;}
.x2b{left:493.381600pt;}
.x19{left:544.658667pt;}
.x1a{left:555.584000pt;}
.x4d{left:576.440013pt;}
.x3e{left:626.811018pt;}
.x13{left:638.978667pt;}
.x14{left:649.904000pt;}
.x21{left:663.702128pt;}
.x1b{left:675.020000pt;}
.x1c{left:685.945333pt;}
}




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