
    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_b36a1a6e47d1751d65c3e1cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_6b906cea736562cd466350fa.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_40ba729e37994a82146cd9fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_698fcefa015e4a1244731b85.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_a04f342e0a75748c54d3ae68.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14{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);}
.m22{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);}
.m11{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);}
.m21{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);}
.m27{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);}
.m16{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);}
.md{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);}
.m2{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);}
.m18{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);}
.m24{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);}
.m13{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);}
.m3{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);}
.m10{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);}
.m5{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);}
.m17{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);}
.m23{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);}
.mc{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);}
.m1f{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);}
.m1d{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);}
.m15{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);}
.m26{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);}
.mf{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m8{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);}
.m19{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);}
.m12{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);}
.m9{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);}
.m29{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);}
.mb{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);}
.me{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);}
.m1a{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);}
.m28{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);}
.ma{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);}
.m25{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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;}
.v7{vertical-align:2.688000px;}
.v6{vertical-align:11.994000px;}
.v4{vertical-align:13.332000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000435px;}
.ls2d{letter-spacing:0.000676px;}
.ls2f{letter-spacing:0.000800px;}
.ls21{letter-spacing:0.001029px;}
.ls30{letter-spacing:0.001036px;}
.ls20{letter-spacing:0.001077px;}
.lsb{letter-spacing:0.001220px;}
.ls18{letter-spacing:0.001773px;}
.ls2a{letter-spacing:0.002220px;}
.ls29{letter-spacing:0.002460px;}
.lsd{letter-spacing:0.003226px;}
.ls2b{letter-spacing:0.003284px;}
.ls33{letter-spacing:0.003437px;}
.ls32{letter-spacing:0.003668px;}
.ls1c{letter-spacing:0.008639px;}
.ls17{letter-spacing:0.009517px;}
.ls1f{letter-spacing:0.015764px;}
.ls2e{letter-spacing:10.891791px;}
.ls9{letter-spacing:11.954850px;}
.ls11{letter-spacing:12.971305px;}
.ls34{letter-spacing:13.454400px;}
.ls24{letter-spacing:13.504929px;}
.ls2c{letter-spacing:13.759618px;}
.ls28{letter-spacing:13.808164px;}
.ls6{letter-spacing:14.166817px;}
.ls13{letter-spacing:14.226593px;}
.ls19{letter-spacing:14.645022px;}
.ls1a{letter-spacing:14.661758px;}
.ls1e{letter-spacing:14.731874px;}
.ls4{letter-spacing:14.764573px;}
.ls16{letter-spacing:14.824349px;}
.ls10{letter-spacing:14.943900px;}
.ls26{letter-spacing:15.003676px;}
.ls12{letter-spacing:15.063451px;}
.lsa{letter-spacing:15.123227px;}
.ls1b{letter-spacing:15.183002px;}
.ls8{letter-spacing:15.242778px;}
.ls3{letter-spacing:15.302554px;}
.ls1d{letter-spacing:16.079636px;}
.ls5{letter-spacing:16.139412px;}
.lse{letter-spacing:16.737168px;}
.ls31{letter-spacing:17.442331px;}
.ls7{letter-spacing:17.693578px;}
.lsf{letter-spacing:17.813129px;}
.ls22{letter-spacing:18.709763px;}
.ls15{letter-spacing:18.948865px;}
.ls27{letter-spacing:19.905275px;}
.ls14{letter-spacing:21.220338px;}
.ls25{letter-spacing:22.116972px;}
.ls23{letter-spacing:26.062162px;}
.ls1{letter-spacing:62.761200px;}
.ls2{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;}
}
.wse{word-spacing:-22.718660px;}
.ws27{word-spacing:-14.943900px;}
.wsae{word-spacing:-13.449600px;}
.ws2f{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.wsd{word-spacing:-10.460700px;}
.ws95{word-spacing:-3.526760px;}
.ws3d{word-spacing:-3.108331px;}
.wsa4{word-spacing:-3.048556px;}
.ws31{word-spacing:-2.988780px;}
.ws7d{word-spacing:-2.929004px;}
.wsa7{word-spacing:-2.809453px;}
.ws9f{word-spacing:-2.630126px;}
.wse2{word-spacing:-2.582323px;}
.ws79{word-spacing:-2.510575px;}
.wsb0{word-spacing:-2.450800px;}
.ws6b{word-spacing:-2.331248px;}
.wsb2{word-spacing:-2.271473px;}
.ws73{word-spacing:-2.211697px;}
.wsc8{word-spacing:-2.205734px;}
.wsd1{word-spacing:-2.151936px;}
.ws83{word-spacing:-2.151922px;}
.ws59{word-spacing:-2.092146px;}
.wsed{word-spacing:-2.044339px;}
.wsa2{word-spacing:-2.032370px;}
.wse1{word-spacing:-1.990541px;}
.ws39{word-spacing:-1.972595px;}
.wsa6{word-spacing:-1.912819px;}
.ws72{word-spacing:-1.853044px;}
.wsb5{word-spacing:-1.793268px;}
.ws78{word-spacing:-1.733492px;}
.ws3c{word-spacing:-1.613941px;}
.ws5f{word-spacing:-1.554166px;}
.ws5d{word-spacing:-1.494390px;}
.ws2b{word-spacing:-1.434614px;}
.ws2c{word-spacing:-1.374839px;}
.ws76{word-spacing:-1.255288px;}
.ws40{word-spacing:-1.195512px;}
.wsa1{word-spacing:-1.075961px;}
.ws2a{word-spacing:-1.016185px;}
.ws25{word-spacing:-0.956410px;}
.ws87{word-spacing:-0.896634px;}
.ws47{word-spacing:-0.836858px;}
.ws7c{word-spacing:-0.717307px;}
.ws42{word-spacing:-0.657532px;}
.ws66{word-spacing:-0.597756px;}
.ws86{word-spacing:-0.537980px;}
.ws7a{word-spacing:-0.478205px;}
.ws4c{word-spacing:-0.358654px;}
.wscc{word-spacing:-0.322790px;}
.ws41{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.ws26{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws21{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.119551px;}
.wsc6{word-spacing:-0.107597px;}
.ws28{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.wsda{word-spacing:-0.013219px;}
.wsc2{word-spacing:-0.011059px;}
.wsc7{word-spacing:-0.010397px;}
.wsdf{word-spacing:-0.008976px;}
.wsd4{word-spacing:-0.008467px;}
.wsd8{word-spacing:-0.006787px;}
.wse4{word-spacing:-0.006221px;}
.wseb{word-spacing:-0.005155px;}
.wse7{word-spacing:-0.004800px;}
.wsc5{word-spacing:-0.003888px;}
.wsf{word-spacing:-0.003258px;}
.ws0{word-spacing:0.000000px;}
.ws2e{word-spacing:0.003599px;}
.ws13{word-spacing:0.053798px;}
.ws30{word-spacing:0.059776px;}
.ws5{word-spacing:0.083686px;}
.ws15{word-spacing:0.107597px;}
.ws33{word-spacing:0.119551px;}
.ws3{word-spacing:0.125528px;}
.ws1b{word-spacing:0.161395px;}
.ws1f{word-spacing:0.179327px;}
.ws14{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.wse0{word-spacing:0.268992px;}
.ws20{word-spacing:0.298878px;}
.wsbe{word-spacing:0.322790px;}
.ws37{word-spacing:0.358654px;}
.ws62{word-spacing:0.418429px;}
.ws63{word-spacing:0.478205px;}
.ws60{word-spacing:0.537980px;}
.wsd9{word-spacing:0.591782px;}
.ws57{word-spacing:0.597756px;}
.wse6{word-spacing:0.645581px;}
.ws38{word-spacing:0.657532px;}
.ws29{word-spacing:0.717307px;}
.ws5c{word-spacing:0.777083px;}
.wsdb{word-spacing:0.806976px;}
.ws58{word-spacing:0.836858px;}
.ws35{word-spacing:0.896634px;}
.ws68{word-spacing:0.956410px;}
.ws89{word-spacing:1.016185px;}
.ws34{word-spacing:1.075961px;}
.ws94{word-spacing:1.135736px;}
.wsce{word-spacing:1.183565px;}
.ws56{word-spacing:1.195512px;}
.ws9c{word-spacing:1.255288px;}
.wsc1{word-spacing:1.291162px;}
.ws8f{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws4a{word-spacing:1.434614px;}
.ws75{word-spacing:1.494390px;}
.ws77{word-spacing:1.554166px;}
.ws18{word-spacing:1.560154px;}
.ws82{word-spacing:1.613941px;}
.wse5{word-spacing:1.613952px;}
.wsb6{word-spacing:1.673717px;}
.ws2d{word-spacing:1.733492px;}
.ws97{word-spacing:1.793268px;}
.ws36{word-spacing:1.853044px;}
.ws6e{word-spacing:1.912819px;}
.wsde{word-spacing:1.990541px;}
.wsd3{word-spacing:2.044339px;}
.ws51{word-spacing:2.092146px;}
.ws43{word-spacing:2.151922px;}
.ws69{word-spacing:2.211697px;}
.ws46{word-spacing:2.271473px;}
.wsdd{word-spacing:2.313331px;}
.ws49{word-spacing:2.331248px;}
.wsdc{word-spacing:2.367130px;}
.ws54{word-spacing:2.391024px;}
.ws52{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws8b{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws4f{word-spacing:2.570351px;}
.ws4{word-spacing:2.627909px;}
.ws32{word-spacing:2.630126px;}
.ws61{word-spacing:2.689902px;}
.ws6a{word-spacing:2.749678px;}
.ws48{word-spacing:2.809453px;}
.ws5e{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.wsb3{word-spacing:2.929004px;}
.ws96{word-spacing:2.988780px;}
.ws6d{word-spacing:3.048556px;}
.ws6c{word-spacing:3.108331px;}
.ws4e{word-spacing:3.168107px;}
.wsef{word-spacing:3.219302px;}
.ws1d{word-spacing:3.219667px;}
.wsd0{word-spacing:3.220522px;}
.wsee{word-spacing:3.222211px;}
.wsec{word-spacing:3.223968px;}
.wsbd{word-spacing:3.224822px;}
.ws53{word-spacing:3.227882px;}
.wsc0{word-spacing:3.227904px;}
.wscd{word-spacing:3.281702px;}
.ws50{word-spacing:3.287658px;}
.ws12{word-spacing:3.325996px;}
.wsbb{word-spacing:3.335501px;}
.ws3a{word-spacing:3.347434px;}
.ws44{word-spacing:3.407209px;}
.wsbf{word-spacing:3.443098px;}
.ws4d{word-spacing:3.466985px;}
.wsea{word-spacing:3.496896px;}
.wsa8{word-spacing:3.500095px;}
.wsd6{word-spacing:3.550694px;}
.ws1e{word-spacing:3.586536px;}
.wsd5{word-spacing:3.604493px;}
.ws7b{word-spacing:3.646312px;}
.wsd2{word-spacing:3.658291px;}
.ws55{word-spacing:3.706087px;}
.ws6f{word-spacing:3.825638px;}
.ws4b{word-spacing:3.885414px;}
.ws67{word-spacing:3.945190px;}
.wse8{word-spacing:3.981082px;}
.ws85{word-spacing:4.004965px;}
.ws45{word-spacing:4.064741px;}
.ws22{word-spacing:4.124516px;}
.ws99{word-spacing:4.184292px;}
.wscf{word-spacing:4.196275px;}
.wsb4{word-spacing:4.303843px;}
.ws3e{word-spacing:4.363619px;}
.ws5a{word-spacing:4.423394px;}
.ws9b{word-spacing:4.483170px;}
.ws9a{word-spacing:4.602721px;}
.wsaa{word-spacing:4.662497px;}
.wsab{word-spacing:4.722272px;}
.ws84{word-spacing:4.782048px;}
.wsa9{word-spacing:4.841824px;}
.wsc9{word-spacing:4.841856px;}
.wsca{word-spacing:4.895654px;}
.wsba{word-spacing:4.901599px;}
.ws81{word-spacing:4.961375px;}
.ws8d{word-spacing:5.021150px;}
.wse9{word-spacing:5.057050px;}
.ws64{word-spacing:5.080926px;}
.wsc4{word-spacing:5.110848px;}
.ws65{word-spacing:5.140702px;}
.ws17{word-spacing:5.164646px;}
.wsbc{word-spacing:5.218445px;}
.ws8e{word-spacing:5.260253px;}
.ws90{word-spacing:5.320028px;}
.wse3{word-spacing:5.326042px;}
.ws5b{word-spacing:5.379804px;}
.ws88{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.wsb8{word-spacing:5.559131px;}
.ws3b{word-spacing:5.618906px;}
.ws71{word-spacing:5.678682px;}
.ws80{word-spacing:5.738458px;}
.wsb7{word-spacing:5.798233px;}
.wsac{word-spacing:5.917784px;}
.ws74{word-spacing:6.097111px;}
.ws70{word-spacing:6.156887px;}
.wsaf{word-spacing:6.276438px;}
.wsb9{word-spacing:6.395989px;}
.ws93{word-spacing:6.455765px;}
.wsc3{word-spacing:6.455808px;}
.wsa3{word-spacing:6.635092px;}
.ws7e{word-spacing:6.694867px;}
.ws8a{word-spacing:6.754643px;}
.ws9e{word-spacing:6.933970px;}
.ws3f{word-spacing:6.993745px;}
.ws9d{word-spacing:7.053521px;}
.ws91{word-spacing:7.113296px;}
.wsa0{word-spacing:7.173072px;}
.wsa5{word-spacing:7.292623px;}
.ws7f{word-spacing:7.471950px;}
.ws8c{word-spacing:7.591501px;}
.wsb1{word-spacing:7.950155px;}
.ws92{word-spacing:8.249033px;}
.ws8{word-spacing:9.833058px;}
.wsd7{word-spacing:10.598285px;}
.ws9{word-spacing:11.841512px;}
.wscb{word-spacing:13.180608px;}
.ws6{word-spacing:15.481836px;}
.ws98{word-spacing:15.960085px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wsad{word-spacing:851.359680px;}
._51{margin-left:-25.309121px;}
._4b{margin-left:-24.268894px;}
._9{margin-left:-23.252708px;}
._50{margin-left:-21.895949px;}
._4e{margin-left:-19.726540px;}
._4f{margin-left:-18.219769px;}
._1{margin-left:-16.276849px;}
._7{margin-left:-6.635092px;}
._f{margin-left:-5.618906px;}
._2{margin-left:-3.849538px;}
._49{margin-left:-2.674816px;}
._6{margin-left:-1.464498px;}
._0{width:2.343197px;}
._8{width:3.350692px;}
._14{width:4.602721px;}
._4d{width:7.394254px;}
._3{width:10.460700px;}
._4{width:13.138639px;}
._c{width:14.675022px;}
._b{width:16.097663px;}
._d{width:17.227429px;}
._3e{width:18.231558px;}
._e{width:19.247743px;}
._47{width:20.323704px;}
._19{width:21.339889px;}
._12{width:22.744612px;}
._17{width:23.820572px;}
._5{width:25.314894px;}
._18{width:26.839244px;}
._46{width:28.004864px;}
._16{width:29.050933px;}
._4c{width:30.366005px;}
._13{width:31.950054px;}
._1a{width:33.726299px;}
._1c{width:35.327380px;}
._1b{width:37.598852px;}
._15{width:39.481780px;}
._1d{width:41.035945px;}
._45{width:43.845475px;}
._a{width:69.653545px;}
._20{width:140.413824px;}
._38{width:193.512845px;}
._26{width:200.775629px;}
._43{width:204.538205px;}
._27{width:206.962445px;}
._28{width:213.149261px;}
._22{width:217.453133px;}
._2f{width:223.693747px;}
._34{width:228.212813px;}
._29{width:232.301491px;}
._35{width:236.874355px;}
._21{width:240.694042px;}
._3c{width:245.655436px;}
._3d{width:249.409382px;}
._1f{width:251.023334px;}
._1e{width:254.143642px;}
._41{width:268.986632px;}
._42{width:291.396007px;}
._4a{width:293.891741px;}
._30{width:304.821734px;}
._3a{width:314.182656px;}
._2a{width:318.271334px;}
._31{width:329.138611px;}
._25{width:331.720934px;}
._36{width:336.078605px;}
._23{width:346.569293px;}
._3b{width:347.806656px;}
._24{width:355.284634px;}
._2b{width:360.449280px;}
._37{width:368.734234px;}
._39{width:370.455782px;}
._2e{width:407.200090px;}
._44{width:413.017920px;}
._32{width:461.159885px;}
._2c{width:471.650573px;}
._33{width:481.280486px;}
._2d{width:494.730086px;}
._3f{width:592.559450px;}
._40{width:617.390438px;}
._10{width:905.493065px;}
._48{width:2538.056664px;}
._11{width:2561.966664px;}
.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;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.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;}
.y0{bottom:0.000000px;}
.y37{bottom:9.233944px;}
.y36{bottom:26.903761px;}
.y64{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y1a8{bottom:103.621500px;}
.y34{bottom:104.646000px;}
.y63{bottom:107.535000px;}
.y146{bottom:110.383500px;}
.y167{bottom:112.563000px;}
.yca{bottom:113.320500px;}
.y173{bottom:118.699500px;}
.y177{bottom:119.148000px;}
.ycf{bottom:119.596500px;}
.y1a7{bottom:122.449500px;}
.y33{bottom:122.535000px;}
.y62{bottom:126.364500px;}
.y145{bottom:129.213000px;}
.y166{bottom:131.392500px;}
.yc9{bottom:132.150000px;}
.y1fe{bottom:133.719000px;}
.y1cc{bottom:137.350500px;}
.y172{bottom:137.529000px;}
.y176{bottom:137.977500px;}
.yce{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y32{bottom:140.422500px;}
.y1a6{bottom:141.279000px;}
.y61{bottom:145.194000px;}
.y144{bottom:148.042500px;}
.y165{bottom:150.222000px;}
.y1fd{bottom:150.978000px;}
.yc8{bottom:150.979500px;}
.y1cb{bottom:154.611000px;}
.y171{bottom:156.358500px;}
.y175{bottom:156.807000px;}
.ycd{bottom:157.255500px;}
.y31{bottom:158.310000px;}
.y1a5{bottom:160.108500px;}
.y60{bottom:164.023500px;}
.y143{bottom:166.872000px;}
.y1fc{bottom:168.238500px;}
.y164{bottom:169.051500px;}
.yc7{bottom:169.807500px;}
.y1ca{bottom:171.871500px;}
.y170{bottom:175.188000px;}
.y1ad{bottom:175.636500px;}
.ycc{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y1a4{bottom:178.938000px;}
.y174{bottom:180.120000px;}
.y5f{bottom:182.853000px;}
.y1fb{bottom:185.499000px;}
.y142{bottom:185.701500px;}
.yc6{bottom:188.637000px;}
.y1c9{bottom:189.130500px;}
.y163{bottom:192.364500px;}
.y2f{bottom:194.086500px;}
.yf4{bottom:194.466000px;}
.ycb{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y1a3{bottom:197.767500px;}
.y16f{bottom:198.501000px;}
.y5e{bottom:201.682500px;}
.y1fa{bottom:202.759500px;}
.y141{bottom:204.531000px;}
.y1c8{bottom:206.391000px;}
.yc5{bottom:207.466500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2e{bottom:211.974000px;}
.yf3{bottom:213.295500px;}
.y96{bottom:213.744000px;}
.y1a2{bottom:216.597000px;}
.y1f9{bottom:220.020000px;}
.y5d{bottom:220.512000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1c7{bottom:223.651500px;}
.y162{bottom:225.988500px;}
.yc4{bottom:226.296000px;}
.y140{bottom:227.842500px;}
.y2d{bottom:229.863000px;}
.yf2{bottom:232.125000px;}
.y95{bottom:232.573500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1a1{bottom:235.426500px;}
.y1f8{bottom:237.280500px;}
.y5c{bottom:239.341500px;}
.y1c6{bottom:240.912000px;}
.y161{bottom:244.818000px;}
.yc3{bottom:245.125500px;}
.yf1{bottom:250.954500px;}
.y94{bottom:251.403000px;}
.y1a0{bottom:254.256000px;}
.y1f7{bottom:254.541000px;}
.y5b{bottom:258.171000px;}
.y1c5{bottom:258.172500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y13f{bottom:261.466500px;}
.y160{bottom:263.647500px;}
.y117{bottom:263.955000px;}
.yc2{bottom:268.438500px;}
.yf0{bottom:269.784000px;}
.y93{bottom:270.232500px;}
.y1f6{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y19f{bottom:273.085500px;}
.y1c4{bottom:275.433000px;}
.y5a{bottom:277.000500px;}
.y13e{bottom:280.296000px;}
.y15f{bottom:282.477000px;}
.y116{bottom:282.784500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yef{bottom:288.613500px;}
.y92{bottom:289.062000px;}
.y19e{bottom:291.915000px;}
.y1c3{bottom:292.693500px;}
.y59{bottom:295.830000px;}
.y13d{bottom:299.125500px;}
.y2c{bottom:299.892000px;}
.y15e{bottom:301.306500px;}
.y115{bottom:301.614000px;}
.yc1{bottom:302.062500px;}
.y1f5{bottom:306.321000px;}
.yee{bottom:307.443000px;}
.y91{bottom:307.891500px;}
.y1c2{bottom:309.954000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y19d{bottom:310.744500px;}
.y58{bottom:314.659500px;}
.y2b{bottom:317.779500px;}
.y13c{bottom:317.955000px;}
.y15d{bottom:320.136000px;}
.y114{bottom:320.443500px;}
.yc0{bottom:320.892000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1f4{bottom:323.581500px;}
.yed{bottom:326.272500px;}
.y90{bottom:326.719500px;}
.y1c1{bottom:327.214500px;}
.y19c{bottom:329.574000px;}
.y57{bottom:333.489000px;}
.y2a{bottom:335.667000px;}
.y13b{bottom:336.784500px;}
.y15c{bottom:338.964000px;}
.y113{bottom:339.273000px;}
.ybf{bottom:339.721500px;}
.y1f3{bottom:340.842000px;}
.y1c0{bottom:344.473500px;}
.yec{bottom:345.102000px;}
.y8f{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y19b{bottom:348.403500px;}
.y56{bottom:352.318500px;}
.y29{bottom:353.554500px;}
.y13a{bottom:355.614000px;}
.y15b{bottom:357.793500px;}
.y112{bottom:358.102500px;}
.ybe{bottom:358.551000px;}
.y1bf{bottom:361.734000px;}
.yeb{bottom:363.931500px;}
.y8e{bottom:364.378500px;}
.y19a{bottom:367.233000px;}
.y55{bottom:371.148000px;}
.y139{bottom:374.443500px;}
.y1f2{bottom:375.363000px;}
.y15a{bottom:376.623000px;}
.y111{bottom:376.932000px;}
.ybd{bottom:377.380500px;}
.y1be{bottom:378.994500px;}
.y28{bottom:380.409000px;}
.yea{bottom:382.761000px;}
.y8d{bottom:383.208000px;}
.y199{bottom:386.062500px;}
.ye{bottom:386.785499px;}
.y1f1{bottom:392.623500px;}
.y138{bottom:393.273000px;}
.y54{bottom:394.461000px;}
.y159{bottom:395.452500px;}
.y110{bottom:395.761500px;}
.ybc{bottom:396.210000px;}
.y1bd{bottom:396.255000px;}
.y27{bottom:398.298000px;}
.ye9{bottom:401.589000px;}
.y8c{bottom:402.037500px;}
.y198{bottom:404.892000px;}
.yd{bottom:408.044999px;}
.y1f0{bottom:409.884000px;}
.y137{bottom:412.102500px;}
.y1bc{bottom:413.515500px;}
.y158{bottom:414.282000px;}
.y10f{bottom:414.591000px;}
.ybb{bottom:415.039500px;}
.y26{bottom:416.185500px;}
.ye8{bottom:420.418500px;}
.y8b{bottom:420.867000px;}
.y1ef{bottom:427.144500px;}
.y1bb{bottom:430.776000px;}
.y136{bottom:430.932000px;}
.y157{bottom:433.111500px;}
.y10e{bottom:433.420500px;}
.yba{bottom:433.869000px;}
.y25{bottom:434.073000px;}
.ye7{bottom:439.248000px;}
.y8a{bottom:439.696500px;}
.y197{bottom:442.903500px;}
.y1ee{bottom:444.403500px;}
.y135{bottom:449.761500px;}
.y156{bottom:451.941000px;}
.y24{bottom:451.962000px;}
.y10d{bottom:452.250000px;}
.y1ba{bottom:452.518500px;}
.yb9{bottom:452.698500px;}
.ye6{bottom:458.077500px;}
.y89{bottom:458.526000px;}
.y1ed{bottom:461.664000px;}
.y196{bottom:464.736000px;}
.y134{bottom:468.591000px;}
.y53{bottom:469.611000px;}
.y23{bottom:469.849500px;}
.y155{bottom:470.770500px;}
.y10c{bottom:471.079500px;}
.yb8{bottom:471.528000px;}
.ye5{bottom:476.907000px;}
.y88{bottom:477.355500px;}
.y1ec{bottom:478.924500px;}
.y195{bottom:481.174500px;}
.y1b9{bottom:486.142500px;}
.y133{bottom:487.420500px;}
.y22{bottom:487.737000px;}
.y192{bottom:489.393000px;}
.y154{bottom:489.600000px;}
.y10b{bottom:489.909000px;}
.yb7{bottom:490.357500px;}
.ye4{bottom:495.736500px;}
.y87{bottom:496.185000px;}
.y191{bottom:497.613000px;}
.yc{bottom:502.864502px;}
.y132{bottom:506.250000px;}
.y52{bottom:507.000000px;}
.y153{bottom:508.429500px;}
.y10a{bottom:508.738500px;}
.yb6{bottom:509.187000px;}
.y1b8{bottom:512.683500px;}
.y1eb{bottom:513.445500px;}
.y194{bottom:514.051500px;}
.ye3{bottom:514.566000px;}
.y86{bottom:515.014500px;}
.yb{bottom:520.864502px;}
.y131{bottom:525.079500px;}
.y51{bottom:526.456500px;}
.y152{bottom:527.259000px;}
.y109{bottom:527.568000px;}
.yb5{bottom:528.016500px;}
.y193{bottom:530.488500px;}
.y1ea{bottom:530.706000px;}
.ye2{bottom:533.395500px;}
.y85{bottom:533.844000px;}
.ya{bottom:538.864499px;}
.y1b7{bottom:539.224500px;}
.y130{bottom:543.909000px;}
.y50{bottom:545.914500px;}
.y151{bottom:546.088500px;}
.y108{bottom:546.397500px;}
.yb4{bottom:546.846000px;}
.y1e9{bottom:547.966500px;}
.ye1{bottom:552.225000px;}
.y84{bottom:552.673500px;}
.y190{bottom:554.130000px;}
.y1b6{bottom:556.798500px;}
.y9{bottom:556.864499px;}
.y12f{bottom:562.738500px;}
.y107{bottom:565.227000px;}
.y4f{bottom:565.371000px;}
.yb3{bottom:565.675500px;}
.y150{bottom:569.401500px;}
.y18f{bottom:570.568500px;}
.ye0{bottom:571.054500px;}
.y83{bottom:571.503000px;}
.y12e{bottom:581.568000px;}
.y1e8{bottom:582.487500px;}
.y1b5{bottom:583.339500px;}
.y106{bottom:584.056500px;}
.yb2{bottom:584.505000px;}
.y4e{bottom:584.829000px;}
.y18e{bottom:587.007000px;}
.ydf{bottom:589.884000px;}
.y82{bottom:590.332500px;}
.y1e7{bottom:599.746500px;}
.y12d{bottom:600.397500px;}
.y1b4{bottom:600.913500px;}
.y105{bottom:602.886000px;}
.yb1{bottom:603.333000px;}
.y18d{bottom:603.445500px;}
.y4d{bottom:604.285500px;}
.y14f{bottom:606.396000px;}
.yde{bottom:608.713500px;}
.y81{bottom:609.162000px;}
.y1e6{bottom:617.007000px;}
.y188{bottom:619.884000px;}
.y104{bottom:621.715500px;}
.yb0{bottom:622.162500px;}
.y12c{bottom:623.709000px;}
.y4c{bottom:623.742000px;}
.y1b3{bottom:627.453000px;}
.ydd{bottom:627.543000px;}
.y80{bottom:627.991500px;}
.y14e{bottom:628.228500px;}
.y1e5{bottom:634.267500px;}
.y18c{bottom:636.321000px;}
.y14d{bottom:636.448500px;}
.y103{bottom:640.545000px;}
.yaf{bottom:640.992000px;}
.y4b{bottom:643.200000px;}
.y8{bottom:645.510000px;}
.ydc{bottom:646.372500px;}
.y7f{bottom:646.821000px;}
.y1e4{bottom:651.528000px;}
.y18b{bottom:652.759500px;}
.y1b2{bottom:653.994000px;}
.y102{bottom:659.374500px;}
.yae{bottom:659.821500px;}
.y12b{bottom:660.705000px;}
.y4a{bottom:662.656500px;}
.ydb{bottom:665.202000px;}
.y7e{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y14c{bottom:668.308500px;}
.y1e3{bottom:668.788500px;}
.y18a{bottom:669.198000px;}
.y1b1{bottom:671.568000px;}
.y14b{bottom:676.527000px;}
.y101{bottom:678.204000px;}
.yad{bottom:678.651000px;}
.y49{bottom:682.113000px;}
.y12a{bottom:682.537500px;}
.yda{bottom:684.031500px;}
.y7d{bottom:684.480000px;}
.y189{bottom:685.636500px;}
.y1e2{bottom:686.049000px;}
.y1b0{bottom:689.142000px;}
.y100{bottom:697.032000px;}
.yac{bottom:697.480500px;}
.y48{bottom:701.571000px;}
.yd9{bottom:702.861000px;}
.y7c{bottom:703.309500px;}
.y129{bottom:706.177500px;}
.y1af{bottom:706.716000px;}
.y14a{bottom:708.387000px;}
.y187{bottom:709.278000px;}
.yff{bottom:715.861500px;}
.yab{bottom:716.310000px;}
.y149{bottom:716.607000px;}
.y1e1{bottom:720.570000px;}
.y47{bottom:721.027500px;}
.yd8{bottom:721.690500px;}
.y7b{bottom:722.139000px;}
.y1ae{bottom:724.290000px;}
.y186{bottom:725.716500px;}
.y6{bottom:726.298500px;}
.y128{bottom:729.819000px;}
.yfe{bottom:734.691000px;}
.yaa{bottom:735.139500px;}
.y1e0{bottom:737.829000px;}
.y46{bottom:740.485500px;}
.yd7{bottom:740.520000px;}
.y7a{bottom:740.968500px;}
.y183{bottom:742.153500px;}
.y148{bottom:748.465500px;}
.y3{bottom:752.599495px;}
.y127{bottom:753.459000px;}
.yfd{bottom:753.520500px;}
.ya9{bottom:753.969000px;}
.y1df{bottom:755.089500px;}
.y185{bottom:758.592000px;}
.yd6{bottom:759.349500px;}
.y79{bottom:759.798000px;}
.y45{bottom:759.942000px;}
.y201{bottom:767.793000px;}
.yfc{bottom:772.350000px;}
.ya8{bottom:772.798500px;}
.y184{bottom:775.030500px;}
.y126{bottom:777.100500px;}
.yd5{bottom:778.179000px;}
.y78{bottom:778.627500px;}
.y44{bottom:779.398500px;}
.y147{bottom:783.075000px;}
.y200{bottom:785.053500px;}
.y1de{bottom:789.610500px;}
.yfb{bottom:791.179500px;}
.ya7{bottom:791.628000px;}
.yd4{bottom:797.008500px;}
.y77{bottom:797.457000px;}
.y182{bottom:798.672000px;}
.y43{bottom:798.856500px;}
.y125{bottom:800.740500px;}
.y1ff{bottom:802.312500px;}
.y1dd{bottom:806.871000px;}
.yfa{bottom:810.009000px;}
.ya6{bottom:810.457500px;}
.y181{bottom:815.110500px;}
.yd3{bottom:815.838000px;}
.y76{bottom:816.286500px;}
.y42{bottom:818.313000px;}
.y1dc{bottom:824.131500px;}
.y124{bottom:824.382000px;}
.yf9{bottom:828.838500px;}
.ya5{bottom:829.287000px;}
.y180{bottom:831.549000px;}
.yd2{bottom:834.667500px;}
.y75{bottom:835.114500px;}
.y41{bottom:837.769500px;}
.y1db{bottom:841.392000px;}
.yf8{bottom:847.668000px;}
.y17f{bottom:847.986000px;}
.y123{bottom:848.022000px;}
.ya4{bottom:848.116500px;}
.yd1{bottom:853.497000px;}
.y74{bottom:853.944000px;}
.y40{bottom:857.227500px;}
.y1da{bottom:858.652500px;}
.y17a{bottom:864.424500px;}
.yf7{bottom:866.497500px;}
.ya3{bottom:866.946000px;}
.y122{bottom:871.663500px;}
.y16e{bottom:872.326500px;}
.y73{bottom:872.773500px;}
.y1d9{bottom:875.913000px;}
.y3f{bottom:876.684000px;}
.yd0{bottom:876.808500px;}
.y2{bottom:879.369000px;}
.y17e{bottom:880.863000px;}
.yf6{bottom:885.327000px;}
.ya2{bottom:885.775500px;}
.y16d{bottom:891.156000px;}
.y72{bottom:891.603000px;}
.y1d8{bottom:893.172000px;}
.y121{bottom:895.303500px;}
.y17d{bottom:897.301500px;}
.ya1{bottom:904.605000px;}
.yf5{bottom:908.640000px;}
.y16c{bottom:909.984000px;}
.y71{bottom:910.432500px;}
.y17c{bottom:913.740000px;}
.y3e{bottom:915.270000px;}
.y120{bottom:918.945000px;}
.ya0{bottom:923.434500px;}
.y1d7{bottom:927.693000px;}
.y16b{bottom:928.813500px;}
.y70{bottom:929.262000px;}
.y17b{bottom:930.178500px;}
.y3d{bottom:935.749500px;}
.y9f{bottom:942.264000px;}
.y11f{bottom:942.585000px;}
.y1d6{bottom:944.953500px;}
.y16a{bottom:947.643000px;}
.y6f{bottom:948.091500px;}
.y3c{bottom:951.888000px;}
.y179{bottom:953.818500px;}
.y9e{bottom:961.093500px;}
.y1d5{bottom:962.214000px;}
.y11e{bottom:966.226500px;}
.y169{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6e{bottom:966.921000px;}
.y1d4{bottom:979.474500px;}
.y9d{bottom:979.923000px;}
.y1ac{bottom:985.302000px;}
.y6d{bottom:985.750500px;}
.y178{bottom:988.428000px;}
.y168{bottom:989.785500px;}
.y11d{bottom:989.866500px;}
.y3b{bottom:996.565500px;}
.y1d3{bottom:996.735000px;}
.y9c{bottom:998.752500px;}
.y1ab{bottom:1004.131500px;}
.y6c{bottom:1004.580000px;}
.y11c{bottom:1013.508000px;}
.y1d2{bottom:1013.995500px;}
.y9b{bottom:1017.582000px;}
.y1aa{bottom:1022.961000px;}
.y6b{bottom:1023.409500px;}
.y1d1{bottom:1031.254500px;}
.y9a{bottom:1036.411500px;}
.y3a{bottom:1036.485000px;}
.y11b{bottom:1037.148000px;}
.y6a{bottom:1042.239000px;}
.y1a9{bottom:1046.274000px;}
.y1d0{bottom:1048.515000px;}
.y99{bottom:1055.241000px;}
.y11a{bottom:1060.789500px;}
.y69{bottom:1061.068500px;}
.y39{bottom:1064.728500px;}
.y1cf{bottom:1065.775500px;}
.y98{bottom:1074.070500px;}
.y68{bottom:1079.898000px;}
.y1ce{bottom:1083.036000px;}
.y119{bottom:1084.429500px;}
.y38{bottom:1092.972000px;}
.y97{bottom:1097.382000px;}
.y67{bottom:1098.727500px;}
.y1cd{bottom:1100.296500px;}
.y66{bottom:1117.557000px;}
.y118{bottom:1119.037500px;}
.y35{bottom:1136.460000px;}
.y65{bottom:1177.662000px;}
.h11{height:31.131341px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hb{height:36.319550px;}
.h18{height:38.734848px;}
.h12{height:41.508281px;}
.h14{height:43.038432px;}
.he{height:43.875290px;}
.h7{height:45.960000px;}
.h13{height:46.697011px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1b{height:49.117939px;}
.h1d{height:49.385011px;}
.hc{height:50.930649px;}
.h15{height:51.885221px;}
.h10{height:54.405312px;}
.h16{height:54.575123px;}
.h2{height:55.152000px;}
.h1c{height:58.691011px;}
.hd{height:61.613006px;}
.h17{height:65.217221px;}
.hf{height:77.469696px;}
.h5{height:78.132000px;}
.h19{height:79.571011px;}
.h1a{height:79.577011px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.xe{left:64.500000px;}
.xd{left:67.863000px;}
.x3e{left:69.360000px;}
.x12{left:79.380000px;}
.x57{left:85.470000px;}
.x17{left:88.135500px;}
.x11{left:96.937500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x15{left:115.060500px;}
.x55{left:117.166500px;}
.xc{left:183.444000px;}
.x4{left:203.484001px;}
.x58{left:215.380500px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.x2e{left:253.792500px;}
.xf{left:259.380000px;}
.x2f{left:270.915000px;}
.xa{left:281.479500px;}
.x40{left:291.778500px;}
.x41{left:294.933000px;}
.x42{left:299.869500px;}
.x19{left:302.988000px;}
.x4c{left:304.953000px;}
.x43{left:306.130500px;}
.x44{left:307.690500px;}
.x18{left:309.015000px;}
.x4b{left:312.874500px;}
.x3f{left:316.270500px;}
.x1a{left:320.110500px;}
.x45{left:321.529500px;}
.x51{left:326.103000px;}
.x50{left:334.078500px;}
.x3a{left:336.354000px;}
.x13{left:342.409500px;}
.x4d{left:378.595500px;}
.x2a{left:393.142500px;}
.x3d{left:401.062500px;}
.x46{left:403.503000px;}
.x2b{left:410.266500px;}
.x30{left:420.756000px;}
.x31{left:437.880000px;}
.x3{left:454.959000px;}
.x32{left:456.909000px;}
.x26{left:463.278000px;}
.x33{left:474.033000px;}
.x27{left:480.402000px;}
.x10{left:495.954000px;}
.x28{left:544.561500px;}
.x1f{left:554.887500px;}
.x29{left:561.684000px;}
.x36{left:569.064000px;}
.x20{left:575.736000px;}
.x14{left:585.826500px;}
.x47{left:589.240500px;}
.x48{left:591.540000px;}
.x4a{left:593.119500px;}
.x53{left:595.320000px;}
.x16{left:598.156500px;}
.xb{left:601.515000px;}
.x1d{left:604.600500px;}
.x49{left:606.846000px;}
.x52{left:610.207500px;}
.x56{left:612.574500px;}
.x2c{left:619.651500px;}
.x1e{left:621.723000px;}
.x4f{left:623.577000px;}
.x4e{left:626.427000px;}
.x37{left:630.040500px;}
.x2d{left:636.775500px;}
.x38{left:647.163000px;}
.x54{left:648.256500px;}
.x24{left:674.668500px;}
.x25{left:691.791000px;}
.x3b{left:695.556000px;}
.x3c{left:712.680000px;}
.x21{left:768.790500px;}
.x1b{left:786.685500px;}
.x1c{left:803.808000px;}
.x22{left:817.158000px;}
.x34{left:818.323500px;}
.x39{left:821.325000px;}
.x23{left:834.280500px;}
.x35{left:835.446000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.389333pt;}
.v6{vertical-align:10.661333pt;}
.v4{vertical-align:11.850667pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000387pt;}
.ls2d{letter-spacing:0.000600pt;}
.ls2f{letter-spacing:0.000711pt;}
.ls21{letter-spacing:0.000915pt;}
.ls30{letter-spacing:0.000921pt;}
.ls20{letter-spacing:0.000957pt;}
.lsb{letter-spacing:0.001084pt;}
.ls18{letter-spacing:0.001576pt;}
.ls2a{letter-spacing:0.001974pt;}
.ls29{letter-spacing:0.002187pt;}
.lsd{letter-spacing:0.002868pt;}
.ls2b{letter-spacing:0.002919pt;}
.ls33{letter-spacing:0.003055pt;}
.ls32{letter-spacing:0.003261pt;}
.ls1c{letter-spacing:0.007679pt;}
.ls17{letter-spacing:0.008459pt;}
.ls1f{letter-spacing:0.014012pt;}
.ls2e{letter-spacing:9.681592pt;}
.ls9{letter-spacing:10.626533pt;}
.ls11{letter-spacing:11.530049pt;}
.ls34{letter-spacing:11.959467pt;}
.ls24{letter-spacing:12.004382pt;}
.ls2c{letter-spacing:12.230772pt;}
.ls28{letter-spacing:12.273923pt;}
.ls6{letter-spacing:12.592726pt;}
.ls13{letter-spacing:12.645860pt;}
.ls19{letter-spacing:13.017797pt;}
.ls1a{letter-spacing:13.032674pt;}
.ls1e{letter-spacing:13.094999pt;}
.ls4{letter-spacing:13.124065pt;}
.ls16{letter-spacing:13.177199pt;}
.ls10{letter-spacing:13.283467pt;}
.ls26{letter-spacing:13.336601pt;}
.ls12{letter-spacing:13.389734pt;}
.lsa{letter-spacing:13.442868pt;}
.ls1b{letter-spacing:13.496002pt;}
.ls8{letter-spacing:13.549136pt;}
.ls3{letter-spacing:13.602270pt;}
.ls1d{letter-spacing:14.293010pt;}
.ls5{letter-spacing:14.346144pt;}
.lse{letter-spacing:14.877483pt;}
.ls31{letter-spacing:15.504294pt;}
.ls7{letter-spacing:15.727625pt;}
.lsf{letter-spacing:15.833892pt;}
.ls22{letter-spacing:16.630900pt;}
.ls15{letter-spacing:16.843436pt;}
.ls27{letter-spacing:17.693578pt;}
.ls14{letter-spacing:18.862523pt;}
.ls25{letter-spacing:19.659531pt;}
.ls23{letter-spacing:23.166366pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.wse{word-spacing:-20.194365pt;}
.ws27{word-spacing:-13.283467pt;}
.wsae{word-spacing:-11.955200pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.wsd{word-spacing:-9.298400pt;}
.ws95{word-spacing:-3.134898pt;}
.ws3d{word-spacing:-2.762961pt;}
.wsa4{word-spacing:-2.709827pt;}
.ws31{word-spacing:-2.656693pt;}
.ws7d{word-spacing:-2.603559pt;}
.wsa7{word-spacing:-2.497292pt;}
.ws9f{word-spacing:-2.337890pt;}
.wse2{word-spacing:-2.295398pt;}
.ws79{word-spacing:-2.231622pt;}
.wsb0{word-spacing:-2.178489pt;}
.ws6b{word-spacing:-2.072221pt;}
.wsb2{word-spacing:-2.019087pt;}
.ws73{word-spacing:-1.965953pt;}
.wsc8{word-spacing:-1.960653pt;}
.wsd1{word-spacing:-1.912832pt;}
.ws83{word-spacing:-1.912819pt;}
.ws59{word-spacing:-1.859685pt;}
.wsed{word-spacing:-1.817190pt;}
.wsa2{word-spacing:-1.806551pt;}
.wse1{word-spacing:-1.769370pt;}
.ws39{word-spacing:-1.753418pt;}
.wsa6{word-spacing:-1.700284pt;}
.ws72{word-spacing:-1.647150pt;}
.wsb5{word-spacing:-1.594016pt;}
.ws78{word-spacing:-1.540882pt;}
.ws3c{word-spacing:-1.434614pt;}
.ws5f{word-spacing:-1.381481pt;}
.ws5d{word-spacing:-1.328347pt;}
.ws2b{word-spacing:-1.275213pt;}
.ws2c{word-spacing:-1.222079pt;}
.ws76{word-spacing:-1.115811pt;}
.ws40{word-spacing:-1.062677pt;}
.wsa1{word-spacing:-0.956410pt;}
.ws2a{word-spacing:-0.903276pt;}
.ws25{word-spacing:-0.850142pt;}
.ws87{word-spacing:-0.797008pt;}
.ws47{word-spacing:-0.743874pt;}
.ws7c{word-spacing:-0.637606pt;}
.ws42{word-spacing:-0.584473pt;}
.ws66{word-spacing:-0.531339pt;}
.ws86{word-spacing:-0.478205pt;}
.ws7a{word-spacing:-0.425071pt;}
.ws4c{word-spacing:-0.318803pt;}
.wscc{word-spacing:-0.286925pt;}
.ws41{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.ws26{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws21{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.106268pt;}
.wsc6{word-spacing:-0.095642pt;}
.ws28{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.wsda{word-spacing:-0.011750pt;}
.wsc2{word-spacing:-0.009830pt;}
.wsc7{word-spacing:-0.009242pt;}
.wsdf{word-spacing:-0.007979pt;}
.wsd4{word-spacing:-0.007526pt;}
.wsd8{word-spacing:-0.006033pt;}
.wse4{word-spacing:-0.005530pt;}
.wseb{word-spacing:-0.004582pt;}
.wse7{word-spacing:-0.004267pt;}
.wsc5{word-spacing:-0.003456pt;}
.wsf{word-spacing:-0.002896pt;}
.ws0{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.003199pt;}
.ws13{word-spacing:0.047821pt;}
.ws30{word-spacing:0.053134pt;}
.ws5{word-spacing:0.074387pt;}
.ws15{word-spacing:0.095642pt;}
.ws33{word-spacing:0.106268pt;}
.ws3{word-spacing:0.111581pt;}
.ws1b{word-spacing:0.143462pt;}
.ws1f{word-spacing:0.159402pt;}
.ws14{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.wse0{word-spacing:0.239104pt;}
.ws20{word-spacing:0.265669pt;}
.wsbe{word-spacing:0.286925pt;}
.ws37{word-spacing:0.318803pt;}
.ws62{word-spacing:0.371937pt;}
.ws63{word-spacing:0.425071pt;}
.ws60{word-spacing:0.478205pt;}
.wsd9{word-spacing:0.526029pt;}
.ws57{word-spacing:0.531339pt;}
.wse6{word-spacing:0.573850pt;}
.ws38{word-spacing:0.584473pt;}
.ws29{word-spacing:0.637606pt;}
.ws5c{word-spacing:0.690740pt;}
.wsdb{word-spacing:0.717312pt;}
.ws58{word-spacing:0.743874pt;}
.ws35{word-spacing:0.797008pt;}
.ws68{word-spacing:0.850142pt;}
.ws89{word-spacing:0.903276pt;}
.ws34{word-spacing:0.956410pt;}
.ws94{word-spacing:1.009543pt;}
.wsce{word-spacing:1.052058pt;}
.ws56{word-spacing:1.062677pt;}
.ws9c{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.147699pt;}
.ws8f{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws4a{word-spacing:1.275213pt;}
.ws75{word-spacing:1.328347pt;}
.ws77{word-spacing:1.381481pt;}
.ws18{word-spacing:1.386803pt;}
.ws82{word-spacing:1.434614pt;}
.wse5{word-spacing:1.434624pt;}
.wsb6{word-spacing:1.487748pt;}
.ws2d{word-spacing:1.540882pt;}
.ws97{word-spacing:1.594016pt;}
.ws36{word-spacing:1.647150pt;}
.ws6e{word-spacing:1.700284pt;}
.wsde{word-spacing:1.769370pt;}
.wsd3{word-spacing:1.817190pt;}
.ws51{word-spacing:1.859685pt;}
.ws43{word-spacing:1.912819pt;}
.ws69{word-spacing:1.965953pt;}
.ws46{word-spacing:2.019087pt;}
.wsdd{word-spacing:2.056294pt;}
.ws49{word-spacing:2.072221pt;}
.wsdc{word-spacing:2.104115pt;}
.ws54{word-spacing:2.125355pt;}
.ws52{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws8b{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws4f{word-spacing:2.284756pt;}
.ws4{word-spacing:2.335919pt;}
.ws32{word-spacing:2.337890pt;}
.ws61{word-spacing:2.391024pt;}
.ws6a{word-spacing:2.444158pt;}
.ws48{word-spacing:2.497292pt;}
.ws5e{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.wsb3{word-spacing:2.603559pt;}
.ws96{word-spacing:2.656693pt;}
.ws6d{word-spacing:2.709827pt;}
.ws6c{word-spacing:2.762961pt;}
.ws4e{word-spacing:2.816095pt;}
.wsef{word-spacing:2.861602pt;}
.ws1d{word-spacing:2.861926pt;}
.wsd0{word-spacing:2.862686pt;}
.wsee{word-spacing:2.864188pt;}
.wsec{word-spacing:2.865749pt;}
.wsbd{word-spacing:2.866509pt;}
.ws53{word-spacing:2.869229pt;}
.wsc0{word-spacing:2.869248pt;}
.wscd{word-spacing:2.917069pt;}
.ws50{word-spacing:2.922363pt;}
.ws12{word-spacing:2.956441pt;}
.wsbb{word-spacing:2.964890pt;}
.ws3a{word-spacing:2.975497pt;}
.ws44{word-spacing:3.028630pt;}
.wsbf{word-spacing:3.060531pt;}
.ws4d{word-spacing:3.081764pt;}
.wsea{word-spacing:3.108352pt;}
.wsa8{word-spacing:3.111195pt;}
.wsd6{word-spacing:3.156173pt;}
.ws1e{word-spacing:3.188032pt;}
.wsd5{word-spacing:3.203994pt;}
.ws7b{word-spacing:3.241166pt;}
.wsd2{word-spacing:3.251814pt;}
.ws55{word-spacing:3.294300pt;}
.ws6f{word-spacing:3.400567pt;}
.ws4b{word-spacing:3.453701pt;}
.ws67{word-spacing:3.506835pt;}
.wse8{word-spacing:3.538739pt;}
.ws85{word-spacing:3.559969pt;}
.ws45{word-spacing:3.613103pt;}
.ws22{word-spacing:3.666237pt;}
.ws99{word-spacing:3.719371pt;}
.wscf{word-spacing:3.730022pt;}
.wsb4{word-spacing:3.825638pt;}
.ws3e{word-spacing:3.878772pt;}
.ws5a{word-spacing:3.931906pt;}
.ws9b{word-spacing:3.985040pt;}
.ws9a{word-spacing:4.091308pt;}
.wsaa{word-spacing:4.144442pt;}
.wsab{word-spacing:4.197575pt;}
.ws84{word-spacing:4.250709pt;}
.wsa9{word-spacing:4.303843pt;}
.wsc9{word-spacing:4.303872pt;}
.wsca{word-spacing:4.351693pt;}
.wsba{word-spacing:4.356977pt;}
.ws81{word-spacing:4.410111pt;}
.ws8d{word-spacing:4.463245pt;}
.wse9{word-spacing:4.495155pt;}
.ws64{word-spacing:4.516379pt;}
.wsc4{word-spacing:4.542976pt;}
.ws65{word-spacing:4.569513pt;}
.ws17{word-spacing:4.590797pt;}
.wsbc{word-spacing:4.638618pt;}
.ws8e{word-spacing:4.675780pt;}
.ws90{word-spacing:4.728914pt;}
.wse3{word-spacing:4.734259pt;}
.ws5b{word-spacing:4.782048pt;}
.ws88{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.wsb8{word-spacing:4.941450pt;}
.ws3b{word-spacing:4.994583pt;}
.ws71{word-spacing:5.047717pt;}
.ws80{word-spacing:5.100851pt;}
.wsb7{word-spacing:5.153985pt;}
.wsac{word-spacing:5.260253pt;}
.ws74{word-spacing:5.419654pt;}
.ws70{word-spacing:5.472788pt;}
.wsaf{word-spacing:5.579056pt;}
.wsb9{word-spacing:5.685324pt;}
.ws93{word-spacing:5.738458pt;}
.wsc3{word-spacing:5.738496pt;}
.wsa3{word-spacing:5.897859pt;}
.ws7e{word-spacing:5.950993pt;}
.ws8a{word-spacing:6.004127pt;}
.ws9e{word-spacing:6.163529pt;}
.ws3f{word-spacing:6.216662pt;}
.ws9d{word-spacing:6.269796pt;}
.ws91{word-spacing:6.322930pt;}
.wsa0{word-spacing:6.376064pt;}
.wsa5{word-spacing:6.482332pt;}
.ws7f{word-spacing:6.641733pt;}
.ws8c{word-spacing:6.748001pt;}
.wsb1{word-spacing:7.066804pt;}
.ws92{word-spacing:7.332474pt;}
.ws8{word-spacing:8.740496pt;}
.wsd7{word-spacing:9.420698pt;}
.ws9{word-spacing:10.525789pt;}
.wscb{word-spacing:11.716096pt;}
.ws6{word-spacing:13.761632pt;}
.ws98{word-spacing:14.186742pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wsad{word-spacing:756.764160pt;}
._51{margin-left:-22.496996pt;}
._4b{margin-left:-21.572350pt;}
._9{margin-left:-20.669074pt;}
._50{margin-left:-19.463066pt;}
._4e{margin-left:-17.534702pt;}
._4f{margin-left:-16.195350pt;}
._1{margin-left:-14.468310pt;}
._7{margin-left:-5.897859pt;}
._f{margin-left:-4.994583pt;}
._2{margin-left:-3.421811pt;}
._49{margin-left:-2.377614pt;}
._6{margin-left:-1.301776pt;}
._0{width:2.082842pt;}
._8{width:2.978393pt;}
._14{width:4.091308pt;}
._4d{width:6.572670pt;}
._3{width:9.298400pt;}
._4{width:11.678790pt;}
._c{width:13.044464pt;}
._b{width:14.309034pt;}
._d{width:15.313270pt;}
._3e{width:16.205829pt;}
._e{width:17.109105pt;}
._47{width:18.065515pt;}
._19{width:18.968790pt;}
._12{width:20.217433pt;}
._17{width:21.173842pt;}
._5{width:22.502128pt;}
._18{width:23.857106pt;}
._46{width:24.893213pt;}
._16{width:25.823052pt;}
._4c{width:26.992004pt;}
._13{width:28.400048pt;}
._1a{width:29.978932pt;}
._1c{width:31.402115pt;}
._1b{width:33.421202pt;}
._15{width:35.094915pt;}
._1d{width:36.476396pt;}
._45{width:38.973756pt;}
._a{width:61.914262pt;}
._20{width:124.812288pt;}
._38{width:172.011418pt;}
._26{width:178.467226pt;}
._43{width:181.811738pt;}
._27{width:183.966618pt;}
._28{width:189.466010pt;}
._22{width:193.291674pt;}
._2f{width:198.838886pt;}
._34{width:202.855834pt;}
._29{width:206.490214pt;}
._35{width:210.554982pt;}
._21{width:213.950259pt;}
._3c{width:218.360387pt;}
._3d{width:221.697229pt;}
._1f{width:223.131853pt;}
._1e{width:225.905459pt;}
._41{width:239.099229pt;}
._42{width:259.018673pt;}
._4a{width:261.237103pt;}
._30{width:270.952653pt;}
._3a{width:279.273472pt;}
._2a{width:282.907853pt;}
._31{width:292.567654pt;}
._25{width:294.863053pt;}
._36{width:298.736538pt;}
._23{width:308.061594pt;}
._3b{width:309.161472pt;}
._24{width:315.808563pt;}
._2b{width:320.399360pt;}
._37{width:327.763763pt;}
._39{width:329.294029pt;}
._2e{width:361.955635pt;}
._44{width:367.127040pt;}
._32{width:409.919898pt;}
._2c{width:419.244954pt;}
._33{width:427.804877pt;}
._2d{width:439.760077pt;}
._3f{width:526.719511pt;}
._40{width:548.791501pt;}
._10{width:804.882725pt;}
._48{width:2256.050368pt;}
._11{width:2277.303701pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.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;}
.y0{bottom:0.000000pt;}
.y37{bottom:8.207950pt;}
.y36{bottom:23.914454pt;}
.y64{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y1a8{bottom:92.108000pt;}
.y34{bottom:93.018667pt;}
.y63{bottom:95.586667pt;}
.y146{bottom:98.118667pt;}
.y167{bottom:100.056000pt;}
.yca{bottom:100.729333pt;}
.y173{bottom:105.510667pt;}
.y177{bottom:105.909333pt;}
.ycf{bottom:106.308000pt;}
.y1a7{bottom:108.844000pt;}
.y33{bottom:108.920000pt;}
.y62{bottom:112.324000pt;}
.y145{bottom:114.856000pt;}
.y166{bottom:116.793333pt;}
.yc9{bottom:117.466667pt;}
.y1fe{bottom:118.861333pt;}
.y1cc{bottom:122.089333pt;}
.y172{bottom:122.248000pt;}
.y176{bottom:122.646667pt;}
.yce{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y32{bottom:124.820000pt;}
.y1a6{bottom:125.581333pt;}
.y61{bottom:129.061333pt;}
.y144{bottom:131.593333pt;}
.y165{bottom:133.530667pt;}
.y1fd{bottom:134.202667pt;}
.yc8{bottom:134.204000pt;}
.y1cb{bottom:137.432000pt;}
.y171{bottom:138.985333pt;}
.y175{bottom:139.384000pt;}
.ycd{bottom:139.782667pt;}
.y31{bottom:140.720000pt;}
.y1a5{bottom:142.318667pt;}
.y60{bottom:145.798667pt;}
.y143{bottom:148.330667pt;}
.y1fc{bottom:149.545333pt;}
.y164{bottom:150.268000pt;}
.yc7{bottom:150.940000pt;}
.y1ca{bottom:152.774667pt;}
.y170{bottom:155.722667pt;}
.y1ad{bottom:156.121333pt;}
.ycc{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y1a4{bottom:159.056000pt;}
.y174{bottom:160.106667pt;}
.y5f{bottom:162.536000pt;}
.y1fb{bottom:164.888000pt;}
.y142{bottom:165.068000pt;}
.yc6{bottom:167.677333pt;}
.y1c9{bottom:168.116000pt;}
.y163{bottom:170.990667pt;}
.y2f{bottom:172.521333pt;}
.yf4{bottom:172.858667pt;}
.ycb{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y1a3{bottom:175.793333pt;}
.y16f{bottom:176.445333pt;}
.y5e{bottom:179.273333pt;}
.y1fa{bottom:180.230667pt;}
.y141{bottom:181.805333pt;}
.y1c8{bottom:183.458667pt;}
.yc5{bottom:184.414667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2e{bottom:188.421333pt;}
.yf3{bottom:189.596000pt;}
.y96{bottom:189.994667pt;}
.y1a2{bottom:192.530667pt;}
.y1f9{bottom:195.573333pt;}
.y5d{bottom:196.010667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1c7{bottom:198.801333pt;}
.y162{bottom:200.878667pt;}
.yc4{bottom:201.152000pt;}
.y140{bottom:202.526667pt;}
.y2d{bottom:204.322667pt;}
.yf2{bottom:206.333333pt;}
.y95{bottom:206.732000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1a1{bottom:209.268000pt;}
.y1f8{bottom:210.916000pt;}
.y5c{bottom:212.748000pt;}
.y1c6{bottom:214.144000pt;}
.y161{bottom:217.616000pt;}
.yc3{bottom:217.889333pt;}
.yf1{bottom:223.070667pt;}
.y94{bottom:223.469333pt;}
.y1a0{bottom:226.005333pt;}
.y1f7{bottom:226.258667pt;}
.y5b{bottom:229.485333pt;}
.y1c5{bottom:229.486667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y13f{bottom:232.414667pt;}
.y160{bottom:234.353333pt;}
.y117{bottom:234.626667pt;}
.yc2{bottom:238.612000pt;}
.yf0{bottom:239.808000pt;}
.y93{bottom:240.206667pt;}
.y1f6{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y19f{bottom:242.742667pt;}
.y1c4{bottom:244.829333pt;}
.y5a{bottom:246.222667pt;}
.y13e{bottom:249.152000pt;}
.y15f{bottom:251.090667pt;}
.y116{bottom:251.364000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yef{bottom:256.545333pt;}
.y92{bottom:256.944000pt;}
.y19e{bottom:259.480000pt;}
.y1c3{bottom:260.172000pt;}
.y59{bottom:262.960000pt;}
.y13d{bottom:265.889333pt;}
.y2c{bottom:266.570667pt;}
.y15e{bottom:267.828000pt;}
.y115{bottom:268.101333pt;}
.yc1{bottom:268.500000pt;}
.y1f5{bottom:272.285333pt;}
.yee{bottom:273.282667pt;}
.y91{bottom:273.681333pt;}
.y1c2{bottom:275.514667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y19d{bottom:276.217333pt;}
.y58{bottom:279.697333pt;}
.y2b{bottom:282.470667pt;}
.y13c{bottom:282.626667pt;}
.y15d{bottom:284.565333pt;}
.y114{bottom:284.838667pt;}
.yc0{bottom:285.237333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1f4{bottom:287.628000pt;}
.yed{bottom:290.020000pt;}
.y90{bottom:290.417333pt;}
.y1c1{bottom:290.857333pt;}
.y19c{bottom:292.954667pt;}
.y57{bottom:296.434667pt;}
.y2a{bottom:298.370667pt;}
.y13b{bottom:299.364000pt;}
.y15c{bottom:301.301333pt;}
.y113{bottom:301.576000pt;}
.ybf{bottom:301.974667pt;}
.y1f3{bottom:302.970667pt;}
.y1c0{bottom:306.198667pt;}
.yec{bottom:306.757333pt;}
.y8f{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y19b{bottom:309.692000pt;}
.y56{bottom:313.172000pt;}
.y29{bottom:314.270667pt;}
.y13a{bottom:316.101333pt;}
.y15b{bottom:318.038667pt;}
.y112{bottom:318.313333pt;}
.ybe{bottom:318.712000pt;}
.y1bf{bottom:321.541333pt;}
.yeb{bottom:323.494667pt;}
.y8e{bottom:323.892000pt;}
.y19a{bottom:326.429333pt;}
.y55{bottom:329.909333pt;}
.y139{bottom:332.838667pt;}
.y1f2{bottom:333.656000pt;}
.y15a{bottom:334.776000pt;}
.y111{bottom:335.050667pt;}
.ybd{bottom:335.449333pt;}
.y1be{bottom:336.884000pt;}
.y28{bottom:338.141333pt;}
.yea{bottom:340.232000pt;}
.y8d{bottom:340.629333pt;}
.y199{bottom:343.166667pt;}
.ye{bottom:343.809333pt;}
.y1f1{bottom:348.998667pt;}
.y138{bottom:349.576000pt;}
.y54{bottom:350.632000pt;}
.y159{bottom:351.513333pt;}
.y110{bottom:351.788000pt;}
.ybc{bottom:352.186667pt;}
.y1bd{bottom:352.226667pt;}
.y27{bottom:354.042667pt;}
.ye9{bottom:356.968000pt;}
.y8c{bottom:357.366667pt;}
.y198{bottom:359.904000pt;}
.yd{bottom:362.706666pt;}
.y1f0{bottom:364.341333pt;}
.y137{bottom:366.313333pt;}
.y1bc{bottom:367.569333pt;}
.y158{bottom:368.250667pt;}
.y10f{bottom:368.525333pt;}
.ybb{bottom:368.924000pt;}
.y26{bottom:369.942667pt;}
.ye8{bottom:373.705333pt;}
.y8b{bottom:374.104000pt;}
.y1ef{bottom:379.684000pt;}
.y1bb{bottom:382.912000pt;}
.y136{bottom:383.050667pt;}
.y157{bottom:384.988000pt;}
.y10e{bottom:385.262667pt;}
.yba{bottom:385.661333pt;}
.y25{bottom:385.842667pt;}
.ye7{bottom:390.442667pt;}
.y8a{bottom:390.841333pt;}
.y197{bottom:393.692000pt;}
.y1ee{bottom:395.025333pt;}
.y135{bottom:399.788000pt;}
.y156{bottom:401.725333pt;}
.y24{bottom:401.744000pt;}
.y10d{bottom:402.000000pt;}
.y1ba{bottom:402.238667pt;}
.yb9{bottom:402.398667pt;}
.ye6{bottom:407.180000pt;}
.y89{bottom:407.578667pt;}
.y1ed{bottom:410.368000pt;}
.y196{bottom:413.098667pt;}
.y134{bottom:416.525333pt;}
.y53{bottom:417.432000pt;}
.y23{bottom:417.644000pt;}
.y155{bottom:418.462667pt;}
.y10c{bottom:418.737333pt;}
.yb8{bottom:419.136000pt;}
.ye5{bottom:423.917333pt;}
.y88{bottom:424.316000pt;}
.y1ec{bottom:425.710667pt;}
.y195{bottom:427.710667pt;}
.y1b9{bottom:432.126667pt;}
.y133{bottom:433.262667pt;}
.y22{bottom:433.544000pt;}
.y192{bottom:435.016000pt;}
.y154{bottom:435.200000pt;}
.y10b{bottom:435.474667pt;}
.yb7{bottom:435.873333pt;}
.ye4{bottom:440.654667pt;}
.y87{bottom:441.053333pt;}
.y191{bottom:442.322667pt;}
.yc{bottom:446.990669pt;}
.y132{bottom:450.000000pt;}
.y52{bottom:450.666667pt;}
.y153{bottom:451.937333pt;}
.y10a{bottom:452.212000pt;}
.yb6{bottom:452.610667pt;}
.y1b8{bottom:455.718667pt;}
.y1eb{bottom:456.396000pt;}
.y194{bottom:456.934667pt;}
.ye3{bottom:457.392000pt;}
.y86{bottom:457.790667pt;}
.yb{bottom:462.990669pt;}
.y131{bottom:466.737333pt;}
.y51{bottom:467.961333pt;}
.y152{bottom:468.674667pt;}
.y109{bottom:468.949333pt;}
.yb5{bottom:469.348000pt;}
.y193{bottom:471.545333pt;}
.y1ea{bottom:471.738667pt;}
.ye2{bottom:474.129333pt;}
.y85{bottom:474.528000pt;}
.ya{bottom:478.990666pt;}
.y1b7{bottom:479.310667pt;}
.y130{bottom:483.474667pt;}
.y50{bottom:485.257333pt;}
.y151{bottom:485.412000pt;}
.y108{bottom:485.686667pt;}
.yb4{bottom:486.085333pt;}
.y1e9{bottom:487.081333pt;}
.ye1{bottom:490.866667pt;}
.y84{bottom:491.265333pt;}
.y190{bottom:492.560000pt;}
.y1b6{bottom:494.932000pt;}
.y9{bottom:494.990666pt;}
.y12f{bottom:500.212000pt;}
.y107{bottom:502.424000pt;}
.y4f{bottom:502.552000pt;}
.yb3{bottom:502.822667pt;}
.y150{bottom:506.134667pt;}
.y18f{bottom:507.172000pt;}
.ye0{bottom:507.604000pt;}
.y83{bottom:508.002667pt;}
.y12e{bottom:516.949333pt;}
.y1e8{bottom:517.766667pt;}
.y1b5{bottom:518.524000pt;}
.y106{bottom:519.161333pt;}
.yb2{bottom:519.560000pt;}
.y4e{bottom:519.848000pt;}
.y18e{bottom:521.784000pt;}
.ydf{bottom:524.341333pt;}
.y82{bottom:524.740000pt;}
.y1e7{bottom:533.108000pt;}
.y12d{bottom:533.686667pt;}
.y1b4{bottom:534.145333pt;}
.y105{bottom:535.898667pt;}
.yb1{bottom:536.296000pt;}
.y18d{bottom:536.396000pt;}
.y4d{bottom:537.142667pt;}
.y14f{bottom:539.018667pt;}
.yde{bottom:541.078667pt;}
.y81{bottom:541.477333pt;}
.y1e6{bottom:548.450667pt;}
.y188{bottom:551.008000pt;}
.y104{bottom:552.636000pt;}
.yb0{bottom:553.033333pt;}
.y12c{bottom:554.408000pt;}
.y4c{bottom:554.437333pt;}
.y1b3{bottom:557.736000pt;}
.ydd{bottom:557.816000pt;}
.y80{bottom:558.214667pt;}
.y14e{bottom:558.425333pt;}
.y1e5{bottom:563.793333pt;}
.y18c{bottom:565.618667pt;}
.y14d{bottom:565.732000pt;}
.y103{bottom:569.373333pt;}
.yaf{bottom:569.770667pt;}
.y4b{bottom:571.733333pt;}
.y8{bottom:573.786667pt;}
.ydc{bottom:574.553333pt;}
.y7f{bottom:574.952000pt;}
.y1e4{bottom:579.136000pt;}
.y18b{bottom:580.230667pt;}
.y1b2{bottom:581.328000pt;}
.y102{bottom:586.110667pt;}
.yae{bottom:586.508000pt;}
.y12b{bottom:587.293333pt;}
.y4a{bottom:589.028000pt;}
.ydb{bottom:591.290667pt;}
.y7e{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y14c{bottom:594.052000pt;}
.y1e3{bottom:594.478667pt;}
.y18a{bottom:594.842667pt;}
.y1b1{bottom:596.949333pt;}
.y14b{bottom:601.357333pt;}
.y101{bottom:602.848000pt;}
.yad{bottom:603.245333pt;}
.y49{bottom:606.322667pt;}
.y12a{bottom:606.700000pt;}
.yda{bottom:608.028000pt;}
.y7d{bottom:608.426667pt;}
.y189{bottom:609.454667pt;}
.y1e2{bottom:609.821333pt;}
.y1b0{bottom:612.570667pt;}
.y100{bottom:619.584000pt;}
.yac{bottom:619.982667pt;}
.y48{bottom:623.618667pt;}
.yd9{bottom:624.765333pt;}
.y7c{bottom:625.164000pt;}
.y129{bottom:627.713333pt;}
.y1af{bottom:628.192000pt;}
.y14a{bottom:629.677333pt;}
.y187{bottom:630.469333pt;}
.yff{bottom:636.321333pt;}
.yab{bottom:636.720000pt;}
.y149{bottom:636.984000pt;}
.y1e1{bottom:640.506667pt;}
.y47{bottom:640.913333pt;}
.yd8{bottom:641.502667pt;}
.y7b{bottom:641.901333pt;}
.y1ae{bottom:643.813333pt;}
.y186{bottom:645.081333pt;}
.y6{bottom:645.598667pt;}
.y128{bottom:648.728000pt;}
.yfe{bottom:653.058667pt;}
.yaa{bottom:653.457333pt;}
.y1e0{bottom:655.848000pt;}
.y46{bottom:658.209333pt;}
.yd7{bottom:658.240000pt;}
.y7a{bottom:658.638667pt;}
.y183{bottom:659.692000pt;}
.y148{bottom:665.302667pt;}
.y3{bottom:668.977329pt;}
.y127{bottom:669.741333pt;}
.yfd{bottom:669.796000pt;}
.ya9{bottom:670.194667pt;}
.y1df{bottom:671.190667pt;}
.y185{bottom:674.304000pt;}
.yd6{bottom:674.977333pt;}
.y79{bottom:675.376000pt;}
.y45{bottom:675.504000pt;}
.y201{bottom:682.482667pt;}
.yfc{bottom:686.533333pt;}
.ya8{bottom:686.932000pt;}
.y184{bottom:688.916000pt;}
.y126{bottom:690.756000pt;}
.yd5{bottom:691.714667pt;}
.y78{bottom:692.113333pt;}
.y44{bottom:692.798667pt;}
.y147{bottom:696.066667pt;}
.y200{bottom:697.825333pt;}
.y1de{bottom:701.876000pt;}
.yfb{bottom:703.270667pt;}
.ya7{bottom:703.669333pt;}
.yd4{bottom:708.452000pt;}
.y77{bottom:708.850667pt;}
.y182{bottom:709.930667pt;}
.y43{bottom:710.094667pt;}
.y125{bottom:711.769333pt;}
.y1ff{bottom:713.166667pt;}
.y1dd{bottom:717.218667pt;}
.yfa{bottom:720.008000pt;}
.ya6{bottom:720.406667pt;}
.y181{bottom:724.542667pt;}
.yd3{bottom:725.189333pt;}
.y76{bottom:725.588000pt;}
.y42{bottom:727.389333pt;}
.y1dc{bottom:732.561333pt;}
.y124{bottom:732.784000pt;}
.yf9{bottom:736.745333pt;}
.ya5{bottom:737.144000pt;}
.y180{bottom:739.154667pt;}
.yd2{bottom:741.926667pt;}
.y75{bottom:742.324000pt;}
.y41{bottom:744.684000pt;}
.y1db{bottom:747.904000pt;}
.yf8{bottom:753.482667pt;}
.y17f{bottom:753.765333pt;}
.y123{bottom:753.797333pt;}
.ya4{bottom:753.881333pt;}
.yd1{bottom:758.664000pt;}
.y74{bottom:759.061333pt;}
.y40{bottom:761.980000pt;}
.y1da{bottom:763.246667pt;}
.y17a{bottom:768.377333pt;}
.yf7{bottom:770.220000pt;}
.ya3{bottom:770.618667pt;}
.y122{bottom:774.812000pt;}
.y16e{bottom:775.401333pt;}
.y73{bottom:775.798667pt;}
.y1d9{bottom:778.589333pt;}
.y3f{bottom:779.274667pt;}
.yd0{bottom:779.385333pt;}
.y2{bottom:781.661334pt;}
.y17e{bottom:782.989333pt;}
.yf6{bottom:786.957333pt;}
.ya2{bottom:787.356000pt;}
.y16d{bottom:792.138667pt;}
.y72{bottom:792.536000pt;}
.y1d8{bottom:793.930667pt;}
.y121{bottom:795.825333pt;}
.y17d{bottom:797.601333pt;}
.ya1{bottom:804.093333pt;}
.yf5{bottom:807.680000pt;}
.y16c{bottom:808.874667pt;}
.y71{bottom:809.273333pt;}
.y17c{bottom:812.213333pt;}
.y3e{bottom:813.573333pt;}
.y120{bottom:816.840000pt;}
.ya0{bottom:820.830667pt;}
.y1d7{bottom:824.616000pt;}
.y16b{bottom:825.612000pt;}
.y70{bottom:826.010667pt;}
.y17b{bottom:826.825333pt;}
.y3d{bottom:831.777333pt;}
.y9f{bottom:837.568000pt;}
.y11f{bottom:837.853333pt;}
.y1d6{bottom:839.958667pt;}
.y16a{bottom:842.349333pt;}
.y6f{bottom:842.748000pt;}
.y3c{bottom:846.122667pt;}
.y179{bottom:847.838667pt;}
.y9e{bottom:854.305333pt;}
.y1d5{bottom:855.301333pt;}
.y11e{bottom:858.868000pt;}
.y169{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6e{bottom:859.485333pt;}
.y1d4{bottom:870.644000pt;}
.y9d{bottom:871.042667pt;}
.y1ac{bottom:875.824000pt;}
.y6d{bottom:876.222667pt;}
.y178{bottom:878.602667pt;}
.y168{bottom:879.809333pt;}
.y11d{bottom:879.881333pt;}
.y3b{bottom:885.836000pt;}
.y1d3{bottom:885.986667pt;}
.y9c{bottom:887.780000pt;}
.y1ab{bottom:892.561333pt;}
.y6c{bottom:892.960000pt;}
.y11c{bottom:900.896000pt;}
.y1d2{bottom:901.329333pt;}
.y9b{bottom:904.517333pt;}
.y1aa{bottom:909.298667pt;}
.y6b{bottom:909.697333pt;}
.y1d1{bottom:916.670667pt;}
.y9a{bottom:921.254667pt;}
.y3a{bottom:921.320000pt;}
.y11b{bottom:921.909333pt;}
.y6a{bottom:926.434667pt;}
.y1a9{bottom:930.021333pt;}
.y1d0{bottom:932.013333pt;}
.y99{bottom:937.992000pt;}
.y11a{bottom:942.924000pt;}
.y69{bottom:943.172000pt;}
.y39{bottom:946.425333pt;}
.y1cf{bottom:947.356000pt;}
.y98{bottom:954.729333pt;}
.y68{bottom:959.909333pt;}
.y1ce{bottom:962.698667pt;}
.y119{bottom:963.937333pt;}
.y38{bottom:971.530667pt;}
.y97{bottom:975.450667pt;}
.y67{bottom:976.646667pt;}
.y1cd{bottom:978.041333pt;}
.y66{bottom:993.384000pt;}
.y118{bottom:994.700000pt;}
.y35{bottom:1010.186667pt;}
.y65{bottom:1046.810667pt;}
.h11{height:27.672303pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hb{height:32.284045pt;}
.h18{height:34.430976pt;}
.h12{height:36.896250pt;}
.h14{height:38.256384pt;}
.he{height:39.000258pt;}
.h7{height:40.853333pt;}
.h13{height:41.508454pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1b{height:43.660390pt;}
.h1d{height:43.897788pt;}
.hc{height:45.271688pt;}
.h15{height:46.120196pt;}
.h10{height:48.360277pt;}
.h16{height:48.511220pt;}
.h2{height:49.024000pt;}
.h1c{height:52.169788pt;}
.hd{height:54.767117pt;}
.h17{height:57.970863pt;}
.hf{height:68.861952pt;}
.h5{height:69.450667pt;}
.h19{height:70.729788pt;}
.h1a{height:70.735121pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.xe{left:57.333333pt;}
.xd{left:60.322667pt;}
.x3e{left:61.653333pt;}
.x12{left:70.560000pt;}
.x57{left:75.973333pt;}
.x17{left:78.342667pt;}
.x11{left:86.166667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x15{left:102.276000pt;}
.x55{left:104.148000pt;}
.xc{left:163.061333pt;}
.x4{left:180.874667pt;}
.x58{left:191.449333pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.x2e{left:225.593333pt;}
.xf{left:230.560000pt;}
.x2f{left:240.813333pt;}
.xa{left:250.204000pt;}
.x40{left:259.358667pt;}
.x41{left:262.162667pt;}
.x42{left:266.550667pt;}
.x19{left:269.322667pt;}
.x4c{left:271.069333pt;}
.x43{left:272.116000pt;}
.x44{left:273.502667pt;}
.x18{left:274.680000pt;}
.x4b{left:278.110667pt;}
.x3f{left:281.129333pt;}
.x1a{left:284.542667pt;}
.x45{left:285.804000pt;}
.x51{left:289.869333pt;}
.x50{left:296.958667pt;}
.x3a{left:298.981333pt;}
.x13{left:304.364000pt;}
.x4d{left:336.529333pt;}
.x2a{left:349.460000pt;}
.x3d{left:356.500000pt;}
.x46{left:358.669333pt;}
.x2b{left:364.681333pt;}
.x30{left:374.005333pt;}
.x31{left:389.226667pt;}
.x3{left:404.408000pt;}
.x32{left:406.141333pt;}
.x26{left:411.802667pt;}
.x33{left:421.362667pt;}
.x27{left:427.024000pt;}
.x10{left:440.848000pt;}
.x28{left:484.054667pt;}
.x1f{left:493.233333pt;}
.x29{left:499.274667pt;}
.x36{left:505.834667pt;}
.x20{left:511.765333pt;}
.x14{left:520.734667pt;}
.x47{left:523.769333pt;}
.x48{left:525.813333pt;}
.x4a{left:527.217333pt;}
.x53{left:529.173333pt;}
.x16{left:531.694667pt;}
.xb{left:534.680000pt;}
.x1d{left:537.422667pt;}
.x49{left:539.418667pt;}
.x52{left:542.406667pt;}
.x56{left:544.510667pt;}
.x2c{left:550.801333pt;}
.x1e{left:552.642667pt;}
.x4f{left:554.290667pt;}
.x4e{left:556.824000pt;}
.x37{left:560.036000pt;}
.x2d{left:566.022667pt;}
.x38{left:575.256000pt;}
.x54{left:576.228000pt;}
.x24{left:599.705333pt;}
.x25{left:614.925333pt;}
.x3b{left:618.272000pt;}
.x3c{left:633.493333pt;}
.x21{left:683.369333pt;}
.x1b{left:699.276000pt;}
.x1c{left:714.496000pt;}
.x22{left:726.362667pt;}
.x34{left:727.398667pt;}
.x39{left:730.066667pt;}
.x23{left:741.582667pt;}
.x35{left:742.618667pt;}
}




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