
    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_3fcfa48f1e61029d337b0b69.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d7d64cc795484914b8c1fdeb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_1e02d65f25db9f759d87692e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ebe3525257ac3928e6b1c7f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_6a26ec7e80b388ccaca694fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.883000;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_cbc723efa41adbdf86646f1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_3cfde1f96d8431ac11b4ae4f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_c818d26e226dfe3696b2a4b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_67f386176b4a0127f7b73231.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_ad855dc3e913d5d48d44f54e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_acd51b8c851175636a740ae3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_4fe04112bbe807386bd447a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_ab253ace8031fdab284a93f9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.839000;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_532ff286152c41f1e0df76ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.473000;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_79fbb6f241d5d344e88434a4.woff2')format("woff");}.fff{font-family:fff;line-height:2.503000;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_ff65d95a132ce58d0cd5ad07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.520000;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_49cdc83ef3788688710070d0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_98d95033badcd2cb5a8cce38.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.451000;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_9fc1793c79b32da0ad3da267.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.833000;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_4ad78af439184e77f03a0dc3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m11{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);}
.m20{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);}
.m18{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);}
.m14{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);}
.m26{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);}
.m12{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);}
.m13{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);}
.m8{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);}
.ma{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);}
.m3{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);}
.m1a{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);}
.m17{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);}
.m22{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);}
.mb{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);}
.m23{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);}
.m24{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);}
.mc{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);}
.m19{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);}
.md{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);}
.m1c{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);}
.m4{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);}
.m15{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);}
.m1b{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);}
.m5{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);}
.mf{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);}
.m9{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);}
.m1f{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);}
.me{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);}
.m1d{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);}
.m10{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);}
.m6{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);}
.m21{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);}
.m2{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);}
.m16{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);}
.v18{vertical-align:-75.738000px;}
.v13{vertical-align:-62.766000px;}
.v15{vertical-align:-56.070000px;}
.v17{vertical-align:-49.836000px;}
.v14{vertical-align:-46.254000px;}
.v19{vertical-align:-25.896000px;}
.v1a{vertical-align:-20.628000px;}
.vf{vertical-align:-16.776000px;}
.v11{vertical-align:-13.986000px;}
.v9{vertical-align:-10.998000px;}
.v1{vertical-align:-9.816000px;}
.v12{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.616000px;}
.v10{vertical-align:6.642000px;}
.ve{vertical-align:10.998000px;}
.vd{vertical-align:13.620000px;}
.v1c{vertical-align:16.512000px;}
.v16{vertical-align:19.356000px;}
.v1d{vertical-align:22.344000px;}
.v2{vertical-align:23.754000px;}
.v1f{vertical-align:24.792000px;}
.v7{vertical-align:27.024000px;}
.vb{vertical-align:34.464000px;}
.v4{vertical-align:44.280000px;}
.v8{vertical-align:49.836000px;}
.v1e{vertical-align:58.206000px;}
.v1b{vertical-align:59.970000px;}
.v3{vertical-align:67.770000px;}
.vc{vertical-align:79.362000px;}
.v6{vertical-align:89.178000px;}
.v5{vertical-align:112.668000px;}
.ls8{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000520px;}
.ls87{letter-spacing:0.000546px;}
.lsb9{letter-spacing:0.000837px;}
.lsb0{letter-spacing:0.000843px;}
.lsa8{letter-spacing:0.000993px;}
.lse4{letter-spacing:0.001058px;}
.lsc3{letter-spacing:0.001067px;}
.lsf3{letter-spacing:0.002064px;}
.lsb3{letter-spacing:0.002108px;}
.ls58{letter-spacing:0.002574px;}
.lsd{letter-spacing:0.002686px;}
.ls5b{letter-spacing:0.002698px;}
.ls85{letter-spacing:0.002700px;}
.ls8a{letter-spacing:0.002706px;}
.lsc8{letter-spacing:0.002712px;}
.ls42{letter-spacing:0.003622px;}
.lsed{letter-spacing:0.003692px;}
.ls45{letter-spacing:0.004878px;}
.ls40{letter-spacing:0.005214px;}
.ls92{letter-spacing:0.005424px;}
.ls7e{letter-spacing:0.005734px;}
.lsd7{letter-spacing:0.005840px;}
.lsef{letter-spacing:0.005972px;}
.ls72{letter-spacing:0.006424px;}
.ls44{letter-spacing:0.006520px;}
.lsb2{letter-spacing:0.006843px;}
.lsc1{letter-spacing:0.007003px;}
.ls6d{letter-spacing:0.007007px;}
.ls53{letter-spacing:0.009734px;}
.ls8c{letter-spacing:0.012398px;}
.ls51{letter-spacing:0.012424px;}
.ls5d{letter-spacing:0.013463px;}
.ls80{letter-spacing:0.013557px;}
.ls4a{letter-spacing:0.014657px;}
.ls64{letter-spacing:0.015336px;}
.ls55{letter-spacing:0.015732px;}
.ls4c{letter-spacing:0.018969px;}
.ls9f{letter-spacing:0.020553px;}
.ls67{letter-spacing:0.023234px;}
.lsc5{letter-spacing:0.025440px;}
.ls9a{letter-spacing:0.026633px;}
.ls29{letter-spacing:0.028539px;}
.ls74{letter-spacing:0.030345px;}
.lsa3{letter-spacing:0.065455px;}
.ls16{letter-spacing:0.327273px;}
.lsea{letter-spacing:1.713332px;}
.lse5{letter-spacing:1.721542px;}
.ls6{letter-spacing:1.767274px;}
.lsb{letter-spacing:1.832729px;}
.ls60{letter-spacing:1.991419px;}
.lse9{letter-spacing:2.283156px;}
.ls28{letter-spacing:2.290911px;}
.ls26{letter-spacing:2.329539px;}
.lsdd{letter-spacing:2.347067px;}
.lse0{letter-spacing:2.353067px;}
.lsf{letter-spacing:2.356366px;}
.ls2a{letter-spacing:2.369289px;}
.lse2{letter-spacing:2.674328px;}
.ls7f{letter-spacing:2.773595px;}
.lsc7{letter-spacing:2.966354px;}
.ls7c{letter-spacing:2.984915px;}
.lsbf{letter-spacing:2.986059px;}
.lse{letter-spacing:2.987214px;}
.ls47{letter-spacing:2.987950px;}
.ls27{letter-spacing:2.988103px;}
.ls5e{letter-spacing:2.988248px;}
.lse3{letter-spacing:2.988499px;}
.ls14{letter-spacing:2.989115px;}
.ls82{letter-spacing:2.993214px;}
.ls46{letter-spacing:2.993950px;}
.lse8{letter-spacing:4.701332px;}
.lseb{letter-spacing:4.707332px;}
.ls61{letter-spacing:5.068984px;}
.ls91{letter-spacing:5.105459px;}
.lsc6{letter-spacing:5.116804px;}
.ls8e{letter-spacing:5.170913px;}
.ls81{letter-spacing:5.749488px;}
.lsba{letter-spacing:5.975950px;}
.ls8f{letter-spacing:5.981950px;}
.ls9e{letter-spacing:6.293424px;}
.lsa1{letter-spacing:6.299424px;}
.lsca{letter-spacing:6.718932px;}
.lsb4{letter-spacing:6.724932px;}
.ls97{letter-spacing:7.134551px;}
.ls50{letter-spacing:7.168438px;}
.ls1f{letter-spacing:7.174438px;}
.lsf2{letter-spacing:7.265461px;}
.ls25{letter-spacing:8.077860px;}
.ls96{letter-spacing:9.490917px;}
.ls18{letter-spacing:10.865464px;}
.ls9{letter-spacing:10.930918px;}
.lse1{letter-spacing:13.894059px;}
.lsa9{letter-spacing:13.900059px;}
.lsa{letter-spacing:14.530921px;}
.ls2d{letter-spacing:14.543418px;}
.ls5{letter-spacing:14.596376px;}
.lsec{letter-spacing:15.615332px;}
.lsdf{letter-spacing:15.619416px;}
.ls13{letter-spacing:16.298195px;}
.ls23{letter-spacing:16.363650px;}
.ls2e{letter-spacing:16.625468px;}
.ls4{letter-spacing:16.887287px;}
.ls93{letter-spacing:17.531214px;}
.lsc2{letter-spacing:17.536200px;}
.ls94{letter-spacing:17.537214px;}
.lscf{letter-spacing:17.632932px;}
.ls11{letter-spacing:18.130924px;}
.lsd4{letter-spacing:18.153539px;}
.lsbd{letter-spacing:18.165735px;}
.ls4e{letter-spacing:18.178438px;}
.ls22{letter-spacing:18.179412px;}
.ls21{letter-spacing:18.184438px;}
.ls4f{letter-spacing:18.185412px;}
.lsbb{letter-spacing:18.186843px;}
.ls7{letter-spacing:18.196379px;}
.ls3d{letter-spacing:18.261833px;}
.ls1b{letter-spacing:18.458197px;}
.lsa6{letter-spacing:18.850925px;}
.ls31{letter-spacing:19.243652px;}
.ls78{letter-spacing:19.898198px;}
.ls0{letter-spacing:19.965050px;}
.ls10{letter-spacing:20.029108px;}
.ls15{letter-spacing:20.160017px;}
.ls30{letter-spacing:20.225471px;}
.ls7a{letter-spacing:20.487290px;}
.ls1d{letter-spacing:20.552744px;}
.lsb6{letter-spacing:20.683654px;}
.ls35{letter-spacing:20.880017px;}
.ls6c{letter-spacing:20.945472px;}
.lscc{letter-spacing:21.076381px;}
.ls59{letter-spacing:21.166059px;}
.ls3e{letter-spacing:21.167214px;}
.ls66{letter-spacing:21.168103px;}
.ls5a{letter-spacing:21.169115px;}
.lsa5{letter-spacing:21.172059px;}
.ls6f{letter-spacing:21.173214px;}
.ls49{letter-spacing:21.174103px;}
.ls62{letter-spacing:21.191932px;}
.ls75{letter-spacing:21.198103px;}
.ls3c{letter-spacing:21.270103px;}
.lse7{letter-spacing:21.272745px;}
.lsf1{letter-spacing:21.469109px;}
.ls6e{letter-spacing:21.599214px;}
.lsae{letter-spacing:21.600018px;}
.lsd1{letter-spacing:21.665473px;}
.ls6b{letter-spacing:21.730927px;}
.lsa7{letter-spacing:21.742059px;}
.ls1{letter-spacing:21.796382px;}
.ls2{letter-spacing:21.861836px;}
.lsd6{letter-spacing:22.058200px;}
.ls33{letter-spacing:22.123655px;}
.lsbe{letter-spacing:22.254564px;}
.ls83{letter-spacing:22.320019px;}
.ls7d{letter-spacing:22.445644px;}
.ls2c{letter-spacing:22.627860px;}
.lsd0{letter-spacing:22.732059px;}
.lsb5{letter-spacing:22.843655px;}
.lsde{letter-spacing:22.883907px;}
.ls4b{letter-spacing:22.886056px;}
.ls36{letter-spacing:22.974565px;}
.lsc4{letter-spacing:23.236383px;}
.ls57{letter-spacing:23.301838px;}
.ls68{letter-spacing:23.367292px;}
.lsa0{letter-spacing:23.432747px;}
.ls7b{letter-spacing:23.629111px;}
.lscb{letter-spacing:24.070059px;}
.lsc{letter-spacing:24.152747px;}
.ls88{letter-spacing:24.159675px;}
.ls3f{letter-spacing:24.161950px;}
.ls5c{letter-spacing:24.167950px;}
.ls54{letter-spacing:24.191950px;}
.ls98{letter-spacing:24.218202px;}
.lsce{letter-spacing:24.585185px;}
.lscd{letter-spacing:24.610930px;}
.ls56{letter-spacing:24.804103px;}
.lsc0{letter-spacing:24.806691px;}
.ls8d{letter-spacing:24.809214px;}
.lsee{letter-spacing:24.899578px;}
.ls79{letter-spacing:25.069112px;}
.ls19{letter-spacing:25.330930px;}
.ls77{letter-spacing:25.396385px;}
.lsaf{letter-spacing:25.461839px;}
.ls69{letter-spacing:25.723658px;}
.ls1c{letter-spacing:26.263860px;}
.lsf0{letter-spacing:26.312749px;}
.lsa2{letter-spacing:26.405214px;}
.lsb8{letter-spacing:26.640022px;}
.lsaa{letter-spacing:26.901841px;}
.ls86{letter-spacing:26.967295px;}
.lsad{letter-spacing:27.015745px;}
.lsd5{letter-spacing:27.029412px;}
.lsd3{letter-spacing:27.029418px;}
.lsbc{letter-spacing:27.032750px;}
.lsda{letter-spacing:27.033033px;}
.lsb1{letter-spacing:27.053806px;}
.ls1a{letter-spacing:27.360023px;}
.ls90{letter-spacing:27.556387px;}
.ls34{letter-spacing:28.014569px;}
.ls8b{letter-spacing:28.540932px;}
.ls3b{letter-spacing:28.865479px;}
.ls5f{letter-spacing:28.930933px;}
.lsdc{letter-spacing:29.127297px;}
.ls99{letter-spacing:29.520025px;}
.lsb7{letter-spacing:29.634103px;}
.ls6a{letter-spacing:29.847298px;}
.lsab{letter-spacing:29.912752px;}
.lsc9{letter-spacing:30.142932px;}
.lse6{letter-spacing:30.305480px;}
.ls32{letter-spacing:30.370934px;}
.lsa4{letter-spacing:30.436389px;}
.ls89{letter-spacing:30.501844px;}
.ls39{letter-spacing:30.567298px;}
.ls84{letter-spacing:31.745481px;}
.ls3a{letter-spacing:31.848103px;}
.lsd2{letter-spacing:31.876390px;}
.ls3{letter-spacing:32.727300px;}
.lsdb{letter-spacing:32.792755px;}
.lsd8{letter-spacing:33.185482px;}
.ls38{letter-spacing:33.582103px;}
.ls9b{letter-spacing:34.690938px;}
.ls9c{letter-spacing:34.821847px;}
.ls9d{letter-spacing:34.887302px;}
.ls2b{letter-spacing:36.392758px;}
.lsd9{letter-spacing:39.005418px;}
.ls63{letter-spacing:39.992761px;}
.ls12{letter-spacing:40.058215px;}
.ls24{letter-spacing:48.525220px;}
.ls20{letter-spacing:48.627220px;}
.ls73{letter-spacing:61.749220px;}
.ls71{letter-spacing:61.857220px;}
.ls52{letter-spacing:63.810491px;}
.ls4d{letter-spacing:63.918491px;}
.ls17{letter-spacing:65.454600px;}
.ls41{letter-spacing:68.447214px;}
.ls65{letter-spacing:76.385518px;}
.ls1e{letter-spacing:85.418253px;}
.ls70{letter-spacing:85.483708px;}
.ls95{letter-spacing:130.908843px;}
.lsac{letter-spacing:130.909200px;}
.ls2f{letter-spacing:130.914843px;}
.ls76{letter-spacing:141.840118px;}
.ls48{letter-spacing:144.720121px;}
.ls43{letter-spacing:984.175366px;}
.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;}
}
.ws46{word-spacing:-65.454600px;}
.ws2b{word-spacing:-53.568045px;}
.ws49{word-spacing:-47.324343px;}
.ws2c{word-spacing:-47.323676px;}
.ws3f{word-spacing:-47.258221px;}
.ws7f{word-spacing:-46.865494px;}
.ws57{word-spacing:-44.509128px;}
.ws35{word-spacing:-42.637126px;}
.ws6f{word-spacing:-40.841036px;}
.ws37{word-spacing:-36.981849px;}
.ws83{word-spacing:-33.453846px;}
.ws65{word-spacing:-33.211407px;}
.ws19{word-spacing:-32.727300px;}
.ws45{word-spacing:-31.771663px;}
.ws1a{word-spacing:-31.706208px;}
.ws6c{word-spacing:-29.641181px;}
.ws53{word-spacing:-28.106205px;}
.ws71{word-spacing:-25.127406px;}
.ws4f{word-spacing:-25.122192px;}
.ws7e{word-spacing:-25.122051px;}
.ws24{word-spacing:-24.506202px;}
.ws2d{word-spacing:-24.440748px;}
.ws31{word-spacing:-22.542564px;}
.ws8{word-spacing:-22.260433px;}
.ws4a{word-spacing:-18.183288px;}
.wse7{word-spacing:-17.803651px;}
.ws42{word-spacing:-17.306196px;}
.ws40{word-spacing:-16.429105px;}
.ws0{word-spacing:-16.175590px;}
.ws2f{word-spacing:-16.139475px;}
.wse8{word-spacing:-15.512740px;}
.ws76{word-spacing:-15.447286px;}
.ws41{word-spacing:-14.269103px;}
.wsb6{word-spacing:-14.210194px;}
.wsb7{word-spacing:-14.144739px;}
.wsda{word-spacing:-13.941830px;}
.ws9e{word-spacing:-13.876375px;}
.ws9f{word-spacing:-13.810921px;}
.ws62{word-spacing:-13.771648px;}
.wse3{word-spacing:-13.680011px;}
.wsdf{word-spacing:-13.614557px;}
.wsdb{word-spacing:-13.549102px;}
.wsa5{word-spacing:-13.483648px;}
.ws30{word-spacing:-13.449600px;}
.ws5b{word-spacing:-13.025465px;}
.ws1f{word-spacing:-12.960011px;}
.ws96{word-spacing:-12.894556px;}
.wsbf{word-spacing:-12.829102px;}
.ws11{word-spacing:-12.732203px;}
.ws43{word-spacing:-12.573829px;}
.ws81{word-spacing:-12.567283px;}
.wse4{word-spacing:-12.508374px;}
.wsa0{word-spacing:-12.501829px;}
.ws55{word-spacing:-12.240010px;}
.ws7a{word-spacing:-12.174556px;}
.wsc3{word-spacing:-12.109101px;}
.ws84{word-spacing:-12.038052px;}
.ws91{word-spacing:-11.978192px;}
.ws20{word-spacing:-11.853828px;}
.ws85{word-spacing:-11.847283px;}
.wsa7{word-spacing:-11.781828px;}
.ws1{word-spacing:-11.735224px;}
.ws8e{word-spacing:-11.716373px;}
.ws2{word-spacing:-11.663493px;}
.wse2{word-spacing:-11.520010px;}
.wsd9{word-spacing:-11.454555px;}
.ws3c{word-spacing:-11.389100px;}
.ws5c{word-spacing:-11.330191px;}
.ws1c{word-spacing:-11.323646px;}
.ws75{word-spacing:-11.258191px;}
.ws22{word-spacing:-11.192737px;}
.ws3b{word-spacing:-11.127282px;}
.ws3a{word-spacing:-11.061827px;}
.ws2a{word-spacing:-10.996373px;}
.ws18{word-spacing:-10.930918px;}
.ws17{word-spacing:-10.865464px;}
.ws26{word-spacing:-10.800009px;}
.ws93{word-spacing:-10.766408px;}
.wsaa{word-spacing:-10.760408px;}
.ws21{word-spacing:-10.734554px;}
.ws12{word-spacing:-10.699832px;}
.ws23{word-spacing:-10.669100px;}
.wscc{word-spacing:-10.610191px;}
.ws3d{word-spacing:-10.603645px;}
.ws70{word-spacing:-10.578051px;}
.wscb{word-spacing:-10.544736px;}
.ws50{word-spacing:-10.538191px;}
.ws6b{word-spacing:-10.479281px;}
.ws3e{word-spacing:-10.472736px;}
.wse1{word-spacing:-10.413827px;}
.ws1d{word-spacing:-10.407281px;}
.ws86{word-spacing:-10.341827px;}
.ws3{word-spacing:-10.341179px;}
.ws15{word-spacing:-10.221628px;}
.wsc4{word-spacing:-10.217463px;}
.ws32{word-spacing:-10.210918px;}
.wsa6{word-spacing:-10.152008px;}
.wsd8{word-spacing:-10.145463px;}
.wsb{word-spacing:-10.102076px;}
.ws66{word-spacing:-10.086554px;}
.wse9{word-spacing:-10.080008px;}
.wsd{word-spacing:-10.042301px;}
.ws27{word-spacing:-10.021099px;}
.wsea{word-spacing:-10.014554px;}
.wse{word-spacing:-9.982525px;}
.ws54{word-spacing:-9.955645px;}
.ws95{word-spacing:-9.909826px;}
.wsae{word-spacing:-9.890190px;}
.wsb0{word-spacing:-9.883645px;}
.ws10{word-spacing:-9.862974px;}
.wsad{word-spacing:-9.824735px;}
.ws7{word-spacing:-9.803198px;}
.ws56{word-spacing:-9.752735px;}
.ws9{word-spacing:-9.743423px;}
.ws68{word-spacing:-9.693826px;}
.ws9d{word-spacing:-9.628372px;}
.ws92{word-spacing:-9.621826px;}
.wsa{word-spacing:-9.564096px;}
.ws1e{word-spacing:-9.562917px;}
.ws63{word-spacing:-9.497462px;}
.wsde{word-spacing:-9.432008px;}
.ws5d{word-spacing:-9.366553px;}
.wsa2{word-spacing:-9.301099px;}
.wsc{word-spacing:-9.271196px;}
.ws80{word-spacing:-9.235644px;}
.ws89{word-spacing:-9.229099px;}
.ws4c{word-spacing:-9.104735px;}
.wscf{word-spacing:-9.032735px;}
.wsdc{word-spacing:-8.973826px;}
.ws33{word-spacing:-8.646553px;}
.wsc0{word-spacing:-7.992007px;}
.ws8b{word-spacing:-7.985461px;}
.wsc2{word-spacing:-7.861097px;}
.wsd1{word-spacing:-7.723643px;}
.wsc8{word-spacing:-7.658188px;}
.wsc6{word-spacing:-7.592734px;}
.ws88{word-spacing:-7.533824px;}
.wsa9{word-spacing:-7.330915px;}
.ws13{word-spacing:-7.238825px;}
.ws4{word-spacing:-7.053521px;}
.ws6{word-spacing:-6.993745px;}
.ws73{word-spacing:-6.950892px;}
.ws6d{word-spacing:-6.942838px;}
.ws47{word-spacing:-6.942192px;}
.ws69{word-spacing:-6.942051px;}
.ws6a{word-spacing:-6.941406px;}
.ws8c{word-spacing:-6.938188px;}
.ws74{word-spacing:-6.911406px;}
.wse5{word-spacing:-6.794187px;}
.ws87{word-spacing:-6.682915px;}
.wsc9{word-spacing:-6.676369px;}
.ws60{word-spacing:-6.637096px;}
.ws9a{word-spacing:-6.617460px;}
.ws25{word-spacing:-6.486551px;}
.wsb2{word-spacing:-6.349096px;}
.wsca{word-spacing:-6.224732px;}
.wsb8{word-spacing:-6.152732px;}
.wsbb{word-spacing:-6.087278px;}
.ws9b{word-spacing:-5.956369px;}
.ws5e{word-spacing:-5.825459px;}
.wsd5{word-spacing:-5.694550px;}
.wsd7{word-spacing:-5.432732px;}
.ws36{word-spacing:-5.301823px;}
.ws38{word-spacing:-5.236368px;}
.wsb3{word-spacing:-5.105459px;}
.ws5f{word-spacing:-5.040004px;}
.wsd2{word-spacing:-4.974550px;}
.wsd6{word-spacing:-4.909095px;}
.wsf{word-spacing:-4.841824px;}
.ws61{word-spacing:-4.719277px;}
.ws77{word-spacing:-4.712731px;}
.wsd3{word-spacing:-4.254549px;}
.ws59{word-spacing:-4.058185px;}
.wsd4{word-spacing:-3.999276px;}
.wsb4{word-spacing:-3.927276px;}
.wsac{word-spacing:-3.848730px;}
.wsb5{word-spacing:-3.665458px;}
.ws52{word-spacing:-3.652367px;}
.wse6{word-spacing:-3.521457px;}
.ws4b{word-spacing:-3.306192px;}
.ws7d{word-spacing:-3.305406px;}
.ws14{word-spacing:-2.929004px;}
.ws79{word-spacing:-2.749093px;}
.ws64{word-spacing:-2.559275px;}
.ws58{word-spacing:-2.225456px;}
.ws5{word-spacing:-2.098124px;}
.ws97{word-spacing:-1.767274px;}
.ws39{word-spacing:-1.642910px;}
.ws99{word-spacing:-1.512001px;}
.ws98{word-spacing:-1.505456px;}
.wscd{word-spacing:-1.235319px;}
.ws72{word-spacing:-0.726546px;}
.wsab{word-spacing:-0.183273px;}
.ws8d{word-spacing:-0.117818px;}
.ws44{word-spacing:-0.065455px;}
.ws1b{word-spacing:-0.052364px;}
.ws90{word-spacing:-0.047821px;}
.ws7c{word-spacing:-0.035866px;}
.wsaf{word-spacing:-0.016155px;}
.ws94{word-spacing:-0.001164px;}
.ws28{word-spacing:0.000000px;}
.ws2e{word-spacing:0.013091px;}
.ws7b{word-spacing:0.274909px;}
.ws78{word-spacing:0.340364px;}
.wsbe{word-spacing:0.405819px;}
.wsc5{word-spacing:0.916364px;}
.ws5a{word-spacing:1.368001px;}
.wsc1{word-spacing:2.304002px;}
.ws67{word-spacing:3.613094px;}
.wsdd{word-spacing:3.678549px;}
.wsbd{word-spacing:3.744003px;}
.wsa1{word-spacing:4.005822px;}
.wsb1{word-spacing:4.660368px;}
.wsa8{word-spacing:6.362187px;}
.wsc7{word-spacing:7.134551px;}
.wsb9{word-spacing:8.260371px;}
.wsba{word-spacing:8.391280px;}
.ws9c{word-spacing:8.653098px;}
.ws51{word-spacing:11.237808px;}
.wsbc{word-spacing:11.389100px;}
.ws8a{word-spacing:17.460044px;}
.ws48{word-spacing:18.168295px;}
.ws82{word-spacing:18.174295px;}
.ws4e{word-spacing:18.196379px;}
.wsa3{word-spacing:21.119197px;}
.wsce{word-spacing:21.125197px;}
.wsa4{word-spacing:21.809473px;}
.wsd0{word-spacing:24.755197px;}
.ws8f{word-spacing:32.727300px;}
.ws29{word-spacing:40.348800px;}
.ws34{word-spacing:43.592764px;}
.ws16{word-spacing:48.418425px;}
.wse0{word-spacing:58.463197px;}
.ws4d{word-spacing:58.511808px;}
.ws6e{word-spacing:102.082994px;}
._18{margin-left:-24.938203px;}
._1f{margin-left:-22.320019px;}
._13{margin-left:-10.891729px;}
._d{margin-left:-8.556613px;}
._1{margin-left:-5.881958px;}
._12{margin-left:-4.818244px;}
._7{margin-left:-3.670235px;}
._0{margin-left:-1.936742px;}
._2{width:1.936742px;}
._10{width:3.469094px;}
._a{width:4.646376px;}
._15{width:5.878859px;}
._11{width:7.134551px;}
._1d{width:18.196379px;}
._6{width:21.064961px;}
._f{width:22.281460px;}
._5{width:24.041785px;}
._4{width:26.839244px;}
._8{width:28.276387px;}
._9{width:29.650934px;}
._b{width:31.568226px;}
._3{width:33.139606px;}
._17{width:36.469876px;}
._19{width:39.704047px;}
._1c{width:43.461854px;}
._1b{width:44.705492px;}
._14{width:46.865494px;}
._1e{width:48.025736px;}
._1a{width:57.413239px;}
._16{width:76.385518px;}
._e{width:80.697600px;}
._c{width:96.836850px;}
.fc1{color:rgb(0,0,153);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2b{bottom:63.168000px;}
.y51{bottom:108.000000px;}
.y162{bottom:112.947000px;}
.y2a{bottom:122.365500px;}
.y79{bottom:128.323500px;}
.y161{bottom:133.270500px;}
.yf3{bottom:136.321500px;}
.y29{bottom:142.689000px;}
.y50{bottom:143.365500px;}
.y78{bottom:148.647000px;}
.y160{bottom:153.595500px;}
.yf2{bottom:156.645000px;}
.y118{bottom:161.424000px;}
.y4f{bottom:163.689000px;}
.y13b{bottom:168.177000px;}
.y77{bottom:168.972000px;}
.y28{bottom:176.461500px;}
.yf0{bottom:176.970000px;}
.y4e{bottom:184.014000px;}
.y15f{bottom:184.486500px;}
.ya0{bottom:185.311500px;}
.y13a{bottom:188.500500px;}
.yf1{bottom:189.429000px;}
.y117{bottom:194.524500px;}
.y27{bottom:196.786500px;}
.y76{bottom:205.260000px;}
.y9f{bottom:205.635000px;}
.yef{bottom:207.883500px;}
.y139{bottom:208.825500px;}
.yc1{bottom:213.714000px;}
.y116{bottom:214.848000px;}
.y26{bottom:217.110000px;}
.y4d{bottom:219.379500px;}
.yee{bottom:228.207000px;}
.y15e{bottom:228.306000px;}
.y138{bottom:229.149000px;}
.y115{bottom:235.171500px;}
.y25{bottom:237.433500px;}
.y9e{bottom:239.409000px;}
.y75{bottom:241.548000px;}
.yed{bottom:248.530500px;}
.y15d{bottom:248.629500px;}
.y137{bottom:249.472500px;}
.yc0{bottom:250.476000px;}
.y114{bottom:252.897000px;}
.y4c{bottom:254.745000px;}
.y113{bottom:255.496500px;}
.y24{bottom:257.757000px;}
.y9d{bottom:259.732500px;}
.y74{bottom:261.871500px;}
.y15c{bottom:268.953000px;}
.y136{bottom:269.796000px;}
.y23{bottom:278.080500px;}
.y9c{bottom:280.056000px;}
.yec{bottom:281.862000px;}
.y4b{bottom:283.570500px;}
.ybf{bottom:287.238000px;}
.y112{bottom:288.595500px;}
.y15b{bottom:289.276500px;}
.y73{bottom:295.566000px;}
.y22{bottom:298.405500px;}
.y9b{bottom:300.379500px;}
.y135{bottom:303.570000px;}
.ybe{bottom:307.561500px;}
.y159{bottom:309.601500px;}
.yeb{bottom:315.193500px;}
.y72{bottom:315.889500px;}
.y15a{bottom:317.845500px;}
.y21{bottom:318.729000px;}
.y4a{bottom:318.936000px;}
.y9a{bottom:320.703000px;}
.y111{bottom:321.696000px;}
.y158{bottom:332.427000px;}
.yea{bottom:335.517000px;}
.y71{bottom:336.213000px;}
.y134{bottom:337.342500px;}
.y20{bottom:339.052500px;}
.y99{bottom:341.028000px;}
.ybd{bottom:341.335500px;}
.y110{bottom:352.588500px;}
.y157{bottom:352.750500px;}
.y49{bottom:354.301500px;}
.ye9{bottom:355.840500px;}
.y70{bottom:356.536500px;}
.y1f{bottom:359.376000px;}
.y98{bottom:361.351500px;}
.ybc{bottom:361.659000px;}
.y156{bottom:373.074000px;}
.y133{bottom:374.104500px;}
.y6f{bottom:376.861500px;}
.y48{bottom:377.085000px;}
.y1e{bottom:379.699500px;}
.y97{bottom:381.675000px;}
.ye8{bottom:386.754000px;}
.y47{bottom:388.309500px;}
.y155{bottom:393.397500px;}
.y6e{bottom:394.435500px;}
.y6d{bottom:394.651500px;}
.y10f{bottom:395.832000px;}
.y6c{bottom:397.185000px;}
.ybb{bottom:398.421000px;}
.y1d{bottom:400.024500px;}
.y96{bottom:401.998500px;}
.ye6{bottom:407.079000px;}
.y132{bottom:410.866500px;}
.ye7{bottom:411.916500px;}
.y46{bottom:413.601000px;}
.y154{bottom:413.722500px;}
.y10e{bottom:416.155500px;}
.y6b{bottom:417.508500px;}
.y1c{bottom:420.348000px;}
.y95{bottom:422.322000px;}
.ye4{bottom:427.402500px;}
.y17b{bottom:427.446000px;}
.y131{bottom:431.191500px;}
.ye5{bottom:432.240000px;}
.yba{bottom:435.183000px;}
.y6a{bottom:437.832000px;}
.y1b{bottom:440.671500px;}
.y94{bottom:442.645500px;}
.y93{bottom:442.647000px;}
.ye3{bottom:447.726000px;}
.y45{bottom:448.966500px;}
.y153{bottom:450.250500px;}
.y10d{bottom:452.683500px;}
.yb9{bottom:455.506500px;}
.y1a{bottom:460.995000px;}
.y17a{bottom:461.218500px;}
.y130{bottom:464.964000px;}
.ye2{bottom:468.049500px;}
.y69{bottom:471.052500px;}
.yb8{bottom:475.831500px;}
.y92{bottom:476.419500px;}
.y19{bottom:481.318500px;}
.y68{bottom:482.277000px;}
.y44{bottom:484.333500px;}
.y12f{bottom:485.287500px;}
.y179{bottom:494.992500px;}
.y91{bottom:496.743000px;}
.ye1{bottom:498.964500px;}
.y18{bottom:501.643500px;}
.y152{bottom:501.808500px;}
.y10c{bottom:503.665500px;}
.ye0{bottom:503.802000px;}
.y43{bottom:504.657000px;}
.yb7{bottom:506.722500px;}
.ydf{bottom:519.288000px;}
.y12e{bottom:521.815500px;}
.y17{bottom:521.967000px;}
.y151{bottom:522.132000px;}
.y10b{bottom:523.990500px;}
.y67{bottom:525.130500px;}
.y90{bottom:530.517000px;}
.y178{bottom:531.520500px;}
.y42{bottom:537.267000px;}
.y150{bottom:542.455500px;}
.y10a{bottom:544.314000px;}
.yb6{bottom:550.542000px;}
.yde{bottom:552.618000px;}
.y41{bottom:557.590500px;}
.y16{bottom:558.495000px;}
.y66{bottom:558.510000px;}
.y8f{bottom:560.554500px;}
.y14f{bottom:562.779000px;}
.y109{bottom:564.637500px;}
.yb5{bottom:570.865500px;}
.y12d{bottom:573.373500px;}
.y40{bottom:577.914000px;}
.y65{bottom:578.833500px;}
.y8e{bottom:580.878000px;}
.y177{bottom:583.078500px;}
.y14e{bottom:583.102500px;}
.y108{bottom:584.961000px;}
.ydd{bottom:585.949500px;}
.yb4{bottom:591.189000px;}
.y12c{bottom:593.698500px;}
.y3f{bottom:598.237500px;}
.y64{bottom:599.157000px;}
.y176{bottom:603.402000px;}
.y14d{bottom:603.427500px;}
.ydc{bottom:603.741000px;}
.y107{bottom:605.284500px;}
.ydb{bottom:606.273000px;}
.y15{bottom:610.053000px;}
.y8d{bottom:610.915500px;}
.yb3{bottom:611.512500px;}
.y12b{bottom:614.022000px;}
.y3e{bottom:618.562500px;}
.y175{bottom:623.725500px;}
.y14c{bottom:623.751000px;}
.y14{bottom:627.985500px;}
.y8c{bottom:631.239000px;}
.yb2{bottom:631.837500px;}
.y63{bottom:635.445000px;}
.yda{bottom:637.188000px;}
.y3d{bottom:638.886000px;}
.y174{bottom:644.050500px;}
.y12a{bottom:644.059500px;}
.y14b{bottom:644.074500px;}
.y13{bottom:645.918000px;}
.y8b{bottom:651.562500px;}
.y106{bottom:658.771500px;}
.y3c{bottom:659.209500px;}
.yb1{bottom:663.291000px;}
.y12{bottom:663.850500px;}
.y173{bottom:664.374000px;}
.y129{bottom:664.383000px;}
.y14a{bottom:664.398000px;}
.yd9{bottom:670.518000px;}
.y62{bottom:671.733000px;}
.y8a{bottom:671.886000px;}
.yb0{bottom:672.369000px;}
.y105{bottom:679.095000px;}
.y3b{bottom:679.533000px;}
.yaf{bottom:680.746500px;}
.y11{bottom:681.783000px;}
.y172{bottom:684.697500px;}
.y128{bottom:684.706500px;}
.y149{bottom:684.721500px;}
.yae{bottom:685.584000px;}
.y61{bottom:692.056500px;}
.y104{bottom:699.420000px;}
.y10{bottom:699.717000px;}
.y3a{bottom:699.856500px;}
.y89{bottom:701.923500px;}
.yd8{bottom:703.849500px;}
.y171{bottom:705.021000px;}
.y127{bottom:705.030000px;}
.y148{bottom:705.046500px;}
.y60{bottom:712.381500px;}
.yad{bottom:717.508500px;}
.yf{bottom:717.649500px;}
.y103{bottom:719.743500px;}
.y88{bottom:722.248500px;}
.y170{bottom:725.344500px;}
.y147{bottom:725.370000px;}
.y39{bottom:729.196500px;}
.ye{bottom:735.582000px;}
.y126{bottom:735.922500px;}
.yd7{bottom:737.050500px;}
.y102{bottom:740.067000px;}
.y146{bottom:742.197000px;}
.y16f{bottom:745.669500px;}
.y145{bottom:745.693500px;}
.y5f{bottom:748.669500px;}
.y38{bottom:749.520000px;}
.y87{bottom:751.453500px;}
.yd{bottom:753.514500px;}
.yac{bottom:754.270500px;}
.yd6{bottom:757.374000px;}
.y101{bottom:760.390500px;}
.y86{bottom:762.678000px;}
.y16e{bottom:765.993000px;}
.yd5{bottom:768.937500px;}
.y37{bottom:769.843500px;}
.yc{bottom:771.447000px;}
.yd4{bottom:777.699000px;}
.y100{bottom:778.182000px;}
.y144{bottom:779.409000px;}
.y125{bottom:779.740500px;}
.yff{bottom:780.714000px;}
.yfe{bottom:780.715500px;}
.y5e{bottom:784.957500px;}
.y16d{bottom:786.316500px;}
.yb{bottom:789.379500px;}
.yab{bottom:791.032500px;}
.y143{bottom:797.757000px;}
.yd2{bottom:798.022500px;}
.y124{bottom:800.065500px;}
.y36{bottom:800.736000px;}
.yd3{bottom:803.961000px;}
.y85{bottom:804.408000px;}
.y5d{bottom:805.281000px;}
.y16c{bottom:806.640000px;}
.ya{bottom:807.313500px;}
.yaa{bottom:811.356000px;}
.yfd{bottom:811.437000px;}
.y84{bottom:824.731500px;}
.y9{bottom:825.246000px;}
.y5c{bottom:825.604500px;}
.y16b{bottom:826.963500px;}
.yd0{bottom:828.943500px;}
.yfc{bottom:830.554500px;}
.y123{bottom:833.091000px;}
.y122{bottom:833.838000px;}
.y142{bottom:834.519000px;}
.yfb{bottom:837.513000px;}
.y8{bottom:843.178500px;}
.y35{bottom:844.335000px;}
.ya9{bottom:845.130000px;}
.yd1{bottom:847.467000px;}
.y121{bottom:854.161500px;}
.y83{bottom:854.769000px;}
.y141{bottom:854.844000px;}
.y5b{bottom:858.982500px;}
.y16a{bottom:860.737500px;}
.y7{bottom:861.111000px;}
.ycf{bottom:862.020000px;}
.ya8{bottom:865.453500px;}
.yfa{bottom:870.613500px;}
.y82{bottom:875.092500px;}
.y140{bottom:875.167500px;}
.y6{bottom:879.043500px;}
.y5a{bottom:879.307500px;}
.yce{bottom:880.798500px;}
.y34{bottom:880.863000px;}
.y169{bottom:881.061000px;}
.y120{bottom:887.188500px;}
.y11f{bottom:887.935500px;}
.y81{bottom:895.416000px;}
.ycd{bottom:898.590000px;}
.y59{bottom:899.631000px;}
.ycc{bottom:901.122000px;}
.ya7{bottom:901.981500px;}
.yf9{bottom:903.714000px;}
.y5{bottom:906.316500px;}
.y11e{bottom:908.259000px;}
.y13f{bottom:911.929500px;}
.y168{bottom:914.835000px;}
.y58{bottom:919.954500px;}
.y11d{bottom:928.582500px;}
.y80{bottom:929.190000px;}
.y33{bottom:932.202000px;}
.ycb{bottom:934.324500px;}
.yf8{bottom:934.435500px;}
.y167{bottom:935.158500px;}
.y13e{bottom:948.691500px;}
.y7f{bottom:949.513500px;}
.y57{bottom:950.845500px;}
.y32{bottom:952.525500px;}
.ya6{bottom:953.539500px;}
.yca{bottom:954.648000px;}
.y166{bottom:955.482000px;}
.y11c{bottom:962.356500px;}
.yf7{bottom:965.328000px;}
.y4{bottom:966.727500px;}
.y7e{bottom:969.837000px;}
.yc9{bottom:974.971500px;}
.y165{bottom:975.805500px;}
.y11b{bottom:982.680000px;}
.y13d{bottom:985.219500px;}
.y31{bottom:987.891000px;}
.ya5{bottom:990.301500px;}
.y56{bottom:994.590000px;}
.yc8{bottom:995.295000px;}
.y164{bottom:996.129000px;}
.y7d{bottom:1000.729500px;}
.y11a{bottom:1003.003500px;}
.y3{bottom:1003.414500px;}
.yf6{bottom:1008.571500px;}
.y55{bottom:1014.915000px;}
.y163{bottom:1016.454000px;}
.y30{bottom:1023.258000px;}
.yc7{bottom:1026.210000px;}
.ya4{bottom:1027.063500px;}
.y54{bottom:1035.238500px;}
.yf5{bottom:1036.777500px;}
.y2f{bottom:1043.581500px;}
.y7c{bottom:1044.547500px;}
.yc6{bottom:1046.533500px;}
.ya3{bottom:1047.387000px;}
.y2{bottom:1048.882500px;}
.yf4{bottom:1057.101000px;}
.y7b{bottom:1064.872500px;}
.yc5{bottom:1066.857000px;}
.y53{bottom:1068.616500px;}
.y119{bottom:1068.664500px;}
.y1{bottom:1072.792500px;}
.y2e{bottom:1074.472500px;}
.ya2{bottom:1077.424500px;}
.yc4{bottom:1087.180500px;}
.y52{bottom:1088.940000px;}
.ya1{bottom:1097.748000px;}
.y7a{bottom:1101.634500px;}
.yc3{bottom:1104.972000px;}
.yc2{bottom:1107.504000px;}
.y13c{bottom:1114.027500px;}
.y2d{bottom:1118.073000px;}
.y2c{bottom:1138.396500px;}
.h14{height:33.665702px;}
.h25{height:35.865450px;}
.h1e{height:38.504726px;}
.h4{height:41.842920px;}
.h6{height:42.082022px;}
.h19{height:44.473046px;}
.h5{height:44.831700px;}
.h9{height:46.080038px;}
.h8{height:49.090950px;}
.h3{height:51.216077px;}
.h21{height:52.078950px;}
.ha{height:53.798400px;}
.h11{height:55.739981px;}
.h10{height:55.745981px;}
.hb{height:57.419702px;}
.he{height:59.015981px;}
.h18{height:59.021981px;}
.h1d{height:59.613450px;}
.h1f{height:59.619450px;}
.h15{height:60.088950px;}
.h16{height:60.689702px;}
.h26{height:60.695702px;}
.h17{height:62.889450px;}
.h23{height:62.895450px;}
.h1c{height:63.823046px;}
.h1b{height:63.829046px;}
.h7{height:64.557900px;}
.h22{height:66.817046px;}
.h20{height:68.050950px;}
.h2{height:72.511265px;}
.h27{height:80.531981px;}
.hf{height:94.309046px;}
.h1a{height:94.315046px;}
.h24{height:102.679046px;}
.hc{height:112.243046px;}
.h12{height:112.249046px;}
.hd{height:157.141046px;}
.h13{height:157.147046px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x69{left:105.676500px;}
.x70{left:106.779000px;}
.x1a{left:108.000000px;}
.x85{left:112.380000px;}
.xd0{left:115.630500px;}
.x1b{left:119.818500px;}
.x133{left:123.759000px;}
.x63{left:125.952000px;}
.xe5{left:130.029000px;}
.xeb{left:131.490000px;}
.x20{left:133.404000px;}
.x10e{left:136.288500px;}
.x39{left:138.084000px;}
.xc1{left:140.727000px;}
.x13d{left:143.863500px;}
.x14{left:146.538000px;}
.x26{left:147.855000px;}
.xb{left:148.909500px;}
.x13{left:150.690000px;}
.x12{left:154.840500px;}
.x1e{left:157.569000px;}
.xae{left:159.993000px;}
.xf5{left:161.995500px;}
.x100{left:163.224000px;}
.x64{left:166.858500px;}
.x3a{left:168.493500px;}
.x1f{left:170.296500px;}
.x6{left:171.325500px;}
.x65{left:173.919000px;}
.xe6{left:176.166000px;}
.x28{left:177.312000px;}
.x15{left:178.797000px;}
.x8d{left:181.585500px;}
.xd5{left:183.819000px;}
.x145{left:185.613000px;}
.x8e{left:189.216000px;}
.x116{left:190.395000px;}
.x29{left:195.484500px;}
.x1{left:200.871000px;}
.xe7{left:202.693500px;}
.x56{left:205.848000px;}
.x131{left:207.481500px;}
.x10f{left:208.806000px;}
.x7a{left:214.038000px;}
.xa7{left:216.912000px;}
.x53{left:220.716000px;}
.x12c{left:222.220500px;}
.x66{left:226.107000px;}
.x47{left:228.225000px;}
.x86{left:229.953000px;}
.xd2{left:231.400500px;}
.x7f{left:234.177000px;}
.x48{left:235.855500px;}
.x57{left:237.133500px;}
.xa8{left:240.747000px;}
.x52{left:242.490000px;}
.x10c{left:249.325500px;}
.x110{left:252.628500px;}
.x102{left:253.713000px;}
.x58{left:254.793000px;}
.x6a{left:256.993500px;}
.xa9{left:258.111000px;}
.xc4{left:261.654000px;}
.x12d{left:263.391000px;}
.xb0{left:265.440000px;}
.x103{left:267.807000px;}
.x6b{left:268.816500px;}
.xb8{left:270.201000px;}
.xc5{left:275.589000px;}
.x114{left:277.749000px;}
.xaa{left:278.827500px;}
.xba{left:279.999000px;}
.x79{left:282.111000px;}
.x2{left:286.623000px;}
.x80{left:289.453500px;}
.x7c{left:291.453000px;}
.x10a{left:293.145000px;}
.x134{left:298.299000px;}
.xc9{left:299.887500px;}
.xa2{left:301.764000px;}
.x7d{left:302.892000px;}
.xe9{left:304.201500px;}
.x108{left:308.089500px;}
.xca{left:309.807000px;}
.x4e{left:310.911000px;}
.xb5{left:312.798000px;}
.x44{left:314.013000px;}
.x7b{left:315.505500px;}
.xdf{left:319.198500px;}
.x2a{left:320.856000px;}
.x121{left:323.589000px;}
.x8f{left:325.999500px;}
.xb9{left:327.250500px;}
.x122{left:329.838000px;}
.xce{left:331.339500px;}
.xc{left:332.467500px;}
.x71{left:333.586500px;}
.x3e{left:334.900500px;}
.x36{left:336.036000px;}
.x2b{left:338.119500px;}
.xd{left:339.436500px;}
.xf6{left:343.566000px;}
.x142{left:345.252000px;}
.x6c{left:346.329000px;}
.x81{left:348.372000px;}
.x42{left:353.104500px;}
.x13e{left:355.254000px;}
.xb2{left:356.910000px;}
.xa1{left:358.734000px;}
.x43{left:360.735000px;}
.xbb{left:366.670500px;}
.x13c{left:368.251500px;}
.xef{left:369.637500px;}
.x109{left:370.816500px;}
.x4d{left:372.556500px;}
.x113{left:373.957500px;}
.x3{left:375.274500px;}
.x51{left:376.992000px;}
.x117{left:378.199500px;}
.xb3{left:380.046000px;}
.x12f{left:381.103500px;}
.x138{left:384.120000px;}
.x75{left:385.162500px;}
.x59{left:386.562000px;}
.x4{left:387.661500px;}
.x3b{left:391.299000px;}
.x5a{left:394.192500px;}
.x37{left:396.570000px;}
.x87{left:398.983500px;}
.x21{left:400.156500px;}
.xcc{left:402.076500px;}
.xcb{left:404.289000px;}
.x3f{left:406.561500px;}
.xfb{left:408.274500px;}
.x88{left:410.806500px;}
.x111{left:411.958500px;}
.x5{left:413.812500px;}
.x16{left:415.264500px;}
.x22{left:417.417000px;}
.x90{left:419.200500px;}
.xb1{left:421.552500px;}
.xee{left:423.537000px;}
.xc2{left:424.693500px;}
.x38{left:426.019500px;}
.x61{left:427.758000px;}
.xfe{left:429.219000px;}
.x17{left:430.263000px;}
.x91{left:431.547000px;}
.xc3{left:432.900000px;}
.xf2{left:433.957500px;}
.xff{left:436.486500px;}
.x99{left:438.670500px;}
.x132{left:440.106000px;}
.xcd{left:441.166500px;}
.x27{left:442.366500px;}
.x7{left:446.022000px;}
.xbc{left:447.507000px;}
.x107{left:448.929000px;}
.x128{left:451.033500px;}
.xb6{left:452.127000px;}
.x3c{left:453.732000px;}
.x9a{left:457.035000px;}
.xfc{left:458.275500px;}
.xd6{left:459.318000px;}
.x62{left:460.320000px;}
.x8{left:461.604000px;}
.x4f{left:463.935000px;}
.x2c{left:466.203000px;}
.x10b{left:467.230500px;}
.x82{left:468.304500px;}
.x118{left:469.548000px;}
.x13f{left:471.409500px;}
.xd7{left:472.881000px;}
.x49{left:475.486500px;}
.x141{left:476.569500px;}
.x18{left:477.799500px;}
.x83{left:480.127500px;}
.x92{left:481.261500px;}
.x2d{left:482.566500px;}
.xf3{left:484.129500px;}
.x72{left:485.160000px;}
.x127{left:486.781500px;}
.x3d{left:489.406500px;}
.x54{left:492.277500px;}
.x19{left:493.291500px;}
.x67{left:494.473500px;}
.x9{left:496.132500px;}
.xec{left:497.392500px;}
.x2e{left:499.864500px;}
.x68{left:502.104000px;}
.xf7{left:504.393000px;}
.x55{left:506.925000px;}
.x2f{left:508.045500px;}
.x9b{left:510.061500px;}
.xed{left:511.086000px;}
.xa{left:512.545500px;}
.x4a{left:514.963500px;}
.x30{left:516.244500px;}
.x9c{left:517.692000px;}
.xf8{left:519.196500px;}
.x93{left:521.397000px;}
.x12b{left:522.513000px;}
.x31{left:523.516500px;}
.xc6{left:526.528500px;}
.xa3{left:527.680500px;}
.xb4{left:528.957000px;}
.x32{left:531.715500px;}
.x11d{left:535.354500px;}
.xb7{left:536.433000px;}
.x33{left:538.987500px;}
.x13a{left:540.204000px;}
.x50{left:541.627500px;}
.x129{left:542.637000px;}
.xe0{left:544.092000px;}
.x7e{left:545.331000px;}
.x34{left:547.186500px;}
.x146{left:548.214000px;}
.xe{left:550.372500px;}
.xbd{left:551.935500px;}
.xc7{left:554.524500px;}
.x40{left:556.761000px;}
.x4b{left:557.851500px;}
.x12a{left:560.181000px;}
.xa4{left:564.582000px;}
.xd1{left:566.746500px;}
.x104{left:567.973500px;}
.x41{left:569.488500px;}
.xcf{left:571.363500px;}
.x11c{left:573.076500px;}
.x105{left:575.604000px;}
.xf{left:577.291500px;}
.x5b{left:579.343500px;}
.x123{left:580.482000px;}
.xab{left:581.592000px;}
.x35{left:584.458500px;}
.x4c{left:587.301000px;}
.xac{left:589.830000px;}
.x5e{left:593.043000px;}
.x136{left:595.558500px;}
.x119{left:596.791500px;}
.x24{left:598.563000px;}
.x5f{left:600.315000px;}
.xad{left:601.653000px;}
.x11a{left:603.282000px;}
.x137{left:604.911000px;}
.x101{left:606.190500px;}
.x60{left:608.661000px;}
.xf0{left:610.720500px;}
.x5c{left:611.740500px;}
.x25{left:615.838500px;}
.x10d{left:617.643000px;}
.x89{left:618.852000px;}
.x9f{left:624.280500px;}
.x76{left:627.121500px;}
.x143{left:630.922500px;}
.x8a{left:632.215500px;}
.x147{left:633.603000px;}
.xf1{left:635.628000px;}
.x45{left:637.186500px;}
.xd3{left:639.126000px;}
.x6d{left:644.596500px;}
.x73{left:646.692000px;}
.x12e{left:648.138000px;}
.xa0{left:650.604000px;}
.xe1{left:651.855000px;}
.x112{left:653.977500px;}
.x106{left:656.245500px;}
.x74{left:658.515000px;}
.x135{left:660.442500px;}
.xf4{left:661.926000px;}
.x8b{left:663.759000px;}
.xea{left:664.912500px;}
.xe2{left:667.660500px;}
.x130{left:669.003000px;}
.xf9{left:670.293000px;}
.x94{left:671.857500px;}
.x115{left:674.167500px;}
.xa5{left:675.858000px;}
.x8c{left:677.068500px;}
.xe3{left:678.670500px;}
.x144{left:679.756500px;}
.x10{left:681.079500px;}
.xd8{left:682.144500px;}
.xd4{left:685.740000px;}
.x11{left:688.048500px;}
.xd9{left:689.418000px;}
.x46{left:691.596000px;}
.xaf{left:693.724500px;}
.xda{left:695.653500px;}
.x5d{left:701.025000px;}
.x124{left:703.380000px;}
.x140{left:705.144000px;}
.xfa{left:706.401000px;}
.x125{left:709.629000px;}
.xa6{left:711.964500px;}
.xfd{left:714.318000px;}
.x6e{left:715.750500px;}
.xe4{left:719.148000px;}
.x126{left:721.084500px;}
.x11b{left:724.666500px;}
.xe8{left:726.604500px;}
.x84{left:728.527500px;}
.x9d{left:732.193500px;}
.x95{left:733.942500px;}
.xdb{left:735.100500px;}
.x77{left:736.900500px;}
.x139{left:738.693000px;}
.x96{left:741.835500px;}
.xc8{left:743.628000px;}
.x97{left:746.289000px;}
.x78{left:748.723500px;}
.x1c{left:750.693000px;}
.x9e{left:752.901000px;}
.x13b{left:755.040000px;}
.xbf{left:756.355500px;}
.x11e{left:760.660500px;}
.xdc{left:763.773000px;}
.xbe{left:765.364500px;}
.x11f{left:766.897500px;}
.x1d{left:767.944500px;}
.xc0{left:769.984500px;}
.xdd{left:771.403500px;}
.x23{left:773.095500px;}
.x98{left:774.133500px;}
.xde{left:777.640500px;}
.x120{left:780.591000px;}
.x6f{left:782.304000px;}
@media print{
.v18{vertical-align:-67.322667pt;}
.v13{vertical-align:-55.792000pt;}
.v15{vertical-align:-49.840000pt;}
.v17{vertical-align:-44.298667pt;}
.v14{vertical-align:-41.114667pt;}
.v19{vertical-align:-23.018667pt;}
.v1a{vertical-align:-18.336000pt;}
.vf{vertical-align:-14.912000pt;}
.v11{vertical-align:-12.432000pt;}
.v9{vertical-align:-9.776000pt;}
.v1{vertical-align:-8.725333pt;}
.v12{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.325333pt;}
.v10{vertical-align:5.904000pt;}
.ve{vertical-align:9.776000pt;}
.vd{vertical-align:12.106667pt;}
.v1c{vertical-align:14.677333pt;}
.v16{vertical-align:17.205333pt;}
.v1d{vertical-align:19.861333pt;}
.v2{vertical-align:21.114667pt;}
.v1f{vertical-align:22.037333pt;}
.v7{vertical-align:24.021333pt;}
.vb{vertical-align:30.634667pt;}
.v4{vertical-align:39.360000pt;}
.v8{vertical-align:44.298667pt;}
.v1e{vertical-align:51.738667pt;}
.v1b{vertical-align:53.306667pt;}
.v3{vertical-align:60.240000pt;}
.vc{vertical-align:70.544000pt;}
.v6{vertical-align:79.269333pt;}
.v5{vertical-align:100.149333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000462pt;}
.ls87{letter-spacing:0.000485pt;}
.lsb9{letter-spacing:0.000744pt;}
.lsb0{letter-spacing:0.000749pt;}
.lsa8{letter-spacing:0.000882pt;}
.lse4{letter-spacing:0.000940pt;}
.lsc3{letter-spacing:0.000948pt;}
.lsf3{letter-spacing:0.001834pt;}
.lsb3{letter-spacing:0.001874pt;}
.ls58{letter-spacing:0.002288pt;}
.lsd{letter-spacing:0.002387pt;}
.ls5b{letter-spacing:0.002399pt;}
.ls85{letter-spacing:0.002400pt;}
.ls8a{letter-spacing:0.002405pt;}
.lsc8{letter-spacing:0.002411pt;}
.ls42{letter-spacing:0.003219pt;}
.lsed{letter-spacing:0.003281pt;}
.ls45{letter-spacing:0.004336pt;}
.ls40{letter-spacing:0.004634pt;}
.ls92{letter-spacing:0.004822pt;}
.ls7e{letter-spacing:0.005097pt;}
.lsd7{letter-spacing:0.005191pt;}
.lsef{letter-spacing:0.005308pt;}
.ls72{letter-spacing:0.005710pt;}
.ls44{letter-spacing:0.005796pt;}
.lsb2{letter-spacing:0.006082pt;}
.lsc1{letter-spacing:0.006225pt;}
.ls6d{letter-spacing:0.006228pt;}
.ls53{letter-spacing:0.008653pt;}
.ls8c{letter-spacing:0.011020pt;}
.ls51{letter-spacing:0.011043pt;}
.ls5d{letter-spacing:0.011967pt;}
.ls80{letter-spacing:0.012051pt;}
.ls4a{letter-spacing:0.013028pt;}
.ls64{letter-spacing:0.013632pt;}
.ls55{letter-spacing:0.013984pt;}
.ls4c{letter-spacing:0.016861pt;}
.ls9f{letter-spacing:0.018269pt;}
.ls67{letter-spacing:0.020653pt;}
.lsc5{letter-spacing:0.022613pt;}
.ls9a{letter-spacing:0.023673pt;}
.ls29{letter-spacing:0.025368pt;}
.ls74{letter-spacing:0.026974pt;}
.lsa3{letter-spacing:0.058182pt;}
.ls16{letter-spacing:0.290909pt;}
.lsea{letter-spacing:1.522961pt;}
.lse5{letter-spacing:1.530259pt;}
.ls6{letter-spacing:1.570910pt;}
.lsb{letter-spacing:1.629092pt;}
.ls60{letter-spacing:1.770150pt;}
.lse9{letter-spacing:2.029472pt;}
.ls28{letter-spacing:2.036365pt;}
.ls26{letter-spacing:2.070701pt;}
.lsdd{letter-spacing:2.086281pt;}
.lse0{letter-spacing:2.091615pt;}
.lsf{letter-spacing:2.094547pt;}
.ls2a{letter-spacing:2.106035pt;}
.lse2{letter-spacing:2.377181pt;}
.ls7f{letter-spacing:2.465418pt;}
.lsc7{letter-spacing:2.636759pt;}
.ls7c{letter-spacing:2.653258pt;}
.lsbf{letter-spacing:2.654275pt;}
.lse{letter-spacing:2.655301pt;}
.ls47{letter-spacing:2.655956pt;}
.ls27{letter-spacing:2.656092pt;}
.ls5e{letter-spacing:2.656220pt;}
.lse3{letter-spacing:2.656444pt;}
.ls14{letter-spacing:2.656991pt;}
.ls82{letter-spacing:2.660634pt;}
.ls46{letter-spacing:2.661289pt;}
.lse8{letter-spacing:4.178961pt;}
.lseb{letter-spacing:4.184295pt;}
.ls61{letter-spacing:4.505763pt;}
.ls91{letter-spacing:4.538186pt;}
.lsc6{letter-spacing:4.548270pt;}
.ls8e{letter-spacing:4.596367pt;}
.ls81{letter-spacing:5.110656pt;}
.lsba{letter-spacing:5.311956pt;}
.ls8f{letter-spacing:5.317289pt;}
.ls9e{letter-spacing:5.594155pt;}
.lsa1{letter-spacing:5.599488pt;}
.lsca{letter-spacing:5.972384pt;}
.lsb4{letter-spacing:5.977718pt;}
.ls97{letter-spacing:6.341823pt;}
.ls50{letter-spacing:6.371945pt;}
.ls1f{letter-spacing:6.377279pt;}
.lsf2{letter-spacing:6.458187pt;}
.ls25{letter-spacing:7.180320pt;}
.ls96{letter-spacing:8.436371pt;}
.ls18{letter-spacing:9.658190pt;}
.ls9{letter-spacing:9.716372pt;}
.lse1{letter-spacing:12.350275pt;}
.lsa9{letter-spacing:12.355608pt;}
.lsa{letter-spacing:12.916374pt;}
.ls2d{letter-spacing:12.927483pt;}
.ls5{letter-spacing:12.974556pt;}
.lsec{letter-spacing:13.880295pt;}
.lsdf{letter-spacing:13.883925pt;}
.ls13{letter-spacing:14.487285pt;}
.ls23{letter-spacing:14.545467pt;}
.ls2e{letter-spacing:14.778194pt;}
.ls4{letter-spacing:15.010922pt;}
.ls93{letter-spacing:15.583301pt;}
.lsc2{letter-spacing:15.587733pt;}
.ls94{letter-spacing:15.588634pt;}
.lscf{letter-spacing:15.673718pt;}
.ls11{letter-spacing:16.116377pt;}
.lsd4{letter-spacing:16.136479pt;}
.lsbd{letter-spacing:16.147320pt;}
.ls4e{letter-spacing:16.158612pt;}
.ls22{letter-spacing:16.159477pt;}
.ls21{letter-spacing:16.163945pt;}
.ls4f{letter-spacing:16.164811pt;}
.lsbb{letter-spacing:16.166082pt;}
.ls7{letter-spacing:16.174559pt;}
.ls3d{letter-spacing:16.232741pt;}
.ls1b{letter-spacing:16.407286pt;}
.lsa6{letter-spacing:16.756378pt;}
.ls31{letter-spacing:17.105469pt;}
.ls78{letter-spacing:17.687287pt;}
.ls0{letter-spacing:17.746711pt;}
.ls10{letter-spacing:17.803651pt;}
.ls15{letter-spacing:17.920015pt;}
.ls30{letter-spacing:17.978197pt;}
.ls7a{letter-spacing:18.210924pt;}
.ls1d{letter-spacing:18.269106pt;}
.lsb6{letter-spacing:18.385470pt;}
.ls35{letter-spacing:18.560015pt;}
.ls6c{letter-spacing:18.618197pt;}
.lscc{letter-spacing:18.734561pt;}
.ls59{letter-spacing:18.814275pt;}
.ls3e{letter-spacing:18.815301pt;}
.ls66{letter-spacing:18.816092pt;}
.ls5a{letter-spacing:18.816991pt;}
.lsa5{letter-spacing:18.819608pt;}
.ls6f{letter-spacing:18.820634pt;}
.ls49{letter-spacing:18.821425pt;}
.ls62{letter-spacing:18.837273pt;}
.ls75{letter-spacing:18.842758pt;}
.ls3c{letter-spacing:18.906758pt;}
.lse7{letter-spacing:18.909107pt;}
.lsf1{letter-spacing:19.083652pt;}
.ls6e{letter-spacing:19.199301pt;}
.lsae{letter-spacing:19.200016pt;}
.lsd1{letter-spacing:19.258198pt;}
.ls6b{letter-spacing:19.316380pt;}
.lsa7{letter-spacing:19.326275pt;}
.ls1{letter-spacing:19.374562pt;}
.ls2{letter-spacing:19.432743pt;}
.lsd6{letter-spacing:19.607289pt;}
.ls33{letter-spacing:19.665471pt;}
.lsbe{letter-spacing:19.781835pt;}
.ls83{letter-spacing:19.840017pt;}
.ls7d{letter-spacing:19.951684pt;}
.ls2c{letter-spacing:20.113653pt;}
.lsd0{letter-spacing:20.206275pt;}
.lsb5{letter-spacing:20.305471pt;}
.lsde{letter-spacing:20.341251pt;}
.ls4b{letter-spacing:20.343161pt;}
.ls36{letter-spacing:20.421835pt;}
.lsc4{letter-spacing:20.654563pt;}
.ls57{letter-spacing:20.712745pt;}
.ls68{letter-spacing:20.770926pt;}
.lsa0{letter-spacing:20.829108pt;}
.ls7b{letter-spacing:21.003654pt;}
.lscb{letter-spacing:21.395608pt;}
.lsc{letter-spacing:21.469109pt;}
.ls88{letter-spacing:21.475267pt;}
.ls3f{letter-spacing:21.477289pt;}
.ls5c{letter-spacing:21.482622pt;}
.ls54{letter-spacing:21.503956pt;}
.ls98{letter-spacing:21.527291pt;}
.lsce{letter-spacing:21.853497pt;}
.lscd{letter-spacing:21.876382pt;}
.ls56{letter-spacing:22.048092pt;}
.lsc0{letter-spacing:22.050392pt;}
.ls8d{letter-spacing:22.052634pt;}
.lsee{letter-spacing:22.132958pt;}
.ls79{letter-spacing:22.283655pt;}
.ls19{letter-spacing:22.516382pt;}
.ls77{letter-spacing:22.574564pt;}
.lsaf{letter-spacing:22.632746pt;}
.ls69{letter-spacing:22.865474pt;}
.ls1c{letter-spacing:23.345653pt;}
.lsf0{letter-spacing:23.389110pt;}
.lsa2{letter-spacing:23.471301pt;}
.lsb8{letter-spacing:23.680020pt;}
.lsaa{letter-spacing:23.912747pt;}
.ls86{letter-spacing:23.970929pt;}
.lsad{letter-spacing:24.013996pt;}
.lsd5{letter-spacing:24.026144pt;}
.lsd3{letter-spacing:24.026149pt;}
.lsbc{letter-spacing:24.029111pt;}
.lsda{letter-spacing:24.029362pt;}
.lsb1{letter-spacing:24.047828pt;}
.ls1a{letter-spacing:24.320020pt;}
.ls90{letter-spacing:24.494566pt;}
.ls34{letter-spacing:24.901839pt;}
.ls8b{letter-spacing:25.369718pt;}
.ls3b{letter-spacing:25.658203pt;}
.ls5f{letter-spacing:25.716385pt;}
.lsdc{letter-spacing:25.890931pt;}
.ls99{letter-spacing:26.240022pt;}
.lsb7{letter-spacing:26.341425pt;}
.ls6a{letter-spacing:26.530931pt;}
.lsab{letter-spacing:26.589113pt;}
.lsc9{letter-spacing:26.793718pt;}
.lse6{letter-spacing:26.938204pt;}
.ls32{letter-spacing:26.996386pt;}
.lsa4{letter-spacing:27.054568pt;}
.ls89{letter-spacing:27.112750pt;}
.ls39{letter-spacing:27.170932pt;}
.ls84{letter-spacing:28.218205pt;}
.ls3a{letter-spacing:28.309425pt;}
.lsd2{letter-spacing:28.334569pt;}
.ls3{letter-spacing:29.090933pt;}
.lsdb{letter-spacing:29.149115pt;}
.lsd8{letter-spacing:29.498206pt;}
.ls38{letter-spacing:29.850758pt;}
.ls9b{letter-spacing:30.836389pt;}
.ls9c{letter-spacing:30.952753pt;}
.ls9d{letter-spacing:31.010935pt;}
.ls2b{letter-spacing:32.349118pt;}
.lsd9{letter-spacing:34.671483pt;}
.ls63{letter-spacing:35.549121pt;}
.ls12{letter-spacing:35.607302pt;}
.ls24{letter-spacing:43.133529pt;}
.ls20{letter-spacing:43.224196pt;}
.ls73{letter-spacing:54.888196pt;}
.ls71{letter-spacing:54.984196pt;}
.ls52{letter-spacing:56.720437pt;}
.ls4d{letter-spacing:56.816437pt;}
.ls17{letter-spacing:58.181867pt;}
.ls41{letter-spacing:60.841968pt;}
.ls65{letter-spacing:67.898238pt;}
.ls1e{letter-spacing:75.927336pt;}
.ls70{letter-spacing:75.985518pt;}
.ls95{letter-spacing:116.363416pt;}
.lsac{letter-spacing:116.363733pt;}
.ls2f{letter-spacing:116.368749pt;}
.ls76{letter-spacing:126.080105pt;}
.ls48{letter-spacing:128.640107pt;}
.ls43{letter-spacing:874.822547pt;}
.ws46{word-spacing:-58.181867pt;}
.ws2b{word-spacing:-47.616040pt;}
.ws49{word-spacing:-42.066082pt;}
.ws2c{word-spacing:-42.065490pt;}
.ws3f{word-spacing:-42.007308pt;}
.ws7f{word-spacing:-41.658217pt;}
.ws57{word-spacing:-39.563669pt;}
.ws35{word-spacing:-37.899668pt;}
.ws6f{word-spacing:-36.303143pt;}
.ws37{word-spacing:-32.872755pt;}
.ws83{word-spacing:-29.736752pt;}
.ws65{word-spacing:-29.521250pt;}
.ws19{word-spacing:-29.090933pt;}
.ws45{word-spacing:-28.241478pt;}
.ws1a{word-spacing:-28.183296pt;}
.ws6c{word-spacing:-26.347717pt;}
.ws53{word-spacing:-24.983294pt;}
.ws71{word-spacing:-22.335472pt;}
.ws4f{word-spacing:-22.330838pt;}
.ws7e{word-spacing:-22.330712pt;}
.ws24{word-spacing:-21.783291pt;}
.ws2d{word-spacing:-21.725109pt;}
.ws31{word-spacing:-20.037835pt;}
.ws8{word-spacing:-19.787052pt;}
.ws4a{word-spacing:-16.162923pt;}
.wse7{word-spacing:-15.825468pt;}
.ws42{word-spacing:-15.383286pt;}
.ws40{word-spacing:-14.603649pt;}
.ws0{word-spacing:-14.378302pt;}
.ws2f{word-spacing:-14.346200pt;}
.wse8{word-spacing:-13.789102pt;}
.ws76{word-spacing:-13.730921pt;}
.ws41{word-spacing:-12.683647pt;}
.wsb6{word-spacing:-12.631283pt;}
.wsb7{word-spacing:-12.573101pt;}
.wsda{word-spacing:-12.392738pt;}
.ws9e{word-spacing:-12.334556pt;}
.ws9f{word-spacing:-12.276374pt;}
.ws62{word-spacing:-12.241465pt;}
.wse3{word-spacing:-12.160010pt;}
.wsdf{word-spacing:-12.101828pt;}
.wsdb{word-spacing:-12.043646pt;}
.wsa5{word-spacing:-11.985465pt;}
.ws30{word-spacing:-11.955200pt;}
.ws5b{word-spacing:-11.578191pt;}
.ws1f{word-spacing:-11.520010pt;}
.ws96{word-spacing:-11.461828pt;}
.wsbf{word-spacing:-11.403646pt;}
.ws11{word-spacing:-11.317514pt;}
.ws43{word-spacing:-11.176737pt;}
.ws81{word-spacing:-11.170918pt;}
.wse4{word-spacing:-11.118555pt;}
.wsa0{word-spacing:-11.112737pt;}
.ws55{word-spacing:-10.880009pt;}
.ws7a{word-spacing:-10.821827pt;}
.wsc3{word-spacing:-10.763645pt;}
.ws84{word-spacing:-10.700491pt;}
.ws91{word-spacing:-10.647282pt;}
.ws20{word-spacing:-10.536736pt;}
.ws85{word-spacing:-10.530918pt;}
.wsa7{word-spacing:-10.472736pt;}
.ws1{word-spacing:-10.431311pt;}
.ws8e{word-spacing:-10.414554pt;}
.ws2{word-spacing:-10.367549pt;}
.wse2{word-spacing:-10.240009pt;}
.wsd9{word-spacing:-10.181827pt;}
.ws3c{word-spacing:-10.123645pt;}
.ws5c{word-spacing:-10.071281pt;}
.ws1c{word-spacing:-10.065463pt;}
.ws75{word-spacing:-10.007281pt;}
.ws22{word-spacing:-9.949099pt;}
.ws3b{word-spacing:-9.890917pt;}
.ws3a{word-spacing:-9.832735pt;}
.ws2a{word-spacing:-9.774554pt;}
.ws18{word-spacing:-9.716372pt;}
.ws17{word-spacing:-9.658190pt;}
.ws26{word-spacing:-9.600008pt;}
.ws93{word-spacing:-9.570140pt;}
.wsaa{word-spacing:-9.564807pt;}
.ws21{word-spacing:-9.541826pt;}
.ws12{word-spacing:-9.510962pt;}
.ws23{word-spacing:-9.483644pt;}
.wscc{word-spacing:-9.431281pt;}
.ws3d{word-spacing:-9.425462pt;}
.ws70{word-spacing:-9.402712pt;}
.wscb{word-spacing:-9.373099pt;}
.ws50{word-spacing:-9.367281pt;}
.ws6b{word-spacing:-9.314917pt;}
.ws3e{word-spacing:-9.309099pt;}
.wse1{word-spacing:-9.256735pt;}
.ws1d{word-spacing:-9.250917pt;}
.ws86{word-spacing:-9.192735pt;}
.ws3{word-spacing:-9.192159pt;}
.ws15{word-spacing:-9.085891pt;}
.wsc4{word-spacing:-9.082189pt;}
.ws32{word-spacing:-9.076371pt;}
.wsa6{word-spacing:-9.024008pt;}
.wsd8{word-spacing:-9.018189pt;}
.wsb{word-spacing:-8.979623pt;}
.ws66{word-spacing:-8.965826pt;}
.wse9{word-spacing:-8.960007pt;}
.wsd{word-spacing:-8.926490pt;}
.ws27{word-spacing:-8.907644pt;}
.wsea{word-spacing:-8.901826pt;}
.wse{word-spacing:-8.873356pt;}
.ws54{word-spacing:-8.849462pt;}
.ws95{word-spacing:-8.808735pt;}
.wsae{word-spacing:-8.791280pt;}
.wsb0{word-spacing:-8.785462pt;}
.ws10{word-spacing:-8.767088pt;}
.wsad{word-spacing:-8.733098pt;}
.ws7{word-spacing:-8.713954pt;}
.ws56{word-spacing:-8.669098pt;}
.ws9{word-spacing:-8.660820pt;}
.ws68{word-spacing:-8.616734pt;}
.ws9d{word-spacing:-8.558553pt;}
.ws92{word-spacing:-8.552734pt;}
.wsa{word-spacing:-8.501419pt;}
.ws1e{word-spacing:-8.500371pt;}
.ws63{word-spacing:-8.442189pt;}
.wsde{word-spacing:-8.384007pt;}
.ws5d{word-spacing:-8.325825pt;}
.wsa2{word-spacing:-8.267643pt;}
.wsc{word-spacing:-8.241063pt;}
.ws80{word-spacing:-8.209461pt;}
.ws89{word-spacing:-8.203643pt;}
.ws4c{word-spacing:-8.093098pt;}
.wscf{word-spacing:-8.029098pt;}
.wsdc{word-spacing:-7.976734pt;}
.ws33{word-spacing:-7.685825pt;}
.wsc0{word-spacing:-7.104006pt;}
.ws8b{word-spacing:-7.098188pt;}
.wsc2{word-spacing:-6.987642pt;}
.wsd1{word-spacing:-6.865460pt;}
.wsc8{word-spacing:-6.807278pt;}
.wsc6{word-spacing:-6.749097pt;}
.ws88{word-spacing:-6.696733pt;}
.wsa9{word-spacing:-6.516369pt;}
.ws13{word-spacing:-6.434511pt;}
.ws4{word-spacing:-6.269796pt;}
.ws6{word-spacing:-6.216662pt;}
.ws73{word-spacing:-6.178570pt;}
.ws6d{word-spacing:-6.171411pt;}
.ws47{word-spacing:-6.170838pt;}
.ws69{word-spacing:-6.170712pt;}
.ws6a{word-spacing:-6.170139pt;}
.ws8c{word-spacing:-6.167278pt;}
.ws74{word-spacing:-6.143472pt;}
.wse5{word-spacing:-6.039278pt;}
.ws87{word-spacing:-5.940369pt;}
.wsc9{word-spacing:-5.934550pt;}
.ws60{word-spacing:-5.899641pt;}
.ws9a{word-spacing:-5.882187pt;}
.ws25{word-spacing:-5.765823pt;}
.wsb2{word-spacing:-5.643641pt;}
.wsca{word-spacing:-5.533096pt;}
.wsb8{word-spacing:-5.469095pt;}
.wsbb{word-spacing:-5.410914pt;}
.ws9b{word-spacing:-5.294550pt;}
.ws5e{word-spacing:-5.178186pt;}
.wsd5{word-spacing:-5.061822pt;}
.wsd7{word-spacing:-4.829095pt;}
.ws36{word-spacing:-4.712731pt;}
.ws38{word-spacing:-4.654549pt;}
.wsb3{word-spacing:-4.538186pt;}
.ws5f{word-spacing:-4.480004pt;}
.wsd2{word-spacing:-4.421822pt;}
.wsd6{word-spacing:-4.363640pt;}
.wsf{word-spacing:-4.303843pt;}
.ws61{word-spacing:-4.194913pt;}
.ws77{word-spacing:-4.189094pt;}
.wsd3{word-spacing:-3.781821pt;}
.ws59{word-spacing:-3.607276pt;}
.wsd4{word-spacing:-3.554912pt;}
.wsb4{word-spacing:-3.490912pt;}
.wsac{word-spacing:-3.421094pt;}
.wsb5{word-spacing:-3.258185pt;}
.ws52{word-spacing:-3.246548pt;}
.wse6{word-spacing:-3.130184pt;}
.ws4b{word-spacing:-2.938838pt;}
.ws7d{word-spacing:-2.938139pt;}
.ws14{word-spacing:-2.603559pt;}
.ws79{word-spacing:-2.443638pt;}
.ws64{word-spacing:-2.274911pt;}
.ws58{word-spacing:-1.978183pt;}
.ws5{word-spacing:-1.864999pt;}
.ws97{word-spacing:-1.570910pt;}
.ws39{word-spacing:-1.460365pt;}
.ws99{word-spacing:-1.344001pt;}
.ws98{word-spacing:-1.338183pt;}
.wscd{word-spacing:-1.098061pt;}
.ws72{word-spacing:-0.645819pt;}
.wsab{word-spacing:-0.162909pt;}
.ws8d{word-spacing:-0.104727pt;}
.ws44{word-spacing:-0.058182pt;}
.ws1b{word-spacing:-0.046545pt;}
.ws90{word-spacing:-0.042507pt;}
.ws7c{word-spacing:-0.031881pt;}
.wsaf{word-spacing:-0.014360pt;}
.ws94{word-spacing:-0.001034pt;}
.ws28{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.011636pt;}
.ws7b{word-spacing:0.244364pt;}
.ws78{word-spacing:0.302546pt;}
.wsbe{word-spacing:0.360728pt;}
.wsc5{word-spacing:0.814546pt;}
.ws5a{word-spacing:1.216001pt;}
.wsc1{word-spacing:2.048002pt;}
.ws67{word-spacing:3.211639pt;}
.wsdd{word-spacing:3.269821pt;}
.wsbd{word-spacing:3.328003pt;}
.wsa1{word-spacing:3.560730pt;}
.wsb1{word-spacing:4.142549pt;}
.wsa8{word-spacing:5.655277pt;}
.wsc7{word-spacing:6.341823pt;}
.wsb9{word-spacing:7.342552pt;}
.wsba{word-spacing:7.458915pt;}
.ws9c{word-spacing:7.691643pt;}
.ws51{word-spacing:9.989162pt;}
.wsbc{word-spacing:10.123645pt;}
.ws8a{word-spacing:15.520039pt;}
.ws48{word-spacing:16.149596pt;}
.ws82{word-spacing:16.154929pt;}
.ws4e{word-spacing:16.174559pt;}
.wsa3{word-spacing:18.772619pt;}
.wsce{word-spacing:18.777953pt;}
.wsa4{word-spacing:19.386198pt;}
.wsd0{word-spacing:22.004619pt;}
.ws8f{word-spacing:29.090933pt;}
.ws29{word-spacing:35.865600pt;}
.ws34{word-spacing:38.749123pt;}
.ws16{word-spacing:43.038600pt;}
.wse0{word-spacing:51.967286pt;}
.ws4d{word-spacing:52.010496pt;}
.ws6e{word-spacing:90.740439pt;}
._18{margin-left:-22.167291pt;}
._1f{margin-left:-19.840017pt;}
._13{margin-left:-9.681537pt;}
._d{margin-left:-7.605878pt;}
._1{margin-left:-5.228407pt;}
._12{margin-left:-4.282884pt;}
._7{margin-left:-3.262431pt;}
._0{margin-left:-1.721549pt;}
._2{width:1.721549pt;}
._10{width:3.083639pt;}
._a{width:4.130112pt;}
._15{width:5.225652pt;}
._11{width:6.341823pt;}
._1d{width:16.174559pt;}
._6{width:18.724410pt;}
._f{width:19.805742pt;}
._5{width:21.370476pt;}
._4{width:23.857106pt;}
._8{width:25.134566pt;}
._9{width:26.356386pt;}
._b{width:28.060645pt;}
._3{width:29.457427pt;}
._17{width:32.417667pt;}
._19{width:35.292486pt;}
._1c{width:38.632759pt;}
._1b{width:39.738215pt;}
._14{width:41.658217pt;}
._1e{width:42.689543pt;}
._1a{width:51.033990pt;}
._16{width:67.898238pt;}
._e{width:71.731200pt;}
._c{width:86.077200pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:56.149333pt;}
.y51{bottom:96.000000pt;}
.y162{bottom:100.397333pt;}
.y2a{bottom:108.769333pt;}
.y79{bottom:114.065333pt;}
.y161{bottom:118.462667pt;}
.yf3{bottom:121.174667pt;}
.y29{bottom:126.834667pt;}
.y50{bottom:127.436000pt;}
.y78{bottom:132.130667pt;}
.y160{bottom:136.529333pt;}
.yf2{bottom:139.240000pt;}
.y118{bottom:143.488000pt;}
.y4f{bottom:145.501333pt;}
.y13b{bottom:149.490667pt;}
.y77{bottom:150.197333pt;}
.y28{bottom:156.854667pt;}
.yf0{bottom:157.306667pt;}
.y4e{bottom:163.568000pt;}
.y15f{bottom:163.988000pt;}
.ya0{bottom:164.721333pt;}
.y13a{bottom:167.556000pt;}
.yf1{bottom:168.381333pt;}
.y117{bottom:172.910667pt;}
.y27{bottom:174.921333pt;}
.y76{bottom:182.453333pt;}
.y9f{bottom:182.786667pt;}
.yef{bottom:184.785333pt;}
.y139{bottom:185.622667pt;}
.yc1{bottom:189.968000pt;}
.y116{bottom:190.976000pt;}
.y26{bottom:192.986667pt;}
.y4d{bottom:195.004000pt;}
.yee{bottom:202.850667pt;}
.y15e{bottom:202.938667pt;}
.y138{bottom:203.688000pt;}
.y115{bottom:209.041333pt;}
.y25{bottom:211.052000pt;}
.y9e{bottom:212.808000pt;}
.y75{bottom:214.709333pt;}
.yed{bottom:220.916000pt;}
.y15d{bottom:221.004000pt;}
.y137{bottom:221.753333pt;}
.yc0{bottom:222.645333pt;}
.y114{bottom:224.797333pt;}
.y4c{bottom:226.440000pt;}
.y113{bottom:227.108000pt;}
.y24{bottom:229.117333pt;}
.y9d{bottom:230.873333pt;}
.y74{bottom:232.774667pt;}
.y15c{bottom:239.069333pt;}
.y136{bottom:239.818667pt;}
.y23{bottom:247.182667pt;}
.y9c{bottom:248.938667pt;}
.yec{bottom:250.544000pt;}
.y4b{bottom:252.062667pt;}
.ybf{bottom:255.322667pt;}
.y112{bottom:256.529333pt;}
.y15b{bottom:257.134667pt;}
.y73{bottom:262.725333pt;}
.y22{bottom:265.249333pt;}
.y9b{bottom:267.004000pt;}
.y135{bottom:269.840000pt;}
.ybe{bottom:273.388000pt;}
.y159{bottom:275.201333pt;}
.yeb{bottom:280.172000pt;}
.y72{bottom:280.790667pt;}
.y15a{bottom:282.529333pt;}
.y21{bottom:283.314667pt;}
.y4a{bottom:283.498667pt;}
.y9a{bottom:285.069333pt;}
.y111{bottom:285.952000pt;}
.y158{bottom:295.490667pt;}
.yea{bottom:298.237333pt;}
.y71{bottom:298.856000pt;}
.y134{bottom:299.860000pt;}
.y20{bottom:301.380000pt;}
.y99{bottom:303.136000pt;}
.ybd{bottom:303.409333pt;}
.y110{bottom:313.412000pt;}
.y157{bottom:313.556000pt;}
.y49{bottom:314.934667pt;}
.ye9{bottom:316.302667pt;}
.y70{bottom:316.921333pt;}
.y1f{bottom:319.445333pt;}
.y98{bottom:321.201333pt;}
.ybc{bottom:321.474667pt;}
.y156{bottom:331.621333pt;}
.y133{bottom:332.537333pt;}
.y6f{bottom:334.988000pt;}
.y48{bottom:335.186667pt;}
.y1e{bottom:337.510667pt;}
.y97{bottom:339.266667pt;}
.ye8{bottom:343.781333pt;}
.y47{bottom:345.164000pt;}
.y155{bottom:349.686667pt;}
.y6e{bottom:350.609333pt;}
.y6d{bottom:350.801333pt;}
.y10f{bottom:351.850667pt;}
.y6c{bottom:353.053333pt;}
.ybb{bottom:354.152000pt;}
.y1d{bottom:355.577333pt;}
.y96{bottom:357.332000pt;}
.ye6{bottom:361.848000pt;}
.y132{bottom:365.214667pt;}
.ye7{bottom:366.148000pt;}
.y46{bottom:367.645333pt;}
.y154{bottom:367.753333pt;}
.y10e{bottom:369.916000pt;}
.y6b{bottom:371.118667pt;}
.y1c{bottom:373.642667pt;}
.y95{bottom:375.397333pt;}
.ye4{bottom:379.913333pt;}
.y17b{bottom:379.952000pt;}
.y131{bottom:383.281333pt;}
.ye5{bottom:384.213333pt;}
.yba{bottom:386.829333pt;}
.y6a{bottom:389.184000pt;}
.y1b{bottom:391.708000pt;}
.y94{bottom:393.462667pt;}
.y93{bottom:393.464000pt;}
.ye3{bottom:397.978667pt;}
.y45{bottom:399.081333pt;}
.y153{bottom:400.222667pt;}
.y10d{bottom:402.385333pt;}
.yb9{bottom:404.894667pt;}
.y1a{bottom:409.773333pt;}
.y17a{bottom:409.972000pt;}
.y130{bottom:413.301333pt;}
.ye2{bottom:416.044000pt;}
.y69{bottom:418.713333pt;}
.yb8{bottom:422.961333pt;}
.y92{bottom:423.484000pt;}
.y19{bottom:427.838667pt;}
.y68{bottom:428.690667pt;}
.y44{bottom:430.518667pt;}
.y12f{bottom:431.366667pt;}
.y179{bottom:439.993333pt;}
.y91{bottom:441.549333pt;}
.ye1{bottom:443.524000pt;}
.y18{bottom:445.905333pt;}
.y152{bottom:446.052000pt;}
.y10c{bottom:447.702667pt;}
.ye0{bottom:447.824000pt;}
.y43{bottom:448.584000pt;}
.yb7{bottom:450.420000pt;}
.ydf{bottom:461.589333pt;}
.y12e{bottom:463.836000pt;}
.y17{bottom:463.970667pt;}
.y151{bottom:464.117333pt;}
.y10b{bottom:465.769333pt;}
.y67{bottom:466.782667pt;}
.y90{bottom:471.570667pt;}
.y178{bottom:472.462667pt;}
.y42{bottom:477.570667pt;}
.y150{bottom:482.182667pt;}
.y10a{bottom:483.834667pt;}
.yb6{bottom:489.370667pt;}
.yde{bottom:491.216000pt;}
.y41{bottom:495.636000pt;}
.y16{bottom:496.440000pt;}
.y66{bottom:496.453333pt;}
.y8f{bottom:498.270667pt;}
.y14f{bottom:500.248000pt;}
.y109{bottom:501.900000pt;}
.yb5{bottom:507.436000pt;}
.y12d{bottom:509.665333pt;}
.y40{bottom:513.701333pt;}
.y65{bottom:514.518667pt;}
.y8e{bottom:516.336000pt;}
.y177{bottom:518.292000pt;}
.y14e{bottom:518.313333pt;}
.y108{bottom:519.965333pt;}
.ydd{bottom:520.844000pt;}
.yb4{bottom:525.501333pt;}
.y12c{bottom:527.732000pt;}
.y3f{bottom:531.766667pt;}
.y64{bottom:532.584000pt;}
.y176{bottom:536.357333pt;}
.y14d{bottom:536.380000pt;}
.ydc{bottom:536.658667pt;}
.y107{bottom:538.030667pt;}
.ydb{bottom:538.909333pt;}
.y15{bottom:542.269333pt;}
.y8d{bottom:543.036000pt;}
.yb3{bottom:543.566667pt;}
.y12b{bottom:545.797333pt;}
.y3e{bottom:549.833333pt;}
.y175{bottom:554.422667pt;}
.y14c{bottom:554.445333pt;}
.y14{bottom:558.209333pt;}
.y8c{bottom:561.101333pt;}
.yb2{bottom:561.633333pt;}
.y63{bottom:564.840000pt;}
.yda{bottom:566.389333pt;}
.y3d{bottom:567.898667pt;}
.y174{bottom:572.489333pt;}
.y12a{bottom:572.497333pt;}
.y14b{bottom:572.510667pt;}
.y13{bottom:574.149333pt;}
.y8b{bottom:579.166667pt;}
.y106{bottom:585.574667pt;}
.y3c{bottom:585.964000pt;}
.yb1{bottom:589.592000pt;}
.y12{bottom:590.089333pt;}
.y173{bottom:590.554667pt;}
.y129{bottom:590.562667pt;}
.y14a{bottom:590.576000pt;}
.yd9{bottom:596.016000pt;}
.y62{bottom:597.096000pt;}
.y8a{bottom:597.232000pt;}
.yb0{bottom:597.661333pt;}
.y105{bottom:603.640000pt;}
.y3b{bottom:604.029333pt;}
.yaf{bottom:605.108000pt;}
.y11{bottom:606.029333pt;}
.y172{bottom:608.620000pt;}
.y128{bottom:608.628000pt;}
.y149{bottom:608.641333pt;}
.yae{bottom:609.408000pt;}
.y61{bottom:615.161333pt;}
.y104{bottom:621.706667pt;}
.y10{bottom:621.970667pt;}
.y3a{bottom:622.094667pt;}
.y89{bottom:623.932000pt;}
.yd8{bottom:625.644000pt;}
.y171{bottom:626.685333pt;}
.y127{bottom:626.693333pt;}
.y148{bottom:626.708000pt;}
.y60{bottom:633.228000pt;}
.yad{bottom:637.785333pt;}
.yf{bottom:637.910667pt;}
.y103{bottom:639.772000pt;}
.y88{bottom:641.998667pt;}
.y170{bottom:644.750667pt;}
.y147{bottom:644.773333pt;}
.y39{bottom:648.174667pt;}
.ye{bottom:653.850667pt;}
.y126{bottom:654.153333pt;}
.yd7{bottom:655.156000pt;}
.y102{bottom:657.837333pt;}
.y146{bottom:659.730667pt;}
.y16f{bottom:662.817333pt;}
.y145{bottom:662.838667pt;}
.y5f{bottom:665.484000pt;}
.y38{bottom:666.240000pt;}
.y87{bottom:667.958667pt;}
.yd{bottom:669.790667pt;}
.yac{bottom:670.462667pt;}
.yd6{bottom:673.221333pt;}
.y101{bottom:675.902667pt;}
.y86{bottom:677.936000pt;}
.y16e{bottom:680.882667pt;}
.yd5{bottom:683.500000pt;}
.y37{bottom:684.305333pt;}
.yc{bottom:685.730667pt;}
.yd4{bottom:691.288000pt;}
.y100{bottom:691.717333pt;}
.y144{bottom:692.808000pt;}
.y125{bottom:693.102667pt;}
.yff{bottom:693.968000pt;}
.yfe{bottom:693.969333pt;}
.y5e{bottom:697.740000pt;}
.y16d{bottom:698.948000pt;}
.yb{bottom:701.670667pt;}
.yab{bottom:703.140000pt;}
.y143{bottom:709.117333pt;}
.yd2{bottom:709.353333pt;}
.y124{bottom:711.169333pt;}
.y36{bottom:711.765333pt;}
.yd3{bottom:714.632000pt;}
.y85{bottom:715.029333pt;}
.y5d{bottom:715.805333pt;}
.y16c{bottom:717.013333pt;}
.ya{bottom:717.612000pt;}
.yaa{bottom:721.205333pt;}
.yfd{bottom:721.277333pt;}
.y84{bottom:733.094667pt;}
.y9{bottom:733.552000pt;}
.y5c{bottom:733.870667pt;}
.y16b{bottom:735.078667pt;}
.yd0{bottom:736.838667pt;}
.yfc{bottom:738.270667pt;}
.y123{bottom:740.525333pt;}
.y122{bottom:741.189333pt;}
.y142{bottom:741.794667pt;}
.yfb{bottom:744.456000pt;}
.y8{bottom:749.492000pt;}
.y35{bottom:750.520000pt;}
.ya9{bottom:751.226667pt;}
.yd1{bottom:753.304000pt;}
.y121{bottom:759.254667pt;}
.y83{bottom:759.794667pt;}
.y141{bottom:759.861333pt;}
.y5b{bottom:763.540000pt;}
.y16a{bottom:765.100000pt;}
.y7{bottom:765.432000pt;}
.ycf{bottom:766.240000pt;}
.ya8{bottom:769.292000pt;}
.yfa{bottom:773.878667pt;}
.y82{bottom:777.860000pt;}
.y140{bottom:777.926667pt;}
.y6{bottom:781.372000pt;}
.y5a{bottom:781.606667pt;}
.yce{bottom:782.932000pt;}
.y34{bottom:782.989333pt;}
.y169{bottom:783.165333pt;}
.y120{bottom:788.612000pt;}
.y11f{bottom:789.276000pt;}
.y81{bottom:795.925333pt;}
.ycd{bottom:798.746667pt;}
.y59{bottom:799.672000pt;}
.ycc{bottom:800.997333pt;}
.ya7{bottom:801.761333pt;}
.yf9{bottom:803.301333pt;}
.y5{bottom:805.614667pt;}
.y11e{bottom:807.341333pt;}
.y13f{bottom:810.604000pt;}
.y168{bottom:813.186667pt;}
.y58{bottom:817.737333pt;}
.y11d{bottom:825.406667pt;}
.y80{bottom:825.946667pt;}
.y33{bottom:828.624000pt;}
.ycb{bottom:830.510667pt;}
.yf8{bottom:830.609333pt;}
.y167{bottom:831.252000pt;}
.y13e{bottom:843.281333pt;}
.y7f{bottom:844.012000pt;}
.y57{bottom:845.196000pt;}
.y32{bottom:846.689333pt;}
.ya6{bottom:847.590667pt;}
.yca{bottom:848.576000pt;}
.y166{bottom:849.317333pt;}
.y11c{bottom:855.428000pt;}
.yf7{bottom:858.069333pt;}
.y4{bottom:859.313333pt;}
.y7e{bottom:862.077333pt;}
.yc9{bottom:866.641333pt;}
.y165{bottom:867.382667pt;}
.y11b{bottom:873.493333pt;}
.y13d{bottom:875.750667pt;}
.y31{bottom:878.125333pt;}
.ya5{bottom:880.268000pt;}
.y56{bottom:884.080000pt;}
.yc8{bottom:884.706667pt;}
.y164{bottom:885.448000pt;}
.y7d{bottom:889.537333pt;}
.y11a{bottom:891.558667pt;}
.y3{bottom:891.924000pt;}
.yf6{bottom:896.508000pt;}
.y55{bottom:902.146667pt;}
.y163{bottom:903.514667pt;}
.y30{bottom:909.562667pt;}
.yc7{bottom:912.186667pt;}
.ya4{bottom:912.945333pt;}
.y54{bottom:920.212000pt;}
.yf5{bottom:921.580000pt;}
.y2f{bottom:927.628000pt;}
.y7c{bottom:928.486667pt;}
.yc6{bottom:930.252000pt;}
.ya3{bottom:931.010667pt;}
.y2{bottom:932.340000pt;}
.yf4{bottom:939.645333pt;}
.y7b{bottom:946.553333pt;}
.yc5{bottom:948.317333pt;}
.y53{bottom:949.881333pt;}
.y119{bottom:949.924000pt;}
.y1{bottom:953.593333pt;}
.y2e{bottom:955.086667pt;}
.ya2{bottom:957.710667pt;}
.yc4{bottom:966.382667pt;}
.y52{bottom:967.946667pt;}
.ya1{bottom:975.776000pt;}
.y7a{bottom:979.230667pt;}
.yc3{bottom:982.197333pt;}
.yc2{bottom:984.448000pt;}
.y13c{bottom:990.246667pt;}
.y2d{bottom:993.842667pt;}
.y2c{bottom:1011.908000pt;}
.h14{height:29.925069pt;}
.h25{height:31.880400pt;}
.h1e{height:34.226423pt;}
.h4{height:37.193707pt;}
.h6{height:37.406242pt;}
.h19{height:39.531597pt;}
.h5{height:39.850400pt;}
.h9{height:40.960034pt;}
.h8{height:43.636400pt;}
.h3{height:45.525402pt;}
.h21{height:46.292400pt;}
.ha{height:47.820800pt;}
.h11{height:49.546650pt;}
.h10{height:49.551983pt;}
.hb{height:51.039735pt;}
.he{height:52.458650pt;}
.h18{height:52.463983pt;}
.h1d{height:52.989733pt;}
.h1f{height:52.995067pt;}
.h15{height:53.412400pt;}
.h16{height:53.946402pt;}
.h26{height:53.951735pt;}
.h17{height:55.901733pt;}
.h23{height:55.907067pt;}
.h1c{height:56.731597pt;}
.h1b{height:56.736930pt;}
.h7{height:57.384800pt;}
.h22{height:59.392930pt;}
.h20{height:60.489733pt;}
.h2{height:64.454458pt;}
.h27{height:71.583983pt;}
.hf{height:83.830263pt;}
.h1a{height:83.835597pt;}
.h24{height:91.270263pt;}
.hc{height:99.771597pt;}
.h12{height:99.776930pt;}
.hd{height:139.680930pt;}
.h13{height:139.686263pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x69{left:93.934667pt;}
.x70{left:94.914667pt;}
.x1a{left:96.000000pt;}
.x85{left:99.893333pt;}
.xd0{left:102.782667pt;}
.x1b{left:106.505333pt;}
.x133{left:110.008000pt;}
.x63{left:111.957333pt;}
.xe5{left:115.581333pt;}
.xeb{left:116.880000pt;}
.x20{left:118.581333pt;}
.x10e{left:121.145333pt;}
.x39{left:122.741333pt;}
.xc1{left:125.090667pt;}
.x13d{left:127.878667pt;}
.x14{left:130.256000pt;}
.x26{left:131.426667pt;}
.xb{left:132.364000pt;}
.x13{left:133.946667pt;}
.x12{left:137.636000pt;}
.x1e{left:140.061333pt;}
.xae{left:142.216000pt;}
.xf5{left:143.996000pt;}
.x100{left:145.088000pt;}
.x64{left:148.318667pt;}
.x3a{left:149.772000pt;}
.x1f{left:151.374667pt;}
.x6{left:152.289333pt;}
.x65{left:154.594667pt;}
.xe6{left:156.592000pt;}
.x28{left:157.610667pt;}
.x15{left:158.930667pt;}
.x8d{left:161.409333pt;}
.xd5{left:163.394667pt;}
.x145{left:164.989333pt;}
.x8e{left:168.192000pt;}
.x116{left:169.240000pt;}
.x29{left:173.764000pt;}
.x1{left:178.552000pt;}
.xe7{left:180.172000pt;}
.x56{left:182.976000pt;}
.x131{left:184.428000pt;}
.x10f{left:185.605333pt;}
.x7a{left:190.256000pt;}
.xa7{left:192.810667pt;}
.x53{left:196.192000pt;}
.x12c{left:197.529333pt;}
.x66{left:200.984000pt;}
.x47{left:202.866667pt;}
.x86{left:204.402667pt;}
.xd2{left:205.689333pt;}
.x7f{left:208.157333pt;}
.x48{left:209.649333pt;}
.x57{left:210.785333pt;}
.xa8{left:213.997333pt;}
.x52{left:215.546667pt;}
.x10c{left:221.622667pt;}
.x110{left:224.558667pt;}
.x102{left:225.522667pt;}
.x58{left:226.482667pt;}
.x6a{left:228.438667pt;}
.xa9{left:229.432000pt;}
.xc4{left:232.581333pt;}
.x12d{left:234.125333pt;}
.xb0{left:235.946667pt;}
.x103{left:238.050667pt;}
.x6b{left:238.948000pt;}
.xb8{left:240.178667pt;}
.xc5{left:244.968000pt;}
.x114{left:246.888000pt;}
.xaa{left:247.846667pt;}
.xba{left:248.888000pt;}
.x79{left:250.765333pt;}
.x2{left:254.776000pt;}
.x80{left:257.292000pt;}
.x7c{left:259.069333pt;}
.x10a{left:260.573333pt;}
.x134{left:265.154667pt;}
.xc9{left:266.566667pt;}
.xa2{left:268.234667pt;}
.x7d{left:269.237333pt;}
.xe9{left:270.401333pt;}
.x108{left:273.857333pt;}
.xca{left:275.384000pt;}
.x4e{left:276.365333pt;}
.xb5{left:278.042667pt;}
.x44{left:279.122667pt;}
.x7b{left:280.449333pt;}
.xdf{left:283.732000pt;}
.x2a{left:285.205333pt;}
.x121{left:287.634667pt;}
.x8f{left:289.777333pt;}
.xb9{left:290.889333pt;}
.x122{left:293.189333pt;}
.xce{left:294.524000pt;}
.xc{left:295.526667pt;}
.x71{left:296.521333pt;}
.x3e{left:297.689333pt;}
.x36{left:298.698667pt;}
.x2b{left:300.550667pt;}
.xd{left:301.721333pt;}
.xf6{left:305.392000pt;}
.x142{left:306.890667pt;}
.x6c{left:307.848000pt;}
.x81{left:309.664000pt;}
.x42{left:313.870667pt;}
.x13e{left:315.781333pt;}
.xb2{left:317.253333pt;}
.xa1{left:318.874667pt;}
.x43{left:320.653333pt;}
.xbb{left:325.929333pt;}
.x13c{left:327.334667pt;}
.xef{left:328.566667pt;}
.x109{left:329.614667pt;}
.x4d{left:331.161333pt;}
.x113{left:332.406667pt;}
.x3{left:333.577333pt;}
.x51{left:335.104000pt;}
.x117{left:336.177333pt;}
.xb3{left:337.818667pt;}
.x12f{left:338.758667pt;}
.x138{left:341.440000pt;}
.x75{left:342.366667pt;}
.x59{left:343.610667pt;}
.x4{left:344.588000pt;}
.x3b{left:347.821333pt;}
.x5a{left:350.393333pt;}
.x37{left:352.506667pt;}
.x87{left:354.652000pt;}
.x21{left:355.694667pt;}
.xcc{left:357.401333pt;}
.xcb{left:359.368000pt;}
.x3f{left:361.388000pt;}
.xfb{left:362.910667pt;}
.x88{left:365.161333pt;}
.x111{left:366.185333pt;}
.x5{left:367.833333pt;}
.x16{left:369.124000pt;}
.x22{left:371.037333pt;}
.x90{left:372.622667pt;}
.xb1{left:374.713333pt;}
.xee{left:376.477333pt;}
.xc2{left:377.505333pt;}
.x38{left:378.684000pt;}
.x61{left:380.229333pt;}
.xfe{left:381.528000pt;}
.x17{left:382.456000pt;}
.x91{left:383.597333pt;}
.xc3{left:384.800000pt;}
.xf2{left:385.740000pt;}
.xff{left:387.988000pt;}
.x99{left:389.929333pt;}
.x132{left:391.205333pt;}
.xcd{left:392.148000pt;}
.x27{left:393.214667pt;}
.x7{left:396.464000pt;}
.xbc{left:397.784000pt;}
.x107{left:399.048000pt;}
.x128{left:400.918667pt;}
.xb6{left:401.890667pt;}
.x3c{left:403.317333pt;}
.x9a{left:406.253333pt;}
.xfc{left:407.356000pt;}
.xd6{left:408.282667pt;}
.x62{left:409.173333pt;}
.x8{left:410.314667pt;}
.x4f{left:412.386667pt;}
.x2c{left:414.402667pt;}
.x10b{left:415.316000pt;}
.x82{left:416.270667pt;}
.x118{left:417.376000pt;}
.x13f{left:419.030667pt;}
.xd7{left:420.338667pt;}
.x49{left:422.654667pt;}
.x141{left:423.617333pt;}
.x18{left:424.710667pt;}
.x83{left:426.780000pt;}
.x92{left:427.788000pt;}
.x2d{left:428.948000pt;}
.xf3{left:430.337333pt;}
.x72{left:431.253333pt;}
.x127{left:432.694667pt;}
.x3d{left:435.028000pt;}
.x54{left:437.580000pt;}
.x19{left:438.481333pt;}
.x67{left:439.532000pt;}
.x9{left:441.006667pt;}
.xec{left:442.126667pt;}
.x2e{left:444.324000pt;}
.x68{left:446.314667pt;}
.xf7{left:448.349333pt;}
.x55{left:450.600000pt;}
.x2f{left:451.596000pt;}
.x9b{left:453.388000pt;}
.xed{left:454.298667pt;}
.xa{left:455.596000pt;}
.x4a{left:457.745333pt;}
.x30{left:458.884000pt;}
.x9c{left:460.170667pt;}
.xf8{left:461.508000pt;}
.x93{left:463.464000pt;}
.x12b{left:464.456000pt;}
.x31{left:465.348000pt;}
.xc6{left:468.025333pt;}
.xa3{left:469.049333pt;}
.xb4{left:470.184000pt;}
.x32{left:472.636000pt;}
.x11d{left:475.870667pt;}
.xb7{left:476.829333pt;}
.x33{left:479.100000pt;}
.x13a{left:480.181333pt;}
.x50{left:481.446667pt;}
.x129{left:482.344000pt;}
.xe0{left:483.637333pt;}
.x7e{left:484.738667pt;}
.x34{left:486.388000pt;}
.x146{left:487.301333pt;}
.xe{left:489.220000pt;}
.xbd{left:490.609333pt;}
.xc7{left:492.910667pt;}
.x40{left:494.898667pt;}
.x4b{left:495.868000pt;}
.x12a{left:497.938667pt;}
.xa4{left:501.850667pt;}
.xd1{left:503.774667pt;}
.x104{left:504.865333pt;}
.x41{left:506.212000pt;}
.xcf{left:507.878667pt;}
.x11c{left:509.401333pt;}
.x105{left:511.648000pt;}
.xf{left:513.148000pt;}
.x5b{left:514.972000pt;}
.x123{left:515.984000pt;}
.xab{left:516.970667pt;}
.x35{left:519.518667pt;}
.x4c{left:522.045333pt;}
.xac{left:524.293333pt;}
.x5e{left:527.149333pt;}
.x136{left:529.385333pt;}
.x119{left:530.481333pt;}
.x24{left:532.056000pt;}
.x5f{left:533.613333pt;}
.xad{left:534.802667pt;}
.x11a{left:536.250667pt;}
.x137{left:537.698667pt;}
.x101{left:538.836000pt;}
.x60{left:541.032000pt;}
.xf0{left:542.862667pt;}
.x5c{left:543.769333pt;}
.x25{left:547.412000pt;}
.x10d{left:549.016000pt;}
.x89{left:550.090667pt;}
.x9f{left:554.916000pt;}
.x76{left:557.441333pt;}
.x143{left:560.820000pt;}
.x8a{left:561.969333pt;}
.x147{left:563.202667pt;}
.xf1{left:565.002667pt;}
.x45{left:566.388000pt;}
.xd3{left:568.112000pt;}
.x6d{left:572.974667pt;}
.x73{left:574.837333pt;}
.x12e{left:576.122667pt;}
.xa0{left:578.314667pt;}
.xe1{left:579.426667pt;}
.x112{left:581.313333pt;}
.x106{left:583.329333pt;}
.x74{left:585.346667pt;}
.x135{left:587.060000pt;}
.xf4{left:588.378667pt;}
.x8b{left:590.008000pt;}
.xea{left:591.033333pt;}
.xe2{left:593.476000pt;}
.x130{left:594.669333pt;}
.xf9{left:595.816000pt;}
.x94{left:597.206667pt;}
.x115{left:599.260000pt;}
.xa5{left:600.762667pt;}
.x8c{left:601.838667pt;}
.xe3{left:603.262667pt;}
.x144{left:604.228000pt;}
.x10{left:605.404000pt;}
.xd8{left:606.350667pt;}
.xd4{left:609.546667pt;}
.x11{left:611.598667pt;}
.xd9{left:612.816000pt;}
.x46{left:614.752000pt;}
.xaf{left:616.644000pt;}
.xda{left:618.358667pt;}
.x5d{left:623.133333pt;}
.x124{left:625.226667pt;}
.x140{left:626.794667pt;}
.xfa{left:627.912000pt;}
.x125{left:630.781333pt;}
.xa6{left:632.857333pt;}
.xfd{left:634.949333pt;}
.x6e{left:636.222667pt;}
.xe4{left:639.242667pt;}
.x126{left:640.964000pt;}
.x11b{left:644.148000pt;}
.xe8{left:645.870667pt;}
.x84{left:647.580000pt;}
.x9d{left:650.838667pt;}
.x95{left:652.393333pt;}
.xdb{left:653.422667pt;}
.x77{left:655.022667pt;}
.x139{left:656.616000pt;}
.x96{left:659.409333pt;}
.xc8{left:661.002667pt;}
.x97{left:663.368000pt;}
.x78{left:665.532000pt;}
.x1c{left:667.282667pt;}
.x9e{left:669.245333pt;}
.x13b{left:671.146667pt;}
.xbf{left:672.316000pt;}
.x11e{left:676.142667pt;}
.xdc{left:678.909333pt;}
.xbe{left:680.324000pt;}
.x11f{left:681.686667pt;}
.x1d{left:682.617333pt;}
.xc0{left:684.430667pt;}
.xdd{left:685.692000pt;}
.x23{left:687.196000pt;}
.x98{left:688.118667pt;}
.xde{left:691.236000pt;}
.x120{left:693.858667pt;}
.x6f{left:695.381333pt;}
}




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