
    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_bf21949a84873f3cabdc5433.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_342b44b990ce6559d6d3b298.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b6d3210ba2401f9697cea426.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78cb3484acc1b87cc8f962ba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_d3c07b82defa534b61cd7160.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_22ca6f0f2746670e2f8318e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_e056b62c1abf3ee9129f40c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_9cbb39b2f61d5a49536e7ea5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_e86ca202e731fac5cbc23880.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c56eac250b1e4f2d5bb1762a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2d71ecd78eee07ee547f596c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200684;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_b803c5c3d026c0ae6b26c506.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_1477885aeaea9f5713941ecb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.015137;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_cc1b197132a86f3b7eb9e935.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.870000;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_196d4ebaaa906f9767e2a50c.woff2')format("woff");}.fff{font-family:fff;line-height:0.988000;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_762508c40a508a9ba3591d2d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ea9e04f33b3b7db01be12755.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200684;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_c7ba4454bb52cb810443803f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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_98926d57639d9969d2cb398f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.962402;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_1477885aeaea9f5713941ecb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.015137;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_fe42f5b27565e8cab23beb13.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0e0d6a7d709f87cbe1e6847a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.200684;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_714cafa4ab5a312be1b50327.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;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_99528fcfacf60cf506d3e94f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.015137;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_ef19168537d000dcde10584e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.190000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.118000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.016000px;}
.v5{vertical-align:24.336000px;}
.ls50{letter-spacing:-1.195290px;}
.ls7c{letter-spacing:-0.307530px;}
.ls7d{letter-spacing:-0.289170px;}
.ls49{letter-spacing:-0.257013px;}
.ls77{letter-spacing:-0.238680px;}
.ls84{letter-spacing:-0.229959px;}
.ls4a{letter-spacing:-0.148496px;}
.ls87{letter-spacing:-0.107314px;}
.ls85{letter-spacing:-0.097094px;}
.ls23{letter-spacing:-0.092585px;}
.ls22{letter-spacing:-0.079002px;}
.ls7f{letter-spacing:-0.078030px;}
.ls45{letter-spacing:-0.068229px;}
.ls8a{letter-spacing:-0.066433px;}
.ls73{letter-spacing:-0.061047px;}
.ls82{letter-spacing:-0.051102px;}
.ls7e{letter-spacing:-0.050490px;}
.ls28{letter-spacing:-0.046292px;}
.ls89{letter-spacing:-0.045992px;}
.ls7a{letter-spacing:-0.045900px;}
.ls48{letter-spacing:-0.045691px;}
.ls4c{letter-spacing:-0.034268px;}
.ls29{letter-spacing:-0.033066px;}
.ls81{letter-spacing:-0.030661px;}
.ls4e{letter-spacing:-0.028557px;}
.ls79{letter-spacing:-0.027540px;}
.ls24{letter-spacing:-0.026453px;}
.ls51{letter-spacing:-0.025650px;}
.ls88{letter-spacing:-0.025551px;}
.ls80{letter-spacing:-0.022950px;}
.ls26{letter-spacing:-0.019840px;}
.ls74{letter-spacing:-0.018360px;}
.ls53{letter-spacing:-0.015390px;}
.ls78{letter-spacing:-0.013770px;}
.ls27{letter-spacing:-0.013226px;}
.ls46{letter-spacing:-0.011423px;}
.ls52{letter-spacing:-0.010260px;}
.ls83{letter-spacing:-0.010220px;}
.ls75{letter-spacing:-0.009180px;}
.ls25{letter-spacing:-0.006613px;}
.ls4f{letter-spacing:-0.005130px;}
.ls86{letter-spacing:-0.005110px;}
.ls76{letter-spacing:-0.004590px;}
.lsd{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000583px;}
.ls95{letter-spacing:0.000800px;}
.ls96{letter-spacing:0.001036px;}
.ls97{letter-spacing:0.001155px;}
.ls70{letter-spacing:0.001217px;}
.lsa3{letter-spacing:0.001303px;}
.ls93{letter-spacing:0.001484px;}
.ls8{letter-spacing:0.001573px;}
.lsa{letter-spacing:0.001952px;}
.ls91{letter-spacing:0.001988px;}
.ls2c{letter-spacing:0.002302px;}
.ls98{letter-spacing:0.002544px;}
.ls2{letter-spacing:0.002725px;}
.ls9{letter-spacing:0.003488px;}
.ls1{letter-spacing:0.004200px;}
.ls5c{letter-spacing:0.004590px;}
.ls44{letter-spacing:0.004665px;}
.ls92{letter-spacing:0.004754px;}
.ls9b{letter-spacing:0.004800px;}
.ls37{letter-spacing:0.005130px;}
.ls17{letter-spacing:0.006613px;}
.ls5b{letter-spacing:0.009180px;}
.ls66{letter-spacing:0.010220px;}
.ls42{letter-spacing:0.010260px;}
.ls1a{letter-spacing:0.013226px;}
.ls5a{letter-spacing:0.013770px;}
.ls3c{letter-spacing:0.015390px;}
.ls34{letter-spacing:0.017134px;}
.ls5e{letter-spacing:0.018360px;}
.ls6f{letter-spacing:0.020441px;}
.ls64{letter-spacing:0.022950px;}
.ls67{letter-spacing:0.025551px;}
.ls43{letter-spacing:0.025650px;}
.ls16{letter-spacing:0.026453px;}
.ls60{letter-spacing:0.027540px;}
.ls55{letter-spacing:0.028489px;}
.ls36{letter-spacing:0.028557px;}
.ls68{letter-spacing:0.030661px;}
.ls2f{letter-spacing:0.031840px;}
.ls61{letter-spacing:0.032130px;}
.ls19{letter-spacing:0.033066px;}
.ls4d{letter-spacing:0.034268px;}
.ls6a{letter-spacing:0.035771px;}
.ls3a{letter-spacing:0.035910px;}
.ls12{letter-spacing:0.036868px;}
.ls69{letter-spacing:0.040882px;}
.ls41{letter-spacing:0.041040px;}
.ls57{letter-spacing:0.041310px;}
.ls6d{letter-spacing:0.045992px;}
.ls40{letter-spacing:0.046170px;}
.ls1f{letter-spacing:0.046292px;}
.ls1e{letter-spacing:0.052906px;}
.ls7b{letter-spacing:0.055080px;}
.ls6c{letter-spacing:0.056212px;}
.ls38{letter-spacing:0.056430px;}
.ls32{letter-spacing:0.057114px;}
.ls15{letter-spacing:0.059519px;}
.ls6b{letter-spacing:0.061322px;}
.ls3f{letter-spacing:0.061560px;}
.ls33{letter-spacing:0.062825px;}
.ls18{letter-spacing:0.066132px;}
.ls65{letter-spacing:0.068850px;}
.ls21{letter-spacing:0.072745px;}
.ls63{letter-spacing:0.073440px;}
.ls20{letter-spacing:0.079358px;}
.ls35{letter-spacing:0.079960px;}
.ls1b{letter-spacing:0.085972px;}
.ls59{letter-spacing:0.091800px;}
.ls14{letter-spacing:0.092585px;}
.ls47{letter-spacing:0.097094px;}
.ls1d{letter-spacing:0.099198px;}
.ls3b{letter-spacing:0.102600px;}
.ls5f{letter-spacing:0.105570px;}
.ls31{letter-spacing:0.114228px;}
.ls1c{letter-spacing:0.119038px;}
.ls3e{letter-spacing:0.128250px;}
.ls4b{letter-spacing:0.131362px;}
.ls56{letter-spacing:0.142443px;}
.ls54{letter-spacing:0.154652px;}
.ls30{letter-spacing:0.159201px;}
.ls5d{letter-spacing:0.169830px;}
.ls2e{letter-spacing:0.172847px;}
.ls13{letter-spacing:0.184338px;}
.ls39{letter-spacing:0.189810px;}
.ls11{letter-spacing:0.200138px;}
.ls8d{letter-spacing:0.717483px;}
.ls90{letter-spacing:0.751625px;}
.ls6e{letter-spacing:1.297991px;}
.ls2a{letter-spacing:2.076545px;}
.ls58{letter-spacing:2.602530px;}
.ls5{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls8e{letter-spacing:3.559200px;}
.ls3d{letter-spacing:4.273290px;}
.ls62{letter-spacing:6.274530px;}
.ls2b{letter-spacing:10.459950px;}
.ls0{letter-spacing:10.461300px;}
.lsc{letter-spacing:11.954850px;}
.ls9f{letter-spacing:12.558563px;}
.lsa5{letter-spacing:13.173929px;}
.ls71{letter-spacing:13.356544px;}
.ls9a{letter-spacing:13.448400px;}
.lsa2{letter-spacing:13.450560px;}
.ls99{letter-spacing:13.454400px;}
.lsa0{letter-spacing:13.529379px;}
.ls9e{letter-spacing:13.611252px;}
.ls72{letter-spacing:14.094088px;}
.ls9c{letter-spacing:14.303341px;}
.ls8c{letter-spacing:14.908665px;}
.ls3{letter-spacing:14.944200px;}
.lse{letter-spacing:14.944665px;}
.ls8b{letter-spacing:14.974665px;}
.lsf{letter-spacing:15.657483px;}
.lsa4{letter-spacing:15.662165px;}
.ls10{letter-spacing:15.663483px;}
.ls2d{letter-spacing:15.691625px;}
.ls9d{letter-spacing:17.656282px;}
.lsa1{letter-spacing:17.679812px;}
.ls94{letter-spacing:20.312919px;}
.ls8f{letter-spacing:22.700435px;}
.ls7{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.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;}
}
.ws5b{word-spacing:-66.132000px;}
.ws95{word-spacing:-57.114000px;}
.wsd8{word-spacing:-51.102000px;}
.wsd7{word-spacing:-45.900000px;}
.ws10{word-spacing:-14.943900px;}
.ws18{word-spacing:-14.355754px;}
.ws60{word-spacing:-13.449600px;}
.ws59{word-spacing:-13.367138px;}
.ws5a{word-spacing:-13.167000px;}
.ws96{word-spacing:-12.825000px;}
.ws32{word-spacing:-11.955150px;}
.ws93{word-spacing:-11.544347px;}
.wsd6{word-spacing:-11.475000px;}
.ws94{word-spacing:-11.371500px;}
.ws13{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsd4{word-spacing:-10.329152px;}
.wsd5{word-spacing:-10.174500px;}
.ws70{word-spacing:-3.875335px;}
.ws7c{word-spacing:-3.544675px;}
.ws7d{word-spacing:-3.465317px;}
.ws71{word-spacing:-3.445477px;}
.ws140{word-spacing:-3.287658px;}
.ws74{word-spacing:-3.048685px;}
.ws53{word-spacing:-3.048556px;}
.ws13c{word-spacing:-2.988780px;}
.ws10f{word-spacing:-2.984357px;}
.ws10e{word-spacing:-2.979247px;}
.ws12d{word-spacing:-2.749678px;}
.ws110{word-spacing:-2.708406px;}
.ws73{word-spacing:-2.658506px;}
.ws2{word-spacing:-2.636096px;}
.ws50{word-spacing:-2.630126px;}
.ws12c{word-spacing:-2.570351px;}
.wsd9{word-spacing:-2.420928px;}
.wsda{word-spacing:-2.367130px;}
.wsd1{word-spacing:-2.331248px;}
.ws130{word-spacing:-2.092146px;}
.ws12e{word-spacing:-2.032370px;}
.wsc5{word-spacing:-1.892970px;}
.ws6b{word-spacing:-1.871536px;}
.ws36{word-spacing:-1.793268px;}
.ws11c{word-spacing:-1.783460px;}
.ws156{word-spacing:-1.733492px;}
.wsa9{word-spacing:-1.639172px;}
.wsaa{word-spacing:-1.576346px;}
.ws119{word-spacing:-1.446187px;}
.ws133{word-spacing:-1.374839px;}
.wsab{word-spacing:-1.365025px;}
.ws118{word-spacing:-1.343983px;}
.ws12b{word-spacing:-1.315063px;}
.wsc9{word-spacing:-1.200420px;}
.ws149{word-spacing:-1.195512px;}
.ws17a{word-spacing:-1.183565px;}
.ws6{word-spacing:-1.171598px;}
.wsc8{word-spacing:-1.169640px;}
.ws6e{word-spacing:-1.157310px;}
.ws123{word-spacing:-1.135736px;}
.ws8{word-spacing:-1.046070px;}
.ws122{word-spacing:-1.016185px;}
.ws17b{word-spacing:-0.914573px;}
.wsbf{word-spacing:-0.902880px;}
.wsc0{word-spacing:-0.861840px;}
.wsc1{word-spacing:-0.851580px;}
.ws13d{word-spacing:-0.836858px;}
.wsed{word-spacing:-0.794070px;}
.wsec{word-spacing:-0.784890px;}
.wsee{word-spacing:-0.757350px;}
.wseb{word-spacing:-0.752760px;}
.ws135{word-spacing:-0.717307px;}
.ws13f{word-spacing:-0.657532px;}
.ws127{word-spacing:-0.597756px;}
.ws167{word-spacing:-0.537984px;}
.ws30{word-spacing:-0.537980px;}
.ws45{word-spacing:-0.478205px;}
.ws72{word-spacing:-0.390179px;}
.ws137{word-spacing:-0.381171px;}
.ws17d{word-spacing:-0.376589px;}
.ws136{word-spacing:-0.358654px;}
.ws180{word-spacing:-0.322790px;}
.wsa7{word-spacing:-0.319838px;}
.ws64{word-spacing:-0.300208px;}
.ws2c{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.268992px;}
.ws79{word-spacing:-0.264528px;}
.wsa2{word-spacing:-0.259270px;}
.wsa5{word-spacing:-0.245590px;}
.ws3c{word-spacing:-0.239102px;}
.wse0{word-spacing:-0.231979px;}
.wscc{word-spacing:-0.225720px;}
.ws28{word-spacing:-0.215194px;}
.ws107{word-spacing:-0.199298px;}
.ws54{word-spacing:-0.179327px;}
.wsbd{word-spacing:-0.174420px;}
.wsbe{word-spacing:-0.169290px;}
.ws27{word-spacing:-0.161395px;}
.ws65{word-spacing:-0.136937px;}
.ws46{word-spacing:-0.119551px;}
.wsa3{word-spacing:-0.118264px;}
.ws9d{word-spacing:-0.107597px;}
.wse1{word-spacing:-0.105815px;}
.wsdd{word-spacing:-0.064869px;}
.ws11{word-spacing:-0.059776px;}
.ws25{word-spacing:-0.053798px;}
.ws164{word-spacing:-0.050364px;}
.ws1c{word-spacing:-0.047821px;}
.ws63{word-spacing:-0.021067px;}
.wsa1{word-spacing:-0.018194px;}
.wsdf{word-spacing:-0.016279px;}
.ws186{word-spacing:-0.008438px;}
.ws182{word-spacing:-0.003850px;}
.ws181{word-spacing:-0.003725px;}
.ws15{word-spacing:-0.003283px;}
.ws169{word-spacing:-0.002621px;}
.ws1b{word-spacing:-0.001433px;}
.ws1d{word-spacing:-0.001287px;}
.ws19{word-spacing:-0.000950px;}
.ws171{word-spacing:-0.000806px;}
.ws1e{word-spacing:-0.000746px;}
.ws20{word-spacing:-0.000600px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.001225px;}
.ws67{word-spacing:0.006613px;}
.ws154{word-spacing:0.025366px;}
.ws81{word-spacing:0.026453px;}
.wsa6{word-spacing:0.028557px;}
.ws4c{word-spacing:0.031364px;}
.ws68{word-spacing:0.039679px;}
.ws113{word-spacing:0.040882px;}
.ws5d{word-spacing:0.053798px;}
.ws2d{word-spacing:0.059776px;}
.wsac{word-spacing:0.068537px;}
.ws120{word-spacing:0.076653px;}
.ws9c{word-spacing:0.107597px;}
.ws106{word-spacing:0.110160px;}
.wsb7{word-spacing:0.114228px;}
.ws47{word-spacing:0.119551px;}
.wsf8{word-spacing:0.123930px;}
.ws6a{word-spacing:0.125651px;}
.ws134{word-spacing:0.130392px;}
.wsf9{word-spacing:0.142290px;}
.ws121{word-spacing:0.143086px;}
.wsc7{word-spacing:0.143640px;}
.ws15e{word-spacing:0.161395px;}
.wsc6{word-spacing:0.164160px;}
.ws3e{word-spacing:0.179327px;}
.ws69{word-spacing:0.191783px;}
.wsfa{word-spacing:0.201960px;}
.ws22{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws15d{word-spacing:0.268992px;}
.ws37{word-spacing:0.298878px;}
.ws18a{word-spacing:0.322790px;}
.wsa8{word-spacing:0.331261px;}
.ws2a{word-spacing:0.358654px;}
.ws9e{word-spacing:0.376589px;}
.ws78{word-spacing:0.376952px;}
.ws103{word-spacing:0.390150px;}
.ws11e{word-spacing:0.408816px;}
.ws4e{word-spacing:0.418429px;}
.ws5f{word-spacing:0.430387px;}
.ws101{word-spacing:0.436050px;}
.ws102{word-spacing:0.459000px;}
.ws6f{word-spacing:0.462924px;}
.ws2f{word-spacing:0.478205px;}
.ws9b{word-spacing:0.484186px;}
.ws52{word-spacing:0.537980px;}
.ws77{word-spacing:0.542282px;}
.ws142{word-spacing:0.568500px;}
.wsad{word-spacing:0.576851px;}
.ws163{word-spacing:0.591782px;}
.wsd2{word-spacing:0.597756px;}
.ws61{word-spacing:0.645581px;}
.ws14d{word-spacing:0.657532px;}
.ws116{word-spacing:0.694987px;}
.ws128{word-spacing:0.717307px;}
.ws11f{word-spacing:0.735869px;}
.wsef{word-spacing:0.748170px;}
.ws57{word-spacing:0.753000px;}
.ws185{word-spacing:0.753178px;}
.wsf0{word-spacing:0.757350px;}
.wsf1{word-spacing:0.771120px;}
.ws146{word-spacing:0.777083px;}
.ws62{word-spacing:0.806976px;}
.ws7e{word-spacing:0.833263px;}
.wsdb{word-spacing:0.860774px;}
.ws115{word-spacing:0.940277px;}
.ws112{word-spacing:0.955607px;}
.ws5c{word-spacing:0.968371px;}
.ws111{word-spacing:1.001599px;}
.ws7{word-spacing:1.004227px;}
.ws92{word-spacing:1.016185px;}
.ws24{word-spacing:1.022170px;}
.wsfe{word-spacing:1.055700px;}
.wsff{word-spacing:1.069470px;}
.ws105{word-spacing:1.074060px;}
.ws43{word-spacing:1.075961px;}
.ws104{word-spacing:1.092420px;}
.ws9a{word-spacing:1.129766px;}
.wsbb{word-spacing:1.133730px;}
.ws151{word-spacing:1.135736px;}
.ws100{word-spacing:1.147500px;}
.wsbc{word-spacing:1.149120px;}
.ws16e{word-spacing:1.183565px;}
.ws141{word-spacing:1.195512px;}
.ws7b{word-spacing:1.236668px;}
.ws117{word-spacing:1.251999px;}
.ws8f{word-spacing:1.255288px;}
.ws4d{word-spacing:1.315063px;}
.ws8e{word-spacing:1.374839px;}
.ws58{word-spacing:1.434614px;}
.ws26{word-spacing:1.560154px;}
.ws11d{word-spacing:1.584162px;}
.ws12a{word-spacing:1.613941px;}
.ws162{word-spacing:1.613952px;}
.wsea{word-spacing:1.675350px;}
.wse8{word-spacing:1.689120px;}
.wsae{word-spacing:1.713420px;}
.ws188{word-spacing:1.721549px;}
.wsb6{word-spacing:1.759111px;}
.ws98{word-spacing:1.775347px;}
.ws12f{word-spacing:1.793268px;}
.wsb5{word-spacing:1.793380px;}
.ws152{word-spacing:1.853044px;}
.wsca{word-spacing:1.867320px;}
.ws11a{word-spacing:1.890774px;}
.ws34{word-spacing:1.912819px;}
.wse9{word-spacing:1.923210px;}
.ws41{word-spacing:1.972595px;}
.ws97{word-spacing:2.044339px;}
.ws55{word-spacing:2.092146px;}
.ws129{word-spacing:2.211697px;}
.wscb{word-spacing:2.231550px;}
.ws4b{word-spacing:2.271473px;}
.ws7a{word-spacing:2.374139px;}
.wsb1{word-spacing:2.415922px;}
.ws166{word-spacing:2.420928px;}
.ws51{word-spacing:2.450800px;}
.ws165{word-spacing:2.474726px;}
.ws3{word-spacing:2.510521px;}
.ws4{word-spacing:2.510568px;}
.ws153{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws183{word-spacing:2.528525px;}
.wsfb{word-spacing:2.529090px;}
.wse4{word-spacing:2.561220px;}
.ws155{word-spacing:2.570351px;}
.ws160{word-spacing:2.582323px;}
.wsfd{word-spacing:2.584170px;}
.wsfc{word-spacing:2.616300px;}
.wse3{word-spacing:2.620890px;}
.ws125{word-spacing:2.689902px;}
.ws10c{word-spacing:2.805500px;}
.ws145{word-spacing:2.809453px;}
.wsc4{word-spacing:2.867670px;}
.ws14f{word-spacing:2.869229px;}
.ws21{word-spacing:2.869236px;}
.wsf2{word-spacing:2.873340px;}
.wsf3{word-spacing:2.877930px;}
.ws189{word-spacing:2.905114px;}
.wsc3{word-spacing:2.908710px;}
.ws10d{word-spacing:2.928145px;}
.wscf{word-spacing:2.929004px;}
.wsd0{word-spacing:2.988780px;}
.ws147{word-spacing:3.048556px;}
.ws39{word-spacing:3.108331px;}
.ws138{word-spacing:3.168107px;}
.ws17e{word-spacing:3.174106px;}
.ws184{word-spacing:3.216835px;}
.ws170{word-spacing:3.219610px;}
.ws16f{word-spacing:3.221030px;}
.ws16c{word-spacing:3.222787px;}
.ws17c{word-spacing:3.223296px;}
.ws16a{word-spacing:3.224717px;}
.ws187{word-spacing:3.225082px;}
.ws168{word-spacing:3.225533px;}
.ws16b{word-spacing:3.227741px;}
.ws4f{word-spacing:3.227882px;}
.ws178{word-spacing:3.227904px;}
.ws175{word-spacing:3.281702px;}
.ws132{word-spacing:3.287658px;}
.ws174{word-spacing:3.335501px;}
.ws3d{word-spacing:3.347434px;}
.wsdc{word-spacing:3.389299px;}
.ws143{word-spacing:3.407209px;}
.ws177{word-spacing:3.443098px;}
.ws109{word-spacing:3.444275px;}
.ws148{word-spacing:3.466985px;}
.ws108{word-spacing:3.495377px;}
.ws90{word-spacing:3.526760px;}
.ws29{word-spacing:3.586536px;}
.ws56{word-spacing:3.646312px;}
.ws8c{word-spacing:3.706087px;}
.ws158{word-spacing:3.765888px;}
.wsb4{word-spacing:3.792370px;}
.wsb3{word-spacing:3.820927px;}
.ws8b{word-spacing:3.885414px;}
.ws131{word-spacing:3.945190px;}
.ws9f{word-spacing:4.064741px;}
.ws157{word-spacing:4.088678px;}
.ws83{word-spacing:4.184292px;}
.wsb2{word-spacing:4.192168px;}
.ws176{word-spacing:4.196275px;}
.wsb9{word-spacing:4.216860px;}
.wsba{word-spacing:4.237380px;}
.ws15a{word-spacing:4.250074px;}
.wsb8{word-spacing:4.268160px;}
.ws49{word-spacing:4.423394px;}
.ws4a{word-spacing:4.483170px;}
.ws139{word-spacing:4.542946px;}
.ws82{word-spacing:4.602721px;}
.wse{word-spacing:4.770079px;}
.ws15f{word-spacing:4.841856px;}
.wsf{word-spacing:4.853765px;}
.ws3f{word-spacing:4.901599px;}
.ws5e{word-spacing:5.003251px;}
.ws2e{word-spacing:5.021150px;}
.wsa0{word-spacing:5.140702px;}
.ws42{word-spacing:5.200477px;}
.ws172{word-spacing:5.218445px;}
.ws2b{word-spacing:5.260253px;}
.ws15b{word-spacing:5.272243px;}
.ws31{word-spacing:5.320028px;}
.ws91{word-spacing:5.379804px;}
.ws3b{word-spacing:5.499355px;}
.ws75{word-spacing:5.555088px;}
.ws3a{word-spacing:5.559131px;}
.ws16d{word-spacing:5.595034px;}
.ws17f{word-spacing:5.648832px;}
.ws13e{word-spacing:5.678682px;}
.ws13a{word-spacing:5.738458px;}
.ws179{word-spacing:5.756429px;}
.ws10a{word-spacing:5.881840px;}
.ws10b{word-spacing:5.902281px;}
.ws80{word-spacing:5.938654px;}
.ws126{word-spacing:5.977560px;}
.ws76{word-spacing:5.978333px;}
.ws7f{word-spacing:6.024625px;}
.ws33{word-spacing:6.156887px;}
.ws14c{word-spacing:6.216662px;}
.ws159{word-spacing:6.240614px;}
.wsc2{word-spacing:6.279120px;}
.ws173{word-spacing:6.455808px;}
.wsf6{word-spacing:6.522390px;}
.wsd3{word-spacing:6.573000px;}
.ws14b{word-spacing:6.575400px;}
.wsf7{word-spacing:6.577470px;}
.wsf4{word-spacing:6.605010px;}
.wsf5{word-spacing:6.623370px;}
.ws15c{word-spacing:6.671002px;}
.ws150{word-spacing:6.694867px;}
.ws40{word-spacing:6.754643px;}
.ws11b{word-spacing:6.791456px;}
.ws14a{word-spacing:6.814418px;}
.ws161{word-spacing:6.832397px;}
.ws38{word-spacing:6.874194px;}
.ws1a{word-spacing:7.124030px;}
.ws8d{word-spacing:7.173072px;}
.wsb0{word-spacing:7.264901px;}
.wsaf{word-spacing:7.299169px;}
.wsde{word-spacing:7.370381px;}
.ws124{word-spacing:7.651277px;}
.ws14e{word-spacing:7.711052px;}
.ws144{word-spacing:7.770828px;}
.wsc{word-spacing:7.782761px;}
.ws13b{word-spacing:8.009930px;}
.wsce{word-spacing:8.392680px;}
.wscd{word-spacing:8.402940px;}
.ws44{word-spacing:8.488135px;}
.ws48{word-spacing:8.727238px;}
.ws99{word-spacing:8.984333px;}
.ws114{word-spacing:9.193250px;}
.ws6c{word-spacing:9.575914px;}
.ws6d{word-spacing:9.595753px;}
.wse2{word-spacing:9.877405px;}
.wse7{word-spacing:10.534050px;}
.wse5{word-spacing:10.547820px;}
.wse6{word-spacing:10.552410px;}
.wsa4{word-spacing:11.039452px;}
.wsa{word-spacing:12.176255px;}
.ws66{word-spacing:12.782524px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws14{word-spacing:40.036186px;}
.ws16{word-spacing:40.068708px;}
.ws1f{word-spacing:41.844000px;}
.ws12{word-spacing:46.608830px;}
.ws85{word-spacing:100.384244px;}
.ws84{word-spacing:104.120700px;}
.ws86{word-spacing:128.322900px;}
.ws87{word-spacing:132.014034px;}
.ws89{word-spacing:136.156471px;}
.ws8a{word-spacing:196.744846px;}
.ws88{word-spacing:206.410532px;}
._8{margin-left:-35.544868px;}
._a{margin-left:-11.943245px;}
._9{margin-left:-9.898906px;}
._4b{margin-left:-7.711056px;}
._f{margin-left:-6.634500px;}
._1{margin-left:-5.397721px;}
._3{margin-left:-3.849538px;}
._0{margin-left:-2.301354px;}
._2{margin-left:-1.255284px;}
._1e{width:1.011226px;}
._46{width:2.012396px;}
._5{width:3.096367px;}
._d{width:4.411230px;}
._c{width:5.917824px;}
._48{width:6.963030px;}
._49{width:8.923869px;}
._6{width:10.460700px;}
._16{width:11.955150px;}
._4{width:12.971268px;}
._11{width:14.740208px;}
._12{width:16.677504px;}
._1d{width:17.812537px;}
._13{width:18.948862px;}
._14{width:20.443255px;}
._15{width:21.937642px;}
._1c{width:22.977730px;}
._1a{width:25.105752px;}
._4e{width:26.648129px;}
._20{width:28.512958px;}
._7{width:30.587087px;}
._b{width:33.355008px;}
._44{width:35.046419px;}
._19{width:37.419526px;}
._1b{width:39.392120px;}
._4d{width:41.902692px;}
._4a{width:43.157983px;}
._e{width:54.367004px;}
._10{width:56.810873px;}
._50{width:61.868160px;}
._4f{width:88.767360px;}
._21{width:112.843343px;}
._3d{width:114.189001px;}
._37{width:149.211425px;}
._25{width:150.801451px;}
._32{width:170.676781px;}
._40{width:174.777376px;}
._31{width:176.200031px;}
._23{width:181.765123px;}
._38{width:185.405447px;}
._24{width:186.660731px;}
._35{width:193.481107px;}
._2e{width:195.866147px;}
._2f{width:202.017038px;}
._2c{width:209.799799px;}
._2b{width:211.389826px;}
._34{width:216.871232px;}
._2d{width:220.762613px;}
._26{width:222.352639px;}
._39{width:225.532692px;}
._27{width:228.503531px;}
._28{width:231.767269px;}
._2a{width:236.746562px;}
._29{width:238.462117px;}
._41{width:249.592302px;}
._3f{width:260.094845px;}
._3a{width:264.948610px;}
._42{width:292.230115px;}
._22{width:426.625490px;}
._3b{width:459.099202px;}
._33{width:480.606401px;}
._3c{width:529.102206px;}
._36{width:737.814092px;}
._43{width:770.995433px;}
._17{width:872.998421px;}
._30{width:980.042062px;}
._3e{width:1254.991100px;}
._47{width:1698.687837px;}
._45{width:1897.641207px;}
._1f{width:2197.588100px;}
._4c{width:2378.095511px;}
._18{width:2402.005511px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc7{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs11{font-size:40.698000px;}
.fs0{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fsd{font-size:45.486000px;}
.fs13{font-size:45.900000px;}
.fs14{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs12{font-size:51.102000px;}
.fsf{font-size:51.300000px;}
.fsb{font-size:52.668000px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs2{font-size:56.694600px;}
.fse{font-size:57.114000px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fsc{font-size:66.132000px;}
.fs3{font-size:68.033520px;}
.fs5{font-size:107.596800px;}
.y11f{bottom:-581.524567px;}
.y140{bottom:-526.436568px;}
.y13f{bottom:-510.066042px;}
.y13e{bottom:-493.695517px;}
.y13d{bottom:-477.401644px;}
.y13c{bottom:-461.031118px;}
.y13b{bottom:-444.737246px;}
.y13a{bottom:-428.366720px;}
.y139{bottom:-411.996194px;}
.y138{bottom:-395.702322px;}
.y137{bottom:-379.331796px;}
.y136{bottom:-363.037923px;}
.y135{bottom:-346.667397px;}
.y134{bottom:-330.296872px;}
.y133{bottom:-314.002999px;}
.y132{bottom:-297.632473px;}
.y131{bottom:-281.338601px;}
.ye4{bottom:-280.727423px;}
.y130{bottom:-264.968075px;}
.y12f{bottom:-244.847940px;}
.y12e{bottom:-213.484598px;}
.yfb{bottom:-209.336205px;}
.y12d{bottom:-198.719715px;}
.yfa{bottom:-192.920205px;}
.y12c{bottom:-184.031715px;}
.yf9{bottom:-176.504205px;}
.y12b{bottom:-169.343715px;}
.yf8{bottom:-160.002277px;}
.y12a{bottom:-154.578832px;}
.yf7{bottom:-143.586277px;}
.y129{bottom:-139.890832px;}
.yf6{bottom:-127.170277px;}
.y128{bottom:-125.202833px;}
.y88{bottom:-111.732060px;}
.yf5{bottom:-110.754278px;}
.y127{bottom:-110.514833px;}
.y126{bottom:-95.749950px;}
.yf4{bottom:-94.252350px;}
.y125{bottom:-81.061950px;}
.yf3{bottom:-77.836350px;}
.y124{bottom:-66.373950px;}
.yf2{bottom:-61.420350px;}
.y123{bottom:-51.685950px;}
.yf1{bottom:-45.004350px;}
.y122{bottom:-36.921067px;}
.yf0{bottom:-28.502423px;}
.y121{bottom:-22.233068px;}
.y9d{bottom:-14.603992px;}
.yef{bottom:-7.208477px;}
.y120{bottom:-3.184070px;}
.y0{bottom:0.000000px;}
.y1f{bottom:9.473101px;}
.y1e{bottom:28.937869px;}
.y4e{bottom:31.890000px;}
.y1d{bottom:32.769195px;}
.ye0{bottom:91.665000px;}
.y10e{bottom:98.454000px;}
.y1cc{bottom:101.812500px;}
.y182{bottom:103.158000px;}
.ya5{bottom:103.579500px;}
.y4d{bottom:103.621500px;}
.y1b{bottom:104.646000px;}
.y84{bottom:105.847500px;}
.ydf{bottom:110.494500px;}
.y14d{bottom:110.631000px;}
.y10d{bottom:117.283500px;}
.y1cb{bottom:120.642000px;}
.y181{bottom:121.987500px;}
.y4c{bottom:122.449500px;}
.y1a{bottom:122.535000px;}
.ya4{bottom:122.812500px;}
.y1f9{bottom:123.333000px;}
.y218{bottom:124.095000px;}
.y83{bottom:124.677000px;}
.y24e{bottom:127.546500px;}
.yde{bottom:129.324000px;}
.y14c{bottom:129.864000px;}
.y10c{bottom:136.113000px;}
.y1ca{bottom:139.471500px;}
.y19{bottom:140.422500px;}
.y180{bottom:140.817000px;}
.y4b{bottom:141.279000px;}
.ya3{bottom:142.045500px;}
.y1f8{bottom:142.162500px;}
.y82{bottom:143.506500px;}
.y24d{bottom:144.807000px;}
.ydd{bottom:148.153500px;}
.y14b{bottom:149.097000px;}
.y217{bottom:150.636000px;}
.y10b{bottom:154.942500px;}
.y1c9{bottom:158.301000px;}
.y18{bottom:158.310000px;}
.y17f{bottom:159.646500px;}
.y4a{bottom:160.108500px;}
.y1f7{bottom:160.992000px;}
.ya2{bottom:161.278500px;}
.y1a2{bottom:161.887500px;}
.y24c{bottom:162.067500px;}
.y81{bottom:162.336000px;}
.ydc{bottom:166.983000px;}
.y216{bottom:168.210000px;}
.y14a{bottom:168.328500px;}
.y10a{bottom:173.772000px;}
.y17{bottom:176.199000px;}
.y1c7{bottom:177.130500px;}
.y17e{bottom:178.476000px;}
.y49{bottom:178.938000px;}
.y24b{bottom:179.328000px;}
.y1f6{bottom:179.821500px;}
.ya1{bottom:180.511500px;}
.y1a1{bottom:180.717000px;}
.y80{bottom:181.165500px;}
.y1c8{bottom:182.556000px;}
.y215{bottom:185.784000px;}
.ydb{bottom:185.812500px;}
.y149{bottom:187.561500px;}
.y16{bottom:194.086500px;}
.y1c6{bottom:195.960000px;}
.y24a{bottom:196.588500px;}
.y17d{bottom:197.305500px;}
.y48{bottom:197.767500px;}
.y1a0{bottom:199.546500px;}
.ya0{bottom:199.744500px;}
.y7f{bottom:199.995000px;}
.y1f5{bottom:203.133000px;}
.yda{bottom:204.642000px;}
.y148{bottom:206.794500px;}
.y109{bottom:207.337500px;}
.y15{bottom:211.974000px;}
.y214{bottom:212.325000px;}
.y249{bottom:213.849000px;}
.y1c5{bottom:214.789500px;}
.y17c{bottom:216.135000px;}
.y47{bottom:216.597000px;}
.y19f{bottom:218.376000px;}
.y9f{bottom:218.977500px;}
.y7e{bottom:223.308000px;}
.yd9{bottom:223.471500px;}
.y147{bottom:226.027500px;}
.y108{bottom:226.570500px;}
.y14{bottom:229.863000px;}
.y213{bottom:229.899000px;}
.y248{bottom:231.109500px;}
.y17b{bottom:234.964500px;}
.y46{bottom:235.426500px;}
.y1f4{bottom:236.757000px;}
.y19e{bottom:237.205500px;}
.y1c4{bottom:238.102500px;}
.y9e{bottom:238.210500px;}
.yd8{bottom:242.301000px;}
.y7d{bottom:243.481500px;}
.y146{bottom:245.260500px;}
.y107{bottom:245.803500px;}
.y212{bottom:247.473000px;}
.y247{bottom:248.368500px;}
.y17a{bottom:253.794000px;}
.y45{bottom:254.256000px;}
.y1f3{bottom:255.586500px;}
.y19d{bottom:256.035000px;}
.y85{bottom:260.639505px;}
.yd7{bottom:261.130500px;}
.y145{bottom:264.493500px;}
.y106{bottom:265.036500px;}
.y246{bottom:265.629000px;}
.y1c3{bottom:271.726500px;}
.y179{bottom:272.623500px;}
.y211{bottom:274.012500px;}
.y1f2{bottom:274.416000px;}
.y19c{bottom:274.864500px;}
.y7c{bottom:277.105500px;}
.y44{bottom:277.569000px;}
.yd6{bottom:279.960000px;}
.y245{bottom:282.889500px;}
.y144{bottom:283.726500px;}
.y105{bottom:284.269500px;}
.y1c2{bottom:290.556000px;}
.y178{bottom:291.453000px;}
.y210{bottom:291.586500px;}
.y1f1{bottom:293.245500px;}
.y19b{bottom:293.694000px;}
.y7b{bottom:295.935000px;}
.yd5{bottom:298.789500px;}
.y244{bottom:300.150000px;}
.y13{bottom:300.154500px;}
.y143{bottom:302.959500px;}
.y104{bottom:303.502500px;}
.y20f{bottom:309.162000px;}
.y1c0{bottom:309.385500px;}
.y177{bottom:310.282500px;}
.y1f0{bottom:312.075000px;}
.y19a{bottom:312.523500px;}
.y7a{bottom:314.764500px;}
.y1c1{bottom:314.809500px;}
.y243{bottom:317.410500px;}
.yd4{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y142{bottom:322.192500px;}
.y103{bottom:322.735500px;}
.y20e{bottom:326.736000px;}
.y1bf{bottom:328.215000px;}
.y279{bottom:328.887000px;}
.y176{bottom:329.112000px;}
.y1ef{bottom:330.904500px;}
.y199{bottom:331.353000px;}
.y79{bottom:333.594000px;}
.y242{bottom:334.671000px;}
.y11{bottom:335.931000px;}
.yd3{bottom:336.448500px;}
.y141{bottom:341.425500px;}
.y102{bottom:341.968500px;}
.y20d{bottom:344.310000px;}
.y278{bottom:346.147500px;}
.y1be{bottom:347.044500px;}
.y175{bottom:347.940000px;}
.y1ed{bottom:349.734000px;}
.y198{bottom:350.182500px;}
.y241{bottom:351.931500px;}
.y78{bottom:352.423500px;}
.y43{bottom:352.719000px;}
.y10{bottom:353.818500px;}
.y1ee{bottom:355.159500px;}
.yd2{bottom:355.278000px;}
.y101{bottom:361.201500px;}
.y20c{bottom:361.884000px;}
.y277{bottom:363.408000px;}
.y11c{bottom:363.853500px;}
.y1bd{bottom:365.874000px;}
.y174{bottom:366.769500px;}
.y1ec{bottom:368.563500px;}
.y197{bottom:369.012000px;}
.y240{bottom:369.192000px;}
.y77{bottom:371.253000px;}
.y42{bottom:372.175500px;}
.yd1{bottom:374.107500px;}
.y20b{bottom:379.458000px;}
.y100{bottom:380.433000px;}
.y276{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y11e{bottom:382.452047px;}
.y1bb{bottom:384.703500px;}
.y173{bottom:385.599000px;}
.y23f{bottom:386.451000px;}
.y1eb{bottom:387.393000px;}
.y196{bottom:387.841500px;}
.y76{bottom:390.082500px;}
.y1bc{bottom:390.127500px;}
.y11d{bottom:390.637433px;}
.yd0{bottom:392.937000px;}
.y275{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.yff{bottom:399.666000px;}
.y1ba{bottom:403.533000px;}
.y23e{bottom:403.711500px;}
.y172{bottom:404.428500px;}
.y20a{bottom:405.999000px;}
.y1ea{bottom:406.222500px;}
.y195{bottom:406.671000px;}
.y75{bottom:408.912000px;}
.y41{bottom:409.566000px;}
.y274{bottom:415.188000px;}
.ycf{bottom:416.250000px;}
.yd{bottom:416.449500px;}
.yfe{bottom:418.899000px;}
.y23d{bottom:420.972000px;}
.y1b9{bottom:422.362500px;}
.y171{bottom:423.258000px;}
.y209{bottom:424.044000px;}
.y1e9{bottom:425.052000px;}
.y194{bottom:425.500500px;}
.y74{bottom:427.741500px;}
.y40{bottom:429.022500px;}
.y273{bottom:432.448500px;}
.yfd{bottom:438.132000px;}
.y23c{bottom:438.232500px;}
.y1b8{bottom:441.192000px;}
.y170{bottom:442.087500px;}
.y193{bottom:444.330000px;}
.yc{bottom:444.798000px;}
.y73{bottom:446.571000px;}
.y1e8{bottom:448.365000px;}
.y3f{bottom:448.480500px;}
.y272{bottom:449.709000px;}
.y23b{bottom:455.493000px;}
.yfc{bottom:457.365000px;}
.yce{bottom:459.127500px;}
.y208{bottom:460.021500px;}
.y16f{bottom:460.917000px;}
.y1b7{bottom:464.503500px;}
.y72{bottom:465.400500px;}
.y271{bottom:466.969500px;}
.y192{bottom:467.643000px;}
.y3e{bottom:467.937000px;}
.y1e7{bottom:468.538500px;}
.ycd{bottom:471.084000px;}
.yb{bottom:471.652500px;}
.y23a{bottom:472.753500px;}
.y207{bottom:478.851000px;}
.y16e{bottom:479.746500px;}
.ye1{bottom:482.782500px;}
.ycc{bottom:483.039000px;}
.y71{bottom:484.230000px;}
.y3d{bottom:487.393500px;}
.ya{bottom:489.540000px;}
.y239{bottom:490.014000px;}
.ycb{bottom:494.994000px;}
.y206{bottom:497.680500px;}
.y1b6{bottom:498.127500px;}
.y16d{bottom:498.576000px;}
.y191{bottom:501.267000px;}
.y270{bottom:501.490500px;}
.y1e6{bottom:502.162500px;}
.y70{bottom:503.059500px;}
.y3c{bottom:506.851500px;}
.yca{bottom:506.949000px;}
.y238{bottom:507.274500px;}
.y9{bottom:507.429000px;}
.y205{bottom:516.508500px;}
.y1b5{bottom:516.957000px;}
.y16c{bottom:517.405500px;}
.y26f{bottom:518.751000px;}
.yc9{bottom:518.904000px;}
.y190{bottom:520.095000px;}
.y1e5{bottom:520.992000px;}
.y6f{bottom:521.889000px;}
.y237{bottom:524.535000px;}
.y8{bottom:525.316500px;}
.y3b{bottom:526.308000px;}
.yc8{bottom:530.859000px;}
.y204{bottom:535.338000px;}
.y1b4{bottom:535.786500px;}
.y26e{bottom:536.011500px;}
.y16b{bottom:536.235000px;}
.y18f{bottom:538.924500px;}
.y1e4{bottom:539.821500px;}
.y6e{bottom:540.718500px;}
.y236{bottom:541.794000px;}
.yc7{bottom:542.814000px;}
.y7{bottom:543.204000px;}
.y3a{bottom:545.766000px;}
.y26d{bottom:553.272000px;}
.y203{bottom:554.167500px;}
.y1b3{bottom:554.616000px;}
.yc6{bottom:554.769000px;}
.y16a{bottom:555.064500px;}
.y18d{bottom:557.754000px;}
.y1e3{bottom:558.651000px;}
.y235{bottom:559.054500px;}
.y6d{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y18e{bottom:563.179500px;}
.y39{bottom:565.222500px;}
.yc5{bottom:566.724000px;}
.y26c{bottom:570.531000px;}
.y202{bottom:572.997000px;}
.y1b2{bottom:573.445500px;}
.y169{bottom:573.894000px;}
.yee{bottom:576.072532px;}
.y234{bottom:576.315000px;}
.y18c{bottom:576.583500px;}
.y1e2{bottom:577.480500px;}
.y6c{bottom:578.377500px;}
.yc4{bottom:578.680500px;}
.y5{bottom:578.980500px;}
.y38{bottom:584.679000px;}
.y26b{bottom:587.791500px;}
.yc3{bottom:590.635500px;}
.y201{bottom:591.826500px;}
.y1b0{bottom:592.275000px;}
.y168{bottom:592.723500px;}
.y233{bottom:593.575500px;}
.yed{bottom:594.283331px;}
.y18b{bottom:595.413000px;}
.y1e1{bottom:596.310000px;}
.y4{bottom:596.868000px;}
.y6b{bottom:597.207000px;}
.y1b1{bottom:597.700500px;}
.yc2{bottom:602.590500px;}
.y37{bottom:604.137000px;}
.y26a{bottom:605.052000px;}
.y200{bottom:610.656000px;}
.y232{bottom:610.836000px;}
.y1af{bottom:611.104500px;}
.y167{bottom:611.553000px;}
.yec{bottom:612.579801px;}
.y18a{bottom:614.242500px;}
.yc1{bottom:614.545500px;}
.y3{bottom:614.757000px;}
.y1e0{bottom:615.139500px;}
.y6a{bottom:616.036500px;}
.y269{bottom:622.312500px;}
.yc0{bottom:626.500500px;}
.y231{bottom:628.096500px;}
.y1ff{bottom:629.485500px;}
.y1ae{bottom:629.934000px;}
.y166{bottom:630.382500px;}
.yeb{bottom:630.876271px;}
.y2{bottom:632.644500px;}
.y189{bottom:633.072000px;}
.y1df{bottom:633.969000px;}
.y69{bottom:634.866000px;}
.ybf{bottom:638.455500px;}
.y268{bottom:639.573000px;}
.y36{bottom:642.717000px;}
.y230{bottom:645.357000px;}
.y1fe{bottom:648.315000px;}
.y1ad{bottom:648.763500px;}
.yea{bottom:649.087070px;}
.y165{bottom:649.212000px;}
.ybe{bottom:650.410500px;}
.y1{bottom:650.532000px;}
.y188{bottom:651.901500px;}
.y1dd{bottom:652.798500px;}
.y68{bottom:653.695500px;}
.y267{bottom:656.833500px;}
.y1de{bottom:658.222500px;}
.y35{bottom:658.855500px;}
.ybd{bottom:662.365500px;}
.y22f{bottom:662.617500px;}
.y9c{bottom:663.941741px;}
.ye9{bottom:667.383540px;}
.y1ac{bottom:667.593000px;}
.y164{bottom:668.041500px;}
.y187{bottom:670.731000px;}
.y1dc{bottom:671.628000px;}
.y67{bottom:672.525000px;}
.y266{bottom:674.094000px;}
.ybc{bottom:674.320500px;}
.y34{bottom:674.995500px;}
.y22e{bottom:679.876500px;}
.y9b{bottom:685.027929px;}
.ye8{bottom:685.594338px;}
.ybb{bottom:686.277000px;}
.y1ab{bottom:686.422500px;}
.y163{bottom:686.871000px;}
.y186{bottom:689.560500px;}
.y1db{bottom:690.457500px;}
.y66{bottom:691.354500px;}
.y33{bottom:695.475000px;}
.y22d{bottom:697.137000px;}
.yba{bottom:698.232000px;}
.ye7{bottom:703.890808px;}
.y1aa{bottom:705.252000px;}
.y162{bottom:705.700500px;}
.y9a{bottom:706.213316px;}
.y1da{bottom:706.557000px;}
.y185{bottom:708.390000px;}
.y265{bottom:708.613500px;}
.y1d9{bottom:709.287000px;}
.y65{bottom:710.184000px;}
.yb9{bottom:710.187000px;}
.y32{bottom:711.613500px;}
.y22c{bottom:714.397500px;}
.yb8{bottom:722.142000px;}
.ye6{bottom:722.187278px;}
.y1a9{bottom:724.081500px;}
.y161{bottom:724.530000px;}
.y264{bottom:725.874000px;}
.y99{bottom:727.299504px;}
.y31{bottom:727.753500px;}
.y1d8{bottom:728.116500px;}
.y11b{bottom:728.565000px;}
.y64{bottom:729.013500px;}
.y22b{bottom:731.658000px;}
.y184{bottom:731.703000px;}
.yb7{bottom:734.097000px;}
.y1a8{bottom:742.911000px;}
.y263{bottom:743.134500px;}
.y160{bottom:743.359500px;}
.y30{bottom:743.893500px;}
.ye5{bottom:744.674488px;}
.yb6{bottom:746.052000px;}
.y1d7{bottom:746.946000px;}
.y11a{bottom:747.394500px;}
.y63{bottom:747.843000px;}
.y98{bottom:748.484890px;}
.y22a{bottom:748.918500px;}
.y183{bottom:751.876500px;}
.yb5{bottom:758.007000px;}
.y2f{bottom:760.033500px;}
.y262{bottom:760.395000px;}
.y1a7{bottom:761.740500px;}
.y15f{bottom:762.189000px;}
.y1d6{bottom:765.775500px;}
.y229{bottom:766.179000px;}
.y119{bottom:766.224000px;}
.y62{bottom:766.671000px;}
.y97{bottom:769.670276px;}
.yb4{bottom:769.962000px;}
.y2e{bottom:771.832500px;}
.y261{bottom:777.655500px;}
.y1a6{bottom:777.840000px;}
.y1a5{bottom:780.570000px;}
.y15e{bottom:781.018500px;}
.yb3{bottom:781.918500px;}
.y228{bottom:783.439500px;}
.y1d5{bottom:784.605000px;}
.y118{bottom:785.053500px;}
.y61{bottom:785.500500px;}
.y96{bottom:790.758118px;}
.y2d{bottom:792.312000px;}
.yb2{bottom:793.873500px;}
.y260{bottom:794.916000px;}
.ye3{bottom:796.658206px;}
.y1a4{bottom:799.399500px;}
.y15d{bottom:799.848000px;}
.y227{bottom:800.700000px;}
.y117{bottom:803.883000px;}
.y2c{bottom:804.112500px;}
.y60{bottom:804.330000px;}
.ye2{bottom:805.806578px;}
.yb1{bottom:805.828500px;}
.y1d4{bottom:807.918000px;}
.y95{bottom:811.943504px;}
.y25f{bottom:812.176500px;}
.yb0{bottom:817.783500px;}
.y1fd{bottom:818.229000px;}
.y15c{bottom:818.677500px;}
.y226{bottom:822.442500px;}
.y116{bottom:822.712500px;}
.y5f{bottom:823.159500px;}
.y2b{bottom:824.590500px;}
.y25e{bottom:829.437000px;}
.yaf{bottom:829.738500px;}
.y94{bottom:833.029692px;}
.y2a{bottom:836.391000px;}
.y1fc{bottom:837.058500px;}
.y15b{bottom:837.507000px;}
.y115{bottom:841.540500px;}
.yae{bottom:841.693500px;}
.y5e{bottom:841.989000px;}
.y25d{bottom:846.697500px;}
.y93{bottom:854.215078px;}
.y1fb{bottom:855.888000px;}
.y15a{bottom:856.335000px;}
.y29{bottom:856.870500px;}
.y225{bottom:859.204500px;}
.y114{bottom:860.370000px;}
.y5d{bottom:860.818500px;}
.yad{bottom:860.851500px;}
.y25c{bottom:863.956500px;}
.ya8{bottom:870.430500px;}
.yaa{bottom:871.708500px;}
.yac{bottom:872.806500px;}
.y28{bottom:873.009000px;}
.y159{bottom:875.164500px;}
.y92{bottom:875.400464px;}
.ya7{bottom:876.631500px;}
.y224{bottom:876.780000px;}
.y113{bottom:879.199500px;}
.y5c{bottom:879.648000px;}
.y25b{bottom:881.217000px;}
.ya9{bottom:883.663500px;}
.y27{bottom:889.149000px;}
.yab{bottom:891.964500px;}
.y158{bottom:893.994000px;}
.y91{bottom:896.486653px;}
.y112{bottom:898.029000px;}
.y5b{bottom:898.477500px;}
.y1a3{bottom:899.419500px;}
.y223{bottom:903.319500px;}
.y1d3{bottom:903.454500px;}
.y157{bottom:912.823500px;}
.y25a{bottom:915.738000px;}
.y111{bottom:916.858500px;}
.y5a{bottom:917.307000px;}
.y90{bottom:917.672039px;}
.y222{bottom:920.893500px;}
.ya6{bottom:923.434500px;}
.y156{bottom:931.653000px;}
.y259{bottom:932.998500px;}
.y26{bottom:933.820500px;}
.y110{bottom:935.688000px;}
.y59{bottom:936.136500px;}
.y221{bottom:938.467500px;}
.y8f{bottom:938.857425px;}
.y258{bottom:950.259000px;}
.y155{bottom:950.482500px;}
.y25{bottom:952.650000px;}
.y1d1{bottom:954.517500px;}
.y58{bottom:954.966000px;}
.y220{bottom:956.041500px;}
.y10f{bottom:959.001000px;}
.y1d2{bottom:959.943000px;}
.y8e{bottom:959.945267px;}
.y257{bottom:967.519500px;}
.y154{bottom:969.312000px;}
.y24{bottom:971.479500px;}
.y1d0{bottom:973.347000px;}
.y21f{bottom:973.617000px;}
.y57{bottom:973.795500px;}
.y8d{bottom:981.130653px;}
.y256{bottom:984.780000px;}
.y153{bottom:988.141500px;}
.y21e{bottom:991.191000px;}
.y1cf{bottom:992.176500px;}
.y56{bottom:992.625000px;}
.y254{bottom:1002.039000px;}
.y255{bottom:1002.040500px;}
.y8c{bottom:1002.216841px;}
.y152{bottom:1006.971000px;}
.y23{bottom:1008.241500px;}
.y21d{bottom:1008.765000px;}
.y55{bottom:1011.454500px;}
.y1ce{bottom:1015.489500px;}
.y253{bottom:1019.299500px;}
.y151{bottom:1025.800500px;}
.y21c{bottom:1026.339000px;}
.y8b{bottom:1028.352207px;}
.y54{bottom:1030.284000px;}
.y22{bottom:1036.485000px;}
.y252{bottom:1036.560000px;}
.y21b{bottom:1043.913000px;}
.y150{bottom:1044.630000px;}
.y53{bottom:1049.113500px;}
.y8a{bottom:1049.537594px;}
.y1fa{bottom:1050.055500px;}
.y251{bottom:1053.820500px;}
.y21a{bottom:1061.487000px;}
.y14f{bottom:1063.459500px;}
.y21{bottom:1064.730000px;}
.y52{bottom:1067.943000px;}
.y250{bottom:1071.081000px;}
.y89{bottom:1075.575415px;}
.y14e{bottom:1082.289000px;}
.y51{bottom:1086.772500px;}
.y219{bottom:1088.028000px;}
.y24f{bottom:1088.341500px;}
.y1cd{bottom:1092.196500px;}
.y20{bottom:1092.973500px;}
.y50{bottom:1105.602000px;}
.y87{bottom:1135.767089px;}
.y1c{bottom:1136.461500px;}
.y86{bottom:1146.359940px;}
.y4f{bottom:1168.366500px;}
.h1b{height:30.126816px;}
.h2e{height:31.526842px;}
.ha{height:32.565965px;}
.h4{height:35.876343px;}
.h25{height:37.334628px;}
.hf{height:37.551283px;}
.h32{height:37.605082px;}
.h29{height:37.637701px;}
.h28{height:37.856294px;}
.h2{height:37.993262px;}
.hd{height:38.734848px;}
.h5{height:39.402747px;}
.h2f{height:41.250077px;}
.h22{height:41.441115px;}
.h13{height:41.482876px;}
.h12{height:41.723369px;}
.h20{height:42.065666px;}
.h1f{height:42.309976px;}
.h2c{height:42.448535px;}
.h26{height:42.500452px;}
.h2b{height:42.695068px;}
.h10{height:43.038432px;}
.hb{height:43.421105px;}
.hc{height:43.660208px;}
.h7{height:43.875290px;}
.h6{height:46.126727px;}
.h2a{height:47.259369px;}
.h24{height:47.442480px;}
.h2d{height:47.533843px;}
.h23{height:47.718018px;}
.h19{height:47.984449px;}
.h16{height:48.707613px;}
.he{height:48.848947px;}
.h15{height:48.990498px;}
.h31{height:49.117939px;}
.h3{height:50.931027px;}
.h21{height:52.819295px;}
.h1a{height:53.142816px;}
.h1d{height:54.036816px;}
.h11{height:54.276245px;}
.h1c{height:54.462816px;}
.h30{height:54.575123px;}
.h9{height:55.352206px;}
.h17{height:61.159184px;}
.h18{height:61.514385px;}
.h8{height:77.469696px;}
.h27{height:341.067600px;}
.h1e{height:544.455450px;}
.h14{height:633.024645px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w3{width:383.283450px;}
.w5{width:572.914747px;}
.w4{width:732.432472px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x51{left:-223.292850px;}
.x90{left:-57.961628px;}
.x52{left:-8.165454px;}
.x6f{left:-6.365903px;}
.x0{left:0.000000px;}
.x53{left:26.881199px;}
.x4{left:52.525500px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.x59{left:69.643500px;}
.x6e{left:80.029927px;}
.x64{left:84.022500px;}
.xef{left:85.323000px;}
.x63{left:86.637000px;}
.x92{left:108.272873px;}
.x93{left:135.354377px;}
.x70{left:179.425939px;}
.x2{left:181.274369px;}
.x71{left:209.694932px;}
.x5a{left:213.370500px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x69{left:260.749500px;}
.xd8{left:262.068000px;}
.x68{left:265.236000px;}
.x6{left:269.914500px;}
.x6a{left:274.398000px;}
.xb{left:276.148500px;}
.x43{left:277.800000px;}
.xd1{left:279.652500px;}
.xd{left:282.196500px;}
.x5c{left:283.734000px;}
.xc{left:288.885000px;}
.x44{left:291.444000px;}
.xdb{left:292.972500px;}
.xe{left:294.450000px;}
.x5b{left:296.340000px;}
.x57{left:303.111000px;}
.x55{left:306.838500px;}
.x8{left:308.157000px;}
.x1a{left:309.747000px;}
.x47{left:313.170000px;}
.x27{left:315.565500px;}
.x1b{left:317.218500px;}
.x13{left:319.914000px;}
.xf{left:322.104000px;}
.x1c{left:328.356000px;}
.x28{left:331.003500px;}
.xe5{left:332.430000px;}
.x10{left:334.371000px;}
.xbc{left:335.406000px;}
.xe3{left:338.188500px;}
.x9b{left:340.159500px;}
.x34{left:342.099000px;}
.xdd{left:344.043000px;}
.xa9{left:348.562500px;}
.xb5{left:354.721500px;}
.xde{left:356.334000px;}
.x9c{left:363.612000px;}
.xac{left:366.136500px;}
.xaa{left:368.524500px;}
.xb6{left:369.664500px;}
.xc0{left:370.735500px;}
.xda{left:373.494000px;}
.x9d{left:374.815500px;}
.xdf{left:376.302000px;}
.xee{left:377.817000px;}
.x77{left:379.462500px;}
.xad{left:381.079500px;}
.xb7{left:382.405500px;}
.x6d{left:383.559000px;}
.x9e{left:386.845500px;}
.xd9{left:389.974500px;}
.x78{left:392.091000px;}
.xec{left:393.784500px;}
.x4a{left:396.786000px;}
.x54{left:398.724902px;}
.x7d{left:400.071000px;}
.x9f{left:401.275500px;}
.xe1{left:402.381000px;}
.x87{left:405.499500px;}
.xa0{left:409.624500px;}
.x35{left:411.864000px;}
.xa6{left:413.455500px;}
.xd0{left:415.626000px;}
.x72{left:416.769000px;}
.x29{left:418.615500px;}
.xe2{left:420.789000px;}
.x4b{left:424.401000px;}
.x36{left:426.807000px;}
.xed{left:427.984500px;}
.x73{left:429.561000px;}
.x14{left:431.706000px;}
.x2a{left:433.560000px;}
.x7f{left:434.988000px;}
.x15{left:439.177500px;}
.x4c{left:440.449500px;}
.x8a{left:443.965500px;}
.x80{left:447.270000px;}
.xe4{left:448.375500px;}
.x45{left:451.783500px;}
.xc9{left:453.622500px;}
.x5f{left:455.475000px;}
.xcd{left:456.945000px;}
.x8b{left:457.992000px;}
.xb8{left:460.167000px;}
.x86{left:463.774500px;}
.x46{left:465.634500px;}
.x5e{left:470.025000px;}
.xa5{left:473.586000px;}
.xb9{left:475.111500px;}
.x25{left:477.375000px;}
.xba{left:478.866000px;}
.x16{left:487.437000px;}
.x98{left:488.742000px;}
.x26{left:491.034000px;}
.x8f{left:492.694500px;}
.xbb{left:493.809000px;}
.x17{left:494.910000px;}
.xc8{left:497.161500px;}
.x18{left:498.720000px;}
.x1d{left:501.024000px;}
.xd2{left:502.636500px;}
.xae{left:504.249000px;}
.x19{left:506.193000px;}
.x1e{left:510.925500px;}
.xa4{left:516.481500px;}
.x79{left:517.692000px;}
.xbd{left:522.610500px;}
.x66{left:524.422500px;}
.x60{left:527.247000px;}
.x5d{left:528.754500px;}
.x7a{left:529.953000px;}
.xa1{left:531.355500px;}
.x2f{left:535.644000px;}
.xcc{left:537.460500px;}
.x67{left:539.071500px;}
.x30{left:549.289500px;}
.xeb{left:553.300500px;}
.x9{left:558.559500px;}
.x88{left:562.759500px;}
.x8e{left:564.361500px;}
.xa{left:567.469500px;}
.x99{left:570.811500px;}
.x89{left:576.430500px;}
.xea{left:577.503000px;}
.xc3{left:579.300000px;}
.xe6{left:581.569500px;}
.xc1{left:586.675500px;}
.x62{left:589.251000px;}
.xc4{left:595.269000px;}
.x61{left:596.535000px;}
.x91{left:598.867709px;}
.xc2{left:601.240500px;}
.xaf{left:605.605500px;}
.xa3{left:609.858000px;}
.xc5{left:613.216500px;}
.xb0{left:615.505500px;}
.x8c{left:617.845500px;}
.xe7{left:618.909000px;}
.xe0{left:619.947000px;}
.xc7{left:631.372500px;}
.x11{left:632.733000px;}
.x8d{left:633.861000px;}
.xce{left:635.598000px;}
.xf0{left:637.266000px;}
.xd5{left:638.770500px;}
.x12{left:645.000000px;}
.xf1{left:646.177500px;}
.x2b{left:648.099000px;}
.xcf{left:650.541000px;}
.x48{left:654.679500px;}
.x85{left:656.563500px;}
.xdc{left:660.742500px;}
.x2c{left:661.900500px;}
.xd3{left:663.486000px;}
.xe9{left:665.458500px;}
.x1f{left:667.557000px;}
.x49{left:670.708500px;}
.x94{left:673.651500px;}
.x81{left:675.399000px;}
.x21{left:678.357000px;}
.x20{left:681.175500px;}
.x31{left:682.981500px;}
.x97{left:685.524000px;}
.x74{left:688.788000px;}
.x32{left:690.543000px;}
.xab{left:691.746000px;}
.x22{left:693.480000px;}
.x3d{left:695.361000px;}
.x58{left:697.402500px;}
.x33{left:705.486000px;}
.x41{left:707.644500px;}
.x3b{left:708.823500px;}
.x3e{left:710.305500px;}
.x95{left:712.267500px;}
.xcb{left:716.103000px;}
.x3f{left:717.927000px;}
.xc6{left:721.321500px;}
.x42{left:722.589000px;}
.x3c{left:723.768000px;}
.xd6{left:728.677500px;}
.xd4{left:730.723500px;}
.x40{left:732.871500px;}
.x75{left:734.227500px;}
.x7b{left:736.785000px;}
.x4f{left:739.282500px;}
.xf5{left:742.483500px;}
.x7e{left:743.569500px;}
.x82{left:745.152000px;}
.xd7{left:747.709500px;}
.x96{left:748.806000px;}
.x7c{left:751.198500px;}
.xbe{left:754.936500px;}
.x50{left:756.013500px;}
.xf3{left:757.150500px;}
.x23{left:760.003500px;}
.xbf{left:763.231500px;}
.x83{left:764.685000px;}
.xf6{left:769.383000px;}
.x2d{left:770.671500px;}
.xa2{left:771.784500px;}
.xb2{left:773.817000px;}
.x24{left:774.948000px;}
.x84{left:779.628000px;}
.x76{left:781.027500px;}
.x4d{left:784.053000px;}
.x2e{left:785.616000px;}
.xb3{left:787.444500px;}
.xe8{left:789.603000px;}
.x65{left:790.675500px;}
.xa7{left:794.664000px;}
.x56{left:795.913500px;}
.x4e{left:800.689500px;}
.x37{left:806.415000px;}
.xa8{left:807.592500px;}
.xca{left:809.323500px;}
.xf2{left:810.366000px;}
.x6b{left:812.040000px;}
.x38{left:813.886500px;}
.xf4{left:816.022500px;}
.x39{left:817.698000px;}
.x9a{left:823.558500px;}
.x6c{left:825.684000px;}
.xb4{left:829.012500px;}
.x3a{left:832.642500px;}
.xb1{left:836.317500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.549333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:20.458667pt;}
.v5{vertical-align:21.632000pt;}
.ls50{letter-spacing:-1.062480pt;}
.ls7c{letter-spacing:-0.273360pt;}
.ls7d{letter-spacing:-0.257040pt;}
.ls49{letter-spacing:-0.228456pt;}
.ls77{letter-spacing:-0.212160pt;}
.ls84{letter-spacing:-0.204408pt;}
.ls4a{letter-spacing:-0.131997pt;}
.ls87{letter-spacing:-0.095390pt;}
.ls85{letter-spacing:-0.086306pt;}
.ls23{letter-spacing:-0.082298pt;}
.ls22{letter-spacing:-0.070224pt;}
.ls7f{letter-spacing:-0.069360pt;}
.ls45{letter-spacing:-0.060648pt;}
.ls8a{letter-spacing:-0.059051pt;}
.ls73{letter-spacing:-0.054264pt;}
.ls82{letter-spacing:-0.045424pt;}
.ls7e{letter-spacing:-0.044880pt;}
.ls28{letter-spacing:-0.041149pt;}
.ls89{letter-spacing:-0.040882pt;}
.ls7a{letter-spacing:-0.040800pt;}
.ls48{letter-spacing:-0.040614pt;}
.ls4c{letter-spacing:-0.030461pt;}
.ls29{letter-spacing:-0.029392pt;}
.ls81{letter-spacing:-0.027254pt;}
.ls4e{letter-spacing:-0.025384pt;}
.ls79{letter-spacing:-0.024480pt;}
.ls24{letter-spacing:-0.023514pt;}
.ls51{letter-spacing:-0.022800pt;}
.ls88{letter-spacing:-0.022712pt;}
.ls80{letter-spacing:-0.020400pt;}
.ls26{letter-spacing:-0.017635pt;}
.ls74{letter-spacing:-0.016320pt;}
.ls53{letter-spacing:-0.013680pt;}
.ls78{letter-spacing:-0.012240pt;}
.ls27{letter-spacing:-0.011757pt;}
.ls46{letter-spacing:-0.010154pt;}
.ls52{letter-spacing:-0.009120pt;}
.ls83{letter-spacing:-0.009085pt;}
.ls75{letter-spacing:-0.008160pt;}
.ls25{letter-spacing:-0.005878pt;}
.ls4f{letter-spacing:-0.004560pt;}
.ls86{letter-spacing:-0.004542pt;}
.ls76{letter-spacing:-0.004080pt;}
.lsd{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000518pt;}
.ls95{letter-spacing:0.000711pt;}
.ls96{letter-spacing:0.000921pt;}
.ls97{letter-spacing:0.001026pt;}
.ls70{letter-spacing:0.001082pt;}
.lsa3{letter-spacing:0.001158pt;}
.ls93{letter-spacing:0.001319pt;}
.ls8{letter-spacing:0.001398pt;}
.lsa{letter-spacing:0.001735pt;}
.ls91{letter-spacing:0.001767pt;}
.ls2c{letter-spacing:0.002046pt;}
.ls98{letter-spacing:0.002262pt;}
.ls2{letter-spacing:0.002422pt;}
.ls9{letter-spacing:0.003100pt;}
.ls1{letter-spacing:0.003733pt;}
.ls5c{letter-spacing:0.004080pt;}
.ls44{letter-spacing:0.004147pt;}
.ls92{letter-spacing:0.004226pt;}
.ls9b{letter-spacing:0.004267pt;}
.ls37{letter-spacing:0.004560pt;}
.ls17{letter-spacing:0.005878pt;}
.ls5b{letter-spacing:0.008160pt;}
.ls66{letter-spacing:0.009085pt;}
.ls42{letter-spacing:0.009120pt;}
.ls1a{letter-spacing:0.011757pt;}
.ls5a{letter-spacing:0.012240pt;}
.ls3c{letter-spacing:0.013680pt;}
.ls34{letter-spacing:0.015230pt;}
.ls5e{letter-spacing:0.016320pt;}
.ls6f{letter-spacing:0.018170pt;}
.ls64{letter-spacing:0.020400pt;}
.ls67{letter-spacing:0.022712pt;}
.ls43{letter-spacing:0.022800pt;}
.ls16{letter-spacing:0.023514pt;}
.ls60{letter-spacing:0.024480pt;}
.ls55{letter-spacing:0.025323pt;}
.ls36{letter-spacing:0.025384pt;}
.ls68{letter-spacing:0.027254pt;}
.ls2f{letter-spacing:0.028302pt;}
.ls61{letter-spacing:0.028560pt;}
.ls19{letter-spacing:0.029392pt;}
.ls4d{letter-spacing:0.030461pt;}
.ls6a{letter-spacing:0.031797pt;}
.ls3a{letter-spacing:0.031920pt;}
.ls12{letter-spacing:0.032771pt;}
.ls69{letter-spacing:0.036339pt;}
.ls41{letter-spacing:0.036480pt;}
.ls57{letter-spacing:0.036720pt;}
.ls6d{letter-spacing:0.040882pt;}
.ls40{letter-spacing:0.041040pt;}
.ls1f{letter-spacing:0.041149pt;}
.ls1e{letter-spacing:0.047027pt;}
.ls7b{letter-spacing:0.048960pt;}
.ls6c{letter-spacing:0.049966pt;}
.ls38{letter-spacing:0.050160pt;}
.ls32{letter-spacing:0.050768pt;}
.ls15{letter-spacing:0.052906pt;}
.ls6b{letter-spacing:0.054509pt;}
.ls3f{letter-spacing:0.054720pt;}
.ls33{letter-spacing:0.055845pt;}
.ls18{letter-spacing:0.058784pt;}
.ls65{letter-spacing:0.061200pt;}
.ls21{letter-spacing:0.064662pt;}
.ls63{letter-spacing:0.065280pt;}
.ls20{letter-spacing:0.070541pt;}
.ls35{letter-spacing:0.071075pt;}
.ls1b{letter-spacing:0.076419pt;}
.ls59{letter-spacing:0.081600pt;}
.ls14{letter-spacing:0.082298pt;}
.ls47{letter-spacing:0.086306pt;}
.ls1d{letter-spacing:0.088176pt;}
.ls3b{letter-spacing:0.091200pt;}
.ls5f{letter-spacing:0.093840pt;}
.ls31{letter-spacing:0.101536pt;}
.ls1c{letter-spacing:0.105811pt;}
.ls3e{letter-spacing:0.114000pt;}
.ls4b{letter-spacing:0.116766pt;}
.ls56{letter-spacing:0.126616pt;}
.ls54{letter-spacing:0.137469pt;}
.ls30{letter-spacing:0.141512pt;}
.ls5d{letter-spacing:0.150960pt;}
.ls2e{letter-spacing:0.153642pt;}
.ls13{letter-spacing:0.163856pt;}
.ls39{letter-spacing:0.168720pt;}
.ls11{letter-spacing:0.177901pt;}
.ls8d{letter-spacing:0.637762pt;}
.ls90{letter-spacing:0.668111pt;}
.ls6e{letter-spacing:1.153770pt;}
.ls2a{letter-spacing:1.845818pt;}
.ls58{letter-spacing:2.313360pt;}
.ls5{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls8e{letter-spacing:3.163733pt;}
.ls3d{letter-spacing:3.798480pt;}
.ls62{letter-spacing:5.577360pt;}
.ls2b{letter-spacing:9.297734pt;}
.ls0{letter-spacing:9.298933pt;}
.lsc{letter-spacing:10.626533pt;}
.ls9f{letter-spacing:11.163167pt;}
.lsa5{letter-spacing:11.710159pt;}
.ls71{letter-spacing:11.872484pt;}
.ls9a{letter-spacing:11.954133pt;}
.lsa2{letter-spacing:11.956053pt;}
.ls99{letter-spacing:11.959467pt;}
.lsa0{letter-spacing:12.026115pt;}
.ls9e{letter-spacing:12.098891pt;}
.ls72{letter-spacing:12.528078pt;}
.ls9c{letter-spacing:12.714081pt;}
.ls8c{letter-spacing:13.252147pt;}
.ls3{letter-spacing:13.283733pt;}
.lse{letter-spacing:13.284147pt;}
.ls8b{letter-spacing:13.310813pt;}
.lsf{letter-spacing:13.917762pt;}
.lsa4{letter-spacing:13.921924pt;}
.ls10{letter-spacing:13.923096pt;}
.ls2d{letter-spacing:13.948111pt;}
.ls9d{letter-spacing:15.694473pt;}
.lsa1{letter-spacing:15.715388pt;}
.ls94{letter-spacing:18.055928pt;}
.ls8f{letter-spacing:20.178165pt;}
.ls7{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ws5b{word-spacing:-58.784000pt;}
.ws95{word-spacing:-50.768000pt;}
.wsd8{word-spacing:-45.424000pt;}
.wsd7{word-spacing:-40.800000pt;}
.ws10{word-spacing:-13.283467pt;}
.ws18{word-spacing:-12.760670pt;}
.ws60{word-spacing:-11.955200pt;}
.ws59{word-spacing:-11.881901pt;}
.ws5a{word-spacing:-11.704000pt;}
.ws96{word-spacing:-11.400000pt;}
.ws32{word-spacing:-10.626800pt;}
.ws93{word-spacing:-10.261642pt;}
.wsd6{word-spacing:-10.200000pt;}
.ws94{word-spacing:-10.108000pt;}
.ws13{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsd4{word-spacing:-9.181469pt;}
.wsd5{word-spacing:-9.044000pt;}
.ws70{word-spacing:-3.444742pt;}
.ws7c{word-spacing:-3.150822pt;}
.ws7d{word-spacing:-3.080282pt;}
.ws71{word-spacing:-3.062646pt;}
.ws140{word-spacing:-2.922363pt;}
.ws74{word-spacing:-2.709942pt;}
.ws53{word-spacing:-2.709827pt;}
.ws13c{word-spacing:-2.656693pt;}
.ws10f{word-spacing:-2.652762pt;}
.ws10e{word-spacing:-2.648219pt;}
.ws12d{word-spacing:-2.444158pt;}
.ws110{word-spacing:-2.407472pt;}
.ws73{word-spacing:-2.363117pt;}
.ws2{word-spacing:-2.343197pt;}
.ws50{word-spacing:-2.337890pt;}
.ws12c{word-spacing:-2.284756pt;}
.wsd9{word-spacing:-2.151936pt;}
.wsda{word-spacing:-2.104115pt;}
.wsd1{word-spacing:-2.072221pt;}
.ws130{word-spacing:-1.859685pt;}
.ws12e{word-spacing:-1.806551pt;}
.wsc5{word-spacing:-1.682640pt;}
.ws6b{word-spacing:-1.663587pt;}
.ws36{word-spacing:-1.594016pt;}
.ws11c{word-spacing:-1.585298pt;}
.ws156{word-spacing:-1.540882pt;}
.wsa9{word-spacing:-1.457042pt;}
.wsaa{word-spacing:-1.401197pt;}
.ws119{word-spacing:-1.285499pt;}
.ws133{word-spacing:-1.222079pt;}
.wsab{word-spacing:-1.213355pt;}
.ws118{word-spacing:-1.194651pt;}
.ws12b{word-spacing:-1.168945pt;}
.wsc9{word-spacing:-1.067040pt;}
.ws149{word-spacing:-1.062677pt;}
.ws17a{word-spacing:-1.052058pt;}
.ws6{word-spacing:-1.041421pt;}
.wsc8{word-spacing:-1.039680pt;}
.ws6e{word-spacing:-1.028720pt;}
.ws123{word-spacing:-1.009543pt;}
.ws8{word-spacing:-0.929840pt;}
.ws122{word-spacing:-0.903276pt;}
.ws17b{word-spacing:-0.812954pt;}
.wsbf{word-spacing:-0.802560pt;}
.wsc0{word-spacing:-0.766080pt;}
.wsc1{word-spacing:-0.756960pt;}
.ws13d{word-spacing:-0.743874pt;}
.wsed{word-spacing:-0.705840pt;}
.wsec{word-spacing:-0.697680pt;}
.wsee{word-spacing:-0.673200pt;}
.wseb{word-spacing:-0.669120pt;}
.ws135{word-spacing:-0.637606pt;}
.ws13f{word-spacing:-0.584473pt;}
.ws127{word-spacing:-0.531339pt;}
.ws167{word-spacing:-0.478208pt;}
.ws30{word-spacing:-0.478205pt;}
.ws45{word-spacing:-0.425071pt;}
.ws72{word-spacing:-0.346826pt;}
.ws137{word-spacing:-0.338818pt;}
.ws17d{word-spacing:-0.334746pt;}
.ws136{word-spacing:-0.318803pt;}
.ws180{word-spacing:-0.286925pt;}
.wsa7{word-spacing:-0.284301pt;}
.ws64{word-spacing:-0.266851pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.239104pt;}
.ws79{word-spacing:-0.235136pt;}
.wsa2{word-spacing:-0.230462pt;}
.wsa5{word-spacing:-0.218302pt;}
.ws3c{word-spacing:-0.212535pt;}
.wse0{word-spacing:-0.206203pt;}
.wscc{word-spacing:-0.200640pt;}
.ws28{word-spacing:-0.191283pt;}
.ws107{word-spacing:-0.177154pt;}
.ws54{word-spacing:-0.159402pt;}
.wsbd{word-spacing:-0.155040pt;}
.wsbe{word-spacing:-0.150480pt;}
.ws27{word-spacing:-0.143462pt;}
.ws65{word-spacing:-0.121722pt;}
.ws46{word-spacing:-0.106268pt;}
.wsa3{word-spacing:-0.105123pt;}
.ws9d{word-spacing:-0.095642pt;}
.wse1{word-spacing:-0.094058pt;}
.wsdd{word-spacing:-0.057661pt;}
.ws11{word-spacing:-0.053134pt;}
.ws25{word-spacing:-0.047821pt;}
.ws164{word-spacing:-0.044768pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws63{word-spacing:-0.018726pt;}
.wsa1{word-spacing:-0.016173pt;}
.wsdf{word-spacing:-0.014470pt;}
.ws186{word-spacing:-0.007501pt;}
.ws182{word-spacing:-0.003422pt;}
.ws181{word-spacing:-0.003311pt;}
.ws15{word-spacing:-0.002918pt;}
.ws169{word-spacing:-0.002330pt;}
.ws1b{word-spacing:-0.001274pt;}
.ws1d{word-spacing:-0.001144pt;}
.ws19{word-spacing:-0.000845pt;}
.ws171{word-spacing:-0.000717pt;}
.ws1e{word-spacing:-0.000663pt;}
.ws20{word-spacing:-0.000533pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.001089pt;}
.ws67{word-spacing:0.005878pt;}
.ws154{word-spacing:0.022548pt;}
.ws81{word-spacing:0.023514pt;}
.wsa6{word-spacing:0.025384pt;}
.ws4c{word-spacing:0.027879pt;}
.ws68{word-spacing:0.035270pt;}
.ws113{word-spacing:0.036339pt;}
.ws5d{word-spacing:0.047821pt;}
.ws2d{word-spacing:0.053134pt;}
.wsac{word-spacing:0.060922pt;}
.ws120{word-spacing:0.068136pt;}
.ws9c{word-spacing:0.095642pt;}
.ws106{word-spacing:0.097920pt;}
.wsb7{word-spacing:0.101536pt;}
.ws47{word-spacing:0.106268pt;}
.wsf8{word-spacing:0.110160pt;}
.ws6a{word-spacing:0.111690pt;}
.ws134{word-spacing:0.115904pt;}
.wsf9{word-spacing:0.126480pt;}
.ws121{word-spacing:0.127187pt;}
.wsc7{word-spacing:0.127680pt;}
.ws15e{word-spacing:0.143462pt;}
.wsc6{word-spacing:0.145920pt;}
.ws3e{word-spacing:0.159402pt;}
.ws69{word-spacing:0.170474pt;}
.wsfa{word-spacing:0.179520pt;}
.ws22{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws15d{word-spacing:0.239104pt;}
.ws37{word-spacing:0.265669pt;}
.ws18a{word-spacing:0.286925pt;}
.wsa8{word-spacing:0.294454pt;}
.ws2a{word-spacing:0.318803pt;}
.ws9e{word-spacing:0.334746pt;}
.ws78{word-spacing:0.335069pt;}
.ws103{word-spacing:0.346800pt;}
.ws11e{word-spacing:0.363392pt;}
.ws4e{word-spacing:0.371937pt;}
.ws5f{word-spacing:0.382566pt;}
.ws101{word-spacing:0.387600pt;}
.ws102{word-spacing:0.408000pt;}
.ws6f{word-spacing:0.411488pt;}
.ws2f{word-spacing:0.425071pt;}
.ws9b{word-spacing:0.430387pt;}
.ws52{word-spacing:0.478205pt;}
.ws77{word-spacing:0.482029pt;}
.ws142{word-spacing:0.505333pt;}
.wsad{word-spacing:0.512757pt;}
.ws163{word-spacing:0.526029pt;}
.wsd2{word-spacing:0.531339pt;}
.ws61{word-spacing:0.573850pt;}
.ws14d{word-spacing:0.584473pt;}
.ws116{word-spacing:0.617766pt;}
.ws128{word-spacing:0.637606pt;}
.ws11f{word-spacing:0.654106pt;}
.wsef{word-spacing:0.665040pt;}
.ws57{word-spacing:0.669333pt;}
.ws185{word-spacing:0.669491pt;}
.wsf0{word-spacing:0.673200pt;}
.wsf1{word-spacing:0.685440pt;}
.ws146{word-spacing:0.690740pt;}
.ws62{word-spacing:0.717312pt;}
.ws7e{word-spacing:0.740678pt;}
.wsdb{word-spacing:0.765133pt;}
.ws115{word-spacing:0.835802pt;}
.ws112{word-spacing:0.849429pt;}
.ws5c{word-spacing:0.860774pt;}
.ws111{word-spacing:0.890310pt;}
.ws7{word-spacing:0.892646pt;}
.ws92{word-spacing:0.903276pt;}
.ws24{word-spacing:0.908595pt;}
.wsfe{word-spacing:0.938400pt;}
.wsff{word-spacing:0.950640pt;}
.ws105{word-spacing:0.954720pt;}
.ws43{word-spacing:0.956410pt;}
.ws104{word-spacing:0.971040pt;}
.ws9a{word-spacing:1.004237pt;}
.wsbb{word-spacing:1.007760pt;}
.ws151{word-spacing:1.009543pt;}
.ws100{word-spacing:1.020000pt;}
.wsbc{word-spacing:1.021440pt;}
.ws16e{word-spacing:1.052058pt;}
.ws141{word-spacing:1.062677pt;}
.ws7b{word-spacing:1.099261pt;}
.ws117{word-spacing:1.112888pt;}
.ws8f{word-spacing:1.115811pt;}
.ws4d{word-spacing:1.168945pt;}
.ws8e{word-spacing:1.222079pt;}
.ws58{word-spacing:1.275213pt;}
.ws26{word-spacing:1.386803pt;}
.ws11d{word-spacing:1.408144pt;}
.ws12a{word-spacing:1.434614pt;}
.ws162{word-spacing:1.434624pt;}
.wsea{word-spacing:1.489200pt;}
.wse8{word-spacing:1.501440pt;}
.wsae{word-spacing:1.523040pt;}
.ws188{word-spacing:1.530266pt;}
.wsb6{word-spacing:1.563654pt;}
.ws98{word-spacing:1.578086pt;}
.ws12f{word-spacing:1.594016pt;}
.wsb5{word-spacing:1.594115pt;}
.ws152{word-spacing:1.647150pt;}
.wsca{word-spacing:1.659840pt;}
.ws11a{word-spacing:1.680688pt;}
.ws34{word-spacing:1.700284pt;}
.wse9{word-spacing:1.709520pt;}
.ws41{word-spacing:1.753418pt;}
.ws97{word-spacing:1.817190pt;}
.ws55{word-spacing:1.859685pt;}
.ws129{word-spacing:1.965953pt;}
.wscb{word-spacing:1.983600pt;}
.ws4b{word-spacing:2.019087pt;}
.ws7a{word-spacing:2.110346pt;}
.wsb1{word-spacing:2.147486pt;}
.ws166{word-spacing:2.151936pt;}
.ws51{word-spacing:2.178489pt;}
.ws165{word-spacing:2.199757pt;}
.ws3{word-spacing:2.231574pt;}
.ws4{word-spacing:2.231616pt;}
.ws153{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws183{word-spacing:2.247578pt;}
.wsfb{word-spacing:2.248080pt;}
.wse4{word-spacing:2.276640pt;}
.ws155{word-spacing:2.284756pt;}
.ws160{word-spacing:2.295398pt;}
.wsfd{word-spacing:2.297040pt;}
.wsfc{word-spacing:2.325600pt;}
.wse3{word-spacing:2.329680pt;}
.ws125{word-spacing:2.391024pt;}
.ws10c{word-spacing:2.493778pt;}
.ws145{word-spacing:2.497292pt;}
.wsc4{word-spacing:2.549040pt;}
.ws14f{word-spacing:2.550426pt;}
.ws21{word-spacing:2.550432pt;}
.wsf2{word-spacing:2.554080pt;}
.wsf3{word-spacing:2.558160pt;}
.ws189{word-spacing:2.582323pt;}
.wsc3{word-spacing:2.585520pt;}
.ws10d{word-spacing:2.602795pt;}
.wscf{word-spacing:2.603559pt;}
.wsd0{word-spacing:2.656693pt;}
.ws147{word-spacing:2.709827pt;}
.ws39{word-spacing:2.762961pt;}
.ws138{word-spacing:2.816095pt;}
.ws17e{word-spacing:2.821427pt;}
.ws184{word-spacing:2.859409pt;}
.ws170{word-spacing:2.861875pt;}
.ws16f{word-spacing:2.863138pt;}
.ws16c{word-spacing:2.864700pt;}
.ws17c{word-spacing:2.865152pt;}
.ws16a{word-spacing:2.866415pt;}
.ws187{word-spacing:2.866739pt;}
.ws168{word-spacing:2.867140pt;}
.ws16b{word-spacing:2.869103pt;}
.ws4f{word-spacing:2.869229pt;}
.ws178{word-spacing:2.869248pt;}
.ws175{word-spacing:2.917069pt;}
.ws132{word-spacing:2.922363pt;}
.ws174{word-spacing:2.964890pt;}
.ws3d{word-spacing:2.975497pt;}
.wsdc{word-spacing:3.012710pt;}
.ws143{word-spacing:3.028630pt;}
.ws177{word-spacing:3.060531pt;}
.ws109{word-spacing:3.061578pt;}
.ws148{word-spacing:3.081764pt;}
.ws108{word-spacing:3.107002pt;}
.ws90{word-spacing:3.134898pt;}
.ws29{word-spacing:3.188032pt;}
.ws56{word-spacing:3.241166pt;}
.ws8c{word-spacing:3.294300pt;}
.ws158{word-spacing:3.347456pt;}
.wsb4{word-spacing:3.370995pt;}
.wsb3{word-spacing:3.396379pt;}
.ws8b{word-spacing:3.453701pt;}
.ws131{word-spacing:3.506835pt;}
.ws9f{word-spacing:3.613103pt;}
.ws157{word-spacing:3.634381pt;}
.ws83{word-spacing:3.719371pt;}
.wsb2{word-spacing:3.726371pt;}
.ws176{word-spacing:3.730022pt;}
.wsb9{word-spacing:3.748320pt;}
.wsba{word-spacing:3.766560pt;}
.ws15a{word-spacing:3.777843pt;}
.wsb8{word-spacing:3.793920pt;}
.ws49{word-spacing:3.931906pt;}
.ws4a{word-spacing:3.985040pt;}
.ws139{word-spacing:4.038174pt;}
.ws82{word-spacing:4.091308pt;}
.wse{word-spacing:4.240070pt;}
.ws15f{word-spacing:4.303872pt;}
.wsf{word-spacing:4.314458pt;}
.ws3f{word-spacing:4.356977pt;}
.ws5e{word-spacing:4.447334pt;}
.ws2e{word-spacing:4.463245pt;}
.wsa0{word-spacing:4.569513pt;}
.ws42{word-spacing:4.622646pt;}
.ws172{word-spacing:4.638618pt;}
.ws2b{word-spacing:4.675780pt;}
.ws15b{word-spacing:4.686438pt;}
.ws31{word-spacing:4.728914pt;}
.ws91{word-spacing:4.782048pt;}
.ws3b{word-spacing:4.888316pt;}
.ws75{word-spacing:4.937856pt;}
.ws3a{word-spacing:4.941450pt;}
.ws16d{word-spacing:4.973363pt;}
.ws17f{word-spacing:5.021184pt;}
.ws13e{word-spacing:5.047717pt;}
.ws13a{word-spacing:5.100851pt;}
.ws179{word-spacing:5.116826pt;}
.ws10a{word-spacing:5.228302pt;}
.ws10b{word-spacing:5.246472pt;}
.ws80{word-spacing:5.278803pt;}
.ws126{word-spacing:5.313387pt;}
.ws76{word-spacing:5.314074pt;}
.ws7f{word-spacing:5.355222pt;}
.ws33{word-spacing:5.472788pt;}
.ws14c{word-spacing:5.525922pt;}
.ws159{word-spacing:5.547213pt;}
.wsc2{word-spacing:5.581440pt;}
.ws173{word-spacing:5.738496pt;}
.wsf6{word-spacing:5.797680pt;}
.wsd3{word-spacing:5.842667pt;}
.ws14b{word-spacing:5.844800pt;}
.wsf7{word-spacing:5.846640pt;}
.wsf4{word-spacing:5.871120pt;}
.wsf5{word-spacing:5.887440pt;}
.ws15c{word-spacing:5.929779pt;}
.ws150{word-spacing:5.950993pt;}
.ws40{word-spacing:6.004127pt;}
.ws11b{word-spacing:6.036850pt;}
.ws14a{word-spacing:6.057261pt;}
.ws161{word-spacing:6.073242pt;}
.ws38{word-spacing:6.110395pt;}
.ws1a{word-spacing:6.332471pt;}
.ws8d{word-spacing:6.376064pt;}
.wsb0{word-spacing:6.457690pt;}
.wsaf{word-spacing:6.488150pt;}
.wsde{word-spacing:6.551450pt;}
.ws124{word-spacing:6.801135pt;}
.ws14e{word-spacing:6.854269pt;}
.ws144{word-spacing:6.907403pt;}
.wsc{word-spacing:6.918010pt;}
.ws13b{word-spacing:7.119938pt;}
.wsce{word-spacing:7.460160pt;}
.wscd{word-spacing:7.469280pt;}
.ws44{word-spacing:7.545009pt;}
.ws48{word-spacing:7.757545pt;}
.ws99{word-spacing:7.986074pt;}
.ws114{word-spacing:8.171778pt;}
.ws6c{word-spacing:8.511923pt;}
.ws6d{word-spacing:8.529558pt;}
.wse2{word-spacing:8.779915pt;}
.wse7{word-spacing:9.363600pt;}
.wse5{word-spacing:9.375840pt;}
.wse6{word-spacing:9.379920pt;}
.wsa4{word-spacing:9.812846pt;}
.wsa{word-spacing:10.823338pt;}
.ws66{word-spacing:11.362243pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws14{word-spacing:35.587721pt;}
.ws16{word-spacing:35.616629pt;}
.ws1f{word-spacing:37.194667pt;}
.ws12{word-spacing:41.430071pt;}
.ws85{word-spacing:89.230439pt;}
.ws84{word-spacing:92.551733pt;}
.ws86{word-spacing:114.064800pt;}
.ws87{word-spacing:117.345808pt;}
.ws89{word-spacing:121.027974pt;}
.ws8a{word-spacing:174.884307pt;}
.ws88{word-spacing:183.476029pt;}
._8{margin-left:-31.595439pt;}
._a{margin-left:-10.616218pt;}
._9{margin-left:-8.799027pt;}
._4b{margin-left:-6.854272pt;}
._f{margin-left:-5.897333pt;}
._1{margin-left:-4.797974pt;}
._3{margin-left:-3.421811pt;}
._0{margin-left:-2.045648pt;}
._2{margin-left:-1.115808pt;}
._1e{width:0.898867pt;}
._46{width:1.788797pt;}
._5{width:2.752326pt;}
._d{width:3.921093pt;}
._c{width:5.260288pt;}
._48{width:6.189360pt;}
._49{width:7.932328pt;}
._6{width:9.298400pt;}
._16{width:10.626800pt;}
._4{width:11.530016pt;}
._11{width:13.102407pt;}
._12{width:14.824448pt;}
._1d{width:15.833366pt;}
._13{width:16.843433pt;}
._14{width:18.171782pt;}
._15{width:19.500126pt;}
._1c{width:20.424649pt;}
._1a{width:22.316224pt;}
._4e{width:23.687226pt;}
._20{width:25.344851pt;}
._7{width:27.188522pt;}
._b{width:29.648896pt;}
._44{width:31.152372pt;}
._19{width:33.261801pt;}
._1b{width:35.015218pt;}
._4d{width:37.246837pt;}
._4a{width:38.362652pt;}
._e{width:48.326226pt;}
._10{width:50.498554pt;}
._50{width:54.993920pt;}
._4f{width:78.904320pt;}
._21{width:100.305194pt;}
._3d{width:101.501334pt;}
._37{width:132.632378pt;}
._25{width:134.045734pt;}
._32{width:151.712694pt;}
._40{width:155.357667pt;}
._31{width:156.622250pt;}
._23{width:161.568998pt;}
._38{width:164.804842pt;}
._24{width:165.920650pt;}
._35{width:171.983206pt;}
._2e{width:174.103242pt;}
._2f{width:179.570701pt;}
._2c{width:186.488710pt;}
._2b{width:187.902067pt;}
._34{width:192.774429pt;}
._2d{width:196.233434pt;}
._26{width:197.646790pt;}
._39{width:200.473504pt;}
._27{width:203.114250pt;}
._28{width:206.015350pt;}
._2a{width:210.441389pt;}
._29{width:211.966326pt;}
._41{width:221.859824pt;}
._3f{width:231.195418pt;}
._3a{width:235.509875pt;}
._42{width:259.760102pt;}
._22{width:379.222658pt;}
._3b{width:408.088179pt;}
._33{width:427.205690pt;}
._3c{width:470.313072pt;}
._36{width:655.834749pt;}
._43{width:685.329274pt;}
._17{width:775.998596pt;}
._30{width:871.148499pt;}
._3e{width:1115.547645pt;}
._47{width:1509.944744pt;}
._45{width:1686.792184pt;}
._1f{width:1953.411645pt;}
._4c{width:2113.862676pt;}
._18{width:2135.116010pt;}
.fs7{font-size:31.880533pt;}
.fs11{font-size:36.176000pt;}
.fs0{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fsd{font-size:40.432000pt;}
.fs13{font-size:40.800000pt;}
.fs14{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs12{font-size:45.424000pt;}
.fsf{font-size:45.600000pt;}
.fsb{font-size:46.816000pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs2{font-size:50.395200pt;}
.fse{font-size:50.768000pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fsc{font-size:58.784000pt;}
.fs3{font-size:60.474240pt;}
.fs5{font-size:95.641600pt;}
.y11f{bottom:-516.910727pt;}
.y140{bottom:-467.943616pt;}
.y13f{bottom:-453.392038pt;}
.y13e{bottom:-438.840459pt;}
.y13d{bottom:-424.357017pt;}
.y13c{bottom:-409.805439pt;}
.y13b{bottom:-395.321996pt;}
.y13a{bottom:-380.770418pt;}
.y139{bottom:-366.218839pt;}
.y138{bottom:-351.735397pt;}
.y137{bottom:-337.183819pt;}
.y136{bottom:-322.700376pt;}
.y135{bottom:-308.148798pt;}
.y134{bottom:-293.597219pt;}
.y133{bottom:-279.113777pt;}
.y132{bottom:-264.562199pt;}
.y131{bottom:-250.078756pt;}
.ye4{bottom:-249.535487pt;}
.y130{bottom:-235.527178pt;}
.y12f{bottom:-217.642613pt;}
.y12e{bottom:-189.764087pt;}
.yfb{bottom:-186.076627pt;}
.y12d{bottom:-176.639747pt;}
.yfa{bottom:-171.484627pt;}
.y12c{bottom:-163.583747pt;}
.yf9{bottom:-156.892627pt;}
.y12b{bottom:-150.527747pt;}
.yf8{bottom:-142.224247pt;}
.y12a{bottom:-137.403407pt;}
.yf7{bottom:-127.632247pt;}
.y129{bottom:-124.347407pt;}
.yf6{bottom:-113.040247pt;}
.y128{bottom:-111.291407pt;}
.y88{bottom:-99.317387pt;}
.yf5{bottom:-98.448247pt;}
.y127{bottom:-98.235407pt;}
.y126{bottom:-85.111067pt;}
.yf4{bottom:-83.779867pt;}
.y125{bottom:-72.055067pt;}
.yf3{bottom:-69.187867pt;}
.y124{bottom:-58.999067pt;}
.yf2{bottom:-54.595867pt;}
.y123{bottom:-45.943067pt;}
.yf1{bottom:-40.003867pt;}
.y122{bottom:-32.818727pt;}
.yf0{bottom:-25.335487pt;}
.y121{bottom:-19.762727pt;}
.y9d{bottom:-12.981326pt;}
.yef{bottom:-6.407535pt;}
.y120{bottom:-2.830285pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:8.420534pt;}
.y1e{bottom:25.722550pt;}
.y4e{bottom:28.346667pt;}
.y1d{bottom:29.128174pt;}
.ye0{bottom:81.480000pt;}
.y10e{bottom:87.514667pt;}
.y1cc{bottom:90.500000pt;}
.y182{bottom:91.696000pt;}
.ya5{bottom:92.070667pt;}
.y4d{bottom:92.108000pt;}
.y1b{bottom:93.018667pt;}
.y84{bottom:94.086667pt;}
.ydf{bottom:98.217333pt;}
.y14d{bottom:98.338667pt;}
.y10d{bottom:104.252000pt;}
.y1cb{bottom:107.237333pt;}
.y181{bottom:108.433333pt;}
.y4c{bottom:108.844000pt;}
.y1a{bottom:108.920000pt;}
.ya4{bottom:109.166667pt;}
.y1f9{bottom:109.629333pt;}
.y218{bottom:110.306667pt;}
.y83{bottom:110.824000pt;}
.y24e{bottom:113.374667pt;}
.yde{bottom:114.954667pt;}
.y14c{bottom:115.434667pt;}
.y10c{bottom:120.989333pt;}
.y1ca{bottom:123.974667pt;}
.y19{bottom:124.820000pt;}
.y180{bottom:125.170667pt;}
.y4b{bottom:125.581333pt;}
.ya3{bottom:126.262667pt;}
.y1f8{bottom:126.366667pt;}
.y82{bottom:127.561333pt;}
.y24d{bottom:128.717333pt;}
.ydd{bottom:131.692000pt;}
.y14b{bottom:132.530667pt;}
.y217{bottom:133.898667pt;}
.y10b{bottom:137.726667pt;}
.y1c9{bottom:140.712000pt;}
.y18{bottom:140.720000pt;}
.y17f{bottom:141.908000pt;}
.y4a{bottom:142.318667pt;}
.y1f7{bottom:143.104000pt;}
.ya2{bottom:143.358667pt;}
.y1a2{bottom:143.900000pt;}
.y24c{bottom:144.060000pt;}
.y81{bottom:144.298667pt;}
.ydc{bottom:148.429333pt;}
.y216{bottom:149.520000pt;}
.y14a{bottom:149.625333pt;}
.y10a{bottom:154.464000pt;}
.y17{bottom:156.621333pt;}
.y1c7{bottom:157.449333pt;}
.y17e{bottom:158.645333pt;}
.y49{bottom:159.056000pt;}
.y24b{bottom:159.402667pt;}
.y1f6{bottom:159.841333pt;}
.ya1{bottom:160.454667pt;}
.y1a1{bottom:160.637333pt;}
.y80{bottom:161.036000pt;}
.y1c8{bottom:162.272000pt;}
.y215{bottom:165.141333pt;}
.ydb{bottom:165.166667pt;}
.y149{bottom:166.721333pt;}
.y16{bottom:172.521333pt;}
.y1c6{bottom:174.186667pt;}
.y24a{bottom:174.745333pt;}
.y17d{bottom:175.382667pt;}
.y48{bottom:175.793333pt;}
.y1a0{bottom:177.374667pt;}
.ya0{bottom:177.550667pt;}
.y7f{bottom:177.773333pt;}
.y1f5{bottom:180.562667pt;}
.yda{bottom:181.904000pt;}
.y148{bottom:183.817333pt;}
.y109{bottom:184.300000pt;}
.y15{bottom:188.421333pt;}
.y214{bottom:188.733333pt;}
.y249{bottom:190.088000pt;}
.y1c5{bottom:190.924000pt;}
.y17c{bottom:192.120000pt;}
.y47{bottom:192.530667pt;}
.y19f{bottom:194.112000pt;}
.y9f{bottom:194.646667pt;}
.y7e{bottom:198.496000pt;}
.yd9{bottom:198.641333pt;}
.y147{bottom:200.913333pt;}
.y108{bottom:201.396000pt;}
.y14{bottom:204.322667pt;}
.y213{bottom:204.354667pt;}
.y248{bottom:205.430667pt;}
.y17b{bottom:208.857333pt;}
.y46{bottom:209.268000pt;}
.y1f4{bottom:210.450667pt;}
.y19e{bottom:210.849333pt;}
.y1c4{bottom:211.646667pt;}
.y9e{bottom:211.742667pt;}
.yd8{bottom:215.378667pt;}
.y7d{bottom:216.428000pt;}
.y146{bottom:218.009333pt;}
.y107{bottom:218.492000pt;}
.y212{bottom:219.976000pt;}
.y247{bottom:220.772000pt;}
.y17a{bottom:225.594667pt;}
.y45{bottom:226.005333pt;}
.y1f3{bottom:227.188000pt;}
.y19d{bottom:227.586667pt;}
.y85{bottom:231.679560pt;}
.yd7{bottom:232.116000pt;}
.y145{bottom:235.105333pt;}
.y106{bottom:235.588000pt;}
.y246{bottom:236.114667pt;}
.y1c3{bottom:241.534667pt;}
.y179{bottom:242.332000pt;}
.y211{bottom:243.566667pt;}
.y1f2{bottom:243.925333pt;}
.y19c{bottom:244.324000pt;}
.y7c{bottom:246.316000pt;}
.y44{bottom:246.728000pt;}
.yd6{bottom:248.853333pt;}
.y245{bottom:251.457333pt;}
.y144{bottom:252.201333pt;}
.y105{bottom:252.684000pt;}
.y1c2{bottom:258.272000pt;}
.y178{bottom:259.069333pt;}
.y210{bottom:259.188000pt;}
.y1f1{bottom:260.662667pt;}
.y19b{bottom:261.061333pt;}
.y7b{bottom:263.053333pt;}
.yd5{bottom:265.590667pt;}
.y244{bottom:266.800000pt;}
.y13{bottom:266.804000pt;}
.y143{bottom:269.297333pt;}
.y104{bottom:269.780000pt;}
.y20f{bottom:274.810667pt;}
.y1c0{bottom:275.009333pt;}
.y177{bottom:275.806667pt;}
.y1f0{bottom:277.400000pt;}
.y19a{bottom:277.798667pt;}
.y7a{bottom:279.790667pt;}
.y1c1{bottom:279.830667pt;}
.y243{bottom:282.142667pt;}
.yd4{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y142{bottom:286.393333pt;}
.y103{bottom:286.876000pt;}
.y20e{bottom:290.432000pt;}
.y1bf{bottom:291.746667pt;}
.y279{bottom:292.344000pt;}
.y176{bottom:292.544000pt;}
.y1ef{bottom:294.137333pt;}
.y199{bottom:294.536000pt;}
.y79{bottom:296.528000pt;}
.y242{bottom:297.485333pt;}
.y11{bottom:298.605333pt;}
.yd3{bottom:299.065333pt;}
.y141{bottom:303.489333pt;}
.y102{bottom:303.972000pt;}
.y20d{bottom:306.053333pt;}
.y278{bottom:307.686667pt;}
.y1be{bottom:308.484000pt;}
.y175{bottom:309.280000pt;}
.y1ed{bottom:310.874667pt;}
.y198{bottom:311.273333pt;}
.y241{bottom:312.828000pt;}
.y78{bottom:313.265333pt;}
.y43{bottom:313.528000pt;}
.y10{bottom:314.505333pt;}
.y1ee{bottom:315.697333pt;}
.yd2{bottom:315.802667pt;}
.y101{bottom:321.068000pt;}
.y20c{bottom:321.674667pt;}
.y277{bottom:323.029333pt;}
.y11c{bottom:323.425333pt;}
.y1bd{bottom:325.221333pt;}
.y174{bottom:326.017333pt;}
.y1ec{bottom:327.612000pt;}
.y197{bottom:328.010667pt;}
.y240{bottom:328.170667pt;}
.y77{bottom:330.002667pt;}
.y42{bottom:330.822667pt;}
.yd1{bottom:332.540000pt;}
.y20b{bottom:337.296000pt;}
.y100{bottom:338.162667pt;}
.y276{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y11e{bottom:339.957375pt;}
.y1bb{bottom:341.958667pt;}
.y173{bottom:342.754667pt;}
.y23f{bottom:343.512000pt;}
.y1eb{bottom:344.349333pt;}
.y196{bottom:344.748000pt;}
.y76{bottom:346.740000pt;}
.y1bc{bottom:346.780000pt;}
.y11d{bottom:347.233273pt;}
.yd0{bottom:349.277333pt;}
.y275{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.yff{bottom:355.258667pt;}
.y1ba{bottom:358.696000pt;}
.y23e{bottom:358.854667pt;}
.y172{bottom:359.492000pt;}
.y20a{bottom:360.888000pt;}
.y1ea{bottom:361.086667pt;}
.y195{bottom:361.485333pt;}
.y75{bottom:363.477333pt;}
.y41{bottom:364.058667pt;}
.y274{bottom:369.056000pt;}
.ycf{bottom:370.000000pt;}
.yd{bottom:370.177333pt;}
.yfe{bottom:372.354667pt;}
.y23d{bottom:374.197333pt;}
.y1b9{bottom:375.433333pt;}
.y171{bottom:376.229333pt;}
.y209{bottom:376.928000pt;}
.y1e9{bottom:377.824000pt;}
.y194{bottom:378.222667pt;}
.y74{bottom:380.214667pt;}
.y40{bottom:381.353333pt;}
.y273{bottom:384.398667pt;}
.yfd{bottom:389.450667pt;}
.y23c{bottom:389.540000pt;}
.y1b8{bottom:392.170667pt;}
.y170{bottom:392.966667pt;}
.y193{bottom:394.960000pt;}
.yc{bottom:395.376000pt;}
.y73{bottom:396.952000pt;}
.y1e8{bottom:398.546667pt;}
.y3f{bottom:398.649333pt;}
.y272{bottom:399.741333pt;}
.y23b{bottom:404.882667pt;}
.yfc{bottom:406.546667pt;}
.yce{bottom:408.113333pt;}
.y208{bottom:408.908000pt;}
.y16f{bottom:409.704000pt;}
.y1b7{bottom:412.892000pt;}
.y72{bottom:413.689333pt;}
.y271{bottom:415.084000pt;}
.y192{bottom:415.682667pt;}
.y3e{bottom:415.944000pt;}
.y1e7{bottom:416.478667pt;}
.ycd{bottom:418.741333pt;}
.yb{bottom:419.246667pt;}
.y23a{bottom:420.225333pt;}
.y207{bottom:425.645333pt;}
.y16e{bottom:426.441333pt;}
.ye1{bottom:429.140000pt;}
.ycc{bottom:429.368000pt;}
.y71{bottom:430.426667pt;}
.y3d{bottom:433.238667pt;}
.ya{bottom:435.146667pt;}
.y239{bottom:435.568000pt;}
.ycb{bottom:439.994667pt;}
.y206{bottom:442.382667pt;}
.y1b6{bottom:442.780000pt;}
.y16d{bottom:443.178667pt;}
.y191{bottom:445.570667pt;}
.y270{bottom:445.769333pt;}
.y1e6{bottom:446.366667pt;}
.y70{bottom:447.164000pt;}
.y3c{bottom:450.534667pt;}
.yca{bottom:450.621333pt;}
.y238{bottom:450.910667pt;}
.y9{bottom:451.048000pt;}
.y205{bottom:459.118667pt;}
.y1b5{bottom:459.517333pt;}
.y16c{bottom:459.916000pt;}
.y26f{bottom:461.112000pt;}
.yc9{bottom:461.248000pt;}
.y190{bottom:462.306667pt;}
.y1e5{bottom:463.104000pt;}
.y6f{bottom:463.901333pt;}
.y237{bottom:466.253333pt;}
.y8{bottom:466.948000pt;}
.y3b{bottom:467.829333pt;}
.yc8{bottom:471.874667pt;}
.y204{bottom:475.856000pt;}
.y1b4{bottom:476.254667pt;}
.y26e{bottom:476.454667pt;}
.y16b{bottom:476.653333pt;}
.y18f{bottom:479.044000pt;}
.y1e4{bottom:479.841333pt;}
.y6e{bottom:480.638667pt;}
.y236{bottom:481.594667pt;}
.yc7{bottom:482.501333pt;}
.y7{bottom:482.848000pt;}
.y3a{bottom:485.125333pt;}
.y26d{bottom:491.797333pt;}
.y203{bottom:492.593333pt;}
.y1b3{bottom:492.992000pt;}
.yc6{bottom:493.128000pt;}
.y16a{bottom:493.390667pt;}
.y18d{bottom:495.781333pt;}
.y1e3{bottom:496.578667pt;}
.y235{bottom:496.937333pt;}
.y6d{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y18e{bottom:500.604000pt;}
.y39{bottom:502.420000pt;}
.yc5{bottom:503.754667pt;}
.y26c{bottom:507.138667pt;}
.y202{bottom:509.330667pt;}
.y1b2{bottom:509.729333pt;}
.y169{bottom:510.128000pt;}
.yee{bottom:512.064473pt;}
.y234{bottom:512.280000pt;}
.y18c{bottom:512.518667pt;}
.y1e2{bottom:513.316000pt;}
.y6c{bottom:514.113333pt;}
.yc4{bottom:514.382667pt;}
.y5{bottom:514.649333pt;}
.y38{bottom:519.714667pt;}
.y26b{bottom:522.481333pt;}
.yc3{bottom:525.009333pt;}
.y201{bottom:526.068000pt;}
.y1b0{bottom:526.466667pt;}
.y168{bottom:526.865333pt;}
.y233{bottom:527.622667pt;}
.yed{bottom:528.251850pt;}
.y18b{bottom:529.256000pt;}
.y1e1{bottom:530.053333pt;}
.y4{bottom:530.549333pt;}
.y6b{bottom:530.850667pt;}
.y1b1{bottom:531.289333pt;}
.yc2{bottom:535.636000pt;}
.y37{bottom:537.010667pt;}
.y26a{bottom:537.824000pt;}
.y200{bottom:542.805333pt;}
.y232{bottom:542.965333pt;}
.y1af{bottom:543.204000pt;}
.y167{bottom:543.602667pt;}
.yec{bottom:544.515379pt;}
.y18a{bottom:545.993333pt;}
.yc1{bottom:546.262667pt;}
.y3{bottom:546.450667pt;}
.y1e0{bottom:546.790667pt;}
.y6a{bottom:547.588000pt;}
.y269{bottom:553.166667pt;}
.yc0{bottom:556.889333pt;}
.y231{bottom:558.308000pt;}
.y1ff{bottom:559.542667pt;}
.y1ae{bottom:559.941333pt;}
.y166{bottom:560.340000pt;}
.yeb{bottom:560.778907pt;}
.y2{bottom:562.350667pt;}
.y189{bottom:562.730667pt;}
.y1df{bottom:563.528000pt;}
.y69{bottom:564.325333pt;}
.ybf{bottom:567.516000pt;}
.y268{bottom:568.509333pt;}
.y36{bottom:571.304000pt;}
.y230{bottom:573.650667pt;}
.y1fe{bottom:576.280000pt;}
.y1ad{bottom:576.678667pt;}
.yea{bottom:576.966284pt;}
.y165{bottom:577.077333pt;}
.ybe{bottom:578.142667pt;}
.y1{bottom:578.250667pt;}
.y188{bottom:579.468000pt;}
.y1dd{bottom:580.265333pt;}
.y68{bottom:581.062667pt;}
.y267{bottom:583.852000pt;}
.y1de{bottom:585.086667pt;}
.y35{bottom:585.649333pt;}
.ybd{bottom:588.769333pt;}
.y22f{bottom:588.993333pt;}
.y9c{bottom:590.170437pt;}
.ye9{bottom:593.229813pt;}
.y1ac{bottom:593.416000pt;}
.y164{bottom:593.814667pt;}
.y187{bottom:596.205333pt;}
.y1dc{bottom:597.002667pt;}
.y67{bottom:597.800000pt;}
.y266{bottom:599.194667pt;}
.ybc{bottom:599.396000pt;}
.y34{bottom:599.996000pt;}
.y22e{bottom:604.334667pt;}
.y9b{bottom:608.913715pt;}
.ye8{bottom:609.417190pt;}
.ybb{bottom:610.024000pt;}
.y1ab{bottom:610.153333pt;}
.y163{bottom:610.552000pt;}
.y186{bottom:612.942667pt;}
.y1db{bottom:613.740000pt;}
.y66{bottom:614.537333pt;}
.y33{bottom:618.200000pt;}
.y22d{bottom:619.677333pt;}
.yba{bottom:620.650667pt;}
.ye7{bottom:625.680719pt;}
.y1aa{bottom:626.890667pt;}
.y162{bottom:627.289333pt;}
.y9a{bottom:627.745169pt;}
.y1da{bottom:628.050667pt;}
.y185{bottom:629.680000pt;}
.y265{bottom:629.878667pt;}
.y1d9{bottom:630.477333pt;}
.y65{bottom:631.274667pt;}
.yb9{bottom:631.277333pt;}
.y32{bottom:632.545333pt;}
.y22c{bottom:635.020000pt;}
.yb8{bottom:641.904000pt;}
.ye6{bottom:641.944247pt;}
.y1a9{bottom:643.628000pt;}
.y161{bottom:644.026667pt;}
.y264{bottom:645.221333pt;}
.y99{bottom:646.488448pt;}
.y31{bottom:646.892000pt;}
.y1d8{bottom:647.214667pt;}
.y11b{bottom:647.613333pt;}
.y64{bottom:648.012000pt;}
.y22b{bottom:650.362667pt;}
.y184{bottom:650.402667pt;}
.yb7{bottom:652.530667pt;}
.y1a8{bottom:660.365333pt;}
.y263{bottom:660.564000pt;}
.y160{bottom:660.764000pt;}
.y30{bottom:661.238667pt;}
.ye5{bottom:661.932878pt;}
.yb6{bottom:663.157333pt;}
.y1d7{bottom:663.952000pt;}
.y11a{bottom:664.350667pt;}
.y63{bottom:664.749333pt;}
.y98{bottom:665.319902pt;}
.y22a{bottom:665.705333pt;}
.y183{bottom:668.334667pt;}
.yb5{bottom:673.784000pt;}
.y2f{bottom:675.585333pt;}
.y262{bottom:675.906667pt;}
.y1a7{bottom:677.102667pt;}
.y15f{bottom:677.501333pt;}
.y1d6{bottom:680.689333pt;}
.y229{bottom:681.048000pt;}
.y119{bottom:681.088000pt;}
.y62{bottom:681.485333pt;}
.y97{bottom:684.151357pt;}
.yb4{bottom:684.410667pt;}
.y2e{bottom:686.073333pt;}
.y261{bottom:691.249333pt;}
.y1a6{bottom:691.413333pt;}
.y1a5{bottom:693.840000pt;}
.y15e{bottom:694.238667pt;}
.yb3{bottom:695.038667pt;}
.y228{bottom:696.390667pt;}
.y1d5{bottom:697.426667pt;}
.y118{bottom:697.825333pt;}
.y61{bottom:698.222667pt;}
.y96{bottom:702.896105pt;}
.y2d{bottom:704.277333pt;}
.yb2{bottom:705.665333pt;}
.y260{bottom:706.592000pt;}
.ye3{bottom:708.140627pt;}
.y1a4{bottom:710.577333pt;}
.y15d{bottom:710.976000pt;}
.y227{bottom:711.733333pt;}
.y117{bottom:714.562667pt;}
.y2c{bottom:714.766667pt;}
.y60{bottom:714.960000pt;}
.ye2{bottom:716.272513pt;}
.yb1{bottom:716.292000pt;}
.y1d4{bottom:718.149333pt;}
.y95{bottom:721.727559pt;}
.y25f{bottom:721.934667pt;}
.yb0{bottom:726.918667pt;}
.y1fd{bottom:727.314667pt;}
.y15c{bottom:727.713333pt;}
.y226{bottom:731.060000pt;}
.y116{bottom:731.300000pt;}
.y5f{bottom:731.697333pt;}
.y2b{bottom:732.969333pt;}
.y25e{bottom:737.277333pt;}
.yaf{bottom:737.545333pt;}
.y94{bottom:740.470837pt;}
.y2a{bottom:743.458667pt;}
.y1fc{bottom:744.052000pt;}
.y15b{bottom:744.450667pt;}
.y115{bottom:748.036000pt;}
.yae{bottom:748.172000pt;}
.y5e{bottom:748.434667pt;}
.y25d{bottom:752.620000pt;}
.y93{bottom:759.302292pt;}
.y1fb{bottom:760.789333pt;}
.y15a{bottom:761.186667pt;}
.y29{bottom:761.662667pt;}
.y225{bottom:763.737333pt;}
.y114{bottom:764.773333pt;}
.y5d{bottom:765.172000pt;}
.yad{bottom:765.201333pt;}
.y25c{bottom:767.961333pt;}
.ya8{bottom:773.716000pt;}
.yaa{bottom:774.852000pt;}
.yac{bottom:775.828000pt;}
.y28{bottom:776.008000pt;}
.y159{bottom:777.924000pt;}
.y92{bottom:778.133746pt;}
.ya7{bottom:779.228000pt;}
.y224{bottom:779.360000pt;}
.y113{bottom:781.510667pt;}
.y5c{bottom:781.909333pt;}
.y25b{bottom:783.304000pt;}
.ya9{bottom:785.478667pt;}
.y27{bottom:790.354667pt;}
.yab{bottom:792.857333pt;}
.y158{bottom:794.661333pt;}
.y91{bottom:796.877025pt;}
.y112{bottom:798.248000pt;}
.y5b{bottom:798.646667pt;}
.y1a3{bottom:799.484000pt;}
.y223{bottom:802.950667pt;}
.y1d3{bottom:803.070667pt;}
.y157{bottom:811.398667pt;}
.y25a{bottom:813.989333pt;}
.y111{bottom:814.985333pt;}
.y5a{bottom:815.384000pt;}
.y90{bottom:815.708479pt;}
.y222{bottom:818.572000pt;}
.ya6{bottom:820.830667pt;}
.y156{bottom:828.136000pt;}
.y259{bottom:829.332000pt;}
.y26{bottom:830.062667pt;}
.y110{bottom:831.722667pt;}
.y59{bottom:832.121333pt;}
.y221{bottom:834.193333pt;}
.y8f{bottom:834.539933pt;}
.y258{bottom:844.674667pt;}
.y155{bottom:844.873333pt;}
.y25{bottom:846.800000pt;}
.y1d1{bottom:848.460000pt;}
.y58{bottom:848.858667pt;}
.y220{bottom:849.814667pt;}
.y10f{bottom:852.445333pt;}
.y1d2{bottom:853.282667pt;}
.y8e{bottom:853.284681pt;}
.y257{bottom:860.017333pt;}
.y154{bottom:861.610667pt;}
.y24{bottom:863.537333pt;}
.y1d0{bottom:865.197333pt;}
.y21f{bottom:865.437333pt;}
.y57{bottom:865.596000pt;}
.y8d{bottom:872.116136pt;}
.y256{bottom:875.360000pt;}
.y153{bottom:878.348000pt;}
.y21e{bottom:881.058667pt;}
.y1cf{bottom:881.934667pt;}
.y56{bottom:882.333333pt;}
.y254{bottom:890.701333pt;}
.y255{bottom:890.702667pt;}
.y8c{bottom:890.859414pt;}
.y152{bottom:895.085333pt;}
.y23{bottom:896.214667pt;}
.y21d{bottom:896.680000pt;}
.y55{bottom:899.070667pt;}
.y1ce{bottom:902.657333pt;}
.y253{bottom:906.044000pt;}
.y151{bottom:911.822667pt;}
.y21c{bottom:912.301333pt;}
.y8b{bottom:914.090851pt;}
.y54{bottom:915.808000pt;}
.y22{bottom:921.320000pt;}
.y252{bottom:921.386667pt;}
.y21b{bottom:927.922667pt;}
.y150{bottom:928.560000pt;}
.y53{bottom:932.545333pt;}
.y8a{bottom:932.922305pt;}
.y1fa{bottom:933.382667pt;}
.y251{bottom:936.729333pt;}
.y21a{bottom:943.544000pt;}
.y14f{bottom:945.297333pt;}
.y21{bottom:946.426667pt;}
.y52{bottom:949.282667pt;}
.y250{bottom:952.072000pt;}
.y89{bottom:956.067036pt;}
.y14e{bottom:962.034667pt;}
.y51{bottom:966.020000pt;}
.y219{bottom:967.136000pt;}
.y24f{bottom:967.414667pt;}
.y1cd{bottom:970.841333pt;}
.y20{bottom:971.532000pt;}
.y50{bottom:982.757333pt;}
.y87{bottom:1009.570745pt;}
.y1c{bottom:1010.188000pt;}
.y86{bottom:1018.986613pt;}
.y4f{bottom:1038.548000pt;}
.h1b{height:26.779392pt;}
.h2e{height:28.023859pt;}
.ha{height:28.947524pt;}
.h4{height:31.890083pt;}
.h25{height:33.186336pt;}
.hf{height:33.378918pt;}
.h32{height:33.426739pt;}
.h29{height:33.455734pt;}
.h28{height:33.650039pt;}
.h2{height:33.771789pt;}
.hd{height:34.430976pt;}
.h5{height:35.024664pt;}
.h2f{height:36.666735pt;}
.h22{height:36.836547pt;}
.h13{height:36.873667pt;}
.h12{height:37.087439pt;}
.h20{height:37.391703pt;}
.h1f{height:37.608867pt;}
.h2c{height:37.732031pt;}
.h26{height:37.778179pt;}
.h2b{height:37.951172pt;}
.h10{height:38.256384pt;}
.hb{height:38.596538pt;}
.hc{height:38.809074pt;}
.h7{height:39.000258pt;}
.h6{height:41.001535pt;}
.h2a{height:42.008328pt;}
.h24{height:42.171094pt;}
.h2d{height:42.252305pt;}
.h23{height:42.416016pt;}
.h19{height:42.652844pt;}
.h16{height:43.295656pt;}
.he{height:43.421286pt;}
.h15{height:43.547109pt;}
.h31{height:43.660390pt;}
.h3{height:45.272024pt;}
.h21{height:46.950484pt;}
.h1a{height:47.238059pt;}
.h1d{height:48.032725pt;}
.h11{height:48.245551pt;}
.h1c{height:48.411392pt;}
.h30{height:48.511220pt;}
.h9{height:49.201961pt;}
.h17{height:54.363719pt;}
.h18{height:54.679453pt;}
.h8{height:68.861952pt;}
.h27{height:303.171200pt;}
.h1e{height:483.960400pt;}
.h14{height:562.688573pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w3{width:340.696400pt;}
.w5{width:509.257553pt;}
.w4{width:651.051087pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x51{left:-198.482533pt;}
.x90{left:-51.521447pt;}
.x52{left:-7.258181pt;}
.x6f{left:-5.658580pt;}
.x0{left:0.000000pt;}
.x53{left:23.894399pt;}
.x4{left:46.689333pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.x59{left:61.905333pt;}
.x6e{left:71.137713pt;}
.x64{left:74.686667pt;}
.xef{left:75.842667pt;}
.x63{left:77.010667pt;}
.x92{left:96.242553pt;}
.x93{left:120.315002pt;}
.x70{left:159.489724pt;}
.x2{left:161.132773pt;}
.x71{left:186.395495pt;}
.x5a{left:189.662667pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x69{left:231.777333pt;}
.xd8{left:232.949333pt;}
.x68{left:235.765333pt;}
.x6{left:239.924000pt;}
.x6a{left:243.909333pt;}
.xb{left:245.465333pt;}
.x43{left:246.933333pt;}
.xd1{left:248.580000pt;}
.xd{left:250.841333pt;}
.x5c{left:252.208000pt;}
.xc{left:256.786667pt;}
.x44{left:259.061333pt;}
.xdb{left:260.420000pt;}
.xe{left:261.733333pt;}
.x5b{left:263.413333pt;}
.x57{left:269.432000pt;}
.x55{left:272.745333pt;}
.x8{left:273.917333pt;}
.x1a{left:275.330667pt;}
.x47{left:278.373333pt;}
.x27{left:280.502667pt;}
.x1b{left:281.972000pt;}
.x13{left:284.368000pt;}
.xf{left:286.314667pt;}
.x1c{left:291.872000pt;}
.x28{left:294.225333pt;}
.xe5{left:295.493333pt;}
.x10{left:297.218667pt;}
.xbc{left:298.138667pt;}
.xe3{left:300.612000pt;}
.x9b{left:302.364000pt;}
.x34{left:304.088000pt;}
.xdd{left:305.816000pt;}
.xa9{left:309.833333pt;}
.xb5{left:315.308000pt;}
.xde{left:316.741333pt;}
.x9c{left:323.210667pt;}
.xac{left:325.454667pt;}
.xaa{left:327.577333pt;}
.xb6{left:328.590667pt;}
.xc0{left:329.542667pt;}
.xda{left:331.994667pt;}
.x9d{left:333.169333pt;}
.xdf{left:334.490667pt;}
.xee{left:335.837333pt;}
.x77{left:337.300000pt;}
.xad{left:338.737333pt;}
.xb7{left:339.916000pt;}
.x6d{left:340.941333pt;}
.x9e{left:343.862667pt;}
.xd9{left:346.644000pt;}
.x78{left:348.525333pt;}
.xec{left:350.030667pt;}
.x4a{left:352.698667pt;}
.x54{left:354.422135pt;}
.x7d{left:355.618667pt;}
.x9f{left:356.689333pt;}
.xe1{left:357.672000pt;}
.x87{left:360.444000pt;}
.xa0{left:364.110667pt;}
.x35{left:366.101333pt;}
.xa6{left:367.516000pt;}
.xd0{left:369.445333pt;}
.x72{left:370.461333pt;}
.x29{left:372.102667pt;}
.xe2{left:374.034667pt;}
.x4b{left:377.245333pt;}
.x36{left:379.384000pt;}
.xed{left:380.430667pt;}
.x73{left:381.832000pt;}
.x14{left:383.738667pt;}
.x2a{left:385.386667pt;}
.x7f{left:386.656000pt;}
.x15{left:390.380000pt;}
.x4c{left:391.510667pt;}
.x8a{left:394.636000pt;}
.x80{left:397.573333pt;}
.xe4{left:398.556000pt;}
.x45{left:401.585333pt;}
.xc9{left:403.220000pt;}
.x5f{left:404.866667pt;}
.xcd{left:406.173333pt;}
.x8b{left:407.104000pt;}
.xb8{left:409.037333pt;}
.x86{left:412.244000pt;}
.x46{left:413.897333pt;}
.x5e{left:417.800000pt;}
.xa5{left:420.965333pt;}
.xb9{left:422.321333pt;}
.x25{left:424.333333pt;}
.xba{left:425.658667pt;}
.x16{left:433.277333pt;}
.x98{left:434.437333pt;}
.x26{left:436.474667pt;}
.x8f{left:437.950667pt;}
.xbb{left:438.941333pt;}
.x17{left:439.920000pt;}
.xc8{left:441.921333pt;}
.x18{left:443.306667pt;}
.x1d{left:445.354667pt;}
.xd2{left:446.788000pt;}
.xae{left:448.221333pt;}
.x19{left:449.949333pt;}
.x1e{left:454.156000pt;}
.xa4{left:459.094667pt;}
.x79{left:460.170667pt;}
.xbd{left:464.542667pt;}
.x66{left:466.153333pt;}
.x60{left:468.664000pt;}
.x5d{left:470.004000pt;}
.x7a{left:471.069333pt;}
.xa1{left:472.316000pt;}
.x2f{left:476.128000pt;}
.xcc{left:477.742667pt;}
.x67{left:479.174667pt;}
.x30{left:488.257333pt;}
.xeb{left:491.822667pt;}
.x9{left:496.497333pt;}
.x88{left:500.230667pt;}
.x8e{left:501.654667pt;}
.xa{left:504.417333pt;}
.x99{left:507.388000pt;}
.x89{left:512.382667pt;}
.xea{left:513.336000pt;}
.xc3{left:514.933333pt;}
.xe6{left:516.950667pt;}
.xc1{left:521.489333pt;}
.x62{left:523.778667pt;}
.xc4{left:529.128000pt;}
.x61{left:530.253333pt;}
.x91{left:532.326853pt;}
.xc2{left:534.436000pt;}
.xaf{left:538.316000pt;}
.xa3{left:542.096000pt;}
.xc5{left:545.081333pt;}
.xb0{left:547.116000pt;}
.x8c{left:549.196000pt;}
.xe7{left:550.141333pt;}
.xe0{left:551.064000pt;}
.xc7{left:561.220000pt;}
.x11{left:562.429333pt;}
.x8d{left:563.432000pt;}
.xce{left:564.976000pt;}
.xf0{left:566.458667pt;}
.xd5{left:567.796000pt;}
.x12{left:573.333333pt;}
.xf1{left:574.380000pt;}
.x2b{left:576.088000pt;}
.xcf{left:578.258667pt;}
.x48{left:581.937333pt;}
.x85{left:583.612000pt;}
.xdc{left:587.326667pt;}
.x2c{left:588.356000pt;}
.xd3{left:589.765333pt;}
.xe9{left:591.518667pt;}
.x1f{left:593.384000pt;}
.x49{left:596.185333pt;}
.x94{left:598.801333pt;}
.x81{left:600.354667pt;}
.x21{left:602.984000pt;}
.x20{left:605.489333pt;}
.x31{left:607.094667pt;}
.x97{left:609.354667pt;}
.x74{left:612.256000pt;}
.x32{left:613.816000pt;}
.xab{left:614.885333pt;}
.x22{left:616.426667pt;}
.x3d{left:618.098667pt;}
.x58{left:619.913333pt;}
.x33{left:627.098667pt;}
.x41{left:629.017333pt;}
.x3b{left:630.065333pt;}
.x3e{left:631.382667pt;}
.x95{left:633.126667pt;}
.xcb{left:636.536000pt;}
.x3f{left:638.157333pt;}
.xc6{left:641.174667pt;}
.x42{left:642.301333pt;}
.x3c{left:643.349333pt;}
.xd6{left:647.713333pt;}
.xd4{left:649.532000pt;}
.x40{left:651.441333pt;}
.x75{left:652.646667pt;}
.x7b{left:654.920000pt;}
.x4f{left:657.140000pt;}
.xf5{left:659.985333pt;}
.x7e{left:660.950667pt;}
.x82{left:662.357333pt;}
.xd7{left:664.630667pt;}
.x96{left:665.605333pt;}
.x7c{left:667.732000pt;}
.xbe{left:671.054667pt;}
.x50{left:672.012000pt;}
.xf3{left:673.022667pt;}
.x23{left:675.558667pt;}
.xbf{left:678.428000pt;}
.x83{left:679.720000pt;}
.xf6{left:683.896000pt;}
.x2d{left:685.041333pt;}
.xa2{left:686.030667pt;}
.xb2{left:687.837333pt;}
.x24{left:688.842667pt;}
.x84{left:693.002667pt;}
.x76{left:694.246667pt;}
.x4d{left:696.936000pt;}
.x2e{left:698.325333pt;}
.xb3{left:699.950667pt;}
.xe8{left:701.869333pt;}
.x65{left:702.822667pt;}
.xa7{left:706.368000pt;}
.x56{left:707.478667pt;}
.x4e{left:711.724000pt;}
.x37{left:716.813333pt;}
.xa8{left:717.860000pt;}
.xca{left:719.398667pt;}
.xf2{left:720.325333pt;}
.x6b{left:721.813333pt;}
.x38{left:723.454667pt;}
.xf4{left:725.353333pt;}
.x39{left:726.842667pt;}
.x9a{left:732.052000pt;}
.x6c{left:733.941333pt;}
.xb4{left:736.900000pt;}
.x3a{left:740.126667pt;}
.xb1{left:743.393333pt;}
}




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