
    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_9651c6f1abd78e18063ec802.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_f2e252c21cef2109ebb8c217.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_5b415526a54bbac90ab1038e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_777db10e7bee5666250575e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_20161f3a8cc6c22f15b23d4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_638979962e33d309c6c26b55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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;}
.m4{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);}
.m25{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);}
.mc{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);}
.mb{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);}
.m13{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);}
.m5{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);}
.m26{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);}
.m15{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);}
.m1a{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);}
.m23{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);}
.m7{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);}
.m19{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);}
.m17{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);}
.m1d{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);}
.m9{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);}
.m11{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);}
.m1{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);}
.m16{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);}
.m10{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);}
.m22{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);}
.mf{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);}
.m1f{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);}
.m28{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);}
.m27{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);}
.m21{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);}
.m6{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);}
.m20{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);}
.m1e{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);}
.m18{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);}
.m3{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);}
.m24{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);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m14{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);}
.m1b{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);}
.m1c{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);}
.ma{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.004800px;}
.ls4{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls2{letter-spacing:11.954850px;}
.ls12{letter-spacing:13.436004px;}
.lsc{letter-spacing:13.445714px;}
.lsd{letter-spacing:13.448400px;}
.ls11{letter-spacing:13.454400px;}
.lse{letter-spacing:13.585694px;}
.lsf{letter-spacing:13.675273px;}
.lsa{letter-spacing:14.704798px;}
.ls5{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.lsb{letter-spacing:15.063451px;}
.ls6{letter-spacing:15.183002px;}
.ls8{letter-spacing:15.242778px;}
.ls7{letter-spacing:16.318739px;}
.ls0{letter-spacing:41.687510px;}
.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;}
}
.ws0{word-spacing:-28.532313px;}
.ws62{word-spacing:-14.943900px;}
.wsab{word-spacing:-13.449600px;}
.ws1f{word-spacing:-11.955150px;}
.ws71{word-spacing:-3.347434px;}
.ws9f{word-spacing:-3.227882px;}
.ws95{word-spacing:-2.988780px;}
.wsd{word-spacing:-2.929004px;}
.ws84{word-spacing:-2.809453px;}
.ws73{word-spacing:-2.749678px;}
.ws66{word-spacing:-2.689902px;}
.ws38{word-spacing:-2.450800px;}
.ws2c{word-spacing:-2.211697px;}
.wscd{word-spacing:-1.990541px;}
.ws4{word-spacing:-1.908367px;}
.ws8b{word-spacing:-1.793268px;}
.ws91{word-spacing:-1.673717px;}
.ws85{word-spacing:-1.613941px;}
.ws60{word-spacing:-1.554166px;}
.ws3{word-spacing:-1.322630px;}
.ws9e{word-spacing:-1.315063px;}
.ws86{word-spacing:-1.255288px;}
.wsdd{word-spacing:-1.237363px;}
.ws34{word-spacing:-1.135736px;}
.wsc0{word-spacing:-1.022170px;}
.ws5c{word-spacing:-1.016185px;}
.ws82{word-spacing:-0.956410px;}
.wsd3{word-spacing:-0.914573px;}
.ws97{word-spacing:-0.896634px;}
.ws5b{word-spacing:-0.777083px;}
.ws45{word-spacing:-0.717307px;}
.ws42{word-spacing:-0.597756px;}
.ws37{word-spacing:-0.537980px;}
.ws7c{word-spacing:-0.478205px;}
.ws61{word-spacing:-0.418429px;}
.ws1b{word-spacing:-0.358654px;}
.ws14{word-spacing:-0.298878px;}
.wsbb{word-spacing:-0.268992px;}
.ws32{word-spacing:-0.239102px;}
.wsd6{word-spacing:-0.215194px;}
.wsf{word-spacing:-0.179327px;}
.wsb9{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.119551px;}
.wsa9{word-spacing:-0.107597px;}
.wsb{word-spacing:-0.059776px;}
.wsac{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.ws1{word-spacing:0.000000px;}
.wsa8{word-spacing:0.053798px;}
.ws5{word-spacing:0.059776px;}
.wsaa{word-spacing:0.107597px;}
.ws10{word-spacing:0.119551px;}
.wsad{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.wsae{word-spacing:0.215194px;}
.ws1c{word-spacing:0.239102px;}
.wsa7{word-spacing:0.268992px;}
.wse{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.ws2a{word-spacing:0.418429px;}
.wsc2{word-spacing:0.430387px;}
.ws7f{word-spacing:0.478205px;}
.wsc7{word-spacing:0.484186px;}
.ws5d{word-spacing:0.537980px;}
.wsde{word-spacing:0.537984px;}
.ws57{word-spacing:0.717307px;}
.ws96{word-spacing:0.777083px;}
.ws6f{word-spacing:0.896634px;}
.wsc9{word-spacing:0.914573px;}
.ws8d{word-spacing:0.956410px;}
.ws9b{word-spacing:1.016185px;}
.ws94{word-spacing:1.075961px;}
.ws30{word-spacing:1.135736px;}
.wsa3{word-spacing:1.195512px;}
.ws6d{word-spacing:1.255288px;}
.wsd5{word-spacing:1.291162px;}
.ws46{word-spacing:1.315063px;}
.wsb8{word-spacing:1.344960px;}
.wsa{word-spacing:1.374839px;}
.wsd4{word-spacing:1.398758px;}
.ws5e{word-spacing:1.434614px;}
.ws92{word-spacing:1.494390px;}
.wsa4{word-spacing:1.554166px;}
.ws9{word-spacing:1.613941px;}
.wsb7{word-spacing:1.667750px;}
.ws6c{word-spacing:1.673717px;}
.ws6b{word-spacing:1.793268px;}
.ws5a{word-spacing:1.853044px;}
.ws27{word-spacing:1.912819px;}
.ws5f{word-spacing:1.972595px;}
.wse5{word-spacing:1.990541px;}
.wsb3{word-spacing:2.032370px;}
.wsb0{word-spacing:2.092146px;}
.ws3b{word-spacing:2.151922px;}
.wsce{word-spacing:2.151936px;}
.ws9d{word-spacing:2.211697px;}
.ws12{word-spacing:2.271473px;}
.ws56{word-spacing:2.331248px;}
.ws55{word-spacing:2.391024px;}
.ws3d{word-spacing:2.450800px;}
.ws76{word-spacing:2.510575px;}
.ws4e{word-spacing:2.570351px;}
.ws2f{word-spacing:2.630126px;}
.ws9c{word-spacing:2.689902px;}
.ws75{word-spacing:2.749678px;}
.ws93{word-spacing:2.869229px;}
.ws16{word-spacing:2.988780px;}
.ws47{word-spacing:3.048556px;}
.ws88{word-spacing:3.168107px;}
.ws6a{word-spacing:3.227882px;}
.ws2{word-spacing:3.227904px;}
.wscf{word-spacing:3.281702px;}
.ws81{word-spacing:3.287658px;}
.ws7b{word-spacing:3.347434px;}
.ws1d{word-spacing:3.407209px;}
.ws87{word-spacing:3.526760px;}
.ws13{word-spacing:3.586536px;}
.ws69{word-spacing:3.646312px;}
.ws8e{word-spacing:3.706087px;}
.ws48{word-spacing:3.765863px;}
.ws15{word-spacing:3.825638px;}
.ws8a{word-spacing:3.885414px;}
.wsbc{word-spacing:3.927283px;}
.ws52{word-spacing:3.945190px;}
.wsb5{word-spacing:4.004965px;}
.ws90{word-spacing:4.064741px;}
.ws77{word-spacing:4.124516px;}
.ws72{word-spacing:4.244068px;}
.ws19{word-spacing:4.303843px;}
.wsd2{word-spacing:4.303872px;}
.ws4f{word-spacing:4.363619px;}
.wscb{word-spacing:4.411469px;}
.ws64{word-spacing:4.423394px;}
.wsa5{word-spacing:4.483170px;}
.ws9a{word-spacing:4.542946px;}
.ws74{word-spacing:4.662497px;}
.ws29{word-spacing:4.722272px;}
.ws67{word-spacing:4.782048px;}
.ws8f{word-spacing:4.841824px;}
.ws36{word-spacing:4.901599px;}
.wse4{word-spacing:4.949453px;}
.ws70{word-spacing:4.961375px;}
.wse3{word-spacing:5.057050px;}
.ws1a{word-spacing:5.080926px;}
.ws89{word-spacing:5.320028px;}
.wsb1{word-spacing:5.439580px;}
.wsaf{word-spacing:5.499355px;}
.ws68{word-spacing:5.618906px;}
.ws4c{word-spacing:5.738458px;}
.ws35{word-spacing:5.858009px;}
.wsdc{word-spacing:5.864026px;}
.ws8c{word-spacing:6.037336px;}
.wsd9{word-spacing:6.079219px;}
.ws44{word-spacing:6.097111px;}
.ws7a{word-spacing:6.156887px;}
.wsc6{word-spacing:6.186816px;}
.wsba{word-spacing:6.294413px;}
.ws33{word-spacing:6.336214px;}
.ws79{word-spacing:6.395989px;}
.ws4a{word-spacing:6.515540px;}
.ws78{word-spacing:6.575316px;}
.wsbd{word-spacing:6.724800px;}
.ws8{word-spacing:6.754643px;}
.ws2e{word-spacing:6.874194px;}
.wsb6{word-spacing:7.053521px;}
.ws21{word-spacing:7.173072px;}
.ws83{word-spacing:7.292623px;}
.wsca{word-spacing:7.477978px;}
.ws99{word-spacing:7.651277px;}
.ws6e{word-spacing:7.890379px;}
.ws51{word-spacing:7.950155px;}
.ws7{word-spacing:8.009930px;}
.wsc{word-spacing:8.189257px;}
.wsd8{word-spacing:8.284954px;}
.ws28{word-spacing:8.308808px;}
.ws49{word-spacing:8.667462px;}
.wsdb{word-spacing:8.876736px;}
.ws53{word-spacing:8.966340px;}
.wscc{word-spacing:9.038131px;}
.wsc5{word-spacing:9.091930px;}
.wsd7{word-spacing:9.139277px;}
.wsa0{word-spacing:9.145667px;}
.wse0{word-spacing:9.629914px;}
.ws63{word-spacing:10.161852px;}
.ws2d{word-spacing:10.580281px;}
.ws54{word-spacing:10.879159px;}
.ws43{word-spacing:11.178037px;}
.wsb4{word-spacing:11.237813px;}
.ws11{word-spacing:11.417140px;}
.wsd0{word-spacing:11.459059px;}
.ws3e{word-spacing:11.536691px;}
.ws4b{word-spacing:11.596466px;}
.ws7e{word-spacing:11.835569px;}
.ws1e{word-spacing:11.910929px;}
.ws7d{word-spacing:12.014896px;}
.ws39{word-spacing:12.134447px;}
.ws6{word-spacing:12.194222px;}
.ws26{word-spacing:12.313774px;}
.wsb2{word-spacing:12.552876px;}
.ws3a{word-spacing:12.732203px;}
.ws31{word-spacing:12.791978px;}
.wsa2{word-spacing:13.031081px;}
.wse2{word-spacing:13.392192px;}
.wsc3{word-spacing:13.392720px;}
.wsc1{word-spacing:13.395802px;}
.wsdf{word-spacing:13.933786px;}
.ws65{word-spacing:14.107042px;}
.ws98{word-spacing:14.405920px;}
.wsa6{word-spacing:14.585246px;}
.ws3f{word-spacing:14.884124px;}
.ws3c{word-spacing:14.943900px;}
.ws17{word-spacing:16.438290px;}
.wsda{word-spacing:16.615210px;}
.wsbe{word-spacing:16.623706px;}
.wsd1{word-spacing:16.946496px;}
.ws41{word-spacing:16.976270px;}
.wsc8{word-spacing:17.215488px;}
.wse1{word-spacing:17.430682px;}
.ws40{word-spacing:17.872904px;}
.ws4d{word-spacing:18.052231px;}
.ws80{word-spacing:18.470660px;}
.wsa1{word-spacing:19.427070px;}
.wsbf{word-spacing:20.550989px;}
.wsc4{word-spacing:20.604787px;}
.ws18{word-spacing:21.100787px;}
.ws58{word-spacing:21.459440px;}
.ws50{word-spacing:21.698543px;}
.ws59{word-spacing:22.116972px;}
.ws25{word-spacing:22.541530px;}
.ws24{word-spacing:23.240909px;}
._0{margin-left:-11.943245px;}
._1f{margin-left:-7.746865px;}
._4{margin-left:-5.917824px;}
._17{margin-left:-4.542946px;}
._d{margin-left:-3.466985px;}
._5{margin-left:-1.936742px;}
._8{width:1.091170px;}
._27{width:2.659516px;}
._2c{width:3.700985px;}
._1c{width:5.212406px;}
._2d{width:12.242249px;}
._6{width:13.449600px;}
._10{width:14.824386px;}
._7{width:16.677504px;}
._e{width:18.100078px;}
._13{width:19.152115px;}
._f{width:20.706281px;}
._1e{width:22.403921px;}
._c{width:23.515734px;}
._a{width:25.045976px;}
._14{width:26.408886px;}
._15{width:28.273859px;}
._9{width:29.373782px;}
._1a{width:31.418003px;}
._1{width:33.355008px;}
._23{width:34.430785px;}
._19{width:36.068610px;}
._16{width:37.706474px;}
._b{width:39.451896px;}
._21{width:41.603818px;}
._2e{width:47.420468px;}
._2a{width:48.902746px;}
._2f{width:51.449728px;}
._20{width:54.455532px;}
._1b{width:56.320505px;}
._18{width:57.707377px;}
._2{width:69.368117px;}
._2b{width:70.744896px;}
._1d{width:73.332772px;}
._30{width:76.532806px;}
._29{width:78.784738px;}
._26{width:81.343181px;}
._3{width:84.316158px;}
._28{width:86.477909px;}
._25{width:479.289946px;}
._24{width:591.405811px;}
._11{width:897.973427px;}
._22{width:2000.762700px;}
._12{width:2024.672700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs5{font-size:41.936104px;}
.fs4{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.yf{bottom:3.425340px;}
.ye{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y31{bottom:63.780000px;}
.y30{bottom:108.612000px;}
.y12f{bottom:116.076000px;}
.y9f{bottom:116.607000px;}
.yca{bottom:119.863500px;}
.y14f{bottom:121.816500px;}
.y22d{bottom:128.325000px;}
.y2f{bottom:128.875500px;}
.y75{bottom:129.936000px;}
.y162{bottom:131.557500px;}
.y1fa{bottom:133.927500px;}
.y12e{bottom:136.339500px;}
.y9e{bottom:136.870500px;}
.y47{bottom:140.098500px;}
.yc9{bottom:140.128500px;}
.y14e{bottom:142.080000px;}
.y1d7{bottom:142.230000px;}
.y11c{bottom:144.274500px;}
.y22c{bottom:147.691500px;}
.y2e{bottom:149.139000px;}
.y74{bottom:150.201000px;}
.y161{bottom:151.822500px;}
.y1f9{bottom:153.295500px;}
.y12d{bottom:156.604500px;}
.y9d{bottom:157.134000px;}
.y46{bottom:160.362000px;}
.yc8{bottom:160.392000px;}
.yf7{bottom:161.145000px;}
.y14d{bottom:162.345000px;}
.y1d6{bottom:162.493500px;}
.y11b{bottom:164.538000px;}
.y22b{bottom:167.059500px;}
.y2d{bottom:169.404000px;}
.y73{bottom:170.464500px;}
.y160{bottom:172.086000px;}
.y1f8{bottom:172.662000px;}
.y12c{bottom:176.868000px;}
.y9c{bottom:177.399000px;}
.y45{bottom:180.625500px;}
.yc7{bottom:180.657000px;}
.yf6{bottom:181.410000px;}
.y14c{bottom:182.608500px;}
.y1d5{bottom:182.758500px;}
.y11a{bottom:184.801500px;}
.y22a{bottom:186.427500px;}
.y2c{bottom:189.667500px;}
.y72{bottom:190.728000px;}
.y1f7{bottom:192.030000px;}
.y15f{bottom:192.349500px;}
.y12b{bottom:197.133000px;}
.y9b{bottom:197.662500px;}
.y44{bottom:200.890500px;}
.yc6{bottom:200.920500px;}
.yf5{bottom:201.673500px;}
.y151{bottom:202.435500px;}
.y14b{bottom:202.872000px;}
.y1d4{bottom:203.022000px;}
.y119{bottom:205.066500px;}
.y229{bottom:205.794000px;}
.y2b{bottom:209.932500px;}
.y71{bottom:210.993000px;}
.y1f6{bottom:211.396500px;}
.y15e{bottom:212.614500px;}
.y12a{bottom:217.396500px;}
.y9a{bottom:217.927500px;}
.yc5{bottom:221.184000px;}
.yf4{bottom:221.937000px;}
.y43{bottom:222.649500px;}
.y14a{bottom:223.137000px;}
.y1d3{bottom:223.285500px;}
.y228{bottom:225.162000px;}
.y118{bottom:225.330000px;}
.y2a{bottom:230.196000px;}
.y1f5{bottom:230.764500px;}
.y70{bottom:231.256500px;}
.y15d{bottom:232.878000px;}
.y129{bottom:237.660000px;}
.y99{bottom:238.191000px;}
.y176{bottom:240.904500px;}
.yc4{bottom:241.449000px;}
.yf3{bottom:242.202000px;}
.y42{bottom:242.913000px;}
.y149{bottom:243.400500px;}
.y1d2{bottom:243.550500px;}
.y227{bottom:244.528500px;}
.y117{bottom:245.595000px;}
.y1f4{bottom:250.132500px;}
.y29{bottom:250.459500px;}
.y6f{bottom:251.521500px;}
.y15c{bottom:253.143000px;}
.y128{bottom:257.925000px;}
.y98{bottom:258.454500px;}
.y175{bottom:261.169500px;}
.yc3{bottom:261.712500px;}
.yf2{bottom:262.465500px;}
.y41{bottom:263.176500px;}
.y148{bottom:263.665500px;}
.y1d1{bottom:263.814000px;}
.y226{bottom:263.896500px;}
.y195{bottom:264.970500px;}
.y116{bottom:265.858500px;}
.y1f3{bottom:269.499000px;}
.y28{bottom:270.724500px;}
.y6e{bottom:271.785000px;}
.y15b{bottom:273.406500px;}
.y127{bottom:278.188500px;}
.y97{bottom:278.719500px;}
.y174{bottom:281.433000px;}
.yc2{bottom:281.977500px;}
.yf1{bottom:282.730500px;}
.y225{bottom:283.264500px;}
.y40{bottom:283.441500px;}
.y147{bottom:283.929000px;}
.y1d0{bottom:284.079000px;}
.y194{bottom:285.234000px;}
.y1f2{bottom:288.867000px;}
.y27{bottom:290.988000px;}
.y6d{bottom:292.048500px;}
.y115{bottom:295.089000px;}
.y126{bottom:298.453500px;}
.y96{bottom:298.983000px;}
.y173{bottom:301.696500px;}
.yc1{bottom:302.241000px;}
.y224{bottom:302.631000px;}
.y15a{bottom:302.637000px;}
.yf0{bottom:302.994000px;}
.y3f{bottom:303.705000px;}
.y146{bottom:304.192500px;}
.y1cf{bottom:304.342500px;}
.y193{bottom:305.499000px;}
.y1f0{bottom:308.233500px;}
.y1f1{bottom:308.235000px;}
.y26{bottom:311.253000px;}
.y6c{bottom:312.313500px;}
.y125{bottom:318.717000px;}
.y95{bottom:319.248000px;}
.y172{bottom:321.961500px;}
.y223{bottom:321.999000px;}
.yc0{bottom:322.504500px;}
.yef{bottom:323.257500px;}
.y145{bottom:324.457500px;}
.y1ce{bottom:324.606000px;}
.y192{bottom:325.762500px;}
.y1ef{bottom:327.601500px;}
.y114{bottom:329.908500px;}
.y25{bottom:331.516500px;}
.y6b{bottom:332.577000px;}
.y159{bottom:334.260000px;}
.y3e{bottom:335.925000px;}
.y124{bottom:338.980500px;}
.y94{bottom:339.511500px;}
.y222{bottom:341.367000px;}
.y171{bottom:342.225000px;}
.ybf{bottom:342.769500px;}
.yee{bottom:343.522500px;}
.y144{bottom:344.721000px;}
.y1cd{bottom:344.871000px;}
.y191{bottom:346.027500px;}
.y1ee{bottom:346.969500px;}
.y113{bottom:350.172000px;}
.y24{bottom:351.780000px;}
.y6a{bottom:352.842000px;}
.y3d{bottom:356.188500px;}
.y123{bottom:359.245500px;}
.y93{bottom:359.775000px;}
.y221{bottom:360.733500px;}
.y170{bottom:362.490000px;}
.ybe{bottom:363.033000px;}
.yed{bottom:363.786000px;}
.y143{bottom:364.986000px;}
.y190{bottom:366.291000px;}
.y1ed{bottom:366.336000px;}
.y112{bottom:370.437000px;}
.y23{bottom:372.045000px;}
.y69{bottom:373.105500px;}
.y1cc{bottom:374.101500px;}
.y3c{bottom:376.452000px;}
.y122{bottom:379.509000px;}
.y92{bottom:380.040000px;}
.y220{bottom:380.101500px;}
.y16f{bottom:382.753500px;}
.ybd{bottom:383.298000px;}
.yec{bottom:384.051000px;}
.y142{bottom:385.249500px;}
.y1ec{bottom:385.704000px;}
.y18f{bottom:386.554500px;}
.y111{bottom:390.700500px;}
.y186{bottom:392.308500px;}
.y68{bottom:393.369000px;}
.y3b{bottom:396.717000px;}
.y21f{bottom:399.468000px;}
.y121{bottom:399.774000px;}
.y91{bottom:400.303500px;}
.y22{bottom:401.275500px;}
.y16e{bottom:403.017000px;}
.ybc{bottom:403.561500px;}
.yeb{bottom:404.314500px;}
.y1eb{bottom:405.072000px;}
.y141{bottom:405.513000px;}
.y18e{bottom:406.819500px;}
.y110{bottom:410.965500px;}
.y185{bottom:412.573500px;}
.y67{bottom:413.634000px;}
.y1cb{bottom:417.621000px;}
.y21e{bottom:418.836000px;}
.y120{bottom:420.037500px;}
.y90{bottom:420.568500px;}
.y16d{bottom:423.282000px;}
.ybb{bottom:423.825000px;}
.y1ea{bottom:424.438500px;}
.yea{bottom:424.578000px;}
.y140{bottom:425.778000px;}
.y1c7{bottom:425.839500px;}
.y18d{bottom:427.083000px;}
.y10f{bottom:431.229000px;}
.y3a{bottom:431.716500px;}
.y184{bottom:432.837000px;}
.y66{bottom:433.897500px;}
.y1ca{bottom:434.058000px;}
.y21d{bottom:438.204000px;}
.y11f{bottom:440.301000px;}
.y8f{bottom:440.832000px;}
.y1c6{bottom:442.278000px;}
.y16c{bottom:443.545500px;}
.y1e9{bottom:443.806500px;}
.yba{bottom:444.090000px;}
.ye9{bottom:444.843000px;}
.y13f{bottom:446.041500px;}
.y18c{bottom:447.348000px;}
.ye0{bottom:449.799000px;}
.y1c9{bottom:450.496500px;}
.y39{bottom:450.949500px;}
.y10e{bottom:451.492500px;}
.y183{bottom:453.100500px;}
.y65{bottom:454.162500px;}
.y21c{bottom:457.570500px;}
.y1c5{bottom:458.716500px;}
.y11e{bottom:460.566000px;}
.y8e{bottom:461.095500px;}
.y1e8{bottom:463.173000px;}
.y16b{bottom:463.810500px;}
.yb9{bottom:464.353500px;}
.ye8{bottom:465.106500px;}
.y13e{bottom:466.306500px;}
.y1c8{bottom:466.935000px;}
.y18b{bottom:467.611500px;}
.y10d{bottom:471.757500px;}
.y182{bottom:473.365500px;}
.y64{bottom:474.426000px;}
.y21b{bottom:476.938500px;}
.y21{bottom:477.684000px;}
.y8d{bottom:481.360500px;}
.y1e7{bottom:482.541000px;}
.y16a{bottom:484.074000px;}
.yb8{bottom:484.618500px;}
.ye7{bottom:485.371500px;}
.y13d{bottom:486.570000px;}
.y18a{bottom:487.875000px;}
.y153{bottom:490.326000px;}
.y1c4{bottom:490.875000px;}
.y10c{bottom:492.021000px;}
.y181{bottom:493.629000px;}
.y63{bottom:494.689500px;}
.y11d{bottom:495.565500px;}
.y21a{bottom:496.305000px;}
.y20{bottom:497.947500px;}
.y8c{bottom:501.624000px;}
.y1e6{bottom:501.909000px;}
.y169{bottom:504.337500px;}
.yb7{bottom:504.882000px;}
.ye6{bottom:505.635000px;}
.y13c{bottom:506.833500px;}
.y1c3{bottom:507.313500px;}
.y189{bottom:508.140000px;}
.y10b{bottom:512.286000px;}
.y180{bottom:513.894000px;}
.y62{bottom:514.954500px;}
.y219{bottom:515.673000px;}
.y8b{bottom:521.889000px;}
.y1c2{bottom:523.752000px;}
.y168{bottom:524.602500px;}
.yb6{bottom:525.145500px;}
.ye5{bottom:525.898500px;}
.y13b{bottom:527.098500px;}
.y188{bottom:528.403500px;}
.y1e5{bottom:530.242500px;}
.y10a{bottom:532.549500px;}
.ydf{bottom:534.112500px;}
.y17f{bottom:534.157500px;}
.y218{bottom:535.041000px;}
.y61{bottom:535.218000px;}
.y1f{bottom:536.145000px;}
.y8a{bottom:542.152500px;}
.y167{bottom:544.866000px;}
.yb5{bottom:545.410500px;}
.ye4{bottom:546.163500px;}
.y13a{bottom:547.362000px;}
.y1be{bottom:547.692000px;}
.y187{bottom:548.667000px;}
.y109{bottom:552.813000px;}
.y233{bottom:554.101500px;}
.y217{bottom:554.407500px;}
.y17e{bottom:554.421000px;}
.y60{bottom:555.483000px;}
.y1c1{bottom:555.910500px;}
.y1e{bottom:556.408500px;}
.y89{bottom:562.416000px;}
.y1bc{bottom:564.129000px;}
.y166{bottom:565.129500px;}
.yb4{bottom:565.674000px;}
.ye3{bottom:566.427000px;}
.y139{bottom:567.627000px;}
.yde{bottom:568.932000px;}
.y1e4{bottom:569.694000px;}
.y1c0{bottom:572.349000px;}
.y108{bottom:573.078000px;}
.y232{bottom:573.469500px;}
.y216{bottom:573.775500px;}
.y17d{bottom:574.686000px;}
.y5f{bottom:575.746500px;}
.y1d{bottom:576.672000px;}
.y1bb{bottom:580.567500px;}
.y88{bottom:582.681000px;}
.y165{bottom:585.394500px;}
.yb3{bottom:585.939000px;}
.ye2{bottom:586.692000px;}
.y138{bottom:587.890500px;}
.y1bf{bottom:588.787500px;}
.ydd{bottom:589.195500px;}
.y231{bottom:592.836000px;}
.y215{bottom:593.142000px;}
.y230{bottom:593.241000px;}
.y107{bottom:593.341500px;}
.y1e3{bottom:593.859000px;}
.y17c{bottom:594.949500px;}
.y5e{bottom:596.010000px;}
.y1c{bottom:596.937000px;}
.y1bd{bottom:597.006000px;}
.y87{bottom:602.944500px;}
.yb2{bottom:606.202500px;}
.y1e2{bottom:609.057000px;}
.ydc{bottom:609.460500px;}
.y214{bottom:612.510000px;}
.y106{bottom:613.606500px;}
.y164{bottom:614.625000px;}
.y17b{bottom:615.214500px;}
.y5d{bottom:616.275000px;}
.y137{bottom:617.121000px;}
.y1b{bottom:617.200500px;}
.y1ba{bottom:620.946000px;}
.ye1{bottom:621.691500px;}
.y22f{bottom:622.284000px;}
.y86{bottom:623.209500px;}
.yb1{bottom:626.466000px;}
.ydb{bottom:629.724000px;}
.y213{bottom:631.878000px;}
.y1e1{bottom:633.220500px;}
.y105{bottom:633.870000px;}
.y152{bottom:635.433000px;}
.y17a{bottom:635.478000px;}
.y5c{bottom:636.538500px;}
.y1b9{bottom:637.384500px;}
.y1a{bottom:637.465500px;}
.y22e{bottom:637.482000px;}
.y85{bottom:643.473000px;}
.y1b4{bottom:645.603000px;}
.y163{bottom:646.248000px;}
.yb0{bottom:646.731000px;}
.y1e0{bottom:648.418500px;}
.yda{bottom:649.987500px;}
.y212{bottom:651.244500px;}
.y136{bottom:651.940500px;}
.y150{bottom:652.399500px;}
.y1b8{bottom:653.823000px;}
.y104{bottom:654.133500px;}
.y179{bottom:655.741500px;}
.y5b{bottom:656.803500px;}
.y19{bottom:657.729000px;}
.y1b3{bottom:662.041500px;}
.y1df{bottom:663.618000px;}
.y84{bottom:663.736500px;}
.yaf{bottom:666.994500px;}
.yd9{bottom:670.252500px;}
.y1b0{bottom:670.261500px;}
.y211{bottom:670.612500px;}
.y135{bottom:672.204000px;}
.y103{bottom:674.398500px;}
.y5a{bottom:677.067000px;}
.y18{bottom:677.992500px;}
.y1b2{bottom:678.480000px;}
.y1de{bottom:678.816000px;}
.y83{bottom:684.001500px;}
.y178{bottom:684.972000px;}
.y1b7{bottom:686.700000px;}
.yae{bottom:687.258000px;}
.y210{bottom:689.979000px;}
.yd8{bottom:690.516000px;}
.y134{bottom:692.469000px;}
.y1dd{bottom:694.014000px;}
.y102{bottom:694.662000px;}
.y1b1{bottom:694.918500px;}
.y59{bottom:697.330500px;}
.y17{bottom:698.257500px;}
.y1b6{bottom:703.137000px;}
.y82{bottom:704.265000px;}
.yad{bottom:707.523000px;}
.y1dc{bottom:709.212000px;}
.y20f{bottom:709.347000px;}
.yd7{bottom:710.781000px;}
.y133{bottom:712.732500px;}
.y177{bottom:714.061500px;}
.y101{bottom:714.927000px;}
.y58{bottom:717.595500px;}
.y16{bottom:718.521000px;}
.y1b5{bottom:719.575500px;}
.y81{bottom:724.530000px;}
.yac{bottom:727.786500px;}
.y20e{bottom:728.715000px;}
.yd6{bottom:731.044500px;}
.y132{bottom:732.997500px;}
.y1db{bottom:733.375500px;}
.y100{bottom:735.190500px;}
.y57{bottom:737.859000px;}
.y15{bottom:738.786000px;}
.y1af{bottom:743.515500px;}
.y80{bottom:744.793500px;}
.yab{bottom:748.051500px;}
.y20d{bottom:748.081500px;}
.y1da{bottom:748.573500px;}
.yd5{bottom:751.308000px;}
.y131{bottom:753.261000px;}
.yff{bottom:755.454000px;}
.y56{bottom:758.122500px;}
.y14{bottom:759.049500px;}
.y1ad{bottom:759.954000px;}
.y1d9{bottom:763.771500px;}
.y7f{bottom:765.057000px;}
.y20c{bottom:767.449500px;}
.yaa{bottom:768.315000px;}
.yd4{bottom:771.573000px;}
.yfe{bottom:775.719000px;}
.y1ac{bottom:776.392500px;}
.y55{bottom:778.387500px;}
.y1d8{bottom:778.969500px;}
.y13{bottom:779.313000px;}
.y7e{bottom:785.322000px;}
.y20b{bottom:786.816000px;}
.y130{bottom:788.262000px;}
.ya9{bottom:788.578500px;}
.yd3{bottom:791.836500px;}
.y1ab{bottom:792.831000px;}
.yfd{bottom:795.982500px;}
.y54{bottom:798.651000px;}
.y12{bottom:799.578000px;}
.y7d{bottom:805.585500px;}
.y20a{bottom:806.184000px;}
.ya8{bottom:808.843500px;}
.y1aa{bottom:809.269500px;}
.yd2{bottom:812.101500px;}
.yfc{bottom:816.247500px;}
.y53{bottom:818.916000px;}
.y11{bottom:819.841500px;}
.y209{bottom:825.552000px;}
.y1ae{bottom:825.708000px;}
.y7c{bottom:825.849000px;}
.ya7{bottom:829.107000px;}
.yd1{bottom:832.365000px;}
.yfb{bottom:836.511000px;}
.y52{bottom:839.179500px;}
.y10{bottom:840.106500px;}
.y208{bottom:844.918500px;}
.y7b{bottom:846.114000px;}
.ya6{bottom:849.372000px;}
.y1a9{bottom:849.646500px;}
.yd0{bottom:852.628500px;}
.yfa{bottom:856.774500px;}
.y51{bottom:859.443000px;}
.y207{bottom:864.286500px;}
.y1a7{bottom:866.085000px;}
.y7a{bottom:866.377500px;}
.ya5{bottom:869.635500px;}
.ycf{bottom:872.893500px;}
.yd{bottom:875.311555px;}
.yc{bottom:875.706000px;}
.y50{bottom:879.708000px;}
.y1a6{bottom:882.523500px;}
.y206{bottom:883.653000px;}
.yf9{bottom:886.005000px;}
.ya4{bottom:889.899000px;}
.yce{bottom:893.157000px;}
.y79{bottom:895.608000px;}
.y1a8{bottom:898.962000px;}
.y4f{bottom:899.971500px;}
.y205{bottom:903.021000px;}
.ya3{bottom:910.164000px;}
.ycd{bottom:913.422000px;}
.yb{bottom:915.078000px;}
.yf8{bottom:917.628000px;}
.y4e{bottom:920.236500px;}
.y204{bottom:922.389000px;}
.y1a5{bottom:922.902000px;}
.y78{bottom:930.427500px;}
.ya{bottom:933.234000px;}
.ycc{bottom:933.685500px;}
.y1a3{bottom:939.340500px;}
.ya2{bottom:939.394500px;}
.y4d{bottom:940.500000px;}
.y203{bottom:941.755500px;}
.y1a0{bottom:947.559000px;}
.y77{bottom:950.692500px;}
.y9{bottom:951.391500px;}
.ycb{bottom:953.949000px;}
.y1a2{bottom:955.779000px;}
.y4c{bottom:960.763500px;}
.y202{bottom:961.123500px;}
.y19f{bottom:963.997500px;}
.y8{bottom:969.549000px;}
.y158{bottom:970.956000px;}
.y1a1{bottom:972.216000px;}
.ya1{bottom:974.214000px;}
.y76{bottom:979.923000px;}
.y201{bottom:980.490000px;}
.y4b{bottom:981.028500px;}
.y1a4{bottom:988.654500px;}
.y157{bottom:991.219500px;}
.ya0{bottom:994.477500px;}
.y7{bottom:996.445500px;}
.y200{bottom:999.858000px;}
.y156{bottom:1011.484500px;}
.y19b{bottom:1012.594500px;}
.y4a{bottom:1013.247000px;}
.y38{bottom:1014.742500px;}
.y1ff{bottom:1019.226000px;}
.y19e{bottom:1020.814500px;}
.y199{bottom:1029.033000px;}
.y155{bottom:1031.748000px;}
.y49{bottom:1033.512000px;}
.y37{bottom:1035.006000px;}
.y19d{bottom:1037.251500px;}
.y1fe{bottom:1038.592500px;}
.y6{bottom:1040.848500px;}
.y198{bottom:1045.471500px;}
.y19c{bottom:1053.690000px;}
.y48{bottom:1053.775500px;}
.y36{bottom:1055.269500px;}
.y1fd{bottom:1057.960500px;}
.y154{bottom:1060.978500px;}
.y19a{bottom:1061.910000px;}
.y5{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y1fc{bottom:1077.327000px;}
.y197{bottom:1085.923500px;}
.y34{bottom:1095.798000px;}
.y1fb{bottom:1096.695000px;}
.y4{bottom:1100.145000px;}
.y33{bottom:1116.063000px;}
.y196{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h8{height:25.508090px;}
.he{height:26.540366px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.hc{height:35.052500px;}
.hd{height:38.734848px;}
.h7{height:39.165235px;}
.hf{height:39.434227px;}
.h6{height:43.038432px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h2{height:50.931027px;}
.h3{height:77.379634px;}
.h5{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:29.274117px;}
.x2{left:58.054042px;}
.x56{left:112.561500px;}
.x1{left:114.802500px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x6c{left:124.507500px;}
.x6d{left:127.827000px;}
.x78{left:131.176500px;}
.x5a{left:133.105500px;}
.x7b{left:134.559000px;}
.x59{left:136.300500px;}
.x75{left:139.918500px;}
.x14{left:145.638000px;}
.xa{left:146.692500px;}
.x60{left:155.130000px;}
.x65{left:164.551500px;}
.x85{left:174.637500px;}
.x6e{left:180.381000px;}
.x7{left:188.358000px;}
.x2d{left:191.658000px;}
.x4c{left:193.500000px;}
.x7c{left:194.953500px;}
.x58{left:198.510000px;}
.x9{left:202.716000px;}
.x29{left:203.839500px;}
.x15{left:205.239000px;}
.x2e{left:206.602500px;}
.x4d{left:208.443000px;}
.x2f{left:210.262500px;}
.x16{left:212.710500px;}
.x18{left:218.293500px;}
.x46{left:223.285500px;}
.x19{left:225.766500px;}
.x13{left:227.179500px;}
.x86{left:241.173000px;}
.x17{left:244.758000px;}
.x8d{left:254.101500px;}
.x4a{left:257.337000px;}
.x20{left:260.236500px;}
.x2b{left:263.451000px;}
.x40{left:264.733500px;}
.x3d{left:270.106500px;}
.x55{left:271.990500px;}
.x21{left:275.179500px;}
.x41{left:279.676500px;}
.x49{left:283.665000px;}
.x27{left:289.248000px;}
.x4b{left:293.230500px;}
.x52{left:298.203000px;}
.x28{left:317.862000px;}
.x50{left:321.048000px;}
.x5b{left:333.783000px;}
.x66{left:335.367000px;}
.x71{left:338.002500px;}
.x61{left:340.531500px;}
.x47{left:342.012000px;}
.x7e{left:343.624500px;}
.x54{left:347.482500px;}
.x53{left:349.291500px;}
.x5c{left:351.405000px;}
.x79{left:352.467000px;}
.x48{left:356.956500px;}
.x70{left:358.539000px;}
.x7f{left:359.575500px;}
.x7d{left:360.805500px;}
.x57{left:362.634000px;}
.x6f{left:366.099000px;}
.x4e{left:368.113500px;}
.x80{left:373.879500px;}
.x67{left:375.754500px;}
.x76{left:381.801000px;}
.x5d{left:398.142000px;}
.x72{left:400.582500px;}
.xd{left:413.685000px;}
.x24{left:418.168500px;}
.xe{left:421.156500px;}
.x34{left:423.510000px;}
.x25{left:433.111500px;}
.x23{left:434.233500px;}
.x35{left:438.453000px;}
.xb{left:440.827500px;}
.xc{left:448.300500px;}
.x26{left:462.694500px;}
.xf{left:474.549000px;}
.x10{left:482.020500px;}
.x11{left:485.682000px;}
.x12{left:493.153500px;}
.x2c{left:497.995500px;}
.x83{left:515.677500px;}
.x3b{left:528.000000px;}
.x1a{left:534.312000px;}
.x1b{left:541.783500px;}
.x3c{left:542.944500px;}
.x5f{left:555.850500px;}
.x63{left:557.376000px;}
.x5e{left:558.519000px;}
.x68{left:559.567500px;}
.x69{left:562.909500px;}
.x30{left:563.995500px;}
.x73{left:567.429000px;}
.x6a{left:569.971500px;}
.x6b{left:571.564500px;}
.x77{left:574.059000px;}
.x62{left:575.109000px;}
.x31{left:578.940000px;}
.x32{left:582.642000px;}
.x44{left:587.128500px;}
.x42{left:589.041000px;}
.x81{left:591.450000px;}
.x33{left:597.586500px;}
.x45{left:602.073000px;}
.x43{left:603.985500px;}
.x64{left:618.120000px;}
.x82{left:621.018000px;}
.x74{left:623.983500px;}
.x3e{left:626.044500px;}
.x7a{left:627.258000px;}
.x4f{left:637.086000px;}
.x3f{left:640.987500px;}
.x1c{left:648.963000px;}
.x1d{left:656.436000px;}
.x8{left:662.011500px;}
.x38{left:664.665000px;}
.x89{left:667.755000px;}
.x39{left:679.609500px;}
.x87{left:682.747500px;}
.x3a{left:687.231000px;}
.x8b{left:690.805500px;}
.x8a{left:694.654500px;}
.x5{left:701.339982px;}
.x88{left:709.645500px;}
.x22{left:715.393500px;}
.x8c{left:717.705000px;}
.x84{left:741.036000px;}
.x2a{left:753.214500px;}
.x51{left:756.148500px;}
.x36{left:758.200500px;}
.x1e{left:763.620000px;}
.x1f{left:771.091500px;}
.x37{left:773.143500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004267pt;}
.ls4{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls2{letter-spacing:10.626533pt;}
.ls12{letter-spacing:11.943115pt;}
.lsc{letter-spacing:11.951746pt;}
.lsd{letter-spacing:11.954133pt;}
.ls11{letter-spacing:11.959467pt;}
.lse{letter-spacing:12.076173pt;}
.lsf{letter-spacing:12.155798pt;}
.lsa{letter-spacing:13.070931pt;}
.ls5{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.lsb{letter-spacing:13.389734pt;}
.ls6{letter-spacing:13.496002pt;}
.ls8{letter-spacing:13.549136pt;}
.ls7{letter-spacing:14.505546pt;}
.ls0{letter-spacing:37.055565pt;}
.ws0{word-spacing:-25.362056pt;}
.ws62{word-spacing:-13.283467pt;}
.wsab{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws71{word-spacing:-2.975497pt;}
.ws9f{word-spacing:-2.869229pt;}
.ws95{word-spacing:-2.656693pt;}
.wsd{word-spacing:-2.603559pt;}
.ws84{word-spacing:-2.497292pt;}
.ws73{word-spacing:-2.444158pt;}
.ws66{word-spacing:-2.391024pt;}
.ws38{word-spacing:-2.178489pt;}
.ws2c{word-spacing:-1.965953pt;}
.wscd{word-spacing:-1.769370pt;}
.ws4{word-spacing:-1.696326pt;}
.ws8b{word-spacing:-1.594016pt;}
.ws91{word-spacing:-1.487748pt;}
.ws85{word-spacing:-1.434614pt;}
.ws60{word-spacing:-1.381481pt;}
.ws3{word-spacing:-1.175671pt;}
.ws9e{word-spacing:-1.168945pt;}
.ws86{word-spacing:-1.115811pt;}
.wsdd{word-spacing:-1.099878pt;}
.ws34{word-spacing:-1.009543pt;}
.wsc0{word-spacing:-0.908595pt;}
.ws5c{word-spacing:-0.903276pt;}
.ws82{word-spacing:-0.850142pt;}
.wsd3{word-spacing:-0.812954pt;}
.ws97{word-spacing:-0.797008pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws45{word-spacing:-0.637606pt;}
.ws42{word-spacing:-0.531339pt;}
.ws37{word-spacing:-0.478205pt;}
.ws7c{word-spacing:-0.425071pt;}
.ws61{word-spacing:-0.371937pt;}
.ws1b{word-spacing:-0.318803pt;}
.ws14{word-spacing:-0.265669pt;}
.wsbb{word-spacing:-0.239104pt;}
.ws32{word-spacing:-0.212535pt;}
.wsd6{word-spacing:-0.191283pt;}
.wsf{word-spacing:-0.159402pt;}
.wsb9{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.106268pt;}
.wsa9{word-spacing:-0.095642pt;}
.wsb{word-spacing:-0.053134pt;}
.wsac{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.ws1{word-spacing:0.000000pt;}
.wsa8{word-spacing:0.047821pt;}
.ws5{word-spacing:0.053134pt;}
.wsaa{word-spacing:0.095642pt;}
.ws10{word-spacing:0.106268pt;}
.wsad{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.wsae{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.212535pt;}
.wsa7{word-spacing:0.239104pt;}
.wse{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.ws2a{word-spacing:0.371937pt;}
.wsc2{word-spacing:0.382566pt;}
.ws7f{word-spacing:0.425071pt;}
.wsc7{word-spacing:0.430387pt;}
.ws5d{word-spacing:0.478205pt;}
.wsde{word-spacing:0.478208pt;}
.ws57{word-spacing:0.637606pt;}
.ws96{word-spacing:0.690740pt;}
.ws6f{word-spacing:0.797008pt;}
.wsc9{word-spacing:0.812954pt;}
.ws8d{word-spacing:0.850142pt;}
.ws9b{word-spacing:0.903276pt;}
.ws94{word-spacing:0.956410pt;}
.ws30{word-spacing:1.009543pt;}
.wsa3{word-spacing:1.062677pt;}
.ws6d{word-spacing:1.115811pt;}
.wsd5{word-spacing:1.147699pt;}
.ws46{word-spacing:1.168945pt;}
.wsb8{word-spacing:1.195520pt;}
.wsa{word-spacing:1.222079pt;}
.wsd4{word-spacing:1.243341pt;}
.ws5e{word-spacing:1.275213pt;}
.ws92{word-spacing:1.328347pt;}
.wsa4{word-spacing:1.381481pt;}
.ws9{word-spacing:1.434614pt;}
.wsb7{word-spacing:1.482445pt;}
.ws6c{word-spacing:1.487748pt;}
.ws6b{word-spacing:1.594016pt;}
.ws5a{word-spacing:1.647150pt;}
.ws27{word-spacing:1.700284pt;}
.ws5f{word-spacing:1.753418pt;}
.wse5{word-spacing:1.769370pt;}
.wsb3{word-spacing:1.806551pt;}
.wsb0{word-spacing:1.859685pt;}
.ws3b{word-spacing:1.912819pt;}
.wsce{word-spacing:1.912832pt;}
.ws9d{word-spacing:1.965953pt;}
.ws12{word-spacing:2.019087pt;}
.ws56{word-spacing:2.072221pt;}
.ws55{word-spacing:2.125355pt;}
.ws3d{word-spacing:2.178489pt;}
.ws76{word-spacing:2.231622pt;}
.ws4e{word-spacing:2.284756pt;}
.ws2f{word-spacing:2.337890pt;}
.ws9c{word-spacing:2.391024pt;}
.ws75{word-spacing:2.444158pt;}
.ws93{word-spacing:2.550426pt;}
.ws16{word-spacing:2.656693pt;}
.ws47{word-spacing:2.709827pt;}
.ws88{word-spacing:2.816095pt;}
.ws6a{word-spacing:2.869229pt;}
.ws2{word-spacing:2.869248pt;}
.wscf{word-spacing:2.917069pt;}
.ws81{word-spacing:2.922363pt;}
.ws7b{word-spacing:2.975497pt;}
.ws1d{word-spacing:3.028630pt;}
.ws87{word-spacing:3.134898pt;}
.ws13{word-spacing:3.188032pt;}
.ws69{word-spacing:3.241166pt;}
.ws8e{word-spacing:3.294300pt;}
.ws48{word-spacing:3.347434pt;}
.ws15{word-spacing:3.400567pt;}
.ws8a{word-spacing:3.453701pt;}
.wsbc{word-spacing:3.490918pt;}
.ws52{word-spacing:3.506835pt;}
.wsb5{word-spacing:3.559969pt;}
.ws90{word-spacing:3.613103pt;}
.ws77{word-spacing:3.666237pt;}
.ws72{word-spacing:3.772505pt;}
.ws19{word-spacing:3.825638pt;}
.wsd2{word-spacing:3.825664pt;}
.ws4f{word-spacing:3.878772pt;}
.wscb{word-spacing:3.921306pt;}
.ws64{word-spacing:3.931906pt;}
.wsa5{word-spacing:3.985040pt;}
.ws9a{word-spacing:4.038174pt;}
.ws74{word-spacing:4.144442pt;}
.ws29{word-spacing:4.197575pt;}
.ws67{word-spacing:4.250709pt;}
.ws8f{word-spacing:4.303843pt;}
.ws36{word-spacing:4.356977pt;}
.wse4{word-spacing:4.399514pt;}
.ws70{word-spacing:4.410111pt;}
.wse3{word-spacing:4.495155pt;}
.ws1a{word-spacing:4.516379pt;}
.ws89{word-spacing:4.728914pt;}
.wsb1{word-spacing:4.835182pt;}
.wsaf{word-spacing:4.888316pt;}
.ws68{word-spacing:4.994583pt;}
.ws4c{word-spacing:5.100851pt;}
.ws35{word-spacing:5.207119pt;}
.wsdc{word-spacing:5.212467pt;}
.ws8c{word-spacing:5.366521pt;}
.wsd9{word-spacing:5.403750pt;}
.ws44{word-spacing:5.419654pt;}
.ws7a{word-spacing:5.472788pt;}
.wsc6{word-spacing:5.499392pt;}
.wsba{word-spacing:5.595034pt;}
.ws33{word-spacing:5.632190pt;}
.ws79{word-spacing:5.685324pt;}
.ws4a{word-spacing:5.791591pt;}
.ws78{word-spacing:5.844725pt;}
.wsbd{word-spacing:5.977600pt;}
.ws8{word-spacing:6.004127pt;}
.ws2e{word-spacing:6.110395pt;}
.wsb6{word-spacing:6.269796pt;}
.ws21{word-spacing:6.376064pt;}
.ws83{word-spacing:6.482332pt;}
.wsca{word-spacing:6.647091pt;}
.ws99{word-spacing:6.801135pt;}
.ws6e{word-spacing:7.013670pt;}
.ws51{word-spacing:7.066804pt;}
.ws7{word-spacing:7.119938pt;}
.wsc{word-spacing:7.279340pt;}
.wsd8{word-spacing:7.364403pt;}
.ws28{word-spacing:7.385607pt;}
.ws49{word-spacing:7.704411pt;}
.wsdb{word-spacing:7.890432pt;}
.ws53{word-spacing:7.970080pt;}
.wscc{word-spacing:8.033894pt;}
.wsc5{word-spacing:8.081715pt;}
.wsd7{word-spacing:8.123802pt;}
.wsa0{word-spacing:8.129482pt;}
.wse0{word-spacing:8.559923pt;}
.ws63{word-spacing:9.032757pt;}
.ws2d{word-spacing:9.404694pt;}
.ws54{word-spacing:9.670364pt;}
.ws43{word-spacing:9.936033pt;}
.wsb4{word-spacing:9.989167pt;}
.ws11{word-spacing:10.148569pt;}
.wsd0{word-spacing:10.185830pt;}
.ws3e{word-spacing:10.254836pt;}
.ws4b{word-spacing:10.307970pt;}
.ws7e{word-spacing:10.520506pt;}
.ws1e{word-spacing:10.587492pt;}
.ws7d{word-spacing:10.679907pt;}
.ws39{word-spacing:10.786175pt;}
.ws6{word-spacing:10.839309pt;}
.ws26{word-spacing:10.945577pt;}
.wsb2{word-spacing:11.158112pt;}
.ws3a{word-spacing:11.317514pt;}
.ws31{word-spacing:11.370647pt;}
.wsa2{word-spacing:11.583183pt;}
.wse2{word-spacing:11.904171pt;}
.wsc3{word-spacing:11.904640pt;}
.wsc1{word-spacing:11.907379pt;}
.wsdf{word-spacing:12.385587pt;}
.ws65{word-spacing:12.539593pt;}
.ws98{word-spacing:12.805262pt;}
.wsa6{word-spacing:12.964663pt;}
.ws3f{word-spacing:13.230333pt;}
.ws3c{word-spacing:13.283467pt;}
.ws17{word-spacing:14.611813pt;}
.wsda{word-spacing:14.769075pt;}
.wsbe{word-spacing:14.776627pt;}
.wsd1{word-spacing:15.063552pt;}
.ws41{word-spacing:15.090018pt;}
.wsc8{word-spacing:15.302656pt;}
.wse1{word-spacing:15.493939pt;}
.ws40{word-spacing:15.887026pt;}
.ws4d{word-spacing:16.046428pt;}
.ws80{word-spacing:16.418365pt;}
.wsa1{word-spacing:17.268507pt;}
.wsbf{word-spacing:18.267546pt;}
.wsc4{word-spacing:18.315366pt;}
.ws18{word-spacing:18.756255pt;}
.ws58{word-spacing:19.075058pt;}
.ws50{word-spacing:19.287594pt;}
.ws59{word-spacing:19.659531pt;}
.ws25{word-spacing:20.036915pt;}
.ws24{word-spacing:20.658586pt;}
._0{margin-left:-10.616218pt;}
._1f{margin-left:-6.886102pt;}
._4{margin-left:-5.260288pt;}
._17{margin-left:-4.038174pt;}
._d{margin-left:-3.081764pt;}
._5{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._27{width:2.364014pt;}
._2c{width:3.289764pt;}
._1c{width:4.633250pt;}
._2d{width:10.881999pt;}
._6{width:11.955200pt;}
._10{width:13.177232pt;}
._7{width:14.824448pt;}
._e{width:16.088958pt;}
._13{width:17.024102pt;}
._f{width:18.405583pt;}
._1e{width:19.914596pt;}
._c{width:20.902875pt;}
._a{width:22.263090pt;}
._14{width:23.474565pt;}
._15{width:25.132319pt;}
._9{width:26.110029pt;}
._1a{width:27.927114pt;}
._1{width:29.648896pt;}
._23{width:30.605142pt;}
._19{width:32.060987pt;}
._16{width:33.516866pt;}
._b{width:35.068352pt;}
._21{width:36.981171pt;}
._2e{width:42.151527pt;}
._2a{width:43.469107pt;}
._2f{width:45.733091pt;}
._20{width:48.404917pt;}
._1b{width:50.062671pt;}
._18{width:51.295446pt;}
._2{width:61.660548pt;}
._2b{width:62.884352pt;}
._1d{width:65.184686pt;}
._30{width:68.029161pt;}
._29{width:70.030878pt;}
._26{width:72.305050pt;}
._3{width:74.947696pt;}
._28{width:76.869252pt;}
._25{width:426.035507pt;}
._24{width:525.694054pt;}
._11{width:798.198602pt;}
._22{width:1778.455733pt;}
._12{width:1799.709067pt;}
.fs5{font-size:37.276537pt;}
.fs4{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.yf{bottom:3.044747pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y31{bottom:56.693333pt;}
.y30{bottom:96.544000pt;}
.y12f{bottom:103.178667pt;}
.y9f{bottom:103.650667pt;}
.yca{bottom:106.545333pt;}
.y14f{bottom:108.281333pt;}
.y22d{bottom:114.066667pt;}
.y2f{bottom:114.556000pt;}
.y75{bottom:115.498667pt;}
.y162{bottom:116.940000pt;}
.y1fa{bottom:119.046667pt;}
.y12e{bottom:121.190667pt;}
.y9e{bottom:121.662667pt;}
.y47{bottom:124.532000pt;}
.yc9{bottom:124.558667pt;}
.y14e{bottom:126.293333pt;}
.y1d7{bottom:126.426667pt;}
.y11c{bottom:128.244000pt;}
.y22c{bottom:131.281333pt;}
.y2e{bottom:132.568000pt;}
.y74{bottom:133.512000pt;}
.y161{bottom:134.953333pt;}
.y1f9{bottom:136.262667pt;}
.y12d{bottom:139.204000pt;}
.y9d{bottom:139.674667pt;}
.y46{bottom:142.544000pt;}
.yc8{bottom:142.570667pt;}
.yf7{bottom:143.240000pt;}
.y14d{bottom:144.306667pt;}
.y1d6{bottom:144.438667pt;}
.y11b{bottom:146.256000pt;}
.y22b{bottom:148.497333pt;}
.y2d{bottom:150.581333pt;}
.y73{bottom:151.524000pt;}
.y160{bottom:152.965333pt;}
.y1f8{bottom:153.477333pt;}
.y12c{bottom:157.216000pt;}
.y9c{bottom:157.688000pt;}
.y45{bottom:160.556000pt;}
.yc7{bottom:160.584000pt;}
.yf6{bottom:161.253333pt;}
.y14c{bottom:162.318667pt;}
.y1d5{bottom:162.452000pt;}
.y11a{bottom:164.268000pt;}
.y22a{bottom:165.713333pt;}
.y2c{bottom:168.593333pt;}
.y72{bottom:169.536000pt;}
.y1f7{bottom:170.693333pt;}
.y15f{bottom:170.977333pt;}
.y12b{bottom:175.229333pt;}
.y9b{bottom:175.700000pt;}
.y44{bottom:178.569333pt;}
.yc6{bottom:178.596000pt;}
.yf5{bottom:179.265333pt;}
.y151{bottom:179.942667pt;}
.y14b{bottom:180.330667pt;}
.y1d4{bottom:180.464000pt;}
.y119{bottom:182.281333pt;}
.y229{bottom:182.928000pt;}
.y2b{bottom:186.606667pt;}
.y71{bottom:187.549333pt;}
.y1f6{bottom:187.908000pt;}
.y15e{bottom:188.990667pt;}
.y12a{bottom:193.241333pt;}
.y9a{bottom:193.713333pt;}
.yc5{bottom:196.608000pt;}
.yf4{bottom:197.277333pt;}
.y43{bottom:197.910667pt;}
.y14a{bottom:198.344000pt;}
.y1d3{bottom:198.476000pt;}
.y228{bottom:200.144000pt;}
.y118{bottom:200.293333pt;}
.y2a{bottom:204.618667pt;}
.y1f5{bottom:205.124000pt;}
.y70{bottom:205.561333pt;}
.y15d{bottom:207.002667pt;}
.y129{bottom:211.253333pt;}
.y99{bottom:211.725333pt;}
.y176{bottom:214.137333pt;}
.yc4{bottom:214.621333pt;}
.yf3{bottom:215.290667pt;}
.y42{bottom:215.922667pt;}
.y149{bottom:216.356000pt;}
.y1d2{bottom:216.489333pt;}
.y227{bottom:217.358667pt;}
.y117{bottom:218.306667pt;}
.y1f4{bottom:222.340000pt;}
.y29{bottom:222.630667pt;}
.y6f{bottom:223.574667pt;}
.y15c{bottom:225.016000pt;}
.y128{bottom:229.266667pt;}
.y98{bottom:229.737333pt;}
.y175{bottom:232.150667pt;}
.yc3{bottom:232.633333pt;}
.yf2{bottom:233.302667pt;}
.y41{bottom:233.934667pt;}
.y148{bottom:234.369333pt;}
.y1d1{bottom:234.501333pt;}
.y226{bottom:234.574667pt;}
.y195{bottom:235.529333pt;}
.y116{bottom:236.318667pt;}
.y1f3{bottom:239.554667pt;}
.y28{bottom:240.644000pt;}
.y6e{bottom:241.586667pt;}
.y15b{bottom:243.028000pt;}
.y127{bottom:247.278667pt;}
.y97{bottom:247.750667pt;}
.y174{bottom:250.162667pt;}
.yc2{bottom:250.646667pt;}
.yf1{bottom:251.316000pt;}
.y225{bottom:251.790667pt;}
.y40{bottom:251.948000pt;}
.y147{bottom:252.381333pt;}
.y1d0{bottom:252.514667pt;}
.y194{bottom:253.541333pt;}
.y1f2{bottom:256.770667pt;}
.y27{bottom:258.656000pt;}
.y6d{bottom:259.598667pt;}
.y115{bottom:262.301333pt;}
.y126{bottom:265.292000pt;}
.y96{bottom:265.762667pt;}
.y173{bottom:268.174667pt;}
.yc1{bottom:268.658667pt;}
.y224{bottom:269.005333pt;}
.y15a{bottom:269.010667pt;}
.yf0{bottom:269.328000pt;}
.y3f{bottom:269.960000pt;}
.y146{bottom:270.393333pt;}
.y1cf{bottom:270.526667pt;}
.y193{bottom:271.554667pt;}
.y1f0{bottom:273.985333pt;}
.y1f1{bottom:273.986667pt;}
.y26{bottom:276.669333pt;}
.y6c{bottom:277.612000pt;}
.y125{bottom:283.304000pt;}
.y95{bottom:283.776000pt;}
.y172{bottom:286.188000pt;}
.y223{bottom:286.221333pt;}
.yc0{bottom:286.670667pt;}
.yef{bottom:287.340000pt;}
.y145{bottom:288.406667pt;}
.y1ce{bottom:288.538667pt;}
.y192{bottom:289.566667pt;}
.y1ef{bottom:291.201333pt;}
.y114{bottom:293.252000pt;}
.y25{bottom:294.681333pt;}
.y6b{bottom:295.624000pt;}
.y159{bottom:297.120000pt;}
.y3e{bottom:298.600000pt;}
.y124{bottom:301.316000pt;}
.y94{bottom:301.788000pt;}
.y222{bottom:303.437333pt;}
.y171{bottom:304.200000pt;}
.ybf{bottom:304.684000pt;}
.yee{bottom:305.353333pt;}
.y144{bottom:306.418667pt;}
.y1cd{bottom:306.552000pt;}
.y191{bottom:307.580000pt;}
.y1ee{bottom:308.417333pt;}
.y113{bottom:311.264000pt;}
.y24{bottom:312.693333pt;}
.y6a{bottom:313.637333pt;}
.y3d{bottom:316.612000pt;}
.y123{bottom:319.329333pt;}
.y93{bottom:319.800000pt;}
.y221{bottom:320.652000pt;}
.y170{bottom:322.213333pt;}
.ybe{bottom:322.696000pt;}
.yed{bottom:323.365333pt;}
.y143{bottom:324.432000pt;}
.y190{bottom:325.592000pt;}
.y1ed{bottom:325.632000pt;}
.y112{bottom:329.277333pt;}
.y23{bottom:330.706667pt;}
.y69{bottom:331.649333pt;}
.y1cc{bottom:332.534667pt;}
.y3c{bottom:334.624000pt;}
.y122{bottom:337.341333pt;}
.y92{bottom:337.813333pt;}
.y220{bottom:337.868000pt;}
.y16f{bottom:340.225333pt;}
.ybd{bottom:340.709333pt;}
.yec{bottom:341.378667pt;}
.y142{bottom:342.444000pt;}
.y1ec{bottom:342.848000pt;}
.y18f{bottom:343.604000pt;}
.y111{bottom:347.289333pt;}
.y186{bottom:348.718667pt;}
.y68{bottom:349.661333pt;}
.y3b{bottom:352.637333pt;}
.y21f{bottom:355.082667pt;}
.y121{bottom:355.354667pt;}
.y91{bottom:355.825333pt;}
.y22{bottom:356.689333pt;}
.y16e{bottom:358.237333pt;}
.ybc{bottom:358.721333pt;}
.yeb{bottom:359.390667pt;}
.y1eb{bottom:360.064000pt;}
.y141{bottom:360.456000pt;}
.y18e{bottom:361.617333pt;}
.y110{bottom:365.302667pt;}
.y185{bottom:366.732000pt;}
.y67{bottom:367.674667pt;}
.y1cb{bottom:371.218667pt;}
.y21e{bottom:372.298667pt;}
.y120{bottom:373.366667pt;}
.y90{bottom:373.838667pt;}
.y16d{bottom:376.250667pt;}
.ybb{bottom:376.733333pt;}
.y1ea{bottom:377.278667pt;}
.yea{bottom:377.402667pt;}
.y140{bottom:378.469333pt;}
.y1c7{bottom:378.524000pt;}
.y18d{bottom:379.629333pt;}
.y10f{bottom:383.314667pt;}
.y3a{bottom:383.748000pt;}
.y184{bottom:384.744000pt;}
.y66{bottom:385.686667pt;}
.y1ca{bottom:385.829333pt;}
.y21d{bottom:389.514667pt;}
.y11f{bottom:391.378667pt;}
.y8f{bottom:391.850667pt;}
.y1c6{bottom:393.136000pt;}
.y16c{bottom:394.262667pt;}
.y1e9{bottom:394.494667pt;}
.yba{bottom:394.746667pt;}
.ye9{bottom:395.416000pt;}
.y13f{bottom:396.481333pt;}
.y18c{bottom:397.642667pt;}
.ye0{bottom:399.821333pt;}
.y1c9{bottom:400.441333pt;}
.y39{bottom:400.844000pt;}
.y10e{bottom:401.326667pt;}
.y183{bottom:402.756000pt;}
.y65{bottom:403.700000pt;}
.y21c{bottom:406.729333pt;}
.y1c5{bottom:407.748000pt;}
.y11e{bottom:409.392000pt;}
.y8e{bottom:409.862667pt;}
.y1e8{bottom:411.709333pt;}
.y16b{bottom:412.276000pt;}
.yb9{bottom:412.758667pt;}
.ye8{bottom:413.428000pt;}
.y13e{bottom:414.494667pt;}
.y1c8{bottom:415.053333pt;}
.y18b{bottom:415.654667pt;}
.y10d{bottom:419.340000pt;}
.y182{bottom:420.769333pt;}
.y64{bottom:421.712000pt;}
.y21b{bottom:423.945333pt;}
.y21{bottom:424.608000pt;}
.y8d{bottom:427.876000pt;}
.y1e7{bottom:428.925333pt;}
.y16a{bottom:430.288000pt;}
.yb8{bottom:430.772000pt;}
.ye7{bottom:431.441333pt;}
.y13d{bottom:432.506667pt;}
.y18a{bottom:433.666667pt;}
.y153{bottom:435.845333pt;}
.y1c4{bottom:436.333333pt;}
.y10c{bottom:437.352000pt;}
.y181{bottom:438.781333pt;}
.y63{bottom:439.724000pt;}
.y11d{bottom:440.502667pt;}
.y21a{bottom:441.160000pt;}
.y20{bottom:442.620000pt;}
.y8c{bottom:445.888000pt;}
.y1e6{bottom:446.141333pt;}
.y169{bottom:448.300000pt;}
.yb7{bottom:448.784000pt;}
.ye6{bottom:449.453333pt;}
.y13c{bottom:450.518667pt;}
.y1c3{bottom:450.945333pt;}
.y189{bottom:451.680000pt;}
.y10b{bottom:455.365333pt;}
.y180{bottom:456.794667pt;}
.y62{bottom:457.737333pt;}
.y219{bottom:458.376000pt;}
.y8b{bottom:463.901333pt;}
.y1c2{bottom:465.557333pt;}
.y168{bottom:466.313333pt;}
.yb6{bottom:466.796000pt;}
.ye5{bottom:467.465333pt;}
.y13b{bottom:468.532000pt;}
.y188{bottom:469.692000pt;}
.y1e5{bottom:471.326667pt;}
.y10a{bottom:473.377333pt;}
.ydf{bottom:474.766667pt;}
.y17f{bottom:474.806667pt;}
.y218{bottom:475.592000pt;}
.y61{bottom:475.749333pt;}
.y1f{bottom:476.573333pt;}
.y8a{bottom:481.913333pt;}
.y167{bottom:484.325333pt;}
.yb5{bottom:484.809333pt;}
.ye4{bottom:485.478667pt;}
.y13a{bottom:486.544000pt;}
.y1be{bottom:486.837333pt;}
.y187{bottom:487.704000pt;}
.y109{bottom:491.389333pt;}
.y233{bottom:492.534667pt;}
.y217{bottom:492.806667pt;}
.y17e{bottom:492.818667pt;}
.y60{bottom:493.762667pt;}
.y1c1{bottom:494.142667pt;}
.y1e{bottom:494.585333pt;}
.y89{bottom:499.925333pt;}
.y1bc{bottom:501.448000pt;}
.y166{bottom:502.337333pt;}
.yb4{bottom:502.821333pt;}
.ye3{bottom:503.490667pt;}
.y139{bottom:504.557333pt;}
.yde{bottom:505.717333pt;}
.y1e4{bottom:506.394667pt;}
.y1c0{bottom:508.754667pt;}
.y108{bottom:509.402667pt;}
.y232{bottom:509.750667pt;}
.y216{bottom:510.022667pt;}
.y17d{bottom:510.832000pt;}
.y5f{bottom:511.774667pt;}
.y1d{bottom:512.597333pt;}
.y1bb{bottom:516.060000pt;}
.y88{bottom:517.938667pt;}
.y165{bottom:520.350667pt;}
.yb3{bottom:520.834667pt;}
.ye2{bottom:521.504000pt;}
.y138{bottom:522.569333pt;}
.y1bf{bottom:523.366667pt;}
.ydd{bottom:523.729333pt;}
.y231{bottom:526.965333pt;}
.y215{bottom:527.237333pt;}
.y230{bottom:527.325333pt;}
.y107{bottom:527.414667pt;}
.y1e3{bottom:527.874667pt;}
.y17c{bottom:528.844000pt;}
.y5e{bottom:529.786667pt;}
.y1c{bottom:530.610667pt;}
.y1bd{bottom:530.672000pt;}
.y87{bottom:535.950667pt;}
.yb2{bottom:538.846667pt;}
.y1e2{bottom:541.384000pt;}
.ydc{bottom:541.742667pt;}
.y214{bottom:544.453333pt;}
.y106{bottom:545.428000pt;}
.y164{bottom:546.333333pt;}
.y17b{bottom:546.857333pt;}
.y5d{bottom:547.800000pt;}
.y137{bottom:548.552000pt;}
.y1b{bottom:548.622667pt;}
.y1ba{bottom:551.952000pt;}
.ye1{bottom:552.614667pt;}
.y22f{bottom:553.141333pt;}
.y86{bottom:553.964000pt;}
.yb1{bottom:556.858667pt;}
.ydb{bottom:559.754667pt;}
.y213{bottom:561.669333pt;}
.y1e1{bottom:562.862667pt;}
.y105{bottom:563.440000pt;}
.y152{bottom:564.829333pt;}
.y17a{bottom:564.869333pt;}
.y5c{bottom:565.812000pt;}
.y1b9{bottom:566.564000pt;}
.y1a{bottom:566.636000pt;}
.y22e{bottom:566.650667pt;}
.y85{bottom:571.976000pt;}
.y1b4{bottom:573.869333pt;}
.y163{bottom:574.442667pt;}
.yb0{bottom:574.872000pt;}
.y1e0{bottom:576.372000pt;}
.yda{bottom:577.766667pt;}
.y212{bottom:578.884000pt;}
.y136{bottom:579.502667pt;}
.y150{bottom:579.910667pt;}
.y1b8{bottom:581.176000pt;}
.y104{bottom:581.452000pt;}
.y179{bottom:582.881333pt;}
.y5b{bottom:583.825333pt;}
.y19{bottom:584.648000pt;}
.y1b3{bottom:588.481333pt;}
.y1df{bottom:589.882667pt;}
.y84{bottom:589.988000pt;}
.yaf{bottom:592.884000pt;}
.yd9{bottom:595.780000pt;}
.y1b0{bottom:595.788000pt;}
.y211{bottom:596.100000pt;}
.y135{bottom:597.514667pt;}
.y103{bottom:599.465333pt;}
.y5a{bottom:601.837333pt;}
.y18{bottom:602.660000pt;}
.y1b2{bottom:603.093333pt;}
.y1de{bottom:603.392000pt;}
.y83{bottom:608.001333pt;}
.y178{bottom:608.864000pt;}
.y1b7{bottom:610.400000pt;}
.yae{bottom:610.896000pt;}
.y210{bottom:613.314667pt;}
.yd8{bottom:613.792000pt;}
.y134{bottom:615.528000pt;}
.y1dd{bottom:616.901333pt;}
.y102{bottom:617.477333pt;}
.y1b1{bottom:617.705333pt;}
.y59{bottom:619.849333pt;}
.y17{bottom:620.673333pt;}
.y1b6{bottom:625.010667pt;}
.y82{bottom:626.013333pt;}
.yad{bottom:628.909333pt;}
.y1dc{bottom:630.410667pt;}
.y20f{bottom:630.530667pt;}
.yd7{bottom:631.805333pt;}
.y133{bottom:633.540000pt;}
.y177{bottom:634.721333pt;}
.y101{bottom:635.490667pt;}
.y58{bottom:637.862667pt;}
.y16{bottom:638.685333pt;}
.y1b5{bottom:639.622667pt;}
.y81{bottom:644.026667pt;}
.yac{bottom:646.921333pt;}
.y20e{bottom:647.746667pt;}
.yd6{bottom:649.817333pt;}
.y132{bottom:651.553333pt;}
.y1db{bottom:651.889333pt;}
.y100{bottom:653.502667pt;}
.y57{bottom:655.874667pt;}
.y15{bottom:656.698667pt;}
.y1af{bottom:660.902667pt;}
.y80{bottom:662.038667pt;}
.yab{bottom:664.934667pt;}
.y20d{bottom:664.961333pt;}
.y1da{bottom:665.398667pt;}
.yd5{bottom:667.829333pt;}
.y131{bottom:669.565333pt;}
.yff{bottom:671.514667pt;}
.y56{bottom:673.886667pt;}
.y14{bottom:674.710667pt;}
.y1ad{bottom:675.514667pt;}
.y1d9{bottom:678.908000pt;}
.y7f{bottom:680.050667pt;}
.y20c{bottom:682.177333pt;}
.yaa{bottom:682.946667pt;}
.yd4{bottom:685.842667pt;}
.yfe{bottom:689.528000pt;}
.y1ac{bottom:690.126667pt;}
.y55{bottom:691.900000pt;}
.y1d8{bottom:692.417333pt;}
.y13{bottom:692.722667pt;}
.y7e{bottom:698.064000pt;}
.y20b{bottom:699.392000pt;}
.y130{bottom:700.677333pt;}
.ya9{bottom:700.958667pt;}
.yd3{bottom:703.854667pt;}
.y1ab{bottom:704.738667pt;}
.yfd{bottom:707.540000pt;}
.y54{bottom:709.912000pt;}
.y12{bottom:710.736000pt;}
.y7d{bottom:716.076000pt;}
.y20a{bottom:716.608000pt;}
.ya8{bottom:718.972000pt;}
.y1aa{bottom:719.350667pt;}
.yd2{bottom:721.868000pt;}
.yfc{bottom:725.553333pt;}
.y53{bottom:727.925333pt;}
.y11{bottom:728.748000pt;}
.y209{bottom:733.824000pt;}
.y1ae{bottom:733.962667pt;}
.y7c{bottom:734.088000pt;}
.ya7{bottom:736.984000pt;}
.yd1{bottom:739.880000pt;}
.yfb{bottom:743.565333pt;}
.y52{bottom:745.937333pt;}
.y10{bottom:746.761333pt;}
.y208{bottom:751.038667pt;}
.y7b{bottom:752.101333pt;}
.ya6{bottom:754.997333pt;}
.y1a9{bottom:755.241333pt;}
.yd0{bottom:757.892000pt;}
.yfa{bottom:761.577333pt;}
.y51{bottom:763.949333pt;}
.y207{bottom:768.254667pt;}
.y1a7{bottom:769.853333pt;}
.y7a{bottom:770.113333pt;}
.ya5{bottom:773.009333pt;}
.ycf{bottom:775.905333pt;}
.yd{bottom:778.054715pt;}
.yc{bottom:778.405333pt;}
.y50{bottom:781.962667pt;}
.y1a6{bottom:784.465333pt;}
.y206{bottom:785.469333pt;}
.yf9{bottom:787.560000pt;}
.ya4{bottom:791.021333pt;}
.yce{bottom:793.917333pt;}
.y79{bottom:796.096000pt;}
.y1a8{bottom:799.077333pt;}
.y4f{bottom:799.974667pt;}
.y205{bottom:802.685333pt;}
.ya3{bottom:809.034667pt;}
.ycd{bottom:811.930667pt;}
.yb{bottom:813.402667pt;}
.yf8{bottom:815.669333pt;}
.y4e{bottom:817.988000pt;}
.y204{bottom:819.901333pt;}
.y1a5{bottom:820.357333pt;}
.y78{bottom:827.046667pt;}
.ya{bottom:829.541333pt;}
.ycc{bottom:829.942667pt;}
.y1a3{bottom:834.969333pt;}
.ya2{bottom:835.017333pt;}
.y4d{bottom:836.000000pt;}
.y203{bottom:837.116000pt;}
.y1a0{bottom:842.274667pt;}
.y77{bottom:845.060000pt;}
.y9{bottom:845.681333pt;}
.ycb{bottom:847.954667pt;}
.y1a2{bottom:849.581333pt;}
.y4c{bottom:854.012000pt;}
.y202{bottom:854.332000pt;}
.y19f{bottom:856.886667pt;}
.y8{bottom:861.821333pt;}
.y158{bottom:863.072000pt;}
.y1a1{bottom:864.192000pt;}
.ya1{bottom:865.968000pt;}
.y76{bottom:871.042667pt;}
.y201{bottom:871.546667pt;}
.y4b{bottom:872.025333pt;}
.y1a4{bottom:878.804000pt;}
.y157{bottom:881.084000pt;}
.ya0{bottom:883.980000pt;}
.y7{bottom:885.729333pt;}
.y200{bottom:888.762667pt;}
.y156{bottom:899.097333pt;}
.y19b{bottom:900.084000pt;}
.y4a{bottom:900.664000pt;}
.y38{bottom:901.993333pt;}
.y1ff{bottom:905.978667pt;}
.y19e{bottom:907.390667pt;}
.y199{bottom:914.696000pt;}
.y155{bottom:917.109333pt;}
.y49{bottom:918.677333pt;}
.y37{bottom:920.005333pt;}
.y19d{bottom:922.001333pt;}
.y1fe{bottom:923.193333pt;}
.y6{bottom:925.198667pt;}
.y198{bottom:929.308000pt;}
.y19c{bottom:936.613333pt;}
.y48{bottom:936.689333pt;}
.y36{bottom:938.017333pt;}
.y1fd{bottom:940.409333pt;}
.y154{bottom:943.092000pt;}
.y19a{bottom:943.920000pt;}
.y5{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y1fc{bottom:957.624000pt;}
.y197{bottom:965.265333pt;}
.y34{bottom:974.042667pt;}
.y1fb{bottom:974.840000pt;}
.y4{bottom:977.906667pt;}
.y33{bottom:992.056000pt;}
.y196{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h8{height:22.673858pt;}
.he{height:23.591437pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.hc{height:31.157778pt;}
.hd{height:34.430976pt;}
.h7{height:34.813542pt;}
.hf{height:35.052646pt;}
.h6{height:38.256384pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h2{height:45.272024pt;}
.h3{height:68.781897pt;}
.h5{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:26.021437pt;}
.x2{left:51.603593pt;}
.x56{left:100.054667pt;}
.x1{left:102.046667pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x6c{left:110.673333pt;}
.x6d{left:113.624000pt;}
.x78{left:116.601333pt;}
.x5a{left:118.316000pt;}
.x7b{left:119.608000pt;}
.x59{left:121.156000pt;}
.x75{left:124.372000pt;}
.x14{left:129.456000pt;}
.xa{left:130.393333pt;}
.x60{left:137.893333pt;}
.x65{left:146.268000pt;}
.x85{left:155.233333pt;}
.x6e{left:160.338667pt;}
.x7{left:167.429333pt;}
.x2d{left:170.362667pt;}
.x4c{left:172.000000pt;}
.x7c{left:173.292000pt;}
.x58{left:176.453333pt;}
.x9{left:180.192000pt;}
.x29{left:181.190667pt;}
.x15{left:182.434667pt;}
.x2e{left:183.646667pt;}
.x4d{left:185.282667pt;}
.x2f{left:186.900000pt;}
.x16{left:189.076000pt;}
.x18{left:194.038667pt;}
.x46{left:198.476000pt;}
.x19{left:200.681333pt;}
.x13{left:201.937333pt;}
.x86{left:214.376000pt;}
.x17{left:217.562667pt;}
.x8d{left:225.868000pt;}
.x4a{left:228.744000pt;}
.x20{left:231.321333pt;}
.x2b{left:234.178667pt;}
.x40{left:235.318667pt;}
.x3d{left:240.094667pt;}
.x55{left:241.769333pt;}
.x21{left:244.604000pt;}
.x41{left:248.601333pt;}
.x49{left:252.146667pt;}
.x27{left:257.109333pt;}
.x4b{left:260.649333pt;}
.x52{left:265.069333pt;}
.x28{left:282.544000pt;}
.x50{left:285.376000pt;}
.x5b{left:296.696000pt;}
.x66{left:298.104000pt;}
.x71{left:300.446667pt;}
.x61{left:302.694667pt;}
.x47{left:304.010667pt;}
.x7e{left:305.444000pt;}
.x54{left:308.873333pt;}
.x53{left:310.481333pt;}
.x5c{left:312.360000pt;}
.x79{left:313.304000pt;}
.x48{left:317.294667pt;}
.x70{left:318.701333pt;}
.x7f{left:319.622667pt;}
.x7d{left:320.716000pt;}
.x57{left:322.341333pt;}
.x6f{left:325.421333pt;}
.x4e{left:327.212000pt;}
.x80{left:332.337333pt;}
.x67{left:334.004000pt;}
.x76{left:339.378667pt;}
.x5d{left:353.904000pt;}
.x72{left:356.073333pt;}
.xd{left:367.720000pt;}
.x24{left:371.705333pt;}
.xe{left:374.361333pt;}
.x34{left:376.453333pt;}
.x25{left:384.988000pt;}
.x23{left:385.985333pt;}
.x35{left:389.736000pt;}
.xb{left:391.846667pt;}
.xc{left:398.489333pt;}
.x26{left:411.284000pt;}
.xf{left:421.821333pt;}
.x10{left:428.462667pt;}
.x11{left:431.717333pt;}
.x12{left:438.358667pt;}
.x2c{left:442.662667pt;}
.x83{left:458.380000pt;}
.x3b{left:469.333333pt;}
.x1a{left:474.944000pt;}
.x1b{left:481.585333pt;}
.x3c{left:482.617333pt;}
.x5f{left:494.089333pt;}
.x63{left:495.445333pt;}
.x5e{left:496.461333pt;}
.x68{left:497.393333pt;}
.x69{left:500.364000pt;}
.x30{left:501.329333pt;}
.x73{left:504.381333pt;}
.x6a{left:506.641333pt;}
.x6b{left:508.057333pt;}
.x77{left:510.274667pt;}
.x62{left:511.208000pt;}
.x31{left:514.613333pt;}
.x32{left:517.904000pt;}
.x44{left:521.892000pt;}
.x42{left:523.592000pt;}
.x81{left:525.733333pt;}
.x33{left:531.188000pt;}
.x45{left:535.176000pt;}
.x43{left:536.876000pt;}
.x64{left:549.440000pt;}
.x82{left:552.016000pt;}
.x74{left:554.652000pt;}
.x3e{left:556.484000pt;}
.x7a{left:557.562667pt;}
.x4f{left:566.298667pt;}
.x3f{left:569.766667pt;}
.x1c{left:576.856000pt;}
.x1d{left:583.498667pt;}
.x8{left:588.454667pt;}
.x38{left:590.813333pt;}
.x89{left:593.560000pt;}
.x39{left:604.097333pt;}
.x87{left:606.886667pt;}
.x3a{left:610.872000pt;}
.x8b{left:614.049333pt;}
.x8a{left:617.470667pt;}
.x5{left:623.413317pt;}
.x88{left:630.796000pt;}
.x22{left:635.905333pt;}
.x8c{left:637.960000pt;}
.x84{left:658.698667pt;}
.x2a{left:669.524000pt;}
.x51{left:672.132000pt;}
.x36{left:673.956000pt;}
.x1e{left:678.773333pt;}
.x1f{left:685.414667pt;}
.x37{left:687.238667pt;}
}




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