
    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_71ecc61d6c541d31a43ab12b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_390261302b28474f901c5627.woff')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_5c588d3653e0f9bda3c9bd2e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e4e9834a20fae4c2fc9f712.woff')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_2ca3b121f50d31dbdf7c6991.woff')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_158f5973dd425b5aa87a8fbc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_347a8632d7238ad247355038.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_1f464eb2c598635ef00121f7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000977;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_e368db8ebb806703845f214a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3bf7026e8b1698c6fc1a4d65.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2fda3d7c3c7038e14e5b832f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_f759ca750cb3a8df54ad9346.woff')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_b962626b4b9efc27d051130a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1ac1e3c32f0042ed98906e1e.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000977;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_373d87067a00e8fe2a1217fc.woff')format("woff");}.fff{font-family:fff;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7b4a1d681e1429bce6ce17ef.woff')format("woff");}.ff10{font-family:ff10;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4f7fa3113731dddab59eef28.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000977;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_f404c5a41963e41ef2ceab70.woff')format("woff");}.ff12{font-family:ff12;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_33d3c4cf7e8c84c7f9a5d157.woff')format("woff");}.ff13{font-family:ff13;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_60a06cb090e0f9cc012a0abc.woff')format("woff");}.ff14{font-family:ff14;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m2e{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);}
.m19{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);}
.m23{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);}
.m15{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);}
.m1a{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);}
.m13{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);}
.m2b{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);}
.m1b{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);}
.m2{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);}
.m12{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);}
.m28{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);}
.m17{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);}
.mb{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);}
.m29{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);}
.m9{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);}
.m3{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);}
.m22{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);}
.m8{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);}
.m10{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1e{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);}
.m2d{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);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m14{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);}
.m24{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);}
.m7{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);}
.m2c{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);}
.m6{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);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m20{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);}
.m2a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.v3{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.988000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.874000px;}
.ls71{letter-spacing:-0.287820px;}
.ls26{letter-spacing:-0.285120px;}
.ls47{letter-spacing:-0.246492px;}
.ls4c{letter-spacing:-0.228456px;}
.ls46{letter-spacing:-0.198396px;}
.ls48{letter-spacing:-0.168336px;}
.ls79{letter-spacing:-0.164128px;}
.ls4a{letter-spacing:-0.150300px;}
.ls25{letter-spacing:-0.140681px;}
.ls27{letter-spacing:-0.135270px;}
.ls4b{letter-spacing:-0.126252px;}
.ls21{letter-spacing:-0.124448px;}
.ls6f{letter-spacing:-0.105300px;}
.ls23{letter-spacing:-0.097394px;}
.ls4d{letter-spacing:-0.078156px;}
.ls29{letter-spacing:-0.070340px;}
.ls24{letter-spacing:-0.054108px;}
.ls49{letter-spacing:-0.048096px;}
.ls78{letter-spacing:-0.046894px;}
.ls43{letter-spacing:-0.042084px;}
.ls6e{letter-spacing:-0.035100px;}
.ls40{letter-spacing:-0.027000px;}
.ls77{letter-spacing:-0.023447px;}
.ls28{letter-spacing:-0.021643px;}
.ls44{letter-spacing:-0.018036px;}
.ls20{letter-spacing:-0.016232px;}
.ls76{letter-spacing:-0.015631px;}
.ls70{letter-spacing:-0.014040px;}
.ls45{letter-spacing:-0.012024px;}
.ls22{letter-spacing:-0.010822px;}
.ls75{letter-spacing:-0.007816px;}
.ls72{letter-spacing:-0.007020px;}
.ls42{letter-spacing:-0.006012px;}
.ls41{letter-spacing:-0.005400px;}
.lsa{letter-spacing:0.000000px;}
.ls85{letter-spacing:0.001701px;}
.ls6{letter-spacing:0.001952px;}
.ls1{letter-spacing:0.002725px;}
.ls3e{letter-spacing:0.003178px;}
.ls6d{letter-spacing:0.003262px;}
.lsd{letter-spacing:0.004309px;}
.ls2c{letter-spacing:0.004788px;}
.ls82{letter-spacing:0.004800px;}
.ls11{letter-spacing:0.005411px;}
.ls50{letter-spacing:0.006224px;}
.ls5d{letter-spacing:0.007020px;}
.ls63{letter-spacing:0.007816px;}
.ls2f{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.010822px;}
.ls39{letter-spacing:0.012024px;}
.ls61{letter-spacing:0.015631px;}
.ls2e{letter-spacing:0.016200px;}
.ls10{letter-spacing:0.016232px;}
.ls34{letter-spacing:0.018036px;}
.ls59{letter-spacing:0.021060px;}
.ls18{letter-spacing:0.021643px;}
.ls68{letter-spacing:0.023447px;}
.ls37{letter-spacing:0.024048px;}
.ls1e{letter-spacing:0.027054px;}
.ls5b{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.029160px;}
.ls3c{letter-spacing:0.030060px;}
.ls5e{letter-spacing:0.031262px;}
.ls32{letter-spacing:0.032400px;}
.ls1c{letter-spacing:0.032465px;}
.ls74{letter-spacing:0.035100px;}
.ls3b{letter-spacing:0.036072px;}
.ls1a{letter-spacing:0.037876px;}
.lsb{letter-spacing:0.038783px;}
.ls14{letter-spacing:0.038880px;}
.ls35{letter-spacing:0.042084px;}
.ls55{letter-spacing:0.042120px;}
.ls2a{letter-spacing:0.043092px;}
.ls17{letter-spacing:0.043286px;}
.ls38{letter-spacing:0.048096px;}
.ls19{letter-spacing:0.048697px;}
.ls52{letter-spacing:0.049140px;}
.ls1d{letter-spacing:0.054108px;}
.ls67{letter-spacing:0.054709px;}
.ls4e{letter-spacing:0.056020px;}
.ls1f{letter-spacing:0.059519px;}
.ls36{letter-spacing:0.060120px;}
.ls60{letter-spacing:0.062525px;}
.ls56{letter-spacing:0.063180px;}
.ls30{letter-spacing:0.064800px;}
.ls33{letter-spacing:0.066132px;}
.ls53{letter-spacing:0.070200px;}
.ls12{letter-spacing:0.070340px;}
.ls3d{letter-spacing:0.072144px;}
.lsf{letter-spacing:0.075751px;}
.ls15{letter-spacing:0.077760px;}
.ls5f{letter-spacing:0.078156px;}
.ls3a{letter-spacing:0.084168px;}
.ls57{letter-spacing:0.084240px;}
.ls62{letter-spacing:0.085972px;}
.ls3f{letter-spacing:0.090180px;}
.ls65{letter-spacing:0.101603px;}
.ls1b{letter-spacing:0.108216px;}
.ls6a{letter-spacing:0.109418px;}
.ls5c{letter-spacing:0.112320px;}
.ls64{letter-spacing:0.117234px;}
.ls66{letter-spacing:0.125050px;}
.ls31{letter-spacing:0.140400px;}
.ls5a{letter-spacing:0.154440px;}
.lse{letter-spacing:0.159440px;}
.ls54{letter-spacing:0.161460px;}
.ls6b{letter-spacing:0.171943px;}
.lsc{letter-spacing:0.172368px;}
.ls2d{letter-spacing:0.177156px;}
.ls58{letter-spacing:0.189540px;}
.ls2b{letter-spacing:0.191520px;}
.ls69{letter-spacing:0.195390px;}
.ls51{letter-spacing:0.230303px;}
.ls73{letter-spacing:0.238680px;}
.ls4f{letter-spacing:0.248976px;}
.ls4{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.953933px;}
.ls9{letter-spacing:11.954850px;}
.ls7e{letter-spacing:12.748359px;}
.ls83{letter-spacing:13.282543px;}
.ls80{letter-spacing:13.423894px;}
.ls7f{letter-spacing:13.448400px;}
.ls7a{letter-spacing:13.450090px;}
.ls7c{letter-spacing:13.450800px;}
.ls81{letter-spacing:13.454400px;}
.ls84{letter-spacing:13.487337px;}
.ls7b{letter-spacing:14.094088px;}
.ls7d{letter-spacing:14.100088px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls6c{letter-spacing:1104.101996px;}
.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;}
}
.wsf{word-spacing:-69.058760px;}
.wscc{word-spacing:-19.539000px;}
.wscb{word-spacing:-17.557020px;}
.wsca{word-spacing:-17.550000px;}
.wsc8{word-spacing:-15.809976px;}
.wsc9{word-spacing:-15.561000px;}
.ws10{word-spacing:-14.943900px;}
.ws15{word-spacing:-14.355754px;}
.ws22{word-spacing:-13.449600px;}
.ws86{word-spacing:-12.161520px;}
.ws87{word-spacing:-11.970000px;}
.ws16{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws33{word-spacing:-10.945368px;}
.ws34{word-spacing:-10.773000px;}
.ws4{word-spacing:-10.460700px;}
.ws109{word-spacing:-3.765863px;}
.ws8b{word-spacing:-3.347434px;}
.wsd5{word-spacing:-3.227882px;}
.ws120{word-spacing:-3.168107px;}
.ws3d{word-spacing:-3.108331px;}
.ws3e{word-spacing:-3.048556px;}
.wsbb{word-spacing:-3.018024px;}
.ws10a{word-spacing:-2.988780px;}
.ws42{word-spacing:-2.630126px;}
.ws1f{word-spacing:-2.528525px;}
.ws10e{word-spacing:-2.450800px;}
.ws102{word-spacing:-2.336864px;}
.ws82{word-spacing:-2.331248px;}
.ws100{word-spacing:-2.243077px;}
.ws114{word-spacing:-1.972595px;}
.ws6b{word-spacing:-1.872137px;}
.ws10b{word-spacing:-1.853044px;}
.wsef{word-spacing:-1.813219px;}
.ws5c{word-spacing:-1.801796px;}
.ws101{word-spacing:-1.750694px;}
.wsa1{word-spacing:-1.749492px;}
.wsb8{word-spacing:-1.743480px;}
.ws117{word-spacing:-1.733492px;}
.ws5d{word-spacing:-1.715224px;}
.ws10d{word-spacing:-1.673717px;}
.ws149{word-spacing:-1.613952px;}
.ws10c{word-spacing:-1.613941px;}
.ws12a{word-spacing:-1.560154px;}
.ws6a{word-spacing:-1.558310px;}
.ws4b{word-spacing:-1.520435px;}
.ws77{word-spacing:-1.494390px;}
.ws7e{word-spacing:-1.434614px;}
.ws3c{word-spacing:-1.374839px;}
.wsf0{word-spacing:-1.367730px;}
.ws3b{word-spacing:-1.315063px;}
.ws12e{word-spacing:-1.291162px;}
.ws4c{word-spacing:-1.287770px;}
.ws41{word-spacing:-1.255288px;}
.ws6d{word-spacing:-1.239073px;}
.ws23{word-spacing:-1.237363px;}
.ws67{word-spacing:-1.222841px;}
.ws3a{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws40{word-spacing:-1.135736px;}
.ws20{word-spacing:-1.129766px;}
.ws12f{word-spacing:-1.075968px;}
.ws7a{word-spacing:-1.075961px;}
.wsba{word-spacing:-1.070136px;}
.ws7{word-spacing:-1.046070px;}
.ws21{word-spacing:-1.022170px;}
.ws11f{word-spacing:-1.016185px;}
.wsb5{word-spacing:-0.973944px;}
.ws133{word-spacing:-0.968371px;}
.ws29{word-spacing:-0.956410px;}
.ws66{word-spacing:-0.930658px;}
.ws1e{word-spacing:-0.914573px;}
.wsfa{word-spacing:-0.914425px;}
.ws79{word-spacing:-0.896634px;}
.ws18{word-spacing:-0.860774px;}
.ws2e{word-spacing:-0.836858px;}
.ws1a{word-spacing:-0.806976px;}
.ws43{word-spacing:-0.777083px;}
.ws24{word-spacing:-0.753178px;}
.ws135{word-spacing:-0.699379px;}
.wsc4{word-spacing:-0.655308px;}
.wsb3{word-spacing:-0.643284px;}
.wsb4{word-spacing:-0.637272px;}
.ws64{word-spacing:-0.595188px;}
.ws12c{word-spacing:-0.591782px;}
.ws4f{word-spacing:-0.568134px;}
.wsfd{word-spacing:-0.468936px;}
.ws128{word-spacing:-0.430387px;}
.ws65{word-spacing:-0.427453px;}
.wsee{word-spacing:-0.422042px;}
.wsd7{word-spacing:-0.361015px;}
.ws2f{word-spacing:-0.358654px;}
.ws52{word-spacing:-0.346291px;}
.ws9d{word-spacing:-0.330660px;}
.wsf4{word-spacing:-0.328255px;}
.wsac{word-spacing:-0.324648px;}
.ws1c{word-spacing:-0.322790px;}
.ws7d{word-spacing:-0.298878px;}
.ws90{word-spacing:-0.277704px;}
.wsd0{word-spacing:-0.268992px;}
.ws9e{word-spacing:-0.252504px;}
.ws48{word-spacing:-0.249934px;}
.wsad{word-spacing:-0.246492px;}
.ws39{word-spacing:-0.239102px;}
.ws50{word-spacing:-0.227254px;}
.ws9b{word-spacing:-0.222444px;}
.wsae{word-spacing:-0.216432px;}
.ws127{word-spacing:-0.215194px;}
.ws45{word-spacing:-0.179327px;}
.wscf{word-spacing:-0.161395px;}
.ws32{word-spacing:-0.119551px;}
.wsd8{word-spacing:-0.118264px;}
.ws129{word-spacing:-0.107597px;}
.ws91{word-spacing:-0.090972px;}
.ws49{word-spacing:-0.081875px;}
.ws11{word-spacing:-0.059776px;}
.ws25{word-spacing:-0.053798px;}
.ws145{word-spacing:-0.010512px;}
.ws14f{word-spacing:-0.007565px;}
.ws12{word-spacing:-0.005375px;}
.ws140{word-spacing:-0.003466px;}
.ws13f{word-spacing:-0.001594px;}
.ws3{word-spacing:-0.000743px;}
.ws1{word-spacing:0.000000px;}
.ws30{word-spacing:0.002129px;}
.ws94{word-spacing:0.006012px;}
.wsb1{word-spacing:0.012024px;}
.wsbe{word-spacing:0.048096px;}
.ws26{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.ws5e{word-spacing:0.064930px;}
.wsbf{word-spacing:0.066132px;}
.ws56{word-spacing:0.075751px;}
.wsa9{word-spacing:0.078156px;}
.ws5f{word-spacing:0.081162px;}
.ws55{word-spacing:0.087480px;}
.ws9a{word-spacing:0.102204px;}
.wsce{word-spacing:0.107597px;}
.wsed{word-spacing:0.109418px;}
.wsf2{word-spacing:0.117234px;}
.ws2d{word-spacing:0.119551px;}
.wsfc{word-spacing:0.125050px;}
.ws54{word-spacing:0.126360px;}
.wsf1{word-spacing:0.132865px;}
.ws53{word-spacing:0.136080px;}
.wsf5{word-spacing:0.148496px;}
.ws99{word-spacing:0.151200px;}
.ws76{word-spacing:0.156913px;}
.wscd{word-spacing:0.161395px;}
.wsc7{word-spacing:0.174348px;}
.wse0{word-spacing:0.175500px;}
.ws46{word-spacing:0.179327px;}
.ws98{word-spacing:0.189000px;}
.wsdf{word-spacing:0.196560px;}
.ws125{word-spacing:0.215194px;}
.ws6c{word-spacing:0.227254px;}
.ws47{word-spacing:0.239102px;}
.ws12d{word-spacing:0.268992px;}
.ws38{word-spacing:0.298878px;}
.ws13a{word-spacing:0.322790px;}
.ws68{word-spacing:0.367934px;}
.ws138{word-spacing:0.376589px;}
.ws4d{word-spacing:0.394988px;}
.wsb6{word-spacing:0.408816px;}
.ws4e{word-spacing:0.411221px;}
.wsaa{word-spacing:0.414828px;}
.ws13b{word-spacing:0.430387px;}
.ws1d{word-spacing:0.484186px;}
.ws113{word-spacing:0.537980px;}
.wsf3{word-spacing:0.578354px;}
.ws141{word-spacing:0.591782px;}
.wsd2{word-spacing:0.597756px;}
.wsb7{word-spacing:0.607212px;}
.ws7f{word-spacing:0.657532px;}
.ws108{word-spacing:0.673200px;}
.ws2c{word-spacing:0.717307px;}
.ws88{word-spacing:0.753178px;}
.ws11c{word-spacing:0.777083px;}
.ws44{word-spacing:0.956410px;}
.ws103{word-spacing:0.992581px;}
.ws6{word-spacing:1.004227px;}
.ws115{word-spacing:1.075961px;}
.ws132{word-spacing:1.075968px;}
.wsab{word-spacing:1.118232px;}
.ws124{word-spacing:1.129766px;}
.wsde{word-spacing:1.193400px;}
.wsdc{word-spacing:1.214460px;}
.wsdd{word-spacing:1.284660px;}
.ws11b{word-spacing:1.315063px;}
.ws147{word-spacing:1.344960px;}
.ws78{word-spacing:1.374839px;}
.ws123{word-spacing:1.452557px;}
.ws93{word-spacing:1.484964px;}
.wsd3{word-spacing:1.494390px;}
.ws12b{word-spacing:1.506355px;}
.wsbd{word-spacing:1.509012px;}
.wsa0{word-spacing:1.521036px;}
.ws9f{word-spacing:1.545084px;}
.wsb2{word-spacing:1.557108px;}
.ws126{word-spacing:1.560154px;}
.wse8{word-spacing:1.572480px;}
.wse7{word-spacing:1.656720px;}
.ws71{word-spacing:1.671937px;}
.ws70{word-spacing:1.682759px;}
.ws28{word-spacing:1.733492px;}
.ws8d{word-spacing:1.853044px;}
.ws83{word-spacing:1.912819px;}
.ws51{word-spacing:1.958710px;}
.ws69{word-spacing:1.974942px;}
.ws5a{word-spacing:1.985764px;}
.ws5b{word-spacing:2.012818px;}
.wse1{word-spacing:2.028780px;}
.wsdb{word-spacing:2.042820px;}
.wsda{word-spacing:2.063880px;}
.wse2{word-spacing:2.091960px;}
.ws11a{word-spacing:2.151922px;}
.ws152{word-spacing:2.151936px;}
.ws11d{word-spacing:2.211697px;}
.ws11e{word-spacing:2.271473px;}
.ws9c{word-spacing:2.272536px;}
.wsf6{word-spacing:2.344680px;}
.ws110{word-spacing:2.391024px;}
.wse3{word-spacing:2.400840px;}
.wsec{word-spacing:2.461914px;}
.ws2{word-spacing:2.510236px;}
.ws0{word-spacing:2.511541px;}
.ws144{word-spacing:2.528525px;}
.wsa2{word-spacing:2.555100px;}
.wsa3{word-spacing:2.591172px;}
.wsc1{word-spacing:2.597184px;}
.ws72{word-spacing:2.602595px;}
.ws89{word-spacing:2.630126px;}
.ws75{word-spacing:2.635060px;}
.ws6e{word-spacing:2.645881px;}
.ws6f{word-spacing:2.672935px;}
.ws119{word-spacing:2.689902px;}
.ws73{word-spacing:2.699989px;}
.ws85{word-spacing:2.749678px;}
.wseb{word-spacing:2.868325px;}
.ws17{word-spacing:2.869236px;}
.ws131{word-spacing:2.905114px;}
.wsaf{word-spacing:2.909808px;}
.ws8a{word-spacing:2.929004px;}
.wsfb{word-spacing:2.930850px;}
.ws59{word-spacing:2.981351px;}
.ws150{word-spacing:3.012710px;}
.ws142{word-spacing:3.066509px;}
.ws58{word-spacing:3.100388px;}
.ws134{word-spacing:3.120307px;}
.ws136{word-spacing:3.221232px;}
.ws148{word-spacing:3.221520px;}
.ws139{word-spacing:3.221731px;}
.ws14a{word-spacing:3.223296px;}
.ws14b{word-spacing:3.224045px;}
.ws14e{word-spacing:3.224102px;}
.ws146{word-spacing:3.225571px;}
.ws13d{word-spacing:3.227520px;}
.ws13c{word-spacing:3.227846px;}
.ws112{word-spacing:3.227882px;}
.ws137{word-spacing:3.227904px;}
.ws153{word-spacing:3.281702px;}
.ws143{word-spacing:3.287923px;}
.ws151{word-spacing:3.496896px;}
.wsa6{word-spacing:3.535056px;}
.wsf8{word-spacing:3.563914px;}
.ws27{word-spacing:3.586536px;}
.wsd6{word-spacing:3.646312px;}
.ws107{word-spacing:3.712090px;}
.ws97{word-spacing:3.720600px;}
.ws95{word-spacing:3.769200px;}
.ws96{word-spacing:3.812400px;}
.ws8c{word-spacing:3.825638px;}
.ws63{word-spacing:3.868722px;}
.wsf7{word-spacing:3.915616px;}
.ws62{word-spacing:3.939062px;}
.ws8f{word-spacing:4.004965px;}
.ws106{word-spacing:4.034880px;}
.ws2a{word-spacing:4.064741px;}
.ws130{word-spacing:4.250074px;}
.ws84{word-spacing:4.303843px;}
.ws7b{word-spacing:4.483170px;}
.ws19{word-spacing:4.519066px;}
.ws7c{word-spacing:4.542946px;}
.ws57{word-spacing:4.582948px;}
.wsd1{word-spacing:4.602721px;}
.ws80{word-spacing:4.662497px;}
.wsd{word-spacing:4.770079px;}
.ws122{word-spacing:4.841824px;}
.wse{word-spacing:4.853765px;}
.wsd4{word-spacing:4.961375px;}
.wsc0{word-spacing:5.007996px;}
.ws118{word-spacing:5.021150px;}
.wsb9{word-spacing:5.080140px;}
.ws2b{word-spacing:5.080926px;}
.wsb0{word-spacing:5.128236px;}
.ws74{word-spacing:5.210600px;}
.wse6{word-spacing:5.279040px;}
.wse5{word-spacing:5.363280px;}
.wse4{word-spacing:5.398380px;}
.ws8e{word-spacing:5.439580px;}
.ws3f{word-spacing:5.562929px;}
.ws13e{word-spacing:5.595034px;}
.wsea{word-spacing:5.666310px;}
.ws14c{word-spacing:5.702630px;}
.wse9{word-spacing:5.713204px;}
.wsc3{word-spacing:5.783544px;}
.wsa4{word-spacing:5.807592px;}
.wsa5{word-spacing:5.831640px;}
.ws14d{word-spacing:5.979163px;}
.wsbc{word-spacing:6.144264px;}
.wsc2{word-spacing:6.156288px;}
.ws1b{word-spacing:6.186816px;}
.ws121{word-spacing:6.216662px;}
.ws37{word-spacing:6.276438px;}
.ws81{word-spacing:6.515540px;}
.ws111{word-spacing:6.575316px;}
.ws36{word-spacing:6.939994px;}
.wsc6{word-spacing:6.949872px;}
.ws61{word-spacing:7.169310px;}
.wsc5{word-spacing:7.304580px;}
.ws35{word-spacing:7.316582px;}
.wsb{word-spacing:7.782761px;}
.wsa8{word-spacing:7.827624px;}
.ws10f{word-spacing:7.890379px;}
.wsa7{word-spacing:7.905780px;}
.wsf9{word-spacing:8.081330px;}
.ws116{word-spacing:8.129482px;}
.ws105{word-spacing:8.440848px;}
.ws104{word-spacing:8.464295px;}
.ws4a{word-spacing:10.458428px;}
.ws92{word-spacing:11.620476px;}
.ws9{word-spacing:12.176255px;}
.ws60{word-spacing:14.344031px;}
.wsd9{word-spacing:15.106619px;}
.wsa{word-spacing:16.109478px;}
.wsff{word-spacing:22.133779px;}
.wsfe{word-spacing:22.540190px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws14{word-spacing:40.042186px;}
._2a{margin-left:-20.643716px;}
._7{margin-left:-11.943245px;}
._e{margin-left:-7.663306px;}
._6{margin-left:-5.917824px;}
._c{margin-left:-4.889722px;}
._0{margin-left:-3.849538px;}
._1{margin-left:-2.343197px;}
._a{margin-left:-1.016237px;}
._18{width:1.064261px;}
._4{width:2.301354px;}
._8{width:3.697220px;}
._11{width:11.488925px;}
._3{width:12.971268px;}
._13{width:14.423904px;}
._12{width:15.768864px;}
._1a{width:16.988362px;}
._10{width:18.171792px;}
._d{width:19.421222px;}
._1c{width:20.921460px;}
._19{width:22.266605px;}
._14{width:23.910343px;}
._1b{width:24.926885px;}
._2{width:25.946136px;}
._28{width:27.018571px;}
._1e{width:28.094532px;}
._5{width:30.587087px;}
._b{width:33.576134px;}
._1f{width:34.849214px;}
._f{width:37.545350px;}
._27{width:43.158086px;}
._9{width:54.389952px;}
._29{width:88.767360px;}
._23{width:202.625165px;}
._21{width:212.156957px;}
._25{width:216.068765px;}
._24{width:292.920365px;}
._26{width:298.970765px;}
._22{width:303.747811px;}
._15{width:1147.567055px;}
._17{width:2002.679154px;}
._1d{width:2225.199060px;}
._16{width:2658.272700px;}
._20{width:2891.694517px;}
.fc4{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(118,201,43);}
.fc3{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:32.400000px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.092000px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fsb{font-size:48.600000px;}
.fs7{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsa{font-size:54.108000px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fs11{font-size:62.244000px;}
.fsd{font-size:62.286600px;}
.fs13{font-size:70.200000px;}
.fs12{font-size:78.156000px;}
.fs1{font-size:88.764473px;}
.fs3{font-size:107.596800px;}
.y116{bottom:-967.548465px;}
.yce{bottom:-806.320050px;}
.y134{bottom:-806.193660px;}
.y133{bottom:-777.410759px;}
.y132{bottom:-752.373484px;}
.yf7{bottom:-747.636900px;}
.yf6{bottom:-728.377458px;}
.y131{bottom:-727.453444px;}
.yf5{bottom:-709.208196px;}
.y130{bottom:-702.416169px;}
.yf4{bottom:-689.948754px;}
.y12f{bottom:-677.378894px;}
.yf3{bottom:-670.779492px;}
.y12e{bottom:-652.458854px;}
.yf2{bottom:-651.520050px;}
.yf1{bottom:-632.260050px;}
.yf0{bottom:-632.248242px;}
.y12d{bottom:-621.686883px;}
.yef{bottom:-613.078980px;}
.yee{bottom:-593.819538px;}
.yed{bottom:-574.560096px;}
.y12c{bottom:-573.249702px;}
.yec{bottom:-555.390834px;}
.y12b{bottom:-548.212427px;}
.yeb{bottom:-536.131392px;}
.y12a{bottom:-523.175153px;}
.y53{bottom:-517.149495px;}
.yea{bottom:-516.962130px;}
.y129{bottom:-498.255112px;}
.ye9{bottom:-497.702688px;}
.ye8{bottom:-478.443246px;}
.y128{bottom:-473.217837px;}
.ye7{bottom:-459.273984px;}
.y127{bottom:-448.180563px;}
.y75{bottom:-445.214659px;}
.ye6{bottom:-440.014542px;}
.y74{bottom:-427.881161px;}
.ye5{bottom:-420.845280px;}
.y126{bottom:-417.408592px;}
.y73{bottom:-410.628825px;}
.ye4{bottom:-401.585838px;}
.y72{bottom:-393.295327px;}
.ye3{bottom:-382.326396px;}
.y71{bottom:-375.961829px;}
.y125{bottom:-368.971411px;}
.ye2{bottom:-363.155631px;}
.y70{bottom:-358.709494px;}
.y124{bottom:-344.051370px;}
.ye1{bottom:-343.896189px;}
.y6f{bottom:-341.375996px;}
.ye0{bottom:-324.725424px;}
.y6e{bottom:-324.123660px;}
.y123{bottom:-319.014095px;}
.y6d{bottom:-306.790162px;}
.ydf{bottom:-305.465982px;}
.y122{bottom:-293.976821px;}
.y6c{bottom:-289.456664px;}
.yde{bottom:-286.206540px;}
.y6b{bottom:-272.204329px;}
.y121{bottom:-269.056780px;}
.ydd{bottom:-267.037278px;}
.y6a{bottom:-254.870831px;}
.ydc{bottom:-247.777836px;}
.y120{bottom:-244.019506px;}
.y69{bottom:-237.618495px;}
.y67{bottom:-237.617993px;}
.y68{bottom:-234.216495px;}
.ydb{bottom:-228.518394px;}
.y66{bottom:-220.284495px;}
.y64{bottom:-220.279856px;}
.y11f{bottom:-219.099465px;}
.y65{bottom:-216.882495px;}
.yda{bottom:-209.349132px;}
.y63{bottom:-202.946359px;}
.yd9{bottom:-190.089690px;}
.y62{bottom:-185.694023px;}
.y11e{bottom:-171.246465px;}
.yd8{bottom:-170.918925px;}
.y61{bottom:-168.360525px;}
.yd7{bottom:-151.659483px;}
.y60{bottom:-151.027027px;}
.y11d{bottom:-148.549050px;}
.y5f{bottom:-133.774691px;}
.yd6{bottom:-132.400041px;}
.y11c{bottom:-126.085050px;}
.y5e{bottom:-116.441194px;}
.yd5{bottom:-108.729294px;}
.y11b{bottom:-103.621050px;}
.y5d{bottom:-99.188858px;}
.yd4{bottom:-85.060050px;}
.y5c{bottom:-81.855360px;}
.y11a{bottom:-81.157050px;}
.y119{bottom:-58.575465px;}
.y5b{bottom:-48.726900px;}
.yd3{bottom:-48.160500px;}
.y118{bottom:-36.111465px;}
.y5a{bottom:-33.093495px;}
.yd2{bottom:-30.790050px;}
.y59{bottom:-12.923806px;}
.yd1{bottom:-8.380356px;}
.y117{bottom:-6.978009px;}
.y0{bottom:0.000000px;}
.y1d{bottom:6.804630px;}
.y4b{bottom:31.890000px;}
.yc4{bottom:100.468500px;}
.y1b{bottom:104.646000px;}
.y183{bottom:106.585500px;}
.y1da{bottom:109.435500px;}
.y4a{bottom:109.795500px;}
.yc3{bottom:119.298000px;}
.y1a{bottom:122.535000px;}
.y182{bottom:125.415000px;}
.y1d9{bottom:126.696000px;}
.y49{bottom:128.625000px;}
.yc2{bottom:138.127500px;}
.y19{bottom:140.422500px;}
.y1d8{bottom:143.956500px;}
.y181{bottom:144.244500px;}
.y48{bottom:147.454500px;}
.y91{bottom:150.318000px;}
.yc1{bottom:156.957000px;}
.y18{bottom:158.310000px;}
.y1d7{bottom:161.215500px;}
.y180{bottom:163.074000px;}
.y1ad{bottom:164.130000px;}
.y47{bottom:166.284000px;}
.y90{bottom:169.147500px;}
.y14b{bottom:170.863500px;}
.yc0{bottom:175.786500px;}
.y17{bottom:176.199000px;}
.y1d6{bottom:178.476000px;}
.y17f{bottom:181.903500px;}
.y112{bottom:181.909500px;}
.y1ac{bottom:182.959500px;}
.y46{bottom:185.113500px;}
.y8f{bottom:187.977000px;}
.y14a{bottom:189.693000px;}
.y16{bottom:194.086500px;}
.ybf{bottom:194.616000px;}
.y1d5{bottom:195.736500px;}
.y17e{bottom:200.733000px;}
.y111{bottom:200.739000px;}
.y1ab{bottom:201.789000px;}
.y45{bottom:203.943000px;}
.y8e{bottom:206.806500px;}
.y149{bottom:208.522500px;}
.y15{bottom:211.974000px;}
.y1d4{bottom:212.997000px;}
.ybe{bottom:217.927500px;}
.y17d{bottom:219.562500px;}
.y110{bottom:219.568500px;}
.y1aa{bottom:220.618500px;}
.y44{bottom:222.772500px;}
.y8d{bottom:225.636000px;}
.y14{bottom:229.863000px;}
.y1d3{bottom:230.257500px;}
.y148{bottom:231.834000px;}
.ybd{bottom:238.102500px;}
.y17c{bottom:238.392000px;}
.y10f{bottom:238.396500px;}
.y1a9{bottom:239.446500px;}
.y43{bottom:241.602000px;}
.y208{bottom:242.586000px;}
.y8c{bottom:244.465500px;}
.y1d2{bottom:247.518000px;}
.yd0{bottom:253.879617px;}
.y17b{bottom:257.221500px;}
.y10e{bottom:257.226000px;}
.y1a8{bottom:258.276000px;}
.y207{bottom:259.846500px;}
.y42{bottom:260.431500px;}
.y8b{bottom:263.295000px;}
.y1d1{bottom:264.778500px;}
.y147{bottom:265.458000px;}
.ybc{bottom:271.726500px;}
.ycf{bottom:273.050382px;}
.y17a{bottom:276.051000px;}
.y10d{bottom:276.055500px;}
.y1a7{bottom:277.105500px;}
.y1d0{bottom:282.039000px;}
.y8a{bottom:282.124500px;}
.y41{bottom:283.743000px;}
.y146{bottom:284.287500px;}
.ybb{bottom:290.556000px;}
.y206{bottom:294.366000px;}
.y179{bottom:294.880500px;}
.y10c{bottom:294.885000px;}
.y1a6{bottom:295.935000px;}
.y1cf{bottom:299.298000px;}
.y13{bottom:300.154500px;}
.y89{bottom:300.954000px;}
.y145{bottom:303.117000px;}
.yba{bottom:309.385500px;}
.y205{bottom:311.626500px;}
.y178{bottom:313.710000px;}
.y10b{bottom:313.714500px;}
.y1a5{bottom:314.764500px;}
.y1ce{bottom:316.558500px;}
.y12{bottom:318.043500px;}
.y88{bottom:319.783500px;}
.y144{bottom:321.946500px;}
.ycd{bottom:327.770085px;}
.yb9{bottom:328.215000px;}
.y204{bottom:328.887000px;}
.y177{bottom:332.538000px;}
.y10a{bottom:332.544000px;}
.y1a4{bottom:333.594000px;}
.y1cd{bottom:333.819000px;}
.y11{bottom:335.931000px;}
.ycc{bottom:337.399950px;}
.y87{bottom:338.613000px;}
.y143{bottom:340.776000px;}
.y203{bottom:346.147500px;}
.yb8{bottom:347.044500px;}
.y176{bottom:351.367500px;}
.y109{bottom:351.373500px;}
.y1a3{bottom:352.423500px;}
.y10{bottom:353.818500px;}
.y1cc{bottom:355.563000px;}
.y86{bottom:357.442500px;}
.y40{bottom:358.893000px;}
.y202{bottom:363.408000px;}
.y142{bottom:364.089000px;}
.yb7{bottom:365.874000px;}
.y175{bottom:370.197000px;}
.y108{bottom:370.203000px;}
.y1a2{bottom:371.253000px;}
.y85{bottom:376.272000px;}
.y3f{bottom:378.351000px;}
.y201{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.yb6{bottom:384.703500px;}
.y58{bottom:385.110874px;}
.y174{bottom:389.026500px;}
.y107{bottom:389.032500px;}
.y1cb{bottom:389.187000px;}
.y1a1{bottom:390.082500px;}
.y84{bottom:395.101500px;}
.y141{bottom:397.713000px;}
.y3e{bottom:397.807500px;}
.y200{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y57{bottom:402.363210px;}
.yb5{bottom:403.533000px;}
.y1ca{bottom:406.761000px;}
.y173{bottom:407.856000px;}
.y106{bottom:407.862000px;}
.y1a0{bottom:408.912000px;}
.y83{bottom:413.931000px;}
.y1ff{bottom:415.188000px;}
.yd{bottom:416.449500px;}
.y140{bottom:416.542500px;}
.y56{bottom:419.696708px;}
.yb4{bottom:422.362500px;}
.y1c9{bottom:424.335000px;}
.y172{bottom:426.685500px;}
.y105{bottom:426.691500px;}
.y19f{bottom:427.741500px;}
.y1fe{bottom:432.448500px;}
.y82{bottom:432.760500px;}
.y3d{bottom:435.198000px;}
.y13f{bottom:435.372000px;}
.y55{bottom:437.030205px;}
.yb3{bottom:441.192000px;}
.y1c8{bottom:441.909000px;}
.yc{bottom:444.798000px;}
.y171{bottom:445.515000px;}
.y104{bottom:445.521000px;}
.y19e{bottom:446.571000px;}
.y1fd{bottom:449.709000px;}
.y81{bottom:451.590000px;}
.y13e{bottom:454.201500px;}
.y54{bottom:454.283894px;}
.y3c{bottom:454.654500px;}
.y1c7{bottom:459.483000px;}
.yb2{bottom:460.021500px;}
.yb{bottom:462.685500px;}
.y170{bottom:464.344500px;}
.y103{bottom:464.350500px;}
.y19d{bottom:465.400500px;}
.y1fc{bottom:466.969500px;}
.y80{bottom:470.419500px;}
.y13d{bottom:473.031000px;}
.y3b{bottom:474.111000px;}
.y1c6{bottom:477.057000px;}
.yb1{bottom:478.851000px;}
.y16f{bottom:483.174000px;}
.y102{bottom:483.180000px;}
.y19c{bottom:484.230000px;}
.y7f{bottom:489.249000px;}
.ya{bottom:489.540000px;}
.y13c{bottom:491.860500px;}
.y3a{bottom:493.569000px;}
.y1c5{bottom:494.631000px;}
.yb0{bottom:497.680500px;}
.y1fb{bottom:501.490500px;}
.y16e{bottom:502.003500px;}
.y101{bottom:502.009500px;}
.y19b{bottom:503.059500px;}
.y52{bottom:503.531627px;}
.y115{bottom:506.768710px;}
.y9{bottom:507.429000px;}
.y7e{bottom:508.078500px;}
.y51{bottom:512.198505px;}
.y39{bottom:513.025500px;}
.y13b{bottom:515.172000px;}
.yaf{bottom:516.508500px;}
.y1fa{bottom:518.751000px;}
.y114{bottom:519.287535px;}
.y16d{bottom:520.833000px;}
.y100{bottom:520.839000px;}
.y1c4{bottom:521.172000px;}
.y19a{bottom:521.889000px;}
.y8{bottom:525.316500px;}
.y7d{bottom:526.908000px;}
.y38{bottom:532.483500px;}
.yae{bottom:535.338000px;}
.y1f9{bottom:536.011500px;}
.y1c3{bottom:538.746000px;}
.y16c{bottom:539.662500px;}
.yff{bottom:539.668500px;}
.y199{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.y13a{bottom:545.599500px;}
.y7c{bottom:545.737500px;}
.y37{bottom:551.940000px;}
.y1f8{bottom:553.272000px;}
.yad{bottom:554.167500px;}
.y1c2{bottom:556.320000px;}
.y16b{bottom:558.492000px;}
.yfe{bottom:558.498000px;}
.y198{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y7b{bottom:564.567000px;}
.y139{bottom:564.832500px;}
.y1f7{bottom:570.531000px;}
.y36{bottom:571.396500px;}
.yac{bottom:572.997000px;}
.y1c1{bottom:573.894000px;}
.y16a{bottom:577.321500px;}
.yfd{bottom:577.327500px;}
.y197{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y7a{bottom:583.396500px;}
.y138{bottom:584.065500px;}
.y1f6{bottom:587.791500px;}
.y35{bottom:590.854500px;}
.yab{bottom:591.826500px;}
.y169{bottom:596.151000px;}
.yfc{bottom:596.157000px;}
.y4{bottom:596.868000px;}
.y196{bottom:597.207000px;}
.y1c0{bottom:600.435000px;}
.y79{bottom:602.226000px;}
.y137{bottom:603.298500px;}
.y1f5{bottom:605.052000px;}
.y34{bottom:610.311000px;}
.y3{bottom:614.757000px;}
.y168{bottom:614.980500px;}
.yfb{bottom:614.986500px;}
.yaa{bottom:615.139500px;}
.y195{bottom:616.036500px;}
.y78{bottom:621.055500px;}
.y1f4{bottom:622.312500px;}
.y136{bottom:622.531500px;}
.y1bf{bottom:626.976000px;}
.y33{bottom:629.767500px;}
.y2{bottom:632.644500px;}
.y167{bottom:633.810000px;}
.yfa{bottom:633.816000px;}
.y194{bottom:634.866000px;}
.y1f3{bottom:639.573000px;}
.y135{bottom:641.764500px;}
.ya9{bottom:648.763500px;}
.y32{bottom:649.225500px;}
.y1{bottom:650.532000px;}
.y166{bottom:652.639500px;}
.y1be{bottom:653.515500px;}
.y193{bottom:653.695500px;}
.y77{bottom:654.621000px;}
.y1f2{bottom:656.833500px;}
.y113{bottom:667.182000px;}
.yf9{bottom:667.381500px;}
.ya8{bottom:667.593000px;}
.y31{bottom:668.682000px;}
.y1bd{bottom:671.089500px;}
.y165{bottom:671.469000px;}
.y192{bottom:672.525000px;}
.y76{bottom:673.854000px;}
.y1f1{bottom:674.094000px;}
.ya6{bottom:686.422500px;}
.yf8{bottom:686.614500px;}
.y1bc{bottom:688.665000px;}
.y191{bottom:691.354500px;}
.ya7{bottom:691.846500px;}
.y164{bottom:694.782000px;}
.y50{bottom:696.282000px;}
.y1bb{bottom:706.239000px;}
.y30{bottom:707.268000px;}
.y1f0{bottom:708.613500px;}
.ycb{bottom:709.044000px;}
.ya5{bottom:709.735500px;}
.y190{bottom:710.184000px;}
.y2f{bottom:723.408000px;}
.y1ba{bottom:723.813000px;}
.y1ef{bottom:725.874000px;}
.y163{bottom:728.406000px;}
.y18f{bottom:729.013500px;}
.y1b9{bottom:741.387000px;}
.y1ee{bottom:743.134500px;}
.ya4{bottom:743.359500px;}
.y2e{bottom:743.886000px;}
.y18e{bottom:747.843000px;}
.y2d{bottom:755.686500px;}
.y1ed{bottom:760.395000px;}
.ya3{bottom:762.189000px;}
.y18d{bottom:766.671000px;}
.y1b8{bottom:767.926500px;}
.y162{bottom:768.538500px;}
.y2c{bottom:776.166000px;}
.y1ec{bottom:777.655500px;}
.ya2{bottom:781.018500px;}
.y161{bottom:784.212000px;}
.y18c{bottom:785.500500px;}
.y1b7{bottom:785.502000px;}
.y2b{bottom:787.965000px;}
.y1eb{bottom:794.916000px;}
.ya1{bottom:799.848000px;}
.y160{bottom:800.650500px;}
.y1b6{bottom:803.076000px;}
.y18b{bottom:804.330000px;}
.y2a{bottom:808.444500px;}
.y1ea{bottom:812.176500px;}
.ya0{bottom:818.677500px;}
.y1b5{bottom:820.650000px;}
.y15d{bottom:822.208500px;}
.y18a{bottom:823.159500px;}
.y29{bottom:824.584500px;}
.y1e9{bottom:829.437000px;}
.y9f{bottom:837.507000px;}
.y15f{bottom:837.750000px;}
.y1b4{bottom:838.224000px;}
.y15c{bottom:838.647000px;}
.y28{bottom:840.724500px;}
.y189{bottom:841.989000px;}
.y1e8{bottom:846.697500px;}
.y27{bottom:852.523500px;}
.y15e{bottom:854.188500px;}
.y15b{bottom:855.085500px;}
.y9e{bottom:856.335000px;}
.y188{bottom:860.818500px;}
.y1e7{bottom:863.956500px;}
.y1b3{bottom:864.765000px;}
.y26{bottom:868.663500px;}
.y9d{bottom:875.164500px;}
.y187{bottom:879.648000px;}
.y1e6{bottom:881.217000px;}
.y1b2{bottom:882.339000px;}
.y15a{bottom:888.559500px;}
.y25{bottom:889.143000px;}
.y9c{bottom:893.994000px;}
.y186{bottom:898.477500px;}
.y1b1{bottom:899.913000px;}
.y159{bottom:904.998000px;}
.y9b{bottom:912.823500px;}
.y1e5{bottom:915.738000px;}
.y185{bottom:917.307000px;}
.y1b0{bottom:917.487000px;}
.y157{bottom:922.033500px;}
.y9a{bottom:931.653000px;}
.y1e4{bottom:932.998500px;}
.y24{bottom:933.819000px;}
.y1af{bottom:935.061000px;}
.y184{bottom:936.136500px;}
.y156{bottom:938.472000px;}
.y158{bottom:947.439000px;}
.y1e3{bottom:950.259000px;}
.y99{bottom:950.482500px;}
.y1ae{bottom:952.635000px;}
.y23{bottom:952.648500px;}
.y155{bottom:954.910500px;}
.yca{bottom:954.966000px;}
.y1e2{bottom:967.519500px;}
.y98{bottom:969.312000px;}
.y154{bottom:971.349000px;}
.y22{bottom:971.478000px;}
.yc9{bottom:973.795500px;}
.y1e1{bottom:984.780000px;}
.y97{bottom:988.141500px;}
.y152{bottom:989.878500px;}
.yc8{bottom:992.625000px;}
.y1e0{bottom:1002.040500px;}
.y151{bottom:1006.317000px;}
.y96{bottom:1006.971000px;}
.y21{bottom:1008.240000px;}
.yc7{bottom:1011.454500px;}
.y153{bottom:1014.537000px;}
.y1df{bottom:1019.299500px;}
.y150{bottom:1022.755500px;}
.y95{bottom:1025.800500px;}
.yc6{bottom:1030.284000px;}
.y20{bottom:1036.485000px;}
.y1de{bottom:1036.560000px;}
.y14f{bottom:1039.194000px;}
.y94{bottom:1044.630000px;}
.yc5{bottom:1049.113500px;}
.y1dd{bottom:1053.820500px;}
.y14e{bottom:1056.231000px;}
.y93{bottom:1063.459500px;}
.y1f{bottom:1064.728500px;}
.y4f{bottom:1067.943000px;}
.y1dc{bottom:1071.081000px;}
.y92{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y14d{bottom:1087.849500px;}
.y1db{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y14c{bottom:1107.082500px;}
.y1c{bottom:1147.156317px;}
.y4c{bottom:1168.366500px;}
.h3{height:25.246636px;}
.h13{height:30.137695px;}
.h8{height:32.565965px;}
.hc{height:37.334628px;}
.h2{height:37.993262px;}
.ha{height:38.896243px;}
.h14{height:39.497783px;}
.h10{height:40.083135px;}
.h24{height:41.245164px;}
.h17{height:41.250077px;}
.h16{height:41.482876px;}
.hd{height:43.217759px;}
.h1c{height:43.299316px;}
.h9{height:43.421105px;}
.h5{height:43.875290px;}
.h19{height:44.536816px;}
.h12{height:45.206543px;}
.hb{height:48.848947px;}
.h1b{height:50.229492px;}
.h11{height:50.329951px;}
.he{height:54.276245px;}
.h7{height:54.541601px;}
.h1a{height:55.922168px;}
.h21{height:56.289111px;}
.h25{height:57.523262px;}
.h1e{height:57.897861px;}
.h4{height:60.182313px;}
.h15{height:62.946077px;}
.h20{height:65.298340px;}
.h1f{height:72.698818px;}
.h6{height:77.792486px;}
.h22{height:81.722947px;}
.h23{height:84.710947px;}
.h18{height:222.282000px;}
.hf{height:356.988600px;}
.h1d{height:453.363300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:28.673133px;}
.w3{width:472.919850px;}
.w4{width:527.037000px;}
.w5{width:696.382050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3f{left:-267.779850px;}
.x1a{left:-112.575150px;}
.x37{left:-110.160000px;}
.x41{left:-13.538850px;}
.x0{left:0.000000px;}
.x42{left:27.879150px;}
.x1{left:53.574000px;}
.x1b{left:63.436869px;}
.x20{left:71.456850px;}
.x21{left:82.472850px;}
.x38{left:85.408910px;}
.x1d{left:92.111850px;}
.x3e{left:98.053500px;}
.x2{left:112.780079px;}
.x3a{left:117.269894px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x47{left:253.692000px;}
.x48{left:264.895500px;}
.x4{left:269.914500px;}
.x57{left:271.893000px;}
.x51{left:276.573000px;}
.x13{left:281.479500px;}
.x4f{left:282.913500px;}
.x50{left:284.037000px;}
.x52{left:285.718500px;}
.x6b{left:290.535000px;}
.x56{left:292.564500px;}
.x58{left:295.993500px;}
.x54{left:297.856500px;}
.xd{left:301.026000px;}
.x4d{left:304.432500px;}
.x6c{left:305.479500px;}
.x6{left:307.275000px;}
.x75{left:310.144500px;}
.x9{left:314.830500px;}
.x12{left:319.881000px;}
.x22{left:321.771000px;}
.x18{left:326.679000px;}
.xa{left:328.989000px;}
.x3b{left:330.570000px;}
.x23{left:333.054000px;}
.x2c{left:336.411000px;}
.x24{left:340.525500px;}
.x32{left:360.576000px;}
.x76{left:367.302000px;}
.x74{left:373.006500px;}
.x33{left:375.519000px;}
.x19{left:376.585500px;}
.x49{left:384.220500px;}
.x2d{left:386.626500px;}
.x4a{left:392.439000px;}
.x30{left:400.645500px;}
.x5a{left:407.659500px;}
.x31{left:409.680000px;}
.x34{left:411.513000px;}
.x77{left:417.213000px;}
.x53{left:422.248500px;}
.x4e{left:424.704000px;}
.x35{left:426.009000px;}
.x2e{left:436.537500px;}
.xe{left:452.494500px;}
.x59{left:461.622000px;}
.x55{left:464.985000px;}
.xf{left:466.666500px;}
.x2f{left:468.829500px;}
.x45{left:475.170000px;}
.x6f{left:477.444000px;}
.x36{left:481.689000px;}
.x46{left:484.881000px;}
.x7{left:489.888000px;}
.x1e{left:492.575850px;}
.x1f{left:500.594850px;}
.x8{left:503.619000px;}
.x70{left:514.758000px;}
.x1c{left:519.464999px;}
.x71{left:529.702500px;}
.x3c{left:536.947500px;}
.x3d{left:543.672000px;}
.x39{left:586.887494px;}
.x6d{left:599.268000px;}
.x27{left:603.583500px;}
.x25{left:611.647500px;}
.x6e{left:614.211000px;}
.x26{left:618.895500px;}
.x28{left:626.292000px;}
.x65{left:631.617000px;}
.x5b{left:633.474000px;}
.x5c{left:641.383500px;}
.x5d{left:646.117500px;}
.x72{left:647.971500px;}
.x5e{left:655.771500px;}
.x43{left:661.077000px;}
.x5f{left:662.943000px;}
.x44{left:670.047000px;}
.x2a{left:676.783500px;}
.x79{left:689.074500px;}
.x2b{left:691.726500px;}
.x61{left:711.277500px;}
.x40{left:713.729356px;}
.x29{left:720.489000px;}
.x73{left:724.828500px;}
.x62{left:726.222000px;}
.x63{left:730.032000px;}
.x60{left:738.309000px;}
.x7b{left:743.808000px;}
.x64{left:744.976500px;}
.x10{left:746.914500px;}
.x4b{left:752.808000px;}
.x4c{left:760.285500px;}
.x78{left:765.823500px;}
.xb{left:770.293500px;}
.xc{left:784.452000px;}
.x11{left:790.522500px;}
.x66{left:796.099500px;}
.x69{left:797.184000px;}
.x67{left:800.991000px;}
.x14{left:810.076500px;}
.x6a{left:812.127000px;}
.x68{left:815.935500px;}
.x15{left:817.548000px;}
.x16{left:825.169500px;}
.x17{left:832.642500px;}
.x7a{left:837.292500px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.656000pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.221333pt;}
.ls71{letter-spacing:-0.255840pt;}
.ls26{letter-spacing:-0.253440pt;}
.ls47{letter-spacing:-0.219104pt;}
.ls4c{letter-spacing:-0.203072pt;}
.ls46{letter-spacing:-0.176352pt;}
.ls48{letter-spacing:-0.149632pt;}
.ls79{letter-spacing:-0.145891pt;}
.ls4a{letter-spacing:-0.133600pt;}
.ls25{letter-spacing:-0.125050pt;}
.ls27{letter-spacing:-0.120240pt;}
.ls4b{letter-spacing:-0.112224pt;}
.ls21{letter-spacing:-0.110621pt;}
.ls6f{letter-spacing:-0.093600pt;}
.ls23{letter-spacing:-0.086573pt;}
.ls4d{letter-spacing:-0.069472pt;}
.ls29{letter-spacing:-0.062525pt;}
.ls24{letter-spacing:-0.048096pt;}
.ls49{letter-spacing:-0.042752pt;}
.ls78{letter-spacing:-0.041683pt;}
.ls43{letter-spacing:-0.037408pt;}
.ls6e{letter-spacing:-0.031200pt;}
.ls40{letter-spacing:-0.024000pt;}
.ls77{letter-spacing:-0.020842pt;}
.ls28{letter-spacing:-0.019238pt;}
.ls44{letter-spacing:-0.016032pt;}
.ls20{letter-spacing:-0.014429pt;}
.ls76{letter-spacing:-0.013894pt;}
.ls70{letter-spacing:-0.012480pt;}
.ls45{letter-spacing:-0.010688pt;}
.ls22{letter-spacing:-0.009619pt;}
.ls75{letter-spacing:-0.006947pt;}
.ls72{letter-spacing:-0.006240pt;}
.ls42{letter-spacing:-0.005344pt;}
.ls41{letter-spacing:-0.004800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls85{letter-spacing:0.001512pt;}
.ls6{letter-spacing:0.001735pt;}
.ls1{letter-spacing:0.002422pt;}
.ls3e{letter-spacing:0.002825pt;}
.ls6d{letter-spacing:0.002899pt;}
.lsd{letter-spacing:0.003830pt;}
.ls2c{letter-spacing:0.004256pt;}
.ls82{letter-spacing:0.004267pt;}
.ls11{letter-spacing:0.004810pt;}
.ls50{letter-spacing:0.005533pt;}
.ls5d{letter-spacing:0.006240pt;}
.ls63{letter-spacing:0.006947pt;}
.ls2f{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.009619pt;}
.ls39{letter-spacing:0.010688pt;}
.ls61{letter-spacing:0.013894pt;}
.ls2e{letter-spacing:0.014400pt;}
.ls10{letter-spacing:0.014429pt;}
.ls34{letter-spacing:0.016032pt;}
.ls59{letter-spacing:0.018720pt;}
.ls18{letter-spacing:0.019238pt;}
.ls68{letter-spacing:0.020842pt;}
.ls37{letter-spacing:0.021376pt;}
.ls1e{letter-spacing:0.024048pt;}
.ls5b{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.025920pt;}
.ls3c{letter-spacing:0.026720pt;}
.ls5e{letter-spacing:0.027789pt;}
.ls32{letter-spacing:0.028800pt;}
.ls1c{letter-spacing:0.028858pt;}
.ls74{letter-spacing:0.031200pt;}
.ls3b{letter-spacing:0.032064pt;}
.ls1a{letter-spacing:0.033667pt;}
.lsb{letter-spacing:0.034474pt;}
.ls14{letter-spacing:0.034560pt;}
.ls35{letter-spacing:0.037408pt;}
.ls55{letter-spacing:0.037440pt;}
.ls2a{letter-spacing:0.038304pt;}
.ls17{letter-spacing:0.038477pt;}
.ls38{letter-spacing:0.042752pt;}
.ls19{letter-spacing:0.043286pt;}
.ls52{letter-spacing:0.043680pt;}
.ls1d{letter-spacing:0.048096pt;}
.ls67{letter-spacing:0.048630pt;}
.ls4e{letter-spacing:0.049795pt;}
.ls1f{letter-spacing:0.052906pt;}
.ls36{letter-spacing:0.053440pt;}
.ls60{letter-spacing:0.055578pt;}
.ls56{letter-spacing:0.056160pt;}
.ls30{letter-spacing:0.057600pt;}
.ls33{letter-spacing:0.058784pt;}
.ls53{letter-spacing:0.062400pt;}
.ls12{letter-spacing:0.062525pt;}
.ls3d{letter-spacing:0.064128pt;}
.lsf{letter-spacing:0.067334pt;}
.ls15{letter-spacing:0.069120pt;}
.ls5f{letter-spacing:0.069472pt;}
.ls3a{letter-spacing:0.074816pt;}
.ls57{letter-spacing:0.074880pt;}
.ls62{letter-spacing:0.076419pt;}
.ls3f{letter-spacing:0.080160pt;}
.ls65{letter-spacing:0.090314pt;}
.ls1b{letter-spacing:0.096192pt;}
.ls6a{letter-spacing:0.097261pt;}
.ls5c{letter-spacing:0.099840pt;}
.ls64{letter-spacing:0.104208pt;}
.ls66{letter-spacing:0.111155pt;}
.ls31{letter-spacing:0.124800pt;}
.ls5a{letter-spacing:0.137280pt;}
.lse{letter-spacing:0.141725pt;}
.ls54{letter-spacing:0.143520pt;}
.ls6b{letter-spacing:0.152838pt;}
.lsc{letter-spacing:0.153216pt;}
.ls2d{letter-spacing:0.157472pt;}
.ls58{letter-spacing:0.168480pt;}
.ls2b{letter-spacing:0.170240pt;}
.ls69{letter-spacing:0.173680pt;}
.ls51{letter-spacing:0.204714pt;}
.ls73{letter-spacing:0.212160pt;}
.ls4f{letter-spacing:0.221312pt;}
.ls4{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.625718pt;}
.ls9{letter-spacing:10.626533pt;}
.ls7e{letter-spacing:11.331875pt;}
.ls83{letter-spacing:11.806705pt;}
.ls80{letter-spacing:11.932350pt;}
.ls7f{letter-spacing:11.954133pt;}
.ls7a{letter-spacing:11.955635pt;}
.ls7c{letter-spacing:11.956267pt;}
.ls81{letter-spacing:11.959467pt;}
.ls84{letter-spacing:11.988744pt;}
.ls7b{letter-spacing:12.528078pt;}
.ls7d{letter-spacing:12.533411pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls6c{letter-spacing:981.423997pt;}
.wsf{word-spacing:-61.385564pt;}
.wscc{word-spacing:-17.368000pt;}
.wscb{word-spacing:-15.606240pt;}
.wsca{word-spacing:-15.600000pt;}
.wsc8{word-spacing:-14.053312pt;}
.wsc9{word-spacing:-13.832000pt;}
.ws10{word-spacing:-13.283467pt;}
.ws15{word-spacing:-12.760670pt;}
.ws22{word-spacing:-11.955200pt;}
.ws86{word-spacing:-10.810240pt;}
.ws87{word-spacing:-10.640000pt;}
.ws16{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws33{word-spacing:-9.729216pt;}
.ws34{word-spacing:-9.576000pt;}
.ws4{word-spacing:-9.298400pt;}
.ws109{word-spacing:-3.347434pt;}
.ws8b{word-spacing:-2.975497pt;}
.wsd5{word-spacing:-2.869229pt;}
.ws120{word-spacing:-2.816095pt;}
.ws3d{word-spacing:-2.762961pt;}
.ws3e{word-spacing:-2.709827pt;}
.wsbb{word-spacing:-2.682688pt;}
.ws10a{word-spacing:-2.656693pt;}
.ws42{word-spacing:-2.337890pt;}
.ws1f{word-spacing:-2.247578pt;}
.ws10e{word-spacing:-2.178489pt;}
.ws102{word-spacing:-2.077213pt;}
.ws82{word-spacing:-2.072221pt;}
.ws100{word-spacing:-1.993846pt;}
.ws114{word-spacing:-1.753418pt;}
.ws6b{word-spacing:-1.664122pt;}
.ws10b{word-spacing:-1.647150pt;}
.wsef{word-spacing:-1.611750pt;}
.ws5c{word-spacing:-1.601597pt;}
.ws101{word-spacing:-1.556173pt;}
.wsa1{word-spacing:-1.555104pt;}
.wsb8{word-spacing:-1.549760pt;}
.ws117{word-spacing:-1.540882pt;}
.ws5d{word-spacing:-1.524643pt;}
.ws10d{word-spacing:-1.487748pt;}
.ws149{word-spacing:-1.434624pt;}
.ws10c{word-spacing:-1.434614pt;}
.ws12a{word-spacing:-1.386803pt;}
.ws6a{word-spacing:-1.385165pt;}
.ws4b{word-spacing:-1.351498pt;}
.ws77{word-spacing:-1.328347pt;}
.ws7e{word-spacing:-1.275213pt;}
.ws3c{word-spacing:-1.222079pt;}
.wsf0{word-spacing:-1.215760pt;}
.ws3b{word-spacing:-1.168945pt;}
.ws12e{word-spacing:-1.147699pt;}
.ws4c{word-spacing:-1.144685pt;}
.ws41{word-spacing:-1.115811pt;}
.ws6d{word-spacing:-1.101398pt;}
.ws23{word-spacing:-1.099878pt;}
.ws67{word-spacing:-1.086970pt;}
.ws3a{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws40{word-spacing:-1.009543pt;}
.ws20{word-spacing:-1.004237pt;}
.ws12f{word-spacing:-0.956416pt;}
.ws7a{word-spacing:-0.956410pt;}
.wsba{word-spacing:-0.951232pt;}
.ws7{word-spacing:-0.929840pt;}
.ws21{word-spacing:-0.908595pt;}
.ws11f{word-spacing:-0.903276pt;}
.wsb5{word-spacing:-0.865728pt;}
.ws133{word-spacing:-0.860774pt;}
.ws29{word-spacing:-0.850142pt;}
.ws66{word-spacing:-0.827251pt;}
.ws1e{word-spacing:-0.812954pt;}
.wsfa{word-spacing:-0.812822pt;}
.ws79{word-spacing:-0.797008pt;}
.ws18{word-spacing:-0.765133pt;}
.ws2e{word-spacing:-0.743874pt;}
.ws1a{word-spacing:-0.717312pt;}
.ws43{word-spacing:-0.690740pt;}
.ws24{word-spacing:-0.669491pt;}
.ws135{word-spacing:-0.621670pt;}
.wsc4{word-spacing:-0.582496pt;}
.wsb3{word-spacing:-0.571808pt;}
.wsb4{word-spacing:-0.566464pt;}
.ws64{word-spacing:-0.529056pt;}
.ws12c{word-spacing:-0.526029pt;}
.ws4f{word-spacing:-0.505008pt;}
.wsfd{word-spacing:-0.416832pt;}
.ws128{word-spacing:-0.382566pt;}
.ws65{word-spacing:-0.379958pt;}
.wsee{word-spacing:-0.375149pt;}
.wsd7{word-spacing:-0.320902pt;}
.ws2f{word-spacing:-0.318803pt;}
.ws52{word-spacing:-0.307814pt;}
.ws9d{word-spacing:-0.293920pt;}
.wsf4{word-spacing:-0.291782pt;}
.wsac{word-spacing:-0.288576pt;}
.ws1c{word-spacing:-0.286925pt;}
.ws7d{word-spacing:-0.265669pt;}
.ws90{word-spacing:-0.246848pt;}
.wsd0{word-spacing:-0.239104pt;}
.ws9e{word-spacing:-0.224448pt;}
.ws48{word-spacing:-0.222163pt;}
.wsad{word-spacing:-0.219104pt;}
.ws39{word-spacing:-0.212535pt;}
.ws50{word-spacing:-0.202003pt;}
.ws9b{word-spacing:-0.197728pt;}
.wsae{word-spacing:-0.192384pt;}
.ws127{word-spacing:-0.191283pt;}
.ws45{word-spacing:-0.159402pt;}
.wscf{word-spacing:-0.143462pt;}
.ws32{word-spacing:-0.106268pt;}
.wsd8{word-spacing:-0.105123pt;}
.ws129{word-spacing:-0.095642pt;}
.ws91{word-spacing:-0.080864pt;}
.ws49{word-spacing:-0.072778pt;}
.ws11{word-spacing:-0.053134pt;}
.ws25{word-spacing:-0.047821pt;}
.ws145{word-spacing:-0.009344pt;}
.ws14f{word-spacing:-0.006724pt;}
.ws12{word-spacing:-0.004778pt;}
.ws140{word-spacing:-0.003081pt;}
.ws13f{word-spacing:-0.001417pt;}
.ws3{word-spacing:-0.000660pt;}
.ws1{word-spacing:0.000000pt;}
.ws30{word-spacing:0.001893pt;}
.ws94{word-spacing:0.005344pt;}
.wsb1{word-spacing:0.010688pt;}
.wsbe{word-spacing:0.042752pt;}
.ws26{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.ws5e{word-spacing:0.057715pt;}
.wsbf{word-spacing:0.058784pt;}
.ws56{word-spacing:0.067334pt;}
.wsa9{word-spacing:0.069472pt;}
.ws5f{word-spacing:0.072144pt;}
.ws55{word-spacing:0.077760pt;}
.ws9a{word-spacing:0.090848pt;}
.wsce{word-spacing:0.095642pt;}
.wsed{word-spacing:0.097261pt;}
.wsf2{word-spacing:0.104208pt;}
.ws2d{word-spacing:0.106268pt;}
.wsfc{word-spacing:0.111155pt;}
.ws54{word-spacing:0.112320pt;}
.wsf1{word-spacing:0.118102pt;}
.ws53{word-spacing:0.120960pt;}
.wsf5{word-spacing:0.131997pt;}
.ws99{word-spacing:0.134400pt;}
.ws76{word-spacing:0.139478pt;}
.wscd{word-spacing:0.143462pt;}
.wsc7{word-spacing:0.154976pt;}
.wse0{word-spacing:0.156000pt;}
.ws46{word-spacing:0.159402pt;}
.ws98{word-spacing:0.168000pt;}
.wsdf{word-spacing:0.174720pt;}
.ws125{word-spacing:0.191283pt;}
.ws6c{word-spacing:0.202003pt;}
.ws47{word-spacing:0.212535pt;}
.ws12d{word-spacing:0.239104pt;}
.ws38{word-spacing:0.265669pt;}
.ws13a{word-spacing:0.286925pt;}
.ws68{word-spacing:0.327053pt;}
.ws138{word-spacing:0.334746pt;}
.ws4d{word-spacing:0.351101pt;}
.wsb6{word-spacing:0.363392pt;}
.ws4e{word-spacing:0.365530pt;}
.wsaa{word-spacing:0.368736pt;}
.ws13b{word-spacing:0.382566pt;}
.ws1d{word-spacing:0.430387pt;}
.ws113{word-spacing:0.478205pt;}
.wsf3{word-spacing:0.514093pt;}
.ws141{word-spacing:0.526029pt;}
.wsd2{word-spacing:0.531339pt;}
.wsb7{word-spacing:0.539744pt;}
.ws7f{word-spacing:0.584473pt;}
.ws108{word-spacing:0.598400pt;}
.ws2c{word-spacing:0.637606pt;}
.ws88{word-spacing:0.669491pt;}
.ws11c{word-spacing:0.690740pt;}
.ws44{word-spacing:0.850142pt;}
.ws103{word-spacing:0.882294pt;}
.ws6{word-spacing:0.892646pt;}
.ws115{word-spacing:0.956410pt;}
.ws132{word-spacing:0.956416pt;}
.wsab{word-spacing:0.993984pt;}
.ws124{word-spacing:1.004237pt;}
.wsde{word-spacing:1.060800pt;}
.wsdc{word-spacing:1.079520pt;}
.wsdd{word-spacing:1.141920pt;}
.ws11b{word-spacing:1.168945pt;}
.ws147{word-spacing:1.195520pt;}
.ws78{word-spacing:1.222079pt;}
.ws123{word-spacing:1.291162pt;}
.ws93{word-spacing:1.319968pt;}
.wsd3{word-spacing:1.328347pt;}
.ws12b{word-spacing:1.338982pt;}
.wsbd{word-spacing:1.341344pt;}
.wsa0{word-spacing:1.352032pt;}
.ws9f{word-spacing:1.373408pt;}
.wsb2{word-spacing:1.384096pt;}
.ws126{word-spacing:1.386803pt;}
.wse8{word-spacing:1.397760pt;}
.wse7{word-spacing:1.472640pt;}
.ws71{word-spacing:1.486166pt;}
.ws70{word-spacing:1.495786pt;}
.ws28{word-spacing:1.540882pt;}
.ws8d{word-spacing:1.647150pt;}
.ws83{word-spacing:1.700284pt;}
.ws51{word-spacing:1.741075pt;}
.ws69{word-spacing:1.755504pt;}
.ws5a{word-spacing:1.765123pt;}
.ws5b{word-spacing:1.789171pt;}
.wse1{word-spacing:1.803360pt;}
.wsdb{word-spacing:1.815840pt;}
.wsda{word-spacing:1.834560pt;}
.wse2{word-spacing:1.859520pt;}
.ws11a{word-spacing:1.912819pt;}
.ws152{word-spacing:1.912832pt;}
.ws11d{word-spacing:1.965953pt;}
.ws11e{word-spacing:2.019087pt;}
.ws9c{word-spacing:2.020032pt;}
.wsf6{word-spacing:2.084160pt;}
.ws110{word-spacing:2.125355pt;}
.wse3{word-spacing:2.134080pt;}
.wsec{word-spacing:2.188368pt;}
.ws2{word-spacing:2.231321pt;}
.ws0{word-spacing:2.232481pt;}
.ws144{word-spacing:2.247578pt;}
.wsa2{word-spacing:2.271200pt;}
.wsa3{word-spacing:2.303264pt;}
.wsc1{word-spacing:2.308608pt;}
.ws72{word-spacing:2.313418pt;}
.ws89{word-spacing:2.337890pt;}
.ws75{word-spacing:2.342275pt;}
.ws6e{word-spacing:2.351894pt;}
.ws6f{word-spacing:2.375942pt;}
.ws119{word-spacing:2.391024pt;}
.ws73{word-spacing:2.399990pt;}
.ws85{word-spacing:2.444158pt;}
.wseb{word-spacing:2.549622pt;}
.ws17{word-spacing:2.550432pt;}
.ws131{word-spacing:2.582323pt;}
.wsaf{word-spacing:2.586496pt;}
.ws8a{word-spacing:2.603559pt;}
.wsfb{word-spacing:2.605200pt;}
.ws59{word-spacing:2.650090pt;}
.ws150{word-spacing:2.677965pt;}
.ws142{word-spacing:2.725786pt;}
.ws58{word-spacing:2.755901pt;}
.ws134{word-spacing:2.773606pt;}
.ws136{word-spacing:2.863317pt;}
.ws148{word-spacing:2.863573pt;}
.ws139{word-spacing:2.863761pt;}
.ws14a{word-spacing:2.865152pt;}
.ws14b{word-spacing:2.865818pt;}
.ws14e{word-spacing:2.865869pt;}
.ws146{word-spacing:2.867174pt;}
.ws13d{word-spacing:2.868907pt;}
.ws13c{word-spacing:2.869197pt;}
.ws112{word-spacing:2.869229pt;}
.ws137{word-spacing:2.869248pt;}
.ws153{word-spacing:2.917069pt;}
.ws143{word-spacing:2.922598pt;}
.ws151{word-spacing:3.108352pt;}
.wsa6{word-spacing:3.142272pt;}
.wsf8{word-spacing:3.167923pt;}
.ws27{word-spacing:3.188032pt;}
.wsd6{word-spacing:3.241166pt;}
.ws107{word-spacing:3.299635pt;}
.ws97{word-spacing:3.307200pt;}
.ws95{word-spacing:3.350400pt;}
.ws96{word-spacing:3.388800pt;}
.ws8c{word-spacing:3.400567pt;}
.ws63{word-spacing:3.438864pt;}
.wsf7{word-spacing:3.480547pt;}
.ws62{word-spacing:3.501389pt;}
.ws8f{word-spacing:3.559969pt;}
.ws106{word-spacing:3.586560pt;}
.ws2a{word-spacing:3.613103pt;}
.ws130{word-spacing:3.777843pt;}
.ws84{word-spacing:3.825638pt;}
.ws7b{word-spacing:3.985040pt;}
.ws19{word-spacing:4.016947pt;}
.ws7c{word-spacing:4.038174pt;}
.ws57{word-spacing:4.073731pt;}
.wsd1{word-spacing:4.091308pt;}
.ws80{word-spacing:4.144442pt;}
.wsd{word-spacing:4.240070pt;}
.ws122{word-spacing:4.303843pt;}
.wse{word-spacing:4.314458pt;}
.wsd4{word-spacing:4.410111pt;}
.wsc0{word-spacing:4.451552pt;}
.ws118{word-spacing:4.463245pt;}
.wsb9{word-spacing:4.515680pt;}
.ws2b{word-spacing:4.516379pt;}
.wsb0{word-spacing:4.558432pt;}
.ws74{word-spacing:4.631645pt;}
.wse6{word-spacing:4.692480pt;}
.wse5{word-spacing:4.767360pt;}
.wse4{word-spacing:4.798560pt;}
.ws8e{word-spacing:4.835182pt;}
.ws3f{word-spacing:4.944826pt;}
.ws13e{word-spacing:4.973363pt;}
.wsea{word-spacing:5.036720pt;}
.ws14c{word-spacing:5.069005pt;}
.wse9{word-spacing:5.078403pt;}
.wsc3{word-spacing:5.140928pt;}
.wsa4{word-spacing:5.162304pt;}
.wsa5{word-spacing:5.183680pt;}
.ws14d{word-spacing:5.314812pt;}
.wsbc{word-spacing:5.461568pt;}
.wsc2{word-spacing:5.472256pt;}
.ws1b{word-spacing:5.499392pt;}
.ws121{word-spacing:5.525922pt;}
.ws37{word-spacing:5.579056pt;}
.ws81{word-spacing:5.791591pt;}
.ws111{word-spacing:5.844725pt;}
.ws36{word-spacing:6.168883pt;}
.wsc6{word-spacing:6.177664pt;}
.ws61{word-spacing:6.372720pt;}
.wsc5{word-spacing:6.492960pt;}
.ws35{word-spacing:6.503629pt;}
.wsb{word-spacing:6.918010pt;}
.wsa8{word-spacing:6.957888pt;}
.ws10f{word-spacing:7.013670pt;}
.wsa7{word-spacing:7.027360pt;}
.wsf9{word-spacing:7.183405pt;}
.ws116{word-spacing:7.226206pt;}
.ws105{word-spacing:7.502976pt;}
.ws104{word-spacing:7.523818pt;}
.ws4a{word-spacing:9.296381pt;}
.ws92{word-spacing:10.329312pt;}
.ws9{word-spacing:10.823338pt;}
.ws60{word-spacing:12.750250pt;}
.wsd9{word-spacing:13.428106pt;}
.wsa{word-spacing:14.319536pt;}
.wsff{word-spacing:19.674470pt;}
.wsfe{word-spacing:20.035725pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws14{word-spacing:35.593054pt;}
._2a{margin-left:-18.349970pt;}
._7{margin-left:-10.616218pt;}
._e{margin-left:-6.811827pt;}
._6{margin-left:-5.260288pt;}
._c{margin-left:-4.346419pt;}
._0{margin-left:-3.421811pt;}
._1{margin-left:-2.082842pt;}
._a{margin-left:-0.903322pt;}
._18{width:0.946010pt;}
._4{width:2.045648pt;}
._8{width:3.286418pt;}
._11{width:10.212378pt;}
._3{width:11.530016pt;}
._13{width:12.821248pt;}
._12{width:14.016768pt;}
._1a{width:15.100766pt;}
._10{width:16.152704pt;}
._d{width:17.263309pt;}
._1c{width:18.596853pt;}
._19{width:19.792538pt;}
._14{width:21.253638pt;}
._1b{width:22.157231pt;}
._2{width:23.063232pt;}
._28{width:24.016508pt;}
._1e{width:24.972917pt;}
._5{width:27.188522pt;}
._b{width:29.845453pt;}
._1f{width:30.977079pt;}
._f{width:33.373645pt;}
._27{width:38.362743pt;}
._9{width:48.346624pt;}
._29{width:78.904320pt;}
._23{width:180.111258pt;}
._21{width:188.583962pt;}
._25{width:192.061124pt;}
._24{width:260.373658pt;}
._26{width:265.751791pt;}
._22{width:269.998054pt;}
._15{width:1020.059605pt;}
._17{width:1780.159248pt;}
._1d{width:1977.954720pt;}
._16{width:2362.909067pt;}
._20{width:2570.395126pt;}
.fsc{font-size:28.800000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.304000pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fsb{font-size:43.200000pt;}
.fs7{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsa{font-size:48.096000pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fs11{font-size:55.328000pt;}
.fsd{font-size:55.365867pt;}
.fs13{font-size:62.400000pt;}
.fs12{font-size:69.472000pt;}
.fs1{font-size:78.901754pt;}
.fs3{font-size:95.641600pt;}
.y116{bottom:-860.043080pt;}
.yce{bottom:-716.728933pt;}
.y134{bottom:-716.616586pt;}
.y133{bottom:-691.031786pt;}
.y132{bottom:-668.776430pt;}
.yf7{bottom:-664.566133pt;}
.yf6{bottom:-647.446629pt;}
.y131{bottom:-646.625283pt;}
.yf5{bottom:-630.407285pt;}
.y130{bottom:-624.369928pt;}
.yf4{bottom:-613.287781pt;}
.y12f{bottom:-602.114573pt;}
.yf3{bottom:-596.248437pt;}
.y12e{bottom:-579.963426pt;}
.yf2{bottom:-579.128933pt;}
.yf1{bottom:-562.008933pt;}
.yf0{bottom:-561.998437pt;}
.y12d{bottom:-552.610562pt;}
.yef{bottom:-544.959093pt;}
.yee{bottom:-527.839589pt;}
.yed{bottom:-510.720085pt;}
.y12c{bottom:-509.555290pt;}
.yec{bottom:-493.680741pt;}
.y12b{bottom:-487.299935pt;}
.yeb{bottom:-476.561237pt;}
.y12a{bottom:-465.044580pt;}
.y53{bottom:-459.688440pt;}
.yea{bottom:-459.521893pt;}
.y129{bottom:-442.893433pt;}
.ye9{bottom:-442.402389pt;}
.ye8{bottom:-425.282885pt;}
.y128{bottom:-420.638078pt;}
.ye7{bottom:-408.243541pt;}
.y127{bottom:-398.382722pt;}
.y75{bottom:-395.746363pt;}
.ye6{bottom:-391.124037pt;}
.y74{bottom:-380.338810pt;}
.ye5{bottom:-374.084693pt;}
.y126{bottom:-371.029859pt;}
.y73{bottom:-365.003400pt;}
.ye4{bottom:-356.965189pt;}
.y72{bottom:-349.595846pt;}
.ye3{bottom:-339.845685pt;}
.y71{bottom:-334.188293pt;}
.y125{bottom:-327.974587pt;}
.ye2{bottom:-322.805005pt;}
.y70{bottom:-318.852883pt;}
.y124{bottom:-305.823440pt;}
.ye1{bottom:-305.685501pt;}
.y6f{bottom:-303.445330pt;}
.ye0{bottom:-288.644821pt;}
.y6e{bottom:-288.109920pt;}
.y123{bottom:-283.568085pt;}
.y6d{bottom:-272.702366pt;}
.ydf{bottom:-271.525317pt;}
.y122{bottom:-261.312730pt;}
.y6c{bottom:-257.294813pt;}
.yde{bottom:-254.405813pt;}
.y6b{bottom:-241.959403pt;}
.y121{bottom:-239.161582pt;}
.ydd{bottom:-237.366469pt;}
.y6a{bottom:-226.551850pt;}
.ydc{bottom:-220.246965pt;}
.y120{bottom:-216.906227pt;}
.y69{bottom:-211.216440pt;}
.y67{bottom:-211.215994pt;}
.y68{bottom:-208.192440pt;}
.ydb{bottom:-203.127461pt;}
.y66{bottom:-195.808440pt;}
.y64{bottom:-195.804317pt;}
.y11f{bottom:-194.755080pt;}
.y65{bottom:-192.784440pt;}
.yda{bottom:-186.088117pt;}
.y63{bottom:-180.396763pt;}
.yd9{bottom:-168.968613pt;}
.y62{bottom:-165.061354pt;}
.y11e{bottom:-152.219080pt;}
.yd8{bottom:-151.927933pt;}
.y61{bottom:-149.653800pt;}
.yd7{bottom:-134.808429pt;}
.y60{bottom:-134.246246pt;}
.y11d{bottom:-132.043600pt;}
.y5f{bottom:-118.910837pt;}
.yd6{bottom:-117.688925pt;}
.y11c{bottom:-112.075600pt;}
.y5e{bottom:-103.503283pt;}
.yd5{bottom:-96.648261pt;}
.y11b{bottom:-92.107600pt;}
.y5d{bottom:-88.167874pt;}
.yd4{bottom:-75.608933pt;}
.y5c{bottom:-72.760320pt;}
.y11a{bottom:-72.139600pt;}
.y119{bottom:-52.067080pt;}
.y5b{bottom:-43.312800pt;}
.yd3{bottom:-42.809333pt;}
.y118{bottom:-32.099080pt;}
.y5a{bottom:-29.416440pt;}
.yd2{bottom:-27.368933pt;}
.y59{bottom:-11.487828pt;}
.yd1{bottom:-7.449205pt;}
.y117{bottom:-6.202674pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:6.048560pt;}
.y4b{bottom:28.346667pt;}
.yc4{bottom:89.305333pt;}
.y1b{bottom:93.018667pt;}
.y183{bottom:94.742667pt;}
.y1da{bottom:97.276000pt;}
.y4a{bottom:97.596000pt;}
.yc3{bottom:106.042667pt;}
.y1a{bottom:108.920000pt;}
.y182{bottom:111.480000pt;}
.y1d9{bottom:112.618667pt;}
.y49{bottom:114.333333pt;}
.yc2{bottom:122.780000pt;}
.y19{bottom:124.820000pt;}
.y1d8{bottom:127.961333pt;}
.y181{bottom:128.217333pt;}
.y48{bottom:131.070667pt;}
.y91{bottom:133.616000pt;}
.yc1{bottom:139.517333pt;}
.y18{bottom:140.720000pt;}
.y1d7{bottom:143.302667pt;}
.y180{bottom:144.954667pt;}
.y1ad{bottom:145.893333pt;}
.y47{bottom:147.808000pt;}
.y90{bottom:150.353333pt;}
.y14b{bottom:151.878667pt;}
.yc0{bottom:156.254667pt;}
.y17{bottom:156.621333pt;}
.y1d6{bottom:158.645333pt;}
.y17f{bottom:161.692000pt;}
.y112{bottom:161.697333pt;}
.y1ac{bottom:162.630667pt;}
.y46{bottom:164.545333pt;}
.y8f{bottom:167.090667pt;}
.y14a{bottom:168.616000pt;}
.y16{bottom:172.521333pt;}
.ybf{bottom:172.992000pt;}
.y1d5{bottom:173.988000pt;}
.y17e{bottom:178.429333pt;}
.y111{bottom:178.434667pt;}
.y1ab{bottom:179.368000pt;}
.y45{bottom:181.282667pt;}
.y8e{bottom:183.828000pt;}
.y149{bottom:185.353333pt;}
.y15{bottom:188.421333pt;}
.y1d4{bottom:189.330667pt;}
.ybe{bottom:193.713333pt;}
.y17d{bottom:195.166667pt;}
.y110{bottom:195.172000pt;}
.y1aa{bottom:196.105333pt;}
.y44{bottom:198.020000pt;}
.y8d{bottom:200.565333pt;}
.y14{bottom:204.322667pt;}
.y1d3{bottom:204.673333pt;}
.y148{bottom:206.074667pt;}
.ybd{bottom:211.646667pt;}
.y17c{bottom:211.904000pt;}
.y10f{bottom:211.908000pt;}
.y1a9{bottom:212.841333pt;}
.y43{bottom:214.757333pt;}
.y208{bottom:215.632000pt;}
.y8c{bottom:217.302667pt;}
.y1d2{bottom:220.016000pt;}
.yd0{bottom:225.670771pt;}
.y17b{bottom:228.641333pt;}
.y10e{bottom:228.645333pt;}
.y1a8{bottom:229.578667pt;}
.y207{bottom:230.974667pt;}
.y42{bottom:231.494667pt;}
.y8b{bottom:234.040000pt;}
.y1d1{bottom:235.358667pt;}
.y147{bottom:235.962667pt;}
.ybc{bottom:241.534667pt;}
.ycf{bottom:242.711451pt;}
.y17a{bottom:245.378667pt;}
.y10d{bottom:245.382667pt;}
.y1a7{bottom:246.316000pt;}
.y1d0{bottom:250.701333pt;}
.y8a{bottom:250.777333pt;}
.y41{bottom:252.216000pt;}
.y146{bottom:252.700000pt;}
.ybb{bottom:258.272000pt;}
.y206{bottom:261.658667pt;}
.y179{bottom:262.116000pt;}
.y10c{bottom:262.120000pt;}
.y1a6{bottom:263.053333pt;}
.y1cf{bottom:266.042667pt;}
.y13{bottom:266.804000pt;}
.y89{bottom:267.514667pt;}
.y145{bottom:269.437333pt;}
.yba{bottom:275.009333pt;}
.y205{bottom:277.001333pt;}
.y178{bottom:278.853333pt;}
.y10b{bottom:278.857333pt;}
.y1a5{bottom:279.790667pt;}
.y1ce{bottom:281.385333pt;}
.y12{bottom:282.705333pt;}
.y88{bottom:284.252000pt;}
.y144{bottom:286.174667pt;}
.ycd{bottom:291.351187pt;}
.yb9{bottom:291.746667pt;}
.y204{bottom:292.344000pt;}
.y177{bottom:295.589333pt;}
.y10a{bottom:295.594667pt;}
.y1a4{bottom:296.528000pt;}
.y1cd{bottom:296.728000pt;}
.y11{bottom:298.605333pt;}
.ycc{bottom:299.911067pt;}
.y87{bottom:300.989333pt;}
.y143{bottom:302.912000pt;}
.y203{bottom:307.686667pt;}
.yb8{bottom:308.484000pt;}
.y176{bottom:312.326667pt;}
.y109{bottom:312.332000pt;}
.y1a3{bottom:313.265333pt;}
.y10{bottom:314.505333pt;}
.y1cc{bottom:316.056000pt;}
.y86{bottom:317.726667pt;}
.y40{bottom:319.016000pt;}
.y202{bottom:323.029333pt;}
.y142{bottom:323.634667pt;}
.yb7{bottom:325.221333pt;}
.y175{bottom:329.064000pt;}
.y108{bottom:329.069333pt;}
.y1a2{bottom:330.002667pt;}
.y85{bottom:334.464000pt;}
.y3f{bottom:336.312000pt;}
.y201{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.yb6{bottom:341.958667pt;}
.y58{bottom:342.320777pt;}
.y174{bottom:345.801333pt;}
.y107{bottom:345.806667pt;}
.y1cb{bottom:345.944000pt;}
.y1a1{bottom:346.740000pt;}
.y84{bottom:351.201333pt;}
.y141{bottom:353.522667pt;}
.y3e{bottom:353.606667pt;}
.y200{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y57{bottom:357.656186pt;}
.yb5{bottom:358.696000pt;}
.y1ca{bottom:361.565333pt;}
.y173{bottom:362.538667pt;}
.y106{bottom:362.544000pt;}
.y1a0{bottom:363.477333pt;}
.y83{bottom:367.938667pt;}
.y1ff{bottom:369.056000pt;}
.yd{bottom:370.177333pt;}
.y140{bottom:370.260000pt;}
.y56{bottom:373.063740pt;}
.yb4{bottom:375.433333pt;}
.y1c9{bottom:377.186667pt;}
.y172{bottom:379.276000pt;}
.y105{bottom:379.281333pt;}
.y19f{bottom:380.214667pt;}
.y1fe{bottom:384.398667pt;}
.y82{bottom:384.676000pt;}
.y3d{bottom:386.842667pt;}
.y13f{bottom:386.997333pt;}
.y55{bottom:388.471294pt;}
.yb3{bottom:392.170667pt;}
.y1c8{bottom:392.808000pt;}
.yc{bottom:395.376000pt;}
.y171{bottom:396.013333pt;}
.y104{bottom:396.018667pt;}
.y19e{bottom:396.952000pt;}
.y1fd{bottom:399.741333pt;}
.y81{bottom:401.413333pt;}
.y13e{bottom:403.734667pt;}
.y54{bottom:403.807906pt;}
.y3c{bottom:404.137333pt;}
.y1c7{bottom:408.429333pt;}
.yb2{bottom:408.908000pt;}
.yb{bottom:411.276000pt;}
.y170{bottom:412.750667pt;}
.y103{bottom:412.756000pt;}
.y19d{bottom:413.689333pt;}
.y1fc{bottom:415.084000pt;}
.y80{bottom:418.150667pt;}
.y13d{bottom:420.472000pt;}
.y3b{bottom:421.432000pt;}
.y1c6{bottom:424.050667pt;}
.yb1{bottom:425.645333pt;}
.y16f{bottom:429.488000pt;}
.y102{bottom:429.493333pt;}
.y19c{bottom:430.426667pt;}
.y7f{bottom:434.888000pt;}
.ya{bottom:435.146667pt;}
.y13c{bottom:437.209333pt;}
.y3a{bottom:438.728000pt;}
.y1c5{bottom:439.672000pt;}
.yb0{bottom:442.382667pt;}
.y1fb{bottom:445.769333pt;}
.y16e{bottom:446.225333pt;}
.y101{bottom:446.230667pt;}
.y19b{bottom:447.164000pt;}
.y52{bottom:447.583668pt;}
.y115{bottom:450.461076pt;}
.y9{bottom:451.048000pt;}
.y7e{bottom:451.625333pt;}
.y51{bottom:455.287560pt;}
.y39{bottom:456.022667pt;}
.y13b{bottom:457.930667pt;}
.yaf{bottom:459.118667pt;}
.y1fa{bottom:461.112000pt;}
.y114{bottom:461.588920pt;}
.y16d{bottom:462.962667pt;}
.y100{bottom:462.968000pt;}
.y1c4{bottom:463.264000pt;}
.y19a{bottom:463.901333pt;}
.y8{bottom:466.948000pt;}
.y7d{bottom:468.362667pt;}
.y38{bottom:473.318667pt;}
.yae{bottom:475.856000pt;}
.y1f9{bottom:476.454667pt;}
.y1c3{bottom:478.885333pt;}
.y16c{bottom:479.700000pt;}
.yff{bottom:479.705333pt;}
.y199{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.y13a{bottom:484.977333pt;}
.y7c{bottom:485.100000pt;}
.y37{bottom:490.613333pt;}
.y1f8{bottom:491.797333pt;}
.yad{bottom:492.593333pt;}
.y1c2{bottom:494.506667pt;}
.y16b{bottom:496.437333pt;}
.yfe{bottom:496.442667pt;}
.y198{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y7b{bottom:501.837333pt;}
.y139{bottom:502.073333pt;}
.y1f7{bottom:507.138667pt;}
.y36{bottom:507.908000pt;}
.yac{bottom:509.330667pt;}
.y1c1{bottom:510.128000pt;}
.y16a{bottom:513.174667pt;}
.yfd{bottom:513.180000pt;}
.y197{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y7a{bottom:518.574667pt;}
.y138{bottom:519.169333pt;}
.y1f6{bottom:522.481333pt;}
.y35{bottom:525.204000pt;}
.yab{bottom:526.068000pt;}
.y169{bottom:529.912000pt;}
.yfc{bottom:529.917333pt;}
.y4{bottom:530.549333pt;}
.y196{bottom:530.850667pt;}
.y1c0{bottom:533.720000pt;}
.y79{bottom:535.312000pt;}
.y137{bottom:536.265333pt;}
.y1f5{bottom:537.824000pt;}
.y34{bottom:542.498667pt;}
.y3{bottom:546.450667pt;}
.y168{bottom:546.649333pt;}
.yfb{bottom:546.654667pt;}
.yaa{bottom:546.790667pt;}
.y195{bottom:547.588000pt;}
.y78{bottom:552.049333pt;}
.y1f4{bottom:553.166667pt;}
.y136{bottom:553.361333pt;}
.y1bf{bottom:557.312000pt;}
.y33{bottom:559.793333pt;}
.y2{bottom:562.350667pt;}
.y167{bottom:563.386667pt;}
.yfa{bottom:563.392000pt;}
.y194{bottom:564.325333pt;}
.y1f3{bottom:568.509333pt;}
.y135{bottom:570.457333pt;}
.ya9{bottom:576.678667pt;}
.y32{bottom:577.089333pt;}
.y1{bottom:578.250667pt;}
.y166{bottom:580.124000pt;}
.y1be{bottom:580.902667pt;}
.y193{bottom:581.062667pt;}
.y77{bottom:581.885333pt;}
.y1f2{bottom:583.852000pt;}
.y113{bottom:593.050667pt;}
.yf9{bottom:593.228000pt;}
.ya8{bottom:593.416000pt;}
.y31{bottom:594.384000pt;}
.y1bd{bottom:596.524000pt;}
.y165{bottom:596.861333pt;}
.y192{bottom:597.800000pt;}
.y76{bottom:598.981333pt;}
.y1f1{bottom:599.194667pt;}
.ya6{bottom:610.153333pt;}
.yf8{bottom:610.324000pt;}
.y1bc{bottom:612.146667pt;}
.y191{bottom:614.537333pt;}
.ya7{bottom:614.974667pt;}
.y164{bottom:617.584000pt;}
.y50{bottom:618.917333pt;}
.y1bb{bottom:627.768000pt;}
.y30{bottom:628.682667pt;}
.y1f0{bottom:629.878667pt;}
.ycb{bottom:630.261333pt;}
.ya5{bottom:630.876000pt;}
.y190{bottom:631.274667pt;}
.y2f{bottom:643.029333pt;}
.y1ba{bottom:643.389333pt;}
.y1ef{bottom:645.221333pt;}
.y163{bottom:647.472000pt;}
.y18f{bottom:648.012000pt;}
.y1b9{bottom:659.010667pt;}
.y1ee{bottom:660.564000pt;}
.ya4{bottom:660.764000pt;}
.y2e{bottom:661.232000pt;}
.y18e{bottom:664.749333pt;}
.y2d{bottom:671.721333pt;}
.y1ed{bottom:675.906667pt;}
.ya3{bottom:677.501333pt;}
.y18d{bottom:681.485333pt;}
.y1b8{bottom:682.601333pt;}
.y162{bottom:683.145333pt;}
.y2c{bottom:689.925333pt;}
.y1ec{bottom:691.249333pt;}
.ya2{bottom:694.238667pt;}
.y161{bottom:697.077333pt;}
.y18c{bottom:698.222667pt;}
.y1b7{bottom:698.224000pt;}
.y2b{bottom:700.413333pt;}
.y1eb{bottom:706.592000pt;}
.ya1{bottom:710.976000pt;}
.y160{bottom:711.689333pt;}
.y1b6{bottom:713.845333pt;}
.y18b{bottom:714.960000pt;}
.y2a{bottom:718.617333pt;}
.y1ea{bottom:721.934667pt;}
.ya0{bottom:727.713333pt;}
.y1b5{bottom:729.466667pt;}
.y15d{bottom:730.852000pt;}
.y18a{bottom:731.697333pt;}
.y29{bottom:732.964000pt;}
.y1e9{bottom:737.277333pt;}
.y9f{bottom:744.450667pt;}
.y15f{bottom:744.666667pt;}
.y1b4{bottom:745.088000pt;}
.y15c{bottom:745.464000pt;}
.y28{bottom:747.310667pt;}
.y189{bottom:748.434667pt;}
.y1e8{bottom:752.620000pt;}
.y27{bottom:757.798667pt;}
.y15e{bottom:759.278667pt;}
.y15b{bottom:760.076000pt;}
.y9e{bottom:761.186667pt;}
.y188{bottom:765.172000pt;}
.y1e7{bottom:767.961333pt;}
.y1b3{bottom:768.680000pt;}
.y26{bottom:772.145333pt;}
.y9d{bottom:777.924000pt;}
.y187{bottom:781.909333pt;}
.y1e6{bottom:783.304000pt;}
.y1b2{bottom:784.301333pt;}
.y15a{bottom:789.830667pt;}
.y25{bottom:790.349333pt;}
.y9c{bottom:794.661333pt;}
.y186{bottom:798.646667pt;}
.y1b1{bottom:799.922667pt;}
.y159{bottom:804.442667pt;}
.y9b{bottom:811.398667pt;}
.y1e5{bottom:813.989333pt;}
.y185{bottom:815.384000pt;}
.y1b0{bottom:815.544000pt;}
.y157{bottom:819.585333pt;}
.y9a{bottom:828.136000pt;}
.y1e4{bottom:829.332000pt;}
.y24{bottom:830.061333pt;}
.y1af{bottom:831.165333pt;}
.y184{bottom:832.121333pt;}
.y156{bottom:834.197333pt;}
.y158{bottom:842.168000pt;}
.y1e3{bottom:844.674667pt;}
.y99{bottom:844.873333pt;}
.y1ae{bottom:846.786667pt;}
.y23{bottom:846.798667pt;}
.y155{bottom:848.809333pt;}
.yca{bottom:848.858667pt;}
.y1e2{bottom:860.017333pt;}
.y98{bottom:861.610667pt;}
.y154{bottom:863.421333pt;}
.y22{bottom:863.536000pt;}
.yc9{bottom:865.596000pt;}
.y1e1{bottom:875.360000pt;}
.y97{bottom:878.348000pt;}
.y152{bottom:879.892000pt;}
.yc8{bottom:882.333333pt;}
.y1e0{bottom:890.702667pt;}
.y151{bottom:894.504000pt;}
.y96{bottom:895.085333pt;}
.y21{bottom:896.213333pt;}
.yc7{bottom:899.070667pt;}
.y153{bottom:901.810667pt;}
.y1df{bottom:906.044000pt;}
.y150{bottom:909.116000pt;}
.y95{bottom:911.822667pt;}
.yc6{bottom:915.808000pt;}
.y20{bottom:921.320000pt;}
.y1de{bottom:921.386667pt;}
.y14f{bottom:923.728000pt;}
.y94{bottom:928.560000pt;}
.yc5{bottom:932.545333pt;}
.y1dd{bottom:936.729333pt;}
.y14e{bottom:938.872000pt;}
.y93{bottom:945.297333pt;}
.y1f{bottom:946.425333pt;}
.y4f{bottom:949.282667pt;}
.y1dc{bottom:952.072000pt;}
.y92{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y14d{bottom:966.977333pt;}
.y1db{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y14c{bottom:984.073333pt;}
.y1c{bottom:1019.694504pt;}
.y4c{bottom:1038.548000pt;}
.h3{height:22.441454pt;}
.h13{height:26.789062pt;}
.h8{height:28.947524pt;}
.hc{height:33.186336pt;}
.h2{height:33.771789pt;}
.ha{height:34.574438pt;}
.h14{height:35.109141pt;}
.h10{height:35.629453pt;}
.h24{height:36.662368pt;}
.h17{height:36.666735pt;}
.h16{height:36.873667pt;}
.hd{height:38.415786pt;}
.h1c{height:38.488281pt;}
.h9{height:38.596538pt;}
.h5{height:39.000258pt;}
.h19{height:39.588281pt;}
.h12{height:40.183594pt;}
.hb{height:43.421286pt;}
.h1b{height:44.648438pt;}
.h11{height:44.737734pt;}
.he{height:48.245551pt;}
.h7{height:48.481423pt;}
.h1a{height:49.708594pt;}
.h21{height:50.034766pt;}
.h25{height:51.131789pt;}
.h1e{height:51.464766pt;}
.h4{height:53.495389pt;}
.h15{height:55.952068pt;}
.h20{height:58.042969pt;}
.h1f{height:64.621172pt;}
.h6{height:69.148877pt;}
.h22{height:72.642620pt;}
.h23{height:75.298620pt;}
.h18{height:197.584000pt;}
.hf{height:317.323200pt;}
.h1d{height:402.989600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:25.487229pt;}
.w3{width:420.373200pt;}
.w4{width:468.477333pt;}
.w5{width:619.006267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3f{left:-238.026533pt;}
.x1a{left:-100.066800pt;}
.x37{left:-97.920000pt;}
.x41{left:-12.034533pt;}
.x0{left:0.000000pt;}
.x42{left:24.781467pt;}
.x1{left:47.621333pt;}
.x1b{left:56.388328pt;}
.x20{left:63.517200pt;}
.x21{left:73.309200pt;}
.x38{left:75.919031pt;}
.x1d{left:81.877200pt;}
.x3e{left:87.158667pt;}
.x2{left:100.248959pt;}
.x3a{left:104.239906pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x47{left:225.504000pt;}
.x48{left:235.462667pt;}
.x4{left:239.924000pt;}
.x57{left:241.682667pt;}
.x51{left:245.842667pt;}
.x13{left:250.204000pt;}
.x4f{left:251.478667pt;}
.x50{left:252.477333pt;}
.x52{left:253.972000pt;}
.x6b{left:258.253333pt;}
.x56{left:260.057333pt;}
.x58{left:263.105333pt;}
.x54{left:264.761333pt;}
.xd{left:267.578667pt;}
.x4d{left:270.606667pt;}
.x6c{left:271.537333pt;}
.x6{left:273.133333pt;}
.x75{left:275.684000pt;}
.x9{left:279.849333pt;}
.x12{left:284.338667pt;}
.x22{left:286.018667pt;}
.x18{left:290.381333pt;}
.xa{left:292.434667pt;}
.x3b{left:293.840000pt;}
.x23{left:296.048000pt;}
.x2c{left:299.032000pt;}
.x24{left:302.689333pt;}
.x32{left:320.512000pt;}
.x76{left:326.490667pt;}
.x74{left:331.561333pt;}
.x33{left:333.794667pt;}
.x19{left:334.742667pt;}
.x49{left:341.529333pt;}
.x2d{left:343.668000pt;}
.x4a{left:348.834667pt;}
.x30{left:356.129333pt;}
.x5a{left:362.364000pt;}
.x31{left:364.160000pt;}
.x34{left:365.789333pt;}
.x77{left:370.856000pt;}
.x53{left:375.332000pt;}
.x4e{left:377.514667pt;}
.x35{left:378.674667pt;}
.x2e{left:388.033333pt;}
.xe{left:402.217333pt;}
.x59{left:410.330667pt;}
.x55{left:413.320000pt;}
.xf{left:414.814667pt;}
.x2f{left:416.737333pt;}
.x45{left:422.373333pt;}
.x6f{left:424.394667pt;}
.x36{left:428.168000pt;}
.x46{left:431.005333pt;}
.x7{left:435.456000pt;}
.x1e{left:437.845200pt;}
.x1f{left:444.973200pt;}
.x8{left:447.661333pt;}
.x70{left:457.562667pt;}
.x1c{left:461.746666pt;}
.x71{left:470.846667pt;}
.x3c{left:477.286667pt;}
.x3d{left:483.264000pt;}
.x39{left:521.677773pt;}
.x6d{left:532.682667pt;}
.x27{left:536.518667pt;}
.x25{left:543.686667pt;}
.x6e{left:545.965333pt;}
.x26{left:550.129333pt;}
.x28{left:556.704000pt;}
.x65{left:561.437333pt;}
.x5b{left:563.088000pt;}
.x5c{left:570.118667pt;}
.x5d{left:574.326667pt;}
.x72{left:575.974667pt;}
.x5e{left:582.908000pt;}
.x43{left:587.624000pt;}
.x5f{left:589.282667pt;}
.x44{left:595.597333pt;}
.x2a{left:601.585333pt;}
.x79{left:612.510667pt;}
.x2b{left:614.868000pt;}
.x61{left:632.246667pt;}
.x40{left:634.426094pt;}
.x29{left:640.434667pt;}
.x73{left:644.292000pt;}
.x62{left:645.530667pt;}
.x63{left:648.917333pt;}
.x60{left:656.274667pt;}
.x7b{left:661.162667pt;}
.x64{left:662.201333pt;}
.x10{left:663.924000pt;}
.x4b{left:669.162667pt;}
.x4c{left:675.809333pt;}
.x78{left:680.732000pt;}
.xb{left:684.705333pt;}
.xc{left:697.290667pt;}
.x11{left:702.686667pt;}
.x66{left:707.644000pt;}
.x69{left:708.608000pt;}
.x67{left:711.992000pt;}
.x14{left:720.068000pt;}
.x6a{left:721.890667pt;}
.x68{left:725.276000pt;}
.x15{left:726.709333pt;}
.x16{left:733.484000pt;}
.x17{left:740.126667pt;}
.x7a{left:744.260000pt;}
}




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