
    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_4f4d2e50bf1e9ec405487e83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_2d8bf9ed396035e1712e4430.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_d77416ac9e2422efb68ffc1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_ac39790f27181622a75bd96d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_e8e92809a6559b3058dadb62.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_c3ccf70a16a6028345f0e316.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_318be9c46ea6780175db7a71.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_d102d1a942bc3ea47c1ba01f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2a1c57407afa5ad85a1fb953.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_a0e0c80e4e401c53ae436d46.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_e0e8477b991767063e21376a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_d4fea091bafd149f68863d76.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_fb7383ede8db3448e1bcce6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.870605;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_105891516ec6c941cfacf2db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_9ee7a44545ba3cd460e17a38.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_c11b164c9da15694d852a6f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_932f6564a2ae95db17babddc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_c22927a62d13a38e15c8b6e0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.870605;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_a14936f163644078be5e0e78.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;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_1de450609235b18741af6ae3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.914062;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_8286a54b6ee9d4ec1b7988e9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;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_9a018a0a889659fcd3f5dbfb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.870605;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_2447eecf1c791e5039157c9e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.914062;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_e6d851680fc83b7fef64cf5f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.914062;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_c062dfb3fa88fe6871ffb0d0.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675781;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_5cc7e089c88451350ad9367e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.680176;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_4fbae6b591b297261efa9a57.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.873535;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_6b69f01c9820bf34e332aee1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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_6905e262e3f5f44f56d35028.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.870605;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_2447eecf1c791e5039157c9e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.914062;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_e6d851680fc83b7fef64cf5f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.914062;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_c062dfb3fa88fe6871ffb0d0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.675781;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:ff21;src:url('chunks/assets/font_2b464fff1590831fd3ac35dc.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910156;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:ff22;src:url('chunks/assets/font_f55661e5fe6748372a37be68.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;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.000000,-0.247172,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247172,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247172,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.248693,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248693,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248693,0.250000,0.000000,0,0);}
.m2b{transform:matrix(0.000000,-0.250195,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250195,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250195,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250273,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250273,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250273,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250274,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250274,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250274,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250944,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250944,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250944,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.251125,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251125,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251125,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.251756,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251756,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251756,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.251880,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251880,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251880,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.255326,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255326,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255326,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244786,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248131,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249804,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249810,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);}
.m26{transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251308,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251312,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251314,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251316,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252869,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-7.432200px;}
.v3{vertical-align:-6.054720px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.065280px;}
.v1{vertical-align:18.199008px;}
.lsc{letter-spacing:-0.870912px;}
.lsd{letter-spacing:-0.677376px;}
.ls72{letter-spacing:-0.653242px;}
.ls89{letter-spacing:-0.649080px;}
.ls9c{letter-spacing:-0.648878px;}
.ls18{letter-spacing:-0.645408px;}
.ls6e{letter-spacing:-0.598805px;}
.ls66{letter-spacing:-0.597788px;}
.ls86{letter-spacing:-0.593974px;}
.ls99{letter-spacing:-0.593789px;}
.ls90{letter-spacing:-0.591228px;}
.ls5e{letter-spacing:-0.580840px;}
.ls6c{letter-spacing:-0.543444px;}
.ls80{letter-spacing:-0.539976px;}
.ls8d{letter-spacing:-0.536568px;}
.ls38{letter-spacing:-0.521169px;}
.ls21{letter-spacing:-0.501984px;}
.ls10{letter-spacing:-0.430272px;}
.ls4c{letter-spacing:-0.417312px;}
.ls15{letter-spacing:-0.298080px;}
.lsb{letter-spacing:-0.290304px;}
.lse{letter-spacing:-0.286848px;}
.ls4a{letter-spacing:-0.241755px;}
.ls6f{letter-spacing:-0.216212px;}
.ls13{letter-spacing:-0.215136px;}
.ls63{letter-spacing:-0.190205px;}
.ls84{letter-spacing:-0.188992px;}
.ls96{letter-spacing:-0.188933px;}
.ls71{letter-spacing:-0.185605px;}
.ls65{letter-spacing:-0.185324px;}
.ls5b{letter-spacing:-0.184813px;}
.ls85{letter-spacing:-0.184144px;}
.ls98{letter-spacing:-0.184086px;}
.ls5d{letter-spacing:-0.180072px;}
.ls83{letter-spacing:-0.162270px;}
.ls97{letter-spacing:-0.162220px;}
.ls70{letter-spacing:-0.154437px;}
.ls6a{letter-spacing:-0.135861px;}
.ls7d{letter-spacing:-0.134994px;}
.ls8a{letter-spacing:-0.134142px;}
.ls3c{letter-spacing:-0.123365px;}
.ls3b{letter-spacing:-0.123180px;}
.ls81{letter-spacing:-0.122762px;}
.ls93{letter-spacing:-0.121990px;}
.ls32{letter-spacing:-0.121423px;}
.ls31{letter-spacing:-0.121241px;}
.ls14{letter-spacing:-0.119232px;}
.ls69{letter-spacing:-0.108874px;}
.ls87{letter-spacing:-0.108180px;}
.ls9a{letter-spacing:-0.108146px;}
.ls8e{letter-spacing:-0.107496px;}
.ls67{letter-spacing:-0.104508px;}
.ls5f{letter-spacing:-0.101545px;}
.ls6b{letter-spacing:-0.092662px;}
.ls3d{letter-spacing:-0.092385px;}
.ls7e{letter-spacing:-0.092072px;}
.ls33{letter-spacing:-0.091971px;}
.ls8b{letter-spacing:-0.091492px;}
.ls34{letter-spacing:-0.090931px;}
.ls6d{letter-spacing:-0.081655px;}
.ls61{letter-spacing:-0.081517px;}
.ls88{letter-spacing:-0.081135px;}
.ls9b{letter-spacing:-0.081110px;}
.ls7f{letter-spacing:-0.080996px;}
.ls94{letter-spacing:-0.080971px;}
.ls8f{letter-spacing:-0.080622px;}
.ls8c{letter-spacing:-0.080485px;}
.ls59{letter-spacing:-0.079205px;}
.ls68{letter-spacing:-0.069672px;}
.ls60{letter-spacing:-0.067697px;}
.ls41{letter-spacing:-0.061638px;}
.ls40{letter-spacing:-0.061546px;}
.ls37{letter-spacing:-0.061474px;}
.ls36{letter-spacing:-0.061381px;}
.ls9d{letter-spacing:-0.061362px;}
.ls91{letter-spacing:-0.060995px;}
.ls62{letter-spacing:-0.054344px;}
.ls42{letter-spacing:-0.054234px;}
.ls82{letter-spacing:-0.053998px;}
.ls95{letter-spacing:-0.053981px;}
.ls64{letter-spacing:-0.053939px;}
.ls5a{letter-spacing:-0.052804px;}
.ls5c{letter-spacing:-0.052435px;}
.ls4b{letter-spacing:-0.041372px;}
.ls3f{letter-spacing:-0.034777px;}
.ls39{letter-spacing:-0.030691px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014880px;}
.ls52{letter-spacing:0.019641px;}
.ls4f{letter-spacing:0.020245px;}
.ls4{letter-spacing:0.024000px;}
.ls55{letter-spacing:0.030887px;}
.ls2e{letter-spacing:0.031529px;}
.ls3e{letter-spacing:0.034777px;}
.ls2{letter-spacing:0.038880px;}
.ls0{letter-spacing:0.048384px;}
.ls92{letter-spacing:0.060995px;}
.ls28{letter-spacing:0.061381px;}
.ls73{letter-spacing:0.061775px;}
.ls4d{letter-spacing:0.068079px;}
.ls78{letter-spacing:0.069196px;}
.ls3a{letter-spacing:0.069228px;}
.ls24{letter-spacing:0.069364px;}
.ls44{letter-spacing:0.069412px;}
.ls27{letter-spacing:0.069634px;}
.ls2b{letter-spacing:0.069871px;}
.ls7a{letter-spacing:0.070213px;}
.ls76{letter-spacing:0.070235px;}
.ls51{letter-spacing:0.070685px;}
.ls1f{letter-spacing:0.071712px;}
.ls43{letter-spacing:0.081212px;}
.ls23{letter-spacing:0.090931px;}
.ls9e{letter-spacing:0.092043px;}
.ls2a{letter-spacing:0.092385px;}
.ls35{letter-spacing:0.102553px;}
.ls79{letter-spacing:0.121990px;}
.ls7b{letter-spacing:0.122724px;}
.ls77{letter-spacing:0.122762px;}
.lsf{letter-spacing:0.143424px;}
.ls20{letter-spacing:0.145152px;}
.ls26{letter-spacing:0.153453px;}
.ls2d{letter-spacing:0.153864px;}
.ls1c{letter-spacing:0.164064px;}
.ls48{letter-spacing:0.210312px;}
.ls11{letter-spacing:0.215136px;}
.ls1{letter-spacing:0.215712px;}
.ls12{letter-spacing:0.286848px;}
.ls1a{letter-spacing:0.328128px;}
.ls45{letter-spacing:0.357696px;}
.ls9{letter-spacing:0.358560px;}
.ls17{letter-spacing:0.417312px;}
.ls30{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.430272px;}
.ls7c{letter-spacing:0.480000px;}
.ls46{letter-spacing:0.573696px;}
.ls57{letter-spacing:0.580512px;}
.ls16{letter-spacing:0.655776px;}
.ls74{letter-spacing:0.894240px;}
.ls75{letter-spacing:1.003968px;}
.ls1e{letter-spacing:1.075680px;}
.ls8{letter-spacing:1.936224px;}
.ls1b{letter-spacing:4.517856px;}
.ls19{letter-spacing:4.589568px;}
.ls22{letter-spacing:4.661280px;}
.ls6{letter-spacing:5.378400px;}
.ls50{letter-spacing:6.938356px;}
.ls5{letter-spacing:7.099488px;}
.ls25{letter-spacing:7.828038px;}
.ls56{letter-spacing:7.846524px;}
.ls2c{letter-spacing:7.925732px;}
.ls29{letter-spacing:7.927014px;}
.ls2f{letter-spacing:7.948038px;}
.ls4e{letter-spacing:8.416687px;}
.ls53{letter-spacing:8.662568px;}
.ls54{letter-spacing:8.663173px;}
.ls1d{letter-spacing:9.752832px;}
.ls58{letter-spacing:10.541664px;}
.ls47{letter-spacing:10.782361px;}
.ls9f{letter-spacing:17.497728px;}
.ls49{letter-spacing:1062.576000px;}
.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;}
}
.ws79{word-spacing:-41.331028px;}
.ws94{word-spacing:-27.109526px;}
.ws8c{word-spacing:-27.090683px;}
.wsbb{word-spacing:-26.936820px;}
.wsd2{word-spacing:-26.928454px;}
.wsb0{word-spacing:-26.917804px;}
.wscf{word-spacing:-26.909429px;}
.wsc5{word-spacing:-26.766504px;}
.wsc3{word-spacing:-26.747915px;}
.ws84{word-spacing:-26.322595px;}
.wsa0{word-spacing:-18.931968px;}
.ws74{word-spacing:-18.501696px;}
.ws22{word-spacing:-18.358272px;}
.wsd6{word-spacing:-18.286560px;}
.ws21{word-spacing:-18.214848px;}
.ws26{word-spacing:-18.143136px;}
.ws5{word-spacing:-18.071424px;}
.ws4{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.641152px;}
.ws3d{word-spacing:-17.497728px;}
.ws9f{word-spacing:-15.798240px;}
.ws25{word-spacing:-14.904000px;}
.ws23{word-spacing:-14.784768px;}
.ws24{word-spacing:-14.605920px;}
.ws3c{word-spacing:-12.241152px;}
.ws0{word-spacing:-12.096000px;}
.ws1{word-spacing:-11.418624px;}
.ws76{word-spacing:-10.946174px;}
.ws75{word-spacing:-10.927326px;}
.ws3{word-spacing:-9.720000px;}
.ws7a{word-spacing:-9.350162px;}
.ws9e{word-spacing:-8.639328px;}
.ws69{word-spacing:-7.843511px;}
.ws62{word-spacing:-7.824870px;}
.ws5a{word-spacing:-7.822764px;}
.ws52{word-spacing:-7.725674px;}
.wsb2{word-spacing:-7.672650px;}
.wsb3{word-spacing:-7.549888px;}
.wsc8{word-spacing:-7.502360px;}
.wsbe{word-spacing:-7.488506px;}
.wsd5{word-spacing:-7.486164px;}
.ws64{word-spacing:-7.108517px;}
.ws54{word-spacing:-7.089529px;}
.ws5c{word-spacing:-7.052055px;}
.ws98{word-spacing:-7.011440px;}
.ws59{word-spacing:-6.997457px;}
.ws61{word-spacing:-6.959670px;}
.ws4c{word-spacing:-6.941036px;}
.ws58{word-spacing:-6.905385px;}
.ws65{word-spacing:-6.903456px;}
.ws63{word-spacing:-6.893107px;}
.ws92{word-spacing:-6.887890px;}
.ws55{word-spacing:-6.885043px;}
.ws53{word-spacing:-6.874694px;}
.ws60{word-spacing:-6.867285px;}
.ws51{word-spacing:-6.850105px;}
.ws5d{word-spacing:-6.846746px;}
.wsaf{word-spacing:-6.844004px;}
.ws5b{word-spacing:-6.836490px;}
.ws99{word-spacing:-6.826115px;}
.ws9a{word-spacing:-6.805524px;}
.wsc2{word-spacing:-6.800920px;}
.ws8b{word-spacing:-6.795228px;}
.ws97{word-spacing:-6.764341px;}
.ws50{word-spacing:-6.759175px;}
.wsb9{word-spacing:-6.751932px;}
.wsce{word-spacing:-6.749820px;}
.ws4d{word-spacing:-6.738988px;}
.ws4b{word-spacing:-6.728864px;}
.ws83{word-spacing:-6.602640px;}
.ws68{word-spacing:-6.199213px;}
.ws95{word-spacing:-6.151358px;}
.ws8d{word-spacing:-6.140917px;}
.wsbc{word-spacing:-6.112170px;}
.wsd3{word-spacing:-6.110272px;}
.wsac{word-spacing:-6.101729px;}
.wsd0{word-spacing:-6.099830px;}
.ws87{word-spacing:-6.086573px;}
.wsc6{word-spacing:-6.073524px;}
.wsbf{word-spacing:-6.063218px;}
.wsb4{word-spacing:-6.047731px;}
.wsc9{word-spacing:-6.045850px;}
.ws8f{word-spacing:-6.042485px;}
.ws85{word-spacing:-5.966807px;}
.ws88{word-spacing:-5.950712px;}
.wsb5{word-spacing:-5.949900px;}
.wscb{word-spacing:-5.948052px;}
.ws7f{word-spacing:-5.914003px;}
.wsb6{word-spacing:-5.912737px;}
.wsca{word-spacing:-5.910898px;}
.ws80{word-spacing:-5.781994px;}
.ws93{word-spacing:-5.597473px;}
.wsb1{word-spacing:-5.561753px;}
.ws96{word-spacing:-5.552554px;}
.ws8e{word-spacing:-5.543129px;}
.wsc4{word-spacing:-5.526650px;}
.wsba{word-spacing:-5.507755px;}
.wsd1{word-spacing:-5.506042px;}
.ws9d{word-spacing:-5.498117px;}
.wsc7{word-spacing:-5.482296px;}
.wsbd{word-spacing:-5.463090px;}
.wsd4{word-spacing:-5.461393px;}
.ws86{word-spacing:-5.385967px;}
.ws32{word-spacing:-4.087584px;}
.ws33{word-spacing:-3.944160px;}
.ws17{word-spacing:-3.227040px;}
.wse7{word-spacing:-2.725056px;}
.ws34{word-spacing:-2.366496px;}
.ws3a{word-spacing:-1.505952px;}
.ws48{word-spacing:-1.362528px;}
.ws12{word-spacing:-1.003968px;}
.ws7{word-spacing:-0.870912px;}
.ws8{word-spacing:-0.725760px;}
.ws38{word-spacing:-0.655776px;}
.ws10{word-spacing:-0.645408px;}
.ws72{word-spacing:-0.596160px;}
.ws30{word-spacing:-0.430272px;}
.ws39{word-spacing:-0.417312px;}
.ws41{word-spacing:-0.358560px;}
.ws73{word-spacing:-0.357696px;}
.ws37{word-spacing:-0.238464px;}
.ws20{word-spacing:-0.215136px;}
.wsd9{word-spacing:-0.122762px;}
.wse5{word-spacing:-0.122724px;}
.wse0{word-spacing:-0.121990px;}
.ws6b{word-spacing:-0.102553px;}
.wse4{word-spacing:-0.092043px;}
.ws71{word-spacing:-0.069412px;}
.ws6d{word-spacing:-0.069228px;}
.wsaa{word-spacing:-0.061775px;}
.wsd8{word-spacing:-0.061381px;}
.wsdf{word-spacing:-0.060995px;}
.ws6e{word-spacing:-0.034777px;}
.ws6{word-spacing:0.000000px;}
.ws7b{word-spacing:0.041372px;}
.wsa2{word-spacing:0.052435px;}
.wsa6{word-spacing:0.053939px;}
.ws6f{word-spacing:0.054234px;}
.wsde{word-spacing:0.060995px;}
.wse3{word-spacing:0.061362px;}
.wsdb{word-spacing:0.061381px;}
.wsa4{word-spacing:0.067697px;}
.wsa8{word-spacing:0.069672px;}
.wsa1{word-spacing:0.079205px;}
.wsdc{word-spacing:0.080485px;}
.wsdd{word-spacing:0.080622px;}
.wse1{word-spacing:0.080971px;}
.wsd7{word-spacing:0.080996px;}
.wse2{word-spacing:0.081110px;}
.wsda{word-spacing:0.081135px;}
.wsa5{word-spacing:0.081517px;}
.wsa9{word-spacing:0.081655px;}
.ws6a{word-spacing:0.091971px;}
.wsa3{word-spacing:0.101545px;}
.wsa7{word-spacing:0.104508px;}
.ws70{word-spacing:0.108283px;}
.wsb{word-spacing:0.143424px;}
.ws7c{word-spacing:0.178848px;}
.ws49{word-spacing:0.215136px;}
.ws31{word-spacing:0.286848px;}
.ws9{word-spacing:0.290304px;}
.ws6c{word-spacing:0.521169px;}
.ws19{word-spacing:0.573696px;}
.ws27{word-spacing:0.596160px;}
.ws3b{word-spacing:0.645408px;}
.wsc{word-spacing:0.787968px;}
.wsa{word-spacing:0.870912px;}
.ws7d{word-spacing:0.894240px;}
.ws1a{word-spacing:1.003968px;}
.ws4a{word-spacing:1.434240px;}
.ws1b{word-spacing:1.505952px;}
.ws1c{word-spacing:1.864512px;}
.ws47{word-spacing:1.936224px;}
.ws2a{word-spacing:2.725056px;}
.ws29{word-spacing:2.868480px;}
.ws2c{word-spacing:3.513888px;}
.ws15{word-spacing:3.585600px;}
.ws2b{word-spacing:3.729024px;}
.ws2e{word-spacing:4.087584px;}
.ws3f{word-spacing:4.374432px;}
.ws2d{word-spacing:4.446144px;}
.ws3e{word-spacing:4.948128px;}
.wse{word-spacing:5.306688px;}
.ws2f{word-spacing:6.167232px;}
.ws35{word-spacing:6.382368px;}
.wsd{word-spacing:7.027776px;}
.ws43{word-spacing:7.816608px;}
.ws1e{word-spacing:7.888320px;}
.ws42{word-spacing:8.031744px;}
.ws36{word-spacing:9.681120px;}
.ws40{word-spacing:10.111392px;}
.ws45{word-spacing:10.541664px;}
.ws44{word-spacing:10.828512px;}
.ws11{word-spacing:11.402208px;}
.ws14{word-spacing:12.262752px;}
.ws46{word-spacing:13.123296px;}
.wsf{word-spacing:13.983840px;}
.ws1f{word-spacing:14.844384px;}
.ws7e{word-spacing:15.704928px;}
.ws1d{word-spacing:16.565472px;}
.wsab{word-spacing:17.426016px;}
.ws18{word-spacing:19.147104px;}
.ws13{word-spacing:21.728736px;}
.ws16{word-spacing:23.449824px;}
.wse6{word-spacing:26.031456px;}
.ws28{word-spacing:26.963712px;}
.ws4f{word-spacing:46.249373px;}
.ws57{word-spacing:46.522907px;}
.ws67{word-spacing:46.782419px;}
.ws5f{word-spacing:47.954038px;}
.ws9c{word-spacing:54.992240px;}
.ws82{word-spacing:55.163119px;}
.ws91{word-spacing:55.625564px;}
.wsc1{word-spacing:56.068328px;}
.ws5e{word-spacing:56.306794px;}
.wscd{word-spacing:56.757765px;}
.ws8a{word-spacing:56.772527px;}
.wsb8{word-spacing:56.775429px;}
.wsae{word-spacing:56.847305px;}
.ws81{word-spacing:61.510901px;}
.ws9b{word-spacing:61.544425px;}
.ws4e{word-spacing:62.162228px;}
.ws90{word-spacing:62.205527px;}
.wsc0{word-spacing:62.564440px;}
.ws56{word-spacing:62.696853px;}
.ws66{word-spacing:62.999685px;}
.wsad{word-spacing:63.366057px;}
.wscc{word-spacing:70.091023px;}
.wsb7{word-spacing:70.112836px;}
.ws89{word-spacing:70.195594px;}
.ws78{word-spacing:238.754841px;}
.ws77{word-spacing:250.462347px;}
._0{margin-left:-480.168000px;}
._1{margin-left:-3.960000px;}
._5{margin-left:-2.225664px;}
._2{margin-left:-1.112832px;}
._3{width:1.016064px;}
._4{width:2.128896px;}
._8{width:3.324672px;}
._7{width:4.606848px;}
._b{width:5.830272px;}
._c{width:7.278336px;}
._e{width:11.772000px;}
._12{width:15.346368px;}
._13{width:16.553376px;}
._6{width:25.937280px;}
._d{width:31.768416px;}
._9{width:38.779776px;}
._10{width:52.185595px;}
._a{width:54.214272px;}
._f{width:62.164847px;}
._15{width:69.353283px;}
._11{width:71.138511px;}
._14{width:74.082334px;}
._16{width:75.208862px;}
._17{width:76.263586px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:6.048000px;}
.fs1a{font-size:18.046800px;}
.fs25{font-size:20.083200px;}
.fsd{font-size:20.282400px;}
.fs32{font-size:20.407800px;}
.fs37{font-size:20.530800px;}
.fs11{font-size:20.537400px;}
.fs15{font-size:20.607000px;}
.fs2a{font-size:20.669400px;}
.fs9{font-size:24.192000px;}
.fs23{font-size:26.217600px;}
.fs22{font-size:26.401800px;}
.fs30{font-size:26.828400px;}
.fs33{font-size:26.874000px;}
.fs28{font-size:26.969400px;}
.fs34{font-size:26.990400px;}
.fs2e{font-size:26.998800px;}
.fs35{font-size:27.036600px;}
.fs2f{font-size:27.045000px;}
.fs1b{font-size:27.070800px;}
.fs19{font-size:27.117000px;}
.fs27{font-size:27.172200px;}
.fs2c{font-size:27.218400px;}
.fs24{font-size:30.012000px;}
.fsa{font-size:30.310200px;}
.fsb{font-size:30.355800px;}
.fs31{font-size:30.497400px;}
.fsc{font-size:30.657000px;}
.fs36{font-size:30.681000px;}
.fsf{font-size:30.690600px;}
.fs10{font-size:30.736800px;}
.fs17{font-size:30.772800px;}
.fs13{font-size:30.795000px;}
.fs18{font-size:30.819000px;}
.fs14{font-size:30.841200px;}
.fs29{font-size:30.887400px;}
.fs2d{font-size:30.934200px;}
.fs26{font-size:33.848400px;}
.fse{font-size:34.184400px;}
.fs12{font-size:34.614000px;}
.fs1c{font-size:34.705800px;}
.fs16{font-size:34.777200px;}
.fs2b{font-size:34.836000px;}
.fs21{font-size:36.288000px;}
.fs5{font-size:38.880000px;}
.fs20{font-size:41.372400px;}
.fs1f{font-size:47.342400px;}
.fs1d{font-size:48.351000px;}
.fs1{font-size:48.384000px;}
.fs1e{font-size:48.434400px;}
.fs8{font-size:59.616000px;}
.fs4{font-size:65.664000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:71.712000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.808000px;}
.yfe{bottom:-80.997852px;}
.y154{bottom:-76.745352px;}
.y5c{bottom:-68.241852px;}
.yfd{bottom:-60.219300px;}
.y37{bottom:-59.736852px;}
.yd7{bottom:-57.611352px;}
.y153{bottom:-55.966800px;}
.y5b{bottom:-47.463300px;}
.y36{bottom:-38.958300px;}
.yd6{bottom:-36.832800px;}
.ye4{bottom:-5.601300px;}
.y0{bottom:0.000000px;}
.y10b{bottom:0.857400px;}
.y98{bottom:0.866550px;}
.yce{bottom:0.867600px;}
.y184{bottom:0.871050px;}
.yab{bottom:0.876450px;}
.y162{bottom:0.876750px;}
.y199{bottom:0.877050px;}
.ybc{bottom:0.880500px;}
.ycd{bottom:2.487450px;}
.y10a{bottom:2.662950px;}
.y97{bottom:2.689650px;}
.y183{bottom:2.705550px;}
.yaa{bottom:2.722500px;}
.y161{bottom:2.722650px;}
.ybb{bottom:2.732850px;}
.y11d{bottom:2.740950px;}
.y12d{bottom:2.741100px;}
.y9c{bottom:7.249200px;}
.ycb{bottom:15.930300px;}
.y108{bottom:18.187950px;}
.y181{bottom:18.481650px;}
.y197{bottom:18.593700px;}
.y15f{bottom:18.598800px;}
.y95{bottom:18.608100px;}
.y11b{bottom:18.718950px;}
.y12c{bottom:18.719100px;}
.yb9{bottom:18.917400px;}
.ya8{bottom:18.921600px;}
.ye2{bottom:21.316050px;}
.y33{bottom:21.400350px;}
.yc2{bottom:25.960200px;}
.y101{bottom:26.751600px;}
.y178{bottom:27.183600px;}
.y136{bottom:27.242250px;}
.y18e{bottom:27.336750px;}
.y156{bottom:27.344550px;}
.y114{bottom:27.532500px;}
.y8c{bottom:28.487250px;}
.y9f{bottom:28.924950px;}
.yb0{bottom:28.954800px;}
.yd9{bottom:37.080000px;}
.yc3{bottom:49.572900px;}
.y8d{bottom:51.233550px;}
.y179{bottom:51.636750px;}
.y18f{bottom:51.707250px;}
.y157{bottom:51.780450px;}
.ya0{bottom:52.001250px;}
.y16b{bottom:52.083300px;}
.yb1{bottom:52.120950px;}
.y102{bottom:58.920600px;}
.y137{bottom:59.846550px;}
.y115{bottom:60.640050px;}
.y126{bottom:60.882000px;}
.yc4{bottom:73.172850px;}
.y8e{bottom:73.975500px;}
.ya1{bottom:75.077100px;}
.yb2{bottom:75.299100px;}
.y190{bottom:76.068600px;}
.y17a{bottom:76.095750px;}
.y158{bottom:76.207050px;}
.y16c{bottom:76.807950px;}
.yda{bottom:81.485100px;}
.y103{bottom:91.085850px;}
.y138{bottom:92.442300px;}
.y116{bottom:93.743700px;}
.y127{bottom:94.217850px;}
.y8f{bottom:96.717600px;}
.yc5{bottom:96.782550px;}
.ya2{bottom:98.152950px;}
.yb3{bottom:98.462850px;}
.y191{bottom:100.429950px;}
.y17b{bottom:100.549800px;}
.y159{bottom:100.643400px;}
.y16d{bottom:101.547150px;}
.ya9{bottom:107.647650px;}
.ycc{bottom:107.681250px;}
.y109{bottom:107.751450px;}
.y96{bottom:108.435150px;}
.y182{bottom:109.492650px;}
.y198{bottom:110.152500px;}
.y160{bottom:110.186250px;}
.y11c{bottom:110.895450px;}
.yba{bottom:111.395400px;}
.y90{bottom:119.464350px;}
.yc6{bottom:120.382650px;}
.ya3{bottom:121.228650px;}
.yb4{bottom:121.641000px;}
.y104{bottom:123.251100px;}
.y192{bottom:124.791450px;}
.y17c{bottom:125.004000px;}
.y139{bottom:125.047500px;}
.y15a{bottom:125.070150px;}
.ydb{bottom:125.871000px;}
.y16e{bottom:126.281550px;}
.y117{bottom:126.847350px;}
.y128{bottom:127.568250px;}
.yed{bottom:132.326850px;}
.y91{bottom:142.206300px;}
.yc7{bottom:143.997150px;}
.ya4{bottom:144.314100px;}
.yb5{bottom:144.804750px;}
.yd5{bottom:146.692500px;}
.y35{bottom:148.818000px;}
.y193{bottom:149.162400px;}
.y17d{bottom:149.458050px;}
.y15b{bottom:149.506500px;}
.y16f{bottom:151.006350px;}
.y105{bottom:155.421150px;}
.y5a{bottom:157.323000px;}
.y13a{bottom:157.657650px;}
.y118{bottom:159.955800px;}
.y129{bottom:160.918650px;}
.y1a0{bottom:160.950750px;}
.y112{bottom:161.014500px;}
.y18b{bottom:162.542400px;}
.y19f{bottom:162.796200px;}
.y169{bottom:163.064250px;}
.y18a{bottom:164.376750px;}
.y168{bottom:164.910300px;}
.y92{bottom:164.953050px;}
.y142{bottom:165.273600px;}
.y124{bottom:165.713850px;}
.y152{bottom:165.826500px;}
.ya5{bottom:167.389950px;}
.yc8{bottom:167.597250px;}
.yb6{bottom:167.973300px;}
.y134{bottom:168.302400px;}
.yfc{bottom:170.079000px;}
.ydc{bottom:170.274300px;}
.y194{bottom:173.523750px;}
.y17e{bottom:173.912250px;}
.y15c{bottom:173.933100px;}
.y170{bottom:175.745550px;}
.y110{bottom:176.722050px;}
.y19d{bottom:179.670600px;}
.y141{bottom:179.846100px;}
.y188{bottom:180.027000px;}
.y166{bottom:180.567450px;}
.y176{bottom:181.235700px;}
.y122{bottom:181.878150px;}
.y132{bottom:183.769950px;}
.y10f{bottom:186.110250px;}
.y106{bottom:187.586400px;}
.y93{bottom:187.685400px;}
.ye3{bottom:188.343750px;}
.y140{bottom:189.319500px;}
.y13b{bottom:190.248450px;}
.ya6{bottom:190.465800px;}
.yb7{bottom:191.151600px;}
.yc9{bottom:191.206950px;}
.y121{bottom:191.540250px;}
.y19c{bottom:191.757600px;}
.y59{bottom:191.938380px;}
.y32{bottom:191.947668px;}
.y187{bottom:192.041550px;}
.y165{bottom:192.417750px;}
.y119{bottom:193.059450px;}
.y131{bottom:193.340100px;}
.y175{bottom:193.432200px;}
.y9a{bottom:193.781550px;}
.y12a{bottom:194.269200px;}
.ybe{bottom:195.454350px;}
.y10e{bottom:195.507900px;}
.yfb{bottom:195.609876px;}
.y7b{bottom:196.064124px;}
.y195{bottom:197.885250px;}
.yd0{bottom:198.345750px;}
.y15d{bottom:198.369450px;}
.y17f{bottom:198.371100px;}
.yad{bottom:198.417300px;}
.y13f{bottom:198.797850px;}
.yd4{bottom:199.927404px;}
.y171{bottom:200.470350px;}
.yae{bottom:201.152700px;}
.y120{bottom:201.211950px;}
.ybf{bottom:202.786500px;}
.y130{bottom:202.905450px;}
.yd2{bottom:203.793300px;}
.y19b{bottom:203.835000px;}
.y186{bottom:204.046350px;}
.y164{bottom:204.253800px;}
.y10d{bottom:204.896100px;}
.y99{bottom:204.910500px;}
.y174{bottom:205.638300px;}
.ybd{bottom:207.031350px;}
.yac{bottom:207.541800px;}
.y13e{bottom:208.261500px;}
.ycf{bottom:210.377100px;}
.y94{bottom:210.427350px;}
.y11f{bottom:210.874050px;}
.y58{bottom:212.465940px;}
.y12f{bottom:212.475750px;}
.y31{bottom:212.672436px;}
.ya7{bottom:213.541500px;}
.y10c{bottom:214.293600px;}
.yb8{bottom:214.315350px;}
.ydd{bottom:214.660200px;}
.yca{bottom:214.806900px;}
.y19a{bottom:215.912400px;}
.y185{bottom:216.046500px;}
.y163{bottom:216.094650px;}
.y7a{bottom:216.788892px;}
.yd3{bottom:217.424700px;}
.y13d{bottom:217.734900px;}
.y173{bottom:217.834800px;}
.y107{bottom:219.756300px;}
.y11e{bottom:220.545900px;}
.y12e{bottom:222.045750px;}
.y196{bottom:222.256200px;}
.y15e{bottom:222.796200px;}
.y180{bottom:222.825300px;}
.y13c{bottom:222.858750px;}
.y172{bottom:225.209550px;}
.y11a{bottom:226.168050px;}
.y1b3{bottom:226.965084px;}
.y12b{bottom:227.619600px;}
.y57{bottom:233.190708px;}
.y30{bottom:233.199996px;}
.y79{bottom:237.513660px;}
.yc0{bottom:239.894700px;}
.yaf{bottom:242.038500px;}
.yd1{bottom:242.445000px;}
.yc1{bottom:242.503500px;}
.y1b2{bottom:247.689852px;}
.y2f{bottom:253.942692px;}
.y78{bottom:258.256356px;}
.yde{bottom:259.063500px;}
.y56{bottom:262.574700px;}
.y1b1{bottom:268.432548px;}
.y2e{bottom:274.667460px;}
.y77{bottom:278.783916px;}
.y1b0{bottom:289.157316px;}
.y151{bottom:291.509700px;}
.yec{bottom:294.743550px;}
.y2d{bottom:295.410156px;}
.y55{bottom:297.569700px;}
.y76{bottom:299.508684px;}
.ydf{bottom:303.466800px;}
.yeb{bottom:307.724550px;}
.y1af{bottom:309.684876px;}
.y2c{bottom:316.170780px;}
.y75{bottom:320.287236px;}
.yea{bottom:320.688150px;}
.y54{bottom:320.709372px;}
.y150{bottom:327.640500px;}
.y1ae{bottom:330.463428px;}
.ye9{bottom:333.669000px;}
.y2b{bottom:336.913476px;}
.yfa{bottom:336.914700px;}
.y74{bottom:341.012004px;}
.y53{bottom:343.169700px;}
.ye8{bottom:346.623900px;}
.ye0{bottom:347.852850px;}
.y14f{bottom:348.365268px;}
.y1ad{bottom:351.188196px;}
.y2a{bottom:357.441036px;}
.ye7{bottom:359.604750px;}
.y73{bottom:361.754700px;}
.y14e{bottom:368.892828px;}
.y1ac{bottom:371.930892px;}
.ye6{bottom:372.568350px;}
.yf9{bottom:372.571380px;}
.y29{bottom:378.165804px;}
.ye5{bottom:385.549200px;}
.y14d{bottom:389.617596px;}
.ye1{bottom:392.256000px;}
.y1ab{bottom:392.655660px;}
.yf8{bottom:393.296148px;}
.y72{bottom:399.759468px;}
.y28{bottom:407.549796px;}
.y14c{bottom:410.360292px;}
.y1aa{bottom:413.380428px;}
.yf7{bottom:414.038844px;}
.y71{bottom:422.234700px;}
.y27{bottom:428.489700px;}
.y14b{bottom:431.085060px;}
.y1a9{bottom:433.907988px;}
.yf6{bottom:434.763612px;}
.y26{bottom:445.349700px;}
.y25{bottom:450.980988px;}
.y14a{bottom:451.827756px;}
.y1a8{bottom:454.650684px;}
.yf5{bottom:455.488380px;}
.y24{bottom:471.705756px;}
.y149{bottom:472.552524px;}
.y1a7{bottom:475.375452px;}
.yf4{bottom:476.231076px;}
.y9d{bottom:482.489700px;}
.y9e{bottom:484.582500px;}
.y8b{bottom:485.068500px;}
.y23{bottom:492.448452px;}
.y148{bottom:493.080084px;}
.y1a6{bottom:496.118148px;}
.yf3{bottom:496.758636px;}
.y22{bottom:513.173220px;}
.y147{bottom:513.804852px;}
.y1a5{bottom:516.842916px;}
.yf2{bottom:526.124700px;}
.y21{bottom:533.951772px;}
.y146{bottom:543.224700px;}
.y1a4{bottom:546.029700px;}
.y20{bottom:554.479332px;}
.yf1{bottom:561.149700px;}
.y1f{bottom:575.204100px;}
.y145{bottom:578.219700px;}
.y1a3{bottom:581.249700px;}
.yf0{bottom:584.042172px;}
.y52{bottom:591.433572px;}
.y1e{bottom:595.946796px;}
.y144{bottom:601.097172px;}
.yef{bottom:601.539468px;}
.y1a2{bottom:604.142076px;}
.y51{bottom:612.176268px;}
.y1d{bottom:616.671564px;}
.y143{bottom:618.609372px;}
.y1a1{bottom:621.415812px;}
.yee{bottom:624.014700px;}
.yd8{bottom:624.030000px;}
.y50{bottom:632.901036px;}
.y1c{bottom:637.414260px;}
.y135{bottom:641.069700px;}
.y133{bottom:643.554000px;}
.y125{bottom:643.612500px;}
.y18c{bottom:644.099700px;}
.y189{bottom:646.599000px;}
.y177{bottom:646.656000px;}
.y19e{bottom:646.668000px;}
.y18d{bottom:646.725000px;}
.y4f{bottom:653.643732px;}
.y1b{bottom:658.139028px;}
.y70{bottom:666.154692px;}
.y4e{bottom:674.368500px;}
.y9b{bottom:674.791500px;}
.y1a{bottom:678.666588px;}
.y6f{bottom:686.879460px;}
.y4d{bottom:694.896060px;}
.y19{bottom:699.391356px;}
.y6e{bottom:707.622156px;}
.y4c{bottom:715.620828px;}
.y18{bottom:720.134052px;}
.y6d{bottom:728.346924px;}
.y8a{bottom:728.987364px;}
.y4b{bottom:736.363524px;}
.y17{bottom:740.912604px;}
.y6c{bottom:749.125476px;}
.y89{bottom:749.765916px;}
.y4a{bottom:757.142076px;}
.y16{bottom:761.637372px;}
.y6b{bottom:769.653036px;}
.y88{bottom:770.490684px;}
.y49{bottom:777.866844px;}
.y15{bottom:782.164932px;}
.y6a{bottom:790.377804px;}
.y87{bottom:791.018244px;}
.y48{bottom:798.394404px;}
.y14{bottom:802.889700px;}
.y69{bottom:811.120500px;}
.y86{bottom:811.760940px;}
.y47{bottom:819.119172px;}
.y13{bottom:823.179372px;}
.y68{bottom:831.845268px;}
.y85{bottom:832.485708px;}
.y46{bottom:839.861868px;}
.y12{bottom:842.189100px;}
.y67{bottom:852.570036px;}
.y45{bottom:860.586636px;}
.y11{bottom:861.198828px;}
.y84{bottom:861.869700px;}
.y66{bottom:873.312732px;}
.y10{bottom:880.224972px;}
.y44{bottom:881.329332px;}
.y65{bottom:893.840292px;}
.y83{bottom:898.154700px;}
.yf{bottom:899.214948px;}
.y43{bottom:902.054100px;}
.yff{bottom:902.684700px;}
.y16a{bottom:903.989700px;}
.y111{bottom:905.085000px;}
.y100{bottom:905.140500px;}
.y123{bottom:905.154000px;}
.y113{bottom:905.212500px;}
.y167{bottom:906.468000px;}
.y155{bottom:906.526500px;}
.y82{bottom:907.874052px;}
.y64{bottom:914.565060px;}
.ye{bottom:918.011268px;}
.y42{bottom:922.581660px;}
.y81{bottom:928.401612px;}
.y63{bottom:935.307756px;}
.yd{bottom:937.020996px;}
.y41{bottom:943.306428px;}
.y80{bottom:949.180164px;}
.yc{bottom:956.063556px;}
.y62{bottom:956.068380px;}
.y40{bottom:964.084980px;}
.y7f{bottom:969.904932px;}
.yb{bottom:975.089700px;}
.y61{bottom:976.811076px;}
.y3f{bottom:984.827676px;}
.y7e{bottom:990.629700px;}
.y60{bottom:997.535844px;}
.y3e{bottom:1005.552444px;}
.ya{bottom:1011.809700px;}
.y7d{bottom:1024.981188px;}
.y3d{bottom:1026.277212px;}
.y5f{bottom:1026.704700px;}
.y3c{bottom:1046.804772px;}
.y9{bottom:1051.099668px;}
.y5e{bottom:1061.909700px;}
.y5d{bottom:1067.539932px;}
.y3b{bottom:1067.547468px;}
.y8{bottom:1075.529700px;}
.y3a{bottom:1088.272236px;}
.y7{bottom:1098.214596px;}
.y39{bottom:1109.014932px;}
.y6{bottom:1112.028228px;}
.y5{bottom:1125.853956px;}
.y38{bottom:1129.739700px;}
.y7c{bottom:1132.334700px;}
.y4{bottom:1139.461956px;}
.y3{bottom:1153.287684px;}
.y34{bottom:1163.909700px;}
.y2{bottom:1167.149700px;}
.y1{bottom:1249.730100px;}
.h3e{height:-44.028000px;}
.h55{height:-39.775500px;}
.h12{height:-31.272000px;}
.hd{height:-22.767000px;}
.h34{height:-20.641500px;}
.h9{height:5.023266px;}
.hf{height:5.185688px;}
.h2e{height:13.297178px;}
.h43{height:14.797631px;}
.h1b{height:14.944405px;}
.h5f{height:15.036802px;}
.h68{height:15.127430px;}
.h22{height:15.132293px;}
.h28{height:15.183576px;}
.h63{height:17.498094px;}
.h6b{height:17.603557px;}
.h5a{height:17.609216px;}
.h40{height:18.293044px;}
.h5d{height:18.588623px;}
.h60{height:18.620218px;}
.h65{height:18.700868px;}
.h57{height:18.706688px;}
.h66{height:18.732879px;}
.h5b{height:18.738699px;}
.h2f{height:18.756575px;}
.h47{height:18.826832px;}
.h4d{height:18.858843px;}
.h41{height:19.317558px;}
.h48{height:19.871496px;}
.h2d{height:19.980250px;}
.h15{height:20.093062px;}
.h1c{height:20.338500px;}
.h17{height:21.001061px;}
.h18{height:21.032656px;}
.h1f{height:21.264630px;}
.h20{height:21.296640px;}
.h2b{height:21.321584px;}
.h25{height:21.336965px;}
.h2c{height:21.353594px;}
.h26{height:21.368976px;}
.h4f{height:21.400987px;}
.h50{height:21.433413px;}
.h42{height:22.113334px;}
.h1a{height:22.333053px;}
.h5e{height:22.470985px;}
.h19{height:22.588581px;}
.h67{height:22.606264px;}
.h21{height:22.613338px;}
.h27{height:22.690261px;}
.h49{height:22.758343px;}
.h1d{height:25.187627px;}
.h52{height:25.292075px;}
.h23{height:25.504163px;}
.h31{height:25.571803px;}
.h29{height:25.624412px;}
.h62{height:26.149138px;}
.h6a{height:26.306561px;}
.h59{height:26.314792px;}
.h51{height:26.483532px;}
.h3a{height:28.665740px;}
.h45{height:29.022359px;}
.h4b{height:29.869148px;}
.h3c{height:31.114125px;}
.h36{height:33.501010px;}
.h37{height:33.558796px;}
.h38{height:34.882657px;}
.h39{height:35.625810px;}
.h3{height:40.186125px;}
.hb{height:49.515047px;}
.h53{height:49.565159px;}
.h13{height:49.792219px;}
.he{height:51.116062px;}
.h32{height:51.145246px;}
.h6{height:54.538312px;}
.h7{height:54.617321px;}
.h14{height:59.531434px;}
.h8{height:59.561578px;}
.h10{height:59.566858px;}
.ha{height:60.328125px;}
.h5{height:61.487438px;}
.h2{height:61.910156px;}
.h4{height:71.858812px;}
.h3f{height:232.200000px;}
.h44{height:232.255500px;}
.h16{height:234.504000px;}
.h5c{height:235.951500px;}
.h61{height:236.008500px;}
.h64{height:237.376500px;}
.h69{height:237.433500px;}
.h56{height:237.450000px;}
.h58{height:237.508500px;}
.h1e{height:237.969000px;}
.h2a{height:238.083000px;}
.h30{height:238.141500px;}
.h24{height:238.777500px;}
.h46{height:238.972500px;}
.h4c{height:238.974000px;}
.h4a{height:239.031000px;}
.h4e{height:239.032500px;}
.h3b{height:391.681500px;}
.h35{height:417.472500px;}
.h3d{height:1092.756000px;}
.h54{height:1097.007000px;}
.h11{height:1105.512000px;}
.hc{height:1114.015500px;}
.h33{height:1116.142500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:9.072000px;}
.wa{width:42.706500px;}
.w5{width:166.885500px;}
.wb{width:317.578500px;}
.wc{width:317.635500px;}
.w4{width:326.683500px;}
.wd{width:326.685000px;}
.w6{width:326.742000px;}
.w8{width:326.799000px;}
.w7{width:326.800500px;}
.w9{width:577.381500px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.044350px;}
.x33{left:13.482300px;}
.x4e{left:15.652500px;}
.x26{left:16.826550px;}
.x49{left:18.059850px;}
.x17{left:19.223850px;}
.x41{left:21.943800px;}
.x25{left:24.617700px;}
.x4d{left:25.875450px;}
.x16{left:27.015000px;}
.x40{left:28.755300px;}
.x4a{left:35.370750px;}
.x27{left:36.615450px;}
.x18{left:39.012750px;}
.x43{left:41.652000px;}
.x4f{left:47.206800px;}
.x4b{left:48.463500px;}
.x2a{left:49.606500px;}
.x24{left:51.104700px;}
.x2f{left:52.679850px;}
.x50{left:54.006750px;}
.x1f{left:55.527600px;}
.x42{left:56.771250px;}
.x32{left:58.160400px;}
.x3e{left:59.172450px;}
.x44{left:63.249450px;}
.x45{left:75.514350px;}
.x46{left:92.571750px;}
.x5{left:106.308000px;}
.x15{left:110.685000px;}
.x47{left:112.570656px;}
.x3b{left:120.306000px;}
.x30{left:122.076000px;}
.xb{left:127.696104px;}
.x52{left:133.074504px;}
.x53{left:138.273624px;}
.x12{left:148.647768px;}
.x28{left:151.441950px;}
.x8{left:154.471272px;}
.x6{left:157.703256px;}
.x1a{left:160.249200px;}
.x1b{left:164.571150px;}
.x22{left:168.408150px;}
.x1c{left:170.449050px;}
.x2b{left:171.563250px;}
.x3c{left:173.056500px;}
.x1d{left:174.771000px;}
.x23{left:178.617600px;}
.x2c{left:183.621600px;}
.x2d{left:187.367250px;}
.x36{left:230.584500px;}
.x31{left:239.385384px;}
.x1e{left:243.332100px;}
.x29{left:245.051250px;}
.x2e{left:251.548650px;}
.x10{left:253.434192px;}
.x39{left:257.325000px;}
.x48{left:261.208248px;}
.x34{left:289.667100px;}
.x7{left:296.640000px;}
.x51{left:312.630912px;}
.x38{left:322.125888px;}
.x13{left:328.830000px;}
.xd{left:354.750000px;}
.x9{left:357.767016px;}
.x1{left:360.360000px;}
.xc{left:430.722000px;}
.x20{left:439.665000px;}
.x4c{left:440.970000px;}
.xe{left:442.050000px;}
.xa{left:446.577576px;}
.x3d{left:453.207000px;}
.x21{left:455.157000px;}
.x3{left:460.164096px;}
.x35{left:483.003150px;}
.x14{left:679.923528px;}
.x2{left:695.890944px;}
.x37{left:739.110000px;}
.x3a{left:760.513848px;}
.x3f{left:782.310000px;}
.x11{left:784.050000px;}
.x4{left:786.828672px;}
.xf{left:788.145000px;}
@media print{
.v4{vertical-align:-6.606400pt;}
.v3{vertical-align:-5.381973pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.391360pt;}
.v1{vertical-align:16.176896pt;}
.lsc{letter-spacing:-0.774144pt;}
.lsd{letter-spacing:-0.602112pt;}
.ls72{letter-spacing:-0.580659pt;}
.ls89{letter-spacing:-0.576960pt;}
.ls9c{letter-spacing:-0.576781pt;}
.ls18{letter-spacing:-0.573696pt;}
.ls6e{letter-spacing:-0.532271pt;}
.ls66{letter-spacing:-0.531367pt;}
.ls86{letter-spacing:-0.527977pt;}
.ls99{letter-spacing:-0.527812pt;}
.ls90{letter-spacing:-0.525536pt;}
.ls5e{letter-spacing:-0.516302pt;}
.ls6c{letter-spacing:-0.483061pt;}
.ls80{letter-spacing:-0.479979pt;}
.ls8d{letter-spacing:-0.476949pt;}
.ls38{letter-spacing:-0.463261pt;}
.ls21{letter-spacing:-0.446208pt;}
.ls10{letter-spacing:-0.382464pt;}
.ls4c{letter-spacing:-0.370944pt;}
.ls15{letter-spacing:-0.264960pt;}
.lsb{letter-spacing:-0.258048pt;}
.lse{letter-spacing:-0.254976pt;}
.ls4a{letter-spacing:-0.214893pt;}
.ls6f{letter-spacing:-0.192188pt;}
.ls13{letter-spacing:-0.191232pt;}
.ls63{letter-spacing:-0.169071pt;}
.ls84{letter-spacing:-0.167993pt;}
.ls96{letter-spacing:-0.167940pt;}
.ls71{letter-spacing:-0.164982pt;}
.ls65{letter-spacing:-0.164733pt;}
.ls5b{letter-spacing:-0.164278pt;}
.ls85{letter-spacing:-0.163683pt;}
.ls98{letter-spacing:-0.163632pt;}
.ls5d{letter-spacing:-0.160064pt;}
.ls83{letter-spacing:-0.144240pt;}
.ls97{letter-spacing:-0.144195pt;}
.ls70{letter-spacing:-0.137277pt;}
.ls6a{letter-spacing:-0.120765pt;}
.ls7d{letter-spacing:-0.119995pt;}
.ls8a{letter-spacing:-0.119237pt;}
.ls3c{letter-spacing:-0.109658pt;}
.ls3b{letter-spacing:-0.109493pt;}
.ls81{letter-spacing:-0.109122pt;}
.ls93{letter-spacing:-0.108435pt;}
.ls32{letter-spacing:-0.107932pt;}
.ls31{letter-spacing:-0.107770pt;}
.ls14{letter-spacing:-0.105984pt;}
.ls69{letter-spacing:-0.096777pt;}
.ls87{letter-spacing:-0.096160pt;}
.ls9a{letter-spacing:-0.096130pt;}
.ls8e{letter-spacing:-0.095552pt;}
.ls67{letter-spacing:-0.092896pt;}
.ls5f{letter-spacing:-0.090262pt;}
.ls6b{letter-spacing:-0.082366pt;}
.ls3d{letter-spacing:-0.082120pt;}
.ls7e{letter-spacing:-0.081842pt;}
.ls33{letter-spacing:-0.081752pt;}
.ls8b{letter-spacing:-0.081326pt;}
.ls34{letter-spacing:-0.080827pt;}
.ls6d{letter-spacing:-0.072582pt;}
.ls61{letter-spacing:-0.072459pt;}
.ls88{letter-spacing:-0.072120pt;}
.ls9b{letter-spacing:-0.072098pt;}
.ls7f{letter-spacing:-0.071997pt;}
.ls94{letter-spacing:-0.071974pt;}
.ls8f{letter-spacing:-0.071664pt;}
.ls8c{letter-spacing:-0.071542pt;}
.ls59{letter-spacing:-0.070405pt;}
.ls68{letter-spacing:-0.061931pt;}
.ls60{letter-spacing:-0.060175pt;}
.ls41{letter-spacing:-0.054789pt;}
.ls40{letter-spacing:-0.054707pt;}
.ls37{letter-spacing:-0.054643pt;}
.ls36{letter-spacing:-0.054561pt;}
.ls9d{letter-spacing:-0.054544pt;}
.ls91{letter-spacing:-0.054218pt;}
.ls62{letter-spacing:-0.048306pt;}
.ls42{letter-spacing:-0.048208pt;}
.ls82{letter-spacing:-0.047998pt;}
.ls95{letter-spacing:-0.047983pt;}
.ls64{letter-spacing:-0.047946pt;}
.ls5a{letter-spacing:-0.046937pt;}
.ls5c{letter-spacing:-0.046609pt;}
.ls4b{letter-spacing:-0.036775pt;}
.ls3f{letter-spacing:-0.030913pt;}
.ls39{letter-spacing:-0.027281pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013227pt;}
.ls52{letter-spacing:0.017458pt;}
.ls4f{letter-spacing:0.017996pt;}
.ls4{letter-spacing:0.021333pt;}
.ls55{letter-spacing:0.027455pt;}
.ls2e{letter-spacing:0.028025pt;}
.ls3e{letter-spacing:0.030913pt;}
.ls2{letter-spacing:0.034560pt;}
.ls0{letter-spacing:0.043008pt;}
.ls92{letter-spacing:0.054218pt;}
.ls28{letter-spacing:0.054561pt;}
.ls73{letter-spacing:0.054911pt;}
.ls4d{letter-spacing:0.060515pt;}
.ls78{letter-spacing:0.061507pt;}
.ls3a{letter-spacing:0.061536pt;}
.ls24{letter-spacing:0.061657pt;}
.ls44{letter-spacing:0.061699pt;}
.ls27{letter-spacing:0.061897pt;}
.ls2b{letter-spacing:0.062108pt;}
.ls7a{letter-spacing:0.062411pt;}
.ls76{letter-spacing:0.062431pt;}
.ls51{letter-spacing:0.062831pt;}
.ls1f{letter-spacing:0.063744pt;}
.ls43{letter-spacing:0.072189pt;}
.ls23{letter-spacing:0.080827pt;}
.ls9e{letter-spacing:0.081816pt;}
.ls2a{letter-spacing:0.082120pt;}
.ls35{letter-spacing:0.091158pt;}
.ls79{letter-spacing:0.108435pt;}
.ls7b{letter-spacing:0.109088pt;}
.ls77{letter-spacing:0.109122pt;}
.lsf{letter-spacing:0.127488pt;}
.ls20{letter-spacing:0.129024pt;}
.ls26{letter-spacing:0.136403pt;}
.ls2d{letter-spacing:0.136768pt;}
.ls1c{letter-spacing:0.145835pt;}
.ls48{letter-spacing:0.186944pt;}
.ls11{letter-spacing:0.191232pt;}
.ls1{letter-spacing:0.191744pt;}
.ls12{letter-spacing:0.254976pt;}
.ls1a{letter-spacing:0.291669pt;}
.ls45{letter-spacing:0.317952pt;}
.ls9{letter-spacing:0.318720pt;}
.ls17{letter-spacing:0.370944pt;}
.ls30{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.382464pt;}
.ls7c{letter-spacing:0.426667pt;}
.ls46{letter-spacing:0.509952pt;}
.ls57{letter-spacing:0.516011pt;}
.ls16{letter-spacing:0.582912pt;}
.ls74{letter-spacing:0.794880pt;}
.ls75{letter-spacing:0.892416pt;}
.ls1e{letter-spacing:0.956160pt;}
.ls8{letter-spacing:1.721088pt;}
.ls1b{letter-spacing:4.015872pt;}
.ls19{letter-spacing:4.079616pt;}
.ls22{letter-spacing:4.143360pt;}
.ls6{letter-spacing:4.780800pt;}
.ls50{letter-spacing:6.167427pt;}
.ls5{letter-spacing:6.310656pt;}
.ls25{letter-spacing:6.958256pt;}
.ls56{letter-spacing:6.974688pt;}
.ls2c{letter-spacing:7.045095pt;}
.ls29{letter-spacing:7.046235pt;}
.ls2f{letter-spacing:7.064922pt;}
.ls4e{letter-spacing:7.481499pt;}
.ls53{letter-spacing:7.700061pt;}
.ls54{letter-spacing:7.700598pt;}
.ls1d{letter-spacing:8.669184pt;}
.ls58{letter-spacing:9.370368pt;}
.ls47{letter-spacing:9.584321pt;}
.ls9f{letter-spacing:15.553536pt;}
.ls49{letter-spacing:944.512000pt;}
.ws79{word-spacing:-36.738691pt;}
.ws94{word-spacing:-24.097357pt;}
.ws8c{word-spacing:-24.080607pt;}
.wsbb{word-spacing:-23.943840pt;}
.wsd2{word-spacing:-23.936403pt;}
.wsb0{word-spacing:-23.926937pt;}
.wscf{word-spacing:-23.919492pt;}
.wsc5{word-spacing:-23.792448pt;}
.wsc3{word-spacing:-23.775924pt;}
.ws84{word-spacing:-23.397862pt;}
.wsa0{word-spacing:-16.828416pt;}
.ws74{word-spacing:-16.445952pt;}
.ws22{word-spacing:-16.318464pt;}
.wsd6{word-spacing:-16.254720pt;}
.ws21{word-spacing:-16.190976pt;}
.ws26{word-spacing:-16.127232pt;}
.ws5{word-spacing:-16.063488pt;}
.ws4{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.681024pt;}
.ws3d{word-spacing:-15.553536pt;}
.ws9f{word-spacing:-14.042880pt;}
.ws25{word-spacing:-13.248000pt;}
.ws23{word-spacing:-13.142016pt;}
.ws24{word-spacing:-12.983040pt;}
.ws3c{word-spacing:-10.881024pt;}
.ws0{word-spacing:-10.752000pt;}
.ws1{word-spacing:-10.149888pt;}
.ws76{word-spacing:-9.729933pt;}
.ws75{word-spacing:-9.713179pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7a{word-spacing:-8.311255pt;}
.ws9e{word-spacing:-7.679403pt;}
.ws69{word-spacing:-6.972010pt;}
.ws62{word-spacing:-6.955440pt;}
.ws5a{word-spacing:-6.953568pt;}
.ws52{word-spacing:-6.867266pt;}
.wsb2{word-spacing:-6.820133pt;}
.wsb3{word-spacing:-6.711011pt;}
.wsc8{word-spacing:-6.668765pt;}
.wsbe{word-spacing:-6.656450pt;}
.wsd5{word-spacing:-6.654368pt;}
.ws64{word-spacing:-6.318682pt;}
.ws54{word-spacing:-6.301803pt;}
.ws5c{word-spacing:-6.268493pt;}
.ws98{word-spacing:-6.232391pt;}
.ws59{word-spacing:-6.219962pt;}
.ws61{word-spacing:-6.186373pt;}
.ws4c{word-spacing:-6.169810pt;}
.ws58{word-spacing:-6.138120pt;}
.ws65{word-spacing:-6.136405pt;}
.ws63{word-spacing:-6.127206pt;}
.ws92{word-spacing:-6.122569pt;}
.ws55{word-spacing:-6.120038pt;}
.ws53{word-spacing:-6.110839pt;}
.ws60{word-spacing:-6.104253pt;}
.ws51{word-spacing:-6.088982pt;}
.ws5d{word-spacing:-6.085997pt;}
.wsaf{word-spacing:-6.083559pt;}
.ws5b{word-spacing:-6.076880pt;}
.ws99{word-spacing:-6.067658pt;}
.ws9a{word-spacing:-6.049355pt;}
.wsc2{word-spacing:-6.045262pt;}
.ws8b{word-spacing:-6.040203pt;}
.ws97{word-spacing:-6.012747pt;}
.ws50{word-spacing:-6.008155pt;}
.wsb9{word-spacing:-6.001717pt;}
.wsce{word-spacing:-5.999840pt;}
.ws4d{word-spacing:-5.990211pt;}
.ws4b{word-spacing:-5.981213pt;}
.ws83{word-spacing:-5.869013pt;}
.ws68{word-spacing:-5.510412pt;}
.ws95{word-spacing:-5.467874pt;}
.ws8d{word-spacing:-5.458593pt;}
.wsbc{word-spacing:-5.433040pt;}
.wsd3{word-spacing:-5.431353pt;}
.wsac{word-spacing:-5.423759pt;}
.wsd0{word-spacing:-5.422071pt;}
.ws87{word-spacing:-5.410287pt;}
.wsc6{word-spacing:-5.398688pt;}
.wsbf{word-spacing:-5.389527pt;}
.wsb4{word-spacing:-5.375761pt;}
.wsc9{word-spacing:-5.374089pt;}
.ws8f{word-spacing:-5.371098pt;}
.ws85{word-spacing:-5.303828pt;}
.ws88{word-spacing:-5.289522pt;}
.wsb5{word-spacing:-5.288800pt;}
.wscb{word-spacing:-5.287157pt;}
.ws7f{word-spacing:-5.256892pt;}
.wsb6{word-spacing:-5.255766pt;}
.wsca{word-spacing:-5.254131pt;}
.ws80{word-spacing:-5.139550pt;}
.ws93{word-spacing:-4.975532pt;}
.wsb1{word-spacing:-4.943780pt;}
.ws96{word-spacing:-4.935603pt;}
.ws8e{word-spacing:-4.927226pt;}
.wsc4{word-spacing:-4.912578pt;}
.wsba{word-spacing:-4.895782pt;}
.wsd1{word-spacing:-4.894259pt;}
.ws9d{word-spacing:-4.887215pt;}
.wsc7{word-spacing:-4.873152pt;}
.wsbd{word-spacing:-4.856080pt;}
.wsd4{word-spacing:-4.854572pt;}
.ws86{word-spacing:-4.787526pt;}
.ws32{word-spacing:-3.633408pt;}
.ws33{word-spacing:-3.505920pt;}
.ws17{word-spacing:-2.868480pt;}
.wse7{word-spacing:-2.422272pt;}
.ws34{word-spacing:-2.103552pt;}
.ws3a{word-spacing:-1.338624pt;}
.ws48{word-spacing:-1.211136pt;}
.ws12{word-spacing:-0.892416pt;}
.ws7{word-spacing:-0.774144pt;}
.ws8{word-spacing:-0.645120pt;}
.ws38{word-spacing:-0.582912pt;}
.ws10{word-spacing:-0.573696pt;}
.ws72{word-spacing:-0.529920pt;}
.ws30{word-spacing:-0.382464pt;}
.ws39{word-spacing:-0.370944pt;}
.ws41{word-spacing:-0.318720pt;}
.ws73{word-spacing:-0.317952pt;}
.ws37{word-spacing:-0.211968pt;}
.ws20{word-spacing:-0.191232pt;}
.wsd9{word-spacing:-0.109122pt;}
.wse5{word-spacing:-0.109088pt;}
.wse0{word-spacing:-0.108435pt;}
.ws6b{word-spacing:-0.091158pt;}
.wse4{word-spacing:-0.081816pt;}
.ws71{word-spacing:-0.061699pt;}
.ws6d{word-spacing:-0.061536pt;}
.wsaa{word-spacing:-0.054911pt;}
.wsd8{word-spacing:-0.054561pt;}
.wsdf{word-spacing:-0.054218pt;}
.ws6e{word-spacing:-0.030913pt;}
.ws6{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.036775pt;}
.wsa2{word-spacing:0.046609pt;}
.wsa6{word-spacing:0.047946pt;}
.ws6f{word-spacing:0.048208pt;}
.wsde{word-spacing:0.054218pt;}
.wse3{word-spacing:0.054544pt;}
.wsdb{word-spacing:0.054561pt;}
.wsa4{word-spacing:0.060175pt;}
.wsa8{word-spacing:0.061931pt;}
.wsa1{word-spacing:0.070405pt;}
.wsdc{word-spacing:0.071542pt;}
.wsdd{word-spacing:0.071664pt;}
.wse1{word-spacing:0.071974pt;}
.wsd7{word-spacing:0.071997pt;}
.wse2{word-spacing:0.072098pt;}
.wsda{word-spacing:0.072120pt;}
.wsa5{word-spacing:0.072459pt;}
.wsa9{word-spacing:0.072582pt;}
.ws6a{word-spacing:0.081752pt;}
.wsa3{word-spacing:0.090262pt;}
.wsa7{word-spacing:0.092896pt;}
.ws70{word-spacing:0.096252pt;}
.wsb{word-spacing:0.127488pt;}
.ws7c{word-spacing:0.158976pt;}
.ws49{word-spacing:0.191232pt;}
.ws31{word-spacing:0.254976pt;}
.ws9{word-spacing:0.258048pt;}
.ws6c{word-spacing:0.463261pt;}
.ws19{word-spacing:0.509952pt;}
.ws27{word-spacing:0.529920pt;}
.ws3b{word-spacing:0.573696pt;}
.wsc{word-spacing:0.700416pt;}
.wsa{word-spacing:0.774144pt;}
.ws7d{word-spacing:0.794880pt;}
.ws1a{word-spacing:0.892416pt;}
.ws4a{word-spacing:1.274880pt;}
.ws1b{word-spacing:1.338624pt;}
.ws1c{word-spacing:1.657344pt;}
.ws47{word-spacing:1.721088pt;}
.ws2a{word-spacing:2.422272pt;}
.ws29{word-spacing:2.549760pt;}
.ws2c{word-spacing:3.123456pt;}
.ws15{word-spacing:3.187200pt;}
.ws2b{word-spacing:3.314688pt;}
.ws2e{word-spacing:3.633408pt;}
.ws3f{word-spacing:3.888384pt;}
.ws2d{word-spacing:3.952128pt;}
.ws3e{word-spacing:4.398336pt;}
.wse{word-spacing:4.717056pt;}
.ws2f{word-spacing:5.481984pt;}
.ws35{word-spacing:5.673216pt;}
.wsd{word-spacing:6.246912pt;}
.ws43{word-spacing:6.948096pt;}
.ws1e{word-spacing:7.011840pt;}
.ws42{word-spacing:7.139328pt;}
.ws36{word-spacing:8.605440pt;}
.ws40{word-spacing:8.987904pt;}
.ws45{word-spacing:9.370368pt;}
.ws44{word-spacing:9.625344pt;}
.ws11{word-spacing:10.135296pt;}
.ws14{word-spacing:10.900224pt;}
.ws46{word-spacing:11.665152pt;}
.wsf{word-spacing:12.430080pt;}
.ws1f{word-spacing:13.195008pt;}
.ws7e{word-spacing:13.959936pt;}
.ws1d{word-spacing:14.724864pt;}
.wsab{word-spacing:15.489792pt;}
.ws18{word-spacing:17.019648pt;}
.ws13{word-spacing:19.314432pt;}
.ws16{word-spacing:20.844288pt;}
.wse6{word-spacing:23.139072pt;}
.ws28{word-spacing:23.967744pt;}
.ws4f{word-spacing:41.110554pt;}
.ws57{word-spacing:41.353695pt;}
.ws67{word-spacing:41.584373pt;}
.ws5f{word-spacing:42.625811pt;}
.ws9c{word-spacing:48.881991pt;}
.ws82{word-spacing:49.033884pt;}
.ws91{word-spacing:49.444946pt;}
.wsc1{word-spacing:49.838514pt;}
.ws5e{word-spacing:50.050483pt;}
.wscd{word-spacing:50.451347pt;}
.ws8a{word-spacing:50.464468pt;}
.wsb8{word-spacing:50.467048pt;}
.wsae{word-spacing:50.530938pt;}
.ws81{word-spacing:54.676357pt;}
.ws9b{word-spacing:54.706156pt;}
.ws4e{word-spacing:55.255314pt;}
.ws90{word-spacing:55.293802pt;}
.wsc0{word-spacing:55.612836pt;}
.ws56{word-spacing:55.730536pt;}
.ws66{word-spacing:55.999720pt;}
.wsad{word-spacing:56.325384pt;}
.wscc{word-spacing:62.303131pt;}
.wsb7{word-spacing:62.322521pt;}
.ws89{word-spacing:62.396083pt;}
.ws78{word-spacing:212.226525pt;}
.ws77{word-spacing:222.633197pt;}
._0{margin-left:-426.816000pt;}
._1{margin-left:-3.520000pt;}
._5{margin-left:-1.978368pt;}
._2{margin-left:-0.989184pt;}
._3{width:0.903168pt;}
._4{width:1.892352pt;}
._8{width:2.955264pt;}
._7{width:4.094976pt;}
._b{width:5.182464pt;}
._c{width:6.469632pt;}
._e{width:10.464000pt;}
._12{width:13.641216pt;}
._13{width:14.714112pt;}
._6{width:23.055360pt;}
._d{width:28.238592pt;}
._9{width:34.470912pt;}
._10{width:46.387196pt;}
._a{width:48.190464pt;}
._f{width:55.257642pt;}
._15{width:61.647363pt;}
._11{width:63.234232pt;}
._14{width:65.850964pt;}
._16{width:66.852322pt;}
._17{width:67.789854pt;}
.fs6{font-size:5.376000pt;}
.fs1a{font-size:16.041600pt;}
.fs25{font-size:17.851733pt;}
.fsd{font-size:18.028800pt;}
.fs32{font-size:18.140267pt;}
.fs37{font-size:18.249600pt;}
.fs11{font-size:18.255467pt;}
.fs15{font-size:18.317333pt;}
.fs2a{font-size:18.372800pt;}
.fs9{font-size:21.504000pt;}
.fs23{font-size:23.304533pt;}
.fs22{font-size:23.468267pt;}
.fs30{font-size:23.847467pt;}
.fs33{font-size:23.888000pt;}
.fs28{font-size:23.972800pt;}
.fs34{font-size:23.991467pt;}
.fs2e{font-size:23.998933pt;}
.fs35{font-size:24.032533pt;}
.fs2f{font-size:24.040000pt;}
.fs1b{font-size:24.062933pt;}
.fs19{font-size:24.104000pt;}
.fs27{font-size:24.153067pt;}
.fs2c{font-size:24.194133pt;}
.fs24{font-size:26.677333pt;}
.fsa{font-size:26.942400pt;}
.fsb{font-size:26.982933pt;}
.fs31{font-size:27.108800pt;}
.fsc{font-size:27.250667pt;}
.fs36{font-size:27.272000pt;}
.fsf{font-size:27.280533pt;}
.fs10{font-size:27.321600pt;}
.fs17{font-size:27.353600pt;}
.fs13{font-size:27.373333pt;}
.fs18{font-size:27.394667pt;}
.fs14{font-size:27.414400pt;}
.fs29{font-size:27.455467pt;}
.fs2d{font-size:27.497067pt;}
.fs26{font-size:30.087467pt;}
.fse{font-size:30.386133pt;}
.fs12{font-size:30.768000pt;}
.fs1c{font-size:30.849600pt;}
.fs16{font-size:30.913067pt;}
.fs2b{font-size:30.965333pt;}
.fs21{font-size:32.256000pt;}
.fs5{font-size:34.560000pt;}
.fs20{font-size:36.775467pt;}
.fs1f{font-size:42.082133pt;}
.fs1d{font-size:42.978667pt;}
.fs1{font-size:43.008000pt;}
.fs1e{font-size:43.052800pt;}
.fs8{font-size:52.992000pt;}
.fs4{font-size:58.368000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:63.744000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.496000pt;}
.yfe{bottom:-71.998091pt;}
.y154{bottom:-68.218091pt;}
.y5c{bottom:-60.659424pt;}
.yfd{bottom:-53.528267pt;}
.y37{bottom:-53.099424pt;}
.yd7{bottom:-51.210091pt;}
.y153{bottom:-49.748267pt;}
.y5b{bottom:-42.189600pt;}
.y36{bottom:-34.629600pt;}
.yd6{bottom:-32.740267pt;}
.ye4{bottom:-4.978933pt;}
.y0{bottom:0.000000pt;}
.y10b{bottom:0.762133pt;}
.y98{bottom:0.770267pt;}
.yce{bottom:0.771200pt;}
.y184{bottom:0.774267pt;}
.yab{bottom:0.779067pt;}
.y162{bottom:0.779333pt;}
.y199{bottom:0.779600pt;}
.ybc{bottom:0.782667pt;}
.ycd{bottom:2.211067pt;}
.y10a{bottom:2.367067pt;}
.y97{bottom:2.390800pt;}
.y183{bottom:2.404933pt;}
.yaa{bottom:2.420000pt;}
.y161{bottom:2.420133pt;}
.ybb{bottom:2.429200pt;}
.y11d{bottom:2.436400pt;}
.y12d{bottom:2.436533pt;}
.y9c{bottom:6.443733pt;}
.ycb{bottom:14.160267pt;}
.y108{bottom:16.167067pt;}
.y181{bottom:16.428133pt;}
.y197{bottom:16.527733pt;}
.y15f{bottom:16.532267pt;}
.y95{bottom:16.540533pt;}
.y11b{bottom:16.639067pt;}
.y12c{bottom:16.639200pt;}
.yb9{bottom:16.815467pt;}
.ya8{bottom:16.819200pt;}
.ye2{bottom:18.947600pt;}
.y33{bottom:19.022533pt;}
.yc2{bottom:23.075733pt;}
.y101{bottom:23.779200pt;}
.y178{bottom:24.163200pt;}
.y136{bottom:24.215333pt;}
.y18e{bottom:24.299333pt;}
.y156{bottom:24.306267pt;}
.y114{bottom:24.473333pt;}
.y8c{bottom:25.322000pt;}
.y9f{bottom:25.711067pt;}
.yb0{bottom:25.737600pt;}
.yd9{bottom:32.960000pt;}
.yc3{bottom:44.064800pt;}
.y8d{bottom:45.540933pt;}
.y179{bottom:45.899333pt;}
.y18f{bottom:45.962000pt;}
.y157{bottom:46.027067pt;}
.ya0{bottom:46.223333pt;}
.y16b{bottom:46.296267pt;}
.yb1{bottom:46.329733pt;}
.y102{bottom:52.373867pt;}
.y137{bottom:53.196933pt;}
.y115{bottom:53.902267pt;}
.y126{bottom:54.117333pt;}
.yc4{bottom:65.042533pt;}
.y8e{bottom:65.756000pt;}
.ya1{bottom:66.735200pt;}
.yb2{bottom:66.932533pt;}
.y190{bottom:67.616533pt;}
.y17a{bottom:67.640667pt;}
.y158{bottom:67.739600pt;}
.y16c{bottom:68.273733pt;}
.yda{bottom:72.431200pt;}
.y103{bottom:80.965200pt;}
.y138{bottom:82.170933pt;}
.y116{bottom:83.327733pt;}
.y127{bottom:83.749200pt;}
.y8f{bottom:85.971200pt;}
.yc5{bottom:86.028933pt;}
.ya2{bottom:87.247067pt;}
.yb3{bottom:87.522533pt;}
.y191{bottom:89.271067pt;}
.y17b{bottom:89.377600pt;}
.y159{bottom:89.460800pt;}
.y16d{bottom:90.264133pt;}
.ya9{bottom:95.686800pt;}
.ycc{bottom:95.716667pt;}
.y109{bottom:95.779067pt;}
.y96{bottom:96.386800pt;}
.y182{bottom:97.326800pt;}
.y198{bottom:97.913333pt;}
.y160{bottom:97.943333pt;}
.y11c{bottom:98.573733pt;}
.yba{bottom:99.018133pt;}
.y90{bottom:106.190533pt;}
.yc6{bottom:107.006800pt;}
.ya3{bottom:107.758800pt;}
.yb4{bottom:108.125333pt;}
.y104{bottom:109.556533pt;}
.y192{bottom:110.925733pt;}
.y17c{bottom:111.114667pt;}
.y139{bottom:111.153333pt;}
.y15a{bottom:111.173467pt;}
.ydb{bottom:111.885333pt;}
.y16e{bottom:112.250267pt;}
.y117{bottom:112.753200pt;}
.y128{bottom:113.394000pt;}
.yed{bottom:117.623867pt;}
.y91{bottom:126.405600pt;}
.yc7{bottom:127.997467pt;}
.ya4{bottom:128.279200pt;}
.yb5{bottom:128.715333pt;}
.yd5{bottom:130.393333pt;}
.y35{bottom:132.282667pt;}
.y193{bottom:132.588800pt;}
.y17d{bottom:132.851600pt;}
.y15b{bottom:132.894667pt;}
.y16f{bottom:134.227867pt;}
.y105{bottom:138.152133pt;}
.y5a{bottom:139.842667pt;}
.y13a{bottom:140.140133pt;}
.y118{bottom:142.182933pt;}
.y129{bottom:143.038800pt;}
.y1a0{bottom:143.067333pt;}
.y112{bottom:143.124000pt;}
.y18b{bottom:144.482133pt;}
.y19f{bottom:144.707733pt;}
.y169{bottom:144.946000pt;}
.y18a{bottom:146.112667pt;}
.y168{bottom:146.586933pt;}
.y92{bottom:146.624933pt;}
.y142{bottom:146.909867pt;}
.y124{bottom:147.301200pt;}
.y152{bottom:147.401333pt;}
.ya5{bottom:148.791067pt;}
.yc8{bottom:148.975333pt;}
.yb6{bottom:149.309600pt;}
.y134{bottom:149.602133pt;}
.yfc{bottom:151.181333pt;}
.ydc{bottom:151.354933pt;}
.y194{bottom:154.243333pt;}
.y17e{bottom:154.588667pt;}
.y15c{bottom:154.607200pt;}
.y170{bottom:156.218267pt;}
.y110{bottom:157.086267pt;}
.y19d{bottom:159.707200pt;}
.y141{bottom:159.863200pt;}
.y188{bottom:160.024000pt;}
.y166{bottom:160.504400pt;}
.y176{bottom:161.098400pt;}
.y122{bottom:161.669467pt;}
.y132{bottom:163.351067pt;}
.y10f{bottom:165.431333pt;}
.y106{bottom:166.743467pt;}
.y93{bottom:166.831467pt;}
.ye3{bottom:167.416667pt;}
.y140{bottom:168.284000pt;}
.y13b{bottom:169.109733pt;}
.ya6{bottom:169.302933pt;}
.yb7{bottom:169.912533pt;}
.yc9{bottom:169.961733pt;}
.y121{bottom:170.258000pt;}
.y19c{bottom:170.451200pt;}
.y59{bottom:170.611893pt;}
.y32{bottom:170.620149pt;}
.y187{bottom:170.703600pt;}
.y165{bottom:171.038000pt;}
.y119{bottom:171.608400pt;}
.y131{bottom:171.857867pt;}
.y175{bottom:171.939733pt;}
.y9a{bottom:172.250267pt;}
.y12a{bottom:172.683733pt;}
.ybe{bottom:173.737200pt;}
.y10e{bottom:173.784800pt;}
.yfb{bottom:173.875445pt;}
.y7b{bottom:174.279221pt;}
.y195{bottom:175.898000pt;}
.yd0{bottom:176.307333pt;}
.y15d{bottom:176.328400pt;}
.y17f{bottom:176.329867pt;}
.yad{bottom:176.370933pt;}
.y13f{bottom:176.709200pt;}
.yd4{bottom:177.713248pt;}
.y171{bottom:178.195867pt;}
.yae{bottom:178.802400pt;}
.y120{bottom:178.855067pt;}
.ybf{bottom:180.254667pt;}
.y130{bottom:180.360400pt;}
.yd2{bottom:181.149600pt;}
.y19b{bottom:181.186667pt;}
.y186{bottom:181.374533pt;}
.y164{bottom:181.558933pt;}
.y10d{bottom:182.129867pt;}
.y99{bottom:182.142667pt;}
.y174{bottom:182.789600pt;}
.ybd{bottom:184.027867pt;}
.yac{bottom:184.481600pt;}
.y13e{bottom:185.121333pt;}
.ycf{bottom:187.001867pt;}
.y94{bottom:187.046533pt;}
.y11f{bottom:187.443600pt;}
.y58{bottom:188.858613pt;}
.y12f{bottom:188.867333pt;}
.y31{bottom:189.042165pt;}
.ya7{bottom:189.814667pt;}
.y10c{bottom:190.483200pt;}
.yb8{bottom:190.502533pt;}
.ydd{bottom:190.809067pt;}
.yca{bottom:190.939467pt;}
.y19a{bottom:191.922133pt;}
.y185{bottom:192.041333pt;}
.y163{bottom:192.084133pt;}
.y7a{bottom:192.701237pt;}
.yd3{bottom:193.266400pt;}
.y13d{bottom:193.542133pt;}
.y173{bottom:193.630933pt;}
.y107{bottom:195.338933pt;}
.y11e{bottom:196.040800pt;}
.y12e{bottom:197.374000pt;}
.y196{bottom:197.561067pt;}
.y15e{bottom:198.041067pt;}
.y180{bottom:198.066933pt;}
.y13c{bottom:198.096667pt;}
.y172{bottom:200.186267pt;}
.y11a{bottom:201.038267pt;}
.y1b3{bottom:201.746741pt;}
.y12b{bottom:202.328533pt;}
.y57{bottom:207.280629pt;}
.y30{bottom:207.288885pt;}
.y79{bottom:211.123253pt;}
.yc0{bottom:213.239733pt;}
.yaf{bottom:215.145333pt;}
.yd1{bottom:215.506667pt;}
.yc1{bottom:215.558667pt;}
.y1b2{bottom:220.168757pt;}
.y2f{bottom:225.726837pt;}
.y78{bottom:229.561205pt;}
.yde{bottom:230.278667pt;}
.y56{bottom:233.399733pt;}
.y1b1{bottom:238.606709pt;}
.y2e{bottom:244.148853pt;}
.y77{bottom:247.807925pt;}
.y1b0{bottom:257.028725pt;}
.y151{bottom:259.119733pt;}
.yec{bottom:261.994267pt;}
.y2d{bottom:262.586805pt;}
.y55{bottom:264.506400pt;}
.y76{bottom:266.229941pt;}
.ydf{bottom:269.748267pt;}
.yeb{bottom:273.532933pt;}
.y1af{bottom:275.275445pt;}
.y2c{bottom:281.040693pt;}
.y75{bottom:284.699765pt;}
.yea{bottom:285.056133pt;}
.y54{bottom:285.074997pt;}
.y150{bottom:291.236000pt;}
.y1ae{bottom:293.745269pt;}
.ye9{bottom:296.594667pt;}
.y2b{bottom:299.478645pt;}
.yfa{bottom:299.479733pt;}
.y74{bottom:303.121781pt;}
.y53{bottom:305.039733pt;}
.ye8{bottom:308.110133pt;}
.ye0{bottom:309.202533pt;}
.y14f{bottom:309.658016pt;}
.y1ad{bottom:312.167285pt;}
.y2a{bottom:317.725365pt;}
.ye7{bottom:319.648667pt;}
.y73{bottom:321.559733pt;}
.y14e{bottom:327.904736pt;}
.y1ac{bottom:330.605237pt;}
.ye6{bottom:331.171867pt;}
.yf9{bottom:331.174560pt;}
.y29{bottom:336.147381pt;}
.ye5{bottom:342.710400pt;}
.y14d{bottom:346.326752pt;}
.ye1{bottom:348.672000pt;}
.y1ab{bottom:349.027253pt;}
.yf8{bottom:349.596576pt;}
.y72{bottom:355.341749pt;}
.y28{bottom:362.266485pt;}
.y14c{bottom:364.764704pt;}
.y1aa{bottom:367.449269pt;}
.yf7{bottom:368.034528pt;}
.y71{bottom:375.319733pt;}
.y27{bottom:380.879733pt;}
.y14b{bottom:383.186720pt;}
.y1a9{bottom:385.695989pt;}
.yf6{bottom:386.456544pt;}
.y26{bottom:395.866400pt;}
.y25{bottom:400.871989pt;}
.y14a{bottom:401.624672pt;}
.y1a8{bottom:404.133941pt;}
.yf5{bottom:404.878560pt;}
.y24{bottom:419.294005pt;}
.y149{bottom:420.046688pt;}
.y1a7{bottom:422.555957pt;}
.yf4{bottom:423.316512pt;}
.y9d{bottom:428.879733pt;}
.y9e{bottom:430.740000pt;}
.y8b{bottom:431.172000pt;}
.y23{bottom:437.731957pt;}
.y148{bottom:438.293408pt;}
.y1a6{bottom:440.993909pt;}
.yf3{bottom:441.563232pt;}
.y22{bottom:456.153973pt;}
.y147{bottom:456.715424pt;}
.y1a5{bottom:459.415925pt;}
.yf2{bottom:467.666400pt;}
.y21{bottom:474.623797pt;}
.y146{bottom:482.866400pt;}
.y1a4{bottom:485.359733pt;}
.y20{bottom:492.870517pt;}
.yf1{bottom:498.799733pt;}
.y1f{bottom:511.292533pt;}
.y145{bottom:513.973067pt;}
.y1a3{bottom:516.666400pt;}
.yf0{bottom:519.148597pt;}
.y52{bottom:525.718731pt;}
.y1e{bottom:529.730485pt;}
.y144{bottom:534.308597pt;}
.yef{bottom:534.701749pt;}
.y1a2{bottom:537.015179pt;}
.y51{bottom:544.156683pt;}
.y1d{bottom:548.152501pt;}
.y143{bottom:549.874997pt;}
.y1a1{bottom:552.369611pt;}
.yee{bottom:554.679733pt;}
.yd8{bottom:554.693333pt;}
.y50{bottom:562.578699pt;}
.y1c{bottom:566.590453pt;}
.y135{bottom:569.839733pt;}
.y133{bottom:572.048000pt;}
.y125{bottom:572.100000pt;}
.y18c{bottom:572.533067pt;}
.y189{bottom:574.754667pt;}
.y177{bottom:574.805333pt;}
.y19e{bottom:574.816000pt;}
.y18d{bottom:574.866667pt;}
.y4f{bottom:581.016651pt;}
.y1b{bottom:585.012469pt;}
.y70{bottom:592.137504pt;}
.y4e{bottom:599.438667pt;}
.y9b{bottom:599.814667pt;}
.y1a{bottom:603.259189pt;}
.y6f{bottom:610.559520pt;}
.y4d{bottom:617.685387pt;}
.y19{bottom:621.681205pt;}
.y6e{bottom:628.997472pt;}
.y4c{bottom:636.107403pt;}
.y18{bottom:640.119157pt;}
.y6d{bottom:647.419488pt;}
.y8a{bottom:647.988768pt;}
.y4b{bottom:654.545355pt;}
.y17{bottom:658.588981pt;}
.y6c{bottom:665.889312pt;}
.y89{bottom:666.458592pt;}
.y4a{bottom:673.015179pt;}
.y16{bottom:677.010997pt;}
.y6b{bottom:684.136032pt;}
.y88{bottom:684.880608pt;}
.y49{bottom:691.437195pt;}
.y15{bottom:695.257717pt;}
.y6a{bottom:702.558048pt;}
.y87{bottom:703.127328pt;}
.y48{bottom:709.683915pt;}
.y14{bottom:713.679733pt;}
.y69{bottom:720.996000pt;}
.y86{bottom:721.565280pt;}
.y47{bottom:728.105931pt;}
.y13{bottom:731.714997pt;}
.y68{bottom:739.418016pt;}
.y85{bottom:739.987296pt;}
.y46{bottom:746.543883pt;}
.y12{bottom:748.612533pt;}
.y67{bottom:757.840032pt;}
.y45{bottom:764.965899pt;}
.y11{bottom:765.510069pt;}
.y84{bottom:766.106400pt;}
.y66{bottom:776.277984pt;}
.y10{bottom:782.422197pt;}
.y44{bottom:783.403851pt;}
.y65{bottom:794.524704pt;}
.y83{bottom:798.359733pt;}
.yf{bottom:799.302176pt;}
.y43{bottom:801.825867pt;}
.yff{bottom:802.386400pt;}
.y16a{bottom:803.546400pt;}
.y111{bottom:804.520000pt;}
.y100{bottom:804.569333pt;}
.y123{bottom:804.581333pt;}
.y113{bottom:804.633333pt;}
.y167{bottom:805.749333pt;}
.y155{bottom:805.801333pt;}
.y82{bottom:806.999157pt;}
.y64{bottom:812.946720pt;}
.ye{bottom:816.010016pt;}
.y42{bottom:820.072587pt;}
.y81{bottom:825.245877pt;}
.y63{bottom:831.384672pt;}
.yd{bottom:832.907552pt;}
.y41{bottom:838.494603pt;}
.y80{bottom:843.715701pt;}
.yc{bottom:849.834272pt;}
.y62{bottom:849.838560pt;}
.y40{bottom:856.964427pt;}
.y7f{bottom:862.137717pt;}
.yb{bottom:866.746400pt;}
.y61{bottom:868.276512pt;}
.y3f{bottom:875.402379pt;}
.y7e{bottom:880.559733pt;}
.y60{bottom:886.698528pt;}
.y3e{bottom:893.824395pt;}
.ya{bottom:899.386400pt;}
.y7d{bottom:911.094389pt;}
.y3d{bottom:912.246411pt;}
.y5f{bottom:912.626400pt;}
.y3c{bottom:930.493131pt;}
.y9{bottom:934.310816pt;}
.y5e{bottom:943.919733pt;}
.y5d{bottom:948.924384pt;}
.y3b{bottom:948.931083pt;}
.y8{bottom:956.026400pt;}
.y3a{bottom:967.353099pt;}
.y7{bottom:976.190752pt;}
.y39{bottom:985.791051pt;}
.y6{bottom:988.469536pt;}
.y5{bottom:1000.759072pt;}
.y38{bottom:1004.213067pt;}
.y7c{bottom:1006.519733pt;}
.y4{bottom:1012.855072pt;}
.y3{bottom:1025.144608pt;}
.y34{bottom:1034.586400pt;}
.y2{bottom:1037.466400pt;}
.y1{bottom:1110.871200pt;}
.h3e{height:-39.136000pt;}
.h55{height:-35.356000pt;}
.h12{height:-27.797333pt;}
.hd{height:-20.237333pt;}
.h34{height:-18.348000pt;}
.h9{height:4.465125pt;}
.hf{height:4.609500pt;}
.h2e{height:11.819714pt;}
.h43{height:13.153450pt;}
.h1b{height:13.283916pt;}
.h5f{height:13.366046pt;}
.h68{height:13.446605pt;}
.h22{height:13.450927pt;}
.h28{height:13.496512pt;}
.h63{height:15.553861pt;}
.h6b{height:15.647606pt;}
.h5a{height:15.652636pt;}
.h40{height:16.260484pt;}
.h5d{height:16.523220pt;}
.h60{height:16.551305pt;}
.h65{height:16.622994pt;}
.h57{height:16.628167pt;}
.h66{height:16.651448pt;}
.h5b{height:16.656621pt;}
.h2f{height:16.672511pt;}
.h47{height:16.734962pt;}
.h4d{height:16.763416pt;}
.h41{height:17.171163pt;}
.h48{height:17.663552pt;}
.h2d{height:17.760223pt;}
.h15{height:17.860500pt;}
.h1c{height:18.078667pt;}
.h17{height:18.667610pt;}
.h18{height:18.695695pt;}
.h1f{height:18.901893pt;}
.h20{height:18.930347pt;}
.h2b{height:18.952519pt;}
.h25{height:18.966191pt;}
.h2c{height:18.980973pt;}
.h26{height:18.994645pt;}
.h4f{height:19.023099pt;}
.h50{height:19.051923pt;}
.h42{height:19.656297pt;}
.h1a{height:19.851602pt;}
.h5e{height:19.974209pt;}
.h19{height:20.078738pt;}
.h67{height:20.094457pt;}
.h21{height:20.100745pt;}
.h27{height:20.169121pt;}
.h49{height:20.229638pt;}
.h1d{height:22.389002pt;}
.h52{height:22.481845pt;}
.h23{height:22.670367pt;}
.h31{height:22.730491pt;}
.h29{height:22.777255pt;}
.h62{height:23.243678pt;}
.h6a{height:23.383609pt;}
.h59{height:23.390926pt;}
.h51{height:23.540918pt;}
.h3a{height:25.480658pt;}
.h45{height:25.797652pt;}
.h4b{height:26.550354pt;}
.h3c{height:27.657000pt;}
.h36{height:29.778676pt;}
.h37{height:29.830041pt;}
.h38{height:31.006806pt;}
.h39{height:31.667387pt;}
.h3{height:35.721000pt;}
.hb{height:44.013375pt;}
.h53{height:44.057919pt;}
.h13{height:44.259750pt;}
.he{height:45.436500pt;}
.h32{height:45.462441pt;}
.h6{height:48.478500pt;}
.h7{height:48.548729pt;}
.h14{height:52.916830pt;}
.h8{height:52.943625pt;}
.h10{height:52.948318pt;}
.ha{height:53.625000pt;}
.h5{height:54.655500pt;}
.h2{height:55.031250pt;}
.h4{height:63.874500pt;}
.h3f{height:206.400000pt;}
.h44{height:206.449333pt;}
.h16{height:208.448000pt;}
.h5c{height:209.734667pt;}
.h61{height:209.785333pt;}
.h64{height:211.001333pt;}
.h69{height:211.052000pt;}
.h56{height:211.066667pt;}
.h58{height:211.118667pt;}
.h1e{height:211.528000pt;}
.h2a{height:211.629333pt;}
.h30{height:211.681333pt;}
.h24{height:212.246667pt;}
.h46{height:212.420000pt;}
.h4c{height:212.421333pt;}
.h4a{height:212.472000pt;}
.h4e{height:212.473333pt;}
.h3b{height:348.161333pt;}
.h35{height:371.086667pt;}
.h3d{height:971.338667pt;}
.h54{height:975.117333pt;}
.h11{height:982.677333pt;}
.hc{height:990.236000pt;}
.h33{height:992.126667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.064000pt;}
.wa{width:37.961333pt;}
.w5{width:148.342667pt;}
.wb{width:282.292000pt;}
.wc{width:282.342667pt;}
.w4{width:290.385333pt;}
.wd{width:290.386667pt;}
.w6{width:290.437333pt;}
.w8{width:290.488000pt;}
.w7{width:290.489333pt;}
.w9{width:513.228000pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.150533pt;}
.x33{left:11.984267pt;}
.x4e{left:13.913333pt;}
.x26{left:14.956933pt;}
.x49{left:16.053200pt;}
.x17{left:17.087867pt;}
.x41{left:19.505600pt;}
.x25{left:21.882400pt;}
.x4d{left:23.000400pt;}
.x16{left:24.013333pt;}
.x40{left:25.560267pt;}
.x4a{left:31.440667pt;}
.x27{left:32.547067pt;}
.x18{left:34.678000pt;}
.x43{left:37.024000pt;}
.x4f{left:41.961600pt;}
.x4b{left:43.078667pt;}
.x2a{left:44.094667pt;}
.x24{left:45.426400pt;}
.x2f{left:46.826533pt;}
.x50{left:48.006000pt;}
.x1f{left:49.357867pt;}
.x42{left:50.463333pt;}
.x32{left:51.698133pt;}
.x3e{left:52.597733pt;}
.x44{left:56.221733pt;}
.x45{left:67.123867pt;}
.x46{left:82.286000pt;}
.x5{left:94.496000pt;}
.x15{left:98.386667pt;}
.x47{left:100.062805pt;}
.x3b{left:106.938667pt;}
.x30{left:108.512000pt;}
.xb{left:113.507648pt;}
.x52{left:118.288448pt;}
.x53{left:122.909888pt;}
.x12{left:132.131349pt;}
.x28{left:134.615067pt;}
.x8{left:137.307797pt;}
.x6{left:140.180672pt;}
.x1a{left:142.443733pt;}
.x1b{left:146.285467pt;}
.x22{left:149.696133pt;}
.x1c{left:151.510267pt;}
.x2b{left:152.500667pt;}
.x3c{left:153.828000pt;}
.x1d{left:155.352000pt;}
.x23{left:158.771200pt;}
.x2c{left:163.219200pt;}
.x2d{left:166.548667pt;}
.x36{left:204.964000pt;}
.x31{left:212.787008pt;}
.x1e{left:216.295200pt;}
.x29{left:217.823333pt;}
.x2e{left:223.598800pt;}
.x10{left:225.274837pt;}
.x39{left:228.733333pt;}
.x48{left:232.185109pt;}
.x34{left:257.481867pt;}
.x7{left:263.680000pt;}
.x51{left:277.894144pt;}
.x38{left:286.334123pt;}
.x13{left:292.293333pt;}
.xd{left:315.333333pt;}
.x9{left:318.015125pt;}
.x1{left:320.320000pt;}
.xc{left:382.864000pt;}
.x20{left:390.813333pt;}
.x4c{left:391.973333pt;}
.xe{left:392.933333pt;}
.xa{left:396.957845pt;}
.x3d{left:402.850667pt;}
.x21{left:404.584000pt;}
.x3{left:409.034752pt;}
.x35{left:429.336133pt;}
.x14{left:604.376469pt;}
.x2{left:618.569728pt;}
.x37{left:656.986667pt;}
.x3a{left:676.012309pt;}
.x3f{left:695.386667pt;}
.x11{left:696.933333pt;}
.x4{left:699.403264pt;}
.xf{left:700.573333pt;}
}




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