
    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_7e491e62c453d872172589a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_34a25a1a534069d027dfa09f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.465000;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_5b32acb967b544737602f68f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_386ddae236f23c3785dc2fa0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.759000;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_2283940f4be136952207774d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1aef6862794fb41468cfa991.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_23be9a4446bca1d509bc8c23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.476000;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_1f30e8dc99f27c2129dead18.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_8c72e47ca9471f4aac9b99d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_ad1ac9c19f56ff078e374c8e.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_273abe5acaaa4cec4abec7e5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;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_1e038574c519f3781cb56baf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;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_91e8ab2f6588293888a28d04.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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_feab78685bdac0d32f77993f.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_7c0d7df51ef135bb06c6a2d5.woff2')format("woff");}.fff{font-family:fff;line-height:0.450000;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_554e2187e346f0512dabbf60.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_5b603cfc23f5adae8942138c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.687500;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_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.678223;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_c7c1f877e92e82e9de777cca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_e22bbb70138f35806a85df93.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_bcb1da50b836c1a09fcff1a8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9c059263e9ec94f07f539978.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_ccb2fcc5dd842353fb83f906.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e22bbb70138f35806a85df93.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_e22bbb70138f35806a85df93.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f2293eb5f73938d191d86bb6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7ac8c891663b99c9235dc9b6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.714046;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_4993b935dafb7599e540a059.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_b3f80a4f141ac466b517b1bb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_b3f80a4f141ac466b517b1bb.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_04353975364327ae98e0654f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.908203;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:ff24;src:url('chunks/assets/font_6beea736da707e6f281c9f62.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.908203;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v14{vertical-align:-57.216000px;}
.v6{vertical-align:-45.672000px;}
.v15{vertical-align:-26.166000px;}
.v3{vertical-align:-21.690000px;}
.v1b{vertical-align:-17.934000px;}
.v4{vertical-align:-16.878000px;}
.ve{vertical-align:-15.714000px;}
.v1d{vertical-align:-14.445112px;}
.v19{vertical-align:-13.150215px;}
.v7{vertical-align:-8.964000px;}
.v10{vertical-align:-7.176000px;}
.v9{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:1.794000px;}
.v1c{vertical-align:5.808000px;}
.v18{vertical-align:6.972000px;}
.vc{vertical-align:8.964000px;}
.v5{vertical-align:15.714000px;}
.vb{vertical-align:18.702000px;}
.v2{vertical-align:21.690000px;}
.va{vertical-align:24.684000px;}
.v1e{vertical-align:26.730000px;}
.v1f{vertical-align:28.247298px;}
.v1{vertical-align:31.236000px;}
.v8{vertical-align:40.284000px;}
.v12{vertical-align:46.986000px;}
.v11{vertical-align:66.354000px;}
.v13{vertical-align:88.104000px;}
.v17{vertical-align:114.600000px;}
.vd{vertical-align:122.538000px;}
.v16{vertical-align:124.164000px;}
.v1a{vertical-align:140.472000px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000093px;}
.lsc1{letter-spacing:0.000204px;}
.ls10{letter-spacing:0.000300px;}
.ls44{letter-spacing:0.000376px;}
.lsce{letter-spacing:0.000475px;}
.lsde{letter-spacing:0.000599px;}
.lsb{letter-spacing:0.000615px;}
.lse5{letter-spacing:0.000673px;}
.ls2a{letter-spacing:0.000796px;}
.lse4{letter-spacing:0.000879px;}
.ls41{letter-spacing:0.001012px;}
.ls7a{letter-spacing:0.001102px;}
.ls22{letter-spacing:0.001179px;}
.lsc5{letter-spacing:0.001305px;}
.ls7e{letter-spacing:0.002011px;}
.lscc{letter-spacing:0.002289px;}
.lsa0{letter-spacing:0.002709px;}
.ls7d{letter-spacing:0.003136px;}
.ls3b{letter-spacing:0.003180px;}
.lsca{letter-spacing:0.003444px;}
.ls68{letter-spacing:0.004188px;}
.ls9c{letter-spacing:0.004200px;}
.ls76{letter-spacing:0.004341px;}
.ls5c{letter-spacing:0.004839px;}
.lsa5{letter-spacing:0.005322px;}
.lsb9{letter-spacing:0.006322px;}
.ls19{letter-spacing:0.006432px;}
.ls4d{letter-spacing:0.006578px;}
.ls99{letter-spacing:0.007727px;}
.ls37{letter-spacing:0.008000px;}
.lsd{letter-spacing:0.008153px;}
.ls92{letter-spacing:0.008650px;}
.ls52{letter-spacing:0.009010px;}
.lse0{letter-spacing:0.009134px;}
.ls3d{letter-spacing:0.009469px;}
.ls79{letter-spacing:0.011986px;}
.lsc8{letter-spacing:0.012003px;}
.ls55{letter-spacing:0.012184px;}
.lsa9{letter-spacing:0.013818px;}
.ls65{letter-spacing:0.014467px;}
.ls6b{letter-spacing:0.014869px;}
.ls53{letter-spacing:0.015114px;}
.lsb4{letter-spacing:0.015416px;}
.ls89{letter-spacing:0.016150px;}
.ls61{letter-spacing:0.018025px;}
.lsb1{letter-spacing:0.018497px;}
.ls8a{letter-spacing:0.019249px;}
.ls5b{letter-spacing:0.019545px;}
.ls47{letter-spacing:0.020322px;}
.ls77{letter-spacing:0.021197px;}
.lsa{letter-spacing:0.021501px;}
.ls20{letter-spacing:0.021814px;}
.ls3a{letter-spacing:0.025798px;}
.ls8e{letter-spacing:0.026673px;}
.ls83{letter-spacing:0.027127px;}
.lsb2{letter-spacing:0.027733px;}
.ls49{letter-spacing:0.027905px;}
.ls5f{letter-spacing:0.030549px;}
.ls3f{letter-spacing:0.030982px;}
.ls32{letter-spacing:0.033471px;}
.ls34{letter-spacing:0.035436px;}
.lsbb{letter-spacing:0.059776px;}
.ls58{letter-spacing:0.119551px;}
.ls7c{letter-spacing:0.622638px;}
.lscb{letter-spacing:0.683949px;}
.lsa4{letter-spacing:0.836858px;}
.ls73{letter-spacing:0.932001px;}
.ls71{letter-spacing:0.938279px;}
.ls6c{letter-spacing:0.958188px;}
.ls74{letter-spacing:0.970805px;}
.ls6f{letter-spacing:0.973689px;}
.ls5{letter-spacing:1.853044px;}
.ls7{letter-spacing:1.912819px;}
.lsd1{letter-spacing:2.092146px;}
.lsd2{letter-spacing:2.139770px;}
.lsd0{letter-spacing:2.151922px;}
.lsc2{letter-spacing:2.983140px;}
.ls63{letter-spacing:2.983932px;}
.lsd3{letter-spacing:2.984525px;}
.ls38{letter-spacing:2.984845px;}
.lsdd{letter-spacing:2.985089px;}
.ls1b{letter-spacing:2.987373px;}
.ls5d{letter-spacing:2.989140px;}
.ls40{letter-spacing:2.989409px;}
.ls21{letter-spacing:2.989932px;}
.ls15{letter-spacing:2.990234px;}
.ls82{letter-spacing:2.990525px;}
.ls25{letter-spacing:2.990845px;}
.ls1c{letter-spacing:2.993373px;}
.lse3{letter-spacing:3.008601px;}
.ls94{letter-spacing:3.200086px;}
.ls85{letter-spacing:3.206086px;}
.ls50{letter-spacing:3.287658px;}
.ls36{letter-spacing:3.347434px;}
.lsa6{letter-spacing:3.407209px;}
.ls35{letter-spacing:4.489024px;}
.ls3e{letter-spacing:4.495024px;}
.ls48{letter-spacing:4.790845px;}
.lsa7{letter-spacing:5.402908px;}
.lsc4{letter-spacing:5.408908px;}
.ls23{letter-spacing:5.977829px;}
.ls9d{letter-spacing:6.025566px;}
.ls27{letter-spacing:6.515540px;}
.ls9{letter-spacing:6.635092px;}
.ls16{letter-spacing:6.694867px;}
.ls51{letter-spacing:7.471950px;}
.ls2b{letter-spacing:7.472450px;}
.ls45{letter-spacing:7.478450px;}
.lsa8{letter-spacing:7.531726px;}
.lse8{letter-spacing:8.308808px;}
.lse2{letter-spacing:8.547911px;}
.ls59{letter-spacing:8.966340px;}
.ls33{letter-spacing:9.626845px;}
.ls81{letter-spacing:9.629373px;}
.ls5e{letter-spacing:9.631140px;}
.ls4f{letter-spacing:9.632845px;}
.ls2e{letter-spacing:9.862974px;}
.lsf{letter-spacing:9.922750px;}
.ls43{letter-spacing:9.980495px;}
.ls4a{letter-spacing:9.982525px;}
.ls5a{letter-spacing:10.699832px;}
.lsc6{letter-spacing:10.998710px;}
.ls30{letter-spacing:11.131024px;}
.ls4c{letter-spacing:11.137024px;}
.lsdb{letter-spacing:12.612652px;}
.ls24{letter-spacing:12.613829px;}
.ls14{letter-spacing:12.619829px;}
.ls1a{letter-spacing:12.619932px;}
.lsc0{letter-spacing:12.911530px;}
.lsdc{letter-spacing:12.945089px;}
.ls1{letter-spacing:12.955409px;}
.lsbf{letter-spacing:12.971305px;}
.ls80{letter-spacing:13.150632px;}
.ls6{letter-spacing:13.270183px;}
.ls97{letter-spacing:13.574908px;}
.lsd7{letter-spacing:13.628837px;}
.ls2f{letter-spacing:13.958450px;}
.ls87{letter-spacing:14.166817px;}
.lsad{letter-spacing:14.346144px;}
.lsae{letter-spacing:14.405920px;}
.lsb8{letter-spacing:14.525471px;}
.lsb7{letter-spacing:14.585246px;}
.ls4{letter-spacing:15.183002px;}
.ls98{letter-spacing:15.541656px;}
.lsc3{letter-spacing:15.578525px;}
.lsc9{letter-spacing:15.601432px;}
.lsdf{letter-spacing:15.603949px;}
.lsd8{letter-spacing:15.900310px;}
.ls8d{letter-spacing:16.441140px;}
.lsb6{letter-spacing:16.447140px;}
.ls4b{letter-spacing:16.557841px;}
.lsbd{letter-spacing:16.616854px;}
.ls13{letter-spacing:16.617617px;}
.ls88{letter-spacing:16.681140px;}
.lsda{letter-spacing:17.036046px;}
.lsb5{letter-spacing:17.454475px;}
.ls75{letter-spacing:17.992456px;}
.lsd6{letter-spacing:18.052231px;}
.lsba{letter-spacing:18.231558px;}
.lsb0{letter-spacing:18.410885px;}
.ls1e{letter-spacing:18.470660px;}
.lsb3{letter-spacing:18.769538px;}
.lsd9{letter-spacing:19.068416px;}
.ls56{letter-spacing:19.128192px;}
.lsac{letter-spacing:19.307519px;}
.ls62{letter-spacing:19.591140px;}
.lse6{letter-spacing:19.592525px;}
.ls8b{letter-spacing:19.808086px;}
.ls54{letter-spacing:19.905275px;}
.ls9b{letter-spacing:20.024826px;}
.lse1{letter-spacing:20.602868px;}
.lsc{letter-spacing:20.713829px;}
.lse{letter-spacing:20.713932px;}
.lsa3{letter-spacing:20.861684px;}
.ls46{letter-spacing:21.097024px;}
.lsd5{letter-spacing:21.100787px;}
.lsab{letter-spacing:21.259566px;}
.ls7f{letter-spacing:21.692450px;}
.ls96{letter-spacing:22.236523px;}
.ls93{letter-spacing:22.296299px;}
.lsaa{letter-spacing:22.442908px;}
.ls18{letter-spacing:22.535401px;}
.ls8f{letter-spacing:22.915140px;}
.ls0{letter-spacing:22.915409px;}
.lsc7{letter-spacing:23.013606px;}
.lscd{letter-spacing:23.252708px;}
.ls95{letter-spacing:23.312484px;}
.ls78{letter-spacing:23.468525px;}
.ls29{letter-spacing:24.074450px;}
.ls2d{letter-spacing:24.176450px;}
.ls31{letter-spacing:24.482450px;}
.lsaf{letter-spacing:24.535140px;}
.ls4e{letter-spacing:24.853829px;}
.ls57{letter-spacing:24.962450px;}
.ls12{letter-spacing:25.344854px;}
.ls2{letter-spacing:25.400915px;}
.lse9{letter-spacing:25.740680px;}
.ls64{letter-spacing:25.903829px;}
.ls66{letter-spacing:25.903932px;}
.ls8c{letter-spacing:25.951566px;}
.ls7b{letter-spacing:26.066450px;}
.lsa2{letter-spacing:26.150908px;}
.lse7{letter-spacing:26.361040px;}
.ls17{letter-spacing:26.540366px;}
.ls11{letter-spacing:26.600142px;}
.ls67{letter-spacing:26.899140px;}
.ls9a{letter-spacing:28.724908px;}
.ls91{letter-spacing:29.887800px;}
.ls9f{letter-spacing:33.235234px;}
.ls72{letter-spacing:34.388525px;}
.ls9e{letter-spacing:38.618908px;}
.ls70{letter-spacing:49.754073px;}
.ls42{letter-spacing:49.793075px;}
.ls6a{letter-spacing:57.338525px;}
.ls69{letter-spacing:57.344525px;}
.ls6d{letter-spacing:58.292525px;}
.ls6e{letter-spacing:58.298525px;}
.ls1d{letter-spacing:76.912200px;}
.ls1f{letter-spacing:85.658435px;}
.ls86{letter-spacing:92.870086px;}
.ls84{letter-spacing:117.446525px;}
.lsbe{letter-spacing:142.550469px;}
.lsbc{letter-spacing:142.564806px;}
.lscf{letter-spacing:150.510569px;}
.lsa1{letter-spacing:186.798750px;}
.ls3c{letter-spacing:212.442482px;}
.ls39{letter-spacing:215.311711px;}
.lsd4{letter-spacing:232.706411px;}
.ls90{letter-spacing:287.819514px;}
.ls2c{letter-spacing:296.785854px;}
.ls8{letter-spacing:315.017412px;}
.ls26{letter-spacing:337.373486px;}
.ls60{letter-spacing:403.365749px;}
.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;}
}
.ws4c{word-spacing:-59.775600px;}
.ws75{word-spacing:-48.920351px;}
.ws89{word-spacing:-47.654765px;}
.ws71{word-spacing:-47.324343px;}
.wsbd{word-spacing:-46.096457px;}
.ws4e{word-spacing:-43.217759px;}
.ws85{word-spacing:-43.157983px;}
.ws97{word-spacing:-41.065837px;}
.ws9d{word-spacing:-38.973691px;}
.ws5c{word-spacing:-38.937826px;}
.ws8b{word-spacing:-37.539077px;}
.ws8c{word-spacing:-37.479301px;}
.ws6{word-spacing:-34.703947px;}
.ws7{word-spacing:-34.702537px;}
.ws72{word-spacing:-29.015076px;}
.wsa6{word-spacing:-28.975488px;}
.ws86{word-spacing:-28.955301px;}
.wsbc{word-spacing:-26.511099px;}
.wsc8{word-spacing:-25.727418px;}
.ws3{word-spacing:-24.737947px;}
.ws47{word-spacing:-19.092327px;}
.ws8d{word-spacing:-18.972775px;}
.ws55{word-spacing:-16.605662px;}
.wse3{word-spacing:-15.278643px;}
.wsdc{word-spacing:-10.540386px;}
.ws2{word-spacing:-9.148001px;}
.ws1{word-spacing:-9.103541px;}
.ws4{word-spacing:-9.102047px;}
.ws9c{word-spacing:-6.802463px;}
.ws56{word-spacing:-6.623136px;}
.ws90{word-spacing:-5.786278px;}
.wsda{word-spacing:-5.248298px;}
.wsa5{word-spacing:-3.993010px;}
.ws46{word-spacing:-3.335478px;}
.ws51{word-spacing:-3.275703px;}
.ws59{word-spacing:-3.215927px;}
.wsd4{word-spacing:-3.156152px;}
.ws33{word-spacing:-3.036600px;}
.ws1f{word-spacing:-2.976825px;}
.ws39{word-spacing:-2.917049px;}
.wsca{word-spacing:-2.857274px;}
.ws58{word-spacing:-2.797498px;}
.wsbf{word-spacing:-2.737722px;}
.wsc0{word-spacing:-2.618171px;}
.wse7{word-spacing:-2.558396px;}
.ws45{word-spacing:-2.438844px;}
.ws80{word-spacing:-2.379069px;}
.wsac{word-spacing:-2.319293px;}
.ws21{word-spacing:-2.139966px;}
.ws24{word-spacing:-2.080191px;}
.wsb{word-spacing:-1.960640px;}
.ws49{word-spacing:-1.900864px;}
.ws48{word-spacing:-1.841088px;}
.ws32{word-spacing:-1.781313px;}
.ws7c{word-spacing:-1.721537px;}
.wsc3{word-spacing:-1.601986px;}
.wsf{word-spacing:-1.542210px;}
.ws2e{word-spacing:-1.482435px;}
.ws3e{word-spacing:-1.422659px;}
.ws1d{word-spacing:-1.362884px;}
.ws3b{word-spacing:-1.303108px;}
.ws88{word-spacing:-1.243332px;}
.wsd2{word-spacing:-1.183557px;}
.ws8e{word-spacing:-1.123781px;}
.wsf7{word-spacing:-1.064006px;}
.ws5a{word-spacing:-1.004230px;}
.ws64{word-spacing:-0.944454px;}
.wsb7{word-spacing:-0.884679px;}
.ws3d{word-spacing:-0.765128px;}
.ws87{word-spacing:-0.705352px;}
.ws78{word-spacing:-0.645576px;}
.wscd{word-spacing:-0.585801px;}
.wsd3{word-spacing:-0.526025px;}
.wsc5{word-spacing:-0.466250px;}
.ws17{word-spacing:-0.406474px;}
.ws63{word-spacing:-0.346698px;}
.ws2f{word-spacing:-0.227147px;}
.ws52{word-spacing:-0.167372px;}
.wsa9{word-spacing:-0.107596px;}
.ws4d{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.047820px;}
.ws4f{word-spacing:-0.041843px;}
.ws5f{word-spacing:-0.029888px;}
.ws83{word-spacing:-0.017544px;}
.ws70{word-spacing:-0.016402px;}
.ws44{word-spacing:0.000000px;}
.ws5d{word-spacing:0.011955px;}
.wsa{word-spacing:0.071731px;}
.ws9{word-spacing:0.095641px;}
.ws8f{word-spacing:0.131506px;}
.ws40{word-spacing:0.191282px;}
.ws6e{word-spacing:0.251058px;}
.ws9b{word-spacing:0.310833px;}
.wsf5{word-spacing:0.322788px;}
.ws54{word-spacing:0.370609px;}
.ws53{word-spacing:0.430384px;}
.ws61{word-spacing:0.490160px;}
.ws2d{word-spacing:0.549936px;}
.wsa1{word-spacing:0.609711px;}
.wsee{word-spacing:0.621666px;}
.ws6f{word-spacing:0.669487px;}
.ws79{word-spacing:0.729262px;}
.wsc{word-spacing:0.789038px;}
.ws69{word-spacing:0.812948px;}
.ws38{word-spacing:0.848814px;}
.ws6c{word-spacing:0.908589px;}
.ws4a{word-spacing:0.968365px;}
.wsb8{word-spacing:1.028140px;}
.ws19{word-spacing:1.087916px;}
.ws5b{word-spacing:1.147692px;}
.ws15{word-spacing:1.207467px;}
.ws41{word-spacing:1.267243px;}
.ws68{word-spacing:1.291153px;}
.ws66{word-spacing:1.350929px;}
.wsd{word-spacing:1.386794px;}
.ws62{word-spacing:1.446570px;}
.wsfd{word-spacing:1.458525px;}
.wse{word-spacing:1.506345px;}
.wsc9{word-spacing:1.566121px;}
.ws9f{word-spacing:1.625896px;}
.wsd1{word-spacing:1.685672px;}
.ws95{word-spacing:1.745448px;}
.ws31{word-spacing:1.805223px;}
.ws37{word-spacing:1.864999px;}
.ws4b{word-spacing:1.924774px;}
.ws10{word-spacing:1.984550px;}
.wsb4{word-spacing:2.044326px;}
.ws14{word-spacing:2.104101px;}
.wscb{word-spacing:2.163877px;}
.wsce{word-spacing:2.223652px;}
.ws5e{word-spacing:2.283428px;}
.ws23{word-spacing:2.343204px;}
.ws1b{word-spacing:2.402979px;}
.ws1c{word-spacing:2.462755px;}
.ws7b{word-spacing:2.522530px;}
.ws35{word-spacing:2.582306px;}
.ws30{word-spacing:2.701857px;}
.ws81{word-spacing:2.761633px;}
.wsaf{word-spacing:2.821408px;}
.wsbe{word-spacing:2.881184px;}
.ws57{word-spacing:2.940960px;}
.wsd0{word-spacing:3.000735px;}
.wsab{word-spacing:3.060511px;}
.wsa2{word-spacing:3.120286px;}
.wsa3{word-spacing:3.180062px;}
.wsf0{word-spacing:3.192017px;}
.wsc4{word-spacing:3.239838px;}
.ws11{word-spacing:3.299613px;}
.ws3f{word-spacing:3.359389px;}
.ws3a{word-spacing:3.419164px;}
.ws13{word-spacing:3.478940px;}
.wsdd{word-spacing:3.538716px;}
.wse0{word-spacing:3.598491px;}
.wse4{word-spacing:3.610446px;}
.wsc2{word-spacing:3.658267px;}
.ws36{word-spacing:3.718042px;}
.ws20{word-spacing:3.777818px;}
.ws65{word-spacing:3.801728px;}
.ws67{word-spacing:3.837594px;}
.wsd6{word-spacing:3.957145px;}
.ws96{word-spacing:4.016920px;}
.ws3c{word-spacing:4.076696px;}
.ws91{word-spacing:4.136472px;}
.ws60{word-spacing:4.196247px;}
.ws7a{word-spacing:4.256023px;}
.wsaa{word-spacing:4.315798px;}
.ws92{word-spacing:4.375574px;}
.wsd7{word-spacing:4.435350px;}
.ws84{word-spacing:4.495125px;}
.wsdf{word-spacing:4.554901px;}
.ws2b{word-spacing:4.614676px;}
.wsba{word-spacing:4.674452px;}
.ws6d{word-spacing:4.734228px;}
.wsb2{word-spacing:4.853779px;}
.ws94{word-spacing:4.913554px;}
.ws18{word-spacing:4.973330px;}
.wsb1{word-spacing:5.033106px;}
.wsa7{word-spacing:5.092881px;}
.wsb6{word-spacing:5.152657px;}
.ws34{word-spacing:5.212432px;}
.ws43{word-spacing:5.272208px;}
.wse1{word-spacing:5.451535px;}
.ws98{word-spacing:5.511310px;}
.ws99{word-spacing:5.571086px;}
.ws82{word-spacing:5.690637px;}
.ws8{word-spacing:5.702592px;}
.wsb0{word-spacing:5.810188px;}
.ws9e{word-spacing:5.869964px;}
.wsa8{word-spacing:5.929740px;}
.ws9a{word-spacing:5.947965px;}
.ws93{word-spacing:5.952562px;}
.wsea{word-spacing:6.061246px;}
.wsb5{word-spacing:6.109066px;}
.ws5{word-spacing:6.121021px;}
.ws25{word-spacing:6.168842px;}
.wsd5{word-spacing:6.288393px;}
.wsc6{word-spacing:6.348169px;}
.wscc{word-spacing:6.527496px;}
.ws77{word-spacing:6.587271px;}
.ws1e{word-spacing:6.647047px;}
.ws8a{word-spacing:6.706822px;}
.wsa4{word-spacing:6.886149px;}
.ws2c{word-spacing:6.945925px;}
.wsec{word-spacing:7.125252px;}
.ws76{word-spacing:7.244803px;}
.ws22{word-spacing:7.304578px;}
.wsb9{word-spacing:7.364354px;}
.wsf4{word-spacing:7.543681px;}
.ws42{word-spacing:7.603456px;}
.wsdb{word-spacing:7.663232px;}
.wsc7{word-spacing:7.723008px;}
.wsd9{word-spacing:8.260988px;}
.ws1a{word-spacing:8.380539px;}
.wscf{word-spacing:8.559866px;}
.ws6b{word-spacing:8.679417px;}
.wsf9{word-spacing:8.798968px;}
.wse8{word-spacing:8.978295px;}
.wsf8{word-spacing:9.169577px;}
.wse2{word-spacing:9.277173px;}
.wsc1{word-spacing:9.635827px;}
.wsde{word-spacing:9.874929px;}
.wsb3{word-spacing:10.233583px;}
.wsf2{word-spacing:10.353134px;}
.wsed{word-spacing:10.412910px;}
.wsd8{word-spacing:10.532461px;}
.wse9{word-spacing:11.381274px;}
.wsf6{word-spacing:12.385504px;}
.wsf3{word-spacing:12.576786px;}
.wsef{word-spacing:12.923485px;}
.ws12{word-spacing:13.282138px;}
.ws74{word-spacing:14.680887px;}
.ws27{word-spacing:15.063489px;}
.ws28{word-spacing:15.972080px;}
.ws2a{word-spacing:16.880672px;}
.ws26{word-spacing:17.024134px;}
.wsfa{word-spacing:18.542391px;}
.wsfb{word-spacing:18.661942px;}
.wseb{word-spacing:18.901045px;}
.wsf1{word-spacing:18.960820px;}
.wse6{word-spacing:19.020596px;}
.wse5{word-spacing:21.830049px;}
.wsfc{word-spacing:22.427805px;}
.ws29{word-spacing:22.571323px;}
.wsae{word-spacing:22.933821px;}
.ws6a{word-spacing:29.839979px;}
.ws0{word-spacing:32.192873px;}
.ws73{word-spacing:39.583402px;}
.wsad{word-spacing:41.671997px;}
.wsa0{word-spacing:43.169938px;}
.ws7f{word-spacing:52.632906px;}
.ws7d{word-spacing:52.826801px;}
.ws7e{word-spacing:69.691770px;}
.wsbb{word-spacing:133.839314px;}
.ws50{word-spacing:476.064834px;}
._5{margin-left:-34.370970px;}
._20{margin-left:-32.556193px;}
._7{margin-left:-30.545332px;}
._8{margin-left:-28.697039px;}
._27{margin-left:-27.472523px;}
._17{margin-left:-9.639427px;}
._13{margin-left:-8.350954px;}
._15{margin-left:-6.845429px;}
._4{margin-left:-5.678682px;}
._6{margin-left:-4.662497px;}
._0{margin-left:-2.668393px;}
._9{margin-left:-1.554166px;}
._a{width:1.071210px;}
._1{width:2.668393px;}
._14{width:4.339366px;}
._12{width:5.597398px;}
._d{width:6.852685px;}
._e{width:8.808522px;}
._f{width:10.465481px;}
._28{width:12.612652px;}
._1e{width:14.743064px;}
._2{width:16.107447px;}
._11{width:17.731844px;}
._c{width:19.764215px;}
._b{width:20.942969px;}
._3{width:22.894055px;}
._16{width:23.970016px;}
._1f{width:26.309459px;}
._10{width:29.887800px;}
._2e{width:32.099497px;}
._2f{width:35.784076px;}
._2b{width:36.979588px;}
._30{width:38.136833px;}
._29{width:39.511672px;}
._2a{width:43.760490px;}
._2c{width:47.641153px;}
._2d{width:54.216469px;}
._25{width:55.893852px;}
._21{width:57.779361px;}
._19{width:59.107505px;}
._24{width:60.678862px;}
._22{width:62.117231px;}
._23{width:64.392479px;}
._1a{width:67.167252px;}
._1c{width:69.833225px;}
._1b{width:73.308443px;}
._1d{width:76.779452px;}
._18{width:88.527664px;}
._26{width:207.997657px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:28.484580px;}
.fs4{font-size:29.887800px;}
.fs8{font-size:31.021020px;}
.fsb{font-size:31.289447px;}
.fs5{font-size:32.369760px;}
.fsc{font-size:34.075650px;}
.fs9{font-size:35.556311px;}
.fs2{font-size:41.842800px;}
.fs10{font-size:42.161546px;}
.fs6{font-size:44.509499px;}
.fs3{font-size:47.820600px;}
.fsa{font-size:48.892335px;}
.fs11{font-size:50.593855px;}
.fse{font-size:53.863053px;}
.fsf{font-size:54.810115px;}
.fsd{font-size:59.326200px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1d2{bottom:3.358188px;}
.yb2{bottom:3.508039px;}
.yb6{bottom:3.508073px;}
.y12a{bottom:3.679578px;}
.y118{bottom:3.697282px;}
.y18a{bottom:3.701602px;}
.y12c{bottom:3.883291px;}
.y129{bottom:13.234390px;}
.y117{bottom:13.252094px;}
.y12b{bottom:13.438103px;}
.yb1{bottom:13.678651px;}
.ya5{bottom:24.326347px;}
.y153{bottom:25.178336px;}
.y155{bottom:26.757599px;}
.y119{bottom:31.783618px;}
.y18c{bottom:42.759581px;}
.y18b{bottom:44.516503px;}
.ya6{bottom:46.259691px;}
.y11a{bottom:48.249639px;}
.y1e5{bottom:49.507747px;}
.y156{bottom:50.212954px;}
.y1d9{bottom:50.508265px;}
.y11b{bottom:64.715660px;}
.y1e6{bottom:66.866932px;}
.y1da{bottom:68.161746px;}
.ya7{bottom:68.192766px;}
.y15a{bottom:68.543267px;}
.y1f8{bottom:72.540648px;}
.y154{bottom:77.990816px;}
.y159{bottom:78.867360px;}
.y1e7{bottom:80.989717px;}
.y11c{bottom:81.181977px;}
.y1db{bottom:85.815226px;}
.ya8{bottom:90.126111px;}
.y1e8{bottom:91.581805px;}
.y11d{bottom:97.647997px;}
.y1e9{bottom:102.174315px;}
.y1dc{bottom:103.468707px;}
.ya9{bottom:112.059186px;}
.y1ea{bottom:112.766403px;}
.y33{bottom:112.915500px;}
.y51{bottom:112.917000px;}
.y124{bottom:113.296351px;}
.y11e{bottom:114.114018px;}
.y258{bottom:114.625500px;}
.yb8{bottom:116.652000px;}
.y1d0{bottom:117.651000px;}
.y1dd{bottom:121.121871px;}
.y1eb{bottom:123.358070px;}
.y1b6{bottom:125.122500px;}
.y32{bottom:127.711500px;}
.y50{bottom:129.354000px;}
.y186{bottom:129.355500px;}
.yb0{bottom:130.127110px;}
.y11f{bottom:130.580039px;}
.y157{bottom:130.593578px;}
.y257{bottom:131.064000px;}
.yb7{bottom:133.090500px;}
.yaa{bottom:133.992531px;}
.y1cf{bottom:134.088000px;}
.y189{bottom:138.637539px;}
.y1de{bottom:138.775352px;}
.y1d3{bottom:139.919750px;}
.y1b5{bottom:141.561000px;}
.y31{bottom:142.506000px;}
.y1ec{bottom:144.542257px;}
.y4f{bottom:145.792500px;}
.y185{bottom:145.794000px;}
.y1d4{bottom:146.172464px;}
.y120{bottom:147.046356px;}
.y256{bottom:147.502500px;}
.y1ce{bottom:150.526500px;}
.y15b{bottom:150.826481px;}
.y126{bottom:153.334351px;}
.yb3{bottom:153.967500px;}
.y151{bottom:154.759500px;}
.y1ed{bottom:155.134346px;}
.y158{bottom:155.781109px;}
.yab{bottom:155.925606px;}
.y1df{bottom:156.428833px;}
.y30{bottom:157.300500px;}
.y1b4{bottom:157.999500px;}
.y128{bottom:158.451000px;}
.y125{bottom:161.310423px;}
.y4e{bottom:162.231000px;}
.y184{bottom:162.232500px;}
.y121{bottom:163.675866px;}
.y255{bottom:163.941000px;}
.y1ee{bottom:165.726434px;}
.y1cd{bottom:166.965000px;}
.ya4{bottom:167.313000px;}
.y150{bottom:171.198000px;}
.y127{bottom:173.245500px;}
.y1e0{bottom:174.082313px;}
.y2f{bottom:176.314500px;}
.y1ef{bottom:176.318101px;}
.yac{bottom:177.858951px;}
.y4d{bottom:178.669500px;}
.y183{bottom:178.671000px;}
.y122{bottom:180.158406px;}
.y254{bottom:180.379500px;}
.y1d5{bottom:182.950689px;}
.y1b3{bottom:183.403500px;}
.y14f{bottom:187.636500px;}
.y116{bottom:189.579000px;}
.y1f0{bottom:190.440885px;}
.y1e1{bottom:191.735794px;}
.y21d{bottom:195.108000px;}
.y182{bottom:195.109500px;}
.y123{bottom:196.640946px;}
.y253{bottom:196.818000px;}
.yb5{bottom:197.276693px;}
.y2e{bottom:198.274500px;}
.yad{bottom:199.792026px;}
.y1b2{bottom:199.842000px;}
.y1f1{bottom:201.032974px;}
.y14e{bottom:204.075000px;}
.yb4{bottom:204.537770px;}
.y1e2{bottom:209.389274px;}
.y4c{bottom:210.711000px;}
.y21c{bottom:211.546500px;}
.y1f2{bottom:211.625062px;}
.y252{bottom:213.256500px;}
.y2d{bottom:214.713000px;}
.y1b1{bottom:216.280500px;}
.y1d6{bottom:219.728914px;}
.y14d{bottom:220.513500px;}
.y188{bottom:220.803642px;}
.yae{bottom:221.725370px;}
.y1f3{bottom:222.217151px;}
.y1e3{bottom:227.042755px;}
.y21b{bottom:227.985000px;}
.y251{bottom:229.695000px;}
.y2c{bottom:231.151500px;}
.y1b0{bottom:232.719000px;}
.y1f4{bottom:232.809239px;}
.y14c{bottom:236.952000px;}
.y4b{bottom:240.423000px;}
.yaf{bottom:243.658445px;}
.y21a{bottom:244.423500px;}
.y1e4{bottom:244.696236px;}
.y250{bottom:246.133500px;}
.y1f5{bottom:246.932023px;}
.y2b{bottom:247.590000px;}
.y1af{bottom:249.157500px;}
.y14b{bottom:253.390500px;}
.y1d7{bottom:256.507139px;}
.y4a{bottom:256.861500px;}
.y219{bottom:260.862000px;}
.y1f6{bottom:261.054808px;}
.y24f{bottom:262.572000px;}
.y2a{bottom:264.028500px;}
.y1ae{bottom:265.596000px;}
.y14a{bottom:269.829000px;}
.y1f7{bottom:271.646896px;}
.y49{bottom:273.300000px;}
.y218{bottom:277.300500px;}
.y24e{bottom:279.010500px;}
.y29{bottom:280.467000px;}
.y1ad{bottom:282.034500px;}
.y149{bottom:286.267500px;}
.y48{bottom:289.738500px;}
.y1d8{bottom:293.285365px;}
.y217{bottom:293.739000px;}
.y24d{bottom:295.449000px;}
.y28{bottom:296.905500px;}
.y1ac{bottom:298.473000px;}
.y181{bottom:302.706000px;}
.y47{bottom:306.177000px;}
.y216{bottom:310.177500px;}
.y24c{bottom:311.887500px;}
.y27{bottom:313.344000px;}
.y1ab{bottom:314.911500px;}
.y180{bottom:319.144500px;}
.y24b{bottom:328.326000px;}
.y26{bottom:329.782500px;}
.y148{bottom:331.156500px;}
.y1aa{bottom:331.350000px;}
.y46{bottom:331.581000px;}
.y17f{bottom:335.583000px;}
.y1cc{bottom:340.317000px;}
.y215{bottom:343.120500px;}
.y24a{bottom:344.764500px;}
.y25{bottom:346.221000px;}
.y147{bottom:347.595000px;}
.y1a9{bottom:347.788500px;}
.y45{bottom:348.019500px;}
.y17e{bottom:352.021500px;}
.y1cb{bottom:356.755500px;}
.y249{bottom:361.203000px;}
.y24{bottom:362.659500px;}
.y146{bottom:364.033500px;}
.y1a8{bottom:364.227000px;}
.y44{bottom:364.458000px;}
.y17d{bottom:368.460000px;}
.y1ca{bottom:373.194000px;}
.y214{bottom:374.635500px;}
.y248{bottom:377.641500px;}
.y23{bottom:379.096500px;}
.y145{bottom:380.472000px;}
.y1a7{bottom:380.665500px;}
.y43{bottom:380.896500px;}
.y17c{bottom:384.898500px;}
.y1c9{bottom:389.632500px;}
.y213{bottom:391.074000px;}
.y247{bottom:394.080000px;}
.y22{bottom:395.535000px;}
.y1a6{bottom:397.104000px;}
.y42{bottom:397.335000px;}
.y17b{bottom:401.337000px;}
.y1c8{bottom:406.071000px;}
.y212{bottom:407.512500px;}
.y246{bottom:410.518500px;}
.y21{bottom:411.973500px;}
.y144{bottom:413.304000px;}
.y1a5{bottom:413.542500px;}
.y41{bottom:413.773500px;}
.ye9{bottom:420.109500px;}
.y115{bottom:420.111000px;}
.y1c7{bottom:422.508000px;}
.y211{bottom:423.951000px;}
.y17a{bottom:424.263000px;}
.y245{bottom:426.957000px;}
.y20{bottom:428.412000px;}
.y1a4{bottom:429.981000px;}
.y7a{bottom:436.111500px;}
.ye8{bottom:436.548000px;}
.y1c6{bottom:438.946500px;}
.y40{bottom:439.179000px;}
.y210{bottom:440.389500px;}
.y244{bottom:443.395500px;}
.y1f{bottom:444.850500px;}
.y1a3{bottom:446.419500px;}
.y179{bottom:447.190500px;}
.y79{bottom:452.550000px;}
.ye7{bottom:452.986500px;}
.y1c5{bottom:455.385000px;}
.y3f{bottom:455.617500px;}
.y20f{bottom:456.828000px;}
.y243{bottom:459.834000px;}
.y1a2{bottom:462.858000px;}
.y178{bottom:463.629000px;}
.y78{bottom:468.988500px;}
.ye6{bottom:469.425000px;}
.y1e{bottom:470.256000px;}
.y1c4{bottom:471.823500px;}
.y3e{bottom:472.056000px;}
.y20e{bottom:473.266500px;}
.y242{bottom:476.272500px;}
.y1a1{bottom:479.296500px;}
.y177{bottom:480.067500px;}
.ye5{bottom:481.974000px;}
.ya3{bottom:485.427000px;}
.ye4{bottom:485.863500px;}
.y1d{bottom:486.694500px;}
.y1c3{bottom:488.262000px;}
.y3d{bottom:488.494500px;}
.y20d{bottom:489.705000px;}
.y77{bottom:491.010000px;}
.y241{bottom:492.711000px;}
.y114{bottom:494.830500px;}
.y1a0{bottom:495.735000px;}
.y176{bottom:496.506000px;}
.y74{bottom:501.231000px;}
.ya2{bottom:501.865500px;}
.y72{bottom:501.978000px;}
.ye3{bottom:502.302000px;}
.y1c{bottom:503.133000px;}
.y1c2{bottom:504.700500px;}
.y3c{bottom:504.933000px;}
.y20c{bottom:506.143500px;}
.y240{bottom:509.149500px;}
.y76{bottom:510.735000px;}
.y71{bottom:510.945000px;}
.y113{bottom:511.269000px;}
.ya1{bottom:518.304000px;}
.ye2{bottom:518.740500px;}
.y1b{bottom:519.571500px;}
.y19f{bottom:521.139000px;}
.y3b{bottom:521.371500px;}
.y175{bottom:521.910000px;}
.y20b{bottom:522.582000px;}
.y23f{bottom:525.588000px;}
.y112{bottom:527.707500px;}
.y73{bottom:528.130500px;}
.y75{bottom:530.461500px;}
.ya0{bottom:534.741000px;}
.y1a{bottom:536.010000px;}
.y19e{bottom:537.577500px;}
.y3a{bottom:537.810000px;}
.ye0{bottom:537.913500px;}
.y174{bottom:538.348500px;}
.y20a{bottom:539.020500px;}
.y23e{bottom:542.026500px;}
.ye1{bottom:543.858000px;}
.y111{bottom:544.146000px;}
.y1c1{bottom:546.544500px;}
.ydf{bottom:547.551000px;}
.y9f{bottom:551.179500px;}
.y19{bottom:552.448500px;}
.y70{bottom:552.901500px;}
.y19d{bottom:554.016000px;}
.y39{bottom:554.247000px;}
.y173{bottom:554.787000px;}
.y209{bottom:555.459000px;}
.y23d{bottom:558.465000px;}
.y110{bottom:560.584500px;}
.y1c0{bottom:562.983000px;}
.y9e{bottom:567.618000px;}
.yde{bottom:568.293000px;}
.y18{bottom:568.887000px;}
.y6f{bottom:569.340000px;}
.y19c{bottom:570.454500px;}
.y38{bottom:570.685500px;}
.y172{bottom:571.225500px;}
.y208{bottom:571.897500px;}
.y23c{bottom:574.902000px;}
.y10f{bottom:577.023000px;}
.y1bf{bottom:579.421500px;}
.y9d{bottom:584.056500px;}
.ydd{bottom:584.731500px;}
.y17{bottom:585.325500px;}
.y6e{bottom:585.778500px;}
.y19b{bottom:586.893000px;}
.y37{bottom:587.124000px;}
.y171{bottom:587.664000px;}
.y207{bottom:588.336000px;}
.y23b{bottom:591.340500px;}
.y10e{bottom:593.461500px;}
.y1be{bottom:595.860000px;}
.y9c{bottom:600.495000px;}
.y16{bottom:601.764000px;}
.y6d{bottom:602.217000px;}
.y19a{bottom:603.331500px;}
.y36{bottom:603.562500px;}
.y170{bottom:604.102500px;}
.y206{bottom:604.774500px;}
.y23a{bottom:607.779000px;}
.y10d{bottom:609.900000px;}
.y1bd{bottom:612.298500px;}
.ydc{bottom:612.385500px;}
.y199{bottom:619.770000px;}
.y35{bottom:620.001000px;}
.y16f{bottom:620.541000px;}
.y205{bottom:621.213000px;}
.y239{bottom:624.217500px;}
.y9b{bottom:625.900500px;}
.y6c{bottom:627.621000px;}
.y1bc{bottom:628.737000px;}
.ydb{bottom:628.824000px;}
.y10c{bottom:635.304000px;}
.y143{bottom:635.577000px;}
.y198{bottom:636.208500px;}
.y34{bottom:636.439500px;}
.y15{bottom:636.606000px;}
.y16e{bottom:636.979500px;}
.y204{bottom:637.650000px;}
.y238{bottom:640.656000px;}
.y9a{bottom:642.339000px;}
.y6b{bottom:644.059500px;}
.y1bb{bottom:645.175500px;}
.yda{bottom:645.262500px;}
.y10b{bottom:651.742500px;}
.y197{bottom:652.647000px;}
.y16d{bottom:653.418000px;}
.y203{bottom:654.088500px;}
.y237{bottom:657.094500px;}
.y99{bottom:658.777500px;}
.y1ba{bottom:661.614000px;}
.yd9{bottom:661.701000px;}
.y6a{bottom:663.900000px;}
.y10a{bottom:668.181000px;}
.y196{bottom:669.085500px;}
.y16c{bottom:669.856500px;}
.y202{bottom:670.527000px;}
.y236{bottom:673.533000px;}
.y14{bottom:674.232000px;}
.y1b9{bottom:678.051000px;}
.yd8{bottom:678.139500px;}
.y69{bottom:683.739000px;}
.y109{bottom:684.619500px;}
.y195{bottom:685.524000px;}
.y16b{bottom:686.295000px;}
.y201{bottom:686.965500px;}
.y235{bottom:689.971500px;}
.y1b8{bottom:694.489500px;}
.yd7{bottom:694.578000px;}
.y98{bottom:698.946000px;}
.y194{bottom:701.962500px;}
.y16a{bottom:702.733500px;}
.y200{bottom:703.404000px;}
.y68{bottom:703.579500px;}
.y234{bottom:706.410000px;}
.y108{bottom:710.025000px;}
.y1b7{bottom:710.928000px;}
.yd6{bottom:711.016500px;}
.y97{bottom:711.399000px;}
.y13{bottom:711.426000px;}
.y96{bottom:715.384500px;}
.y169{bottom:719.172000px;}
.y1ff{bottom:719.842500px;}
.y233{bottom:722.848500px;}
.y67{bottom:723.418500px;}
.y107{bottom:726.463500px;}
.y193{bottom:727.366500px;}
.y12{bottom:727.864500px;}
.y95{bottom:730.743000px;}
.y94{bottom:734.728500px;}
.y168{bottom:735.610500px;}
.y1fe{bottom:736.281000px;}
.y232{bottom:739.287000px;}
.y66{bottom:739.857000px;}
.yd5{bottom:740.724000px;}
.y106{bottom:742.902000px;}
.y192{bottom:743.805000px;}
.y11{bottom:744.303000px;}
.y167{bottom:752.049000px;}
.y1fd{bottom:752.719500px;}
.yd4{bottom:753.273000px;}
.y231{bottom:755.725500px;}
.yd3{bottom:757.162500px;}
.y104{bottom:759.339000px;}
.y105{bottom:759.340500px;}
.y191{bottom:760.243500px;}
.y10{bottom:760.740000px;}
.y93{bottom:761.245500px;}
.y65{bottom:765.262500px;}
.y91{bottom:765.778500px;}
.y166{bottom:768.487500px;}
.y1fc{bottom:769.158000px;}
.y90{bottom:771.216000px;}
.y142{bottom:771.381000px;}
.y230{bottom:772.164000px;}
.yd2{bottom:773.601000px;}
.y92{bottom:773.997000px;}
.y102{bottom:774.757500px;}
.y190{bottom:776.682000px;}
.yf{bottom:777.178500px;}
.y103{bottom:780.507000px;}
.y64{bottom:781.701000px;}
.y101{bottom:784.396500px;}
.y165{bottom:784.926000px;}
.y141{bottom:787.819500px;}
.y22f{bottom:788.602500px;}
.y1fb{bottom:792.969000px;}
.y18f{bottom:793.120500px;}
.ye{bottom:793.617000px;}
.yd1{bottom:799.006500px;}
.y100{bottom:800.835000px;}
.y164{bottom:801.363000px;}
.y63{bottom:801.540000px;}
.y140{bottom:804.258000px;}
.y8f{bottom:804.856500px;}
.y22e{bottom:805.041000px;}
.y1fa{bottom:809.407500px;}
.yd{bottom:810.055500px;}
.yd0{bottom:815.443500px;}
.yff{bottom:817.273500px;}
.y163{bottom:817.801500px;}
.y13f{bottom:820.696500px;}
.y62{bottom:821.380500px;}
.y22d{bottom:821.479500px;}
.y18e{bottom:824.337000px;}
.y8e{bottom:825.778500px;}
.y1f9{bottom:825.846000px;}
.ycf{bottom:832.491000px;}
.yce{bottom:836.185500px;}
.y13e{bottom:837.135000px;}
.y22c{bottom:837.918000px;}
.y18d{bottom:840.775500px;}
.y61{bottom:841.219500px;}
.y162{bottom:843.207000px;}
.yfe{bottom:845.527500px;}
.y8d{bottom:846.699000px;}
.yc{bottom:851.667000px;}
.y13d{bottom:853.573500px;}
.y1d1{bottom:854.239500px;}
.y22b{bottom:854.356500px;}
.yfb{bottom:855.748500px;}
.y161{bottom:859.645500px;}
.y60{bottom:861.060000px;}
.ycd{bottom:861.403500px;}
.y8c{bottom:863.137500px;}
.yfd{bottom:865.252500px;}
.yf9{bottom:865.462500px;}
.yb{bottom:868.105500px;}
.y187{bottom:869.169000px;}
.y13c{bottom:870.012000px;}
.y22a{bottom:870.795000px;}
.y160{bottom:876.084000px;}
.y5f{bottom:877.498500px;}
.ycc{bottom:877.842000px;}
.y8b{bottom:879.576000px;}
.yfa{bottom:882.648000px;}
.yfc{bottom:884.979000px;}
.y13b{bottom:886.450500px;}
.y229{bottom:887.233500px;}
.ya{bottom:889.966500px;}
.y15f{bottom:892.522500px;}
.y8a{bottom:896.014500px;}
.ycb{bottom:898.582500px;}
.y9{bottom:900.982500px;}
.y13a{bottom:902.889000px;}
.y5e{bottom:902.902500px;}
.y228{bottom:903.672000px;}
.y15e{bottom:908.961000px;}
.y89{bottom:912.453000px;}
.yf8{bottom:914.481000px;}
.yca{bottom:915.021000px;}
.y139{bottom:919.327500px;}
.y227{bottom:920.110500px;}
.y5d{bottom:922.743000px;}
.y8{bottom:922.843500px;}
.y88{bottom:925.197000px;}
.y87{bottom:928.891500px;}
.yf7{bottom:930.918000px;}
.y7{bottom:933.859500px;}
.y138{bottom:935.766000px;}
.y226{bottom:936.549000px;}
.yc9{bottom:940.425000px;}
.y15d{bottom:942.220500px;}
.y5c{bottom:942.582000px;}
.y86{bottom:945.330000px;}
.yf6{bottom:947.356500px;}
.y6{bottom:950.298000px;}
.y137{bottom:952.204500px;}
.yc8{bottom:956.863500px;}
.y15c{bottom:958.659000px;}
.y225{bottom:961.953000px;}
.yf4{bottom:963.048000px;}
.y85{bottom:964.758000px;}
.y5b{bottom:965.295000px;}
.y136{bottom:968.643000px;}
.yf5{bottom:968.797500px;}
.y5{bottom:972.159000px;}
.yf3{bottom:972.687000px;}
.yc7{bottom:973.302000px;}
.y84{bottom:981.196500px;}
.y135{bottom:985.081500px;}
.y152{bottom:987.052500px;}
.yf2{bottom:991.842000px;}
.yc6{bottom:995.832000px;}
.y224{bottom:996.324000px;}
.y5a{bottom:996.438000px;}
.y83{bottom:997.635000px;}
.y4{bottom:1001.107500px;}
.yc1{bottom:1002.927000px;}
.y59{bottom:1006.630500px;}
.yc0{bottom:1007.410500px;}
.y134{bottom:1010.487000px;}
.yf1{bottom:1010.521500px;}
.y223{bottom:1012.762500px;}
.yc5{bottom:1015.558500px;}
.ybd{bottom:1017.124500px;}
.y82{bottom:1017.493500px;}
.yc4{bottom:1021.536000px;}
.y58{bottom:1023.069000px;}
.y133{bottom:1026.925500px;}
.yf0{bottom:1026.960000px;}
.yc3{bottom:1027.513500px;}
.y222{bottom:1029.201000px;}
.ybf{bottom:1034.310000px;}
.yc2{bottom:1037.997000px;}
.y3{bottom:1038.466500px;}
.ybe{bottom:1038.793500px;}
.y57{bottom:1039.507500px;}
.y132{bottom:1043.362500px;}
.yef{bottom:1043.398500px;}
.y81{bottom:1044.810000px;}
.y221{bottom:1045.639500px;}
.y56{bottom:1055.946000px;}
.y131{bottom:1059.801000px;}
.yee{bottom:1059.837000px;}
.ybc{bottom:1060.945500px;}
.y80{bottom:1061.248500px;}
.y220{bottom:1062.078000px;}
.y2{bottom:1064.769000px;}
.y55{bottom:1075.785000px;}
.y130{bottom:1076.239500px;}
.yed{bottom:1076.275500px;}
.ybb{bottom:1077.384000px;}
.y7f{bottom:1077.687000px;}
.y21f{bottom:1078.516500px;}
.y1{bottom:1091.070000px;}
.y12f{bottom:1092.678000px;}
.yec{bottom:1092.714000px;}
.yba{bottom:1093.822500px;}
.y7e{bottom:1094.125500px;}
.y21e{bottom:1094.955000px;}
.y54{bottom:1095.625500px;}
.y12e{bottom:1109.116500px;}
.yb9{bottom:1110.261000px;}
.y7d{bottom:1110.564000px;}
.yeb{bottom:1111.393500px;}
.y53{bottom:1112.064000px;}
.y7c{bottom:1127.002500px;}
.yea{bottom:1127.832000px;}
.y7b{bottom:1143.441000px;}
.y52{bottom:1144.270500px;}
.y12d{bottom:1144.437000px;}
.h11{height:2.391024px;}
.ha{height:5.062903px;}
.h20{height:21.554156px;}
.h1d{height:21.874877px;}
.h1f{height:22.491293px;}
.h7{height:23.384273px;}
.h2f{height:23.676587px;}
.h30{height:24.028288px;}
.h2d{height:24.705386px;}
.h5{height:28.578632px;}
.hf{height:29.038903px;}
.h3a{height:29.274277px;}
.h1e{height:29.665755px;}
.h17{height:31.382100px;}
.h2e{height:32.586932px;}
.h3c{height:35.129132px;}
.h8{height:35.865450px;}
.h36{height:37.399054px;}
.h39{height:38.056633px;}
.h32{height:41.192313px;}
.h2b{height:42.082022px;}
.h19{height:42.141798px;}
.h6{height:44.831700px;}
.h4{height:50.268632px;}
.h23{height:50.436004px;}
.h27{height:50.442004px;}
.h9{height:50.728903px;}
.hc{height:50.734903px;}
.h28{height:53.072100px;}
.h37{height:53.078100px;}
.h22{height:53.424004px;}
.h25{height:53.430004px;}
.he{height:53.716903px;}
.hd{height:53.722903px;}
.h33{height:56.066100px;}
.h3b{height:57.521574px;}
.h34{height:58.112100px;}
.h26{height:59.603700px;}
.h12{height:59.609700px;}
.h2{height:60.254040px;}
.h24{height:60.389700px;}
.h29{height:60.605700px;}
.h2a{height:60.611700px;}
.h1b{height:60.773700px;}
.h1a{height:62.432100px;}
.h13{height:68.745024px;}
.h3{height:72.811288px;}
.h14{height:78.368100px;}
.h16{height:78.374100px;}
.hb{height:85.115700px;}
.h15{height:111.248100px;}
.h10{height:124.929024px;}
.h21{height:142.863024px;}
.h18{height:145.982100px;}
.h31{height:167.596515px;}
.h2c{height:212.602425px;}
.h1c{height:250.865640px;}
.h35{height:285.481320px;}
.h38{height:300.408525px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:242.974200px;}
.w3{width:245.470680px;}
.w6{width:246.678075px;}
.w4{width:246.819420px;}
.w8{width:252.136350px;}
.w2{width:269.073630px;}
.w5{width:274.086750px;}
.wa{width:376.301205px;}
.w9{width:611.360940px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:4.917108px;}
.x5a{left:9.032862px;}
.x53{left:12.245085px;}
.x2f{left:14.529234px;}
.x55{left:15.578572px;}
.x30{left:17.563899px;}
.x32{left:23.126170px;}
.x54{left:24.245640px;}
.x63{left:34.460810px;}
.x5f{left:38.622839px;}
.x51{left:39.748357px;}
.x64{left:53.471742px;}
.x71{left:57.200313px;}
.xe{left:61.228500px;}
.x5d{left:72.229500px;}
.x41{left:77.833500px;}
.x72{left:80.631018px;}
.x12{left:82.650000px;}
.x18{left:84.265500px;}
.x56{left:87.133500px;}
.x3b{left:91.116000px;}
.x43{left:92.776500px;}
.x13{left:93.858000px;}
.x6c{left:95.693502px;}
.x73{left:99.878034px;}
.x62{left:106.897210px;}
.x74{left:114.104223px;}
.x5b{left:117.418616px;}
.x37{left:119.279194px;}
.x57{left:120.774030px;}
.x5e{left:127.521000px;}
.x75{left:128.748769px;}
.x17{left:134.143500px;}
.x44{left:136.212000px;}
.xc{left:138.613500px;}
.x19{left:140.227500px;}
.x33{left:142.781663px;}
.x76{left:143.811569px;}
.x52{left:148.134110px;}
.x69{left:149.844826px;}
.x16{left:154.515000px;}
.x77{left:157.200619px;}
.x11{left:159.076500px;}
.x15{left:164.671500px;}
.x1a{left:167.278500px;}
.x47{left:171.268500px;}
.xd{left:178.809000px;}
.x34{left:184.668000px;}
.x60{left:185.671280px;}
.x7f{left:189.082500px;}
.x6d{left:190.673402px;}
.x3c{left:192.327000px;}
.x36{left:197.165557px;}
.x78{left:200.715384px;}
.x14{left:203.497500px;}
.x3d{left:205.611000px;}
.x1b{left:208.698000px;}
.x40{left:214.956000px;}
.xa{left:215.997000px;}
.x5{left:219.825000px;}
.x3{left:222.946500px;}
.x2{left:227.811000px;}
.x9{left:230.307000px;}
.x61{left:232.978437px;}
.x67{left:235.993403px;}
.x6e{left:238.372373px;}
.x79{left:247.159385px;}
.x1{left:254.004000px;}
.x42{left:263.154000px;}
.x4{left:266.265000px;}
.x7a{left:276.866732px;}
.x6a{left:283.978919px;}
.x3e{left:286.986000px;}
.x6{left:288.499500px;}
.x7b{left:291.511278px;}
.x45{left:293.071500px;}
.x8{left:305.494500px;}
.x46{left:307.237500px;}
.x6f{left:311.594579px;}
.xb{left:318.765000px;}
.x7c{left:324.565597px;}
.x6b{left:327.074894px;}
.x35{left:336.318000px;}
.x58{left:338.350500px;}
.x7{left:342.538500px;}
.x7d{left:344.649646px;}
.x59{left:346.551000px;}
.x7e{left:358.457055px;}
.x70{left:359.712225px;}
.x3f{left:410.961000px;}
.x1c{left:418.432500px;}
.x38{left:446.737500px;}
.xf{left:458.787000px;}
.x10{left:462.472500px;}
.x1d{left:466.840500px;}
.x81{left:473.731500px;}
.x1e{left:484.192500px;}
.x65{left:488.676000px;}
.x21{left:489.879000px;}
.x4c{left:520.492500px;}
.x29{left:534.286500px;}
.x66{left:544.639500px;}
.x2a{left:564.552000px;}
.x22{left:570.045000px;}
.x68{left:575.481863px;}
.x39{left:588.193500px;}
.x80{left:595.567500px;}
.x23{left:599.886000px;}
.x20{left:604.135500px;}
.x2b{left:621.385500px;}
.x4f{left:637.587000px;}
.x4d{left:639.366000px;}
.x5c{left:645.972000px;}
.x50{left:651.753000px;}
.x24{left:653.137500px;}
.x48{left:665.500500px;}
.x25{left:697.927500px;}
.x3a{left:700.377000px;}
.x49{left:708.960000px;}
.x2c{left:721.755000px;}
.x26{left:727.528500px;}
.x4a{left:744.058500px;}
.x2d{left:749.769000px;}
.x4b{left:758.223000px;}
.x1f{left:771.811500px;}
.x27{left:780.543000px;}
.x2e{left:804.349500px;}
.x4e{left:808.519500px;}
.x28{left:825.249000px;}
@media print{
.v14{vertical-align:-50.858667pt;}
.v6{vertical-align:-40.597333pt;}
.v15{vertical-align:-23.258667pt;}
.v3{vertical-align:-19.280000pt;}
.v1b{vertical-align:-15.941333pt;}
.v4{vertical-align:-15.002667pt;}
.ve{vertical-align:-13.968000pt;}
.v1d{vertical-align:-12.840100pt;}
.v19{vertical-align:-11.689080pt;}
.v7{vertical-align:-7.968000pt;}
.v10{vertical-align:-6.378667pt;}
.v9{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:1.594667pt;}
.v1c{vertical-align:5.162667pt;}
.v18{vertical-align:6.197333pt;}
.vc{vertical-align:7.968000pt;}
.v5{vertical-align:13.968000pt;}
.vb{vertical-align:16.624000pt;}
.v2{vertical-align:19.280000pt;}
.va{vertical-align:21.941333pt;}
.v1e{vertical-align:23.760000pt;}
.v1f{vertical-align:25.108709pt;}
.v1{vertical-align:27.765333pt;}
.v8{vertical-align:35.808000pt;}
.v12{vertical-align:41.765333pt;}
.v11{vertical-align:58.981333pt;}
.v13{vertical-align:78.314667pt;}
.v17{vertical-align:101.866667pt;}
.vd{vertical-align:108.922667pt;}
.v16{vertical-align:110.368000pt;}
.v1a{vertical-align:124.864000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000082pt;}
.lsc1{letter-spacing:0.000182pt;}
.ls10{letter-spacing:0.000267pt;}
.ls44{letter-spacing:0.000334pt;}
.lsce{letter-spacing:0.000422pt;}
.lsde{letter-spacing:0.000533pt;}
.lsb{letter-spacing:0.000546pt;}
.lse5{letter-spacing:0.000598pt;}
.ls2a{letter-spacing:0.000707pt;}
.lse4{letter-spacing:0.000782pt;}
.ls41{letter-spacing:0.000900pt;}
.ls7a{letter-spacing:0.000980pt;}
.ls22{letter-spacing:0.001048pt;}
.lsc5{letter-spacing:0.001160pt;}
.ls7e{letter-spacing:0.001787pt;}
.lscc{letter-spacing:0.002034pt;}
.lsa0{letter-spacing:0.002408pt;}
.ls7d{letter-spacing:0.002787pt;}
.ls3b{letter-spacing:0.002827pt;}
.lsca{letter-spacing:0.003062pt;}
.ls68{letter-spacing:0.003723pt;}
.ls9c{letter-spacing:0.003733pt;}
.ls76{letter-spacing:0.003858pt;}
.ls5c{letter-spacing:0.004302pt;}
.lsa5{letter-spacing:0.004731pt;}
.lsb9{letter-spacing:0.005620pt;}
.ls19{letter-spacing:0.005717pt;}
.ls4d{letter-spacing:0.005847pt;}
.ls99{letter-spacing:0.006869pt;}
.ls37{letter-spacing:0.007111pt;}
.lsd{letter-spacing:0.007247pt;}
.ls92{letter-spacing:0.007689pt;}
.ls52{letter-spacing:0.008009pt;}
.lse0{letter-spacing:0.008119pt;}
.ls3d{letter-spacing:0.008417pt;}
.ls79{letter-spacing:0.010654pt;}
.lsc8{letter-spacing:0.010670pt;}
.ls55{letter-spacing:0.010830pt;}
.lsa9{letter-spacing:0.012282pt;}
.ls65{letter-spacing:0.012859pt;}
.ls6b{letter-spacing:0.013217pt;}
.ls53{letter-spacing:0.013434pt;}
.lsb4{letter-spacing:0.013703pt;}
.ls89{letter-spacing:0.014356pt;}
.ls61{letter-spacing:0.016022pt;}
.lsb1{letter-spacing:0.016442pt;}
.ls8a{letter-spacing:0.017111pt;}
.ls5b{letter-spacing:0.017373pt;}
.ls47{letter-spacing:0.018064pt;}
.ls77{letter-spacing:0.018842pt;}
.lsa{letter-spacing:0.019112pt;}
.ls20{letter-spacing:0.019391pt;}
.ls3a{letter-spacing:0.022932pt;}
.ls8e{letter-spacing:0.023709pt;}
.ls83{letter-spacing:0.024113pt;}
.lsb2{letter-spacing:0.024652pt;}
.ls49{letter-spacing:0.024805pt;}
.ls5f{letter-spacing:0.027154pt;}
.ls3f{letter-spacing:0.027540pt;}
.ls32{letter-spacing:0.029752pt;}
.ls34{letter-spacing:0.031499pt;}
.lsbb{letter-spacing:0.053134pt;}
.ls58{letter-spacing:0.106268pt;}
.ls7c{letter-spacing:0.553456pt;}
.lscb{letter-spacing:0.607955pt;}
.lsa4{letter-spacing:0.743874pt;}
.ls73{letter-spacing:0.828446pt;}
.ls71{letter-spacing:0.834025pt;}
.ls6c{letter-spacing:0.851723pt;}
.ls74{letter-spacing:0.862938pt;}
.ls6f{letter-spacing:0.865501pt;}
.ls5{letter-spacing:1.647150pt;}
.ls7{letter-spacing:1.700284pt;}
.lsd1{letter-spacing:1.859685pt;}
.lsd2{letter-spacing:1.902018pt;}
.lsd0{letter-spacing:1.912819pt;}
.lsc2{letter-spacing:2.651680pt;}
.ls63{letter-spacing:2.652384pt;}
.lsd3{letter-spacing:2.652911pt;}
.ls38{letter-spacing:2.653196pt;}
.lsdd{letter-spacing:2.653413pt;}
.ls1b{letter-spacing:2.655443pt;}
.ls5d{letter-spacing:2.657014pt;}
.ls40{letter-spacing:2.657253pt;}
.ls21{letter-spacing:2.657718pt;}
.ls15{letter-spacing:2.657986pt;}
.ls82{letter-spacing:2.658245pt;}
.ls25{letter-spacing:2.658529pt;}
.ls1c{letter-spacing:2.660776pt;}
.lse3{letter-spacing:2.674312pt;}
.ls94{letter-spacing:2.844521pt;}
.ls85{letter-spacing:2.849855pt;}
.ls50{letter-spacing:2.922363pt;}
.ls36{letter-spacing:2.975497pt;}
.lsa6{letter-spacing:3.028630pt;}
.ls35{letter-spacing:3.990244pt;}
.ls3e{letter-spacing:3.995577pt;}
.ls48{letter-spacing:4.258529pt;}
.lsa7{letter-spacing:4.802585pt;}
.lsc4{letter-spacing:4.807919pt;}
.ls23{letter-spacing:5.313626pt;}
.ls9d{letter-spacing:5.356059pt;}
.ls27{letter-spacing:5.791591pt;}
.ls9{letter-spacing:5.897859pt;}
.ls16{letter-spacing:5.950993pt;}
.ls51{letter-spacing:6.641733pt;}
.ls2b{letter-spacing:6.642178pt;}
.ls45{letter-spacing:6.647511pt;}
.lsa8{letter-spacing:6.694867pt;}
.lse8{letter-spacing:7.385607pt;}
.lse2{letter-spacing:7.598143pt;}
.ls59{letter-spacing:7.970080pt;}
.ls33{letter-spacing:8.557196pt;}
.ls81{letter-spacing:8.559443pt;}
.ls5e{letter-spacing:8.561014pt;}
.ls4f{letter-spacing:8.562529pt;}
.ls2e{letter-spacing:8.767088pt;}
.lsf{letter-spacing:8.820222pt;}
.ls43{letter-spacing:8.871551pt;}
.ls4a{letter-spacing:8.873356pt;}
.ls5a{letter-spacing:9.510962pt;}
.lsc6{letter-spacing:9.776631pt;}
.ls30{letter-spacing:9.894244pt;}
.ls4c{letter-spacing:9.899577pt;}
.lsdb{letter-spacing:11.211246pt;}
.ls24{letter-spacing:11.212292pt;}
.ls14{letter-spacing:11.217626pt;}
.ls1a{letter-spacing:11.217718pt;}
.lsc0{letter-spacing:11.476915pt;}
.lsdc{letter-spacing:11.506746pt;}
.ls1{letter-spacing:11.515919pt;}
.lsbf{letter-spacing:11.530049pt;}
.ls80{letter-spacing:11.689451pt;}
.ls6{letter-spacing:11.795718pt;}
.ls97{letter-spacing:12.066585pt;}
.lsd7{letter-spacing:12.114522pt;}
.ls2f{letter-spacing:12.407511pt;}
.ls87{letter-spacing:12.592726pt;}
.lsad{letter-spacing:12.752128pt;}
.lsae{letter-spacing:12.805262pt;}
.lsb8{letter-spacing:12.911530pt;}
.lsb7{letter-spacing:12.964663pt;}
.ls4{letter-spacing:13.496002pt;}
.ls98{letter-spacing:13.814805pt;}
.lsc3{letter-spacing:13.847578pt;}
.lsc9{letter-spacing:13.867939pt;}
.lsdf{letter-spacing:13.870177pt;}
.lsd8{letter-spacing:14.133609pt;}
.ls8d{letter-spacing:14.614347pt;}
.lsb6{letter-spacing:14.619680pt;}
.ls4b{letter-spacing:14.718081pt;}
.lsbd{letter-spacing:14.770537pt;}
.ls13{letter-spacing:14.771215pt;}
.ls88{letter-spacing:14.827680pt;}
.lsda{letter-spacing:15.143152pt;}
.lsb5{letter-spacing:15.515089pt;}
.ls75{letter-spacing:15.993294pt;}
.lsd6{letter-spacing:16.046428pt;}
.lsba{letter-spacing:16.205829pt;}
.lsb0{letter-spacing:16.365231pt;}
.ls1e{letter-spacing:16.418365pt;}
.lsb3{letter-spacing:16.684034pt;}
.lsd9{letter-spacing:16.949703pt;}
.ls56{letter-spacing:17.002837pt;}
.lsac{letter-spacing:17.162239pt;}
.ls62{letter-spacing:17.414347pt;}
.lse6{letter-spacing:17.415578pt;}
.ls8b{letter-spacing:17.607188pt;}
.ls54{letter-spacing:17.693578pt;}
.ls9b{letter-spacing:17.799845pt;}
.lse1{letter-spacing:18.313660pt;}
.lsc{letter-spacing:18.412292pt;}
.lse{letter-spacing:18.412384pt;}
.lsa3{letter-spacing:18.543719pt;}
.ls46{letter-spacing:18.752910pt;}
.lsd5{letter-spacing:18.756255pt;}
.lsab{letter-spacing:18.897392pt;}
.ls7f{letter-spacing:19.282178pt;}
.ls96{letter-spacing:19.765798pt;}
.ls93{letter-spacing:19.818932pt;}
.lsaa{letter-spacing:19.949252pt;}
.ls18{letter-spacing:20.031468pt;}
.ls8f{letter-spacing:20.369014pt;}
.ls0{letter-spacing:20.369253pt;}
.lsc7{letter-spacing:20.456539pt;}
.lscd{letter-spacing:20.669074pt;}
.ls95{letter-spacing:20.722208pt;}
.ls78{letter-spacing:20.860911pt;}
.ls29{letter-spacing:21.399511pt;}
.ls2d{letter-spacing:21.490178pt;}
.ls31{letter-spacing:21.762178pt;}
.lsaf{letter-spacing:21.809014pt;}
.ls4e{letter-spacing:22.092292pt;}
.ls57{letter-spacing:22.188845pt;}
.ls12{letter-spacing:22.528759pt;}
.ls2{letter-spacing:22.578591pt;}
.lse9{letter-spacing:22.880604pt;}
.ls64{letter-spacing:23.025626pt;}
.ls66{letter-spacing:23.025718pt;}
.ls8c{letter-spacing:23.068059pt;}
.ls7b{letter-spacing:23.170178pt;}
.lsa2{letter-spacing:23.245252pt;}
.lse7{letter-spacing:23.432035pt;}
.ls17{letter-spacing:23.591437pt;}
.ls11{letter-spacing:23.644571pt;}
.ls67{letter-spacing:23.910347pt;}
.ls9a{letter-spacing:25.533252pt;}
.ls91{letter-spacing:26.566933pt;}
.ls9f{letter-spacing:29.542430pt;}
.ls72{letter-spacing:30.567578pt;}
.ls9e{letter-spacing:34.327919pt;}
.ls70{letter-spacing:44.225843pt;}
.ls42{letter-spacing:44.260511pt;}
.ls6a{letter-spacing:50.967578pt;}
.ls69{letter-spacing:50.972911pt;}
.ls6d{letter-spacing:51.815578pt;}
.ls6e{letter-spacing:51.820911pt;}
.ls1d{letter-spacing:68.366400pt;}
.ls1f{letter-spacing:76.140831pt;}
.ls86{letter-spacing:82.551188pt;}
.ls84{letter-spacing:104.396911pt;}
.lsbe{letter-spacing:126.711528pt;}
.lsbc{letter-spacing:126.724272pt;}
.lscf{letter-spacing:133.787173pt;}
.lsa1{letter-spacing:166.043333pt;}
.ls3c{letter-spacing:188.837762pt;}
.ls39{letter-spacing:191.388188pt;}
.lsd4{letter-spacing:206.850143pt;}
.ls90{letter-spacing:255.839568pt;}
.ls2c{letter-spacing:263.809648pt;}
.ls8{letter-spacing:280.015477pt;}
.ls26{letter-spacing:299.887543pt;}
.ls60{letter-spacing:358.547332pt;}
.ws4c{word-spacing:-53.133867pt;}
.ws75{word-spacing:-43.484756pt;}
.ws89{word-spacing:-42.359791pt;}
.ws71{word-spacing:-42.066082pt;}
.wsbd{word-spacing:-40.974629pt;}
.ws4e{word-spacing:-38.415786pt;}
.ws85{word-spacing:-38.362652pt;}
.ws97{word-spacing:-36.502966pt;}
.ws9d{word-spacing:-34.643281pt;}
.ws5c{word-spacing:-34.611401pt;}
.ws8b{word-spacing:-33.368068pt;}
.ws8c{word-spacing:-33.314934pt;}
.ws6{word-spacing:-30.847953pt;}
.ws7{word-spacing:-30.846700pt;}
.ws72{word-spacing:-25.791179pt;}
.wsa6{word-spacing:-25.755989pt;}
.ws86{word-spacing:-25.738045pt;}
.wsbc{word-spacing:-23.565421pt;}
.wsc8{word-spacing:-22.868816pt;}
.ws3{word-spacing:-21.989286pt;}
.ws47{word-spacing:-16.970957pt;}
.ws8d{word-spacing:-16.864689pt;}
.ws55{word-spacing:-14.760588pt;}
.wse3{word-spacing:-13.581016pt;}
.wsdc{word-spacing:-9.369232pt;}
.ws2{word-spacing:-8.131556pt;}
.ws1{word-spacing:-8.092036pt;}
.ws4{word-spacing:-8.090708pt;}
.ws9c{word-spacing:-6.046634pt;}
.ws56{word-spacing:-5.887232pt;}
.ws90{word-spacing:-5.143358pt;}
.wsda{word-spacing:-4.665153pt;}
.wsa5{word-spacing:-3.549342pt;}
.ws46{word-spacing:-2.964870pt;}
.ws51{word-spacing:-2.911736pt;}
.ws59{word-spacing:-2.858602pt;}
.wsd4{word-spacing:-2.805468pt;}
.ws33{word-spacing:-2.699200pt;}
.ws1f{word-spacing:-2.646067pt;}
.ws39{word-spacing:-2.592933pt;}
.wsca{word-spacing:-2.539799pt;}
.ws58{word-spacing:-2.486665pt;}
.wsbf{word-spacing:-2.433531pt;}
.wsc0{word-spacing:-2.327263pt;}
.wse7{word-spacing:-2.274129pt;}
.ws45{word-spacing:-2.167862pt;}
.ws80{word-spacing:-2.114728pt;}
.wsac{word-spacing:-2.061594pt;}
.ws21{word-spacing:-1.902192pt;}
.ws24{word-spacing:-1.849059pt;}
.wsb{word-spacing:-1.742791pt;}
.ws49{word-spacing:-1.689657pt;}
.ws48{word-spacing:-1.636523pt;}
.ws32{word-spacing:-1.583389pt;}
.ws7c{word-spacing:-1.530255pt;}
.wsc3{word-spacing:-1.423988pt;}
.wsf{word-spacing:-1.370854pt;}
.ws2e{word-spacing:-1.317720pt;}
.ws3e{word-spacing:-1.264586pt;}
.ws1d{word-spacing:-1.211452pt;}
.ws3b{word-spacing:-1.158318pt;}
.ws88{word-spacing:-1.105184pt;}
.wsd2{word-spacing:-1.052051pt;}
.ws8e{word-spacing:-0.998917pt;}
.wsf7{word-spacing:-0.945783pt;}
.ws5a{word-spacing:-0.892649pt;}
.ws64{word-spacing:-0.839515pt;}
.wsb7{word-spacing:-0.786381pt;}
.ws3d{word-spacing:-0.680113pt;}
.ws87{word-spacing:-0.626980pt;}
.ws78{word-spacing:-0.573846pt;}
.wscd{word-spacing:-0.520712pt;}
.wsd3{word-spacing:-0.467578pt;}
.wsc5{word-spacing:-0.414444pt;}
.ws17{word-spacing:-0.361310pt;}
.ws63{word-spacing:-0.308176pt;}
.ws2f{word-spacing:-0.201909pt;}
.ws52{word-spacing:-0.148775pt;}
.wsa9{word-spacing:-0.095641pt;}
.ws4d{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.042507pt;}
.ws4f{word-spacing:-0.037194pt;}
.ws5f{word-spacing:-0.026567pt;}
.ws83{word-spacing:-0.015595pt;}
.ws70{word-spacing:-0.014579pt;}
.ws44{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.010627pt;}
.wsa{word-spacing:0.063761pt;}
.ws9{word-spacing:0.085014pt;}
.ws8f{word-spacing:0.116895pt;}
.ws40{word-spacing:0.170028pt;}
.ws6e{word-spacing:0.223162pt;}
.ws9b{word-spacing:0.276296pt;}
.wsf5{word-spacing:0.286923pt;}
.ws54{word-spacing:0.329430pt;}
.ws53{word-spacing:0.382564pt;}
.ws61{word-spacing:0.435698pt;}
.ws2d{word-spacing:0.488832pt;}
.wsa1{word-spacing:0.541965pt;}
.wsee{word-spacing:0.552592pt;}
.ws6f{word-spacing:0.595099pt;}
.ws79{word-spacing:0.648233pt;}
.wsc{word-spacing:0.701367pt;}
.ws69{word-spacing:0.722621pt;}
.ws38{word-spacing:0.754501pt;}
.ws6c{word-spacing:0.807635pt;}
.ws4a{word-spacing:0.860769pt;}
.wsb8{word-spacing:0.913903pt;}
.ws19{word-spacing:0.967036pt;}
.ws5b{word-spacing:1.020170pt;}
.ws15{word-spacing:1.073304pt;}
.ws41{word-spacing:1.126438pt;}
.ws68{word-spacing:1.147692pt;}
.ws66{word-spacing:1.200825pt;}
.wsd{word-spacing:1.232706pt;}
.ws62{word-spacing:1.285840pt;}
.wsfd{word-spacing:1.296466pt;}
.wse{word-spacing:1.338973pt;}
.wsc9{word-spacing:1.392107pt;}
.ws9f{word-spacing:1.445241pt;}
.wsd1{word-spacing:1.498375pt;}
.ws95{word-spacing:1.551509pt;}
.ws31{word-spacing:1.604643pt;}
.ws37{word-spacing:1.657777pt;}
.ws4b{word-spacing:1.710911pt;}
.ws10{word-spacing:1.764044pt;}
.wsb4{word-spacing:1.817178pt;}
.ws14{word-spacing:1.870312pt;}
.wscb{word-spacing:1.923446pt;}
.wsce{word-spacing:1.976580pt;}
.ws5e{word-spacing:2.029714pt;}
.ws23{word-spacing:2.082848pt;}
.ws1b{word-spacing:2.135981pt;}
.ws1c{word-spacing:2.189115pt;}
.ws7b{word-spacing:2.242249pt;}
.ws35{word-spacing:2.295383pt;}
.ws30{word-spacing:2.401651pt;}
.ws81{word-spacing:2.454785pt;}
.wsaf{word-spacing:2.507919pt;}
.wsbe{word-spacing:2.561052pt;}
.ws57{word-spacing:2.614186pt;}
.wsd0{word-spacing:2.667320pt;}
.wsab{word-spacing:2.720454pt;}
.wsa2{word-spacing:2.773588pt;}
.wsa3{word-spacing:2.826722pt;}
.wsf0{word-spacing:2.837348pt;}
.wsc4{word-spacing:2.879856pt;}
.ws11{word-spacing:2.932989pt;}
.ws3f{word-spacing:2.986123pt;}
.ws3a{word-spacing:3.039257pt;}
.ws13{word-spacing:3.092391pt;}
.wsdd{word-spacing:3.145525pt;}
.wse0{word-spacing:3.198659pt;}
.wse4{word-spacing:3.209286pt;}
.wsc2{word-spacing:3.251793pt;}
.ws36{word-spacing:3.304927pt;}
.ws20{word-spacing:3.358060pt;}
.ws65{word-spacing:3.379314pt;}
.ws67{word-spacing:3.411194pt;}
.wsd6{word-spacing:3.517462pt;}
.ws96{word-spacing:3.570596pt;}
.ws3c{word-spacing:3.623730pt;}
.ws91{word-spacing:3.676864pt;}
.ws60{word-spacing:3.729997pt;}
.ws7a{word-spacing:3.783131pt;}
.wsaa{word-spacing:3.836265pt;}
.ws92{word-spacing:3.889399pt;}
.wsd7{word-spacing:3.942533pt;}
.ws84{word-spacing:3.995667pt;}
.wsdf{word-spacing:4.048801pt;}
.ws2b{word-spacing:4.101935pt;}
.wsba{word-spacing:4.155068pt;}
.ws6d{word-spacing:4.208202pt;}
.wsb2{word-spacing:4.314470pt;}
.ws94{word-spacing:4.367604pt;}
.ws18{word-spacing:4.420738pt;}
.wsb1{word-spacing:4.473872pt;}
.wsa7{word-spacing:4.527005pt;}
.wsb6{word-spacing:4.580139pt;}
.ws34{word-spacing:4.633273pt;}
.ws43{word-spacing:4.686407pt;}
.wse1{word-spacing:4.845809pt;}
.ws98{word-spacing:4.898943pt;}
.ws99{word-spacing:4.952076pt;}
.ws82{word-spacing:5.058344pt;}
.ws8{word-spacing:5.068971pt;}
.wsb0{word-spacing:5.164612pt;}
.ws9e{word-spacing:5.217746pt;}
.wsa8{word-spacing:5.270880pt;}
.ws9a{word-spacing:5.287080pt;}
.ws93{word-spacing:5.291166pt;}
.wsea{word-spacing:5.387774pt;}
.wsb5{word-spacing:5.430281pt;}
.ws5{word-spacing:5.440908pt;}
.ws25{word-spacing:5.483415pt;}
.wsd5{word-spacing:5.589683pt;}
.wsc6{word-spacing:5.642817pt;}
.wscc{word-spacing:5.802218pt;}
.ws77{word-spacing:5.855352pt;}
.ws1e{word-spacing:5.908486pt;}
.ws8a{word-spacing:5.961620pt;}
.wsa4{word-spacing:6.121021pt;}
.ws2c{word-spacing:6.174155pt;}
.wsec{word-spacing:6.333557pt;}
.ws76{word-spacing:6.439825pt;}
.ws22{word-spacing:6.492959pt;}
.wsb9{word-spacing:6.546092pt;}
.wsf4{word-spacing:6.705494pt;}
.ws42{word-spacing:6.758628pt;}
.wsdb{word-spacing:6.811762pt;}
.wsc7{word-spacing:6.864896pt;}
.wsd9{word-spacing:7.343100pt;}
.ws1a{word-spacing:7.449368pt;}
.wscf{word-spacing:7.608770pt;}
.ws6b{word-spacing:7.715037pt;}
.wsf9{word-spacing:7.821305pt;}
.wse8{word-spacing:7.980707pt;}
.wsf8{word-spacing:8.150735pt;}
.wse2{word-spacing:8.246376pt;}
.wsc1{word-spacing:8.565179pt;}
.wsde{word-spacing:8.777715pt;}
.wsb3{word-spacing:9.096518pt;}
.wsf2{word-spacing:9.202786pt;}
.wsed{word-spacing:9.255920pt;}
.wsd8{word-spacing:9.362187pt;}
.wse9{word-spacing:10.116688pt;}
.wsf6{word-spacing:11.009337pt;}
.wsf3{word-spacing:11.179366pt;}
.wsef{word-spacing:11.487542pt;}
.ws12{word-spacing:11.806345pt;}
.ws74{word-spacing:13.049678pt;}
.ws27{word-spacing:13.389768pt;}
.ws28{word-spacing:14.197405pt;}
.ws2a{word-spacing:15.005042pt;}
.ws26{word-spacing:15.132563pt;}
.wsfa{word-spacing:16.482125pt;}
.wsfb{word-spacing:16.588393pt;}
.wseb{word-spacing:16.800929pt;}
.wsf1{word-spacing:16.854063pt;}
.wse6{word-spacing:16.907196pt;}
.wse5{word-spacing:19.404488pt;}
.wsfc{word-spacing:19.935827pt;}
.ws29{word-spacing:20.063398pt;}
.wsae{word-spacing:20.385618pt;}
.ws6a{word-spacing:26.524426pt;}
.ws0{word-spacing:28.615887pt;}
.ws73{word-spacing:35.185247pt;}
.wsad{word-spacing:37.041775pt;}
.wsa0{word-spacing:38.373279pt;}
.ws7f{word-spacing:46.784805pt;}
.ws7d{word-spacing:46.957156pt;}
.ws7e{word-spacing:61.948240pt;}
.wsbb{word-spacing:118.968279pt;}
.ws50{word-spacing:423.168741pt;}
._5{margin-left:-30.551973pt;}
._20{margin-left:-28.938838pt;}
._7{margin-left:-27.151406pt;}
._8{margin-left:-25.508479pt;}
._27{margin-left:-24.420021pt;}
._17{margin-left:-8.568380pt;}
._13{margin-left:-7.423070pt;}
._15{margin-left:-6.084826pt;}
._4{margin-left:-5.047717pt;}
._6{margin-left:-4.144442pt;}
._0{margin-left:-2.371905pt;}
._9{margin-left:-1.381481pt;}
._a{width:0.952187pt;}
._1{width:2.371905pt;}
._14{width:3.857214pt;}
._12{width:4.975465pt;}
._d{width:6.091276pt;}
._e{width:7.829797pt;}
._f{width:9.302650pt;}
._28{width:11.211246pt;}
._1e{width:13.104946pt;}
._2{width:14.317731pt;}
._11{width:15.761639pt;}
._c{width:17.568191pt;}
._b{width:18.615972pt;}
._3{width:20.350271pt;}
._16{width:21.306681pt;}
._1f{width:23.386186pt;}
._10{width:26.566933pt;}
._2e{width:28.532886pt;}
._2f{width:31.808067pt;}
._2b{width:32.870745pt;}
._30{width:33.899407pt;}
._29{width:35.121486pt;}
._2a{width:38.898213pt;}
._2c{width:42.347692pt;}
._2d{width:48.192417pt;}
._25{width:49.683424pt;}
._21{width:51.359432pt;}
._19{width:52.540005pt;}
._24{width:53.936766pt;}
._22{width:55.215316pt;}
._23{width:57.237759pt;}
._1a{width:59.704224pt;}
._1c{width:62.073978pt;}
._1b{width:65.163060pt;}
._1d{width:68.248402pt;}
._18{width:78.691257pt;}
._26{width:184.886806pt;}
.fs7{font-size:25.319626pt;}
.fs4{font-size:26.566933pt;}
.fs8{font-size:27.574240pt;}
.fsb{font-size:27.812842pt;}
.fs5{font-size:28.773120pt;}
.fsc{font-size:30.289467pt;}
.fs9{font-size:31.605610pt;}
.fs2{font-size:37.193600pt;}
.fs10{font-size:37.476930pt;}
.fs6{font-size:39.563999pt;}
.fs3{font-size:42.507200pt;}
.fsa{font-size:43.459854pt;}
.fs11{font-size:44.972316pt;}
.fse{font-size:47.878270pt;}
.fsf{font-size:48.720102pt;}
.fsd{font-size:52.734400pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1d2{bottom:2.985056pt;}
.yb2{bottom:3.118257pt;}
.yb6{bottom:3.118287pt;}
.y12a{bottom:3.270736pt;}
.y118{bottom:3.286473pt;}
.y18a{bottom:3.290313pt;}
.y12c{bottom:3.451814pt;}
.y129{bottom:11.763902pt;}
.y117{bottom:11.779639pt;}
.y12b{bottom:11.944980pt;}
.yb1{bottom:12.158801pt;}
.ya5{bottom:21.623419pt;}
.y153{bottom:22.380743pt;}
.y155{bottom:23.784533pt;}
.y119{bottom:28.252105pt;}
.y18c{bottom:38.008516pt;}
.y18b{bottom:39.570225pt;}
.ya6{bottom:41.119726pt;}
.y11a{bottom:42.888568pt;}
.y1e5{bottom:44.006886pt;}
.y156{bottom:44.633737pt;}
.y1d9{bottom:44.896236pt;}
.y11b{bottom:57.525031pt;}
.y1e6{bottom:59.437273pt;}
.y1da{bottom:60.588218pt;}
.ya7{bottom:60.615792pt;}
.y15a{bottom:60.927348pt;}
.y1f8{bottom:64.480576pt;}
.y154{bottom:69.325170pt;}
.y159{bottom:70.104320pt;}
.y1e7{bottom:71.990859pt;}
.y11c{bottom:72.161757pt;}
.y1db{bottom:76.280201pt;}
.ya8{bottom:80.112099pt;}
.y1e8{bottom:81.406049pt;}
.y11d{bottom:86.798220pt;}
.y1e9{bottom:90.821613pt;}
.y1dc{bottom:91.972184pt;}
.ya9{bottom:99.608166pt;}
.y1ea{bottom:100.236803pt;}
.y33{bottom:100.369333pt;}
.y51{bottom:100.370667pt;}
.y124{bottom:100.707867pt;}
.y11e{bottom:101.434683pt;}
.y258{bottom:101.889333pt;}
.yb8{bottom:103.690667pt;}
.y1d0{bottom:104.578667pt;}
.y1dd{bottom:107.663886pt;}
.y1eb{bottom:109.651618pt;}
.y1b6{bottom:111.220000pt;}
.y32{bottom:113.521333pt;}
.y50{bottom:114.981333pt;}
.y186{bottom:114.982667pt;}
.yb0{bottom:115.668542pt;}
.y11f{bottom:116.071146pt;}
.y157{bottom:116.083180pt;}
.y257{bottom:116.501333pt;}
.yb7{bottom:118.302667pt;}
.yaa{bottom:119.104472pt;}
.y1cf{bottom:119.189333pt;}
.y189{bottom:123.233368pt;}
.y1de{bottom:123.355868pt;}
.y1d3{bottom:124.373111pt;}
.y1b5{bottom:125.832000pt;}
.y31{bottom:126.672000pt;}
.y1ec{bottom:128.482007pt;}
.y4f{bottom:129.593333pt;}
.y185{bottom:129.594667pt;}
.y1d4{bottom:129.931079pt;}
.y120{bottom:130.707872pt;}
.y256{bottom:131.113333pt;}
.y1ce{bottom:133.801333pt;}
.y15b{bottom:134.067983pt;}
.y126{bottom:136.297201pt;}
.yb3{bottom:136.860000pt;}
.y151{bottom:137.564000pt;}
.y1ed{bottom:137.897196pt;}
.y158{bottom:138.472097pt;}
.yab{bottom:138.600539pt;}
.y1df{bottom:139.047851pt;}
.y30{bottom:139.822667pt;}
.y1b4{bottom:140.444000pt;}
.y128{bottom:140.845333pt;}
.y125{bottom:143.387043pt;}
.y4e{bottom:144.205333pt;}
.y184{bottom:144.206667pt;}
.y121{bottom:145.489659pt;}
.y255{bottom:145.725333pt;}
.y1ee{bottom:147.312386pt;}
.y1cd{bottom:148.413333pt;}
.ya4{bottom:148.722667pt;}
.y150{bottom:152.176000pt;}
.y127{bottom:153.996000pt;}
.y1e0{bottom:154.739834pt;}
.y2f{bottom:156.724000pt;}
.y1ef{bottom:156.727201pt;}
.yac{bottom:158.096845pt;}
.y4d{bottom:158.817333pt;}
.y183{bottom:158.818667pt;}
.y122{bottom:160.140805pt;}
.y254{bottom:160.337333pt;}
.y1d5{bottom:162.622835pt;}
.y1b3{bottom:163.025333pt;}
.y14f{bottom:166.788000pt;}
.y116{bottom:168.514667pt;}
.y1f0{bottom:169.280787pt;}
.y1e1{bottom:170.431817pt;}
.y21d{bottom:173.429333pt;}
.y182{bottom:173.430667pt;}
.y123{bottom:174.791952pt;}
.y253{bottom:174.949333pt;}
.yb5{bottom:175.357061pt;}
.y2e{bottom:176.244000pt;}
.yad{bottom:177.592912pt;}
.y1b2{bottom:177.637333pt;}
.y1f1{bottom:178.695977pt;}
.y14e{bottom:181.400000pt;}
.yb4{bottom:181.811351pt;}
.y1e2{bottom:186.123799pt;}
.y4c{bottom:187.298667pt;}
.y21c{bottom:188.041333pt;}
.y1f2{bottom:188.111166pt;}
.y252{bottom:189.561333pt;}
.y2d{bottom:190.856000pt;}
.y1b1{bottom:192.249333pt;}
.y1d6{bottom:195.314590pt;}
.y14d{bottom:196.012000pt;}
.y188{bottom:196.269904pt;}
.yae{bottom:197.089218pt;}
.y1f3{bottom:197.526356pt;}
.y1e3{bottom:201.815782pt;}
.y21b{bottom:202.653333pt;}
.y251{bottom:204.173333pt;}
.y2c{bottom:205.468000pt;}
.y1b0{bottom:206.861333pt;}
.y1f4{bottom:206.941546pt;}
.y14c{bottom:210.624000pt;}
.y4b{bottom:213.709333pt;}
.yaf{bottom:216.585285pt;}
.y21a{bottom:217.265333pt;}
.y1e4{bottom:217.507765pt;}
.y250{bottom:218.785333pt;}
.y1f5{bottom:219.495132pt;}
.y2b{bottom:220.080000pt;}
.y1af{bottom:221.473333pt;}
.y14b{bottom:225.236000pt;}
.y1d7{bottom:228.006346pt;}
.y4a{bottom:228.321333pt;}
.y219{bottom:231.877333pt;}
.y1f6{bottom:232.048718pt;}
.y24f{bottom:233.397333pt;}
.y2a{bottom:234.692000pt;}
.y1ae{bottom:236.085333pt;}
.y14a{bottom:239.848000pt;}
.y1f7{bottom:241.463908pt;}
.y49{bottom:242.933333pt;}
.y218{bottom:246.489333pt;}
.y24e{bottom:248.009333pt;}
.y29{bottom:249.304000pt;}
.y1ad{bottom:250.697333pt;}
.y149{bottom:254.460000pt;}
.y48{bottom:257.545333pt;}
.y1d8{bottom:260.698102pt;}
.y217{bottom:261.101333pt;}
.y24d{bottom:262.621333pt;}
.y28{bottom:263.916000pt;}
.y1ac{bottom:265.309333pt;}
.y181{bottom:269.072000pt;}
.y47{bottom:272.157333pt;}
.y216{bottom:275.713333pt;}
.y24c{bottom:277.233333pt;}
.y27{bottom:278.528000pt;}
.y1ab{bottom:279.921333pt;}
.y180{bottom:283.684000pt;}
.y24b{bottom:291.845333pt;}
.y26{bottom:293.140000pt;}
.y148{bottom:294.361333pt;}
.y1aa{bottom:294.533333pt;}
.y46{bottom:294.738667pt;}
.y17f{bottom:298.296000pt;}
.y1cc{bottom:302.504000pt;}
.y215{bottom:304.996000pt;}
.y24a{bottom:306.457333pt;}
.y25{bottom:307.752000pt;}
.y147{bottom:308.973333pt;}
.y1a9{bottom:309.145333pt;}
.y45{bottom:309.350667pt;}
.y17e{bottom:312.908000pt;}
.y1cb{bottom:317.116000pt;}
.y249{bottom:321.069333pt;}
.y24{bottom:322.364000pt;}
.y146{bottom:323.585333pt;}
.y1a8{bottom:323.757333pt;}
.y44{bottom:323.962667pt;}
.y17d{bottom:327.520000pt;}
.y1ca{bottom:331.728000pt;}
.y214{bottom:333.009333pt;}
.y248{bottom:335.681333pt;}
.y23{bottom:336.974667pt;}
.y145{bottom:338.197333pt;}
.y1a7{bottom:338.369333pt;}
.y43{bottom:338.574667pt;}
.y17c{bottom:342.132000pt;}
.y1c9{bottom:346.340000pt;}
.y213{bottom:347.621333pt;}
.y247{bottom:350.293333pt;}
.y22{bottom:351.586667pt;}
.y1a6{bottom:352.981333pt;}
.y42{bottom:353.186667pt;}
.y17b{bottom:356.744000pt;}
.y1c8{bottom:360.952000pt;}
.y212{bottom:362.233333pt;}
.y246{bottom:364.905333pt;}
.y21{bottom:366.198667pt;}
.y144{bottom:367.381333pt;}
.y1a5{bottom:367.593333pt;}
.y41{bottom:367.798667pt;}
.ye9{bottom:373.430667pt;}
.y115{bottom:373.432000pt;}
.y1c7{bottom:375.562667pt;}
.y211{bottom:376.845333pt;}
.y17a{bottom:377.122667pt;}
.y245{bottom:379.517333pt;}
.y20{bottom:380.810667pt;}
.y1a4{bottom:382.205333pt;}
.y7a{bottom:387.654667pt;}
.ye8{bottom:388.042667pt;}
.y1c6{bottom:390.174667pt;}
.y40{bottom:390.381333pt;}
.y210{bottom:391.457333pt;}
.y244{bottom:394.129333pt;}
.y1f{bottom:395.422667pt;}
.y1a3{bottom:396.817333pt;}
.y179{bottom:397.502667pt;}
.y79{bottom:402.266667pt;}
.ye7{bottom:402.654667pt;}
.y1c5{bottom:404.786667pt;}
.y3f{bottom:404.993333pt;}
.y20f{bottom:406.069333pt;}
.y243{bottom:408.741333pt;}
.y1a2{bottom:411.429333pt;}
.y178{bottom:412.114667pt;}
.y78{bottom:416.878667pt;}
.ye6{bottom:417.266667pt;}
.y1e{bottom:418.005333pt;}
.y1c4{bottom:419.398667pt;}
.y3e{bottom:419.605333pt;}
.y20e{bottom:420.681333pt;}
.y242{bottom:423.353333pt;}
.y1a1{bottom:426.041333pt;}
.y177{bottom:426.726667pt;}
.ye5{bottom:428.421333pt;}
.ya3{bottom:431.490667pt;}
.ye4{bottom:431.878667pt;}
.y1d{bottom:432.617333pt;}
.y1c3{bottom:434.010667pt;}
.y3d{bottom:434.217333pt;}
.y20d{bottom:435.293333pt;}
.y77{bottom:436.453333pt;}
.y241{bottom:437.965333pt;}
.y114{bottom:439.849333pt;}
.y1a0{bottom:440.653333pt;}
.y176{bottom:441.338667pt;}
.y74{bottom:445.538667pt;}
.ya2{bottom:446.102667pt;}
.y72{bottom:446.202667pt;}
.ye3{bottom:446.490667pt;}
.y1c{bottom:447.229333pt;}
.y1c2{bottom:448.622667pt;}
.y3c{bottom:448.829333pt;}
.y20c{bottom:449.905333pt;}
.y240{bottom:452.577333pt;}
.y76{bottom:453.986667pt;}
.y71{bottom:454.173333pt;}
.y113{bottom:454.461333pt;}
.ya1{bottom:460.714667pt;}
.ye2{bottom:461.102667pt;}
.y1b{bottom:461.841333pt;}
.y19f{bottom:463.234667pt;}
.y3b{bottom:463.441333pt;}
.y175{bottom:463.920000pt;}
.y20b{bottom:464.517333pt;}
.y23f{bottom:467.189333pt;}
.y112{bottom:469.073333pt;}
.y73{bottom:469.449333pt;}
.y75{bottom:471.521333pt;}
.ya0{bottom:475.325333pt;}
.y1a{bottom:476.453333pt;}
.y19e{bottom:477.846667pt;}
.y3a{bottom:478.053333pt;}
.ye0{bottom:478.145333pt;}
.y174{bottom:478.532000pt;}
.y20a{bottom:479.129333pt;}
.y23e{bottom:481.801333pt;}
.ye1{bottom:483.429333pt;}
.y111{bottom:483.685333pt;}
.y1c1{bottom:485.817333pt;}
.ydf{bottom:486.712000pt;}
.y9f{bottom:489.937333pt;}
.y19{bottom:491.065333pt;}
.y70{bottom:491.468000pt;}
.y19d{bottom:492.458667pt;}
.y39{bottom:492.664000pt;}
.y173{bottom:493.144000pt;}
.y209{bottom:493.741333pt;}
.y23d{bottom:496.413333pt;}
.y110{bottom:498.297333pt;}
.y1c0{bottom:500.429333pt;}
.y9e{bottom:504.549333pt;}
.yde{bottom:505.149333pt;}
.y18{bottom:505.677333pt;}
.y6f{bottom:506.080000pt;}
.y19c{bottom:507.070667pt;}
.y38{bottom:507.276000pt;}
.y172{bottom:507.756000pt;}
.y208{bottom:508.353333pt;}
.y23c{bottom:511.024000pt;}
.y10f{bottom:512.909333pt;}
.y1bf{bottom:515.041333pt;}
.y9d{bottom:519.161333pt;}
.ydd{bottom:519.761333pt;}
.y17{bottom:520.289333pt;}
.y6e{bottom:520.692000pt;}
.y19b{bottom:521.682667pt;}
.y37{bottom:521.888000pt;}
.y171{bottom:522.368000pt;}
.y207{bottom:522.965333pt;}
.y23b{bottom:525.636000pt;}
.y10e{bottom:527.521333pt;}
.y1be{bottom:529.653333pt;}
.y9c{bottom:533.773333pt;}
.y16{bottom:534.901333pt;}
.y6d{bottom:535.304000pt;}
.y19a{bottom:536.294667pt;}
.y36{bottom:536.500000pt;}
.y170{bottom:536.980000pt;}
.y206{bottom:537.577333pt;}
.y23a{bottom:540.248000pt;}
.y10d{bottom:542.133333pt;}
.y1bd{bottom:544.265333pt;}
.ydc{bottom:544.342667pt;}
.y199{bottom:550.906667pt;}
.y35{bottom:551.112000pt;}
.y16f{bottom:551.592000pt;}
.y205{bottom:552.189333pt;}
.y239{bottom:554.860000pt;}
.y9b{bottom:556.356000pt;}
.y6c{bottom:557.885333pt;}
.y1bc{bottom:558.877333pt;}
.ydb{bottom:558.954667pt;}
.y10c{bottom:564.714667pt;}
.y143{bottom:564.957333pt;}
.y198{bottom:565.518667pt;}
.y34{bottom:565.724000pt;}
.y15{bottom:565.872000pt;}
.y16e{bottom:566.204000pt;}
.y204{bottom:566.800000pt;}
.y238{bottom:569.472000pt;}
.y9a{bottom:570.968000pt;}
.y6b{bottom:572.497333pt;}
.y1bb{bottom:573.489333pt;}
.yda{bottom:573.566667pt;}
.y10b{bottom:579.326667pt;}
.y197{bottom:580.130667pt;}
.y16d{bottom:580.816000pt;}
.y203{bottom:581.412000pt;}
.y237{bottom:584.084000pt;}
.y99{bottom:585.580000pt;}
.y1ba{bottom:588.101333pt;}
.yd9{bottom:588.178667pt;}
.y6a{bottom:590.133333pt;}
.y10a{bottom:593.938667pt;}
.y196{bottom:594.742667pt;}
.y16c{bottom:595.428000pt;}
.y202{bottom:596.024000pt;}
.y236{bottom:598.696000pt;}
.y14{bottom:599.317333pt;}
.y1b9{bottom:602.712000pt;}
.yd8{bottom:602.790667pt;}
.y69{bottom:607.768000pt;}
.y109{bottom:608.550667pt;}
.y195{bottom:609.354667pt;}
.y16b{bottom:610.040000pt;}
.y201{bottom:610.636000pt;}
.y235{bottom:613.308000pt;}
.y1b8{bottom:617.324000pt;}
.yd7{bottom:617.402667pt;}
.y98{bottom:621.285333pt;}
.y194{bottom:623.966667pt;}
.y16a{bottom:624.652000pt;}
.y200{bottom:625.248000pt;}
.y68{bottom:625.404000pt;}
.y234{bottom:627.920000pt;}
.y108{bottom:631.133333pt;}
.y1b7{bottom:631.936000pt;}
.yd6{bottom:632.014667pt;}
.y97{bottom:632.354667pt;}
.y13{bottom:632.378667pt;}
.y96{bottom:635.897333pt;}
.y169{bottom:639.264000pt;}
.y1ff{bottom:639.860000pt;}
.y233{bottom:642.532000pt;}
.y67{bottom:643.038667pt;}
.y107{bottom:645.745333pt;}
.y193{bottom:646.548000pt;}
.y12{bottom:646.990667pt;}
.y95{bottom:649.549333pt;}
.y94{bottom:653.092000pt;}
.y168{bottom:653.876000pt;}
.y1fe{bottom:654.472000pt;}
.y232{bottom:657.144000pt;}
.y66{bottom:657.650667pt;}
.yd5{bottom:658.421333pt;}
.y106{bottom:660.357333pt;}
.y192{bottom:661.160000pt;}
.y11{bottom:661.602667pt;}
.y167{bottom:668.488000pt;}
.y1fd{bottom:669.084000pt;}
.yd4{bottom:669.576000pt;}
.y231{bottom:671.756000pt;}
.yd3{bottom:673.033333pt;}
.y104{bottom:674.968000pt;}
.y105{bottom:674.969333pt;}
.y191{bottom:675.772000pt;}
.y10{bottom:676.213333pt;}
.y93{bottom:676.662667pt;}
.y65{bottom:680.233333pt;}
.y91{bottom:680.692000pt;}
.y166{bottom:683.100000pt;}
.y1fc{bottom:683.696000pt;}
.y90{bottom:685.525333pt;}
.y142{bottom:685.672000pt;}
.y230{bottom:686.368000pt;}
.yd2{bottom:687.645333pt;}
.y92{bottom:687.997333pt;}
.y102{bottom:688.673333pt;}
.y190{bottom:690.384000pt;}
.yf{bottom:690.825333pt;}
.y103{bottom:693.784000pt;}
.y64{bottom:694.845333pt;}
.y101{bottom:697.241333pt;}
.y165{bottom:697.712000pt;}
.y141{bottom:700.284000pt;}
.y22f{bottom:700.980000pt;}
.y1fb{bottom:704.861333pt;}
.y18f{bottom:704.996000pt;}
.ye{bottom:705.437333pt;}
.yd1{bottom:710.228000pt;}
.y100{bottom:711.853333pt;}
.y164{bottom:712.322667pt;}
.y63{bottom:712.480000pt;}
.y140{bottom:714.896000pt;}
.y8f{bottom:715.428000pt;}
.y22e{bottom:715.592000pt;}
.y1fa{bottom:719.473333pt;}
.yd{bottom:720.049333pt;}
.yd0{bottom:724.838667pt;}
.yff{bottom:726.465333pt;}
.y163{bottom:726.934667pt;}
.y13f{bottom:729.508000pt;}
.y62{bottom:730.116000pt;}
.y22d{bottom:730.204000pt;}
.y18e{bottom:732.744000pt;}
.y8e{bottom:734.025333pt;}
.y1f9{bottom:734.085333pt;}
.ycf{bottom:739.992000pt;}
.yce{bottom:743.276000pt;}
.y13e{bottom:744.120000pt;}
.y22c{bottom:744.816000pt;}
.y18d{bottom:747.356000pt;}
.y61{bottom:747.750667pt;}
.y162{bottom:749.517333pt;}
.yfe{bottom:751.580000pt;}
.y8d{bottom:752.621333pt;}
.yc{bottom:757.037333pt;}
.y13d{bottom:758.732000pt;}
.y1d1{bottom:759.324000pt;}
.y22b{bottom:759.428000pt;}
.yfb{bottom:760.665333pt;}
.y161{bottom:764.129333pt;}
.y60{bottom:765.386667pt;}
.ycd{bottom:765.692000pt;}
.y8c{bottom:767.233333pt;}
.yfd{bottom:769.113333pt;}
.yf9{bottom:769.300000pt;}
.yb{bottom:771.649333pt;}
.y187{bottom:772.594667pt;}
.y13c{bottom:773.344000pt;}
.y22a{bottom:774.040000pt;}
.y160{bottom:778.741333pt;}
.y5f{bottom:779.998667pt;}
.ycc{bottom:780.304000pt;}
.y8b{bottom:781.845333pt;}
.yfa{bottom:784.576000pt;}
.yfc{bottom:786.648000pt;}
.y13b{bottom:787.956000pt;}
.y229{bottom:788.652000pt;}
.ya{bottom:791.081333pt;}
.y15f{bottom:793.353333pt;}
.y8a{bottom:796.457333pt;}
.ycb{bottom:798.740000pt;}
.y9{bottom:800.873333pt;}
.y13a{bottom:802.568000pt;}
.y5e{bottom:802.580000pt;}
.y228{bottom:803.264000pt;}
.y15e{bottom:807.965333pt;}
.y89{bottom:811.069333pt;}
.yf8{bottom:812.872000pt;}
.yca{bottom:813.352000pt;}
.y139{bottom:817.180000pt;}
.y227{bottom:817.876000pt;}
.y5d{bottom:820.216000pt;}
.y8{bottom:820.305333pt;}
.y88{bottom:822.397333pt;}
.y87{bottom:825.681333pt;}
.yf7{bottom:827.482667pt;}
.y7{bottom:830.097333pt;}
.y138{bottom:831.792000pt;}
.y226{bottom:832.488000pt;}
.yc9{bottom:835.933333pt;}
.y15d{bottom:837.529333pt;}
.y5c{bottom:837.850667pt;}
.y86{bottom:840.293333pt;}
.yf6{bottom:842.094667pt;}
.y6{bottom:844.709333pt;}
.y137{bottom:846.404000pt;}
.yc8{bottom:850.545333pt;}
.y15c{bottom:852.141333pt;}
.y225{bottom:855.069333pt;}
.yf4{bottom:856.042667pt;}
.y85{bottom:857.562667pt;}
.y5b{bottom:858.040000pt;}
.y136{bottom:861.016000pt;}
.yf5{bottom:861.153333pt;}
.y5{bottom:864.141333pt;}
.yf3{bottom:864.610667pt;}
.yc7{bottom:865.157333pt;}
.y84{bottom:872.174667pt;}
.y135{bottom:875.628000pt;}
.y152{bottom:877.380000pt;}
.yf2{bottom:881.637333pt;}
.yc6{bottom:885.184000pt;}
.y224{bottom:885.621333pt;}
.y5a{bottom:885.722667pt;}
.y83{bottom:886.786667pt;}
.y4{bottom:889.873333pt;}
.yc1{bottom:891.490667pt;}
.y59{bottom:894.782667pt;}
.yc0{bottom:895.476000pt;}
.y134{bottom:898.210667pt;}
.yf1{bottom:898.241333pt;}
.y223{bottom:900.233333pt;}
.yc5{bottom:902.718667pt;}
.ybd{bottom:904.110667pt;}
.y82{bottom:904.438667pt;}
.yc4{bottom:908.032000pt;}
.y58{bottom:909.394667pt;}
.y133{bottom:912.822667pt;}
.yf0{bottom:912.853333pt;}
.yc3{bottom:913.345333pt;}
.y222{bottom:914.845333pt;}
.ybf{bottom:919.386667pt;}
.yc2{bottom:922.664000pt;}
.y3{bottom:923.081333pt;}
.ybe{bottom:923.372000pt;}
.y57{bottom:924.006667pt;}
.y132{bottom:927.433333pt;}
.yef{bottom:927.465333pt;}
.y81{bottom:928.720000pt;}
.y221{bottom:929.457333pt;}
.y56{bottom:938.618667pt;}
.y131{bottom:942.045333pt;}
.yee{bottom:942.077333pt;}
.ybc{bottom:943.062667pt;}
.y80{bottom:943.332000pt;}
.y220{bottom:944.069333pt;}
.y2{bottom:946.461333pt;}
.y55{bottom:956.253333pt;}
.y130{bottom:956.657333pt;}
.yed{bottom:956.689333pt;}
.ybb{bottom:957.674667pt;}
.y7f{bottom:957.944000pt;}
.y21f{bottom:958.681333pt;}
.y1{bottom:969.840000pt;}
.y12f{bottom:971.269333pt;}
.yec{bottom:971.301333pt;}
.yba{bottom:972.286667pt;}
.y7e{bottom:972.556000pt;}
.y21e{bottom:973.293333pt;}
.y54{bottom:973.889333pt;}
.y12e{bottom:985.881333pt;}
.yb9{bottom:986.898667pt;}
.y7d{bottom:987.168000pt;}
.yeb{bottom:987.905333pt;}
.y53{bottom:988.501333pt;}
.y7c{bottom:1001.780000pt;}
.yea{bottom:1002.517333pt;}
.y7b{bottom:1016.392000pt;}
.y52{bottom:1017.129333pt;}
.y12d{bottom:1017.277333pt;}
.h11{height:2.125355pt;}
.ha{height:4.500358pt;}
.h20{height:19.159250pt;}
.h1d{height:19.444335pt;}
.h1f{height:19.992261pt;}
.h7{height:20.786021pt;}
.h2f{height:21.045855pt;}
.h30{height:21.358479pt;}
.h2d{height:21.960343pt;}
.h5{height:25.403229pt;}
.hf{height:25.812358pt;}
.h3a{height:26.021579pt;}
.h1e{height:26.369560pt;}
.h17{height:27.895200pt;}
.h2e{height:28.966162pt;}
.h3c{height:31.225895pt;}
.h8{height:31.880400pt;}
.h36{height:33.243603pt;}
.h39{height:33.828118pt;}
.h32{height:36.615389pt;}
.h2b{height:37.406242pt;}
.h19{height:37.459376pt;}
.h6{height:39.850400pt;}
.h4{height:44.683229pt;}
.h23{height:44.832003pt;}
.h27{height:44.837337pt;}
.h9{height:45.092358pt;}
.hc{height:45.097692pt;}
.h28{height:47.175200pt;}
.h37{height:47.180533pt;}
.h22{height:47.488003pt;}
.h25{height:47.493337pt;}
.he{height:47.748358pt;}
.hd{height:47.753692pt;}
.h33{height:49.836533pt;}
.h3b{height:51.130288pt;}
.h34{height:51.655200pt;}
.h26{height:52.981067pt;}
.h12{height:52.986400pt;}
.h2{height:53.559147pt;}
.h24{height:53.679733pt;}
.h29{height:53.871733pt;}
.h2a{height:53.877067pt;}
.h1b{height:54.021067pt;}
.h1a{height:55.495200pt;}
.h13{height:61.106688pt;}
.h3{height:64.721145pt;}
.h14{height:69.660533pt;}
.h16{height:69.665867pt;}
.hb{height:75.658400pt;}
.h15{height:98.887200pt;}
.h10{height:111.048021pt;}
.h21{height:126.989355pt;}
.h18{height:129.761867pt;}
.h31{height:148.974680pt;}
.h2c{height:188.979933pt;}
.h1c{height:222.991680pt;}
.h35{height:253.761173pt;}
.h38{height:267.029800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:215.977067pt;}
.w3{width:218.196160pt;}
.w6{width:219.269400pt;}
.w4{width:219.395040pt;}
.w8{width:224.121200pt;}
.w2{width:239.176560pt;}
.w5{width:243.632667pt;}
.wa{width:334.489960pt;}
.w9{width:543.431947pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:4.370763pt;}
.x5a{left:8.029211pt;}
.x53{left:10.884520pt;}
.x2f{left:12.914875pt;}
.x55{left:13.847620pt;}
.x30{left:15.612355pt;}
.x32{left:20.556596pt;}
.x54{left:21.551680pt;}
.x63{left:30.631831pt;}
.x5f{left:34.331413pt;}
.x51{left:35.331873pt;}
.x64{left:47.530438pt;}
.x71{left:50.844723pt;}
.xe{left:54.425333pt;}
.x5d{left:64.204000pt;}
.x41{left:69.185333pt;}
.x72{left:71.672016pt;}
.x12{left:73.466667pt;}
.x18{left:74.902667pt;}
.x56{left:77.452000pt;}
.x3b{left:80.992000pt;}
.x43{left:82.468000pt;}
.x13{left:83.429333pt;}
.x6c{left:85.060891pt;}
.x73{left:88.780475pt;}
.x62{left:95.019742pt;}
.x74{left:101.425976pt;}
.x5b{left:104.372103pt;}
.x37{left:106.025950pt;}
.x57{left:107.354693pt;}
.x5e{left:113.352000pt;}
.x75{left:114.443351pt;}
.x17{left:119.238667pt;}
.x44{left:121.077333pt;}
.xc{left:123.212000pt;}
.x19{left:124.646667pt;}
.x33{left:126.917033pt;}
.x76{left:127.832506pt;}
.x52{left:131.674765pt;}
.x69{left:133.195401pt;}
.x16{left:137.346667pt;}
.x77{left:139.733883pt;}
.x11{left:141.401333pt;}
.x15{left:146.374667pt;}
.x1a{left:148.692000pt;}
.x47{left:152.238667pt;}
.xd{left:158.941333pt;}
.x34{left:164.149333pt;}
.x60{left:165.041138pt;}
.x7f{left:168.073333pt;}
.x6d{left:169.487468pt;}
.x3c{left:170.957333pt;}
.x36{left:175.258273pt;}
.x78{left:178.413675pt;}
.x14{left:180.886667pt;}
.x3d{left:182.765333pt;}
.x1b{left:185.509333pt;}
.x40{left:191.072000pt;}
.xa{left:191.997333pt;}
.x5{left:195.400000pt;}
.x3{left:198.174667pt;}
.x2{left:202.498667pt;}
.x9{left:204.717333pt;}
.x61{left:207.091944pt;}
.x67{left:209.771913pt;}
.x6e{left:211.886553pt;}
.x79{left:219.697231pt;}
.x1{left:225.781333pt;}
.x42{left:233.914667pt;}
.x4{left:236.680000pt;}
.x7a{left:246.103761pt;}
.x6a{left:252.425706pt;}
.x3e{left:255.098667pt;}
.x6{left:256.444000pt;}
.x7b{left:259.121136pt;}
.x45{left:260.508000pt;}
.x8{left:271.550667pt;}
.x46{left:273.100000pt;}
.x6f{left:276.972959pt;}
.xb{left:283.346667pt;}
.x7c{left:288.502753pt;}
.x6b{left:290.733239pt;}
.x35{left:298.949333pt;}
.x58{left:300.756000pt;}
.x7{left:304.478667pt;}
.x7d{left:306.355241pt;}
.x59{left:308.045333pt;}
.x7e{left:318.628493pt;}
.x70{left:319.744200pt;}
.x3f{left:365.298667pt;}
.x1c{left:371.940000pt;}
.x38{left:397.100000pt;}
.xf{left:407.810667pt;}
.x10{left:411.086667pt;}
.x1d{left:414.969333pt;}
.x81{left:421.094667pt;}
.x1e{left:430.393333pt;}
.x65{left:434.378667pt;}
.x21{left:435.448000pt;}
.x4c{left:462.660000pt;}
.x29{left:474.921333pt;}
.x66{left:484.124000pt;}
.x2a{left:501.824000pt;}
.x22{left:506.706667pt;}
.x68{left:511.539434pt;}
.x39{left:522.838667pt;}
.x80{left:529.393333pt;}
.x23{left:533.232000pt;}
.x20{left:537.009333pt;}
.x2b{left:552.342667pt;}
.x4f{left:566.744000pt;}
.x4d{left:568.325333pt;}
.x5c{left:574.197333pt;}
.x50{left:579.336000pt;}
.x24{left:580.566667pt;}
.x48{left:591.556000pt;}
.x25{left:620.380000pt;}
.x3a{left:622.557333pt;}
.x49{left:630.186667pt;}
.x2c{left:641.560000pt;}
.x26{left:646.692000pt;}
.x4a{left:661.385333pt;}
.x2d{left:666.461333pt;}
.x4b{left:673.976000pt;}
.x1f{left:686.054667pt;}
.x27{left:693.816000pt;}
.x2e{left:714.977333pt;}
.x4e{left:718.684000pt;}
.x28{left:733.554667pt;}
}




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