
    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_2ca5dd52c49e66baa9c08852.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;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_70591eee7c896e0850cc73db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dab7fa2fc8a160ddcddb800c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.175000;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_e9738c7b11838a18a872701d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d435c8a6f6c9789eb40b6591.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_280f49fbb487adf6e6d56a48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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_5f2d266f8f97b30193e4b6f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.803000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b940190a895cfd6ea185ff0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.667000;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_7196603ee865c8a03a0babaa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.670000;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_cca738675a433e1efa2b97fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_a478de4baf505f61da658ae4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_851b63cc5c08235c593b1651.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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_8df4025e8bb76d3f2aa2a14c.woff2')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_4cff88d3c04a70bf48ee3af5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206543;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_6f6a2fad60d75ff13242946c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4d2e36a18d5bb7847a6d3996.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m27{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);}
.m19{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);}
.ma{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);}
.m1a{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);}
.m1e{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);}
.m4{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);}
.m1c{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);}
.m26{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);}
.m2{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);}
.m13{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);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.mf{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);}
.m24{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);}
.m15{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);}
.md{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);}
.m1b{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);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m17{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);}
.m7{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);}
.m22{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);}
.m6{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);}
.m29{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);}
.m23{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);}
.m11{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);}
.m1d{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);}
.m21{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);}
.m14{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);}
.m8{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);}
.m28{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);}
.m1f{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);}
.m16{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);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.358000px;}
.v8{vertical-align:-1.266000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.266000px;}
.v3{vertical-align:9.336000px;}
.v5{vertical-align:10.662000px;}
.v2{vertical-align:12.552000px;}
.v9{vertical-align:18.258000px;}
.v6{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.ls44{letter-spacing:-0.340200px;}
.ls3e{letter-spacing:-0.090972px;}
.ls43{letter-spacing:-0.090180px;}
.ls46{letter-spacing:-0.070200px;}
.ls3f{letter-spacing:-0.052668px;}
.ls42{letter-spacing:-0.048096px;}
.ls47{letter-spacing:-0.043200px;}
.ls41{letter-spacing:-0.018036px;}
.lsf{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000094px;}
.ls66{letter-spacing:0.000208px;}
.lsa{letter-spacing:0.000541px;}
.ls6a{letter-spacing:0.000545px;}
.ls5e{letter-spacing:0.000566px;}
.ls32{letter-spacing:0.000612px;}
.ls50{letter-spacing:0.000800px;}
.ls69{letter-spacing:0.000959px;}
.ls54{letter-spacing:0.001036px;}
.ls61{letter-spacing:0.001102px;}
.ls28{letter-spacing:0.001133px;}
.ls51{letter-spacing:0.001155px;}
.ls5b{letter-spacing:0.001831px;}
.ls27{letter-spacing:0.001996px;}
.ls4a{letter-spacing:0.002293px;}
.ls53{letter-spacing:0.002544px;}
.ls60{letter-spacing:0.002841px;}
.ls57{letter-spacing:0.002856px;}
.ls17{letter-spacing:0.003109px;}
.ls5c{letter-spacing:0.003241px;}
.ls56{letter-spacing:0.003391px;}
.ls49{letter-spacing:0.004635px;}
.ls35{letter-spacing:0.016200px;}
.ls36{letter-spacing:0.037800px;}
.ls34{letter-spacing:0.072144px;}
.ls33{letter-spacing:0.086184px;}
.ls37{letter-spacing:0.124200px;}
.ls38{letter-spacing:0.145800px;}
.ls45{letter-spacing:0.178200px;}
.ls3d{letter-spacing:0.181944px;}
.ls40{letter-spacing:0.201096px;}
.ls48{letter-spacing:0.542815px;}
.ls31{letter-spacing:0.717309px;}
.ls10{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls6{letter-spacing:10.461300px;}
.lse{letter-spacing:11.954850px;}
.ls7{letter-spacing:11.957700px;}
.ls67{letter-spacing:12.074890px;}
.lsd{letter-spacing:12.768147px;}
.lsc{letter-spacing:13.091216px;}
.ls59{letter-spacing:13.277133px;}
.ls3b{letter-spacing:13.408486px;}
.ls3a{letter-spacing:13.414474px;}
.ls3c{letter-spacing:13.447133px;}
.ls4b{letter-spacing:13.448400px;}
.ls62{letter-spacing:13.451510px;}
.ls64{letter-spacing:13.452566px;}
.ls4c{letter-spacing:13.454400px;}
.ls6c{letter-spacing:13.525910px;}
.ls52{letter-spacing:13.541337px;}
.ls5a{letter-spacing:13.567467px;}
.lsb{letter-spacing:13.596268px;}
.ls21{letter-spacing:13.611129px;}
.ls6d{letter-spacing:13.669182px;}
.ls55{letter-spacing:13.715034px;}
.ls4d{letter-spacing:14.038635px;}
.ls22{letter-spacing:14.094088px;}
.ls24{letter-spacing:14.100088px;}
.ls4f{letter-spacing:14.797459px;}
.ls12{letter-spacing:14.852636px;}
.ls20{letter-spacing:14.859671px;}
.ls15{letter-spacing:14.879440px;}
.ls1e{letter-spacing:14.937767px;}
.ls14{letter-spacing:14.939488px;}
.ls2{letter-spacing:14.942725px;}
.ls1d{letter-spacing:14.943767px;}
.ls0{letter-spacing:14.944200px;}
.ls19{letter-spacing:14.945488px;}
.ls11{letter-spacing:14.958740px;}
.ls18{letter-spacing:15.046275px;}
.ls1a{letter-spacing:15.051716px;}
.ls16{letter-spacing:15.175374px;}
.ls5f{letter-spacing:15.244518px;}
.ls1c{letter-spacing:15.663483px;}
.ls26{letter-spacing:15.694200px;}
.ls68{letter-spacing:16.073929px;}
.ls65{letter-spacing:16.179812px;}
.ls5d{letter-spacing:16.477554px;}
.ls58{letter-spacing:16.485694px;}
.ls25{letter-spacing:17.147494px;}
.ls1f{letter-spacing:17.212200px;}
.ls6b{letter-spacing:17.797459px;}
.ls4{letter-spacing:17.929200px;}
.ls4e{letter-spacing:19.415106px;}
.ls1b{letter-spacing:20.743200px;}
.ls13{letter-spacing:20.882788px;}
.ls63{letter-spacing:23.565859px;}
.ls1{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls2e{letter-spacing:261.648600px;}
.ls2d{letter-spacing:266.112600px;}
.ls23{letter-spacing:269.016600px;}
.ls2f{letter-spacing:275.094600px;}
.ls2c{letter-spacing:275.100600px;}
.ls2b{letter-spacing:293.010600px;}
.ls30{letter-spacing:312.210600px;}
.ls2a{letter-spacing:399.096600px;}
.ls39{letter-spacing:846.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-102.481160px;}
.wsdb{word-spacing:-48.061944px;}
.ws3{word-spacing:-14.943900px;}
.wsdd{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.449600px;}
.wsc0{word-spacing:-12.672459px;}
.wsdc{word-spacing:-12.151944px;}
.ws19{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.wsd{word-spacing:-10.460700px;}
.wseb{word-spacing:-3.652002px;}
.ws83{word-spacing:-3.347434px;}
.ws97{word-spacing:-2.988780px;}
.ws74{word-spacing:-2.630126px;}
.ws12{word-spacing:-2.510568px;}
.wsa1{word-spacing:-2.211697px;}
.ws52{word-spacing:-1.912819px;}
.wsa{word-spacing:-1.908367px;}
.ws7f{word-spacing:-1.853044px;}
.ws138{word-spacing:-1.775347px;}
.ws63{word-spacing:-1.613941px;}
.ws5e{word-spacing:-1.554166px;}
.ws70{word-spacing:-1.374839px;}
.wsfe{word-spacing:-1.344960px;}
.ws9{word-spacing:-1.322630px;}
.wsd4{word-spacing:-1.315063px;}
.ws7d{word-spacing:-1.255288px;}
.ws13e{word-spacing:-1.237363px;}
.wsd2{word-spacing:-1.195512px;}
.ws7e{word-spacing:-1.135736px;}
.wsf7{word-spacing:-1.126798px;}
.wsf6{word-spacing:-1.075968px;}
.wscf{word-spacing:-1.075961px;}
.ws7a{word-spacing:-1.016185px;}
.ws13d{word-spacing:-0.968371px;}
.ws75{word-spacing:-0.956410px;}
.wsd1{word-spacing:-0.836858px;}
.wsbf{word-spacing:-0.812950px;}
.ws53{word-spacing:-0.777083px;}
.ws54{word-spacing:-0.717307px;}
.ws30{word-spacing:-0.699379px;}
.ws84{word-spacing:-0.657532px;}
.ws31{word-spacing:-0.645581px;}
.ws46{word-spacing:-0.597756px;}
.ws10c{word-spacing:-0.591782px;}
.ws13b{word-spacing:-0.537984px;}
.ws82{word-spacing:-0.537980px;}
.wsc2{word-spacing:-0.526027px;}
.wsc1{word-spacing:-0.478206px;}
.wsd7{word-spacing:-0.478205px;}
.ws114{word-spacing:-0.430387px;}
.ws32{word-spacing:-0.376589px;}
.ws51{word-spacing:-0.358654px;}
.wsd9{word-spacing:-0.331962px;}
.ws121{word-spacing:-0.322790px;}
.ws134{word-spacing:-0.312533px;}
.ws48{word-spacing:-0.298878px;}
.wsf0{word-spacing:-0.268992px;}
.ws35{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.215194px;}
.wsd5{word-spacing:-0.206390px;}
.ws124{word-spacing:-0.202285px;}
.ws9b{word-spacing:-0.202231px;}
.ws39{word-spacing:-0.179327px;}
.ws20{word-spacing:-0.161395px;}
.ws68{word-spacing:-0.119551px;}
.wse5{word-spacing:-0.108000px;}
.wsec{word-spacing:-0.107597px;}
.ws85{word-spacing:-0.096372px;}
.ws2{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.ws12d{word-spacing:-0.027197px;}
.ws126{word-spacing:-0.016644px;}
.ws135{word-spacing:-0.012538px;}
.ws11e{word-spacing:-0.010023px;}
.ws147{word-spacing:-0.009235px;}
.ws13f{word-spacing:-0.009130px;}
.ws12a{word-spacing:-0.008832px;}
.wsf3{word-spacing:-0.008650px;}
.ws11d{word-spacing:-0.008467px;}
.ws137{word-spacing:-0.006682px;}
.ws116{word-spacing:-0.006586px;}
.ws111{word-spacing:-0.006230px;}
.ws146{word-spacing:-0.005770px;}
.wsef{word-spacing:-0.005290px;}
.ws87{word-spacing:-0.005078px;}
.wsaf{word-spacing:-0.004800px;}
.ws89{word-spacing:-0.004550px;}
.wsfa{word-spacing:-0.004454px;}
.ws88{word-spacing:-0.004291px;}
.wsf1{word-spacing:-0.004282px;}
.wsf9{word-spacing:-0.003629px;}
.ws58{word-spacing:-0.003080px;}
.ws33{word-spacing:-0.003039px;}
.wsc{word-spacing:-0.002382px;}
.ws8{word-spacing:-0.001825px;}
.ws6{word-spacing:-0.001225px;}
.wsc5{word-spacing:-0.001200px;}
.ws149{word-spacing:-0.000461px;}
.ws115{word-spacing:-0.000394px;}
.ws1{word-spacing:0.000000px;}
.wsab{word-spacing:0.001200px;}
.wsb4{word-spacing:0.001363px;}
.ws11c{word-spacing:0.001978px;}
.ws4{word-spacing:0.002167px;}
.ws10b{word-spacing:0.002304px;}
.ws110{word-spacing:0.002621px;}
.wse1{word-spacing:0.018036px;}
.ws123{word-spacing:0.047482px;}
.ws4d{word-spacing:0.047653px;}
.ws145{word-spacing:0.053273px;}
.ws10a{word-spacing:0.053798px;}
.ws4e{word-spacing:0.059776px;}
.ws3b{word-spacing:0.078852px;}
.ws4c{word-spacing:0.081363px;}
.ws65{word-spacing:0.099326px;}
.ws86{word-spacing:0.107597px;}
.ws5c{word-spacing:0.113620px;}
.ws37{word-spacing:0.119551px;}
.wse4{word-spacing:0.140400px;}
.ws18{word-spacing:0.143462px;}
.ws1c{word-spacing:0.161395px;}
.wse3{word-spacing:0.162000px;}
.wsc8{word-spacing:0.169061px;}
.wse2{word-spacing:0.178200px;}
.ws3a{word-spacing:0.179327px;}
.wsc7{word-spacing:0.187647px;}
.ws15{word-spacing:0.209214px;}
.ws2f{word-spacing:0.215194px;}
.wse6{word-spacing:0.221400px;}
.ws64{word-spacing:0.239102px;}
.ws99{word-spacing:0.251536px;}
.ws11a{word-spacing:0.268992px;}
.ws57{word-spacing:0.298878px;}
.ws2d{word-spacing:0.322790px;}
.ws10{word-spacing:0.334742px;}
.ws49{word-spacing:0.358654px;}
.ws4a{word-spacing:0.385137px;}
.wsda{word-spacing:0.418429px;}
.wsfc{word-spacing:0.430387px;}
.ws9e{word-spacing:0.478205px;}
.wsb8{word-spacing:0.517200px;}
.ws8b{word-spacing:0.523200px;}
.ws9d{word-spacing:0.537980px;}
.wsff{word-spacing:0.591782px;}
.ws6f{word-spacing:0.597756px;}
.wsbd{word-spacing:0.642422px;}
.ws36{word-spacing:0.657532px;}
.wsb9{word-spacing:0.667027px;}
.ws8c{word-spacing:0.667200px;}
.wsb5{word-spacing:0.668400px;}
.wsbb{word-spacing:0.670752px;}
.wsa9{word-spacing:0.672000px;}
.ws8a{word-spacing:0.673200px;}
.wsba{word-spacing:0.676752px;}
.ws98{word-spacing:0.717307px;}
.wsc4{word-spacing:0.747000px;}
.wsf{word-spacing:0.753170px;}
.ws93{word-spacing:0.777083px;}
.ws3f{word-spacing:0.790426px;}
.ws40{word-spacing:0.836858px;}
.wsd6{word-spacing:0.851503px;}
.ws132{word-spacing:0.914573px;}
.wse8{word-spacing:0.956410px;}
.ws6e{word-spacing:1.016185px;}
.wsfb{word-spacing:1.022170px;}
.ws144{word-spacing:1.075968px;}
.ws119{word-spacing:1.129766px;}
.ws7b{word-spacing:1.135736px;}
.ws7c{word-spacing:1.195512px;}
.wscc{word-spacing:1.255288px;}
.ws11{word-spacing:1.256252px;}
.ws50{word-spacing:1.315063px;}
.ws105{word-spacing:1.344960px;}
.ws4f{word-spacing:1.374839px;}
.ws1b{word-spacing:1.398758px;}
.ws107{word-spacing:1.452557px;}
.ws5a{word-spacing:1.494390px;}
.ws118{word-spacing:1.506355px;}
.ws55{word-spacing:1.554166px;}
.ws22{word-spacing:1.560154px;}
.wsee{word-spacing:1.667750px;}
.ws9a{word-spacing:1.673717px;}
.ws129{word-spacing:1.775347px;}
.ws77{word-spacing:1.793268px;}
.ws120{word-spacing:1.829146px;}
.wscd{word-spacing:1.853044px;}
.ws106{word-spacing:1.882944px;}
.wsde{word-spacing:1.905804px;}
.wsdf{word-spacing:1.935864px;}
.wsea{word-spacing:1.936742px;}
.wse0{word-spacing:1.977948px;}
.ws66{word-spacing:2.032370px;}
.ws13a{word-spacing:2.044251px;}
.ws139{word-spacing:2.044339px;}
.ws5f{word-spacing:2.092146px;}
.ws131{word-spacing:2.098138px;}
.ws67{word-spacing:2.151922px;}
.ws130{word-spacing:2.151936px;}
.ws103{word-spacing:2.205734px;}
.ws42{word-spacing:2.211697px;}
.ws41{word-spacing:2.271473px;}
.ws117{word-spacing:2.313331px;}
.ws5b{word-spacing:2.331248px;}
.ws2a{word-spacing:2.367130px;}
.wsd3{word-spacing:2.404225px;}
.ws81{word-spacing:2.450800px;}
.wsb{word-spacing:2.511541px;}
.ws73{word-spacing:2.570351px;}
.wsd0{word-spacing:2.689902px;}
.ws12f{word-spacing:2.743718px;}
.ws79{word-spacing:2.749678px;}
.ws29{word-spacing:2.851315px;}
.wsa6{word-spacing:2.869229px;}
.ws1a{word-spacing:2.869236px;}
.ws44{word-spacing:2.988780px;}
.ws125{word-spacing:3.046425px;}
.wsca{word-spacing:3.048556px;}
.wsf8{word-spacing:3.066509px;}
.ws25{word-spacing:3.120307px;}
.ws62{word-spacing:3.168107px;}
.ws108{word-spacing:3.174106px;}
.wsf4{word-spacing:3.220013px;}
.ws141{word-spacing:3.221290px;}
.ws136{word-spacing:3.221808px;}
.wsed{word-spacing:3.224227px;}
.ws10e{word-spacing:3.224371px;}
.ws122{word-spacing:3.225571px;}
.ws12e{word-spacing:3.225888px;}
.ws11f{word-spacing:3.227040px;}
.ws13c{word-spacing:3.227491px;}
.ws12b{word-spacing:3.227510px;}
.wsa2{word-spacing:3.227882px;}
.wsf5{word-spacing:3.227904px;}
.ws109{word-spacing:3.227933px;}
.ws133{word-spacing:3.228096px;}
.ws10d{word-spacing:3.256521px;}
.ws47{word-spacing:3.287658px;}
.ws1e{word-spacing:3.335501px;}
.ws38{word-spacing:3.347434px;}
.ws1f{word-spacing:3.374200px;}
.ws142{word-spacing:3.443098px;}
.ws59{word-spacing:3.474571px;}
.ws71{word-spacing:3.526760px;}
.ws34{word-spacing:3.586536px;}
.ws11b{word-spacing:3.604493px;}
.wsa3{word-spacing:3.646312px;}
.ws78{word-spacing:3.706087px;}
.ws5d{word-spacing:3.760639px;}
.wsd8{word-spacing:3.765863px;}
.ws4b{word-spacing:3.791263px;}
.ws43{word-spacing:3.885414px;}
.wscb{word-spacing:4.064741px;}
.ws128{word-spacing:4.088678px;}
.wsc6{word-spacing:4.124516px;}
.ws113{word-spacing:4.142477px;}
.ws140{word-spacing:4.196275px;}
.ws143{word-spacing:4.357670px;}
.ws45{word-spacing:4.363619px;}
.ws14{word-spacing:4.393494px;}
.wsa5{word-spacing:4.423394px;}
.ws148{word-spacing:4.465267px;}
.ws2e{word-spacing:4.572864px;}
.ws2c{word-spacing:4.626662px;}
.wsc9{word-spacing:4.662497px;}
.wsf2{word-spacing:4.680461px;}
.ws80{word-spacing:4.722272px;}
.ws100{word-spacing:4.734259px;}
.ws3d{word-spacing:4.862741px;}
.ws3c{word-spacing:4.901599px;}
.wsfd{word-spacing:4.949453px;}
.ws6a{word-spacing:5.021150px;}
.wsa4{word-spacing:5.260253px;}
.ws112{word-spacing:5.272243px;}
.wsce{word-spacing:5.379804px;}
.ws21{word-spacing:5.379840px;}
.wsc3{word-spacing:5.439580px;}
.ws94{word-spacing:5.499355px;}
.ws95{word-spacing:5.559131px;}
.ws60{word-spacing:5.618906px;}
.ws6c{word-spacing:5.678682px;}
.ws9c{word-spacing:5.798233px;}
.ws76{word-spacing:5.858009px;}
.ws27{word-spacing:5.864026px;}
.ws6b{word-spacing:5.917784px;}
.ws28{word-spacing:5.917824px;}
.wse7{word-spacing:5.977560px;}
.wsa7{word-spacing:6.037336px;}
.ws69{word-spacing:6.216662px;}
.wse{word-spacing:6.360106px;}
.ws92{word-spacing:6.360140px;}
.wse9{word-spacing:6.395989px;}
.ws2b{word-spacing:6.617203px;}
.ws24{word-spacing:6.671002px;}
.ws104{word-spacing:6.778598px;}
.ws91{word-spacing:6.790525px;}
.ws72{word-spacing:7.531726px;}
.ws96{word-spacing:7.651277px;}
.wsa0{word-spacing:7.770828px;}
.ws6d{word-spacing:8.189257px;}
.ws56{word-spacing:8.249033px;}
.ws61{word-spacing:8.368584px;}
.ws9f{word-spacing:8.428360px;}
.ws10f{word-spacing:9.091930px;}
.ws16{word-spacing:10.920971px;}
.ws7{word-spacing:12.433403px;}
.ws127{word-spacing:13.395802px;}
.ws90{word-spacing:16.641569px;}
.ws101{word-spacing:17.852512px;}
.ws102{word-spacing:17.861069px;}
.ws3e{word-spacing:18.769538px;}
.ws13{word-spacing:21.465356px;}
.ws12c{word-spacing:48.418560px;}
.ws8f{word-spacing:185.817244px;}
.ws8e{word-spacing:207.939244px;}
.wsaa{word-spacing:222.027244px;}
.wsad{word-spacing:224.277086px;}
.ws8d{word-spacing:230.449200px;}
.wsae{word-spacing:235.479244px;}
.wsa8{word-spacing:237.687244px;}
.wsb2{word-spacing:248.961086px;}
.wsb1{word-spacing:248.967086px;}
.wsb0{word-spacing:251.181086px;}
.wsbe{word-spacing:253.383244px;}
.wsb6{word-spacing:280.281244px;}
.wsbc{word-spacing:295.249200px;}
.wsac{word-spacing:298.037837px;}
.wsb7{word-spacing:352.973702px;}
.wsb3{word-spacing:382.129968px;}
._9{margin-left:-28.214083px;}
._3b{margin-left:-24.955090px;}
._5{margin-left:-23.252708px;}
._3{margin-left:-21.578992px;}
._39{margin-left:-20.358358px;}
._e{margin-left:-19.164002px;}
._b{margin-left:-15.416104px;}
._0{margin-left:-11.943245px;}
._1{margin-left:-9.898906px;}
._35{margin-left:-8.120947px;}
._15{margin-left:-6.724800px;}
._10{margin-left:-5.618878px;}
._6{margin-left:-4.423394px;}
._7{margin-left:-3.289991px;}
._a{margin-left:-1.322630px;}
._2{width:1.676075px;}
._4{width:3.342942px;}
._d{width:4.477180px;}
._37{width:6.909084px;}
._8{width:8.308441px;}
._13{width:11.094379px;}
._f{width:12.971268px;}
._17{width:13.987584px;}
._18{width:16.462310px;}
._c{width:18.269112px;}
._20{width:19.337452px;}
._19{width:20.443392px;}
._22{width:22.244090px;}
._1a{width:23.348506px;}
._11{width:25.378286px;}
._14{width:27.255191px;}
._1f{width:28.991166px;}
._1e{width:30.545332px;}
._23{width:32.309093px;}
._16{width:33.355008px;}
._28{width:34.983860px;}
._1b{width:36.152525px;}
._12{width:37.365620px;}
._27{width:41.603818px;}
._21{width:44.114393px;}
._3a{width:61.868160px;}
._25{width:146.493043px;}
._26{width:177.265728px;}
._2f{width:182.888256px;}
._29{width:189.746957px;}
._31{width:195.368448px;}
._2a{width:242.039002px;}
._34{width:262.901606px;}
._24{width:273.573152px;}
._30{width:276.730291px;}
._2c{width:279.118762px;}
._2e{width:287.180016px;}
._2d{width:290.233872px;}
._2b{width:302.844950px;}
._33{width:327.901248px;}
._32{width:329.331475px;}
._1c{width:745.802392px;}
._36{width:2115.998869px;}
._38{width:2521.530529px;}
._1d{width:2545.440529px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(12,11,11);}
.fc0{color:rgb(52,74,39);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs10{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:131.723856px;}
.y168{bottom:-130.567050px;}
.y170{bottom:-70.717050px;}
.y16f{bottom:-31.657500px;}
.y16e{bottom:-14.287050px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.y16d{bottom:8.124264px;}
.yb{bottom:14.151273px;}
.y2{bottom:16.849635px;}
.y51{bottom:31.890000px;}
.y175{bottom:88.993500px;}
.y112{bottom:101.007000px;}
.ye1{bottom:102.621000px;}
.y28{bottom:102.823500px;}
.y153{bottom:104.449500px;}
.ye0{bottom:105.351000px;}
.y174{bottom:107.823000px;}
.y19b{bottom:115.797000px;}
.y111{bottom:119.836500px;}
.y27{bottom:120.711000px;}
.y1d2{bottom:120.817500px;}
.y152{bottom:123.279000px;}
.y87{bottom:123.714000px;}
.ydf{bottom:124.180500px;}
.ybc{bottom:125.076000px;}
.y173{bottom:131.136000px;}
.y19a{bottom:133.057500px;}
.y1d1{bottom:138.078000px;}
.y26{bottom:138.600000px;}
.y110{bottom:138.666000px;}
.y151{bottom:142.108500px;}
.y86{bottom:142.543500px;}
.yde{bottom:143.010000px;}
.ybb{bottom:143.905500px;}
.y11a{bottom:144.354000px;}
.y199{bottom:150.316500px;}
.y1d0{bottom:155.338500px;}
.y25{bottom:156.487500px;}
.y172{bottom:159.252000px;}
.y150{bottom:160.938000px;}
.y85{bottom:161.373000px;}
.ydd{bottom:161.839500px;}
.yba{bottom:162.735000px;}
.y119{bottom:163.183500px;}
.y50{bottom:164.763000px;}
.y198{bottom:167.577000px;}
.y1cf{bottom:172.599000px;}
.y24{bottom:174.375000px;}
.y171{bottom:178.485000px;}
.y10f{bottom:178.798500px;}
.y14f{bottom:179.767500px;}
.y84{bottom:180.201000px;}
.ydc{bottom:180.669000px;}
.yb9{bottom:181.564500px;}
.y118{bottom:182.013000px;}
.y4f{bottom:184.221000px;}
.y197{bottom:184.837500px;}
.y1ce{bottom:189.858000px;}
.y23{bottom:192.264000px;}
.y10d{bottom:192.996000px;}
.y10e{bottom:197.335500px;}
.y14e{bottom:198.597000px;}
.y83{bottom:199.030500px;}
.ydb{bottom:199.497000px;}
.yb8{bottom:200.394000px;}
.y117{bottom:200.842500px;}
.y165{bottom:200.913000px;}
.y196{bottom:202.098000px;}
.y1cd{bottom:207.118500px;}
.y10b{bottom:207.192000px;}
.y22{bottom:210.151500px;}
.y10c{bottom:211.533000px;}
.y14d{bottom:217.426500px;}
.y82{bottom:217.860000px;}
.yd9{bottom:218.326500px;}
.yb7{bottom:219.223500px;}
.y195{bottom:219.358500px;}
.y116{bottom:219.672000px;}
.y4e{bottom:221.610000px;}
.yda{bottom:223.752000px;}
.y1cc{bottom:224.379000px;}
.y109{bottom:227.949000px;}
.y21{bottom:228.039000px;}
.y14c{bottom:236.256000px;}
.y194{bottom:236.619000px;}
.y81{bottom:236.689500px;}
.yd8{bottom:237.156000px;}
.yb6{bottom:238.053000px;}
.y115{bottom:238.501500px;}
.y4d{bottom:241.068000px;}
.y1cb{bottom:241.639500px;}
.y10a{bottom:244.069500px;}
.y108{bottom:244.387500px;}
.y193{bottom:253.879500px;}
.y14b{bottom:255.085500px;}
.y80{bottom:255.519000px;}
.yd7{bottom:255.985500px;}
.y164{bottom:256.882500px;}
.y114{bottom:257.331000px;}
.y1ca{bottom:258.900000px;}
.y4c{bottom:260.524500px;}
.y107{bottom:260.826000px;}
.yb5{bottom:261.366000px;}
.y192{bottom:271.140000px;}
.y14a{bottom:273.915000px;}
.y7f{bottom:274.348500px;}
.yd6{bottom:274.815000px;}
.y163{bottom:275.712000px;}
.y113{bottom:276.160500px;}
.y4b{bottom:279.981000px;}
.y105{bottom:284.466000px;}
.y191{bottom:288.400500px;}
.y149{bottom:292.744500px;}
.y7e{bottom:293.178000px;}
.y1c9{bottom:293.421000px;}
.y162{bottom:294.541500px;}
.yb4{bottom:294.990000px;}
.y20{bottom:295.342500px;}
.yd5{bottom:298.128000px;}
.y4a{bottom:299.439000px;}
.y106{bottom:300.588000px;}
.y104{bottom:300.904500px;}
.y190{bottom:305.659500px;}
.y1c8{bottom:310.681500px;}
.y148{bottom:311.574000px;}
.y7d{bottom:312.007500px;}
.y1f{bottom:313.231500px;}
.y161{bottom:313.371000px;}
.yb3{bottom:313.819500px;}
.y16c{bottom:316.374534px;}
.y103{bottom:317.343000px;}
.y49{bottom:318.895500px;}
.y18f{bottom:322.920000px;}
.y1c7{bottom:327.940500px;}
.y147{bottom:330.403500px;}
.y7c{bottom:330.837000px;}
.y1e{bottom:331.119000px;}
.yd4{bottom:331.752000px;}
.y160{bottom:332.200500px;}
.yb2{bottom:332.649000px;}
.y48{bottom:338.353500px;}
.y18e{bottom:340.180500px;}
.y102{bottom:340.984500px;}
.y1c6{bottom:345.201000px;}
.y1d{bottom:349.006500px;}
.y146{bottom:349.233000px;}
.y7b{bottom:349.666500px;}
.yd3{bottom:350.581500px;}
.y15f{bottom:351.030000px;}
.yb1{bottom:351.478500px;}
.y18d{bottom:357.441000px;}
.y47{bottom:357.810000px;}
.y1c5{bottom:362.461500px;}
.y145{bottom:368.062500px;}
.y7a{bottom:368.496000px;}
.yd2{bottom:369.411000px;}
.y15e{bottom:369.859500px;}
.yb0{bottom:370.308000px;}
.y101{bottom:372.603000px;}
.y18c{bottom:374.701500px;}
.y46{bottom:377.266500px;}
.y1c4{bottom:379.722000px;}
.y1c{bottom:384.828000px;}
.y144{bottom:386.892000px;}
.y79{bottom:387.325500px;}
.yd1{bottom:388.240500px;}
.y15d{bottom:388.689000px;}
.yaf{bottom:389.137500px;}
.y100{bottom:391.836000px;}
.y18b{bottom:391.962000px;}
.y45{bottom:396.724500px;}
.y1c3{bottom:396.982500px;}
.y1b{bottom:402.715500px;}
.y143{bottom:405.721500px;}
.y78{bottom:406.155000px;}
.yd0{bottom:407.070000px;}
.y15c{bottom:407.518500px;}
.yae{bottom:407.967000px;}
.y18a{bottom:409.222500px;}
.yff{bottom:411.069000px;}
.y1c2{bottom:414.243000px;}
.y1d6{bottom:414.451500px;}
.y44{bottom:416.181000px;}
.y1d5{bottom:417.471000px;}
.y1a{bottom:420.604500px;}
.y142{bottom:424.551000px;}
.y77{bottom:424.984500px;}
.ycf{bottom:425.899500px;}
.y15b{bottom:426.348000px;}
.y189{bottom:426.483000px;}
.yad{bottom:426.796500px;}
.y1c1{bottom:431.503500px;}
.y43{bottom:435.637500px;}
.y141{bottom:443.380500px;}
.y188{bottom:443.742000px;}
.y76{bottom:443.814000px;}
.yfe{bottom:444.280500px;}
.yce{bottom:444.729000px;}
.y15a{bottom:445.177500px;}
.yac{bottom:445.626000px;}
.y1c0{bottom:448.764000px;}
.y1d4{bottom:448.972500px;}
.y1d3{bottom:451.992000px;}
.y42{bottom:455.095500px;}
.y19{bottom:456.424500px;}
.y187{bottom:461.002500px;}
.y140{bottom:462.210000px;}
.y75{bottom:462.643500px;}
.yfd{bottom:463.110000px;}
.ycd{bottom:463.558500px;}
.y159{bottom:464.007000px;}
.yab{bottom:464.454000px;}
.y1bf{bottom:466.024500px;}
.y18{bottom:474.312000px;}
.y41{bottom:474.552000px;}
.y186{bottom:478.263000px;}
.y13f{bottom:481.039500px;}
.y74{bottom:481.473000px;}
.yfc{bottom:481.939500px;}
.ycc{bottom:482.388000px;}
.y158{bottom:482.836500px;}
.yaa{bottom:483.283500px;}
.y17{bottom:492.201000px;}
.y40{bottom:494.010000px;}
.y13e{bottom:499.869000px;}
.y185{bottom:500.007000px;}
.y73{bottom:500.302500px;}
.y1be{bottom:500.544000px;}
.yfb{bottom:500.769000px;}
.ycb{bottom:501.217500px;}
.y157{bottom:501.666000px;}
.ya9{bottom:502.113000px;}
.y16{bottom:510.088500px;}
.y3f{bottom:513.466500px;}
.y1bd{bottom:517.804500px;}
.y13d{bottom:518.698500px;}
.y72{bottom:519.132000px;}
.y156{bottom:520.495500px;}
.ya8{bottom:520.942500px;}
.yfa{bottom:524.082000px;}
.yca{bottom:524.529000px;}
.y15{bottom:527.976000px;}
.y3e{bottom:532.923000px;}
.y184{bottom:533.631000px;}
.y1bb{bottom:535.065000px;}
.y13c{bottom:537.528000px;}
.y71{bottom:537.961500px;}
.y1bc{bottom:538.065000px;}
.y155{bottom:539.323500px;}
.ya7{bottom:539.772000px;}
.y14{bottom:545.865000px;}
.y1ba{bottom:552.325500px;}
.y3d{bottom:552.381000px;}
.y13b{bottom:556.356000px;}
.y70{bottom:556.791000px;}
.yf9{bottom:557.706000px;}
.yc9{bottom:558.153000px;}
.ya6{bottom:558.601500px;}
.y183{bottom:560.172000px;}
.y13{bottom:563.752500px;}
.y1b9{bottom:569.586000px;}
.y3c{bottom:571.837500px;}
.y13a{bottom:575.185500px;}
.y6f{bottom:575.620500px;}
.yf8{bottom:576.535500px;}
.yc8{bottom:576.982500px;}
.ya5{bottom:577.431000px;}
.y182{bottom:577.746000px;}
.y12{bottom:581.640000px;}
.y1b8{bottom:586.846500px;}
.y3b{bottom:591.294000px;}
.y139{bottom:594.015000px;}
.y6e{bottom:594.450000px;}
.y181{bottom:595.320000px;}
.yf7{bottom:595.365000px;}
.yc7{bottom:595.812000px;}
.ya4{bottom:596.260500px;}
.y11{bottom:599.529000px;}
.y1b7{bottom:604.107000px;}
.y3a{bottom:610.752000px;}
.y138{bottom:612.844500px;}
.y6d{bottom:613.279500px;}
.yf6{bottom:614.194500px;}
.yc6{bottom:614.641500px;}
.ya3{bottom:615.090000px;}
.y10{bottom:617.416500px;}
.y16b{bottom:621.113796px;}
.y1b6{bottom:621.366000px;}
.y180{bottom:621.859500px;}
.y39{bottom:630.208500px;}
.y137{bottom:631.674000px;}
.y6c{bottom:632.109000px;}
.yf5{bottom:633.022500px;}
.yc5{bottom:633.471000px;}
.ya2{bottom:633.919500px;}
.yf{bottom:635.304000px;}
.y1b5{bottom:638.626500px;}
.y17f{bottom:644.949000px;}
.y136{bottom:650.503500px;}
.y6b{bottom:650.938500px;}
.yf4{bottom:651.852000px;}
.yc4{bottom:652.300500px;}
.ya1{bottom:652.749000px;}
.ye{bottom:653.193000px;}
.y1b4{bottom:655.887000px;}
.y17e{bottom:668.037000px;}
.yc3{bottom:668.400000px;}
.y38{bottom:668.794500px;}
.y135{bottom:669.333000px;}
.y6a{bottom:669.768000px;}
.yf3{bottom:670.681500px;}
.yd{bottom:671.080500px;}
.yc2{bottom:671.130000px;}
.ya0{bottom:671.578500px;}
.y1b3{bottom:673.147500px;}
.y37{bottom:684.934500px;}
.y134{bottom:688.162500px;}
.y69{bottom:688.596000px;}
.yc1{bottom:689.959500px;}
.y9f{bottom:690.408000px;}
.y17d{bottom:691.125000px;}
.ya{bottom:693.451555px;}
.yf2{bottom:693.994500px;}
.y36{bottom:705.412500px;}
.y68{bottom:707.425500px;}
.y1b2{bottom:707.668500px;}
.y17c{bottom:708.699000px;}
.yc0{bottom:708.789000px;}
.y9e{bottom:709.237500px;}
.y35{bottom:717.213000px;}
.y1b1{bottom:724.929000px;}
.y67{bottom:726.255000px;}
.ybf{bottom:727.618500px;}
.y9d{bottom:728.067000px;}
.y133{bottom:728.296500px;}
.y34{bottom:733.353000px;}
.y17b{bottom:735.240000px;}
.y1b0{bottom:742.189500px;}
.y131{bottom:742.492500px;}
.y66{bottom:745.084500px;}
.yf1{bottom:746.448000px;}
.y132{bottom:746.833500px;}
.y9c{bottom:746.896500px;}
.ybe{bottom:750.931500px;}
.y17a{bottom:752.814000px;}
.y33{bottom:753.831000px;}
.y12f{bottom:756.690000px;}
.y1af{bottom:759.450000px;}
.y130{bottom:761.029500px;}
.y65{bottom:763.914000px;}
.yf0{bottom:765.277500px;}
.y32{bottom:765.631500px;}
.y9b{bottom:765.726000px;}
.y179{bottom:770.388000px;}
.y1ae{bottom:776.709000px;}
.y12e{bottom:777.763500px;}
.y64{bottom:782.743500px;}
.yef{bottom:784.107000px;}
.y9a{bottom:784.555500px;}
.y31{bottom:786.111000px;}
.y178{bottom:787.962000px;}
.y1ad{bottom:793.969500px;}
.y12d{bottom:794.838000px;}
.y30{bottom:797.910000px;}
.y63{bottom:801.573000px;}
.yee{bottom:802.936500px;}
.y99{bottom:803.385000px;}
.y177{bottom:805.536000px;}
.ybd{bottom:808.809000px;}
.y1ac{bottom:811.230000px;}
.y12c{bottom:811.593000px;}
.y2f{bottom:814.050000px;}
.y2e{bottom:818.389500px;}
.y62{bottom:820.402500px;}
.yed{bottom:821.766000px;}
.y98{bottom:822.214500px;}
.y12b{bottom:828.349500px;}
.y1ab{bottom:828.490500px;}
.y2d{bottom:830.190000px;}
.y61{bottom:839.232000px;}
.yec{bottom:840.595500px;}
.y97{bottom:841.044000px;}
.y12a{bottom:845.422500px;}
.y1aa{bottom:845.751000px;}
.y2c{bottom:850.669500px;}
.y60{bottom:858.061500px;}
.yeb{bottom:859.425000px;}
.y96{bottom:859.873500px;}
.y2b{bottom:862.468500px;}
.y129{bottom:862.497000px;}
.y1a9{bottom:863.011500px;}
.y5f{bottom:876.891000px;}
.yea{bottom:878.254500px;}
.y2a{bottom:878.608500px;}
.y95{bottom:878.703000px;}
.y128{bottom:879.570000px;}
.y1a8{bottom:880.272000px;}
.y29{bottom:882.948000px;}
.y5e{bottom:895.720500px;}
.y127{bottom:896.643000px;}
.ye9{bottom:897.084000px;}
.y94{bottom:897.532500px;}
.y126{bottom:913.717500px;}
.y5d{bottom:914.550000px;}
.y1a6{bottom:914.791500px;}
.y1a7{bottom:914.793000px;}
.ye8{bottom:915.913500px;}
.y93{bottom:916.362000px;}
.y9{bottom:923.142000px;}
.y125{bottom:930.790500px;}
.y1a5{bottom:932.052000px;}
.y5c{bottom:933.379500px;}
.y16a{bottom:933.593508px;}
.ye7{bottom:934.743000px;}
.y92{bottom:935.191500px;}
.y8{bottom:941.971500px;}
.y124{bottom:947.863500px;}
.y1a4{bottom:949.312500px;}
.y5b{bottom:952.209000px;}
.y169{bottom:952.852950px;}
.ye6{bottom:953.572500px;}
.y91{bottom:954.021000px;}
.y90{bottom:957.352500px;}
.y123{bottom:964.938000px;}
.y1a3{bottom:966.573000px;}
.y5a{bottom:971.038500px;}
.ye5{bottom:972.402000px;}
.y8f{bottom:972.849000px;}
.y122{bottom:982.011000px;}
.y1a2{bottom:983.833500px;}
.y7{bottom:984.711000px;}
.y59{bottom:989.868000px;}
.ye4{bottom:991.231500px;}
.y8e{bottom:991.678500px;}
.y154{bottom:995.713500px;}
.y1a1{bottom:1001.094000px;}
.y120{bottom:1005.969000px;}
.y167{bottom:1007.573004px;}
.y58{bottom:1008.697500px;}
.y8d{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.ye3{bottom:1014.543000px;}
.y166{bottom:1016.212950px;}
.y1a0{bottom:1018.354500px;}
.y11f{bottom:1022.407500px;}
.y57{bottom:1027.527000px;}
.y8c{bottom:1029.337500px;}
.y121{bottom:1030.627500px;}
.y19f{bottom:1035.615000px;}
.y11e{bottom:1038.846000px;}
.y5{bottom:1041.199500px;}
.y56{bottom:1046.356500px;}
.y8b{bottom:1048.167000px;}
.y19e{bottom:1052.875500px;}
.y11d{bottom:1055.284500px;}
.y55{bottom:1065.186000px;}
.y8a{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y19d{bottom:1070.134500px;}
.y176{bottom:1072.422000px;}
.y54{bottom:1084.015500px;}
.y89{bottom:1085.826000px;}
.y11c{bottom:1086.904500px;}
.y19c{bottom:1087.395000px;}
.y3{bottom:1097.688000px;}
.ye2{bottom:1101.925500px;}
.y88{bottom:1104.655500px;}
.y11b{bottom:1106.137500px;}
.y53{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y52{bottom:1173.397500px;}
.h15{height:25.177651px;}
.h8{height:25.508090px;}
.h1b{height:27.974981px;}
.h19{height:31.526842px;}
.he{height:32.565965px;}
.ha{height:33.112997px;}
.h21{height:33.268184px;}
.h9{height:34.199443px;}
.h14{height:37.334628px;}
.h22{height:37.520508px;}
.hc{height:37.993262px;}
.hb{height:38.035105px;}
.h1a{height:41.250077px;}
.h18{height:41.482876px;}
.hf{height:43.421105px;}
.h11{height:43.468925px;}
.h4{height:43.815515px;}
.hd{height:47.329262px;}
.h25{height:48.761719px;}
.h13{height:48.848947px;}
.h12{height:48.902746px;}
.h24{height:50.229492px;}
.h2{height:50.931027px;}
.h1c{height:52.402876px;}
.h10{height:54.083105px;}
.h17{height:54.276245px;}
.h16{height:54.336020px;}
.h23{height:55.922168px;}
.h1f{height:56.251262px;}
.h1d{height:57.517262px;}
.h1e{height:57.523262px;}
.h26{height:60.848947px;}
.h27{height:61.760947px;}
.h6{height:62.991506px;}
.h7{height:66.888020px;}
.h3{height:82.327410px;}
.h5{height:97.805491px;}
.h20{height:918.688500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:196.723648px;}
.w4{width:405.090000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xe0{left:-187.608000px;}
.x0{left:0.000000px;}
.xe1{left:7.962000px;}
.x5{left:29.274117px;}
.x3{left:52.870500px;}
.x1{left:54.000000px;}
.x2{left:58.043648px;}
.xe6{left:86.272500px;}
.xf0{left:88.720500px;}
.x4{left:95.649000px;}
.x6{left:101.565000px;}
.xf5{left:140.206500px;}
.xf4{left:141.747000px;}
.xf6{left:143.949000px;}
.x61{left:248.655000px;}
.xa{left:249.832500px;}
.x7{left:250.897500px;}
.x55{left:253.617000px;}
.x8a{left:260.313000px;}
.xc2{left:262.006500px;}
.x86{left:264.792000px;}
.x87{left:269.802000px;}
.x8{left:271.017000px;}
.xad{left:272.580000px;}
.x88{left:278.967000px;}
.x27{left:282.786000px;}
.xc3{left:286.504500px;}
.xae{left:287.524500px;}
.xa9{left:288.702000px;}
.xaf{left:291.229500px;}
.x35{left:292.530000px;}
.xbe{left:294.148500px;}
.x81{left:295.449000px;}
.xc4{left:296.551500px;}
.xc1{left:298.629000px;}
.x36{left:300.001500px;}
.x84{left:301.704000px;}
.xaa{left:303.646500px;}
.x8b{left:306.447000px;}
.x85{left:308.280000px;}
.xb{left:310.279500px;}
.xc{left:312.070500px;}
.xb0{left:313.585500px;}
.x8c{left:316.161000px;}
.xcc{left:319.486500px;}
.x26{left:321.079500px;}
.xab{left:322.401000px;}
.xd{left:326.958000px;}
.xb1{left:328.530000px;}
.xe5{left:330.247500px;}
.x5d{left:333.294000px;}
.x24{left:334.600500px;}
.xcd{left:335.929500px;}
.xb3{left:338.539500px;}
.xac{left:341.155500px;}
.x45{left:344.880000px;}
.x5e{left:348.238500px;}
.x25{left:350.259000px;}
.x46{left:352.353000px;}
.x47{left:356.014500px;}
.xb2{left:357.324000px;}
.xd2{left:359.853000px;}
.x50{left:364.590000px;}
.x6a{left:366.159000px;}
.xd3{left:369.084000px;}
.x48{left:370.957500px;}
.x49{left:374.619000px;}
.x2c{left:376.432500px;}
.xa4{left:378.457500px;}
.x51{left:379.533000px;}
.x6b{left:381.102000px;}
.xf3{left:382.254000px;}
.x2d{left:383.905500px;}
.xb4{left:388.215000px;}
.x4a{left:389.563500px;}
.x43{left:391.165500px;}
.xa5{left:393.400500px;}
.xe2{left:394.961955px;}
.x6f{left:396.358500px;}
.xb5{left:397.444500px;}
.x6c{left:399.786000px;}
.x67{left:401.785500px;}
.xda{left:403.626000px;}
.x9b{left:404.868000px;}
.x44{left:406.108500px;}
.xba{left:408.688500px;}
.x7f{left:410.014500px;}
.x70{left:412.407000px;}
.x68{left:414.076500px;}
.xbf{left:415.149000px;}
.x5f{left:416.391000px;}
.x4d{left:420.666000px;}
.xbb{left:423.633000px;}
.x40{left:424.845000px;}
.xbc{left:427.432500px;}
.x9c{left:430.101000px;}
.x60{left:431.335500px;}
.x69{left:432.745500px;}
.xb6{left:434.062500px;}
.x41{left:439.789500px;}
.xbd{left:442.375500px;}
.x9d{left:445.045500px;}
.xb7{left:449.005500px;}
.xb8{left:452.817000px;}
.xc0{left:453.862500px;}
.x4f{left:455.365500px;}
.x12{left:456.957000px;}
.x71{left:461.847000px;}
.xd4{left:464.274000px;}
.x89{left:466.488000px;}
.xb9{left:467.760000px;}
.x13{left:471.387000px;}
.xa7{left:477.613500px;}
.x2a{left:484.701000px;}
.x2b{left:492.172500px;}
.xce{left:497.206500px;}
.x14{left:498.408000px;}
.x15{left:506.715000px;}
.xd0{left:509.184000px;}
.xcf{left:512.151000px;}
.x91{left:516.558000px;}
.x83{left:520.698000px;}
.xd1{left:524.128500px;}
.x77{left:527.134500px;}
.x92{left:532.854000px;}
.x16{left:534.340500px;}
.x78{left:536.253000px;}
.xd5{left:540.328500px;}
.x10{left:543.109500px;}
.x80{left:547.555500px;}
.x17{left:548.758500px;}
.xd9{left:549.813000px;}
.xe{left:553.660500px;}
.xe8{left:556.711500px;}
.x11{left:559.299000px;}
.x62{left:562.567500px;}
.xdd{left:563.896500px;}
.x52{left:565.150500px;}
.xf{left:568.548000px;}
.xd6{left:571.129500px;}
.x1c{left:575.610000px;}
.x63{left:577.510500px;}
.xde{left:578.839500px;}
.x4b{left:580.786500px;}
.x1e{left:583.413000px;}
.x93{left:585.555000px;}
.x3b{left:590.170500px;}
.x58{left:591.258000px;}
.x75{left:594.636000px;}
.x4c{left:595.729500px;}
.x1f{left:598.636500px;}
.x82{left:603.226500px;}
.x1d{left:604.552500px;}
.xdf{left:606.697500px;}
.x65{left:607.986000px;}
.x7d{left:609.480000px;}
.x18{left:612.973500px;}
.x42{left:614.202000px;}
.xdc{left:615.538500px;}
.x7e{left:621.333000px;}
.x66{left:622.930500px;}
.x8f{left:624.300000px;}
.x19{left:627.393000px;}
.x90{left:629.643000px;}
.x9e{left:631.836000px;}
.x3e{left:634.585500px;}
.x79{left:640.366500px;}
.x99{left:641.913000px;}
.xe3{left:645.370500px;}
.x9f{left:646.780500px;}
.x3f{left:649.530000px;}
.xa0{left:650.590500px;}
.x1a{left:654.355500px;}
.x9a{left:657.942000px;}
.x7a{left:661.032000px;}
.x1b{left:662.664000px;}
.xec{left:663.822000px;}
.xa1{left:665.535000px;}
.x7b{left:667.260000px;}
.x2e{left:668.982000px;}
.xa2{left:670.633500px;}
.xe4{left:673.198500px;}
.x33{left:674.298000px;}
.x2f{left:676.453500px;}
.xa8{left:679.894500px;}
.x34{left:681.769500px;}
.xa3{left:685.726500px;}
.x20{left:689.389500px;}
.xed{left:690.721500px;}
.x7c{left:693.258000px;}
.x64{left:696.070500px;}
.x96{left:698.188500px;}
.x21{left:704.614500px;}
.x97{left:705.661500px;}
.xc9{left:708.040500px;}
.x76{left:709.902000px;}
.x30{left:711.358500px;}
.xf2{left:713.992500px;}
.x9{left:716.008500px;}
.x31{left:718.680000px;}
.x53{left:720.297000px;}
.x59{left:721.320000px;}
.xeb{left:722.533500px;}
.xca{left:724.081500px;}
.x32{left:726.153000px;}
.xc7{left:727.822500px;}
.x94{left:728.952000px;}
.x98{left:730.707000px;}
.x22{left:732.784500px;}
.x54{left:735.240000px;}
.x5a{left:736.264500px;}
.xd7{left:738.844500px;}
.x23{left:741.091500px;}
.xc8{left:742.767000px;}
.x95{left:747.010500px;}
.xef{left:751.072500px;}
.xf7{left:752.260500px;}
.x73{left:754.437000px;}
.x28{left:757.810500px;}
.x5b{left:761.253000px;}
.xf1{left:763.245000px;}
.x29{left:765.282000px;}
.x74{left:766.615500px;}
.xc5{left:768.690000px;}
.x8d{left:770.856000px;}
.xc6{left:774.189000px;}
.x8e{left:776.199000px;}
.x37{left:786.255000px;}
.xe9{left:788.166000px;}
.x4e{left:789.394500px;}
.xdb{left:791.287500px;}
.x38{left:793.728000px;}
.xd8{left:795.294000px;}
.xcb{left:796.300500px;}
.x39{left:797.460000px;}
.x6d{left:803.563500px;}
.x3a{left:804.931500px;}
.xa6{left:805.966500px;}
.x6e{left:809.989500px;}
.x72{left:811.945500px;}
.x5c{left:813.169500px;}
.xea{left:815.065500px;}
.xe7{left:816.436500px;}
.x56{left:817.828500px;}
.x3c{left:819.042000px;}
.x57{left:832.773000px;}
.x3d{left:833.986500px;}
.xee{left:837.225000px;}
@media print{
.v4{vertical-align:-15.429333pt;}
.v8{vertical-align:-1.125333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.125333pt;}
.v3{vertical-align:8.298667pt;}
.v5{vertical-align:9.477333pt;}
.v2{vertical-align:11.157333pt;}
.v9{vertical-align:16.229333pt;}
.v6{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.ls44{letter-spacing:-0.302400pt;}
.ls3e{letter-spacing:-0.080864pt;}
.ls43{letter-spacing:-0.080160pt;}
.ls46{letter-spacing:-0.062400pt;}
.ls3f{letter-spacing:-0.046816pt;}
.ls42{letter-spacing:-0.042752pt;}
.ls47{letter-spacing:-0.038400pt;}
.ls41{letter-spacing:-0.016032pt;}
.lsf{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000084pt;}
.ls66{letter-spacing:0.000185pt;}
.lsa{letter-spacing:0.000481pt;}
.ls6a{letter-spacing:0.000484pt;}
.ls5e{letter-spacing:0.000503pt;}
.ls32{letter-spacing:0.000544pt;}
.ls50{letter-spacing:0.000711pt;}
.ls69{letter-spacing:0.000853pt;}
.ls54{letter-spacing:0.000921pt;}
.ls61{letter-spacing:0.000980pt;}
.ls28{letter-spacing:0.001007pt;}
.ls51{letter-spacing:0.001026pt;}
.ls5b{letter-spacing:0.001628pt;}
.ls27{letter-spacing:0.001774pt;}
.ls4a{letter-spacing:0.002038pt;}
.ls53{letter-spacing:0.002262pt;}
.ls60{letter-spacing:0.002525pt;}
.ls57{letter-spacing:0.002538pt;}
.ls17{letter-spacing:0.002764pt;}
.ls5c{letter-spacing:0.002881pt;}
.ls56{letter-spacing:0.003014pt;}
.ls49{letter-spacing:0.004120pt;}
.ls35{letter-spacing:0.014400pt;}
.ls36{letter-spacing:0.033600pt;}
.ls34{letter-spacing:0.064128pt;}
.ls33{letter-spacing:0.076608pt;}
.ls37{letter-spacing:0.110400pt;}
.ls38{letter-spacing:0.129600pt;}
.ls45{letter-spacing:0.158400pt;}
.ls3d{letter-spacing:0.161728pt;}
.ls40{letter-spacing:0.178752pt;}
.ls48{letter-spacing:0.482502pt;}
.ls31{letter-spacing:0.637608pt;}
.ls10{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls6{letter-spacing:9.298933pt;}
.lse{letter-spacing:10.626533pt;}
.ls7{letter-spacing:10.629067pt;}
.ls67{letter-spacing:10.733235pt;}
.lsd{letter-spacing:11.349464pt;}
.lsc{letter-spacing:11.636637pt;}
.ls59{letter-spacing:11.801896pt;}
.ls3b{letter-spacing:11.918654pt;}
.ls3a{letter-spacing:11.923977pt;}
.ls3c{letter-spacing:11.953007pt;}
.ls4b{letter-spacing:11.954133pt;}
.ls62{letter-spacing:11.956898pt;}
.ls64{letter-spacing:11.957837pt;}
.ls4c{letter-spacing:11.959467pt;}
.ls6c{letter-spacing:12.023031pt;}
.ls52{letter-spacing:12.036744pt;}
.ls5a{letter-spacing:12.059970pt;}
.lsb{letter-spacing:12.085572pt;}
.ls21{letter-spacing:12.098781pt;}
.ls6d{letter-spacing:12.150384pt;}
.ls55{letter-spacing:12.191141pt;}
.ls4d{letter-spacing:12.478787pt;}
.ls22{letter-spacing:12.528078pt;}
.ls24{letter-spacing:12.533411pt;}
.ls4f{letter-spacing:13.153297pt;}
.ls12{letter-spacing:13.202343pt;}
.ls20{letter-spacing:13.208597pt;}
.ls15{letter-spacing:13.226169pt;}
.ls1e{letter-spacing:13.278015pt;}
.ls14{letter-spacing:13.279545pt;}
.ls2{letter-spacing:13.282422pt;}
.ls1d{letter-spacing:13.283349pt;}
.ls0{letter-spacing:13.283733pt;}
.ls19{letter-spacing:13.284878pt;}
.ls11{letter-spacing:13.296657pt;}
.ls18{letter-spacing:13.374467pt;}
.ls1a{letter-spacing:13.379303pt;}
.ls16{letter-spacing:13.489222pt;}
.ls5f{letter-spacing:13.550682pt;}
.ls1c{letter-spacing:13.923096pt;}
.ls26{letter-spacing:13.950400pt;}
.ls68{letter-spacing:14.287937pt;}
.ls65{letter-spacing:14.382055pt;}
.ls5d{letter-spacing:14.646715pt;}
.ls58{letter-spacing:14.653950pt;}
.ls25{letter-spacing:15.242217pt;}
.ls1f{letter-spacing:15.299733pt;}
.ls6b{letter-spacing:15.819963pt;}
.ls4{letter-spacing:15.937067pt;}
.ls4e{letter-spacing:17.257872pt;}
.ls1b{letter-spacing:18.438400pt;}
.ls13{letter-spacing:18.562478pt;}
.ls63{letter-spacing:20.947430pt;}
.ls1{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls2e{letter-spacing:232.576533pt;}
.ls2d{letter-spacing:236.544533pt;}
.ls23{letter-spacing:239.125867pt;}
.ls2f{letter-spacing:244.528533pt;}
.ls2c{letter-spacing:244.533867pt;}
.ls2b{letter-spacing:260.453867pt;}
.ls30{letter-spacing:277.520533pt;}
.ls2a{letter-spacing:354.752533pt;}
.ls39{letter-spacing:752.000000pt;}
.ws0{word-spacing:-91.094364pt;}
.wsdb{word-spacing:-42.721728pt;}
.ws3{word-spacing:-13.283467pt;}
.wsdd{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.955200pt;}
.wsc0{word-spacing:-11.264408pt;}
.wsdc{word-spacing:-10.801728pt;}
.ws19{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.wsd{word-spacing:-9.298400pt;}
.wseb{word-spacing:-3.246224pt;}
.ws83{word-spacing:-2.975497pt;}
.ws97{word-spacing:-2.656693pt;}
.ws74{word-spacing:-2.337890pt;}
.ws12{word-spacing:-2.231616pt;}
.wsa1{word-spacing:-1.965953pt;}
.ws52{word-spacing:-1.700284pt;}
.wsa{word-spacing:-1.696326pt;}
.ws7f{word-spacing:-1.647150pt;}
.ws138{word-spacing:-1.578086pt;}
.ws63{word-spacing:-1.434614pt;}
.ws5e{word-spacing:-1.381481pt;}
.ws70{word-spacing:-1.222079pt;}
.wsfe{word-spacing:-1.195520pt;}
.ws9{word-spacing:-1.175671pt;}
.wsd4{word-spacing:-1.168945pt;}
.ws7d{word-spacing:-1.115811pt;}
.ws13e{word-spacing:-1.099878pt;}
.wsd2{word-spacing:-1.062677pt;}
.ws7e{word-spacing:-1.009543pt;}
.wsf7{word-spacing:-1.001598pt;}
.wsf6{word-spacing:-0.956416pt;}
.wscf{word-spacing:-0.956410pt;}
.ws7a{word-spacing:-0.903276pt;}
.ws13d{word-spacing:-0.860774pt;}
.ws75{word-spacing:-0.850142pt;}
.wsd1{word-spacing:-0.743874pt;}
.wsbf{word-spacing:-0.722622pt;}
.ws53{word-spacing:-0.690740pt;}
.ws54{word-spacing:-0.637606pt;}
.ws30{word-spacing:-0.621670pt;}
.ws84{word-spacing:-0.584473pt;}
.ws31{word-spacing:-0.573850pt;}
.ws46{word-spacing:-0.531339pt;}
.ws10c{word-spacing:-0.526029pt;}
.ws13b{word-spacing:-0.478208pt;}
.ws82{word-spacing:-0.478205pt;}
.wsc2{word-spacing:-0.467579pt;}
.wsc1{word-spacing:-0.425072pt;}
.wsd7{word-spacing:-0.425071pt;}
.ws114{word-spacing:-0.382566pt;}
.ws32{word-spacing:-0.334746pt;}
.ws51{word-spacing:-0.318803pt;}
.wsd9{word-spacing:-0.295078pt;}
.ws121{word-spacing:-0.286925pt;}
.ws134{word-spacing:-0.277807pt;}
.ws48{word-spacing:-0.265669pt;}
.wsf0{word-spacing:-0.239104pt;}
.ws35{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.191283pt;}
.wsd5{word-spacing:-0.183458pt;}
.ws124{word-spacing:-0.179809pt;}
.ws9b{word-spacing:-0.179761pt;}
.ws39{word-spacing:-0.159402pt;}
.ws20{word-spacing:-0.143462pt;}
.ws68{word-spacing:-0.106268pt;}
.wse5{word-spacing:-0.096000pt;}
.wsec{word-spacing:-0.095642pt;}
.ws85{word-spacing:-0.085664pt;}
.ws2{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.ws12d{word-spacing:-0.024175pt;}
.ws126{word-spacing:-0.014794pt;}
.ws135{word-spacing:-0.011145pt;}
.ws11e{word-spacing:-0.008909pt;}
.ws147{word-spacing:-0.008209pt;}
.ws13f{word-spacing:-0.008115pt;}
.ws12a{word-spacing:-0.007851pt;}
.wsf3{word-spacing:-0.007689pt;}
.ws11d{word-spacing:-0.007526pt;}
.ws137{word-spacing:-0.005939pt;}
.ws116{word-spacing:-0.005854pt;}
.ws111{word-spacing:-0.005538pt;}
.ws146{word-spacing:-0.005129pt;}
.wsef{word-spacing:-0.004702pt;}
.ws87{word-spacing:-0.004514pt;}
.wsaf{word-spacing:-0.004267pt;}
.ws89{word-spacing:-0.004045pt;}
.wsfa{word-spacing:-0.003959pt;}
.ws88{word-spacing:-0.003814pt;}
.wsf1{word-spacing:-0.003806pt;}
.wsf9{word-spacing:-0.003226pt;}
.ws58{word-spacing:-0.002738pt;}
.ws33{word-spacing:-0.002701pt;}
.wsc{word-spacing:-0.002117pt;}
.ws8{word-spacing:-0.001622pt;}
.ws6{word-spacing:-0.001089pt;}
.wsc5{word-spacing:-0.001067pt;}
.ws149{word-spacing:-0.000410pt;}
.ws115{word-spacing:-0.000350pt;}
.ws1{word-spacing:0.000000pt;}
.wsab{word-spacing:0.001067pt;}
.wsb4{word-spacing:0.001212pt;}
.ws11c{word-spacing:0.001758pt;}
.ws4{word-spacing:0.001926pt;}
.ws10b{word-spacing:0.002048pt;}
.ws110{word-spacing:0.002330pt;}
.wse1{word-spacing:0.016032pt;}
.ws123{word-spacing:0.042206pt;}
.ws4d{word-spacing:0.042358pt;}
.ws145{word-spacing:0.047354pt;}
.ws10a{word-spacing:0.047821pt;}
.ws4e{word-spacing:0.053134pt;}
.ws3b{word-spacing:0.070091pt;}
.ws4c{word-spacing:0.072323pt;}
.ws65{word-spacing:0.088290pt;}
.ws86{word-spacing:0.095642pt;}
.ws5c{word-spacing:0.100996pt;}
.ws37{word-spacing:0.106268pt;}
.wse4{word-spacing:0.124800pt;}
.ws18{word-spacing:0.127522pt;}
.ws1c{word-spacing:0.143462pt;}
.wse3{word-spacing:0.144000pt;}
.wsc8{word-spacing:0.150277pt;}
.wse2{word-spacing:0.158400pt;}
.ws3a{word-spacing:0.159402pt;}
.wsc7{word-spacing:0.166797pt;}
.ws15{word-spacing:0.185968pt;}
.ws2f{word-spacing:0.191283pt;}
.wse6{word-spacing:0.196800pt;}
.ws64{word-spacing:0.212535pt;}
.ws99{word-spacing:0.223587pt;}
.ws11a{word-spacing:0.239104pt;}
.ws57{word-spacing:0.265669pt;}
.ws2d{word-spacing:0.286925pt;}
.ws10{word-spacing:0.297549pt;}
.ws49{word-spacing:0.318803pt;}
.ws4a{word-spacing:0.342344pt;}
.wsda{word-spacing:0.371937pt;}
.wsfc{word-spacing:0.382566pt;}
.ws9e{word-spacing:0.425071pt;}
.wsb8{word-spacing:0.459733pt;}
.ws8b{word-spacing:0.465067pt;}
.ws9d{word-spacing:0.478205pt;}
.wsff{word-spacing:0.526029pt;}
.ws6f{word-spacing:0.531339pt;}
.wsbd{word-spacing:0.571042pt;}
.ws36{word-spacing:0.584473pt;}
.wsb9{word-spacing:0.592913pt;}
.ws8c{word-spacing:0.593067pt;}
.wsb5{word-spacing:0.594133pt;}
.wsbb{word-spacing:0.596224pt;}
.wsa9{word-spacing:0.597333pt;}
.ws8a{word-spacing:0.598400pt;}
.wsba{word-spacing:0.601557pt;}
.ws98{word-spacing:0.637606pt;}
.wsc4{word-spacing:0.664000pt;}
.wsf{word-spacing:0.669485pt;}
.ws93{word-spacing:0.690740pt;}
.ws3f{word-spacing:0.702601pt;}
.ws40{word-spacing:0.743874pt;}
.wsd6{word-spacing:0.756891pt;}
.ws132{word-spacing:0.812954pt;}
.wse8{word-spacing:0.850142pt;}
.ws6e{word-spacing:0.903276pt;}
.wsfb{word-spacing:0.908595pt;}
.ws144{word-spacing:0.956416pt;}
.ws119{word-spacing:1.004237pt;}
.ws7b{word-spacing:1.009543pt;}
.ws7c{word-spacing:1.062677pt;}
.wscc{word-spacing:1.115811pt;}
.ws11{word-spacing:1.116669pt;}
.ws50{word-spacing:1.168945pt;}
.ws105{word-spacing:1.195520pt;}
.ws4f{word-spacing:1.222079pt;}
.ws1b{word-spacing:1.243341pt;}
.ws107{word-spacing:1.291162pt;}
.ws5a{word-spacing:1.328347pt;}
.ws118{word-spacing:1.338982pt;}
.ws55{word-spacing:1.381481pt;}
.ws22{word-spacing:1.386803pt;}
.wsee{word-spacing:1.482445pt;}
.ws9a{word-spacing:1.487748pt;}
.ws129{word-spacing:1.578086pt;}
.ws77{word-spacing:1.594016pt;}
.ws120{word-spacing:1.625907pt;}
.wscd{word-spacing:1.647150pt;}
.ws106{word-spacing:1.673728pt;}
.wsde{word-spacing:1.694048pt;}
.wsdf{word-spacing:1.720768pt;}
.wsea{word-spacing:1.721549pt;}
.wse0{word-spacing:1.758176pt;}
.ws66{word-spacing:1.806551pt;}
.ws13a{word-spacing:1.817112pt;}
.ws139{word-spacing:1.817190pt;}
.ws5f{word-spacing:1.859685pt;}
.ws131{word-spacing:1.865011pt;}
.ws67{word-spacing:1.912819pt;}
.ws130{word-spacing:1.912832pt;}
.ws103{word-spacing:1.960653pt;}
.ws42{word-spacing:1.965953pt;}
.ws41{word-spacing:2.019087pt;}
.ws117{word-spacing:2.056294pt;}
.ws5b{word-spacing:2.072221pt;}
.ws2a{word-spacing:2.104115pt;}
.wsd3{word-spacing:2.137089pt;}
.ws81{word-spacing:2.178489pt;}
.wsb{word-spacing:2.232481pt;}
.ws73{word-spacing:2.284756pt;}
.wsd0{word-spacing:2.391024pt;}
.ws12f{word-spacing:2.438861pt;}
.ws79{word-spacing:2.444158pt;}
.ws29{word-spacing:2.534502pt;}
.wsa6{word-spacing:2.550426pt;}
.ws1a{word-spacing:2.550432pt;}
.ws44{word-spacing:2.656693pt;}
.ws125{word-spacing:2.707934pt;}
.wsca{word-spacing:2.709827pt;}
.wsf8{word-spacing:2.725786pt;}
.ws25{word-spacing:2.773606pt;}
.ws62{word-spacing:2.816095pt;}
.ws108{word-spacing:2.821427pt;}
.wsf4{word-spacing:2.862234pt;}
.ws141{word-spacing:2.863369pt;}
.ws136{word-spacing:2.863829pt;}
.wsed{word-spacing:2.865980pt;}
.ws10e{word-spacing:2.866108pt;}
.ws122{word-spacing:2.867174pt;}
.ws12e{word-spacing:2.867456pt;}
.ws11f{word-spacing:2.868480pt;}
.ws13c{word-spacing:2.868881pt;}
.ws12b{word-spacing:2.868898pt;}
.wsa2{word-spacing:2.869229pt;}
.wsf5{word-spacing:2.869248pt;}
.ws109{word-spacing:2.869274pt;}
.ws133{word-spacing:2.869419pt;}
.ws10d{word-spacing:2.894685pt;}
.ws47{word-spacing:2.922363pt;}
.ws1e{word-spacing:2.964890pt;}
.ws38{word-spacing:2.975497pt;}
.ws1f{word-spacing:2.999289pt;}
.ws142{word-spacing:3.060531pt;}
.ws59{word-spacing:3.088508pt;}
.ws71{word-spacing:3.134898pt;}
.ws34{word-spacing:3.188032pt;}
.ws11b{word-spacing:3.203994pt;}
.wsa3{word-spacing:3.241166pt;}
.ws78{word-spacing:3.294300pt;}
.ws5d{word-spacing:3.342790pt;}
.wsd8{word-spacing:3.347434pt;}
.ws4b{word-spacing:3.370011pt;}
.ws43{word-spacing:3.453701pt;}
.wscb{word-spacing:3.613103pt;}
.ws128{word-spacing:3.634381pt;}
.wsc6{word-spacing:3.666237pt;}
.ws113{word-spacing:3.682202pt;}
.ws140{word-spacing:3.730022pt;}
.ws143{word-spacing:3.873485pt;}
.ws45{word-spacing:3.878772pt;}
.ws14{word-spacing:3.905328pt;}
.wsa5{word-spacing:3.931906pt;}
.ws148{word-spacing:3.969126pt;}
.ws2e{word-spacing:4.064768pt;}
.ws2c{word-spacing:4.112589pt;}
.wsc9{word-spacing:4.144442pt;}
.wsf2{word-spacing:4.160410pt;}
.ws80{word-spacing:4.197575pt;}
.ws100{word-spacing:4.208230pt;}
.ws3d{word-spacing:4.322437pt;}
.ws3c{word-spacing:4.356977pt;}
.wsfd{word-spacing:4.399514pt;}
.ws6a{word-spacing:4.463245pt;}
.wsa4{word-spacing:4.675780pt;}
.ws112{word-spacing:4.686438pt;}
.wsce{word-spacing:4.782048pt;}
.ws21{word-spacing:4.782080pt;}
.wsc3{word-spacing:4.835182pt;}
.ws94{word-spacing:4.888316pt;}
.ws95{word-spacing:4.941450pt;}
.ws60{word-spacing:4.994583pt;}
.ws6c{word-spacing:5.047717pt;}
.ws9c{word-spacing:5.153985pt;}
.ws76{word-spacing:5.207119pt;}
.ws27{word-spacing:5.212467pt;}
.ws6b{word-spacing:5.260253pt;}
.ws28{word-spacing:5.260288pt;}
.wse7{word-spacing:5.313387pt;}
.wsa7{word-spacing:5.366521pt;}
.ws69{word-spacing:5.525922pt;}
.wse{word-spacing:5.653427pt;}
.ws92{word-spacing:5.653458pt;}
.wse9{word-spacing:5.685324pt;}
.ws2b{word-spacing:5.881958pt;}
.ws24{word-spacing:5.929779pt;}
.ws104{word-spacing:6.025421pt;}
.ws91{word-spacing:6.036022pt;}
.ws72{word-spacing:6.694867pt;}
.ws96{word-spacing:6.801135pt;}
.wsa0{word-spacing:6.907403pt;}
.ws6d{word-spacing:7.279340pt;}
.ws56{word-spacing:7.332474pt;}
.ws61{word-spacing:7.438741pt;}
.ws9f{word-spacing:7.491875pt;}
.ws10f{word-spacing:8.081715pt;}
.ws16{word-spacing:9.707530pt;}
.ws7{word-spacing:11.051914pt;}
.ws127{word-spacing:11.907379pt;}
.ws90{word-spacing:14.792506pt;}
.ws101{word-spacing:15.868899pt;}
.ws102{word-spacing:15.876506pt;}
.ws3e{word-spacing:16.684034pt;}
.ws13{word-spacing:19.080317pt;}
.ws12c{word-spacing:43.038720pt;}
.ws8f{word-spacing:165.170883pt;}
.ws8e{word-spacing:184.834883pt;}
.wsaa{word-spacing:197.357550pt;}
.wsad{word-spacing:199.357410pt;}
.ws8d{word-spacing:204.843733pt;}
.wsae{word-spacing:209.314883pt;}
.wsa8{word-spacing:211.277550pt;}
.wsb2{word-spacing:221.298743pt;}
.wsb1{word-spacing:221.304077pt;}
.wsb0{word-spacing:223.272077pt;}
.wsbe{word-spacing:225.229550pt;}
.wsb6{word-spacing:249.138883pt;}
.wsbc{word-spacing:262.443733pt;}
.wsac{word-spacing:264.922522pt;}
.wsb7{word-spacing:313.754402pt;}
.wsb3{word-spacing:339.671083pt;}
._9{margin-left:-25.079185pt;}
._3b{margin-left:-22.182302pt;}
._5{margin-left:-20.669074pt;}
._3{margin-left:-19.181326pt;}
._39{margin-left:-18.096318pt;}
._e{margin-left:-17.034669pt;}
._b{margin-left:-13.703203pt;}
._0{margin-left:-10.616218pt;}
._1{margin-left:-8.799027pt;}
._35{margin-left:-7.218620pt;}
._15{margin-left:-5.977600pt;}
._10{margin-left:-4.994558pt;}
._6{margin-left:-3.931906pt;}
._7{margin-left:-2.924436pt;}
._a{margin-left:-1.175671pt;}
._2{width:1.489844pt;}
._4{width:2.971504pt;}
._d{width:3.979715pt;}
._37{width:6.141408pt;}
._8{width:7.385281pt;}
._13{width:9.861670pt;}
._f{width:11.530016pt;}
._17{width:12.433408pt;}
._18{width:14.633165pt;}
._c{width:16.239211pt;}
._20{width:17.188846pt;}
._19{width:18.171904pt;}
._22{width:19.772525pt;}
._1a{width:20.754227pt;}
._11{width:22.558477pt;}
._14{width:24.226836pt;}
._1f{width:25.769925pt;}
._1e{width:27.151406pt;}
._23{width:28.719194pt;}
._16{width:29.648896pt;}
._28{width:31.096765pt;}
._1b{width:32.135578pt;}
._12{width:33.213885pt;}
._27{width:36.981171pt;}
._21{width:39.212794pt;}
._3a{width:54.993920pt;}
._25{width:130.216038pt;}
._26{width:157.569536pt;}
._2f{width:162.567339pt;}
._29{width:168.663962pt;}
._31{width:173.660843pt;}
._2a{width:215.145779pt;}
._34{width:233.690317pt;}
._24{width:243.176135pt;}
._30{width:245.982481pt;}
._2c{width:248.105566pt;}
._2e{width:255.271125pt;}
._2d{width:257.985664pt;}
._2b{width:269.195511pt;}
._33{width:291.467776pt;}
._32{width:292.739089pt;}
._1c{width:662.935460pt;}
._36{width:1880.887884pt;}
._38{width:2241.360470pt;}
._1d{width:2262.613804pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs10{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:117.087872pt;}
.y168{bottom:-116.059600pt;}
.y170{bottom:-62.859600pt;}
.y16f{bottom:-28.140000pt;}
.y16e{bottom:-12.699600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.y16d{bottom:7.221568pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:14.977453pt;}
.y51{bottom:28.346667pt;}
.y175{bottom:79.105333pt;}
.y112{bottom:89.784000pt;}
.ye1{bottom:91.218667pt;}
.y28{bottom:91.398667pt;}
.y153{bottom:92.844000pt;}
.ye0{bottom:93.645333pt;}
.y174{bottom:95.842667pt;}
.y19b{bottom:102.930667pt;}
.y111{bottom:106.521333pt;}
.y27{bottom:107.298667pt;}
.y1d2{bottom:107.393333pt;}
.y152{bottom:109.581333pt;}
.y87{bottom:109.968000pt;}
.ydf{bottom:110.382667pt;}
.ybc{bottom:111.178667pt;}
.y173{bottom:116.565333pt;}
.y19a{bottom:118.273333pt;}
.y1d1{bottom:122.736000pt;}
.y26{bottom:123.200000pt;}
.y110{bottom:123.258667pt;}
.y151{bottom:126.318667pt;}
.y86{bottom:126.705333pt;}
.yde{bottom:127.120000pt;}
.ybb{bottom:127.916000pt;}
.y11a{bottom:128.314667pt;}
.y199{bottom:133.614667pt;}
.y1d0{bottom:138.078667pt;}
.y25{bottom:139.100000pt;}
.y172{bottom:141.557333pt;}
.y150{bottom:143.056000pt;}
.y85{bottom:143.442667pt;}
.ydd{bottom:143.857333pt;}
.yba{bottom:144.653333pt;}
.y119{bottom:145.052000pt;}
.y50{bottom:146.456000pt;}
.y198{bottom:148.957333pt;}
.y1cf{bottom:153.421333pt;}
.y24{bottom:155.000000pt;}
.y171{bottom:158.653333pt;}
.y10f{bottom:158.932000pt;}
.y14f{bottom:159.793333pt;}
.y84{bottom:160.178667pt;}
.ydc{bottom:160.594667pt;}
.yb9{bottom:161.390667pt;}
.y118{bottom:161.789333pt;}
.y4f{bottom:163.752000pt;}
.y197{bottom:164.300000pt;}
.y1ce{bottom:168.762667pt;}
.y23{bottom:170.901333pt;}
.y10d{bottom:171.552000pt;}
.y10e{bottom:175.409333pt;}
.y14e{bottom:176.530667pt;}
.y83{bottom:176.916000pt;}
.ydb{bottom:177.330667pt;}
.yb8{bottom:178.128000pt;}
.y117{bottom:178.526667pt;}
.y165{bottom:178.589333pt;}
.y196{bottom:179.642667pt;}
.y1cd{bottom:184.105333pt;}
.y10b{bottom:184.170667pt;}
.y22{bottom:186.801333pt;}
.y10c{bottom:188.029333pt;}
.y14d{bottom:193.268000pt;}
.y82{bottom:193.653333pt;}
.yd9{bottom:194.068000pt;}
.yb7{bottom:194.865333pt;}
.y195{bottom:194.985333pt;}
.y116{bottom:195.264000pt;}
.y4e{bottom:196.986667pt;}
.yda{bottom:198.890667pt;}
.y1cc{bottom:199.448000pt;}
.y109{bottom:202.621333pt;}
.y21{bottom:202.701333pt;}
.y14c{bottom:210.005333pt;}
.y194{bottom:210.328000pt;}
.y81{bottom:210.390667pt;}
.yd8{bottom:210.805333pt;}
.yb6{bottom:211.602667pt;}
.y115{bottom:212.001333pt;}
.y4d{bottom:214.282667pt;}
.y1cb{bottom:214.790667pt;}
.y10a{bottom:216.950667pt;}
.y108{bottom:217.233333pt;}
.y193{bottom:225.670667pt;}
.y14b{bottom:226.742667pt;}
.y80{bottom:227.128000pt;}
.yd7{bottom:227.542667pt;}
.y164{bottom:228.340000pt;}
.y114{bottom:228.738667pt;}
.y1ca{bottom:230.133333pt;}
.y4c{bottom:231.577333pt;}
.y107{bottom:231.845333pt;}
.yb5{bottom:232.325333pt;}
.y192{bottom:241.013333pt;}
.y14a{bottom:243.480000pt;}
.y7f{bottom:243.865333pt;}
.yd6{bottom:244.280000pt;}
.y163{bottom:245.077333pt;}
.y113{bottom:245.476000pt;}
.y4b{bottom:248.872000pt;}
.y105{bottom:252.858667pt;}
.y191{bottom:256.356000pt;}
.y149{bottom:260.217333pt;}
.y7e{bottom:260.602667pt;}
.y1c9{bottom:260.818667pt;}
.y162{bottom:261.814667pt;}
.yb4{bottom:262.213333pt;}
.y20{bottom:262.526667pt;}
.yd5{bottom:265.002667pt;}
.y4a{bottom:266.168000pt;}
.y106{bottom:267.189333pt;}
.y104{bottom:267.470667pt;}
.y190{bottom:271.697333pt;}
.y1c8{bottom:276.161333pt;}
.y148{bottom:276.954667pt;}
.y7d{bottom:277.340000pt;}
.y1f{bottom:278.428000pt;}
.y161{bottom:278.552000pt;}
.yb3{bottom:278.950667pt;}
.y16c{bottom:281.221808pt;}
.y103{bottom:282.082667pt;}
.y49{bottom:283.462667pt;}
.y18f{bottom:287.040000pt;}
.y1c7{bottom:291.502667pt;}
.y147{bottom:293.692000pt;}
.y7c{bottom:294.077333pt;}
.y1e{bottom:294.328000pt;}
.yd4{bottom:294.890667pt;}
.y160{bottom:295.289333pt;}
.yb2{bottom:295.688000pt;}
.y48{bottom:300.758667pt;}
.y18e{bottom:302.382667pt;}
.y102{bottom:303.097333pt;}
.y1c6{bottom:306.845333pt;}
.y1d{bottom:310.228000pt;}
.y146{bottom:310.429333pt;}
.y7b{bottom:310.814667pt;}
.yd3{bottom:311.628000pt;}
.y15f{bottom:312.026667pt;}
.yb1{bottom:312.425333pt;}
.y18d{bottom:317.725333pt;}
.y47{bottom:318.053333pt;}
.y1c5{bottom:322.188000pt;}
.y145{bottom:327.166667pt;}
.y7a{bottom:327.552000pt;}
.yd2{bottom:328.365333pt;}
.y15e{bottom:328.764000pt;}
.yb0{bottom:329.162667pt;}
.y101{bottom:331.202667pt;}
.y18c{bottom:333.068000pt;}
.y46{bottom:335.348000pt;}
.y1c4{bottom:337.530667pt;}
.y1c{bottom:342.069333pt;}
.y144{bottom:343.904000pt;}
.y79{bottom:344.289333pt;}
.yd1{bottom:345.102667pt;}
.y15d{bottom:345.501333pt;}
.yaf{bottom:345.900000pt;}
.y100{bottom:348.298667pt;}
.y18b{bottom:348.410667pt;}
.y45{bottom:352.644000pt;}
.y1c3{bottom:352.873333pt;}
.y1b{bottom:357.969333pt;}
.y143{bottom:360.641333pt;}
.y78{bottom:361.026667pt;}
.yd0{bottom:361.840000pt;}
.y15c{bottom:362.238667pt;}
.yae{bottom:362.637333pt;}
.y18a{bottom:363.753333pt;}
.yff{bottom:365.394667pt;}
.y1c2{bottom:368.216000pt;}
.y1d6{bottom:368.401333pt;}
.y44{bottom:369.938667pt;}
.y1d5{bottom:371.085333pt;}
.y1a{bottom:373.870667pt;}
.y142{bottom:377.378667pt;}
.y77{bottom:377.764000pt;}
.ycf{bottom:378.577333pt;}
.y15b{bottom:378.976000pt;}
.y189{bottom:379.096000pt;}
.yad{bottom:379.374667pt;}
.y1c1{bottom:383.558667pt;}
.y43{bottom:387.233333pt;}
.y141{bottom:394.116000pt;}
.y188{bottom:394.437333pt;}
.y76{bottom:394.501333pt;}
.yfe{bottom:394.916000pt;}
.yce{bottom:395.314667pt;}
.y15a{bottom:395.713333pt;}
.yac{bottom:396.112000pt;}
.y1c0{bottom:398.901333pt;}
.y1d4{bottom:399.086667pt;}
.y1d3{bottom:401.770667pt;}
.y42{bottom:404.529333pt;}
.y19{bottom:405.710667pt;}
.y187{bottom:409.780000pt;}
.y140{bottom:410.853333pt;}
.y75{bottom:411.238667pt;}
.yfd{bottom:411.653333pt;}
.ycd{bottom:412.052000pt;}
.y159{bottom:412.450667pt;}
.yab{bottom:412.848000pt;}
.y1bf{bottom:414.244000pt;}
.y18{bottom:421.610667pt;}
.y41{bottom:421.824000pt;}
.y186{bottom:425.122667pt;}
.y13f{bottom:427.590667pt;}
.y74{bottom:427.976000pt;}
.yfc{bottom:428.390667pt;}
.ycc{bottom:428.789333pt;}
.y158{bottom:429.188000pt;}
.yaa{bottom:429.585333pt;}
.y17{bottom:437.512000pt;}
.y40{bottom:439.120000pt;}
.y13e{bottom:444.328000pt;}
.y185{bottom:444.450667pt;}
.y73{bottom:444.713333pt;}
.y1be{bottom:444.928000pt;}
.yfb{bottom:445.128000pt;}
.ycb{bottom:445.526667pt;}
.y157{bottom:445.925333pt;}
.ya9{bottom:446.322667pt;}
.y16{bottom:453.412000pt;}
.y3f{bottom:456.414667pt;}
.y1bd{bottom:460.270667pt;}
.y13d{bottom:461.065333pt;}
.y72{bottom:461.450667pt;}
.y156{bottom:462.662667pt;}
.ya8{bottom:463.060000pt;}
.yfa{bottom:465.850667pt;}
.yca{bottom:466.248000pt;}
.y15{bottom:469.312000pt;}
.y3e{bottom:473.709333pt;}
.y184{bottom:474.338667pt;}
.y1bb{bottom:475.613333pt;}
.y13c{bottom:477.802667pt;}
.y71{bottom:478.188000pt;}
.y1bc{bottom:478.280000pt;}
.y155{bottom:479.398667pt;}
.ya7{bottom:479.797333pt;}
.y14{bottom:485.213333pt;}
.y1ba{bottom:490.956000pt;}
.y3d{bottom:491.005333pt;}
.y13b{bottom:494.538667pt;}
.y70{bottom:494.925333pt;}
.yf9{bottom:495.738667pt;}
.yc9{bottom:496.136000pt;}
.ya6{bottom:496.534667pt;}
.y183{bottom:497.930667pt;}
.y13{bottom:501.113333pt;}
.y1b9{bottom:506.298667pt;}
.y3c{bottom:508.300000pt;}
.y13a{bottom:511.276000pt;}
.y6f{bottom:511.662667pt;}
.yf8{bottom:512.476000pt;}
.yc8{bottom:512.873333pt;}
.ya5{bottom:513.272000pt;}
.y182{bottom:513.552000pt;}
.y12{bottom:517.013333pt;}
.y1b8{bottom:521.641333pt;}
.y3b{bottom:525.594667pt;}
.y139{bottom:528.013333pt;}
.y6e{bottom:528.400000pt;}
.y181{bottom:529.173333pt;}
.yf7{bottom:529.213333pt;}
.yc7{bottom:529.610667pt;}
.ya4{bottom:530.009333pt;}
.y11{bottom:532.914667pt;}
.y1b7{bottom:536.984000pt;}
.y3a{bottom:542.890667pt;}
.y138{bottom:544.750667pt;}
.y6d{bottom:545.137333pt;}
.yf6{bottom:545.950667pt;}
.yc6{bottom:546.348000pt;}
.ya3{bottom:546.746667pt;}
.y10{bottom:548.814667pt;}
.y16b{bottom:552.101152pt;}
.y1b6{bottom:552.325333pt;}
.y180{bottom:552.764000pt;}
.y39{bottom:560.185333pt;}
.y137{bottom:561.488000pt;}
.y6c{bottom:561.874667pt;}
.yf5{bottom:562.686667pt;}
.yc5{bottom:563.085333pt;}
.ya2{bottom:563.484000pt;}
.yf{bottom:564.714667pt;}
.y1b5{bottom:567.668000pt;}
.y17f{bottom:573.288000pt;}
.y136{bottom:578.225333pt;}
.y6b{bottom:578.612000pt;}
.yf4{bottom:579.424000pt;}
.yc4{bottom:579.822667pt;}
.ya1{bottom:580.221333pt;}
.ye{bottom:580.616000pt;}
.y1b4{bottom:583.010667pt;}
.y17e{bottom:593.810667pt;}
.yc3{bottom:594.133333pt;}
.y38{bottom:594.484000pt;}
.y135{bottom:594.962667pt;}
.y6a{bottom:595.349333pt;}
.yf3{bottom:596.161333pt;}
.yd{bottom:596.516000pt;}
.yc2{bottom:596.560000pt;}
.ya0{bottom:596.958667pt;}
.y1b3{bottom:598.353333pt;}
.y37{bottom:608.830667pt;}
.y134{bottom:611.700000pt;}
.y69{bottom:612.085333pt;}
.yc1{bottom:613.297333pt;}
.y9f{bottom:613.696000pt;}
.y17d{bottom:614.333333pt;}
.ya{bottom:616.401382pt;}
.yf2{bottom:616.884000pt;}
.y36{bottom:627.033333pt;}
.y68{bottom:628.822667pt;}
.y1b2{bottom:629.038667pt;}
.y17c{bottom:629.954667pt;}
.yc0{bottom:630.034667pt;}
.y9e{bottom:630.433333pt;}
.y35{bottom:637.522667pt;}
.y1b1{bottom:644.381333pt;}
.y67{bottom:645.560000pt;}
.ybf{bottom:646.772000pt;}
.y9d{bottom:647.170667pt;}
.y133{bottom:647.374667pt;}
.y34{bottom:651.869333pt;}
.y17b{bottom:653.546667pt;}
.y1b0{bottom:659.724000pt;}
.y131{bottom:659.993333pt;}
.y66{bottom:662.297333pt;}
.yf1{bottom:663.509333pt;}
.y132{bottom:663.852000pt;}
.y9c{bottom:663.908000pt;}
.ybe{bottom:667.494667pt;}
.y17a{bottom:669.168000pt;}
.y33{bottom:670.072000pt;}
.y12f{bottom:672.613333pt;}
.y1af{bottom:675.066667pt;}
.y130{bottom:676.470667pt;}
.y65{bottom:679.034667pt;}
.yf0{bottom:680.246667pt;}
.y32{bottom:680.561333pt;}
.y9b{bottom:680.645333pt;}
.y179{bottom:684.789333pt;}
.y1ae{bottom:690.408000pt;}
.y12e{bottom:691.345333pt;}
.y64{bottom:695.772000pt;}
.yef{bottom:696.984000pt;}
.y9a{bottom:697.382667pt;}
.y31{bottom:698.765333pt;}
.y178{bottom:700.410667pt;}
.y1ad{bottom:705.750667pt;}
.y12d{bottom:706.522667pt;}
.y30{bottom:709.253333pt;}
.y63{bottom:712.509333pt;}
.yee{bottom:713.721333pt;}
.y99{bottom:714.120000pt;}
.y177{bottom:716.032000pt;}
.ybd{bottom:718.941333pt;}
.y1ac{bottom:721.093333pt;}
.y12c{bottom:721.416000pt;}
.y2f{bottom:723.600000pt;}
.y2e{bottom:727.457333pt;}
.y62{bottom:729.246667pt;}
.yed{bottom:730.458667pt;}
.y98{bottom:730.857333pt;}
.y12b{bottom:736.310667pt;}
.y1ab{bottom:736.436000pt;}
.y2d{bottom:737.946667pt;}
.y61{bottom:745.984000pt;}
.yec{bottom:747.196000pt;}
.y97{bottom:747.594667pt;}
.y12a{bottom:751.486667pt;}
.y1aa{bottom:751.778667pt;}
.y2c{bottom:756.150667pt;}
.y60{bottom:762.721333pt;}
.yeb{bottom:763.933333pt;}
.y96{bottom:764.332000pt;}
.y2b{bottom:766.638667pt;}
.y129{bottom:766.664000pt;}
.y1a9{bottom:767.121333pt;}
.y5f{bottom:779.458667pt;}
.yea{bottom:780.670667pt;}
.y2a{bottom:780.985333pt;}
.y95{bottom:781.069333pt;}
.y128{bottom:781.840000pt;}
.y1a8{bottom:782.464000pt;}
.y29{bottom:784.842667pt;}
.y5e{bottom:796.196000pt;}
.y127{bottom:797.016000pt;}
.ye9{bottom:797.408000pt;}
.y94{bottom:797.806667pt;}
.y126{bottom:812.193333pt;}
.y5d{bottom:812.933333pt;}
.y1a6{bottom:813.148000pt;}
.y1a7{bottom:813.149333pt;}
.ye8{bottom:814.145333pt;}
.y93{bottom:814.544000pt;}
.y9{bottom:820.570667pt;}
.y125{bottom:827.369333pt;}
.y1a5{bottom:828.490667pt;}
.y5c{bottom:829.670667pt;}
.y16a{bottom:829.860896pt;}
.ye7{bottom:830.882667pt;}
.y92{bottom:831.281333pt;}
.y8{bottom:837.308000pt;}
.y124{bottom:842.545333pt;}
.y1a4{bottom:843.833333pt;}
.y5b{bottom:846.408000pt;}
.y169{bottom:846.980400pt;}
.ye6{bottom:847.620000pt;}
.y91{bottom:848.018667pt;}
.y90{bottom:850.980000pt;}
.y123{bottom:857.722667pt;}
.y1a3{bottom:859.176000pt;}
.y5a{bottom:863.145333pt;}
.ye5{bottom:864.357333pt;}
.y8f{bottom:864.754667pt;}
.y122{bottom:872.898667pt;}
.y1a2{bottom:874.518667pt;}
.y7{bottom:875.298667pt;}
.y59{bottom:879.882667pt;}
.ye4{bottom:881.094667pt;}
.y8e{bottom:881.492000pt;}
.y154{bottom:885.078667pt;}
.y1a1{bottom:889.861333pt;}
.y120{bottom:894.194667pt;}
.y167{bottom:895.620448pt;}
.y58{bottom:896.620000pt;}
.y8d{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.ye3{bottom:901.816000pt;}
.y166{bottom:903.300400pt;}
.y1a0{bottom:905.204000pt;}
.y11f{bottom:908.806667pt;}
.y57{bottom:913.357333pt;}
.y8c{bottom:914.966667pt;}
.y121{bottom:916.113333pt;}
.y19f{bottom:920.546667pt;}
.y11e{bottom:923.418667pt;}
.y5{bottom:925.510667pt;}
.y56{bottom:930.094667pt;}
.y8b{bottom:931.704000pt;}
.y19e{bottom:935.889333pt;}
.y11d{bottom:938.030667pt;}
.y55{bottom:946.832000pt;}
.y8a{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y19d{bottom:951.230667pt;}
.y176{bottom:953.264000pt;}
.y54{bottom:963.569333pt;}
.y89{bottom:965.178667pt;}
.y11c{bottom:966.137333pt;}
.y19c{bottom:966.573333pt;}
.y3{bottom:975.722667pt;}
.ye2{bottom:979.489333pt;}
.y88{bottom:981.916000pt;}
.y11b{bottom:983.233333pt;}
.y53{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y52{bottom:1043.020000pt;}
.h15{height:22.380134pt;}
.h8{height:22.673858pt;}
.h1b{height:24.866650pt;}
.h19{height:28.023859pt;}
.he{height:28.947524pt;}
.ha{height:29.433775pt;}
.h21{height:29.571719pt;}
.h9{height:30.399505pt;}
.h14{height:33.186336pt;}
.h22{height:33.351562pt;}
.hc{height:33.771789pt;}
.hb{height:33.808982pt;}
.h1a{height:36.666735pt;}
.h18{height:36.873667pt;}
.hf{height:38.596538pt;}
.h11{height:38.639045pt;}
.h4{height:38.947124pt;}
.hd{height:42.070455pt;}
.h25{height:43.343750pt;}
.h13{height:43.421286pt;}
.h12{height:43.469107pt;}
.h24{height:44.648438pt;}
.h2{height:45.272024pt;}
.h1c{height:46.580334pt;}
.h10{height:48.073871pt;}
.h17{height:48.245551pt;}
.h16{height:48.298685pt;}
.h23{height:49.708594pt;}
.h1f{height:50.001122pt;}
.h1d{height:51.126455pt;}
.h1e{height:51.131789pt;}
.h26{height:54.087953pt;}
.h27{height:54.898620pt;}
.h6{height:55.992450pt;}
.h7{height:59.456018pt;}
.h3{height:73.179920pt;}
.h5{height:86.938214pt;}
.h20{height:816.612000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:174.865465pt;}
.w4{width:360.080000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe0{left:-166.762667pt;}
.x0{left:0.000000pt;}
.xe1{left:7.077333pt;}
.x5{left:26.021437pt;}
.x3{left:46.996000pt;}
.x1{left:48.000000pt;}
.x2{left:51.594354pt;}
.xe6{left:76.686667pt;}
.xf0{left:78.862667pt;}
.x4{left:85.021333pt;}
.x6{left:90.280000pt;}
.xf5{left:124.628000pt;}
.xf4{left:125.997333pt;}
.xf6{left:127.954667pt;}
.x61{left:221.026667pt;}
.xa{left:222.073333pt;}
.x7{left:223.020000pt;}
.x55{left:225.437333pt;}
.x8a{left:231.389333pt;}
.xc2{left:232.894667pt;}
.x86{left:235.370667pt;}
.x87{left:239.824000pt;}
.x8{left:240.904000pt;}
.xad{left:242.293333pt;}
.x88{left:247.970667pt;}
.x27{left:251.365333pt;}
.xc3{left:254.670667pt;}
.xae{left:255.577333pt;}
.xa9{left:256.624000pt;}
.xaf{left:258.870667pt;}
.x35{left:260.026667pt;}
.xbe{left:261.465333pt;}
.x81{left:262.621333pt;}
.xc4{left:263.601333pt;}
.xc1{left:265.448000pt;}
.x36{left:266.668000pt;}
.x84{left:268.181333pt;}
.xaa{left:269.908000pt;}
.x8b{left:272.397333pt;}
.x85{left:274.026667pt;}
.xb{left:275.804000pt;}
.xc{left:277.396000pt;}
.xb0{left:278.742667pt;}
.x8c{left:281.032000pt;}
.xcc{left:283.988000pt;}
.x26{left:285.404000pt;}
.xab{left:286.578667pt;}
.xd{left:290.629333pt;}
.xb1{left:292.026667pt;}
.xe5{left:293.553333pt;}
.x5d{left:296.261333pt;}
.x24{left:297.422667pt;}
.xcd{left:298.604000pt;}
.xb3{left:300.924000pt;}
.xac{left:303.249333pt;}
.x45{left:306.560000pt;}
.x5e{left:309.545333pt;}
.x25{left:311.341333pt;}
.x46{left:313.202667pt;}
.x47{left:316.457333pt;}
.xb2{left:317.621333pt;}
.xd2{left:319.869333pt;}
.x50{left:324.080000pt;}
.x6a{left:325.474667pt;}
.xd3{left:328.074667pt;}
.x48{left:329.740000pt;}
.x49{left:332.994667pt;}
.x2c{left:334.606667pt;}
.xa4{left:336.406667pt;}
.x51{left:337.362667pt;}
.x6b{left:338.757333pt;}
.xf3{left:339.781333pt;}
.x2d{left:341.249333pt;}
.xb4{left:345.080000pt;}
.x4a{left:346.278667pt;}
.x43{left:347.702667pt;}
.xa5{left:349.689333pt;}
.xe2{left:351.077293pt;}
.x6f{left:352.318667pt;}
.xb5{left:353.284000pt;}
.x6c{left:355.365333pt;}
.x67{left:357.142667pt;}
.xda{left:358.778667pt;}
.x9b{left:359.882667pt;}
.x44{left:360.985333pt;}
.xba{left:363.278667pt;}
.x7f{left:364.457333pt;}
.x70{left:366.584000pt;}
.x68{left:368.068000pt;}
.xbf{left:369.021333pt;}
.x5f{left:370.125333pt;}
.x4d{left:373.925333pt;}
.xbb{left:376.562667pt;}
.x40{left:377.640000pt;}
.xbc{left:379.940000pt;}
.x9c{left:382.312000pt;}
.x60{left:383.409333pt;}
.x69{left:384.662667pt;}
.xb6{left:385.833333pt;}
.x41{left:390.924000pt;}
.xbd{left:393.222667pt;}
.x9d{left:395.596000pt;}
.xb7{left:399.116000pt;}
.xb8{left:402.504000pt;}
.xc0{left:403.433333pt;}
.x4f{left:404.769333pt;}
.x12{left:406.184000pt;}
.x71{left:410.530667pt;}
.xd4{left:412.688000pt;}
.x89{left:414.656000pt;}
.xb9{left:415.786667pt;}
.x13{left:419.010667pt;}
.xa7{left:424.545333pt;}
.x2a{left:430.845333pt;}
.x2b{left:437.486667pt;}
.xce{left:441.961333pt;}
.x14{left:443.029333pt;}
.x15{left:450.413333pt;}
.xd0{left:452.608000pt;}
.xcf{left:455.245333pt;}
.x91{left:459.162667pt;}
.x83{left:462.842667pt;}
.xd1{left:465.892000pt;}
.x77{left:468.564000pt;}
.x92{left:473.648000pt;}
.x16{left:474.969333pt;}
.x78{left:476.669333pt;}
.xd5{left:480.292000pt;}
.x10{left:482.764000pt;}
.x80{left:486.716000pt;}
.x17{left:487.785333pt;}
.xd9{left:488.722667pt;}
.xe{left:492.142667pt;}
.xe8{left:494.854667pt;}
.x11{left:497.154667pt;}
.x62{left:500.060000pt;}
.xdd{left:501.241333pt;}
.x52{left:502.356000pt;}
.xf{left:505.376000pt;}
.xd6{left:507.670667pt;}
.x1c{left:511.653333pt;}
.x63{left:513.342667pt;}
.xde{left:514.524000pt;}
.x4b{left:516.254667pt;}
.x1e{left:518.589333pt;}
.x93{left:520.493333pt;}
.x3b{left:524.596000pt;}
.x58{left:525.562667pt;}
.x75{left:528.565333pt;}
.x4c{left:529.537333pt;}
.x1f{left:532.121333pt;}
.x82{left:536.201333pt;}
.x1d{left:537.380000pt;}
.xdf{left:539.286667pt;}
.x65{left:540.432000pt;}
.x7d{left:541.760000pt;}
.x18{left:544.865333pt;}
.x42{left:545.957333pt;}
.xdc{left:547.145333pt;}
.x7e{left:552.296000pt;}
.x66{left:553.716000pt;}
.x8f{left:554.933333pt;}
.x19{left:557.682667pt;}
.x90{left:559.682667pt;}
.x9e{left:561.632000pt;}
.x3e{left:564.076000pt;}
.x79{left:569.214667pt;}
.x99{left:570.589333pt;}
.xe3{left:573.662667pt;}
.x9f{left:574.916000pt;}
.x3f{left:577.360000pt;}
.xa0{left:578.302667pt;}
.x1a{left:581.649333pt;}
.x9a{left:584.837333pt;}
.x7a{left:587.584000pt;}
.x1b{left:589.034667pt;}
.xec{left:590.064000pt;}
.xa1{left:591.586667pt;}
.x7b{left:593.120000pt;}
.x2e{left:594.650667pt;}
.xa2{left:596.118667pt;}
.xe4{left:598.398667pt;}
.x33{left:599.376000pt;}
.x2f{left:601.292000pt;}
.xa8{left:604.350667pt;}
.x34{left:606.017333pt;}
.xa3{left:609.534667pt;}
.x20{left:612.790667pt;}
.xed{left:613.974667pt;}
.x7c{left:616.229333pt;}
.x64{left:618.729333pt;}
.x96{left:620.612000pt;}
.x21{left:626.324000pt;}
.x97{left:627.254667pt;}
.xc9{left:629.369333pt;}
.x76{left:631.024000pt;}
.x30{left:632.318667pt;}
.xf2{left:634.660000pt;}
.x9{left:636.452000pt;}
.x31{left:638.826667pt;}
.x53{left:640.264000pt;}
.x59{left:641.173333pt;}
.xeb{left:642.252000pt;}
.xca{left:643.628000pt;}
.x32{left:645.469333pt;}
.xc7{left:646.953333pt;}
.x94{left:647.957333pt;}
.x98{left:649.517333pt;}
.x22{left:651.364000pt;}
.x54{left:653.546667pt;}
.x5a{left:654.457333pt;}
.xd7{left:656.750667pt;}
.x23{left:658.748000pt;}
.xc8{left:660.237333pt;}
.x95{left:664.009333pt;}
.xef{left:667.620000pt;}
.xf7{left:668.676000pt;}
.x73{left:670.610667pt;}
.x28{left:673.609333pt;}
.x5b{left:676.669333pt;}
.xf1{left:678.440000pt;}
.x29{left:680.250667pt;}
.x74{left:681.436000pt;}
.xc5{left:683.280000pt;}
.x8d{left:685.205333pt;}
.xc6{left:688.168000pt;}
.x8e{left:689.954667pt;}
.x37{left:698.893333pt;}
.xe9{left:700.592000pt;}
.x4e{left:701.684000pt;}
.xdb{left:703.366667pt;}
.x38{left:705.536000pt;}
.xd8{left:706.928000pt;}
.xcb{left:707.822667pt;}
.x39{left:708.853333pt;}
.x6d{left:714.278667pt;}
.x3a{left:715.494667pt;}
.xa6{left:716.414667pt;}
.x6e{left:719.990667pt;}
.x72{left:721.729333pt;}
.x5c{left:722.817333pt;}
.xea{left:724.502667pt;}
.xe7{left:725.721333pt;}
.x56{left:726.958667pt;}
.x3c{left:728.037333pt;}
.x57{left:740.242667pt;}
.x3d{left:741.321333pt;}
.xee{left:744.200000pt;}
}




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