
    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_0e2a0c5087e6df014621f723.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c9bd18014c02bfd5abdfe52a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76a0273e781fcd0556233ed5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_5c50257deaeb4f84625b6a6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_94fed4ae215240943d512154.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_249f2949cc34e1b78ca51e98.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69de7cf23123c09cb66f43ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006836;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_fe661c69b2132ae8551e2b73.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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;}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2a{letter-spacing:-0.188536px;}
.ls27{letter-spacing:-0.170861px;}
.ls28{letter-spacing:-0.147294px;}
.ls29{letter-spacing:-0.123727px;}
.ls24{letter-spacing:-0.117835px;}
.ls25{letter-spacing:-0.088376px;}
.ls21{letter-spacing:-0.082485px;}
.ls2c{letter-spacing:-0.076593px;}
.ls2d{letter-spacing:-0.064809px;}
.ls26{letter-spacing:-0.053026px;}
.ls1f{letter-spacing:-0.047134px;}
.ls1c{letter-spacing:-0.037538px;}
.ls1e{letter-spacing:-0.029459px;}
.ls23{letter-spacing:-0.023567px;}
.ls20{letter-spacing:-0.017675px;}
.ls1d{letter-spacing:-0.014077px;}
.ls22{letter-spacing:-0.011784px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005292px;}
.lsf{letter-spacing:0.005892px;}
.ls17{letter-spacing:0.023567px;}
.ls12{letter-spacing:0.029459px;}
.ls11{letter-spacing:0.035351px;}
.ls15{letter-spacing:0.041242px;}
.ls18{letter-spacing:0.047134px;}
.ls19{letter-spacing:0.053026px;}
.ls10{letter-spacing:0.058918px;}
.ls14{letter-spacing:0.064809px;}
.ls2b{letter-spacing:0.082485px;}
.ls13{letter-spacing:0.088376px;}
.ls16{letter-spacing:0.111943px;}
.lsd{letter-spacing:0.164228px;}
.lsc{letter-spacing:0.178305px;}
.ls5{letter-spacing:11.954850px;}
.ls9{letter-spacing:13.628837px;}
.lsa{letter-spacing:13.688612px;}
.lsb{letter-spacing:14.405920px;}
.ls7{letter-spacing:14.645022px;}
.ls4{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.063451px;}
.ls6{letter-spacing:15.123227px;}
.ls2e{letter-spacing:15.242778px;}
.ls1b{letter-spacing:16.737168px;}
.ls1a{letter-spacing:17.813129px;}
.ls1{letter-spacing:17.929200px;}
.ls2f{letter-spacing:21.519216px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-22.718660px;}
.ws66{word-spacing:-14.943900px;}
.wse0{word-spacing:-13.449600px;}
.ws2b{word-spacing:-11.955150px;}
.ws80{word-spacing:-11.908905px;}
.ws81{word-spacing:-11.730600px;}
.wsd{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws76{word-spacing:-3.347434px;}
.wsab{word-spacing:-3.116741px;}
.ws7d{word-spacing:-3.108331px;}
.wsaa{word-spacing:-2.963555px;}
.wscd{word-spacing:-2.929004px;}
.wsd2{word-spacing:-2.869229px;}
.wsb7{word-spacing:-2.786802px;}
.ws1e{word-spacing:-2.367130px;}
.ws43{word-spacing:-2.151922px;}
.ws9f{word-spacing:-2.138709px;}
.ws42{word-spacing:-2.092146px;}
.ws99{word-spacing:-2.068008px;}
.ws9a{word-spacing:-2.014982px;}
.ws98{word-spacing:-2.009090px;}
.ws52{word-spacing:-1.972595px;}
.wsb3{word-spacing:-1.950173px;}
.ws55{word-spacing:-1.912819px;}
.ws75{word-spacing:-1.853044px;}
.ws6c{word-spacing:-1.793268px;}
.wsd8{word-spacing:-1.775347px;}
.ws4f{word-spacing:-1.733492px;}
.wsf5{word-spacing:-1.667750px;}
.ws9e{word-spacing:-1.649693px;}
.ws41{word-spacing:-1.613941px;}
.ws2c{word-spacing:-1.554166px;}
.ws1d{word-spacing:-1.472878px;}
.wsaf{word-spacing:-1.360997px;}
.ws40{word-spacing:-1.315063px;}
.wsfc{word-spacing:-1.183565px;}
.wsc9{word-spacing:-1.135736px;}
.wsda{word-spacing:-1.075968px;}
.wsc7{word-spacing:-1.075961px;}
.wsef{word-spacing:-1.022170px;}
.ws57{word-spacing:-1.016185px;}
.wsdb{word-spacing:-0.968371px;}
.ws79{word-spacing:-0.956410px;}
.ws65{word-spacing:-0.896634px;}
.ws67{word-spacing:-0.836858px;}
.wsa6{word-spacing:-0.824846px;}
.wsa5{word-spacing:-0.801279px;}
.ws28{word-spacing:-0.777083px;}
.wsc1{word-spacing:-0.597756px;}
.ws4c{word-spacing:-0.537980px;}
.ws1c{word-spacing:-0.484186px;}
.wsed{word-spacing:-0.430387px;}
.ws23{word-spacing:-0.418429px;}
.ws90{word-spacing:-0.377073px;}
.ws3d{word-spacing:-0.358654px;}
.wsb9{word-spacing:-0.318155px;}
.ws48{word-spacing:-0.298878px;}
.ws14{word-spacing:-0.268992px;}
.ws87{word-spacing:-0.267458px;}
.ws2f{word-spacing:-0.239102px;}
.ws8f{word-spacing:-0.217995px;}
.ws11{word-spacing:-0.215194px;}
.ws39{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws88{word-spacing:-0.075076px;}
.ws26{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws86{word-spacing:-0.051615px;}
.wsff{word-spacing:-0.012355px;}
.wse5{word-spacing:-0.010339px;}
.wsfd{word-spacing:-0.010186px;}
.wsf1{word-spacing:-0.010128px;}
.wsf3{word-spacing:-0.010022px;}
.ws102{word-spacing:-0.009254px;}
.wsfb{word-spacing:-0.006682px;}
.wse2{word-spacing:-0.004666px;}
.wsde{word-spacing:-0.003302px;}
.ws0{word-spacing:0.000000px;}
.ws2a{word-spacing:0.003599px;}
.wsb1{word-spacing:0.005892px;}
.ws8e{word-spacing:0.029459px;}
.ws3{word-spacing:0.041843px;}
.wsd7{word-spacing:0.053798px;}
.ws29{word-spacing:0.059776px;}
.ws9d{word-spacing:0.088376px;}
.ws9c{word-spacing:0.100160px;}
.wsb0{word-spacing:0.106052px;}
.ws18{word-spacing:0.107597px;}
.ws9b{word-spacing:0.111943px;}
.ws2e{word-spacing:0.119551px;}
.ws13{word-spacing:0.161395px;}
.ws8b{word-spacing:0.169344px;}
.ws8a{word-spacing:0.174636px;}
.ws20{word-spacing:0.179327px;}
.ws19{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.ws10{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.wsd5{word-spacing:0.322790px;}
.ws24{word-spacing:0.358654px;}
.wsd6{word-spacing:0.376589px;}
.ws97{word-spacing:0.377073px;}
.ws4e{word-spacing:0.418429px;}
.ws4d{word-spacing:0.478205px;}
.ws96{word-spacing:0.524367px;}
.wsc2{word-spacing:0.537980px;}
.wse3{word-spacing:0.591782px;}
.ws54{word-spacing:0.597756px;}
.wsea{word-spacing:0.645581px;}
.ws85{word-spacing:0.657532px;}
.ws59{word-spacing:0.717307px;}
.ws62{word-spacing:0.777083px;}
.ws56{word-spacing:0.836858px;}
.wsc8{word-spacing:0.956410px;}
.wsb6{word-spacing:0.983924px;}
.ws5b{word-spacing:1.016185px;}
.ws5a{word-spacing:1.075961px;}
.wsac{word-spacing:1.101759px;}
.wsa9{word-spacing:1.125326px;}
.ws69{word-spacing:1.135736px;}
.wsb4{word-spacing:1.143001px;}
.ws36{word-spacing:1.195512px;}
.wsb5{word-spacing:1.213703px;}
.wse6{word-spacing:1.291162px;}
.ws49{word-spacing:1.315063px;}
.wse8{word-spacing:1.344960px;}
.wsc5{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.wsf8{word-spacing:1.398758px;}
.ws7a{word-spacing:1.434614px;}
.wsa4{word-spacing:1.455265px;}
.wsa8{word-spacing:1.472940px;}
.ws70{word-spacing:1.494390px;}
.wsa7{word-spacing:1.525966px;}
.ws53{word-spacing:1.554166px;}
.ws58{word-spacing:1.613941px;}
.ws6d{word-spacing:1.673717px;}
.wsca{word-spacing:1.733492px;}
.ws2d{word-spacing:1.793268px;}
.ws61{word-spacing:1.853044px;}
.ws33{word-spacing:1.972595px;}
.ws3a{word-spacing:2.032370px;}
.ws7f{word-spacing:2.092146px;}
.ws4a{word-spacing:2.151922px;}
.ws15{word-spacing:2.205734px;}
.ws35{word-spacing:2.211697px;}
.ws63{word-spacing:2.271473px;}
.wsf6{word-spacing:2.313331px;}
.ws64{word-spacing:2.331248px;}
.ws3e{word-spacing:2.391024px;}
.wsf4{word-spacing:2.420928px;}
.ws74{word-spacing:2.450800px;}
.ws12{word-spacing:2.474726px;}
.wsce{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws6e{word-spacing:2.570351px;}
.ws2{word-spacing:2.579672px;}
.ws44{word-spacing:2.630126px;}
.ws71{word-spacing:2.689902px;}
.wsdc{word-spacing:2.743718px;}
.wsb2{word-spacing:2.863395px;}
.wse{word-spacing:2.869236px;}
.wsd9{word-spacing:2.880863px;}
.ws30{word-spacing:2.929004px;}
.ws34{word-spacing:2.988780px;}
.wseb{word-spacing:3.066509px;}
.ws7b{word-spacing:3.108331px;}
.ws68{word-spacing:3.168107px;}
.wsee{word-spacing:3.218515px;}
.wse7{word-spacing:3.218707px;}
.wsf2{word-spacing:3.223882px;}
.wse4{word-spacing:3.224429px;}
.ws6a{word-spacing:3.227882px;}
.wsdf{word-spacing:3.227904px;}
.wse9{word-spacing:3.281702px;}
.ws77{word-spacing:3.287658px;}
.ws72{word-spacing:3.347434px;}
.ws78{word-spacing:3.407209px;}
.wsf0{word-spacing:3.443098px;}
.ws5c{word-spacing:3.466985px;}
.ws103{word-spacing:3.496896px;}
.ws47{word-spacing:3.526760px;}
.wsf{word-spacing:3.586305px;}
.ws1f{word-spacing:3.586536px;}
.wsfa{word-spacing:3.604493px;}
.ws5e{word-spacing:3.646312px;}
.wsbe{word-spacing:3.706087px;}
.ws5f{word-spacing:3.765863px;}
.ws45{word-spacing:3.825638px;}
.ws73{word-spacing:3.885414px;}
.ws101{word-spacing:3.927283px;}
.ws50{word-spacing:3.945190px;}
.wsbd{word-spacing:4.004965px;}
.wsfe{word-spacing:4.034880px;}
.ws51{word-spacing:4.064741px;}
.wse1{word-spacing:4.088678px;}
.wsba{word-spacing:4.244068px;}
.wscc{word-spacing:4.303843px;}
.wsdd{word-spacing:4.411469px;}
.wsc0{word-spacing:4.423394px;}
.wscf{word-spacing:4.542946px;}
.wsb8{word-spacing:4.619140px;}
.ws82{word-spacing:4.662497px;}
.ws1b{word-spacing:4.680461px;}
.wsa1{word-spacing:4.760542px;}
.wsa0{word-spacing:4.790001px;}
.ws60{word-spacing:4.841824px;}
.wsbc{word-spacing:4.961375px;}
.ws92{word-spacing:4.990321px;}
.ws91{word-spacing:5.019780px;}
.wsf9{word-spacing:5.110848px;}
.ws7e{word-spacing:5.320028px;}
.ws3f{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.ws7c{word-spacing:5.559131px;}
.wsd4{word-spacing:5.618906px;}
.wsad{word-spacing:5.726791px;}
.ws5d{word-spacing:5.738458px;}
.wsc6{word-spacing:5.917784px;}
.wsae{word-spacing:5.921219px;}
.ws21{word-spacing:5.977560px;}
.ws83{word-spacing:6.037336px;}
.ws6b{word-spacing:6.097111px;}
.ws46{word-spacing:6.156887px;}
.ws32{word-spacing:6.276438px;}
.wsd1{word-spacing:6.336214px;}
.ws100{word-spacing:6.348211px;}
.ws6f{word-spacing:6.395989px;}
.wscb{word-spacing:6.515540px;}
.wsd3{word-spacing:6.575316px;}
.ws3b{word-spacing:6.635092px;}
.ws94{word-spacing:6.734282px;}
.wsd0{word-spacing:6.754643px;}
.ws93{word-spacing:6.810875px;}
.wsc4{word-spacing:6.814418px;}
.ws4b{word-spacing:6.933970px;}
.wsbf{word-spacing:7.053521px;}
.wsec{word-spacing:7.208986px;}
.ws84{word-spacing:7.232848px;}
.ws38{word-spacing:7.292623px;}
.ws3c{word-spacing:7.352399px;}
.ws37{word-spacing:7.471950px;}
.wsc3{word-spacing:7.591501px;}
.wsbb{word-spacing:7.711052px;}
.ws31{word-spacing:7.830604px;}
.wsf7{word-spacing:8.069760px;}
.ws95{word-spacing:9.232388px;}
.ws6{word-spacing:9.833058px;}
.ws89{word-spacing:11.388066px;}
.ws8c{word-spacing:11.724602px;}
.ws8d{word-spacing:11.759953px;}
.ws7{word-spacing:11.841512px;}
.ws4{word-spacing:15.481836px;}
.wsa2{word-spacing:15.630839px;}
.wsa3{word-spacing:15.666190px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
._4{margin-left:-11.943245px;}
._c{margin-left:-6.778598px;}
._7{margin-left:-5.260266px;}
._1{margin-left:-3.849538px;}
._8{margin-left:-2.630133px;}
._3{margin-left:-1.464498px;}
._20{width:1.196521px;}
._5{width:2.999147px;}
._1b{width:4.303843px;}
._22{width:11.050392px;}
._0{width:12.971268px;}
._16{width:14.674912px;}
._9{width:15.804752px;}
._a{width:17.054093px;}
._d{width:18.853270px;}
._17{width:20.126314px;}
._15{width:21.250222px;}
._e{width:22.535393px;}
._1c{width:23.790689px;}
._2{width:25.314894px;}
._12{width:26.414879px;}
._1d{width:27.974981px;}
._18{width:29.588922px;}
._b{width:31.095439px;}
._23{width:32.189156px;}
._1f{width:33.534112px;}
._1a{width:35.267604px;}
._1e{width:36.552775px;}
._11{width:38.101013px;}
._14{width:39.296525px;}
._13{width:40.886510px;}
._6{width:54.383440px;}
._f{width:882.156789px;}
._21{width:2062.506938px;}
._24{width:2512.952474px;}
._10{width:2535.732634px;}
._19{width:2536.862474px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsd{font-size:46.922400px;}
.fsb{font-size:47.820600px;}
.fsf{font-size:52.920000px;}
.fsc{font-size:53.798400px;}
.fse{font-size:58.917600px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.yd9{bottom:-718.838379px;}
.yf8{bottom:-629.039242px;}
.yf7{bottom:-610.253366px;}
.yf6{bottom:-591.379113px;}
.yf5{bottom:-572.504859px;}
.yf4{bottom:-553.718983px;}
.yf3{bottom:-534.844729px;}
.yf2{bottom:-511.647397px;}
.yf1{bottom:-475.133215px;}
.yf0{bottom:-456.258962px;}
.yef{bottom:-437.471612px;}
.yee{bottom:-418.597359px;}
.yed{bottom:-399.723106px;}
.yec{bottom:-380.937229px;}
.yeb{bottom:-362.062976px;}
.yea{bottom:-343.277099px;}
.ye9{bottom:-324.402846px;}
.ye8{bottom:-305.528593px;}
.ye7{bottom:-286.741243px;}
.ye6{bottom:-267.866990px;}
.ye5{bottom:-244.669658px;}
.ye4{bottom:-208.155475px;}
.ye3{bottom:-189.281222px;}
.ye2{bottom:-170.495345px;}
.ye1{bottom:-151.621092px;}
.ye0{bottom:-132.835215px;}
.ydf{bottom:-113.960962px;}
.yde{bottom:-95.086709px;}
.ydd{bottom:-76.300832px;}
.ydc{bottom:-57.426579px;}
.ydb{bottom:-21.352779px;}
.y0{bottom:0.000000px;}
.yda{bottom:0.697221px;}
.y3b{bottom:9.233944px;}
.y3a{bottom:26.903761px;}
.y68{bottom:31.890000px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.y13c{bottom:103.621500px;}
.y118{bottom:104.460000px;}
.y38{bottom:104.646000px;}
.y18a{bottom:107.193000px;}
.y1c9{bottom:107.761500px;}
.y67{bottom:113.542500px;}
.yd2{bottom:118.251000px;}
.yba{bottom:119.148000px;}
.y13b{bottom:122.449500px;}
.y37{bottom:122.535000px;}
.y117{bottom:123.289500px;}
.y189{bottom:126.022500px;}
.y66{bottom:132.372000px;}
.y1c8{bottom:134.301000px;}
.yd1{bottom:137.080500px;}
.y9c{bottom:137.529000px;}
.y1ff{bottom:137.797500px;}
.yb9{bottom:137.977500px;}
.y23{bottom:139.264499px;}
.y36{bottom:140.422500px;}
.y13a{bottom:141.279000px;}
.y116{bottom:142.119000px;}
.y188{bottom:144.852000px;}
.y65{bottom:151.201500px;}
.y1c7{bottom:151.875000px;}
.y1fe{bottom:155.058000px;}
.y9b{bottom:156.358500px;}
.yb8{bottom:156.807000px;}
.y35{bottom:158.310000px;}
.y1b6{bottom:160.108500px;}
.yd0{bottom:160.393500px;}
.y187{bottom:163.681500px;}
.y167{bottom:166.801500px;}
.y139{bottom:166.891500px;}
.y115{bottom:168.420000px;}
.y64{bottom:170.031000px;}
.y1fd{bottom:172.318500px;}
.y9a{bottom:175.188000px;}
.yb7{bottom:175.636500px;}
.y34{bottom:176.199000px;}
.y1c6{bottom:178.416000px;}
.y1b5{bottom:178.938000px;}
.y186{bottom:182.511000px;}
.y166{bottom:185.631000px;}
.y138{bottom:185.719500px;}
.y114{bottom:187.249500px;}
.y63{bottom:188.860500px;}
.y1fc{bottom:189.579000px;}
.y99{bottom:194.017500px;}
.y33{bottom:194.086500px;}
.yb6{bottom:194.466000px;}
.y1c5{bottom:195.990000px;}
.y1a{bottom:196.933500px;}
.y1b4{bottom:197.767500px;}
.y165{bottom:204.460500px;}
.y137{bottom:204.549000px;}
.y113{bottom:206.079000px;}
.y1fb{bottom:206.839500px;}
.y62{bottom:207.690000px;}
.y185{bottom:208.812000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y32{bottom:211.974000px;}
.y98{bottom:212.847000px;}
.yb5{bottom:213.295500px;}
.y1b3{bottom:216.597000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1c4{bottom:222.531000px;}
.y1fa{bottom:224.100000px;}
.y112{bottom:224.908500px;}
.y61{bottom:226.519500px;}
.y184{bottom:227.641500px;}
.y31{bottom:229.863000px;}
.y164{bottom:229.981500px;}
.y136{bottom:230.161500px;}
.y97{bottom:231.676500px;}
.yb4{bottom:232.125000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1b2{bottom:235.426500px;}
.y1c3{bottom:240.105000px;}
.y1f9{bottom:241.360500px;}
.y60{bottom:245.349000px;}
.y183{bottom:246.471000px;}
.y163{bottom:248.811000px;}
.y135{bottom:248.991000px;}
.y96{bottom:250.506000px;}
.yb3{bottom:250.954500px;}
.y111{bottom:251.209500px;}
.y1b1{bottom:254.256000px;}
.y1c2{bottom:257.679000px;}
.y1f8{bottom:258.621000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y5f{bottom:264.178500px;}
.y162{bottom:267.640500px;}
.y134{bottom:267.819000px;}
.y95{bottom:269.335500px;}
.yb2{bottom:269.784000px;}
.y110{bottom:270.039000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y182{bottom:272.772000px;}
.y1c1{bottom:275.253000px;}
.y1f7{bottom:275.881500px;}
.y1b0{bottom:277.569000px;}
.y5e{bottom:283.008000px;}
.y22c{bottom:284.503500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y161{bottom:286.470000px;}
.y133{bottom:286.648500px;}
.y94{bottom:288.165000px;}
.yb1{bottom:288.613500px;}
.y10f{bottom:288.868500px;}
.y181{bottom:291.601500px;}
.y1c0{bottom:292.827000px;}
.y1f6{bottom:293.140500px;}
.y30{bottom:298.876500px;}
.y22b{bottom:301.764000px;}
.y5d{bottom:301.837500px;}
.y160{bottom:305.299500px;}
.y132{bottom:305.478000px;}
.y93{bottom:306.994500px;}
.yb0{bottom:307.443000px;}
.y10e{bottom:307.698000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1bf{bottom:310.401000px;}
.y180{bottom:310.431000px;}
.y1af{bottom:311.193000px;}
.y2f{bottom:316.764000px;}
.y22a{bottom:319.024500px;}
.y5c{bottom:320.667000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y131{bottom:324.307500px;}
.y92{bottom:325.824000px;}
.yaf{bottom:326.272500px;}
.y1f5{bottom:327.661500px;}
.y1be{bottom:327.975000px;}
.y15f{bottom:328.612500px;}
.y17f{bottom:329.260500px;}
.y1ae{bottom:330.022500px;}
.y10d{bottom:333.999000px;}
.y2e{bottom:334.653000px;}
.y5b{bottom:339.496500px;}
.y130{bottom:343.137000px;}
.y91{bottom:344.653500px;}
.y1f4{bottom:344.922000px;}
.yae{bottom:345.102000px;}
.y17e{bottom:348.090000px;}
.y11{bottom:348.133500px;}
.y1ad{bottom:348.852000px;}
.y2d{bottom:352.540500px;}
.y10c{bottom:352.828500px;}
.y229{bottom:358.102500px;}
.y5a{bottom:358.326000px;}
.y12f{bottom:361.966500px;}
.y1f3{bottom:362.182500px;}
.y15e{bottom:362.236500px;}
.y90{bottom:363.483000px;}
.yad{bottom:363.931500px;}
.y17d{bottom:366.919500px;}
.y1ac{bottom:367.681500px;}
.y10b{bottom:371.658000px;}
.y228{bottom:375.363000px;}
.y2c{bottom:379.395000px;}
.y1f2{bottom:379.443000px;}
.y15d{bottom:381.066000px;}
.y59{bottom:381.637500px;}
.y8f{bottom:382.312500px;}
.yac{bottom:382.761000px;}
.y12e{bottom:385.279500px;}
.y17c{bottom:385.749000px;}
.y1ab{bottom:386.511000px;}
.y10{bottom:386.785499px;}
.y10a{bottom:390.487500px;}
.y227{bottom:392.623500px;}
.yd8{bottom:394.598553px;}
.y1f1{bottom:396.703500px;}
.y2b{bottom:397.282500px;}
.y15c{bottom:399.895500px;}
.y8e{bottom:401.142000px;}
.yab{bottom:401.589000px;}
.yd7{bottom:404.035821px;}
.y1aa{bottom:405.340500px;}
.yf{bottom:408.044999px;}
.y17b{bottom:409.062000px;}
.y109{bottom:409.317000px;}
.y226{bottom:409.884000px;}
.y1f0{bottom:413.964000px;}
.y2a{bottom:415.171500px;}
.y15b{bottom:418.723500px;}
.y12d{bottom:418.903500px;}
.y8d{bottom:419.971500px;}
.yaa{bottom:420.418500px;}
.y225{bottom:427.144500px;}
.y108{bottom:428.146500px;}
.y1a9{bottom:430.861500px;}
.y1ef{bottom:431.223000px;}
.y29{bottom:433.059000px;}
.y15a{bottom:437.553000px;}
.y12c{bottom:437.733000px;}
.y8c{bottom:438.801000px;}
.ya9{bottom:439.248000px;}
.y17a{bottom:442.686000px;}
.y224{bottom:444.403500px;}
.y1ee{bottom:448.483500px;}
.y1a8{bottom:449.691000px;}
.y28{bottom:450.946500px;}
.y107{bottom:451.459500px;}
.y12b{bottom:456.562500px;}
.y58{bottom:456.789000px;}
.y8b{bottom:457.630500px;}
.ya8{bottom:458.077500px;}
.y179{bottom:461.515500px;}
.y223{bottom:461.664000px;}
.y159{bottom:463.075500px;}
.y1ed{bottom:465.744000px;}
.y1a7{bottom:468.520500px;}
.y27{bottom:468.835500px;}
.y12a{bottom:475.392000px;}
.y57{bottom:476.245500px;}
.ycf{bottom:476.458500px;}
.ya7{bottom:476.907000px;}
.y222{bottom:478.924500px;}
.y178{bottom:480.345000px;}
.y8a{bottom:480.942000px;}
.y158{bottom:481.905000px;}
.y1ec{bottom:483.004500px;}
.ye{bottom:484.864502px;}
.y106{bottom:485.083500px;}
.y26{bottom:486.723000px;}
.y1a6{bottom:494.041500px;}
.y129{bottom:494.221500px;}
.yce{bottom:495.288000px;}
.ya6{bottom:495.736500px;}
.y221{bottom:496.185000px;}
.y177{bottom:499.174500px;}
.yd5{bottom:499.771500px;}
.y1eb{bottom:500.265000px;}
.y157{bottom:500.734500px;}
.yd{bottom:502.864502px;}
.y105{bottom:503.913000px;}
.y25{bottom:504.610500px;}
.y1a5{bottom:512.871000px;}
.y128{bottom:513.051000px;}
.y220{bottom:513.445500px;}
.y56{bottom:513.634500px;}
.ycd{bottom:514.117500px;}
.y89{bottom:514.566000px;}
.y1ea{bottom:517.525500px;}
.y176{bottom:518.004000px;}
.ya5{bottom:519.049500px;}
.yc{bottom:520.864502px;}
.y24{bottom:522.499500px;}
.y104{bottom:522.742500px;}
.y156{bottom:526.255500px;}
.y21f{bottom:530.706000px;}
.y1a4{bottom:531.700500px;}
.y127{bottom:531.880500px;}
.y1bd{bottom:532.947000px;}
.y55{bottom:533.092500px;}
.y88{bottom:533.395500px;}
.y1e9{bottom:534.786000px;}
.y175{bottom:536.833500px;}
.ycc{bottom:537.430500px;}
.yb{bottom:538.864499px;}
.y103{bottom:541.572000px;}
.y155{bottom:545.085000px;}
.y21e{bottom:547.966500px;}
.y126{bottom:550.710000px;}
.y1bc{bottom:551.776500px;}
.y1e8{bottom:552.046500px;}
.y87{bottom:552.225000px;}
.y54{bottom:552.549000px;}
.ya4{bottom:552.673500px;}
.y174{bottom:555.663000px;}
.ya{bottom:556.864499px;}
.y1a3{bottom:557.223000px;}
.y102{bottom:560.401500px;}
.y154{bottom:563.914500px;}
.y21d{bottom:565.227000px;}
.y1e7{bottom:569.307000px;}
.y125{bottom:569.539500px;}
.y1bb{bottom:570.606000px;}
.y86{bottom:571.054500px;}
.ya3{bottom:571.503000px;}
.y53{bottom:572.007000px;}
.y1a2{bottom:576.052500px;}
.y173{bottom:578.974500px;}
.y101{bottom:579.231000px;}
.y21c{bottom:582.487500px;}
.y153{bottom:582.744000px;}
.y1e6{bottom:586.566000px;}
.y124{bottom:588.369000px;}
.y1ba{bottom:589.435500px;}
.y85{bottom:589.884000px;}
.ya2{bottom:590.332500px;}
.y52{bottom:591.463500px;}
.y1a1{bottom:594.882000px;}
.y100{bottom:598.060500px;}
.y21b{bottom:599.746500px;}
.y1e5{bottom:603.826500px;}
.y152{bottom:606.057000px;}
.y123{bottom:607.198500px;}
.y1b9{bottom:608.265000px;}
.y84{bottom:608.713500px;}
.ya1{bottom:609.162000px;}
.y51{bottom:610.920000px;}
.y172{bottom:612.598500px;}
.y1a0{bottom:613.710000px;}
.yff{bottom:616.890000px;}
.y21a{bottom:617.007000px;}
.y1e4{bottom:621.087000px;}
.y122{bottom:626.028000px;}
.y1b8{bottom:627.094500px;}
.y83{bottom:627.543000px;}
.ya0{bottom:627.991500px;}
.y50{bottom:630.378000px;}
.y171{bottom:631.428000px;}
.ybb{bottom:632.026500px;}
.y219{bottom:634.267500px;}
.yfe{bottom:635.719500px;}
.y19f{bottom:637.023000px;}
.y1e3{bottom:638.347500px;}
.y151{bottom:639.681000px;}
.y9{bottom:645.510000px;}
.y82{bottom:646.372500px;}
.y9f{bottom:646.821000px;}
.y4f{bottom:649.834500px;}
.y170{bottom:650.257500px;}
.y1b7{bottom:650.407500px;}
.y218{bottom:651.528000px;}
.y121{bottom:651.639000px;}
.yfd{bottom:654.549000px;}
.y1e2{bottom:655.608000px;}
.y150{bottom:658.510500px;}
.ycb{bottom:665.202000px;}
.y9e{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y217{bottom:668.788500px;}
.y16f{bottom:669.087000px;}
.y4e{bottom:669.291000px;}
.y81{bottom:669.685500px;}
.y120{bottom:670.468500px;}
.y19e{bottom:670.647000px;}
.y1e1{bottom:672.868500px;}
.yfc{bottom:673.378500px;}
.y14f{bottom:677.340000px;}
.yca{bottom:684.031500px;}
.y9d{bottom:684.480000px;}
.y216{bottom:686.049000px;}
.y16e{bottom:687.916500px;}
.y4d{bottom:688.749000px;}
.y11f{bottom:689.298000px;}
.y19d{bottom:689.476500px;}
.y1e0{bottom:690.129000px;}
.yfb{bottom:692.208000px;}
.y14e{bottom:696.169500px;}
.yc9{bottom:702.861000px;}
.y80{bottom:703.309500px;}
.y16d{bottom:706.746000px;}
.y1df{bottom:707.389500px;}
.y11e{bottom:708.127500px;}
.y4c{bottom:708.205500px;}
.y19c{bottom:708.306000px;}
.y14d{bottom:714.997500px;}
.yfa{bottom:715.519500px;}
.y215{bottom:720.570000px;}
.yc8{bottom:721.690500px;}
.y7f{bottom:722.139000px;}
.y1de{bottom:724.648500px;}
.y16c{bottom:725.575500px;}
.y7{bottom:726.298500px;}
.y19b{bottom:727.135500px;}
.y4b{bottom:727.663500px;}
.y11d{bottom:733.738500px;}
.y14c{bottom:733.827000px;}
.y214{bottom:737.829000px;}
.yc7{bottom:740.520000px;}
.y7e{bottom:740.968500px;}
.y1dd{bottom:741.909000px;}
.yf9{bottom:745.947000px;}
.y19a{bottom:745.965000px;}
.y4a{bottom:747.120000px;}
.y16b{bottom:751.876500px;}
.y11c{bottom:752.568000px;}
.y4{bottom:752.599495px;}
.y14b{bottom:752.656500px;}
.y213{bottom:755.089500px;}
.y1dc{bottom:759.169500px;}
.yc6{bottom:759.349500px;}
.y7d{bottom:759.798000px;}
.y199{bottom:764.794500px;}
.y49{bottom:766.576500px;}
.y16a{bottom:770.706000px;}
.yd6{bottom:771.366000px;}
.y11b{bottom:771.397500px;}
.y14a{bottom:771.486000px;}
.y212{bottom:772.350000px;}
.y1db{bottom:776.430000px;}
.yc5{bottom:778.179000px;}
.y7c{bottom:778.627500px;}
.y198{bottom:783.624000px;}
.y48{bottom:786.034500px;}
.y169{bottom:789.535500px;}
.y211{bottom:789.610500px;}
.y11a{bottom:790.227000px;}
.y1da{bottom:793.690500px;}
.y149{bottom:794.799000px;}
.yc4{bottom:797.008500px;}
.y7b{bottom:797.457000px;}
.y197{bottom:802.453500px;}
.y47{bottom:805.491000px;}
.y210{bottom:806.871000px;}
.y1d9{bottom:810.951000px;}
.yc3{bottom:815.838000px;}
.y7a{bottom:816.286500px;}
.y196{bottom:821.283000px;}
.y20f{bottom:824.131500px;}
.y46{bottom:824.947500px;}
.y1d8{bottom:828.211500px;}
.y148{bottom:828.423000px;}
.yc2{bottom:834.667500px;}
.y79{bottom:835.114500px;}
.y195{bottom:840.112500px;}
.y20e{bottom:841.392000px;}
.y45{bottom:844.405500px;}
.y1d7{bottom:845.472000px;}
.y147{bottom:847.252500px;}
.yc1{bottom:853.497000px;}
.y78{bottom:853.944000px;}
.y20d{bottom:858.652500px;}
.y194{bottom:858.942000px;}
.y1d6{bottom:862.732500px;}
.y146{bottom:866.082000px;}
.yc0{bottom:872.326500px;}
.y77{bottom:872.773500px;}
.y20c{bottom:875.913000px;}
.y3{bottom:879.369000px;}
.y1d5{bottom:879.991500px;}
.y44{bottom:882.990000px;}
.y193{bottom:884.463000px;}
.y145{bottom:884.911500px;}
.ybf{bottom:891.156000px;}
.y76{bottom:891.603000px;}
.y20b{bottom:893.172000px;}
.y168{bottom:895.638000px;}
.y1d4{bottom:897.252000px;}
.y192{bottom:903.292500px;}
.y43{bottom:903.469500px;}
.y144{bottom:903.741000px;}
.ybe{bottom:909.984000px;}
.y75{bottom:910.432500px;}
.y119{bottom:914.467500px;}
.y1d3{bottom:914.512500px;}
.y42{bottom:919.609500px;}
.y191{bottom:922.122000px;}
.y143{bottom:922.570500px;}
.y20a{bottom:927.693000px;}
.ybd{bottom:928.813500px;}
.y74{bottom:929.262000px;}
.y41{bottom:931.410000px;}
.y1d2{bottom:931.773000px;}
.y190{bottom:940.951500px;}
.y142{bottom:941.400000px;}
.y209{bottom:944.953500px;}
.y2{bottom:945.126001px;}
.yd4{bottom:947.643000px;}
.y73{bottom:948.091500px;}
.y1d1{bottom:949.033500px;}
.y40{bottom:951.888000px;}
.ybc{bottom:952.126500px;}
.y141{bottom:960.229500px;}
.y208{bottom:962.214000px;}
.y1d0{bottom:966.294000px;}
.y18f{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y72{bottom:966.921000px;}
.yd3{bottom:970.956000px;}
.y140{bottom:979.059000px;}
.y207{bottom:979.474500px;}
.y1cf{bottom:983.554500px;}
.y18e{bottom:985.302000px;}
.y71{bottom:985.750500px;}
.y3f{bottom:996.565500px;}
.y206{bottom:996.735000px;}
.y13f{bottom:997.888500px;}
.y1ce{bottom:1000.815000px;}
.y18d{bottom:1004.131500px;}
.y70{bottom:1004.580000px;}
.y205{bottom:1013.995500px;}
.y13e{bottom:1016.718000px;}
.y1cd{bottom:1018.075500px;}
.y18c{bottom:1022.961000px;}
.y6f{bottom:1023.409500px;}
.y204{bottom:1031.254500px;}
.y13d{bottom:1035.547500px;}
.y3e{bottom:1036.485000px;}
.y1cc{bottom:1039.818000px;}
.y6e{bottom:1042.239000px;}
.y18b{bottom:1046.274000px;}
.y203{bottom:1048.515000px;}
.y6d{bottom:1061.068500px;}
.y3d{bottom:1064.728500px;}
.y202{bottom:1065.775500px;}
.y1cb{bottom:1073.442000px;}
.y6c{bottom:1079.898000px;}
.y201{bottom:1083.036000px;}
.y3c{bottom:1092.972000px;}
.y6b{bottom:1098.727500px;}
.y1ca{bottom:1099.983000px;}
.y200{bottom:1100.296500px;}
.y6a{bottom:1117.557000px;}
.y39{bottom:1136.460000px;}
.y69{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h18{height:34.114968px;}
.h17{height:34.550283px;}
.h11{height:34.813397px;}
.h15{height:35.100320px;}
.h1a{height:38.966484px;}
.h12{height:39.165235px;}
.h1d{height:39.488026px;}
.h1c{height:42.749782px;}
.h19{height:42.836087px;}
.h13{height:43.038432px;}
.h1b{height:43.382686px;}
.h14{height:43.516637px;}
.hd{height:43.875290px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.hf{height:54.405312px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h16{height:361.137840px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w5{width:777.440958px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.169508px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x13{left:85.323000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xf{left:195.828108px;}
.x4{left:203.484001px;}
.x10{left:227.050908px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x8{left:269.316000px;}
.x11{left:277.744500px;}
.x12{left:280.479000px;}
.xc{left:281.479500px;}
.x3{left:454.959000px;}
.xa{left:757.092000px;}
.xe{left:773.714508px;}
.xb{left:835.851000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2a{letter-spacing:-0.167588pt;}
.ls27{letter-spacing:-0.151876pt;}
.ls28{letter-spacing:-0.130928pt;}
.ls29{letter-spacing:-0.109980pt;}
.ls24{letter-spacing:-0.104742pt;}
.ls25{letter-spacing:-0.078557pt;}
.ls21{letter-spacing:-0.073320pt;}
.ls2c{letter-spacing:-0.068083pt;}
.ls2d{letter-spacing:-0.057608pt;}
.ls26{letter-spacing:-0.047134pt;}
.ls1f{letter-spacing:-0.041897pt;}
.ls1c{letter-spacing:-0.033367pt;}
.ls1e{letter-spacing:-0.026186pt;}
.ls23{letter-spacing:-0.020948pt;}
.ls20{letter-spacing:-0.015711pt;}
.ls1d{letter-spacing:-0.012513pt;}
.ls22{letter-spacing:-0.010474pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004704pt;}
.lsf{letter-spacing:0.005237pt;}
.ls17{letter-spacing:0.020948pt;}
.ls12{letter-spacing:0.026186pt;}
.ls11{letter-spacing:0.031423pt;}
.ls15{letter-spacing:0.036660pt;}
.ls18{letter-spacing:0.041897pt;}
.ls19{letter-spacing:0.047134pt;}
.ls10{letter-spacing:0.052371pt;}
.ls14{letter-spacing:0.057608pt;}
.ls2b{letter-spacing:0.073320pt;}
.ls13{letter-spacing:0.078557pt;}
.ls16{letter-spacing:0.099505pt;}
.lsd{letter-spacing:0.145981pt;}
.lsc{letter-spacing:0.158493pt;}
.ls5{letter-spacing:10.626533pt;}
.ls9{letter-spacing:12.114522pt;}
.lsa{letter-spacing:12.167655pt;}
.lsb{letter-spacing:12.805262pt;}
.ls7{letter-spacing:13.017797pt;}
.ls4{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.389734pt;}
.ls6{letter-spacing:13.442868pt;}
.ls2e{letter-spacing:13.549136pt;}
.ls1b{letter-spacing:14.877483pt;}
.ls1a{letter-spacing:15.833892pt;}
.ls1{letter-spacing:15.937067pt;}
.ls2f{letter-spacing:19.128192pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.wsc{word-spacing:-20.194365pt;}
.ws66{word-spacing:-13.283467pt;}
.wse0{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws80{word-spacing:-10.585693pt;}
.ws81{word-spacing:-10.427200pt;}
.wsd{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws76{word-spacing:-2.975497pt;}
.wsab{word-spacing:-2.770436pt;}
.ws7d{word-spacing:-2.762961pt;}
.wsaa{word-spacing:-2.634271pt;}
.wscd{word-spacing:-2.603559pt;}
.wsd2{word-spacing:-2.550426pt;}
.wsb7{word-spacing:-2.477158pt;}
.ws1e{word-spacing:-2.104115pt;}
.ws43{word-spacing:-1.912819pt;}
.ws9f{word-spacing:-1.901075pt;}
.ws42{word-spacing:-1.859685pt;}
.ws99{word-spacing:-1.838229pt;}
.ws9a{word-spacing:-1.791095pt;}
.ws98{word-spacing:-1.785858pt;}
.ws52{word-spacing:-1.753418pt;}
.wsb3{word-spacing:-1.733487pt;}
.ws55{word-spacing:-1.700284pt;}
.ws75{word-spacing:-1.647150pt;}
.ws6c{word-spacing:-1.594016pt;}
.wsd8{word-spacing:-1.578086pt;}
.ws4f{word-spacing:-1.540882pt;}
.wsf5{word-spacing:-1.482445pt;}
.ws9e{word-spacing:-1.466394pt;}
.ws41{word-spacing:-1.434614pt;}
.ws2c{word-spacing:-1.381481pt;}
.ws1d{word-spacing:-1.309225pt;}
.wsaf{word-spacing:-1.209775pt;}
.ws40{word-spacing:-1.168945pt;}
.wsfc{word-spacing:-1.052058pt;}
.wsc9{word-spacing:-1.009543pt;}
.wsda{word-spacing:-0.956416pt;}
.wsc7{word-spacing:-0.956410pt;}
.wsef{word-spacing:-0.908595pt;}
.ws57{word-spacing:-0.903276pt;}
.wsdb{word-spacing:-0.860774pt;}
.ws79{word-spacing:-0.850142pt;}
.ws65{word-spacing:-0.797008pt;}
.ws67{word-spacing:-0.743874pt;}
.wsa6{word-spacing:-0.733197pt;}
.wsa5{word-spacing:-0.712248pt;}
.ws28{word-spacing:-0.690740pt;}
.wsc1{word-spacing:-0.531339pt;}
.ws4c{word-spacing:-0.478205pt;}
.ws1c{word-spacing:-0.430387pt;}
.wsed{word-spacing:-0.382566pt;}
.ws23{word-spacing:-0.371937pt;}
.ws90{word-spacing:-0.335176pt;}
.ws3d{word-spacing:-0.318803pt;}
.wsb9{word-spacing:-0.282804pt;}
.ws48{word-spacing:-0.265669pt;}
.ws14{word-spacing:-0.239104pt;}
.ws87{word-spacing:-0.237740pt;}
.ws2f{word-spacing:-0.212535pt;}
.ws8f{word-spacing:-0.193773pt;}
.ws11{word-spacing:-0.191283pt;}
.ws39{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws88{word-spacing:-0.066734pt;}
.ws26{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws86{word-spacing:-0.045880pt;}
.wsff{word-spacing:-0.010982pt;}
.wse5{word-spacing:-0.009190pt;}
.wsfd{word-spacing:-0.009054pt;}
.wsf1{word-spacing:-0.009003pt;}
.wsf3{word-spacing:-0.008909pt;}
.ws102{word-spacing:-0.008226pt;}
.wsfb{word-spacing:-0.005939pt;}
.wse2{word-spacing:-0.004147pt;}
.wsde{word-spacing:-0.002935pt;}
.ws0{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.003199pt;}
.wsb1{word-spacing:0.005237pt;}
.ws8e{word-spacing:0.026186pt;}
.ws3{word-spacing:0.037194pt;}
.wsd7{word-spacing:0.047821pt;}
.ws29{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.078557pt;}
.ws9c{word-spacing:0.089031pt;}
.wsb0{word-spacing:0.094268pt;}
.ws18{word-spacing:0.095642pt;}
.ws9b{word-spacing:0.099505pt;}
.ws2e{word-spacing:0.106268pt;}
.ws13{word-spacing:0.143462pt;}
.ws8b{word-spacing:0.150528pt;}
.ws8a{word-spacing:0.155232pt;}
.ws20{word-spacing:0.159402pt;}
.ws19{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.ws10{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.wsd5{word-spacing:0.286925pt;}
.ws24{word-spacing:0.318803pt;}
.wsd6{word-spacing:0.334746pt;}
.ws97{word-spacing:0.335176pt;}
.ws4e{word-spacing:0.371937pt;}
.ws4d{word-spacing:0.425071pt;}
.ws96{word-spacing:0.466104pt;}
.wsc2{word-spacing:0.478205pt;}
.wse3{word-spacing:0.526029pt;}
.ws54{word-spacing:0.531339pt;}
.wsea{word-spacing:0.573850pt;}
.ws85{word-spacing:0.584473pt;}
.ws59{word-spacing:0.637606pt;}
.ws62{word-spacing:0.690740pt;}
.ws56{word-spacing:0.743874pt;}
.wsc8{word-spacing:0.850142pt;}
.wsb6{word-spacing:0.874599pt;}
.ws5b{word-spacing:0.903276pt;}
.ws5a{word-spacing:0.956410pt;}
.wsac{word-spacing:0.979341pt;}
.wsa9{word-spacing:1.000290pt;}
.ws69{word-spacing:1.009543pt;}
.wsb4{word-spacing:1.016001pt;}
.ws36{word-spacing:1.062677pt;}
.wsb5{word-spacing:1.078847pt;}
.wse6{word-spacing:1.147699pt;}
.ws49{word-spacing:1.168945pt;}
.wse8{word-spacing:1.195520pt;}
.wsc5{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.wsf8{word-spacing:1.243341pt;}
.ws7a{word-spacing:1.275213pt;}
.wsa4{word-spacing:1.293569pt;}
.wsa8{word-spacing:1.309280pt;}
.ws70{word-spacing:1.328347pt;}
.wsa7{word-spacing:1.356414pt;}
.ws53{word-spacing:1.381481pt;}
.ws58{word-spacing:1.434614pt;}
.ws6d{word-spacing:1.487748pt;}
.wsca{word-spacing:1.540882pt;}
.ws2d{word-spacing:1.594016pt;}
.ws61{word-spacing:1.647150pt;}
.ws33{word-spacing:1.753418pt;}
.ws3a{word-spacing:1.806551pt;}
.ws7f{word-spacing:1.859685pt;}
.ws4a{word-spacing:1.912819pt;}
.ws15{word-spacing:1.960653pt;}
.ws35{word-spacing:1.965953pt;}
.ws63{word-spacing:2.019087pt;}
.wsf6{word-spacing:2.056294pt;}
.ws64{word-spacing:2.072221pt;}
.ws3e{word-spacing:2.125355pt;}
.wsf4{word-spacing:2.151936pt;}
.ws74{word-spacing:2.178489pt;}
.ws12{word-spacing:2.199757pt;}
.wsce{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws6e{word-spacing:2.284756pt;}
.ws2{word-spacing:2.293041pt;}
.ws44{word-spacing:2.337890pt;}
.ws71{word-spacing:2.391024pt;}
.wsdc{word-spacing:2.438861pt;}
.wsb2{word-spacing:2.545240pt;}
.wse{word-spacing:2.550432pt;}
.wsd9{word-spacing:2.560767pt;}
.ws30{word-spacing:2.603559pt;}
.ws34{word-spacing:2.656693pt;}
.wseb{word-spacing:2.725786pt;}
.ws7b{word-spacing:2.762961pt;}
.ws68{word-spacing:2.816095pt;}
.wsee{word-spacing:2.860902pt;}
.wse7{word-spacing:2.861073pt;}
.wsf2{word-spacing:2.865673pt;}
.wse4{word-spacing:2.866159pt;}
.ws6a{word-spacing:2.869229pt;}
.wsdf{word-spacing:2.869248pt;}
.wse9{word-spacing:2.917069pt;}
.ws77{word-spacing:2.922363pt;}
.ws72{word-spacing:2.975497pt;}
.ws78{word-spacing:3.028630pt;}
.wsf0{word-spacing:3.060531pt;}
.ws5c{word-spacing:3.081764pt;}
.ws103{word-spacing:3.108352pt;}
.ws47{word-spacing:3.134898pt;}
.wsf{word-spacing:3.187827pt;}
.ws1f{word-spacing:3.188032pt;}
.wsfa{word-spacing:3.203994pt;}
.ws5e{word-spacing:3.241166pt;}
.wsbe{word-spacing:3.294300pt;}
.ws5f{word-spacing:3.347434pt;}
.ws45{word-spacing:3.400567pt;}
.ws73{word-spacing:3.453701pt;}
.ws101{word-spacing:3.490918pt;}
.ws50{word-spacing:3.506835pt;}
.wsbd{word-spacing:3.559969pt;}
.wsfe{word-spacing:3.586560pt;}
.ws51{word-spacing:3.613103pt;}
.wse1{word-spacing:3.634381pt;}
.wsba{word-spacing:3.772505pt;}
.wscc{word-spacing:3.825638pt;}
.wsdd{word-spacing:3.921306pt;}
.wsc0{word-spacing:3.931906pt;}
.wscf{word-spacing:4.038174pt;}
.wsb8{word-spacing:4.105902pt;}
.ws82{word-spacing:4.144442pt;}
.ws1b{word-spacing:4.160410pt;}
.wsa1{word-spacing:4.231593pt;}
.wsa0{word-spacing:4.257779pt;}
.ws60{word-spacing:4.303843pt;}
.wsbc{word-spacing:4.410111pt;}
.ws92{word-spacing:4.435841pt;}
.ws91{word-spacing:4.462026pt;}
.wsf9{word-spacing:4.542976pt;}
.ws7e{word-spacing:4.728914pt;}
.ws3f{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.ws7c{word-spacing:4.941450pt;}
.wsd4{word-spacing:4.994583pt;}
.wsad{word-spacing:5.090481pt;}
.ws5d{word-spacing:5.100851pt;}
.wsc6{word-spacing:5.260253pt;}
.wsae{word-spacing:5.263306pt;}
.ws21{word-spacing:5.313387pt;}
.ws83{word-spacing:5.366521pt;}
.ws6b{word-spacing:5.419654pt;}
.ws46{word-spacing:5.472788pt;}
.ws32{word-spacing:5.579056pt;}
.wsd1{word-spacing:5.632190pt;}
.ws100{word-spacing:5.642854pt;}
.ws6f{word-spacing:5.685324pt;}
.wscb{word-spacing:5.791591pt;}
.wsd3{word-spacing:5.844725pt;}
.ws3b{word-spacing:5.897859pt;}
.ws94{word-spacing:5.986028pt;}
.wsd0{word-spacing:6.004127pt;}
.ws93{word-spacing:6.054111pt;}
.wsc4{word-spacing:6.057261pt;}
.ws4b{word-spacing:6.163529pt;}
.wsbf{word-spacing:6.269796pt;}
.wsec{word-spacing:6.407987pt;}
.ws84{word-spacing:6.429198pt;}
.ws38{word-spacing:6.482332pt;}
.ws3c{word-spacing:6.535466pt;}
.ws37{word-spacing:6.641733pt;}
.wsc3{word-spacing:6.748001pt;}
.wsbb{word-spacing:6.854269pt;}
.ws31{word-spacing:6.960537pt;}
.wsf7{word-spacing:7.173120pt;}
.ws95{word-spacing:8.206567pt;}
.ws6{word-spacing:8.740496pt;}
.ws89{word-spacing:10.122726pt;}
.ws8c{word-spacing:10.421869pt;}
.ws8d{word-spacing:10.453292pt;}
.ws7{word-spacing:10.525789pt;}
.ws4{word-spacing:13.761632pt;}
.wsa2{word-spacing:13.894079pt;}
.wsa3{word-spacing:13.925502pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
._4{margin-left:-10.616218pt;}
._c{margin-left:-6.025421pt;}
._7{margin-left:-4.675792pt;}
._1{margin-left:-3.421811pt;}
._8{margin-left:-2.337896pt;}
._3{margin-left:-1.301776pt;}
._20{width:1.063574pt;}
._5{width:2.665908pt;}
._1b{width:3.825638pt;}
._22{width:9.822570pt;}
._0{width:11.530016pt;}
._16{width:13.044366pt;}
._9{width:14.048669pt;}
._a{width:15.159194pt;}
._d{width:16.758462pt;}
._17{width:17.890057pt;}
._15{width:18.889086pt;}
._e{width:20.031460pt;}
._1c{width:21.147279pt;}
._2{width:22.502128pt;}
._12{width:23.479892pt;}
._1d{width:24.866650pt;}
._18{width:26.301264pt;}
._b{width:27.640390pt;}
._23{width:28.612583pt;}
._1f{width:29.808099pt;}
._1a{width:31.348981pt;}
._1e{width:32.491356pt;}
._11{width:33.867567pt;}
._14{width:34.930244pt;}
._13{width:36.343565pt;}
._6{width:48.340835pt;}
._f{width:784.139368pt;}
._21{width:1833.339500pt;}
._24{width:2233.735532pt;}
._10{width:2253.984563pt;}
._19{width:2254.988866pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsd{font-size:41.708800pt;}
.fsb{font-size:42.507200pt;}
.fsf{font-size:47.040000pt;}
.fsc{font-size:47.820800pt;}
.fse{font-size:52.371200pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.yd9{bottom:-638.967448pt;}
.yf8{bottom:-559.145993pt;}
.yf7{bottom:-542.447436pt;}
.yf6{bottom:-525.670322pt;}
.yf5{bottom:-508.893208pt;}
.yf4{bottom:-492.194651pt;}
.yf3{bottom:-475.417537pt;}
.yf2{bottom:-454.797687pt;}
.yf1{bottom:-422.340635pt;}
.yf0{bottom:-405.563521pt;}
.yef{bottom:-388.863655pt;}
.yee{bottom:-372.086541pt;}
.yed{bottom:-355.309427pt;}
.yec{bottom:-338.610870pt;}
.yeb{bottom:-321.833756pt;}
.yea{bottom:-305.135199pt;}
.ye9{bottom:-288.358085pt;}
.ye8{bottom:-271.580971pt;}
.ye7{bottom:-254.881105pt;}
.ye6{bottom:-238.103991pt;}
.ye5{bottom:-217.484140pt;}
.ye4{bottom:-185.027089pt;}
.ye3{bottom:-168.249975pt;}
.ye2{bottom:-151.551418pt;}
.ye1{bottom:-134.774304pt;}
.ye0{bottom:-118.075747pt;}
.ydf{bottom:-101.298633pt;}
.yde{bottom:-84.521519pt;}
.ydd{bottom:-67.822962pt;}
.ydc{bottom:-51.045848pt;}
.ydb{bottom:-18.980248pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:0.619752pt;}
.y3b{bottom:8.207950pt;}
.y3a{bottom:23.914454pt;}
.y68{bottom:28.346667pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.y13c{bottom:92.108000pt;}
.y118{bottom:92.853333pt;}
.y38{bottom:93.018667pt;}
.y18a{bottom:95.282667pt;}
.y1c9{bottom:95.788000pt;}
.y67{bottom:100.926667pt;}
.yd2{bottom:105.112000pt;}
.yba{bottom:105.909333pt;}
.y13b{bottom:108.844000pt;}
.y37{bottom:108.920000pt;}
.y117{bottom:109.590667pt;}
.y189{bottom:112.020000pt;}
.y66{bottom:117.664000pt;}
.y1c8{bottom:119.378667pt;}
.yd1{bottom:121.849333pt;}
.y9c{bottom:122.248000pt;}
.y1ff{bottom:122.486667pt;}
.yb9{bottom:122.646667pt;}
.y23{bottom:123.790666pt;}
.y36{bottom:124.820000pt;}
.y13a{bottom:125.581333pt;}
.y116{bottom:126.328000pt;}
.y188{bottom:128.757333pt;}
.y65{bottom:134.401333pt;}
.y1c7{bottom:135.000000pt;}
.y1fe{bottom:137.829333pt;}
.y9b{bottom:138.985333pt;}
.yb8{bottom:139.384000pt;}
.y35{bottom:140.720000pt;}
.y1b6{bottom:142.318667pt;}
.yd0{bottom:142.572000pt;}
.y187{bottom:145.494667pt;}
.y167{bottom:148.268000pt;}
.y139{bottom:148.348000pt;}
.y115{bottom:149.706667pt;}
.y64{bottom:151.138667pt;}
.y1fd{bottom:153.172000pt;}
.y9a{bottom:155.722667pt;}
.yb7{bottom:156.121333pt;}
.y34{bottom:156.621333pt;}
.y1c6{bottom:158.592000pt;}
.y1b5{bottom:159.056000pt;}
.y186{bottom:162.232000pt;}
.y166{bottom:165.005333pt;}
.y138{bottom:165.084000pt;}
.y114{bottom:166.444000pt;}
.y63{bottom:167.876000pt;}
.y1fc{bottom:168.514667pt;}
.y99{bottom:172.460000pt;}
.y33{bottom:172.521333pt;}
.yb6{bottom:172.858667pt;}
.y1c5{bottom:174.213333pt;}
.y1a{bottom:175.052000pt;}
.y1b4{bottom:175.793333pt;}
.y165{bottom:181.742667pt;}
.y137{bottom:181.821333pt;}
.y113{bottom:183.181333pt;}
.y1fb{bottom:183.857333pt;}
.y62{bottom:184.613333pt;}
.y185{bottom:185.610667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y32{bottom:188.421333pt;}
.y98{bottom:189.197333pt;}
.yb5{bottom:189.596000pt;}
.y1b3{bottom:192.530667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1c4{bottom:197.805333pt;}
.y1fa{bottom:199.200000pt;}
.y112{bottom:199.918667pt;}
.y61{bottom:201.350667pt;}
.y184{bottom:202.348000pt;}
.y31{bottom:204.322667pt;}
.y164{bottom:204.428000pt;}
.y136{bottom:204.588000pt;}
.y97{bottom:205.934667pt;}
.yb4{bottom:206.333333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1b2{bottom:209.268000pt;}
.y1c3{bottom:213.426667pt;}
.y1f9{bottom:214.542667pt;}
.y60{bottom:218.088000pt;}
.y183{bottom:219.085333pt;}
.y163{bottom:221.165333pt;}
.y135{bottom:221.325333pt;}
.y96{bottom:222.672000pt;}
.yb3{bottom:223.070667pt;}
.y111{bottom:223.297333pt;}
.y1b1{bottom:226.005333pt;}
.y1c2{bottom:229.048000pt;}
.y1f8{bottom:229.885333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y5f{bottom:234.825333pt;}
.y162{bottom:237.902667pt;}
.y134{bottom:238.061333pt;}
.y95{bottom:239.409333pt;}
.yb2{bottom:239.808000pt;}
.y110{bottom:240.034667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y182{bottom:242.464000pt;}
.y1c1{bottom:244.669333pt;}
.y1f7{bottom:245.228000pt;}
.y1b0{bottom:246.728000pt;}
.y5e{bottom:251.562667pt;}
.y22c{bottom:252.892000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y161{bottom:254.640000pt;}
.y133{bottom:254.798667pt;}
.y94{bottom:256.146667pt;}
.yb1{bottom:256.545333pt;}
.y10f{bottom:256.772000pt;}
.y181{bottom:259.201333pt;}
.y1c0{bottom:260.290667pt;}
.y1f6{bottom:260.569333pt;}
.y30{bottom:265.668000pt;}
.y22b{bottom:268.234667pt;}
.y5d{bottom:268.300000pt;}
.y160{bottom:271.377333pt;}
.y132{bottom:271.536000pt;}
.y93{bottom:272.884000pt;}
.yb0{bottom:273.282667pt;}
.y10e{bottom:273.509333pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1bf{bottom:275.912000pt;}
.y180{bottom:275.938667pt;}
.y1af{bottom:276.616000pt;}
.y2f{bottom:281.568000pt;}
.y22a{bottom:283.577333pt;}
.y5c{bottom:285.037333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y131{bottom:288.273333pt;}
.y92{bottom:289.621333pt;}
.yaf{bottom:290.020000pt;}
.y1f5{bottom:291.254667pt;}
.y1be{bottom:291.533333pt;}
.y15f{bottom:292.100000pt;}
.y17f{bottom:292.676000pt;}
.y1ae{bottom:293.353333pt;}
.y10d{bottom:296.888000pt;}
.y2e{bottom:297.469333pt;}
.y5b{bottom:301.774667pt;}
.y130{bottom:305.010667pt;}
.y91{bottom:306.358667pt;}
.y1f4{bottom:306.597333pt;}
.yae{bottom:306.757333pt;}
.y17e{bottom:309.413333pt;}
.y11{bottom:309.452000pt;}
.y1ad{bottom:310.090667pt;}
.y2d{bottom:313.369333pt;}
.y10c{bottom:313.625333pt;}
.y229{bottom:318.313333pt;}
.y5a{bottom:318.512000pt;}
.y12f{bottom:321.748000pt;}
.y1f3{bottom:321.940000pt;}
.y15e{bottom:321.988000pt;}
.y90{bottom:323.096000pt;}
.yad{bottom:323.494667pt;}
.y17d{bottom:326.150667pt;}
.y1ac{bottom:326.828000pt;}
.y10b{bottom:330.362667pt;}
.y228{bottom:333.656000pt;}
.y2c{bottom:337.240000pt;}
.y1f2{bottom:337.282667pt;}
.y15d{bottom:338.725333pt;}
.y59{bottom:339.233333pt;}
.y8f{bottom:339.833333pt;}
.yac{bottom:340.232000pt;}
.y12e{bottom:342.470667pt;}
.y17c{bottom:342.888000pt;}
.y1ab{bottom:343.565333pt;}
.y10{bottom:343.809333pt;}
.y10a{bottom:347.100000pt;}
.y227{bottom:348.998667pt;}
.yd8{bottom:350.754270pt;}
.y1f1{bottom:352.625333pt;}
.y2b{bottom:353.140000pt;}
.y15c{bottom:355.462667pt;}
.y8e{bottom:356.570667pt;}
.yab{bottom:356.968000pt;}
.yd7{bottom:359.142952pt;}
.y1aa{bottom:360.302667pt;}
.yf{bottom:362.706666pt;}
.y17b{bottom:363.610667pt;}
.y109{bottom:363.837333pt;}
.y226{bottom:364.341333pt;}
.y1f0{bottom:367.968000pt;}
.y2a{bottom:369.041333pt;}
.y15b{bottom:372.198667pt;}
.y12d{bottom:372.358667pt;}
.y8d{bottom:373.308000pt;}
.yaa{bottom:373.705333pt;}
.y225{bottom:379.684000pt;}
.y108{bottom:380.574667pt;}
.y1a9{bottom:382.988000pt;}
.y1ef{bottom:383.309333pt;}
.y29{bottom:384.941333pt;}
.y15a{bottom:388.936000pt;}
.y12c{bottom:389.096000pt;}
.y8c{bottom:390.045333pt;}
.ya9{bottom:390.442667pt;}
.y17a{bottom:393.498667pt;}
.y224{bottom:395.025333pt;}
.y1ee{bottom:398.652000pt;}
.y1a8{bottom:399.725333pt;}
.y28{bottom:400.841333pt;}
.y107{bottom:401.297333pt;}
.y12b{bottom:405.833333pt;}
.y58{bottom:406.034667pt;}
.y8b{bottom:406.782667pt;}
.ya8{bottom:407.180000pt;}
.y179{bottom:410.236000pt;}
.y223{bottom:410.368000pt;}
.y159{bottom:411.622667pt;}
.y1ed{bottom:413.994667pt;}
.y1a7{bottom:416.462667pt;}
.y27{bottom:416.742667pt;}
.y12a{bottom:422.570667pt;}
.y57{bottom:423.329333pt;}
.ycf{bottom:423.518667pt;}
.ya7{bottom:423.917333pt;}
.y222{bottom:425.710667pt;}
.y178{bottom:426.973333pt;}
.y8a{bottom:427.504000pt;}
.y158{bottom:428.360000pt;}
.y1ec{bottom:429.337333pt;}
.ye{bottom:430.990669pt;}
.y106{bottom:431.185333pt;}
.y26{bottom:432.642667pt;}
.y1a6{bottom:439.148000pt;}
.y129{bottom:439.308000pt;}
.yce{bottom:440.256000pt;}
.ya6{bottom:440.654667pt;}
.y221{bottom:441.053333pt;}
.y177{bottom:443.710667pt;}
.yd5{bottom:444.241333pt;}
.y1eb{bottom:444.680000pt;}
.y157{bottom:445.097333pt;}
.yd{bottom:446.990669pt;}
.y105{bottom:447.922667pt;}
.y25{bottom:448.542667pt;}
.y1a5{bottom:455.885333pt;}
.y128{bottom:456.045333pt;}
.y220{bottom:456.396000pt;}
.y56{bottom:456.564000pt;}
.ycd{bottom:456.993333pt;}
.y89{bottom:457.392000pt;}
.y1ea{bottom:460.022667pt;}
.y176{bottom:460.448000pt;}
.ya5{bottom:461.377333pt;}
.yc{bottom:462.990669pt;}
.y24{bottom:464.444000pt;}
.y104{bottom:464.660000pt;}
.y156{bottom:467.782667pt;}
.y21f{bottom:471.738667pt;}
.y1a4{bottom:472.622667pt;}
.y127{bottom:472.782667pt;}
.y1bd{bottom:473.730667pt;}
.y55{bottom:473.860000pt;}
.y88{bottom:474.129333pt;}
.y1e9{bottom:475.365333pt;}
.y175{bottom:477.185333pt;}
.ycc{bottom:477.716000pt;}
.yb{bottom:478.990666pt;}
.y103{bottom:481.397333pt;}
.y155{bottom:484.520000pt;}
.y21e{bottom:487.081333pt;}
.y126{bottom:489.520000pt;}
.y1bc{bottom:490.468000pt;}
.y1e8{bottom:490.708000pt;}
.y87{bottom:490.866667pt;}
.y54{bottom:491.154667pt;}
.ya4{bottom:491.265333pt;}
.y174{bottom:493.922667pt;}
.ya{bottom:494.990666pt;}
.y1a3{bottom:495.309333pt;}
.y102{bottom:498.134667pt;}
.y154{bottom:501.257333pt;}
.y21d{bottom:502.424000pt;}
.y1e7{bottom:506.050667pt;}
.y125{bottom:506.257333pt;}
.y1bb{bottom:507.205333pt;}
.y86{bottom:507.604000pt;}
.ya3{bottom:508.002667pt;}
.y53{bottom:508.450667pt;}
.y1a2{bottom:512.046667pt;}
.y173{bottom:514.644000pt;}
.y101{bottom:514.872000pt;}
.y21c{bottom:517.766667pt;}
.y153{bottom:517.994667pt;}
.y1e6{bottom:521.392000pt;}
.y124{bottom:522.994667pt;}
.y1ba{bottom:523.942667pt;}
.y85{bottom:524.341333pt;}
.ya2{bottom:524.740000pt;}
.y52{bottom:525.745333pt;}
.y1a1{bottom:528.784000pt;}
.y100{bottom:531.609333pt;}
.y21b{bottom:533.108000pt;}
.y1e5{bottom:536.734667pt;}
.y152{bottom:538.717333pt;}
.y123{bottom:539.732000pt;}
.y1b9{bottom:540.680000pt;}
.y84{bottom:541.078667pt;}
.ya1{bottom:541.477333pt;}
.y51{bottom:543.040000pt;}
.y172{bottom:544.532000pt;}
.y1a0{bottom:545.520000pt;}
.yff{bottom:548.346667pt;}
.y21a{bottom:548.450667pt;}
.y1e4{bottom:552.077333pt;}
.y122{bottom:556.469333pt;}
.y1b8{bottom:557.417333pt;}
.y83{bottom:557.816000pt;}
.ya0{bottom:558.214667pt;}
.y50{bottom:560.336000pt;}
.y171{bottom:561.269333pt;}
.ybb{bottom:561.801333pt;}
.y219{bottom:563.793333pt;}
.yfe{bottom:565.084000pt;}
.y19f{bottom:566.242667pt;}
.y1e3{bottom:567.420000pt;}
.y151{bottom:568.605333pt;}
.y9{bottom:573.786667pt;}
.y82{bottom:574.553333pt;}
.y9f{bottom:574.952000pt;}
.y4f{bottom:577.630667pt;}
.y170{bottom:578.006667pt;}
.y1b7{bottom:578.140000pt;}
.y218{bottom:579.136000pt;}
.y121{bottom:579.234667pt;}
.yfd{bottom:581.821333pt;}
.y1e2{bottom:582.762667pt;}
.y150{bottom:585.342667pt;}
.ycb{bottom:591.290667pt;}
.y9e{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y217{bottom:594.478667pt;}
.y16f{bottom:594.744000pt;}
.y4e{bottom:594.925333pt;}
.y81{bottom:595.276000pt;}
.y120{bottom:595.972000pt;}
.y19e{bottom:596.130667pt;}
.y1e1{bottom:598.105333pt;}
.yfc{bottom:598.558667pt;}
.y14f{bottom:602.080000pt;}
.yca{bottom:608.028000pt;}
.y9d{bottom:608.426667pt;}
.y216{bottom:609.821333pt;}
.y16e{bottom:611.481333pt;}
.y4d{bottom:612.221333pt;}
.y11f{bottom:612.709333pt;}
.y19d{bottom:612.868000pt;}
.y1e0{bottom:613.448000pt;}
.yfb{bottom:615.296000pt;}
.y14e{bottom:618.817333pt;}
.yc9{bottom:624.765333pt;}
.y80{bottom:625.164000pt;}
.y16d{bottom:628.218667pt;}
.y1df{bottom:628.790667pt;}
.y11e{bottom:629.446667pt;}
.y4c{bottom:629.516000pt;}
.y19c{bottom:629.605333pt;}
.y14d{bottom:635.553333pt;}
.yfa{bottom:636.017333pt;}
.y215{bottom:640.506667pt;}
.yc8{bottom:641.502667pt;}
.y7f{bottom:641.901333pt;}
.y1de{bottom:644.132000pt;}
.y16c{bottom:644.956000pt;}
.y7{bottom:645.598667pt;}
.y19b{bottom:646.342667pt;}
.y4b{bottom:646.812000pt;}
.y11d{bottom:652.212000pt;}
.y14c{bottom:652.290667pt;}
.y214{bottom:655.848000pt;}
.yc7{bottom:658.240000pt;}
.y7e{bottom:658.638667pt;}
.y1dd{bottom:659.474667pt;}
.yf9{bottom:663.064000pt;}
.y19a{bottom:663.080000pt;}
.y4a{bottom:664.106667pt;}
.y16b{bottom:668.334667pt;}
.y11c{bottom:668.949333pt;}
.y4{bottom:668.977329pt;}
.y14b{bottom:669.028000pt;}
.y213{bottom:671.190667pt;}
.y1dc{bottom:674.817333pt;}
.yc6{bottom:674.977333pt;}
.y7d{bottom:675.376000pt;}
.y199{bottom:679.817333pt;}
.y49{bottom:681.401333pt;}
.y16a{bottom:685.072000pt;}
.yd6{bottom:685.658667pt;}
.y11b{bottom:685.686667pt;}
.y14a{bottom:685.765333pt;}
.y212{bottom:686.533333pt;}
.y1db{bottom:690.160000pt;}
.yc5{bottom:691.714667pt;}
.y7c{bottom:692.113333pt;}
.y198{bottom:696.554667pt;}
.y48{bottom:698.697333pt;}
.y169{bottom:701.809333pt;}
.y211{bottom:701.876000pt;}
.y11a{bottom:702.424000pt;}
.y1da{bottom:705.502667pt;}
.y149{bottom:706.488000pt;}
.yc4{bottom:708.452000pt;}
.y7b{bottom:708.850667pt;}
.y197{bottom:713.292000pt;}
.y47{bottom:715.992000pt;}
.y210{bottom:717.218667pt;}
.y1d9{bottom:720.845333pt;}
.yc3{bottom:725.189333pt;}
.y7a{bottom:725.588000pt;}
.y196{bottom:730.029333pt;}
.y20f{bottom:732.561333pt;}
.y46{bottom:733.286667pt;}
.y1d8{bottom:736.188000pt;}
.y148{bottom:736.376000pt;}
.yc2{bottom:741.926667pt;}
.y79{bottom:742.324000pt;}
.y195{bottom:746.766667pt;}
.y20e{bottom:747.904000pt;}
.y45{bottom:750.582667pt;}
.y1d7{bottom:751.530667pt;}
.y147{bottom:753.113333pt;}
.yc1{bottom:758.664000pt;}
.y78{bottom:759.061333pt;}
.y20d{bottom:763.246667pt;}
.y194{bottom:763.504000pt;}
.y1d6{bottom:766.873333pt;}
.y146{bottom:769.850667pt;}
.yc0{bottom:775.401333pt;}
.y77{bottom:775.798667pt;}
.y20c{bottom:778.589333pt;}
.y3{bottom:781.661334pt;}
.y1d5{bottom:782.214667pt;}
.y44{bottom:784.880000pt;}
.y193{bottom:786.189333pt;}
.y145{bottom:786.588000pt;}
.ybf{bottom:792.138667pt;}
.y76{bottom:792.536000pt;}
.y20b{bottom:793.930667pt;}
.y168{bottom:796.122667pt;}
.y1d4{bottom:797.557333pt;}
.y192{bottom:802.926667pt;}
.y43{bottom:803.084000pt;}
.y144{bottom:803.325333pt;}
.ybe{bottom:808.874667pt;}
.y75{bottom:809.273333pt;}
.y119{bottom:812.860000pt;}
.y1d3{bottom:812.900000pt;}
.y42{bottom:817.430667pt;}
.y191{bottom:819.664000pt;}
.y143{bottom:820.062667pt;}
.y20a{bottom:824.616000pt;}
.ybd{bottom:825.612000pt;}
.y74{bottom:826.010667pt;}
.y41{bottom:827.920000pt;}
.y1d2{bottom:828.242667pt;}
.y190{bottom:836.401333pt;}
.y142{bottom:836.800000pt;}
.y209{bottom:839.958667pt;}
.y2{bottom:840.112001pt;}
.yd4{bottom:842.349333pt;}
.y73{bottom:842.748000pt;}
.y1d1{bottom:843.585333pt;}
.y40{bottom:846.122667pt;}
.ybc{bottom:846.334667pt;}
.y141{bottom:853.537333pt;}
.y208{bottom:855.301333pt;}
.y1d0{bottom:858.928000pt;}
.y18f{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y72{bottom:859.485333pt;}
.yd3{bottom:863.072000pt;}
.y140{bottom:870.274667pt;}
.y207{bottom:870.644000pt;}
.y1cf{bottom:874.270667pt;}
.y18e{bottom:875.824000pt;}
.y71{bottom:876.222667pt;}
.y3f{bottom:885.836000pt;}
.y206{bottom:885.986667pt;}
.y13f{bottom:887.012000pt;}
.y1ce{bottom:889.613333pt;}
.y18d{bottom:892.561333pt;}
.y70{bottom:892.960000pt;}
.y205{bottom:901.329333pt;}
.y13e{bottom:903.749333pt;}
.y1cd{bottom:904.956000pt;}
.y18c{bottom:909.298667pt;}
.y6f{bottom:909.697333pt;}
.y204{bottom:916.670667pt;}
.y13d{bottom:920.486667pt;}
.y3e{bottom:921.320000pt;}
.y1cc{bottom:924.282667pt;}
.y6e{bottom:926.434667pt;}
.y18b{bottom:930.021333pt;}
.y203{bottom:932.013333pt;}
.y6d{bottom:943.172000pt;}
.y3d{bottom:946.425333pt;}
.y202{bottom:947.356000pt;}
.y1cb{bottom:954.170667pt;}
.y6c{bottom:959.909333pt;}
.y201{bottom:962.698667pt;}
.y3c{bottom:971.530667pt;}
.y6b{bottom:976.646667pt;}
.y1ca{bottom:977.762667pt;}
.y200{bottom:978.041333pt;}
.y6a{bottom:993.384000pt;}
.y39{bottom:1010.186667pt;}
.y69{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h18{height:30.324416pt;}
.h17{height:30.711362pt;}
.h11{height:30.945242pt;}
.h15{height:31.200285pt;}
.h1a{height:34.636875pt;}
.h12{height:34.813542pt;}
.h1d{height:35.100467pt;}
.h1c{height:37.999806pt;}
.h19{height:38.076522pt;}
.h13{height:38.256384pt;}
.h1b{height:38.562387pt;}
.h14{height:38.681455pt;}
.hd{height:39.000258pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.hf{height:48.360277pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h16{height:321.011413pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w5{width:691.058629pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.706229pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x13{left:75.842667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xf{left:174.069429pt;}
.x4{left:180.874667pt;}
.x10{left:201.823029pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x8{left:239.392000pt;}
.x11{left:246.884000pt;}
.x12{left:249.314667pt;}
.xc{left:250.204000pt;}
.x3{left:404.408000pt;}
.xa{left:672.970667pt;}
.xe{left:687.746229pt;}
.xb{left:742.978667pt;}
}




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