
    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_f2b6741f96b5fd5c340a1477.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_238e7e70545870c0f235b614.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_227137c9bd64e95f773a3e4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f14b5fc80405c9b53727553a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_207e48d711995be403d9cadb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ae5dc220a31a60b156ca902a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014000;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_8dc09f42e19f04597c59aa8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4ea294cd3a5edf3f5414f9cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2bedf74dcc6d657185fee47e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.013672;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_52c0a97ee135b54e91f11fc8.woff2')format("woff");}.fff{font-family:fff;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3f1919229b59568b4a2e5700.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e64837e35f284fa4535c2388.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2bedf74dcc6d657185fee47e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.013672;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_52c0a97ee135b54e91f11fc8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3f1919229b59568b4a2e5700.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e64837e35f284fa4535c2388.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_240525bf15d05ed3a8885a73.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ba395ceb70c211f9dddb7e31.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_90d6b79406e3563272d85d5f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e64837e35f284fa4535c2388.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_34b2d9527f7c1580ca590f3c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.116000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_2bedf74dcc6d657185fee47e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ca43c95fb7d65c09f7cae8f2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_0e488eba86a57f035d53a6f6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e64837e35f284fa4535c2388.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_b93e8dd54be41335c2b09ac2.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_0f1254f6aa87bbf204d3d0c6.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m13{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);}
.md{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);}
.m17{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);}
.m15{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);}
.ma{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);}
.m1b{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);}
.m4{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);}
.m28{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);}
.m16{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);}
.m20{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);}
.m8{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);}
.m3{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);}
.m29{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);}
.m14{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);}
.mf{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);}
.m24{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);}
.m1f{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);}
.m21{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);}
.m25{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.me{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);}
.m2b{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);}
.m18{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);}
.m23{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);}
.m10{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);}
.m2a{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);}
.m12{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);}
.mc{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);}
.mb{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);}
.m1e{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);}
.m7{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);}
.m1c{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);}
.m1a{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);}
.m11{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);}
.m9{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);}
.m5{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);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:31.559040px;}
.ls44{letter-spacing:-0.252504px;}
.ls47{letter-spacing:-0.216432px;}
.ls35{letter-spacing:-0.168336px;}
.ls34{letter-spacing:-0.132264px;}
.ls36{letter-spacing:-0.120240px;}
.ls27{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.102204px;}
.ls24{letter-spacing:-0.086184px;}
.ls45{letter-spacing:-0.084168px;}
.ls33{letter-spacing:-0.078156px;}
.ls2c{letter-spacing:-0.072144px;}
.ls26{letter-spacing:-0.048600px;}
.ls43{letter-spacing:-0.042084px;}
.ls41{letter-spacing:-0.032400px;}
.ls29{letter-spacing:-0.030060px;}
.ls2a{letter-spacing:-0.027000px;}
.ls38{letter-spacing:-0.024048px;}
.ls2b{letter-spacing:-0.018036px;}
.ls42{letter-spacing:-0.016200px;}
.ls39{letter-spacing:-0.012024px;}
.ls37{letter-spacing:-0.006012px;}
.ls25{letter-spacing:-0.005400px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000154px;}
.ls2d{letter-spacing:0.000501px;}
.lsd{letter-spacing:0.001518px;}
.ls4d{letter-spacing:0.002818px;}
.ls49{letter-spacing:0.002832px;}
.ls7{letter-spacing:0.003488px;}
.ls3b{letter-spacing:0.003494px;}
.ls5{letter-spacing:0.003835px;}
.ls4f{letter-spacing:0.004800px;}
.ls31{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.006012px;}
.ls1f{letter-spacing:0.010800px;}
.ls1c{letter-spacing:0.012024px;}
.ls15{letter-spacing:0.016200px;}
.ls17{letter-spacing:0.018036px;}
.lsf{letter-spacing:0.019152px;}
.ls20{letter-spacing:0.021600px;}
.ls30{letter-spacing:0.024048px;}
.ls13{letter-spacing:0.027000px;}
.ls1b{letter-spacing:0.030060px;}
.ls14{letter-spacing:0.032400px;}
.ls22{letter-spacing:0.036072px;}
.ls12{letter-spacing:0.037800px;}
.ls19{letter-spacing:0.042084px;}
.ls32{letter-spacing:0.043200px;}
.ls18{letter-spacing:0.048096px;}
.ls3d{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.054108px;}
.ls1d{letter-spacing:0.060120px;}
.ls28{letter-spacing:0.066132px;}
.ls21{letter-spacing:0.072144px;}
.ls3e{letter-spacing:0.078156px;}
.ls2e{letter-spacing:0.084168px;}
.ls2f{letter-spacing:0.090180px;}
.ls3f{letter-spacing:0.102204px;}
.ls40{letter-spacing:0.108216px;}
.ls1e{letter-spacing:0.150300px;}
.ls11{letter-spacing:0.158004px;}
.ls10{letter-spacing:0.191520px;}
.ls4c{letter-spacing:0.524565px;}
.ls8{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.lsc{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.998354px;}
.ls6{letter-spacing:11.954850px;}
.ls48{letter-spacing:12.732203px;}
.ls4e{letter-spacing:13.353737px;}
.ls23{letter-spacing:13.449600px;}
.ls3{letter-spacing:13.452566px;}
.ls4a{letter-spacing:13.676460px;}
.ls4b{letter-spacing:13.983859px;}
.lse{letter-spacing:14.465695px;}
.lsa{letter-spacing:14.944435px;}
.ls9{letter-spacing:15.100544px;}
.ls3a{letter-spacing:15.169074px;}
.ls3c{letter-spacing:15.183002px;}
.ls2{letter-spacing:70.236600px;}
.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;}
}
.ws1a{word-spacing:-17.394700px;}
.ws1{word-spacing:-16.529216px;}
.ws8a{word-spacing:-15.655334px;}
.ws26{word-spacing:-14.943900px;}
.ws86{word-spacing:-14.909760px;}
.ws3{word-spacing:-14.355754px;}
.ws87{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.449600px;}
.ws4d{word-spacing:-12.161520px;}
.ws21{word-spacing:-11.955150px;}
.ws97{word-spacing:-3.336660px;}
.ws45{word-spacing:-3.156160px;}
.ws96{word-spacing:-3.144276px;}
.ws44{word-spacing:-3.108339px;}
.ws117{word-spacing:-2.929004px;}
.ws69{word-spacing:-2.813616px;}
.wsa{word-spacing:-2.809453px;}
.ws6a{word-spacing:-2.795580px;}
.ws59{word-spacing:-2.732400px;}
.ws5b{word-spacing:-2.727000px;}
.ws5a{word-spacing:-2.646000px;}
.wsf5{word-spacing:-2.525040px;}
.ws6d{word-spacing:-2.488968px;}
.ws82{word-spacing:-2.450800px;}
.ws6e{word-spacing:-2.440872px;}
.ws7a{word-spacing:-2.434860px;}
.ws79{word-spacing:-2.404800px;}
.ws32{word-spacing:-2.391024px;}
.ws56{word-spacing:-2.370600px;}
.ws57{word-spacing:-2.359800px;}
.ws34{word-spacing:-2.331248px;}
.ws58{word-spacing:-2.327400px;}
.ws138{word-spacing:-2.313331px;}
.ws11c{word-spacing:-2.271473px;}
.ws10a{word-spacing:-2.140272px;}
.ws78{word-spacing:-2.098188px;}
.ws5e{word-spacing:-2.068128px;}
.wsf4{word-spacing:-2.038068px;}
.ws8{word-spacing:-2.032370px;}
.wsf3{word-spacing:-2.032056px;}
.ws7{word-spacing:-1.908367px;}
.ws85{word-spacing:-1.793268px;}
.wsea{word-spacing:-1.785564px;}
.ws65{word-spacing:-1.773540px;}
.wsc1{word-spacing:-1.767528px;}
.ws8e{word-spacing:-1.761516px;}
.ws11d{word-spacing:-1.733492px;}
.ws5f{word-spacing:-1.725444px;}
.ws8f{word-spacing:-1.713420px;}
.ws25{word-spacing:-1.673717px;}
.wsdc{word-spacing:-1.647000px;}
.wsda{word-spacing:-1.625400px;}
.ws7d{word-spacing:-1.613941px;}
.ws64{word-spacing:-1.593180px;}
.wsdb{word-spacing:-1.582200px;}
.ws106{word-spacing:-1.430856px;}
.ws6c{word-spacing:-1.412820px;}
.ws99{word-spacing:-1.376748px;}
.ws7f{word-spacing:-1.374839px;}
.ws107{word-spacing:-1.358712px;}
.ws98{word-spacing:-1.352700px;}
.ws10c{word-spacing:-1.340676px;}
.ws6{word-spacing:-1.322630px;}
.ws12a{word-spacing:-1.022170px;}
.ws92{word-spacing:-0.907812px;}
.ws35{word-spacing:-0.896634px;}
.ws2b{word-spacing:-0.836858px;}
.ws4a{word-spacing:-0.777083px;}
.ws27{word-spacing:-0.717307px;}
.wsee{word-spacing:-0.667332px;}
.ws36{word-spacing:-0.657532px;}
.wsa8{word-spacing:-0.649296px;}
.ws13c{word-spacing:-0.645581px;}
.wsed{word-spacing:-0.631260px;}
.ws11{word-spacing:-0.597756px;}
.wsd8{word-spacing:-0.561600px;}
.wsd7{word-spacing:-0.550800px;}
.wsd9{word-spacing:-0.545400px;}
.wsd{word-spacing:-0.478205px;}
.ws29{word-spacing:-0.418429px;}
.ws71{word-spacing:-0.414828px;}
.ws1c{word-spacing:-0.358654px;}
.ws124{word-spacing:-0.322790px;}
.ws9f{word-spacing:-0.306612px;}
.wse{word-spacing:-0.298878px;}
.ws12d{word-spacing:-0.268992px;}
.ws55{word-spacing:-0.244188px;}
.wsa0{word-spacing:-0.240480px;}
.ws13{word-spacing:-0.239102px;}
.wsdd{word-spacing:-0.226800px;}
.ws119{word-spacing:-0.215194px;}
.ws5d{word-spacing:-0.189000px;}
.ws1b{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.wsce{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.004834px;}
.ws0{word-spacing:0.000000px;}
.wsf1{word-spacing:0.018036px;}
.wsa2{word-spacing:0.042084px;}
.ws8b{word-spacing:0.053798px;}
.wsf0{word-spacing:0.054108px;}
.ws9{word-spacing:0.059776px;}
.ws114{word-spacing:0.060120px;}
.wsb7{word-spacing:0.072144px;}
.wse3{word-spacing:0.090180px;}
.ws4e{word-spacing:0.107597px;}
.wsc{word-spacing:0.119551px;}
.wse5{word-spacing:0.120240px;}
.wse4{word-spacing:0.138276px;}
.ws73{word-spacing:0.151200px;}
.wsbe{word-spacing:0.156600px;}
.wscc{word-spacing:0.161395px;}
.wse0{word-spacing:0.162000px;}
.ws5c{word-spacing:0.167400px;}
.ws18{word-spacing:0.179327px;}
.ws74{word-spacing:0.210600px;}
.ws11b{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.ws54{word-spacing:0.253764px;}
.ws1f{word-spacing:0.298878px;}
.ws28{word-spacing:0.358654px;}
.wsb5{word-spacing:0.372744px;}
.ws30{word-spacing:0.418429px;}
.wsb6{word-spacing:0.438876px;}
.ws1d{word-spacing:0.537980px;}
.wsc6{word-spacing:0.597756px;}
.wsd6{word-spacing:0.717307px;}
.ws80{word-spacing:0.777083px;}
.ws11a{word-spacing:0.806976px;}
.ws2f{word-spacing:0.836858px;}
.ws72{word-spacing:0.891000px;}
.wse9{word-spacing:0.937872px;}
.ws12{word-spacing:0.956410px;}
.ws33{word-spacing:1.016185px;}
.ws89{word-spacing:1.022170px;}
.ws48{word-spacing:1.075961px;}
.wsc0{word-spacing:1.124244px;}
.ws37{word-spacing:1.135736px;}
.ws41{word-spacing:1.195512px;}
.wscf{word-spacing:1.255288px;}
.ws88{word-spacing:1.291162px;}
.ws1e{word-spacing:1.315063px;}
.ws38{word-spacing:1.434614px;}
.ws3f{word-spacing:1.494390px;}
.ws70{word-spacing:1.496988px;}
.ws129{word-spacing:1.506355px;}
.ws6f{word-spacing:1.521036px;}
.wsa4{word-spacing:1.539072px;}
.wsa5{word-spacing:1.563120px;}
.wsc8{word-spacing:1.613941px;}
.ws46{word-spacing:1.733492px;}
.ws49{word-spacing:1.853044px;}
.ws3d{word-spacing:1.912819px;}
.ws127{word-spacing:1.936742px;}
.wsb1{word-spacing:1.965924px;}
.wsd4{word-spacing:2.092146px;}
.ws12f{word-spacing:2.205734px;}
.wsca{word-spacing:2.211697px;}
.ws76{word-spacing:2.218428px;}
.wsb0{word-spacing:2.260512px;}
.ws83{word-spacing:2.271473px;}
.ws77{word-spacing:2.284560px;}
.ws47{word-spacing:2.331248px;}
.ws3b{word-spacing:2.510575px;}
.wsef{word-spacing:2.555100px;}
.ws3c{word-spacing:2.570351px;}
.wsf7{word-spacing:2.591172px;}
.ws93{word-spacing:2.615220px;}
.wsc7{word-spacing:2.630126px;}
.ws94{word-spacing:2.747484px;}
.ws116{word-spacing:2.869229px;}
.wsf6{word-spacing:2.915820px;}
.wsec{word-spacing:2.921832px;}
.ws31{word-spacing:2.988780px;}
.wseb{word-spacing:2.993976px;}
.wsd2{word-spacing:3.048556px;}
.ws4c{word-spacing:3.108331px;}
.wsc3{word-spacing:3.168107px;}
.ws2a{word-spacing:3.227882px;}
.wsfa{word-spacing:3.282552px;}
.wsfb{word-spacing:3.318624px;}
.ws103{word-spacing:3.336660px;}
.wscb{word-spacing:3.407209px;}
.wsfc{word-spacing:3.420828px;}
.ws102{word-spacing:3.438864px;}
.ws8d{word-spacing:3.586536px;}
.wsab{word-spacing:3.607200px;}
.wsb3{word-spacing:3.613212px;}
.wsaa{word-spacing:3.625236px;}
.wse1{word-spacing:3.637260px;}
.ws95{word-spacing:3.643272px;}
.ws2c{word-spacing:3.646312px;}
.wscd{word-spacing:3.658291px;}
.wsac{word-spacing:3.697380px;}
.wse2{word-spacing:3.703392px;}
.ws84{word-spacing:3.706087px;}
.wsb2{word-spacing:3.721428px;}
.wsb9{word-spacing:3.758400px;}
.wsb8{word-spacing:3.769200px;}
.wsba{word-spacing:3.780000px;}
.ws40{word-spacing:3.825638px;}
.ws3a{word-spacing:3.885414px;}
.wsd3{word-spacing:4.004965px;}
.ws12c{word-spacing:4.357670px;}
.ws81{word-spacing:4.363619px;}
.wsff{word-spacing:4.364712px;}
.ws100{word-spacing:4.412808px;}
.ws39{word-spacing:4.483170px;}
.ws51{word-spacing:4.542946px;}
.wse6{word-spacing:4.671324px;}
.wsc5{word-spacing:4.722272px;}
.ws3e{word-spacing:4.782048px;}
.wsd5{word-spacing:4.841824px;}
.wsc9{word-spacing:4.901599px;}
.wsc4{word-spacing:5.080926px;}
.wsa9{word-spacing:5.092164px;}
.ws123{word-spacing:5.110848px;}
.ws50{word-spacing:5.140702px;}
.wsdf{word-spacing:5.194800px;}
.ws2e{word-spacing:5.200477px;}
.wsde{word-spacing:5.243400px;}
.ws134{word-spacing:5.373734px;}
.ws118{word-spacing:5.378822px;}
.ws120{word-spacing:5.379168px;}
.ws11f{word-spacing:5.379840px;}
.ws126{word-spacing:5.380416px;}
.ws6b{word-spacing:5.434848px;}
.wsfe{word-spacing:5.440860px;}
.ws63{word-spacing:5.446872px;}
.ws62{word-spacing:5.452884px;}
.ws91{word-spacing:5.482944px;}
.ws90{word-spacing:5.488956px;}
.ws19{word-spacing:5.499355px;}
.wsbb{word-spacing:5.567400px;}
.wsbc{word-spacing:5.594400px;}
.ws13d{word-spacing:5.648832px;}
.ws14{word-spacing:5.678682px;}
.wsaf{word-spacing:5.795568px;}
.ws2d{word-spacing:5.798233px;}
.wsbf{word-spacing:5.867712px;}
.ws4b{word-spacing:5.917784px;}
.ws15{word-spacing:5.977560px;}
.ws10d{word-spacing:6.072120px;}
.ws109{word-spacing:6.108192px;}
.ws53{word-spacing:6.133018px;}
.ws61{word-spacing:6.168312px;}
.ws108{word-spacing:6.192360px;}
.ws9a{word-spacing:6.216408px;}
.ws4f{word-spacing:6.216662px;}
.wsd0{word-spacing:6.276438px;}
.ws52{word-spacing:6.509606px;}
.ws101{word-spacing:6.517008px;}
.ws60{word-spacing:6.571116px;}
.wsf8{word-spacing:6.871716px;}
.wsd1{word-spacing:6.874194px;}
.ws67{word-spacing:6.883740px;}
.wsf9{word-spacing:6.913800px;}
.ws115{word-spacing:7.292623px;}
.ws66{word-spacing:7.328628px;}
.ws68{word-spacing:7.611192px;}
.ws110{word-spacing:7.623216px;}
.ws111{word-spacing:7.635240px;}
.wsbd{word-spacing:7.705800px;}
.ws135{word-spacing:7.962163px;}
.ws137{word-spacing:8.015962px;}
.wsb4{word-spacing:8.356680px;}
.ws125{word-spacing:8.392550px;}
.wsa1{word-spacing:8.735436px;}
.ws10{word-spacing:8.787013px;}
.wsa7{word-spacing:9.011988px;}
.wsa6{word-spacing:9.018000px;}
.ws7b{word-spacing:9.396756px;}
.ws7c{word-spacing:9.529020px;}
.ws10b{word-spacing:9.763488px;}
.ws9e{word-spacing:9.805572px;}
.wsc2{word-spacing:9.862974px;}
.ws17{word-spacing:9.982525px;}
.ws131{word-spacing:10.060301px;}
.ws9c{word-spacing:10.112184px;}
.wsf2{word-spacing:10.118196px;}
.ws10e{word-spacing:10.160280px;}
.ws9d{word-spacing:10.310580px;}
.ws10f{word-spacing:10.448856px;}
.ws9b{word-spacing:10.545048px;}
.ws139{word-spacing:11.082470px;}
.wse8{word-spacing:11.200356px;}
.wse7{word-spacing:11.254464px;}
.ws20{word-spacing:11.907329px;}
.wsa3{word-spacing:12.306564px;}
.ws12b{word-spacing:12.373632px;}
.ws113{word-spacing:12.961872px;}
.ws112{word-spacing:13.064076px;}
.ws132{word-spacing:13.180608px;}
.ws122{word-spacing:13.234406px;}
.ws13b{word-spacing:13.342003px;}
.ws13e{word-spacing:13.387910px;}
.ws11e{word-spacing:13.395802px;}
.ws121{word-spacing:13.449600px;}
.ws133{word-spacing:13.503398px;}
.ws136{word-spacing:14.095181px;}
.ws7e{word-spacing:14.549843px;}
.ws12e{word-spacing:14.579366px;}
.ws128{word-spacing:14.902157px;}
.ws130{word-spacing:15.655334px;}
.ws16{word-spacing:16.079636px;}
.ws13a{word-spacing:18.775642px;}
.wsad{word-spacing:19.166256px;}
.wsae{word-spacing:19.178280px;}
.wsfd{word-spacing:20.188296px;}
.ws75{word-spacing:21.631176px;}
.ws104{word-spacing:23.819544px;}
.ws105{word-spacing:23.861628px;}
.ws43{word-spacing:375.934611px;}
.ws42{word-spacing:407.593894px;}
.ws23{word-spacing:722.951831px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-9.898906px;}
._2a{margin-left:-8.009930px;}
._3{margin-left:-6.939994px;}
._4{margin-left:-4.949453px;}
._2{margin-left:-2.993520px;}
._6{margin-left:-1.322630px;}
._7{width:1.091170px;}
._2e{width:3.012710px;}
._27{width:9.365328px;}
._2b{width:11.902912px;}
._a{width:13.875506px;}
._b{width:15.594445px;}
._f{width:17.101846px;}
._5{width:18.829440px;}
._10{width:20.032393px;}
._8{width:21.120402px;}
._11{width:22.284377px;}
._9{width:23.611362px;}
._12{width:24.866650px;}
._13{width:26.301264px;}
._14{width:28.094532px;}
._e{width:29.961041px;}
._d{width:32.763053px;}
._29{width:34.550297px;}
._15{width:35.805584px;}
._28{width:37.712678px;}
._2d{width:44.222767px;}
._17{width:99.574383px;}
._16{width:131.233665px;}
._1a{width:253.274259px;}
._1e{width:270.919582px;}
._1c{width:291.699229px;}
._23{width:335.133905px;}
._21{width:363.849339px;}
._24{width:388.433056px;}
._20{width:389.724217px;}
._1d{width:402.635833px;}
._1f{width:409.091641px;}
._19{width:422.364783px;}
._22{width:428.872237px;}
._1b{width:434.863227px;}
._18{width:460.738105px;}
._25{width:474.002639px;}
._26{width:1332.448874px;}
._2c{width:1736.270102px;}
._c{width:1760.180102px;}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc5{color:rgb(8,117,183);}
.fc2{color:rgb(40,65,113);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.865600px;}
.fsa{font-size:41.842800px;}
.fsd{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsc{font-size:47.236800px;}
.fse{font-size:47.820600px;}
.fs11{font-size:47.880000px;}
.fsf{font-size:51.646464px;}
.fs5{font-size:52.197584px;}
.fsb{font-size:53.798400px;}
.fs12{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs13{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.116865px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y16c{bottom:-832.574550px;}
.yeb{bottom:-823.006050px;}
.y103{bottom:-789.075807px;}
.y193{bottom:-787.751058px;}
.y102{bottom:-768.825888px;}
.y192{bottom:-767.591319px;}
.y101{bottom:-748.575969px;}
.y191{bottom:-747.341400px;}
.y100{bottom:-728.326050px;}
.y190{bottom:-727.091481px;}
.y18f{bottom:-706.841562px;}
.yff{bottom:-690.616500px;}
.y18e{bottom:-686.591643px;}
.yfe{bottom:-671.086050px;}
.y18d{bottom:-666.341724px;}
.yfd{bottom:-646.604088px;}
.y18c{bottom:-646.091805px;}
.y18b{bottom:-625.932066px;}
.y18a{bottom:-605.682147px;}
.y189{bottom:-585.432228px;}
.y188{bottom:-565.182309px;}
.y187{bottom:-544.932390px;}
.y186{bottom:-524.682471px;}
.y185{bottom:-504.432552px;}
.y184{bottom:-484.272813px;}
.y183{bottom:-464.022894px;}
.y182{bottom:-443.772975px;}
.y181{bottom:-423.523056px;}
.y180{bottom:-403.273137px;}
.y17f{bottom:-383.023218px;}
.y17e{bottom:-362.773299px;}
.y17d{bottom:-342.613560px;}
.yfc{bottom:-338.804718px;}
.y17c{bottom:-322.363641px;}
.yfb{bottom:-318.554799px;}
.y17b{bottom:-302.113722px;}
.yfa{bottom:-298.395060px;}
.y17a{bottom:-281.863803px;}
.yf9{bottom:-278.145141px;}
.y179{bottom:-261.613884px;}
.yf8{bottom:-257.895222px;}
.y178{bottom:-241.363965px;}
.yf7{bottom:-237.645303px;}
.y177{bottom:-221.114046px;}
.yf6{bottom:-217.395384px;}
.y115{bottom:-203.978550px;}
.y176{bottom:-200.954307px;}
.yf5{bottom:-197.145465px;}
.y137{bottom:-193.673550px;}
.y175{bottom:-180.704388px;}
.yf4{bottom:-176.895546px;}
.y12d{bottom:-170.048307px;}
.y159{bottom:-163.163208px;}
.y174{bottom:-160.454469px;}
.yf3{bottom:-156.735807px;}
.y12c{bottom:-149.798388px;}
.y158{bottom:-142.913289px;}
.y173{bottom:-140.204550px;}
.yf2{bottom:-136.485888px;}
.y12b{bottom:-129.548469px;}
.y157{bottom:-122.753550px;}
.yf1{bottom:-116.235969px;}
.y12a{bottom:-109.298550px;}
.y172{bottom:-102.495900px;}
.yf0{bottom:-95.986050px;}
.y156{bottom:-84.954300px;}
.y171{bottom:-82.965450px;}
.y129{bottom:-71.589000px;}
.y155{bottom:-65.423850px;}
.y170{bottom:-63.435000px;}
.yef{bottom:-58.276950px;}
.y128{bottom:-52.058550px;}
.y154{bottom:-45.893400px;}
.y16f{bottom:-43.904550px;}
.yee{bottom:-38.746500px;}
.y127{bottom:-27.576588px;}
.y153{bottom:-26.453400px;}
.y16e{bottom:-24.464550px;}
.yed{bottom:-19.216050px;}
.y152{bottom:-1.971120px;}
.y0{bottom:0.000000px;}
.y16d{bottom:0.015450px;}
.y32{bottom:3.425340px;}
.yec{bottom:5.263950px;}
.y26{bottom:5.788613px;}
.y31{bottom:14.151273px;}
.y25{bottom:22.317924px;}
.y6{bottom:35.925007px;}
.y24{bottom:38.654567px;}
.y54{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y53{bottom:108.612000px;}
.y86{bottom:110.898000px;}
.y1e4{bottom:114.007500px;}
.y134{bottom:120.013500px;}
.yb7{bottom:123.121500px;}
.y52{bottom:128.875500px;}
.y85{bottom:131.161500px;}
.y1e3{bottom:133.374000px;}
.y1b7{bottom:136.990500px;}
.y22{bottom:139.264499px;}
.y133{bottom:140.277000px;}
.yb6{bottom:143.386500px;}
.ye8{bottom:148.564500px;}
.y51{bottom:149.139000px;}
.y84{bottom:151.426500px;}
.y1e2{bottom:152.742000px;}
.y1b6{bottom:157.254000px;}
.y132{bottom:160.542000px;}
.yb5{bottom:163.650000px;}
.ye7{bottom:168.829500px;}
.y50{bottom:169.404000px;}
.y83{bottom:171.690000px;}
.y1e1{bottom:172.108500px;}
.y1b5{bottom:177.519000px;}
.y131{bottom:180.805500px;}
.yb4{bottom:183.913500px;}
.ye6{bottom:189.093000px;}
.y4f{bottom:189.667500px;}
.y1e0{bottom:191.476500px;}
.y82{bottom:191.953500px;}
.y19{bottom:196.933500px;}
.y1b4{bottom:197.782500px;}
.y130{bottom:201.069000px;}
.y15d{bottom:202.138500px;}
.yb3{bottom:204.178500px;}
.ye5{bottom:209.356500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y4e{bottom:209.932500px;}
.y1df{bottom:210.844500px;}
.y81{bottom:212.218500px;}
.y1b3{bottom:218.046000px;}
.y15c{bottom:221.371500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yb2{bottom:224.442000px;}
.y211{bottom:224.956500px;}
.ye4{bottom:229.621500px;}
.y4d{bottom:230.196000px;}
.y1de{bottom:230.211000px;}
.y80{bottom:232.482000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y12f{bottom:236.070000px;}
.y1b2{bottom:238.311000px;}
.y15b{bottom:240.604500px;}
.y210{bottom:244.324500px;}
.yb1{bottom:244.707000px;}
.y1dd{bottom:249.579000px;}
.ye3{bottom:249.885000px;}
.y4c{bottom:250.459500px;}
.y7f{bottom:252.747000px;}
.y12e{bottom:255.303000px;}
.y1b1{bottom:258.574500px;}
.y15a{bottom:259.837500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y20f{bottom:263.691000px;}
.yb0{bottom:264.970500px;}
.y1dc{bottom:268.945500px;}
.ye2{bottom:270.150000px;}
.y4b{bottom:270.724500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y7e{bottom:273.010500px;}
.y16b{bottom:274.515450px;}
.y113{bottom:277.732500px;}
.y1b0{bottom:278.839500px;}
.y126{bottom:280.222782px;}
.y135{bottom:282.267000px;}
.yea{bottom:284.083950px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yaf{bottom:285.234000px;}
.y1db{bottom:288.313500px;}
.ye1{bottom:290.413500px;}
.y4a{bottom:290.988000px;}
.y20e{bottom:293.037000px;}
.y7d{bottom:293.274000px;}
.y1af{bottom:299.103000px;}
.y125{bottom:300.472701px;}
.y169{bottom:302.241000px;}
.yae{bottom:305.499000px;}
.y1da{bottom:307.681500px;}
.y20d{bottom:308.235000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.ye0{bottom:310.677000px;}
.y49{bottom:311.253000px;}
.y7c{bottom:313.539000px;}
.y1ae{bottom:319.366500px;}
.y124{bottom:320.632440px;}
.y168{bottom:322.504500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yad{bottom:325.762500px;}
.y1d9{bottom:327.048000px;}
.ydf{bottom:330.942000px;}
.y48{bottom:331.516500px;}
.y7b{bottom:333.802500px;}
.y1ad{bottom:339.631500px;}
.y123{bottom:340.882359px;}
.y20c{bottom:341.367000px;}
.y167{bottom:342.769500px;}
.yac{bottom:346.027500px;}
.y10{bottom:348.133500px;}
.yde{bottom:351.205500px;}
.y47{bottom:351.780000px;}
.y1d8{bottom:355.381500px;}
.y1ac{bottom:359.895000px;}
.y20b{bottom:360.733500px;}
.y122{bottom:361.132278px;}
.y7a{bottom:363.033000px;}
.yab{bottom:366.291000px;}
.y151{bottom:370.179195px;}
.ydd{bottom:371.470500px;}
.y46{bottom:372.045000px;}
.y20a{bottom:380.101500px;}
.y1ab{bottom:380.158500px;}
.y121{bottom:381.382197px;}
.y166{bottom:383.298000px;}
.yaa{bottom:386.554500px;}
.yf{bottom:386.785499px;}
.y150{bottom:390.429114px;}
.ydc{bottom:391.734000px;}
.y45{bottom:392.308500px;}
.y1d7{bottom:394.834500px;}
.y79{bottom:397.852500px;}
.y209{bottom:399.468000px;}
.y1aa{bottom:400.423500px;}
.y120{bottom:401.632116px;}
.y165{bottom:403.561500px;}
.ya9{bottom:406.819500px;}
.ye{bottom:408.044999px;}
.y14f{bottom:410.679033px;}
.ydb{bottom:411.997500px;}
.y44{bottom:412.573500px;}
.y1d6{bottom:415.098000px;}
.y78{bottom:418.117500px;}
.y208{bottom:418.836000px;}
.y1a9{bottom:420.687000px;}
.y11f{bottom:421.882035px;}
.y164{bottom:423.825000px;}
.ya8{bottom:427.083000px;}
.y14e{bottom:430.838772px;}
.yda{bottom:432.262500px;}
.y43{bottom:432.837000px;}
.y1d5{bottom:435.363000px;}
.y207{bottom:438.204000px;}
.y77{bottom:438.381000px;}
.y1a8{bottom:440.952000px;}
.y11e{bottom:442.131954px;}
.y163{bottom:444.090000px;}
.ya7{bottom:447.348000px;}
.y14d{bottom:451.088691px;}
.yd9{bottom:452.526000px;}
.y1d4{bottom:455.626500px;}
.y206{bottom:457.570500px;}
.y76{bottom:458.644500px;}
.y1a7{bottom:461.215500px;}
.y42{bottom:462.067500px;}
.y11d{bottom:462.291693px;}
.y162{bottom:464.353500px;}
.ya6{bottom:467.611500px;}
.y14c{bottom:471.338610px;}
.yd8{bottom:472.791000px;}
.y205{bottom:476.938500px;}
.y75{bottom:478.909500px;}
.y1a6{bottom:481.479000px;}
.y11c{bottom:482.541612px;}
.y161{bottom:484.618500px;}
.y1d3{bottom:484.857000px;}
.ya5{bottom:487.875000px;}
.y14b{bottom:491.588529px;}
.yd7{bottom:493.054500px;}
.y204{bottom:496.305000px;}
.y74{bottom:499.173000px;}
.y1a5{bottom:501.744000px;}
.y11b{bottom:502.791531px;}
.yd{bottom:502.864502px;}
.y160{bottom:504.882000px;}
.ya4{bottom:508.140000px;}
.y14a{bottom:511.838448px;}
.yd6{bottom:513.318000px;}
.y203{bottom:515.673000px;}
.y73{bottom:519.438000px;}
.y1d2{bottom:519.676500px;}
.yc{bottom:520.864502px;}
.y1a4{bottom:522.007500px;}
.y11a{bottom:523.041450px;}
.y15f{bottom:525.145500px;}
.ya3{bottom:528.403500px;}
.y149{bottom:532.088367px;}
.yd5{bottom:533.583000px;}
.y202{bottom:535.041000px;}
.y41{bottom:538.483500px;}
.yb{bottom:538.864499px;}
.y72{bottom:539.701500px;}
.y1a3{bottom:542.272500px;}
.y1d1{bottom:543.841500px;}
.ya2{bottom:548.667000px;}
.y112{bottom:549.432000px;}
.y148{bottom:552.338286px;}
.yd4{bottom:553.846500px;}
.y15e{bottom:554.376000px;}
.y201{bottom:554.407500px;}
.ya{bottom:556.864499px;}
.y40{bottom:558.747000px;}
.y1d0{bottom:559.039500px;}
.y71{bottom:559.965000px;}
.y119{bottom:560.750550px;}
.y1a2{bottom:562.536000px;}
.ya1{bottom:568.932000px;}
.y111{bottom:569.697000px;}
.y147{bottom:572.498025px;}
.y200{bottom:573.775500px;}
.yd3{bottom:574.111500px;}
.y1cf{bottom:574.237500px;}
.y70{bottom:580.230000px;}
.y118{bottom:580.281000px;}
.y1a1{bottom:582.799500px;}
.ya0{bottom:589.195500px;}
.y1ce{bottom:589.435500px;}
.y110{bottom:589.960500px;}
.y146{bottom:592.747944px;}
.y1ff{bottom:593.142000px;}
.yd2{bottom:594.375000px;}
.y3f{bottom:596.944500px;}
.y117{bottom:599.811450px;}
.y6f{bottom:600.493500px;}
.y1a0{bottom:603.064500px;}
.y9f{bottom:609.460500px;}
.y10f{bottom:610.224000px;}
.y1fe{bottom:612.510000px;}
.y145{bottom:612.997863px;}
.y1cd{bottom:613.599000px;}
.yd1{bottom:614.638500px;}
.y3e{bottom:617.208000px;}
.y6e{bottom:620.758500px;}
.y19f{bottom:623.328000px;}
.y116{bottom:624.291450px;}
.y9e{bottom:629.724000px;}
.y10e{bottom:630.489000px;}
.y1fd{bottom:631.878000px;}
.y144{bottom:633.247782px;}
.yd0{bottom:634.903500px;}
.y3d{bottom:637.473000px;}
.y6d{bottom:641.022000px;}
.y19e{bottom:643.593000px;}
.y9{bottom:645.510000px;}
.y1cc{bottom:646.731000px;}
.y9d{bottom:649.987500px;}
.y10d{bottom:650.752500px;}
.y1fc{bottom:651.244500px;}
.y143{bottom:653.497701px;}
.ycf{bottom:655.167000px;}
.y3c{bottom:657.736500px;}
.y6c{bottom:661.285500px;}
.y19d{bottom:663.856500px;}
.y8{bottom:666.771000px;}
.y1cb{bottom:666.994500px;}
.y9c{bottom:670.252500px;}
.y1fb{bottom:670.612500px;}
.y10c{bottom:671.016000px;}
.y142{bottom:673.747620px;}
.yce{bottom:675.432000px;}
.y3b{bottom:678.000000px;}
.y6b{bottom:681.550500px;}
.y19c{bottom:684.120000px;}
.y1ca{bottom:687.258000px;}
.y1fa{bottom:689.979000px;}
.y9b{bottom:690.516000px;}
.y10b{bottom:691.281000px;}
.y141{bottom:693.997539px;}
.ycd{bottom:695.695500px;}
.y3a{bottom:698.265000px;}
.y6a{bottom:701.814000px;}
.y19b{bottom:704.385000px;}
.y1c9{bottom:707.523000px;}
.y1f9{bottom:709.347000px;}
.y9a{bottom:710.781000px;}
.y10a{bottom:711.544500px;}
.y140{bottom:714.157278px;}
.ycc{bottom:715.959000px;}
.y39{bottom:718.528500px;}
.y69{bottom:722.077500px;}
.y19a{bottom:724.648500px;}
.y7{bottom:726.298500px;}
.y1c8{bottom:727.786500px;}
.y1f8{bottom:728.715000px;}
.y99{bottom:731.044500px;}
.y109{bottom:731.809500px;}
.y13f{bottom:734.407197px;}
.ycb{bottom:736.224000px;}
.y38{bottom:738.793500px;}
.y68{bottom:742.342500px;}
.y199{bottom:744.913500px;}
.y1c7{bottom:748.051500px;}
.y1f7{bottom:748.081500px;}
.y98{bottom:751.308000px;}
.y108{bottom:752.073000px;}
.y3{bottom:752.599495px;}
.y13e{bottom:754.657116px;}
.yca{bottom:756.487500px;}
.y37{bottom:759.057000px;}
.y67{bottom:762.606000px;}
.y1f6{bottom:767.449500px;}
.y1c6{bottom:768.315000px;}
.y97{bottom:771.573000px;}
.y107{bottom:772.336500px;}
.y13d{bottom:774.907035px;}
.yc9{bottom:776.752500px;}
.y36{bottom:779.320500px;}
.y198{bottom:779.913000px;}
.y66{bottom:782.871000px;}
.y1f5{bottom:786.816000px;}
.y1c5{bottom:788.578500px;}
.y96{bottom:791.836500px;}
.y13c{bottom:795.156954px;}
.yc8{bottom:797.016000px;}
.y197{bottom:799.146000px;}
.y35{bottom:799.585500px;}
.y65{bottom:803.134500px;}
.y1f4{bottom:806.184000px;}
.y106{bottom:807.337500px;}
.y1c4{bottom:808.843500px;}
.y95{bottom:812.101500px;}
.y13b{bottom:815.406873px;}
.y196{bottom:818.379000px;}
.y34{bottom:819.849000px;}
.y64{bottom:823.398000px;}
.y1f3{bottom:825.552000px;}
.y105{bottom:826.570500px;}
.y1c3{bottom:829.107000px;}
.y94{bottom:832.365000px;}
.y13a{bottom:835.656792px;}
.y195{bottom:837.612000px;}
.y33{bottom:840.114000px;}
.yc7{bottom:840.144000px;}
.y63{bottom:843.663000px;}
.y1f2{bottom:844.918500px;}
.y104{bottom:845.803500px;}
.y1c2{bottom:849.372000px;}
.y93{bottom:852.628500px;}
.yc6{bottom:854.341500px;}
.y139{bottom:855.816531px;}
.y194{bottom:856.845000px;}
.yc5{bottom:858.681000px;}
.y62{bottom:863.926500px;}
.y1f1{bottom:864.286500px;}
.ye9{bottom:868.233000px;}
.y1c1{bottom:869.635500px;}
.y30{bottom:870.823555px;}
.y2f{bottom:871.590000px;}
.y92{bottom:872.893500px;}
.yc4{bottom:876.038400px;}
.y138{bottom:876.066450px;}
.y16a{bottom:879.274500px;}
.y2{bottom:879.369000px;}
.y1f0{bottom:883.653000px;}
.y61{bottom:884.191500px;}
.y1c0{bottom:889.899000px;}
.y91{bottom:893.157000px;}
.yc3{bottom:899.075520px;}
.y1ef{bottom:903.021000px;}
.y114{bottom:903.111450px;}
.y60{bottom:904.455000px;}
.y1bf{bottom:910.164000px;}
.y136{bottom:913.416450px;}
.y90{bottom:913.422000px;}
.y2e{bottom:913.938000px;}
.yc2{bottom:922.114080px;}
.y1ee{bottom:922.389000px;}
.y5f{bottom:924.718500px;}
.y2d{bottom:927.213000px;}
.y1be{bottom:930.427500px;}
.y8f{bottom:933.685500px;}
.yc1{bottom:938.237760px;}
.y1ed{bottom:941.755500px;}
.y5e{bottom:944.983500px;}
.y2c{bottom:950.253000px;}
.y1bd{bottom:950.692500px;}
.y8e{bottom:953.949000px;}
.yc0{bottom:954.361440px;}
.y1ec{bottom:961.123500px;}
.y5d{bottom:965.247000px;}
.y1{bottom:966.726000px;}
.y2b{bottom:967.771500px;}
.ybf{bottom:970.485120px;}
.y1bc{bottom:970.956000px;}
.y8d{bottom:974.214000px;}
.y1eb{bottom:980.490000px;}
.y5c{bottom:985.512000px;}
.y1bb{bottom:991.219500px;}
.ybe{bottom:993.179520px;}
.y8c{bottom:994.477500px;}
.y1ea{bottom:999.858000px;}
.ybd{bottom:1001.070720px;}
.y5b{bottom:1005.775500px;}
.y2a{bottom:1010.451000px;}
.y1ba{bottom:1011.484500px;}
.y8b{bottom:1014.742500px;}
.y1e9{bottom:1019.226000px;}
.y5a{bottom:1026.039000px;}
.y1b9{bottom:1031.748000px;}
.ybc{bottom:1031.999040px;}
.y8a{bottom:1035.006000px;}
.y1e8{bottom:1038.592500px;}
.y29{bottom:1040.848500px;}
.y59{bottom:1046.304000px;}
.ybb{bottom:1048.122720px;}
.y89{bottom:1055.269500px;}
.y1e7{bottom:1057.960500px;}
.y1b8{bottom:1060.978500px;}
.y58{bottom:1066.567500px;}
.yba{bottom:1070.817120px;}
.y28{bottom:1071.244500px;}
.y88{bottom:1075.534500px;}
.y1e6{bottom:1077.327000px;}
.yb9{bottom:1078.708320px;}
.y57{bottom:1086.832500px;}
.y87{bottom:1095.798000px;}
.y1e5{bottom:1096.695000px;}
.y27{bottom:1100.145000px;}
.y56{bottom:1116.063000px;}
.yb8{bottom:1117.543500px;}
.y23{bottom:1137.954000px;}
.y55{bottom:1168.366500px;}
.h29{height:6.635092px;}
.h11{height:25.508090px;}
.h1c{height:26.217754px;}
.hf{height:30.587087px;}
.h7{height:32.130000px;}
.h13{height:33.112997px;}
.h12{height:34.199443px;}
.h1d{height:34.956859px;}
.h16{height:35.052500px;}
.h1f{height:35.091738px;}
.h20{height:35.991211px;}
.ha{height:36.277321px;}
.h19{height:37.340393px;}
.h1a{height:37.753565px;}
.h2e{height:37.927872px;}
.h24{height:38.896243px;}
.h10{height:39.326630px;}
.h23{height:39.418945px;}
.h2d{height:39.434227px;}
.h22{height:39.445312px;}
.h28{height:39.577148px;}
.h2c{height:42.679778px;}
.h14{height:43.217759px;}
.h15{height:43.695964px;}
.hc{height:43.815515px;}
.h21{height:43.886426px;}
.h2b{height:43.915781px;}
.h27{height:44.062559px;}
.hb{height:44.827234px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h17{height:50.117087px;}
.h9{height:50.931027px;}
.he{height:54.547601px;}
.h2{height:55.080000px;}
.h18{height:68.899433px;}
.h1b{height:69.312605px;}
.hd{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h25{height:248.052000px;}
.h2a{height:251.733000px;}
.h1e{height:262.774500px;}
.h26{height:326.074500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:209.166223px;}
.w6{width:585.169500px;}
.w9{width:586.641000px;}
.w7{width:619.027200px;}
.w8{width:621.972900px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x29{left:-41.205000px;}
.x1b{left:-38.260500px;}
.x20{left:-30.900300px;}
.x24{left:-17.651100px;}
.x2b{left:-9.345000px;}
.x1d{left:-6.400500px;}
.x0{left:0.000000px;}
.x25{left:14.210297px;}
.xb{left:29.274117px;}
.x6{left:60.141348px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:113.458500px;}
.x5{left:114.802500px;}
.x8{left:123.307500px;}
.xf{left:134.893980px;}
.x1f{left:136.944300px;}
.x9{left:146.170500px;}
.x17{left:152.931420px;}
.x1a{left:154.089000px;}
.x16{left:157.772700px;}
.x18{left:159.070140px;}
.x15{left:162.613980px;}
.x13{left:165.842460px;}
.x12{left:169.070940px;}
.x11{left:175.526460px;}
.xe{left:178.803000px;}
.x19{left:182.588220px;}
.xc{left:188.667000px;}
.x4{left:203.484001px;}
.xd{left:205.060500px;}
.x23{left:210.987000px;}
.x31{left:225.619500px;}
.x30{left:238.147500px;}
.x32{left:251.667000px;}
.x34{left:254.101500px;}
.x33{left:267.256500px;}
.x3{left:454.959000px;}
.x1c{left:587.599500px;}
.x2a{left:590.145000px;}
.x21{left:594.959700px;}
.x10{left:607.666140px;}
.x27{left:612.630000px;}
.x14{left:614.586780px;}
.x1e{left:621.796510px;}
.x26{left:626.295569px;}
.x22{left:629.156710px;}
.x28{left:635.026500px;}
.x2e{left:662.967000px;}
.x2c{left:666.738000px;}
.x2f{left:671.125500px;}
.xa{left:701.339982px;}
.x2d{left:776.994000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:28.052480pt;}
.ls44{letter-spacing:-0.224448pt;}
.ls47{letter-spacing:-0.192384pt;}
.ls35{letter-spacing:-0.149632pt;}
.ls34{letter-spacing:-0.117568pt;}
.ls36{letter-spacing:-0.106880pt;}
.ls27{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.090848pt;}
.ls24{letter-spacing:-0.076608pt;}
.ls45{letter-spacing:-0.074816pt;}
.ls33{letter-spacing:-0.069472pt;}
.ls2c{letter-spacing:-0.064128pt;}
.ls26{letter-spacing:-0.043200pt;}
.ls43{letter-spacing:-0.037408pt;}
.ls41{letter-spacing:-0.028800pt;}
.ls29{letter-spacing:-0.026720pt;}
.ls2a{letter-spacing:-0.024000pt;}
.ls38{letter-spacing:-0.021376pt;}
.ls2b{letter-spacing:-0.016032pt;}
.ls42{letter-spacing:-0.014400pt;}
.ls39{letter-spacing:-0.010688pt;}
.ls37{letter-spacing:-0.005344pt;}
.ls25{letter-spacing:-0.004800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000137pt;}
.ls2d{letter-spacing:0.000445pt;}
.lsd{letter-spacing:0.001349pt;}
.ls4d{letter-spacing:0.002505pt;}
.ls49{letter-spacing:0.002517pt;}
.ls7{letter-spacing:0.003100pt;}
.ls3b{letter-spacing:0.003106pt;}
.ls5{letter-spacing:0.003409pt;}
.ls4f{letter-spacing:0.004267pt;}
.ls31{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.005344pt;}
.ls1f{letter-spacing:0.009600pt;}
.ls1c{letter-spacing:0.010688pt;}
.ls15{letter-spacing:0.014400pt;}
.ls17{letter-spacing:0.016032pt;}
.lsf{letter-spacing:0.017024pt;}
.ls20{letter-spacing:0.019200pt;}
.ls30{letter-spacing:0.021376pt;}
.ls13{letter-spacing:0.024000pt;}
.ls1b{letter-spacing:0.026720pt;}
.ls14{letter-spacing:0.028800pt;}
.ls22{letter-spacing:0.032064pt;}
.ls12{letter-spacing:0.033600pt;}
.ls19{letter-spacing:0.037408pt;}
.ls32{letter-spacing:0.038400pt;}
.ls18{letter-spacing:0.042752pt;}
.ls3d{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls1d{letter-spacing:0.053440pt;}
.ls28{letter-spacing:0.058784pt;}
.ls21{letter-spacing:0.064128pt;}
.ls3e{letter-spacing:0.069472pt;}
.ls2e{letter-spacing:0.074816pt;}
.ls2f{letter-spacing:0.080160pt;}
.ls3f{letter-spacing:0.090848pt;}
.ls40{letter-spacing:0.096192pt;}
.ls1e{letter-spacing:0.133600pt;}
.ls11{letter-spacing:0.140448pt;}
.ls10{letter-spacing:0.170240pt;}
.ls4c{letter-spacing:0.466280pt;}
.ls8{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.lsc{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.665203pt;}
.ls6{letter-spacing:10.626533pt;}
.ls48{letter-spacing:11.317514pt;}
.ls4e{letter-spacing:11.869988pt;}
.ls23{letter-spacing:11.955200pt;}
.ls3{letter-spacing:11.957837pt;}
.ls4a{letter-spacing:12.156853pt;}
.ls4b{letter-spacing:12.430097pt;}
.lse{letter-spacing:12.858396pt;}
.lsa{letter-spacing:13.283942pt;}
.ls9{letter-spacing:13.422706pt;}
.ls3a{letter-spacing:13.483622pt;}
.ls3c{letter-spacing:13.496002pt;}
.ls2{letter-spacing:62.432533pt;}
.ws1a{word-spacing:-15.461955pt;}
.ws1{word-spacing:-14.692637pt;}
.ws8a{word-spacing:-13.915853pt;}
.ws26{word-spacing:-13.283467pt;}
.ws86{word-spacing:-13.253120pt;}
.ws3{word-spacing:-12.760670pt;}
.ws87{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.955200pt;}
.ws4d{word-spacing:-10.810240pt;}
.ws21{word-spacing:-10.626800pt;}
.ws97{word-spacing:-2.965920pt;}
.ws45{word-spacing:-2.805475pt;}
.ws96{word-spacing:-2.794912pt;}
.ws44{word-spacing:-2.762968pt;}
.ws117{word-spacing:-2.603559pt;}
.ws69{word-spacing:-2.500992pt;}
.wsa{word-spacing:-2.497292pt;}
.ws6a{word-spacing:-2.484960pt;}
.ws59{word-spacing:-2.428800pt;}
.ws5b{word-spacing:-2.424000pt;}
.ws5a{word-spacing:-2.352000pt;}
.wsf5{word-spacing:-2.244480pt;}
.ws6d{word-spacing:-2.212416pt;}
.ws82{word-spacing:-2.178489pt;}
.ws6e{word-spacing:-2.169664pt;}
.ws7a{word-spacing:-2.164320pt;}
.ws79{word-spacing:-2.137600pt;}
.ws32{word-spacing:-2.125355pt;}
.ws56{word-spacing:-2.107200pt;}
.ws57{word-spacing:-2.097600pt;}
.ws34{word-spacing:-2.072221pt;}
.ws58{word-spacing:-2.068800pt;}
.ws138{word-spacing:-2.056294pt;}
.ws11c{word-spacing:-2.019087pt;}
.ws10a{word-spacing:-1.902464pt;}
.ws78{word-spacing:-1.865056pt;}
.ws5e{word-spacing:-1.838336pt;}
.wsf4{word-spacing:-1.811616pt;}
.ws8{word-spacing:-1.806551pt;}
.wsf3{word-spacing:-1.806272pt;}
.ws7{word-spacing:-1.696326pt;}
.ws85{word-spacing:-1.594016pt;}
.wsea{word-spacing:-1.587168pt;}
.ws65{word-spacing:-1.576480pt;}
.wsc1{word-spacing:-1.571136pt;}
.ws8e{word-spacing:-1.565792pt;}
.ws11d{word-spacing:-1.540882pt;}
.ws5f{word-spacing:-1.533728pt;}
.ws8f{word-spacing:-1.523040pt;}
.ws25{word-spacing:-1.487748pt;}
.wsdc{word-spacing:-1.464000pt;}
.wsda{word-spacing:-1.444800pt;}
.ws7d{word-spacing:-1.434614pt;}
.ws64{word-spacing:-1.416160pt;}
.wsdb{word-spacing:-1.406400pt;}
.ws106{word-spacing:-1.271872pt;}
.ws6c{word-spacing:-1.255840pt;}
.ws99{word-spacing:-1.223776pt;}
.ws7f{word-spacing:-1.222079pt;}
.ws107{word-spacing:-1.207744pt;}
.ws98{word-spacing:-1.202400pt;}
.ws10c{word-spacing:-1.191712pt;}
.ws6{word-spacing:-1.175671pt;}
.ws12a{word-spacing:-0.908595pt;}
.ws92{word-spacing:-0.806944pt;}
.ws35{word-spacing:-0.797008pt;}
.ws2b{word-spacing:-0.743874pt;}
.ws4a{word-spacing:-0.690740pt;}
.ws27{word-spacing:-0.637606pt;}
.wsee{word-spacing:-0.593184pt;}
.ws36{word-spacing:-0.584473pt;}
.wsa8{word-spacing:-0.577152pt;}
.ws13c{word-spacing:-0.573850pt;}
.wsed{word-spacing:-0.561120pt;}
.ws11{word-spacing:-0.531339pt;}
.wsd8{word-spacing:-0.499200pt;}
.wsd7{word-spacing:-0.489600pt;}
.wsd9{word-spacing:-0.484800pt;}
.wsd{word-spacing:-0.425071pt;}
.ws29{word-spacing:-0.371937pt;}
.ws71{word-spacing:-0.368736pt;}
.ws1c{word-spacing:-0.318803pt;}
.ws124{word-spacing:-0.286925pt;}
.ws9f{word-spacing:-0.272544pt;}
.wse{word-spacing:-0.265669pt;}
.ws12d{word-spacing:-0.239104pt;}
.ws55{word-spacing:-0.217056pt;}
.wsa0{word-spacing:-0.213760pt;}
.ws13{word-spacing:-0.212535pt;}
.wsdd{word-spacing:-0.201600pt;}
.ws119{word-spacing:-0.191283pt;}
.ws5d{word-spacing:-0.168000pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.wsce{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.004297pt;}
.ws0{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.016032pt;}
.wsa2{word-spacing:0.037408pt;}
.ws8b{word-spacing:0.047821pt;}
.wsf0{word-spacing:0.048096pt;}
.ws9{word-spacing:0.053134pt;}
.ws114{word-spacing:0.053440pt;}
.wsb7{word-spacing:0.064128pt;}
.wse3{word-spacing:0.080160pt;}
.ws4e{word-spacing:0.095642pt;}
.wsc{word-spacing:0.106268pt;}
.wse5{word-spacing:0.106880pt;}
.wse4{word-spacing:0.122912pt;}
.ws73{word-spacing:0.134400pt;}
.wsbe{word-spacing:0.139200pt;}
.wscc{word-spacing:0.143462pt;}
.wse0{word-spacing:0.144000pt;}
.ws5c{word-spacing:0.148800pt;}
.ws18{word-spacing:0.159402pt;}
.ws74{word-spacing:0.187200pt;}
.ws11b{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.ws54{word-spacing:0.225568pt;}
.ws1f{word-spacing:0.265669pt;}
.ws28{word-spacing:0.318803pt;}
.wsb5{word-spacing:0.331328pt;}
.ws30{word-spacing:0.371937pt;}
.wsb6{word-spacing:0.390112pt;}
.ws1d{word-spacing:0.478205pt;}
.wsc6{word-spacing:0.531339pt;}
.wsd6{word-spacing:0.637606pt;}
.ws80{word-spacing:0.690740pt;}
.ws11a{word-spacing:0.717312pt;}
.ws2f{word-spacing:0.743874pt;}
.ws72{word-spacing:0.792000pt;}
.wse9{word-spacing:0.833664pt;}
.ws12{word-spacing:0.850142pt;}
.ws33{word-spacing:0.903276pt;}
.ws89{word-spacing:0.908595pt;}
.ws48{word-spacing:0.956410pt;}
.wsc0{word-spacing:0.999328pt;}
.ws37{word-spacing:1.009543pt;}
.ws41{word-spacing:1.062677pt;}
.wscf{word-spacing:1.115811pt;}
.ws88{word-spacing:1.147699pt;}
.ws1e{word-spacing:1.168945pt;}
.ws38{word-spacing:1.275213pt;}
.ws3f{word-spacing:1.328347pt;}
.ws70{word-spacing:1.330656pt;}
.ws129{word-spacing:1.338982pt;}
.ws6f{word-spacing:1.352032pt;}
.wsa4{word-spacing:1.368064pt;}
.wsa5{word-spacing:1.389440pt;}
.wsc8{word-spacing:1.434614pt;}
.ws46{word-spacing:1.540882pt;}
.ws49{word-spacing:1.647150pt;}
.ws3d{word-spacing:1.700284pt;}
.ws127{word-spacing:1.721549pt;}
.wsb1{word-spacing:1.747488pt;}
.wsd4{word-spacing:1.859685pt;}
.ws12f{word-spacing:1.960653pt;}
.wsca{word-spacing:1.965953pt;}
.ws76{word-spacing:1.971936pt;}
.wsb0{word-spacing:2.009344pt;}
.ws83{word-spacing:2.019087pt;}
.ws77{word-spacing:2.030720pt;}
.ws47{word-spacing:2.072221pt;}
.ws3b{word-spacing:2.231622pt;}
.wsef{word-spacing:2.271200pt;}
.ws3c{word-spacing:2.284756pt;}
.wsf7{word-spacing:2.303264pt;}
.ws93{word-spacing:2.324640pt;}
.wsc7{word-spacing:2.337890pt;}
.ws94{word-spacing:2.442208pt;}
.ws116{word-spacing:2.550426pt;}
.wsf6{word-spacing:2.591840pt;}
.wsec{word-spacing:2.597184pt;}
.ws31{word-spacing:2.656693pt;}
.wseb{word-spacing:2.661312pt;}
.wsd2{word-spacing:2.709827pt;}
.ws4c{word-spacing:2.762961pt;}
.wsc3{word-spacing:2.816095pt;}
.ws2a{word-spacing:2.869229pt;}
.wsfa{word-spacing:2.917824pt;}
.wsfb{word-spacing:2.949888pt;}
.ws103{word-spacing:2.965920pt;}
.wscb{word-spacing:3.028630pt;}
.wsfc{word-spacing:3.040736pt;}
.ws102{word-spacing:3.056768pt;}
.ws8d{word-spacing:3.188032pt;}
.wsab{word-spacing:3.206400pt;}
.wsb3{word-spacing:3.211744pt;}
.wsaa{word-spacing:3.222432pt;}
.wse1{word-spacing:3.233120pt;}
.ws95{word-spacing:3.238464pt;}
.ws2c{word-spacing:3.241166pt;}
.wscd{word-spacing:3.251814pt;}
.wsac{word-spacing:3.286560pt;}
.wse2{word-spacing:3.291904pt;}
.ws84{word-spacing:3.294300pt;}
.wsb2{word-spacing:3.307936pt;}
.wsb9{word-spacing:3.340800pt;}
.wsb8{word-spacing:3.350400pt;}
.wsba{word-spacing:3.360000pt;}
.ws40{word-spacing:3.400567pt;}
.ws3a{word-spacing:3.453701pt;}
.wsd3{word-spacing:3.559969pt;}
.ws12c{word-spacing:3.873485pt;}
.ws81{word-spacing:3.878772pt;}
.wsff{word-spacing:3.879744pt;}
.ws100{word-spacing:3.922496pt;}
.ws39{word-spacing:3.985040pt;}
.ws51{word-spacing:4.038174pt;}
.wse6{word-spacing:4.152288pt;}
.wsc5{word-spacing:4.197575pt;}
.ws3e{word-spacing:4.250709pt;}
.wsd5{word-spacing:4.303843pt;}
.wsc9{word-spacing:4.356977pt;}
.wsc4{word-spacing:4.516379pt;}
.wsa9{word-spacing:4.526368pt;}
.ws123{word-spacing:4.542976pt;}
.ws50{word-spacing:4.569513pt;}
.wsdf{word-spacing:4.617600pt;}
.ws2e{word-spacing:4.622646pt;}
.wsde{word-spacing:4.660800pt;}
.ws134{word-spacing:4.776653pt;}
.ws118{word-spacing:4.781175pt;}
.ws120{word-spacing:4.781483pt;}
.ws11f{word-spacing:4.782080pt;}
.ws126{word-spacing:4.782592pt;}
.ws6b{word-spacing:4.830976pt;}
.wsfe{word-spacing:4.836320pt;}
.ws63{word-spacing:4.841664pt;}
.ws62{word-spacing:4.847008pt;}
.ws91{word-spacing:4.873728pt;}
.ws90{word-spacing:4.879072pt;}
.ws19{word-spacing:4.888316pt;}
.wsbb{word-spacing:4.948800pt;}
.wsbc{word-spacing:4.972800pt;}
.ws13d{word-spacing:5.021184pt;}
.ws14{word-spacing:5.047717pt;}
.wsaf{word-spacing:5.151616pt;}
.ws2d{word-spacing:5.153985pt;}
.wsbf{word-spacing:5.215744pt;}
.ws4b{word-spacing:5.260253pt;}
.ws15{word-spacing:5.313387pt;}
.ws10d{word-spacing:5.397440pt;}
.ws109{word-spacing:5.429504pt;}
.ws53{word-spacing:5.451571pt;}
.ws61{word-spacing:5.482944pt;}
.ws108{word-spacing:5.504320pt;}
.ws9a{word-spacing:5.525696pt;}
.ws4f{word-spacing:5.525922pt;}
.wsd0{word-spacing:5.579056pt;}
.ws52{word-spacing:5.786317pt;}
.ws101{word-spacing:5.792896pt;}
.ws60{word-spacing:5.840992pt;}
.wsf8{word-spacing:6.108192pt;}
.wsd1{word-spacing:6.110395pt;}
.ws67{word-spacing:6.118880pt;}
.wsf9{word-spacing:6.145600pt;}
.ws115{word-spacing:6.482332pt;}
.ws66{word-spacing:6.514336pt;}
.ws68{word-spacing:6.765504pt;}
.ws110{word-spacing:6.776192pt;}
.ws111{word-spacing:6.786880pt;}
.wsbd{word-spacing:6.849600pt;}
.ws135{word-spacing:7.077478pt;}
.ws137{word-spacing:7.125299pt;}
.wsb4{word-spacing:7.428160pt;}
.ws125{word-spacing:7.460045pt;}
.wsa1{word-spacing:7.764832pt;}
.ws10{word-spacing:7.810678pt;}
.wsa7{word-spacing:8.010656pt;}
.wsa6{word-spacing:8.016000pt;}
.ws7b{word-spacing:8.352672pt;}
.ws7c{word-spacing:8.470240pt;}
.ws10b{word-spacing:8.678656pt;}
.ws9e{word-spacing:8.716064pt;}
.wsc2{word-spacing:8.767088pt;}
.ws17{word-spacing:8.873356pt;}
.ws131{word-spacing:8.942490pt;}
.ws9c{word-spacing:8.988608pt;}
.wsf2{word-spacing:8.993952pt;}
.ws10e{word-spacing:9.031360pt;}
.ws9d{word-spacing:9.164960pt;}
.ws10f{word-spacing:9.287872pt;}
.ws9b{word-spacing:9.373376pt;}
.ws139{word-spacing:9.851085pt;}
.wse8{word-spacing:9.955872pt;}
.wse7{word-spacing:10.003968pt;}
.ws20{word-spacing:10.584293pt;}
.wsa3{word-spacing:10.939168pt;}
.ws12b{word-spacing:10.998784pt;}
.ws113{word-spacing:11.521664pt;}
.ws112{word-spacing:11.612512pt;}
.ws132{word-spacing:11.716096pt;}
.ws122{word-spacing:11.763917pt;}
.ws13b{word-spacing:11.859558pt;}
.ws13e{word-spacing:11.900365pt;}
.ws11e{word-spacing:11.907379pt;}
.ws121{word-spacing:11.955200pt;}
.ws133{word-spacing:12.003021pt;}
.ws136{word-spacing:12.529050pt;}
.ws7e{word-spacing:12.933194pt;}
.ws12e{word-spacing:12.959437pt;}
.ws128{word-spacing:13.246362pt;}
.ws130{word-spacing:13.915853pt;}
.ws16{word-spacing:14.293010pt;}
.ws13a{word-spacing:16.689459pt;}
.wsad{word-spacing:17.036672pt;}
.wsae{word-spacing:17.047360pt;}
.wsfd{word-spacing:17.945152pt;}
.ws75{word-spacing:19.227712pt;}
.ws104{word-spacing:21.172928pt;}
.ws105{word-spacing:21.210336pt;}
.ws43{word-spacing:334.164099pt;}
.ws42{word-spacing:362.305683pt;}
.ws23{word-spacing:642.623850pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-8.799027pt;}
._2a{margin-left:-7.119938pt;}
._3{margin-left:-6.168883pt;}
._4{margin-left:-4.399514pt;}
._2{margin-left:-2.660907pt;}
._6{margin-left:-1.175671pt;}
._7{width:0.969929pt;}
._2e{width:2.677965pt;}
._27{width:8.324736pt;}
._2b{width:10.580366pt;}
._a{width:12.333783pt;}
._b{width:13.861729pt;}
._f{width:15.201641pt;}
._5{width:16.737280pt;}
._10{width:17.806572pt;}
._8{width:18.773691pt;}
._11{width:19.808335pt;}
._9{width:20.987877pt;}
._12{width:22.103689pt;}
._13{width:23.378901pt;}
._14{width:24.972917pt;}
._e{width:26.632036pt;}
._d{width:29.122714pt;}
._29{width:30.711375pt;}
._15{width:31.827186pt;}
._28{width:33.522381pt;}
._2d{width:39.309126pt;}
._17{width:88.510562pt;}
._16{width:116.652147pt;}
._1a{width:225.132675pt;}
._1e{width:240.817406pt;}
._1c{width:259.288203pt;}
._23{width:297.896804pt;}
._21{width:323.421635pt;}
._24{width:345.273827pt;}
._20{width:346.421527pt;}
._1d{width:357.898519pt;}
._1f{width:363.637015pt;}
._19{width:375.435362pt;}
._22{width:381.219766pt;}
._1b{width:386.545091pt;}
._18{width:409.544983pt;}
._25{width:421.335679pt;}
._26{width:1184.398999pt;}
._2c{width:1543.351202pt;}
._c{width:1564.604535pt;}
.fs10{font-size:31.880533pt;}
.fsa{font-size:37.193600pt;}
.fsd{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsc{font-size:41.988267pt;}
.fse{font-size:42.507200pt;}
.fs11{font-size:42.560000pt;}
.fsf{font-size:45.907968pt;}
.fs5{font-size:46.397853pt;}
.fsb{font-size:47.820800pt;}
.fs12{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs13{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.770546pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y16c{bottom:-740.066267pt;}
.yeb{bottom:-731.560933pt;}
.y103{bottom:-701.400717pt;}
.y193{bottom:-700.223163pt;}
.y102{bottom:-683.400789pt;}
.y192{bottom:-682.303395pt;}
.y101{bottom:-665.400861pt;}
.y191{bottom:-664.303467pt;}
.y100{bottom:-647.400933pt;}
.y190{bottom:-646.303539pt;}
.y18f{bottom:-628.303611pt;}
.yff{bottom:-613.881333pt;}
.y18e{bottom:-610.303683pt;}
.yfe{bottom:-596.520933pt;}
.y18d{bottom:-592.303755pt;}
.yfd{bottom:-574.759189pt;}
.y18c{bottom:-574.303827pt;}
.y18b{bottom:-556.384059pt;}
.y18a{bottom:-538.384131pt;}
.y189{bottom:-520.384203pt;}
.y188{bottom:-502.384275pt;}
.y187{bottom:-484.384347pt;}
.y186{bottom:-466.384419pt;}
.y185{bottom:-448.384491pt;}
.y184{bottom:-430.464723pt;}
.y183{bottom:-412.464795pt;}
.y182{bottom:-394.464867pt;}
.y181{bottom:-376.464939pt;}
.y180{bottom:-358.465011pt;}
.y17f{bottom:-340.465083pt;}
.y17e{bottom:-322.465155pt;}
.y17d{bottom:-304.545387pt;}
.yfc{bottom:-301.159749pt;}
.y17c{bottom:-286.545459pt;}
.yfb{bottom:-283.159821pt;}
.y17b{bottom:-268.545531pt;}
.yfa{bottom:-265.240053pt;}
.y17a{bottom:-250.545603pt;}
.yf9{bottom:-247.240125pt;}
.y179{bottom:-232.545675pt;}
.yf8{bottom:-229.240197pt;}
.y178{bottom:-214.545747pt;}
.yf7{bottom:-211.240269pt;}
.y177{bottom:-196.545819pt;}
.yf6{bottom:-193.240341pt;}
.y115{bottom:-181.314267pt;}
.y176{bottom:-178.626051pt;}
.yf5{bottom:-175.240413pt;}
.y137{bottom:-172.154267pt;}
.y175{bottom:-160.626123pt;}
.yf4{bottom:-157.240485pt;}
.y12d{bottom:-151.154051pt;}
.y159{bottom:-145.033963pt;}
.y174{bottom:-142.626195pt;}
.yf3{bottom:-139.320717pt;}
.y12c{bottom:-133.154123pt;}
.y158{bottom:-127.034035pt;}
.y173{bottom:-124.626267pt;}
.yf2{bottom:-121.320789pt;}
.y12b{bottom:-115.154195pt;}
.y157{bottom:-109.114267pt;}
.yf1{bottom:-103.320861pt;}
.y12a{bottom:-97.154267pt;}
.y172{bottom:-91.107467pt;}
.yf0{bottom:-85.320933pt;}
.y156{bottom:-75.514933pt;}
.y171{bottom:-73.747067pt;}
.y129{bottom:-63.634667pt;}
.y155{bottom:-58.154533pt;}
.y170{bottom:-56.386667pt;}
.yef{bottom:-51.801733pt;}
.y128{bottom:-46.274267pt;}
.y154{bottom:-40.794133pt;}
.y16f{bottom:-39.026267pt;}
.yee{bottom:-34.441333pt;}
.y127{bottom:-24.512523pt;}
.y153{bottom:-23.514133pt;}
.y16e{bottom:-21.746267pt;}
.yed{bottom:-17.080933pt;}
.y152{bottom:-1.752107pt;}
.y0{bottom:0.000000pt;}
.y16d{bottom:0.013733pt;}
.y32{bottom:3.044747pt;}
.yec{bottom:4.679067pt;}
.y26{bottom:5.145434pt;}
.y31{bottom:12.578910pt;}
.y25{bottom:19.838154pt;}
.y6{bottom:31.933340pt;}
.y24{bottom:34.359615pt;}
.y54{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y53{bottom:96.544000pt;}
.y86{bottom:98.576000pt;}
.y1e4{bottom:101.340000pt;}
.y134{bottom:106.678667pt;}
.yb7{bottom:109.441333pt;}
.y52{bottom:114.556000pt;}
.y85{bottom:116.588000pt;}
.y1e3{bottom:118.554667pt;}
.y1b7{bottom:121.769333pt;}
.y22{bottom:123.790666pt;}
.y133{bottom:124.690667pt;}
.yb6{bottom:127.454667pt;}
.ye8{bottom:132.057333pt;}
.y51{bottom:132.568000pt;}
.y84{bottom:134.601333pt;}
.y1e2{bottom:135.770667pt;}
.y1b6{bottom:139.781333pt;}
.y132{bottom:142.704000pt;}
.yb5{bottom:145.466667pt;}
.ye7{bottom:150.070667pt;}
.y50{bottom:150.581333pt;}
.y83{bottom:152.613333pt;}
.y1e1{bottom:152.985333pt;}
.y1b5{bottom:157.794667pt;}
.y131{bottom:160.716000pt;}
.yb4{bottom:163.478667pt;}
.ye6{bottom:168.082667pt;}
.y4f{bottom:168.593333pt;}
.y1e0{bottom:170.201333pt;}
.y82{bottom:170.625333pt;}
.y19{bottom:175.052000pt;}
.y1b4{bottom:175.806667pt;}
.y130{bottom:178.728000pt;}
.y15d{bottom:179.678667pt;}
.yb3{bottom:181.492000pt;}
.ye5{bottom:186.094667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y4e{bottom:186.606667pt;}
.y1df{bottom:187.417333pt;}
.y81{bottom:188.638667pt;}
.y1b3{bottom:193.818667pt;}
.y15c{bottom:196.774667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yb2{bottom:199.504000pt;}
.y211{bottom:199.961333pt;}
.ye4{bottom:204.108000pt;}
.y4d{bottom:204.618667pt;}
.y1de{bottom:204.632000pt;}
.y80{bottom:206.650667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y12f{bottom:209.840000pt;}
.y1b2{bottom:211.832000pt;}
.y15b{bottom:213.870667pt;}
.y210{bottom:217.177333pt;}
.yb1{bottom:217.517333pt;}
.y1dd{bottom:221.848000pt;}
.ye3{bottom:222.120000pt;}
.y4c{bottom:222.630667pt;}
.y7f{bottom:224.664000pt;}
.y12e{bottom:226.936000pt;}
.y1b1{bottom:229.844000pt;}
.y15a{bottom:230.966667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y20f{bottom:234.392000pt;}
.yb0{bottom:235.529333pt;}
.y1dc{bottom:239.062667pt;}
.ye2{bottom:240.133333pt;}
.y4b{bottom:240.644000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y7e{bottom:242.676000pt;}
.y16b{bottom:244.013733pt;}
.y113{bottom:246.873333pt;}
.y1b0{bottom:247.857333pt;}
.y126{bottom:249.086917pt;}
.y135{bottom:250.904000pt;}
.yea{bottom:252.519067pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yaf{bottom:253.541333pt;}
.y1db{bottom:256.278667pt;}
.ye1{bottom:258.145333pt;}
.y4a{bottom:258.656000pt;}
.y20e{bottom:260.477333pt;}
.y7d{bottom:260.688000pt;}
.y1af{bottom:265.869333pt;}
.y125{bottom:267.086845pt;}
.y169{bottom:268.658667pt;}
.yae{bottom:271.554667pt;}
.y1da{bottom:273.494667pt;}
.y20d{bottom:273.986667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.ye0{bottom:276.157333pt;}
.y49{bottom:276.669333pt;}
.y7c{bottom:278.701333pt;}
.y1ae{bottom:283.881333pt;}
.y124{bottom:285.006613pt;}
.y168{bottom:286.670667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yad{bottom:289.566667pt;}
.y1d9{bottom:290.709333pt;}
.ydf{bottom:294.170667pt;}
.y48{bottom:294.681333pt;}
.y7b{bottom:296.713333pt;}
.y1ad{bottom:301.894667pt;}
.y123{bottom:303.006541pt;}
.y20c{bottom:303.437333pt;}
.y167{bottom:304.684000pt;}
.yac{bottom:307.580000pt;}
.y10{bottom:309.452000pt;}
.yde{bottom:312.182667pt;}
.y47{bottom:312.693333pt;}
.y1d8{bottom:315.894667pt;}
.y1ac{bottom:319.906667pt;}
.y20b{bottom:320.652000pt;}
.y122{bottom:321.006469pt;}
.y7a{bottom:322.696000pt;}
.yab{bottom:325.592000pt;}
.y151{bottom:329.048173pt;}
.ydd{bottom:330.196000pt;}
.y46{bottom:330.706667pt;}
.y20a{bottom:337.868000pt;}
.y1ab{bottom:337.918667pt;}
.y121{bottom:339.006397pt;}
.y166{bottom:340.709333pt;}
.yaa{bottom:343.604000pt;}
.yf{bottom:343.809333pt;}
.y150{bottom:347.048101pt;}
.ydc{bottom:348.208000pt;}
.y45{bottom:348.718667pt;}
.y1d7{bottom:350.964000pt;}
.y79{bottom:353.646667pt;}
.y209{bottom:355.082667pt;}
.y1aa{bottom:355.932000pt;}
.y120{bottom:357.006325pt;}
.y165{bottom:358.721333pt;}
.ya9{bottom:361.617333pt;}
.ye{bottom:362.706666pt;}
.y14f{bottom:365.048029pt;}
.ydb{bottom:366.220000pt;}
.y44{bottom:366.732000pt;}
.y1d6{bottom:368.976000pt;}
.y78{bottom:371.660000pt;}
.y208{bottom:372.298667pt;}
.y1a9{bottom:373.944000pt;}
.y11f{bottom:375.006253pt;}
.y164{bottom:376.733333pt;}
.ya8{bottom:379.629333pt;}
.y14e{bottom:382.967797pt;}
.yda{bottom:384.233333pt;}
.y43{bottom:384.744000pt;}
.y1d5{bottom:386.989333pt;}
.y207{bottom:389.514667pt;}
.y77{bottom:389.672000pt;}
.y1a8{bottom:391.957333pt;}
.y11e{bottom:393.006181pt;}
.y163{bottom:394.746667pt;}
.ya7{bottom:397.642667pt;}
.y14d{bottom:400.967725pt;}
.yd9{bottom:402.245333pt;}
.y1d4{bottom:405.001333pt;}
.y206{bottom:406.729333pt;}
.y76{bottom:407.684000pt;}
.y1a7{bottom:409.969333pt;}
.y42{bottom:410.726667pt;}
.y11d{bottom:410.925949pt;}
.y162{bottom:412.758667pt;}
.ya6{bottom:415.654667pt;}
.y14c{bottom:418.967653pt;}
.yd8{bottom:420.258667pt;}
.y205{bottom:423.945333pt;}
.y75{bottom:425.697333pt;}
.y1a6{bottom:427.981333pt;}
.y11c{bottom:428.925877pt;}
.y161{bottom:430.772000pt;}
.y1d3{bottom:430.984000pt;}
.ya5{bottom:433.666667pt;}
.y14b{bottom:436.967581pt;}
.yd7{bottom:438.270667pt;}
.y204{bottom:441.160000pt;}
.y74{bottom:443.709333pt;}
.y1a5{bottom:445.994667pt;}
.y11b{bottom:446.925805pt;}
.yd{bottom:446.990669pt;}
.y160{bottom:448.784000pt;}
.ya4{bottom:451.680000pt;}
.y14a{bottom:454.967509pt;}
.yd6{bottom:456.282667pt;}
.y203{bottom:458.376000pt;}
.y73{bottom:461.722667pt;}
.y1d2{bottom:461.934667pt;}
.yc{bottom:462.990669pt;}
.y1a4{bottom:464.006667pt;}
.y11a{bottom:464.925733pt;}
.y15f{bottom:466.796000pt;}
.ya3{bottom:469.692000pt;}
.y149{bottom:472.967437pt;}
.yd5{bottom:474.296000pt;}
.y202{bottom:475.592000pt;}
.y41{bottom:478.652000pt;}
.yb{bottom:478.990666pt;}
.y72{bottom:479.734667pt;}
.y1a3{bottom:482.020000pt;}
.y1d1{bottom:483.414667pt;}
.ya2{bottom:487.704000pt;}
.y112{bottom:488.384000pt;}
.y148{bottom:490.967365pt;}
.yd4{bottom:492.308000pt;}
.y15e{bottom:492.778667pt;}
.y201{bottom:492.806667pt;}
.ya{bottom:494.990666pt;}
.y40{bottom:496.664000pt;}
.y1d0{bottom:496.924000pt;}
.y71{bottom:497.746667pt;}
.y119{bottom:498.444933pt;}
.y1a2{bottom:500.032000pt;}
.ya1{bottom:505.717333pt;}
.y111{bottom:506.397333pt;}
.y147{bottom:508.887133pt;}
.y200{bottom:510.022667pt;}
.yd3{bottom:510.321333pt;}
.y1cf{bottom:510.433333pt;}
.y70{bottom:515.760000pt;}
.y118{bottom:515.805333pt;}
.y1a1{bottom:518.044000pt;}
.ya0{bottom:523.729333pt;}
.y1ce{bottom:523.942667pt;}
.y110{bottom:524.409333pt;}
.y146{bottom:526.887061pt;}
.y1ff{bottom:527.237333pt;}
.yd2{bottom:528.333333pt;}
.y3f{bottom:530.617333pt;}
.y117{bottom:533.165733pt;}
.y6f{bottom:533.772000pt;}
.y1a0{bottom:536.057333pt;}
.y9f{bottom:541.742667pt;}
.y10f{bottom:542.421333pt;}
.y1fe{bottom:544.453333pt;}
.y145{bottom:544.886989pt;}
.y1cd{bottom:545.421333pt;}
.yd1{bottom:546.345333pt;}
.y3e{bottom:548.629333pt;}
.y6e{bottom:551.785333pt;}
.y19f{bottom:554.069333pt;}
.y116{bottom:554.925733pt;}
.y9e{bottom:559.754667pt;}
.y10e{bottom:560.434667pt;}
.y1fd{bottom:561.669333pt;}
.y144{bottom:562.886917pt;}
.yd0{bottom:564.358667pt;}
.y3d{bottom:566.642667pt;}
.y6d{bottom:569.797333pt;}
.y19e{bottom:572.082667pt;}
.y9{bottom:573.786667pt;}
.y1cc{bottom:574.872000pt;}
.y9d{bottom:577.766667pt;}
.y10d{bottom:578.446667pt;}
.y1fc{bottom:578.884000pt;}
.y143{bottom:580.886845pt;}
.ycf{bottom:582.370667pt;}
.y3c{bottom:584.654667pt;}
.y6c{bottom:587.809333pt;}
.y19d{bottom:590.094667pt;}
.y8{bottom:592.685334pt;}
.y1cb{bottom:592.884000pt;}
.y9c{bottom:595.780000pt;}
.y1fb{bottom:596.100000pt;}
.y10c{bottom:596.458667pt;}
.y142{bottom:598.886773pt;}
.yce{bottom:600.384000pt;}
.y3b{bottom:602.666667pt;}
.y6b{bottom:605.822667pt;}
.y19c{bottom:608.106667pt;}
.y1ca{bottom:610.896000pt;}
.y1fa{bottom:613.314667pt;}
.y9b{bottom:613.792000pt;}
.y10b{bottom:614.472000pt;}
.y141{bottom:616.886701pt;}
.ycd{bottom:618.396000pt;}
.y3a{bottom:620.680000pt;}
.y6a{bottom:623.834667pt;}
.y19b{bottom:626.120000pt;}
.y1c9{bottom:628.909333pt;}
.y1f9{bottom:630.530667pt;}
.y9a{bottom:631.805333pt;}
.y10a{bottom:632.484000pt;}
.y140{bottom:634.806469pt;}
.ycc{bottom:636.408000pt;}
.y39{bottom:638.692000pt;}
.y69{bottom:641.846667pt;}
.y19a{bottom:644.132000pt;}
.y7{bottom:645.598667pt;}
.y1c8{bottom:646.921333pt;}
.y1f8{bottom:647.746667pt;}
.y99{bottom:649.817333pt;}
.y109{bottom:650.497333pt;}
.y13f{bottom:652.806397pt;}
.ycb{bottom:654.421333pt;}
.y38{bottom:656.705333pt;}
.y68{bottom:659.860000pt;}
.y199{bottom:662.145333pt;}
.y1c7{bottom:664.934667pt;}
.y1f7{bottom:664.961333pt;}
.y98{bottom:667.829333pt;}
.y108{bottom:668.509333pt;}
.y3{bottom:668.977329pt;}
.y13e{bottom:670.806325pt;}
.yca{bottom:672.433333pt;}
.y37{bottom:674.717333pt;}
.y67{bottom:677.872000pt;}
.y1f6{bottom:682.177333pt;}
.y1c6{bottom:682.946667pt;}
.y97{bottom:685.842667pt;}
.y107{bottom:686.521333pt;}
.y13d{bottom:688.806253pt;}
.yc9{bottom:690.446667pt;}
.y36{bottom:692.729333pt;}
.y198{bottom:693.256000pt;}
.y66{bottom:695.885333pt;}
.y1f5{bottom:699.392000pt;}
.y1c5{bottom:700.958667pt;}
.y96{bottom:703.854667pt;}
.y13c{bottom:706.806181pt;}
.yc8{bottom:708.458667pt;}
.y197{bottom:710.352000pt;}
.y35{bottom:710.742667pt;}
.y65{bottom:713.897333pt;}
.y1f4{bottom:716.608000pt;}
.y106{bottom:717.633333pt;}
.y1c4{bottom:718.972000pt;}
.y95{bottom:721.868000pt;}
.y13b{bottom:724.806109pt;}
.y196{bottom:727.448000pt;}
.y34{bottom:728.754667pt;}
.y64{bottom:731.909333pt;}
.y1f3{bottom:733.824000pt;}
.y105{bottom:734.729333pt;}
.y1c3{bottom:736.984000pt;}
.y94{bottom:739.880000pt;}
.y13a{bottom:742.806037pt;}
.y195{bottom:744.544000pt;}
.y33{bottom:746.768000pt;}
.yc7{bottom:746.794667pt;}
.y63{bottom:749.922667pt;}
.y1f2{bottom:751.038667pt;}
.y104{bottom:751.825333pt;}
.y1c2{bottom:754.997333pt;}
.y93{bottom:757.892000pt;}
.yc6{bottom:759.414667pt;}
.y139{bottom:760.725805pt;}
.y194{bottom:761.640000pt;}
.yc5{bottom:763.272000pt;}
.y62{bottom:767.934667pt;}
.y1f1{bottom:768.254667pt;}
.ye9{bottom:771.762667pt;}
.y1c1{bottom:773.009333pt;}
.y30{bottom:774.065382pt;}
.y2f{bottom:774.746667pt;}
.y92{bottom:775.905333pt;}
.yc4{bottom:778.700800pt;}
.y138{bottom:778.725733pt;}
.y16a{bottom:781.577333pt;}
.y2{bottom:781.661334pt;}
.y1f0{bottom:785.469333pt;}
.y61{bottom:785.948000pt;}
.y1c0{bottom:791.021333pt;}
.y91{bottom:793.917333pt;}
.yc3{bottom:799.178240pt;}
.y1ef{bottom:802.685333pt;}
.y114{bottom:802.765733pt;}
.y60{bottom:803.960000pt;}
.y1bf{bottom:809.034667pt;}
.y136{bottom:811.925733pt;}
.y90{bottom:811.930667pt;}
.y2e{bottom:812.389333pt;}
.yc2{bottom:819.656960pt;}
.y1ee{bottom:819.901333pt;}
.y5f{bottom:821.972000pt;}
.y2d{bottom:824.189333pt;}
.y1be{bottom:827.046667pt;}
.y8f{bottom:829.942667pt;}
.yc1{bottom:833.989120pt;}
.y1ed{bottom:837.116000pt;}
.y5e{bottom:839.985333pt;}
.y2c{bottom:844.669333pt;}
.y1bd{bottom:845.060000pt;}
.y8e{bottom:847.954667pt;}
.yc0{bottom:848.321280pt;}
.y1ec{bottom:854.332000pt;}
.y5d{bottom:857.997333pt;}
.y1{bottom:859.312000pt;}
.y2b{bottom:860.241333pt;}
.ybf{bottom:862.653440pt;}
.y1bc{bottom:863.072000pt;}
.y8d{bottom:865.968000pt;}
.y1eb{bottom:871.546667pt;}
.y5c{bottom:876.010667pt;}
.y1bb{bottom:881.084000pt;}
.ybe{bottom:882.826240pt;}
.y8c{bottom:883.980000pt;}
.y1ea{bottom:888.762667pt;}
.ybd{bottom:889.840640pt;}
.y5b{bottom:894.022667pt;}
.y2a{bottom:898.178667pt;}
.y1ba{bottom:899.097333pt;}
.y8b{bottom:901.993333pt;}
.y1e9{bottom:905.978667pt;}
.y5a{bottom:912.034667pt;}
.y1b9{bottom:917.109333pt;}
.ybc{bottom:917.332480pt;}
.y8a{bottom:920.005333pt;}
.y1e8{bottom:923.193333pt;}
.y29{bottom:925.198667pt;}
.y59{bottom:930.048000pt;}
.ybb{bottom:931.664640pt;}
.y89{bottom:938.017333pt;}
.y1e7{bottom:940.409333pt;}
.y1b8{bottom:943.092000pt;}
.y58{bottom:948.060000pt;}
.yba{bottom:951.837440pt;}
.y28{bottom:952.217333pt;}
.y88{bottom:956.030667pt;}
.y1e6{bottom:957.624000pt;}
.yb9{bottom:958.851840pt;}
.y57{bottom:966.073333pt;}
.y87{bottom:974.042667pt;}
.y1e5{bottom:974.840000pt;}
.y27{bottom:977.906667pt;}
.y56{bottom:992.056000pt;}
.yb8{bottom:993.372000pt;}
.y23{bottom:1011.514667pt;}
.y55{bottom:1038.548000pt;}
.h29{height:5.897859pt;}
.h11{height:22.673858pt;}
.h1c{height:23.304670pt;}
.hf{height:27.188522pt;}
.h7{height:28.560000pt;}
.h13{height:29.433775pt;}
.h12{height:30.399505pt;}
.h1d{height:31.072763pt;}
.h16{height:31.157778pt;}
.h1f{height:31.192656pt;}
.h20{height:31.992188pt;}
.ha{height:32.246508pt;}
.h19{height:33.191461pt;}
.h1a{height:33.558725pt;}
.h2e{height:33.713664pt;}
.h24{height:34.574438pt;}
.h10{height:34.957005pt;}
.h23{height:35.039062pt;}
.h2d{height:35.052646pt;}
.h22{height:35.062500pt;}
.h28{height:35.179688pt;}
.h2c{height:37.937581pt;}
.h14{height:38.415786pt;}
.h15{height:38.840857pt;}
.hc{height:38.947124pt;}
.h21{height:39.010156pt;}
.h2b{height:39.036250pt;}
.h27{height:39.166719pt;}
.hb{height:39.846430pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h17{height:44.548522pt;}
.h9{height:45.272024pt;}
.he{height:48.486756pt;}
.h2{height:48.960000pt;}
.h18{height:61.243941pt;}
.h1b{height:61.611205pt;}
.hd{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h25{height:220.490667pt;}
.h2a{height:223.762667pt;}
.h1e{height:233.577333pt;}
.h26{height:289.844000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:185.925531pt;}
.w6{width:520.150667pt;}
.w9{width:521.458667pt;}
.w7{width:550.246400pt;}
.w8{width:552.864800pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x29{left:-36.626667pt;}
.x1b{left:-34.009333pt;}
.x20{left:-27.466933pt;}
.x24{left:-15.689867pt;}
.x2b{left:-8.306667pt;}
.x1d{left:-5.689333pt;}
.x0{left:0.000000pt;}
.x25{left:12.631375pt;}
.xb{left:26.021437pt;}
.x6{left:53.458976pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:100.852000pt;}
.x5{left:102.046667pt;}
.x8{left:109.606667pt;}
.xf{left:119.905760pt;}
.x1f{left:121.728267pt;}
.x9{left:129.929333pt;}
.x17{left:135.939040pt;}
.x1a{left:136.968000pt;}
.x16{left:140.242400pt;}
.x18{left:141.395680pt;}
.x15{left:144.545760pt;}
.x13{left:147.415520pt;}
.x12{left:150.285280pt;}
.x11{left:156.023520pt;}
.xe{left:158.936000pt;}
.x19{left:162.300640pt;}
.xc{left:167.704000pt;}
.x4{left:180.874667pt;}
.xd{left:182.276000pt;}
.x23{left:187.544000pt;}
.x31{left:200.550667pt;}
.x30{left:211.686667pt;}
.x32{left:223.704000pt;}
.x34{left:225.868000pt;}
.x33{left:237.561333pt;}
.x3{left:404.408000pt;}
.x1c{left:522.310667pt;}
.x2a{left:524.573333pt;}
.x21{left:528.853067pt;}
.x10{left:540.147680pt;}
.x27{left:544.560000pt;}
.x14{left:546.299360pt;}
.x1e{left:552.708009pt;}
.x26{left:556.707172pt;}
.x22{left:559.250409pt;}
.x28{left:564.468000pt;}
.x2e{left:589.304000pt;}
.x2c{left:592.656000pt;}
.x2f{left:596.556000pt;}
.xa{left:623.413317pt;}
.x2d{left:690.661333pt;}
}




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