
    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_9f314b5d034619676e9089ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ddb11a2bab7178973ec1267a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6f3a893e2e0b27384f0594db.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_d28abe39522ac0266327825e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739000;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_d7aa16ebf8167a1bddfbef5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_99b34e041f38389006da15cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726000;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;}
.m5{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);}
.md{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);}
.m3{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);}
.m7{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);}
.m1b{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);}
.m1a{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);}
.m1d{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);}
.m25{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);}
.m17{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);}
.m4{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);}
.m15{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);}
.m6{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);}
.m18{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);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m20{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);}
.m8{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);}
.m9{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);}
.m1{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m24{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);}
.ma{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);}
.m23{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);}
.m29{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m13{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);}
.m26{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);}
.m21{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);}
.m1f{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);}
.m11{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);}
.m1c{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);}
.m19{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);}
.me{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);}
.mf{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.926000px;}
.v3{vertical-align:21.696000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls9{letter-spacing:11.954850px;}
.ls6{letter-spacing:11.961000px;}
.lsc{letter-spacing:12.824994px;}
.ls12{letter-spacing:13.513243px;}
.ls11{letter-spacing:14.704798px;}
.lsd{letter-spacing:14.798591px;}
.ls10{letter-spacing:14.943900px;}
.lse{letter-spacing:15.003676px;}
.lsf{letter-spacing:15.063451px;}
.ls1{letter-spacing:15.076673px;}
.ls2{letter-spacing:15.118266px;}
.lsa{letter-spacing:15.183002px;}
.ls5{letter-spacing:15.224261px;}
.ls3{letter-spacing:15.260059px;}
.ls4{letter-spacing:15.290293px;}
.ls13{letter-spacing:17.929200px;}
.lsb{letter-spacing:67.111200px;}
.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;}
}
.ws48{word-spacing:-14.943900px;}
.ws102{word-spacing:-13.449600px;}
.ws28{word-spacing:-11.955150px;}
.wsae{word-spacing:-3.526760px;}
.ws22{word-spacing:-3.347209px;}
.ws21{word-spacing:-3.287850px;}
.wsd8{word-spacing:-3.108331px;}
.wse8{word-spacing:-3.048556px;}
.ws11f{word-spacing:-3.012710px;}
.ws11d{word-spacing:-3.003987px;}
.ws9{word-spacing:-2.989020px;}
.wsb9{word-spacing:-2.988780px;}
.wsb8{word-spacing:-2.981219px;}
.wsb7{word-spacing:-2.980294px;}
.ws11e{word-spacing:-2.958912px;}
.ws122{word-spacing:-2.689920px;}
.ws123{word-spacing:-2.636122px;}
.ws125{word-spacing:-2.474726px;}
.ws3d{word-spacing:-2.450800px;}
.ws70{word-spacing:-2.331248px;}
.wsdf{word-spacing:-2.211697px;}
.wse1{word-spacing:-2.092146px;}
.ws5d{word-spacing:-1.972595px;}
.ws124{word-spacing:-1.936742px;}
.ws3{word-spacing:-1.908367px;}
.ws8c{word-spacing:-1.872403px;}
.ws8b{word-spacing:-1.864523px;}
.ws8d{word-spacing:-1.853044px;}
.ws98{word-spacing:-1.793268px;}
.wse0{word-spacing:-1.718344px;}
.wsc5{word-spacing:-1.673717px;}
.ws10b{word-spacing:-1.667750px;}
.ws93{word-spacing:-1.613941px;}
.wsc0{word-spacing:-1.554166px;}
.wsc1{word-spacing:-1.537905px;}
.wsc2{word-spacing:-1.494390px;}
.wsd5{word-spacing:-1.434614px;}
.ws12b{word-spacing:-1.398758px;}
.ws12a{word-spacing:-1.391643px;}
.ws39{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.wsba{word-spacing:-1.315063px;}
.ws105{word-spacing:-1.243336px;}
.wsde{word-spacing:-1.195512px;}
.ws8e{word-spacing:-1.135736px;}
.ws73{word-spacing:-1.075961px;}
.wsd6{word-spacing:-1.075487px;}
.ws91{word-spacing:-1.016185px;}
.ws133{word-spacing:-0.968371px;}
.wsf4{word-spacing:-0.956410px;}
.wse9{word-spacing:-0.896634px;}
.ws4c{word-spacing:-0.836858px;}
.ws2f{word-spacing:-0.777083px;}
.wsee{word-spacing:-0.746248px;}
.wsbe{word-spacing:-0.717309px;}
.ws83{word-spacing:-0.717307px;}
.wsc6{word-spacing:-0.657532px;}
.ws110{word-spacing:-0.645581px;}
.wsa8{word-spacing:-0.597756px;}
.ws32{word-spacing:-0.478205px;}
.ws2c{word-spacing:-0.418429px;}
.ws50{word-spacing:-0.358654px;}
.ws1c{word-spacing:-0.358489px;}
.ws126{word-spacing:-0.322790px;}
.ws16{word-spacing:-0.299129px;}
.ws49{word-spacing:-0.298878px;}
.ws10f{word-spacing:-0.268992px;}
.wsc8{word-spacing:-0.267520px;}
.ws72{word-spacing:-0.255753px;}
.ws2e{word-spacing:-0.239102px;}
.wsf1{word-spacing:-0.224224px;}
.wsf2{word-spacing:-0.218477px;}
.ws113{word-spacing:-0.215194px;}
.ws5a{word-spacing:-0.206306px;}
.ws2d{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.179095px;}
.ws6a{word-spacing:-0.143931px;}
.ws103{word-spacing:-0.143462px;}
.wsf0{word-spacing:-0.125212px;}
.ws33{word-spacing:-0.119551px;}
.wsc7{word-spacing:-0.109723px;}
.ws115{word-spacing:-0.107597px;}
.ws104{word-spacing:-0.095641px;}
.ws13{word-spacing:-0.060316px;}
.ws35{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.059718px;}
.wsfc{word-spacing:-0.053798px;}
.wsca{word-spacing:-0.051360px;}
.ws60{word-spacing:-0.047821px;}
.wse6{word-spacing:-0.020581px;}
.ws12c{word-spacing:-0.009725px;}
.ws112{word-spacing:-0.009312px;}
.wsf3{word-spacing:-0.004140px;}
.ws75{word-spacing:-0.003364px;}
.wseb{word-spacing:-0.003220px;}
.ws27{word-spacing:-0.003197px;}
.ws9d{word-spacing:-0.001091px;}
.ws25{word-spacing:-0.000780px;}
.ws17{word-spacing:-0.000299px;}
.wsea{word-spacing:-0.000223px;}
.ws26{word-spacing:-0.000143px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:0.000299px;}
.ws9c{word-spacing:0.002092px;}
.wsef{word-spacing:0.022780px;}
.ws6b{word-spacing:0.031090px;}
.ws109{word-spacing:0.036984px;}
.ws108{word-spacing:0.053798px;}
.wsec{word-spacing:0.058268px;}
.wsc{word-spacing:0.059718px;}
.ws37{word-spacing:0.059776px;}
.ws71{word-spacing:0.082020px;}
.ws79{word-spacing:0.095641px;}
.ws101{word-spacing:0.107597px;}
.ws74{word-spacing:0.110273px;}
.ws19{word-spacing:0.119078px;}
.ws3b{word-spacing:0.119551px;}
.ws11{word-spacing:0.119676px;}
.wsa7{word-spacing:0.135252px;}
.ws7a{word-spacing:0.143462px;}
.ws11b{word-spacing:0.161395px;}
.wsb{word-spacing:0.179095px;}
.ws3a{word-spacing:0.179327px;}
.ws12{word-spacing:0.179693px;}
.wsa6{word-spacing:0.191282px;}
.wsa4{word-spacing:0.192842px;}
.wsce{word-spacing:0.204962px;}
.wscd{word-spacing:0.211040px;}
.ws12d{word-spacing:0.215194px;}
.ws69{word-spacing:0.216263px;}
.wsd4{word-spacing:0.218488px;}
.ws45{word-spacing:0.239102px;}
.ws8{word-spacing:0.239112px;}
.ws52{word-spacing:0.252848px;}
.ws12e{word-spacing:0.268992px;}
.ws51{word-spacing:0.298878px;}
.ws1a{word-spacing:0.299129px;}
.ws6f{word-spacing:0.312102px;}
.ws10e{word-spacing:0.322790px;}
.ws7c{word-spacing:0.357904px;}
.ws7{word-spacing:0.358489px;}
.ws4a{word-spacing:0.358654px;}
.wsdb{word-spacing:0.418429px;}
.ws138{word-spacing:0.430387px;}
.ws43{word-spacing:0.478205px;}
.ws9b{word-spacing:0.537980px;}
.wsd{word-spacing:0.657319px;}
.ws36{word-spacing:0.657532px;}
.ws5f{word-spacing:0.669488px;}
.wsa9{word-spacing:0.717307px;}
.ws120{word-spacing:0.753178px;}
.wsbd{word-spacing:0.765130px;}
.ws38{word-spacing:0.777083px;}
.ws76{word-spacing:0.812950px;}
.wsbc{word-spacing:0.836858px;}
.ws61{word-spacing:0.860771px;}
.ws134{word-spacing:0.860774px;}
.ws53{word-spacing:0.896634px;}
.wsb5{word-spacing:0.956410px;}
.ws2a{word-spacing:1.016185px;}
.ws29{word-spacing:1.075961px;}
.ws4d{word-spacing:1.135736px;}
.ws64{word-spacing:1.195512px;}
.wsd3{word-spacing:1.255288px;}
.ws80{word-spacing:1.315063px;}
.ws117{word-spacing:1.344960px;}
.ws77{word-spacing:1.386797px;}
.ws81{word-spacing:1.434614px;}
.ws63{word-spacing:1.494390px;}
.ws8f{word-spacing:1.554166px;}
.ws5{word-spacing:1.613767px;}
.ws68{word-spacing:1.613941px;}
.ws46{word-spacing:1.673717px;}
.ws116{word-spacing:1.721549px;}
.ws47{word-spacing:1.733492px;}
.ws100{word-spacing:1.775347px;}
.ws107{word-spacing:1.829146px;}
.ws7d{word-spacing:1.853044px;}
.ws78{word-spacing:1.865003px;}
.wsd7{word-spacing:1.912819px;}
.ws4f{word-spacing:1.972595px;}
.ws82{word-spacing:2.032370px;}
.ws86{word-spacing:2.092146px;}
.wsdd{word-spacing:2.151922px;}
.ws97{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws34{word-spacing:2.391024px;}
.ws2b{word-spacing:2.450800px;}
.ws10c{word-spacing:2.474726px;}
.wse4{word-spacing:2.510575px;}
.ws6c{word-spacing:2.570351px;}
.ws121{word-spacing:2.582323px;}
.wsd9{word-spacing:2.630126px;}
.ws14{word-spacing:2.630232px;}
.ws6{word-spacing:2.690189px;}
.wsa{word-spacing:2.749609px;}
.ws3c{word-spacing:2.749678px;}
.ws40{word-spacing:2.809453px;}
.ws24{word-spacing:2.809626px;}
.wsfe{word-spacing:2.851315px;}
.wsc9{word-spacing:2.869229px;}
.wsff{word-spacing:2.905114px;}
.wsf5{word-spacing:2.917057px;}
.wsaf{word-spacing:2.929004px;}
.ws131{word-spacing:2.958912px;}
.wsd2{word-spacing:2.986780px;}
.ws41{word-spacing:2.988780px;}
.ws114{word-spacing:3.012710px;}
.ws65{word-spacing:3.108331px;}
.ws127{word-spacing:3.120307px;}
.ws135{word-spacing:3.221386px;}
.ws128{word-spacing:3.224266px;}
.wsa0{word-spacing:3.227882px;}
.ws10a{word-spacing:3.227904px;}
.ws111{word-spacing:3.228528px;}
.ws129{word-spacing:3.230419px;}
.ws10d{word-spacing:3.281702px;}
.ws5c{word-spacing:3.287658px;}
.ws18{word-spacing:3.287850px;}
.ws5e{word-spacing:3.407209px;}
.ws11c{word-spacing:3.443098px;}
.wsed{word-spacing:3.490904px;}
.ws136{word-spacing:3.496896px;}
.wse5{word-spacing:3.507586px;}
.ws1f{word-spacing:3.526663px;}
.ws4e{word-spacing:3.526760px;}
.ws20{word-spacing:3.527261px;}
.wse{word-spacing:3.571074px;}
.wsf{word-spacing:3.582000px;}
.wsb3{word-spacing:3.586536px;}
.ws12f{word-spacing:3.604493px;}
.ws31{word-spacing:3.706087px;}
.ws5b{word-spacing:3.765863px;}
.ws44{word-spacing:3.825638px;}
.wsf9{word-spacing:3.885414px;}
.ws137{word-spacing:3.981082px;}
.ws10{word-spacing:4.004887px;}
.ws42{word-spacing:4.004965px;}
.wsd1{word-spacing:4.124516px;}
.wsd0{word-spacing:4.184292px;}
.ws67{word-spacing:4.244068px;}
.ws90{word-spacing:4.423394px;}
.ws58{word-spacing:4.483170px;}
.ws59{word-spacing:4.499453px;}
.ws4b{word-spacing:4.662497px;}
.wse3{word-spacing:4.782048px;}
.ws23{word-spacing:5.021292px;}
.wsac{word-spacing:5.080926px;}
.wsa5{word-spacing:5.200477px;}
.ws7e{word-spacing:5.439580px;}
.wsda{word-spacing:5.678682px;}
.ws66{word-spacing:5.738458px;}
.ws62{word-spacing:5.738472px;}
.ws96{word-spacing:5.798233px;}
.ws30{word-spacing:5.917784px;}
.ws3f{word-spacing:5.977560px;}
.ws6d{word-spacing:6.035729px;}
.ws3e{word-spacing:6.037336px;}
.ws89{word-spacing:6.097111px;}
.wsb1{word-spacing:6.156887px;}
.ws7b{word-spacing:6.216662px;}
.ws11a{word-spacing:6.240614px;}
.wsb0{word-spacing:6.276438px;}
.ws1d{word-spacing:6.276570px;}
.ws1e{word-spacing:6.277168px;}
.ws130{word-spacing:6.294413px;}
.ws8a{word-spacing:6.575316px;}
.wse7{word-spacing:6.635092px;}
.ws1b{word-spacing:6.695375px;}
.ws56{word-spacing:7.166598px;}
.ws57{word-spacing:7.173072px;}
.ws55{word-spacing:7.186403px;}
.wse2{word-spacing:7.232848px;}
.wsb2{word-spacing:7.292623px;}
.wsad{word-spacing:7.651277px;}
.wsf8{word-spacing:7.711052px;}
.wsf7{word-spacing:7.830604px;}
.ws9a{word-spacing:7.888310px;}
.ws99{word-spacing:7.890379px;}
.wsbf{word-spacing:8.009930px;}
.wsb4{word-spacing:8.129482px;}
.ws7f{word-spacing:8.189257px;}
.ws9e{word-spacing:8.249033px;}
.wsa1{word-spacing:8.428360px;}
.ws88{word-spacing:8.488135px;}
.wsb6{word-spacing:8.607686px;}
.ws94{word-spacing:8.966340px;}
.ws95{word-spacing:8.976277px;}
.wsc3{word-spacing:9.324994px;}
.wsc4{word-spacing:9.564096px;}
.ws119{word-spacing:9.683712px;}
.ws6e{word-spacing:9.862974px;}
.ws87{word-spacing:9.922750px;}
.wscf{word-spacing:9.982525px;}
.wsfd{word-spacing:10.275494px;}
.wsab{word-spacing:10.513592px;}
.wsaa{word-spacing:10.520506px;}
.ws132{word-spacing:11.082470px;}
.wsf6{word-spacing:11.357364px;}
.ws118{word-spacing:12.158438px;}
.wsfb{word-spacing:12.266035px;}
.wsfa{word-spacing:12.319834px;}
.wsbb{word-spacing:13.150632px;}
.wsa2{word-spacing:15.123227px;}
.wscc{word-spacing:15.775458px;}
.wscb{word-spacing:15.780758px;}
.ws9f{word-spacing:16.916495px;}
.ws92{word-spacing:18.530436px;}
.wsa3{word-spacing:18.769538px;}
.ws85{word-spacing:22.834279px;}
.wsdc{word-spacing:24.926425px;}
.ws84{word-spacing:36.881545px;}
.ws106{word-spacing:40.212000px;}
._16{margin-left:-6.951656px;}
._1{margin-left:-5.917890px;}
._6{margin-left:-4.362778px;}
._1b{margin-left:-3.227882px;}
._3{margin-left:-1.928388px;}
._5{width:1.091170px;}
._28{width:2.385086px;}
._23{width:3.586536px;}
._17{width:5.335597px;}
._19{width:11.003198px;}
._c{width:13.091920px;}
._1e{width:14.481264px;}
._13{width:15.504978px;}
._4{width:16.676868px;}
._f{width:17.693578px;}
._8{width:18.769993px;}
._2{width:19.909621px;}
._22{width:20.937028px;}
._11{width:21.937645px;}
._a{width:23.191473px;}
._10{width:24.448220px;}
._7{width:26.360902px;}
._12{width:27.468137px;}
._9{width:28.753158px;}
._b{width:30.622126px;}
._14{width:31.705058px;}
._0{width:33.354851px;}
._1f{width:34.745298px;}
._26{width:35.808312px;}
._15{width:37.092009px;}
._1d{width:38.750157px;}
._1a{width:42.679778px;}
._1c{width:44.473046px;}
._21{width:46.146763px;}
._25{width:47.909442px;}
._18{width:49.449990px;}
._27{width:50.462899px;}
._24{width:54.107443px;}
._d{width:999.411707px;}
._20{width:2085.363600px;}
._e{width:2109.273600px;}
.fc5{color:transparent;}
.fc6{color:rgb(8,117,183);}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,101,152);}
.fs3{font-size:29.886000px;}
.fsb{font-size:35.865600px;}
.fs6{font-size:41.936104px;}
.fsa{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs7{font-size:47.820000px;}
.fs8{font-size:47.820600px;}
.fs4{font-size:53.796000px;}
.fsc{font-size:53.798400px;}
.fs9{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fs2{font-size:107.598000px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.yb{bottom:14.151273px;}
.y2{bottom:15.759209px;}
.y30{bottom:63.780000px;}
.y2f{bottom:108.612000px;}
.y113{bottom:112.326000px;}
.ybe{bottom:114.156000px;}
.y1cc{bottom:115.045500px;}
.y161{bottom:116.629500px;}
.y17b{bottom:118.161000px;}
.y112{bottom:126.522000px;}
.y21b{bottom:128.325000px;}
.y2e{bottom:128.875500px;}
.y1cb{bottom:129.241500px;}
.y160{bottom:130.825500px;}
.y8d{bottom:131.184000px;}
.y1d1{bottom:133.246500px;}
.y85{bottom:133.993500px;}
.ybd{bottom:134.419500px;}
.y15f{bottom:135.165000px;}
.y1e8{bottom:135.675000px;}
.yf3{bottom:135.825000px;}
.y17a{bottom:138.424500px;}
.y111{bottom:140.719500px;}
.y1ca{bottom:143.439000px;}
.y8c{bottom:145.381500px;}
.y61{bottom:145.716000px;}
.y1e7{bottom:146.146500px;}
.yd6{bottom:146.995500px;}
.y1d0{bottom:147.444000px;}
.y21a{bottom:147.691500px;}
.y1c9{bottom:147.778500px;}
.y84{bottom:148.191000px;}
.y2d{bottom:149.139000px;}
.ybc{bottom:154.683000px;}
.y110{bottom:154.915500px;}
.yf2{bottom:156.088500px;}
.y179{bottom:158.689500px;}
.y8b{bottom:159.577500px;}
.y1e6{bottom:160.344000px;}
.yd5{bottom:161.191500px;}
.y1cf{bottom:161.640000px;}
.y83{bottom:162.387000px;}
.y1ce{bottom:165.979500px;}
.y219{bottom:167.059500px;}
.y10f{bottom:169.113000px;}
.y2c{bottom:169.404000px;}
.y8a{bottom:173.775000px;}
.y1e5{bottom:174.540000px;}
.ybb{bottom:174.948000px;}
.yd4{bottom:175.389000px;}
.yf1{bottom:176.352000px;}
.y82{bottom:176.584500px;}
.y178{bottom:178.953000px;}
.yd3{bottom:179.728500px;}
.y10e{bottom:183.309000px;}
.y218{bottom:186.427500px;}
.y10d{bottom:187.648500px;}
.y89{bottom:187.971000px;}
.y1e4{bottom:188.737500px;}
.y2b{bottom:189.667500px;}
.y81{bottom:190.780500px;}
.y15e{bottom:193.627500px;}
.y13b{bottom:194.016000px;}
.yba{bottom:195.211500px;}
.y177{bottom:199.216500px;}
.y88{bottom:202.168500px;}
.y1e3{bottom:202.933500px;}
.y60{bottom:204.178500px;}
.y80{bottom:204.978000px;}
.yf0{bottom:205.582500px;}
.y217{bottom:205.794000px;}
.y1c7{bottom:206.241000px;}
.y87{bottom:206.508000px;}
.y2a{bottom:209.932500px;}
.y1c8{bottom:211.665000px;}
.y15d{bottom:213.892500px;}
.y13a{bottom:214.281000px;}
.yb9{bottom:215.476500px;}
.y1e2{bottom:217.131000px;}
.y7f{bottom:219.174000px;}
.y176{bottom:219.481500px;}
.y7e{bottom:223.515000px;}
.y5f{bottom:224.442000px;}
.y216{bottom:225.162000px;}
.y1c6{bottom:226.504500px;}
.y29{bottom:230.196000px;}
.y1e1{bottom:231.327000px;}
.y15c{bottom:234.156000px;}
.y139{bottom:234.544500px;}
.y1e0{bottom:235.668000px;}
.yb8{bottom:235.740000px;}
.yd2{bottom:238.191000px;}
.y175{bottom:239.745000px;}
.yef{bottom:240.402000px;}
.y19d{bottom:242.317500px;}
.y215{bottom:244.528500px;}
.y5e{bottom:244.707000px;}
.y10c{bottom:246.111000px;}
.y1c5{bottom:246.768000px;}
.y28{bottom:250.459500px;}
.y15b{bottom:254.419500px;}
.y138{bottom:254.809500px;}
.yb7{bottom:256.003500px;}
.yd1{bottom:258.454500px;}
.y174{bottom:260.008500px;}
.yee{bottom:260.667000px;}
.y19c{bottom:262.582500px;}
.y214{bottom:263.896500px;}
.y5d{bottom:264.970500px;}
.y10b{bottom:266.376000px;}
.y1c4{bottom:267.033000px;}
.y27{bottom:270.724500px;}
.y15a{bottom:274.684500px;}
.y137{bottom:275.073000px;}
.yb6{bottom:276.268500px;}
.yd0{bottom:278.719500px;}
.y173{bottom:280.273500px;}
.yed{bottom:280.930500px;}
.y7d{bottom:281.977500px;}
.y19b{bottom:282.846000px;}
.y213{bottom:283.264500px;}
.y5c{bottom:285.234000px;}
.y10a{bottom:286.639500px;}
.y1c3{bottom:287.296500px;}
.y21e{bottom:289.129500px;}
.y26{bottom:290.988000px;}
.y1df{bottom:293.709000px;}
.y159{bottom:294.948000px;}
.y136{bottom:295.336500px;}
.yb5{bottom:296.532000px;}
.ycf{bottom:298.983000px;}
.y172{bottom:300.537000px;}
.yec{bottom:301.195500px;}
.y7c{bottom:302.241000px;}
.y212{bottom:302.631000px;}
.y19a{bottom:303.109500px;}
.y5b{bottom:305.499000px;}
.y109{bottom:306.903000px;}
.y1c2{bottom:307.561500px;}
.y21d{bottom:308.496000px;}
.y25{bottom:311.253000px;}
.y1de{bottom:313.075500px;}
.y158{bottom:315.213000px;}
.y135{bottom:315.601500px;}
.yb4{bottom:316.797000px;}
.yce{bottom:319.248000px;}
.y171{bottom:320.802000px;}
.yeb{bottom:321.459000px;}
.y211{bottom:321.999000px;}
.y7b{bottom:322.504500px;}
.y199{bottom:323.374500px;}
.y5a{bottom:325.762500px;}
.y1c1{bottom:327.825000px;}
.y21c{bottom:327.864000px;}
.y24{bottom:331.516500px;}
.y1dd{bottom:332.443500px;}
.y157{bottom:335.476500px;}
.y134{bottom:335.865000px;}
.ycd{bottom:335.973000px;}
.yb3{bottom:337.060500px;}
.y108{bottom:339.123000px;}
.ycc{bottom:339.511500px;}
.y210{bottom:341.367000px;}
.yea{bottom:341.722500px;}
.y7a{bottom:342.769500px;}
.y198{bottom:343.638000px;}
.y59{bottom:346.027500px;}
.y1c0{bottom:348.088500px;}
.y23{bottom:351.780000px;}
.y1dc{bottom:351.810000px;}
.y170{bottom:353.020500px;}
.y156{bottom:355.740000px;}
.y133{bottom:356.130000px;}
.yb2{bottom:357.324000px;}
.y107{bottom:359.386500px;}
.y20f{bottom:360.733500px;}
.ye9{bottom:361.987500px;}
.y78{bottom:363.033000px;}
.y197{bottom:363.903000px;}
.y58{bottom:366.291000px;}
.y1bf{bottom:368.353500px;}
.y79{bottom:368.458500px;}
.ycb{bottom:368.742000px;}
.y1db{bottom:371.178000px;}
.y22{bottom:372.045000px;}
.y16f{bottom:373.285500px;}
.y155{bottom:376.005000px;}
.y132{bottom:376.393500px;}
.yb1{bottom:377.589000px;}
.y106{bottom:379.651500px;}
.y20e{bottom:380.101500px;}
.ye8{bottom:382.251000px;}
.y77{bottom:383.298000px;}
.y196{bottom:384.166500px;}
.y57{bottom:386.554500px;}
.y1be{bottom:388.617000px;}
.y1da{bottom:390.546000px;}
.y21{bottom:392.308500px;}
.y16e{bottom:393.549000px;}
.y154{bottom:396.268500px;}
.y131{bottom:396.657000px;}
.yb0{bottom:397.852500px;}
.y20d{bottom:399.468000px;}
.y105{bottom:399.915000px;}
.ye7{bottom:402.516000px;}
.y76{bottom:403.561500px;}
.y195{bottom:404.430000px;}
.y56{bottom:406.819500px;}
.y1bd{bottom:408.882000px;}
.y1d9{bottom:409.912500px;}
.y20{bottom:412.573500px;}
.y16d{bottom:413.812500px;}
.y153{bottom:416.533500px;}
.y130{bottom:416.922000px;}
.yaf{bottom:418.117500px;}
.y20c{bottom:418.836000px;}
.y104{bottom:420.178500px;}
.ye6{bottom:422.779500px;}
.y75{bottom:423.825000px;}
.y194{bottom:424.695000px;}
.y55{bottom:427.083000px;}
.y1bc{bottom:429.145500px;}
.y1d8{bottom:429.280500px;}
.y1f{bottom:432.837000px;}
.y152{bottom:436.797000px;}
.y20b{bottom:438.204000px;}
.yae{bottom:438.381000px;}
.y103{bottom:440.443500px;}
.y74{bottom:444.090000px;}
.y193{bottom:444.958500px;}
.y16c{bottom:446.032500px;}
.y12f{bottom:446.152500px;}
.y54{bottom:447.348000px;}
.y1d7{bottom:448.647000px;}
.y1bb{bottom:449.409000px;}
.y1e{bottom:453.100500px;}
.ye5{bottom:454.998000px;}
.y151{bottom:457.060500px;}
.y20a{bottom:457.570500px;}
.yad{bottom:458.644500px;}
.y73{bottom:464.353500px;}
.y192{bottom:465.223500px;}
.y53{bottom:467.611500px;}
.y1d6{bottom:468.015000px;}
.y1ba{bottom:469.674000px;}
.y102{bottom:472.662000px;}
.y1d{bottom:473.365500px;}
.ye3{bottom:475.263000px;}
.ye4{bottom:475.516500px;}
.y209{bottom:476.938500px;}
.yac{bottom:478.909500px;}
.y12e{bottom:480.972000px;}
.y16b{bottom:481.240500px;}
.y72{bottom:484.618500px;}
.y150{bottom:486.291000px;}
.y52{bottom:487.875000px;}
.y1b9{bottom:489.937500px;}
.y101{bottom:492.927000px;}
.y191{bottom:495.184500px;}
.ye2{bottom:495.526500px;}
.y208{bottom:496.305000px;}
.y1d5{bottom:496.348500px;}
.yab{bottom:499.173000px;}
.y12d{bottom:501.235500px;}
.y16a{bottom:501.504000px;}
.y1c{bottom:502.596000px;}
.y71{bottom:504.882000px;}
.y51{bottom:508.140000px;}
.y1b8{bottom:510.202500px;}
.y100{bottom:513.190500px;}
.y190{bottom:515.448000px;}
.y207{bottom:515.673000px;}
.ye1{bottom:515.791500px;}
.yaa{bottom:519.438000px;}
.y14f{bottom:521.110500px;}
.y12c{bottom:521.499000px;}
.y169{bottom:521.769000px;}
.y70{bottom:525.145500px;}
.y50{bottom:528.403500px;}
.y1b7{bottom:530.466000px;}
.yff{bottom:533.455500px;}
.y206{bottom:535.041000px;}
.y18f{bottom:535.713000px;}
.y1d4{bottom:535.801500px;}
.ye0{bottom:536.055000px;}
.ya9{bottom:539.701500px;}
.y14e{bottom:541.375500px;}
.y12b{bottom:541.764000px;}
.y168{bottom:542.032500px;}
.y6f{bottom:545.410500px;}
.y4f{bottom:548.667000px;}
.y1b6{bottom:550.729500px;}
.yfe{bottom:553.719000px;}
.y205{bottom:554.407500px;}
.y18e{bottom:555.976500px;}
.ya8{bottom:559.965000px;}
.y14d{bottom:561.639000px;}
.y12a{bottom:562.027500px;}
.y167{bottom:562.297500px;}
.y6e{bottom:565.674000px;}
.ydf{bottom:568.275000px;}
.y4e{bottom:568.932000px;}
.y1b5{bottom:570.994500px;}
.y204{bottom:573.775500px;}
.yfd{bottom:573.982500px;}
.y1b{bottom:579.004500px;}
.ya7{bottom:580.230000px;}
.y14c{bottom:581.904000px;}
.y129{bottom:582.292500px;}
.y166{bottom:582.561000px;}
.y18d{bottom:585.207000px;}
.y6d{bottom:585.939000px;}
.yde{bottom:588.538500px;}
.y4d{bottom:589.195500px;}
.y1b4{bottom:591.258000px;}
.y203{bottom:593.142000px;}
.yfc{bottom:594.247500px;}
.y1d3{bottom:594.621000px;}
.ya6{bottom:600.493500px;}
.y14b{bottom:602.167500px;}
.y128{bottom:602.556000px;}
.y165{bottom:602.824500px;}
.y6c{bottom:606.202500px;}
.ydd{bottom:608.802000px;}
.y4c{bottom:609.460500px;}
.y1b3{bottom:611.523000px;}
.y202{bottom:612.510000px;}
.yfb{bottom:614.511000px;}
.y1a{bottom:617.200500px;}
.y18c{bottom:620.026500px;}
.ya5{bottom:620.758500px;}
.y14a{bottom:622.431000px;}
.y127{bottom:622.819500px;}
.y6b{bottom:626.466000px;}
.ydc{bottom:629.067000px;}
.y4b{bottom:629.724000px;}
.y201{bottom:631.878000px;}
.yfa{bottom:634.776000px;}
.y19{bottom:637.465500px;}
.y164{bottom:638.032500px;}
.y18b{bottom:640.291500px;}
.y1b2{bottom:640.753500px;}
.ya4{bottom:641.022000px;}
.y149{bottom:642.696000px;}
.y126{bottom:643.084500px;}
.y6a{bottom:646.731000px;}
.ydb{bottom:649.330500px;}
.y4a{bottom:649.987500px;}
.y200{bottom:651.244500px;}
.y18{bottom:657.729000px;}
.y163{bottom:658.297500px;}
.y18a{bottom:660.555000px;}
.ya3{bottom:661.285500px;}
.y125{bottom:663.348000px;}
.yf9{bottom:664.006500px;}
.y69{bottom:666.994500px;}
.y49{bottom:670.252500px;}
.y1ff{bottom:670.612500px;}
.y148{bottom:674.914500px;}
.y1b1{bottom:675.573000px;}
.y17{bottom:677.992500px;}
.y162{bottom:678.561000px;}
.y189{bottom:680.818500px;}
.ya2{bottom:681.550500px;}
.y124{bottom:683.613000px;}
.y68{bottom:687.258000px;}
.y1fe{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.y147{bottom:695.179500px;}
.y1b0{bottom:695.836500px;}
.y16{bottom:698.257500px;}
.yf8{bottom:698.826000px;}
.y188{bottom:701.083500px;}
.ya1{bottom:701.814000px;}
.y123{bottom:703.876500px;}
.y67{bottom:707.523000px;}
.y1fd{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y146{bottom:715.443000px;}
.y1af{bottom:716.100000px;}
.y15{bottom:718.521000px;}
.yf7{bottom:719.089500px;}
.y187{bottom:721.347000px;}
.ya0{bottom:722.077500px;}
.y122{bottom:724.140000px;}
.y66{bottom:727.786500px;}
.y1fc{bottom:728.715000px;}
.y46{bottom:731.044500px;}
.y145{bottom:735.708000px;}
.y1ae{bottom:736.365000px;}
.y14{bottom:738.786000px;}
.yf6{bottom:739.353000px;}
.y186{bottom:741.612000px;}
.y9f{bottom:742.342500px;}
.y121{bottom:744.405000px;}
.y65{bottom:748.051500px;}
.y1fb{bottom:748.081500px;}
.y45{bottom:751.308000px;}
.y144{bottom:755.971500px;}
.y1ad{bottom:756.628500px;}
.y13{bottom:759.049500px;}
.yf5{bottom:759.618000px;}
.y185{bottom:761.875500px;}
.y9e{bottom:762.606000px;}
.y120{bottom:764.668500px;}
.y1fa{bottom:767.449500px;}
.y64{bottom:768.315000px;}
.y44{bottom:771.573000px;}
.y143{bottom:776.235000px;}
.y1ac{bottom:776.893500px;}
.y12{bottom:779.313000px;}
.y184{bottom:782.139000px;}
.y9d{bottom:782.871000px;}
.y11f{bottom:784.933500px;}
.y1f9{bottom:786.816000px;}
.y63{bottom:788.578500px;}
.y43{bottom:791.836500px;}
.y142{bottom:796.500000px;}
.y1ab{bottom:797.157000px;}
.y11{bottom:799.578000px;}
.y183{bottom:802.404000px;}
.y9c{bottom:803.134500px;}
.y11e{bottom:805.197000px;}
.y1f8{bottom:806.184000px;}
.yca{bottom:808.843500px;}
.y42{bottom:812.101500px;}
.y141{bottom:816.763500px;}
.y1aa{bottom:817.420500px;}
.y62{bottom:817.809000px;}
.y10{bottom:819.841500px;}
.y182{bottom:822.667500px;}
.y9b{bottom:823.398000px;}
.y11d{bottom:825.460500px;}
.y1f7{bottom:825.552000px;}
.yc9{bottom:829.107000px;}
.y41{bottom:832.365000px;}
.y140{bottom:837.028500px;}
.y1a9{bottom:837.685500px;}
.y1d2{bottom:837.789000px;}
.yf{bottom:840.106500px;}
.y181{bottom:842.931000px;}
.y9a{bottom:843.663000px;}
.y1f6{bottom:844.918500px;}
.yc8{bottom:849.372000px;}
.y40{bottom:852.628500px;}
.y11c{bottom:854.691000px;}
.y13f{bottom:857.292000px;}
.y1a8{bottom:857.949000px;}
.ye{bottom:860.370000px;}
.y180{bottom:863.196000px;}
.y99{bottom:863.926500px;}
.y1f5{bottom:864.286500px;}
.yc7{bottom:869.635500px;}
.y3f{bottom:872.893500px;}
.y13e{bottom:877.555500px;}
.y1a7{bottom:878.214000px;}
.yd{bottom:880.633500px;}
.y17f{bottom:883.459500px;}
.y1f4{bottom:883.653000px;}
.y98{bottom:884.191500px;}
.y11b{bottom:889.510500px;}
.yc6{bottom:889.899000px;}
.y3e{bottom:893.157000px;}
.y1a6{bottom:898.477500px;}
.y86{bottom:898.582500px;}
.y1f3{bottom:903.021000px;}
.y17e{bottom:903.724500px;}
.y97{bottom:904.455000px;}
.y11a{bottom:909.775500px;}
.yc5{bottom:910.164000px;}
.y9{bottom:912.769500px;}
.ya{bottom:912.769555px;}
.y3d{bottom:913.422000px;}
.y1a5{bottom:918.741000px;}
.yda{bottom:920.905500px;}
.y1f2{bottom:922.389000px;}
.y17d{bottom:923.988000px;}
.y96{bottom:924.718500px;}
.y119{bottom:930.039000px;}
.yc4{bottom:930.427500px;}
.y3c{bottom:933.685500px;}
.y1a4{bottom:939.006000px;}
.yd9{bottom:941.445000px;}
.y1f1{bottom:941.755500px;}
.y17c{bottom:944.251500px;}
.y95{bottom:944.983500px;}
.y118{bottom:950.304000px;}
.yc3{bottom:950.692500px;}
.y8{bottom:952.536000px;}
.y3b{bottom:953.949000px;}
.y1a3{bottom:959.269500px;}
.y1f0{bottom:961.123500px;}
.y13d{bottom:962.259000px;}
.y94{bottom:965.247000px;}
.y7{bottom:970.692000px;}
.yc2{bottom:970.956000px;}
.y3a{bottom:974.214000px;}
.y1a2{bottom:979.534500px;}
.y1ef{bottom:980.490000px;}
.y117{bottom:982.522500px;}
.y93{bottom:985.512000px;}
.yc1{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y6{bottom:994.519500px;}
.y1a1{bottom:999.798000px;}
.y1ee{bottom:999.858000px;}
.y116{bottom:1002.787500px;}
.y92{bottom:1005.775500px;}
.yc0{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y1ed{bottom:1019.226000px;}
.y1a0{bottom:1020.061500px;}
.y1cd{bottom:1020.166500px;}
.y115{bottom:1023.051000px;}
.y91{bottom:1026.039000px;}
.y37{bottom:1035.006000px;}
.y1ec{bottom:1038.592500px;}
.y19f{bottom:1040.326500px;}
.ybf{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y114{bottom:1043.314500px;}
.y90{bottom:1046.304000px;}
.y36{bottom:1055.269500px;}
.y1eb{bottom:1057.960500px;}
.y19e{bottom:1060.590000px;}
.y13c{bottom:1063.579500px;}
.y8f{bottom:1066.567500px;}
.yd8{bottom:1066.822500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y1ea{bottom:1077.327000px;}
.y8e{bottom:1086.832500px;}
.yd7{bottom:1087.086000px;}
.y33{bottom:1095.798000px;}
.y1e9{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y34{bottom:1101.223500px;}
.y32{bottom:1116.063000px;}
.yf4{bottom:1121.487000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h8{height:25.508090px;}
.h11{height:26.110157px;}
.hf{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h13{height:34.813397px;}
.hc{height:35.099880px;}
.hd{height:35.100320px;}
.h7{height:39.163488px;}
.h15{height:39.165235px;}
.h16{height:39.488026px;}
.h17{height:40.400026px;}
.h12{height:43.038432px;}
.h6{height:43.040160px;}
.he{height:43.516637px;}
.hb{height:43.518384px;}
.h10{height:43.875290px;}
.h4{height:43.877052px;}
.h2{height:50.930649px;}
.h14{height:54.768749px;}
.h5{height:77.470560px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:194.570198px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:29.274117px;}
.x2{left:58.056215px;}
.x13{left:112.561500px;}
.x1{left:114.802500px;}
.x3{left:123.307500px;}
.x10{left:134.269500px;}
.xf{left:136.063500px;}
.x24{left:140.494500px;}
.x7{left:146.692500px;}
.x55{left:150.412500px;}
.x56{left:161.464500px;}
.x3d{left:170.220000px;}
.x49{left:180.814500px;}
.x6{left:188.353500px;}
.x52{left:194.572500px;}
.x4a{left:204.150000px;}
.x2c{left:215.019000px;}
.x50{left:219.639000px;}
.x43{left:221.296500px;}
.x5a{left:230.830500px;}
.x2d{left:239.194500px;}
.x51{left:243.003000px;}
.x44{left:244.645500px;}
.x5c{left:252.097500px;}
.x5e{left:254.101500px;}
.x5d{left:265.689000px;}
.x31{left:278.262000px;}
.x32{left:295.756500px;}
.x41{left:305.239500px;}
.x3f{left:306.688500px;}
.x58{left:324.478500px;}
.x42{left:328.578000px;}
.x40{left:330.430500px;}
.x59{left:335.536500px;}
.x2e{left:341.842500px;}
.x8{left:344.865000px;}
.x53{left:352.155000px;}
.x9{left:356.961000px;}
.xd{left:365.584500px;}
.x2f{left:367.129500px;}
.x39{left:372.786000px;}
.x54{left:375.507000px;}
.xe{left:376.678500px;}
.x5b{left:383.983500px;}
.x3a{left:398.755500px;}
.x14{left:416.683500px;}
.x47{left:439.419000px;}
.x35{left:459.010500px;}
.x48{left:462.751500px;}
.x1f{left:465.759000px;}
.x25{left:478.678500px;}
.x26{left:480.733500px;}
.x36{left:483.003000px;}
.x27{left:486.525000px;}
.x2a{left:505.120500px;}
.x3b{left:521.664000px;}
.x33{left:522.981000px;}
.x2b{left:528.451500px;}
.x4e{left:530.074500px;}
.x45{left:541.821000px;}
.x3c{left:546.148500px;}
.x15{left:550.261500px;}
.x4f{left:554.005500px;}
.x46{left:565.173000px;}
.x4d{left:568.467000px;}
.x17{left:592.137000px;}
.x18{left:597.112500px;}
.x3e{left:602.395500px;}
.x23{left:611.433000px;}
.x22{left:613.143000px;}
.x19{left:627.538500px;}
.x1a{left:636.231000px;}
.x28{left:637.480500px;}
.x11{left:639.586500px;}
.x1b{left:643.765500px;}
.x37{left:648.235500px;}
.x12{left:652.840500px;}
.x29{left:655.077000px;}
.x34{left:662.619000px;}
.x4b{left:666.871500px;}
.x1c{left:672.562500px;}
.x1d{left:675.261000px;}
.x1e{left:681.694500px;}
.x4c{left:690.318000px;}
.xa{left:698.755500px;}
.x4{left:702.742573px;}
.x30{left:726.607500px;}
.xb{left:733.201500px;}
.xc{left:741.918000px;}
.x38{left:758.496000px;}
.x21{left:763.297500px;}
.x20{left:765.009000px;}
.x57{left:771.684000px;}
.x16{left:777.064500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.712000pt;}
.v3{vertical-align:19.285333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls9{letter-spacing:10.626533pt;}
.ls6{letter-spacing:10.632000pt;}
.lsc{letter-spacing:11.399995pt;}
.ls12{letter-spacing:12.011771pt;}
.ls11{letter-spacing:13.070931pt;}
.lsd{letter-spacing:13.154303pt;}
.ls10{letter-spacing:13.283467pt;}
.lse{letter-spacing:13.336601pt;}
.lsf{letter-spacing:13.389734pt;}
.ls1{letter-spacing:13.401487pt;}
.ls2{letter-spacing:13.438459pt;}
.lsa{letter-spacing:13.496002pt;}
.ls5{letter-spacing:13.532677pt;}
.ls3{letter-spacing:13.564497pt;}
.ls4{letter-spacing:13.591371pt;}
.ls13{letter-spacing:15.937067pt;}
.lsb{letter-spacing:59.654400pt;}
.ws48{word-spacing:-13.283467pt;}
.ws102{word-spacing:-11.955200pt;}
.ws28{word-spacing:-10.626800pt;}
.wsae{word-spacing:-3.134898pt;}
.ws22{word-spacing:-2.975297pt;}
.ws21{word-spacing:-2.922533pt;}
.wsd8{word-spacing:-2.762961pt;}
.wse8{word-spacing:-2.709827pt;}
.ws11f{word-spacing:-2.677965pt;}
.ws11d{word-spacing:-2.670210pt;}
.ws9{word-spacing:-2.656906pt;}
.wsb9{word-spacing:-2.656693pt;}
.wsb8{word-spacing:-2.649973pt;}
.wsb7{word-spacing:-2.649150pt;}
.ws11e{word-spacing:-2.630144pt;}
.ws122{word-spacing:-2.391040pt;}
.ws123{word-spacing:-2.343219pt;}
.ws125{word-spacing:-2.199757pt;}
.ws3d{word-spacing:-2.178489pt;}
.ws70{word-spacing:-2.072221pt;}
.wsdf{word-spacing:-1.965953pt;}
.wse1{word-spacing:-1.859685pt;}
.ws5d{word-spacing:-1.753418pt;}
.ws124{word-spacing:-1.721549pt;}
.ws3{word-spacing:-1.696326pt;}
.ws8c{word-spacing:-1.664358pt;}
.ws8b{word-spacing:-1.657354pt;}
.ws8d{word-spacing:-1.647150pt;}
.ws98{word-spacing:-1.594016pt;}
.wse0{word-spacing:-1.527417pt;}
.wsc5{word-spacing:-1.487748pt;}
.ws10b{word-spacing:-1.482445pt;}
.ws93{word-spacing:-1.434614pt;}
.wsc0{word-spacing:-1.381481pt;}
.wsc1{word-spacing:-1.367027pt;}
.wsc2{word-spacing:-1.328347pt;}
.wsd5{word-spacing:-1.275213pt;}
.ws12b{word-spacing:-1.243341pt;}
.ws12a{word-spacing:-1.237016pt;}
.ws39{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.wsba{word-spacing:-1.168945pt;}
.ws105{word-spacing:-1.105187pt;}
.wsde{word-spacing:-1.062677pt;}
.ws8e{word-spacing:-1.009543pt;}
.ws73{word-spacing:-0.956410pt;}
.wsd6{word-spacing:-0.955988pt;}
.ws91{word-spacing:-0.903276pt;}
.ws133{word-spacing:-0.860774pt;}
.wsf4{word-spacing:-0.850142pt;}
.wse9{word-spacing:-0.797008pt;}
.ws4c{word-spacing:-0.743874pt;}
.ws2f{word-spacing:-0.690740pt;}
.wsee{word-spacing:-0.663331pt;}
.wsbe{word-spacing:-0.637608pt;}
.ws83{word-spacing:-0.637606pt;}
.wsc6{word-spacing:-0.584473pt;}
.ws110{word-spacing:-0.573850pt;}
.wsa8{word-spacing:-0.531339pt;}
.ws32{word-spacing:-0.425071pt;}
.ws2c{word-spacing:-0.371937pt;}
.ws50{word-spacing:-0.318803pt;}
.ws1c{word-spacing:-0.318657pt;}
.ws126{word-spacing:-0.286925pt;}
.ws16{word-spacing:-0.265893pt;}
.ws49{word-spacing:-0.265669pt;}
.ws10f{word-spacing:-0.239104pt;}
.wsc8{word-spacing:-0.237796pt;}
.ws72{word-spacing:-0.227336pt;}
.ws2e{word-spacing:-0.212535pt;}
.wsf1{word-spacing:-0.199310pt;}
.wsf2{word-spacing:-0.194202pt;}
.ws113{word-spacing:-0.191283pt;}
.ws5a{word-spacing:-0.183383pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.159195pt;}
.ws6a{word-spacing:-0.127938pt;}
.ws103{word-spacing:-0.127522pt;}
.wsf0{word-spacing:-0.111299pt;}
.ws33{word-spacing:-0.106268pt;}
.wsc7{word-spacing:-0.097531pt;}
.ws115{word-spacing:-0.095642pt;}
.ws104{word-spacing:-0.085014pt;}
.ws13{word-spacing:-0.053614pt;}
.ws35{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.053083pt;}
.wsfc{word-spacing:-0.047821pt;}
.wsca{word-spacing:-0.045653pt;}
.ws60{word-spacing:-0.042507pt;}
.wse6{word-spacing:-0.018294pt;}
.ws12c{word-spacing:-0.008644pt;}
.ws112{word-spacing:-0.008277pt;}
.wsf3{word-spacing:-0.003680pt;}
.ws75{word-spacing:-0.002990pt;}
.wseb{word-spacing:-0.002862pt;}
.ws27{word-spacing:-0.002842pt;}
.ws9d{word-spacing:-0.000970pt;}
.ws25{word-spacing:-0.000693pt;}
.ws17{word-spacing:-0.000266pt;}
.wsea{word-spacing:-0.000198pt;}
.ws26{word-spacing:-0.000128pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000266pt;}
.ws9c{word-spacing:0.001859pt;}
.wsef{word-spacing:0.020249pt;}
.ws6b{word-spacing:0.027635pt;}
.ws109{word-spacing:0.032875pt;}
.ws108{word-spacing:0.047821pt;}
.wsec{word-spacing:0.051794pt;}
.wsc{word-spacing:0.053083pt;}
.ws37{word-spacing:0.053134pt;}
.ws71{word-spacing:0.072906pt;}
.ws79{word-spacing:0.085014pt;}
.ws101{word-spacing:0.095642pt;}
.ws74{word-spacing:0.098020pt;}
.ws19{word-spacing:0.105847pt;}
.ws3b{word-spacing:0.106268pt;}
.ws11{word-spacing:0.106378pt;}
.wsa7{word-spacing:0.120224pt;}
.ws7a{word-spacing:0.127522pt;}
.ws11b{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159195pt;}
.ws3a{word-spacing:0.159402pt;}
.ws12{word-spacing:0.159727pt;}
.wsa6{word-spacing:0.170029pt;}
.wsa4{word-spacing:0.171415pt;}
.wsce{word-spacing:0.182189pt;}
.wscd{word-spacing:0.187591pt;}
.ws12d{word-spacing:0.191283pt;}
.ws69{word-spacing:0.192234pt;}
.wsd4{word-spacing:0.194211pt;}
.ws45{word-spacing:0.212535pt;}
.ws8{word-spacing:0.212544pt;}
.ws52{word-spacing:0.224754pt;}
.ws12e{word-spacing:0.239104pt;}
.ws51{word-spacing:0.265669pt;}
.ws1a{word-spacing:0.265893pt;}
.ws6f{word-spacing:0.277424pt;}
.ws10e{word-spacing:0.286925pt;}
.ws7c{word-spacing:0.318137pt;}
.ws7{word-spacing:0.318657pt;}
.ws4a{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.371937pt;}
.ws138{word-spacing:0.382566pt;}
.ws43{word-spacing:0.425071pt;}
.ws9b{word-spacing:0.478205pt;}
.wsd{word-spacing:0.584283pt;}
.ws36{word-spacing:0.584473pt;}
.ws5f{word-spacing:0.595101pt;}
.wsa9{word-spacing:0.637606pt;}
.ws120{word-spacing:0.669491pt;}
.wsbd{word-spacing:0.680115pt;}
.ws38{word-spacing:0.690740pt;}
.ws76{word-spacing:0.722622pt;}
.wsbc{word-spacing:0.743874pt;}
.ws61{word-spacing:0.765130pt;}
.ws134{word-spacing:0.765133pt;}
.ws53{word-spacing:0.797008pt;}
.wsb5{word-spacing:0.850142pt;}
.ws2a{word-spacing:0.903276pt;}
.ws29{word-spacing:0.956410pt;}
.ws4d{word-spacing:1.009543pt;}
.ws64{word-spacing:1.062677pt;}
.wsd3{word-spacing:1.115811pt;}
.ws80{word-spacing:1.168945pt;}
.ws117{word-spacing:1.195520pt;}
.ws77{word-spacing:1.232709pt;}
.ws81{word-spacing:1.275213pt;}
.ws63{word-spacing:1.328347pt;}
.ws8f{word-spacing:1.381481pt;}
.ws5{word-spacing:1.434459pt;}
.ws68{word-spacing:1.434614pt;}
.ws46{word-spacing:1.487748pt;}
.ws116{word-spacing:1.530266pt;}
.ws47{word-spacing:1.540882pt;}
.ws100{word-spacing:1.578086pt;}
.ws107{word-spacing:1.625907pt;}
.ws7d{word-spacing:1.647150pt;}
.ws78{word-spacing:1.657781pt;}
.wsd7{word-spacing:1.700284pt;}
.ws4f{word-spacing:1.753418pt;}
.ws82{word-spacing:1.806551pt;}
.ws86{word-spacing:1.859685pt;}
.wsdd{word-spacing:1.912819pt;}
.ws97{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws34{word-spacing:2.125355pt;}
.ws2b{word-spacing:2.178489pt;}
.ws10c{word-spacing:2.199757pt;}
.wse4{word-spacing:2.231622pt;}
.ws6c{word-spacing:2.284756pt;}
.ws121{word-spacing:2.295398pt;}
.wsd9{word-spacing:2.337890pt;}
.ws14{word-spacing:2.337984pt;}
.ws6{word-spacing:2.391279pt;}
.wsa{word-spacing:2.444097pt;}
.ws3c{word-spacing:2.444158pt;}
.ws40{word-spacing:2.497292pt;}
.ws24{word-spacing:2.497445pt;}
.wsfe{word-spacing:2.534502pt;}
.wsc9{word-spacing:2.550426pt;}
.wsff{word-spacing:2.582323pt;}
.wsf5{word-spacing:2.592939pt;}
.wsaf{word-spacing:2.603559pt;}
.ws131{word-spacing:2.630144pt;}
.wsd2{word-spacing:2.654916pt;}
.ws41{word-spacing:2.656693pt;}
.ws114{word-spacing:2.677965pt;}
.ws65{word-spacing:2.762961pt;}
.ws127{word-spacing:2.773606pt;}
.ws135{word-spacing:2.863454pt;}
.ws128{word-spacing:2.866014pt;}
.wsa0{word-spacing:2.869229pt;}
.ws10a{word-spacing:2.869248pt;}
.ws111{word-spacing:2.869803pt;}
.ws129{word-spacing:2.871484pt;}
.ws10d{word-spacing:2.917069pt;}
.ws5c{word-spacing:2.922363pt;}
.ws18{word-spacing:2.922533pt;}
.ws5e{word-spacing:3.028630pt;}
.ws11c{word-spacing:3.060531pt;}
.wsed{word-spacing:3.103026pt;}
.ws136{word-spacing:3.108352pt;}
.wse5{word-spacing:3.117854pt;}
.ws1f{word-spacing:3.134811pt;}
.ws4e{word-spacing:3.134898pt;}
.ws20{word-spacing:3.135343pt;}
.wse{word-spacing:3.174288pt;}
.wsf{word-spacing:3.184000pt;}
.wsb3{word-spacing:3.188032pt;}
.ws12f{word-spacing:3.203994pt;}
.ws31{word-spacing:3.294300pt;}
.ws5b{word-spacing:3.347434pt;}
.ws44{word-spacing:3.400567pt;}
.wsf9{word-spacing:3.453701pt;}
.ws137{word-spacing:3.538739pt;}
.ws10{word-spacing:3.559899pt;}
.ws42{word-spacing:3.559969pt;}
.wsd1{word-spacing:3.666237pt;}
.wsd0{word-spacing:3.719371pt;}
.ws67{word-spacing:3.772505pt;}
.ws90{word-spacing:3.931906pt;}
.ws58{word-spacing:3.985040pt;}
.ws59{word-spacing:3.999514pt;}
.ws4b{word-spacing:4.144442pt;}
.wse3{word-spacing:4.250709pt;}
.ws23{word-spacing:4.463371pt;}
.wsac{word-spacing:4.516379pt;}
.wsa5{word-spacing:4.622646pt;}
.ws7e{word-spacing:4.835182pt;}
.wsda{word-spacing:5.047717pt;}
.ws66{word-spacing:5.100851pt;}
.ws62{word-spacing:5.100864pt;}
.ws96{word-spacing:5.153985pt;}
.ws30{word-spacing:5.260253pt;}
.ws3f{word-spacing:5.313387pt;}
.ws6d{word-spacing:5.365093pt;}
.ws3e{word-spacing:5.366521pt;}
.ws89{word-spacing:5.419654pt;}
.wsb1{word-spacing:5.472788pt;}
.ws7b{word-spacing:5.525922pt;}
.ws11a{word-spacing:5.547213pt;}
.wsb0{word-spacing:5.579056pt;}
.ws1d{word-spacing:5.579174pt;}
.ws1e{word-spacing:5.579705pt;}
.ws130{word-spacing:5.595034pt;}
.ws8a{word-spacing:5.844725pt;}
.wse7{word-spacing:5.897859pt;}
.ws1b{word-spacing:5.951445pt;}
.ws56{word-spacing:6.370310pt;}
.ws57{word-spacing:6.376064pt;}
.ws55{word-spacing:6.387914pt;}
.wse2{word-spacing:6.429198pt;}
.wsb2{word-spacing:6.482332pt;}
.wsad{word-spacing:6.801135pt;}
.wsf8{word-spacing:6.854269pt;}
.wsf7{word-spacing:6.960537pt;}
.ws9a{word-spacing:7.011831pt;}
.ws99{word-spacing:7.013670pt;}
.wsbf{word-spacing:7.119938pt;}
.wsb4{word-spacing:7.226206pt;}
.ws7f{word-spacing:7.279340pt;}
.ws9e{word-spacing:7.332474pt;}
.wsa1{word-spacing:7.491875pt;}
.ws88{word-spacing:7.545009pt;}
.wsb6{word-spacing:7.651277pt;}
.ws94{word-spacing:7.970080pt;}
.ws95{word-spacing:7.978913pt;}
.wsc3{word-spacing:8.288883pt;}
.wsc4{word-spacing:8.501419pt;}
.ws119{word-spacing:8.607744pt;}
.ws6e{word-spacing:8.767088pt;}
.ws87{word-spacing:8.820222pt;}
.wscf{word-spacing:8.873356pt;}
.wsfd{word-spacing:9.133773pt;}
.wsab{word-spacing:9.345415pt;}
.wsaa{word-spacing:9.351561pt;}
.ws132{word-spacing:9.851085pt;}
.wsf6{word-spacing:10.095435pt;}
.ws118{word-spacing:10.807501pt;}
.wsfb{word-spacing:10.903142pt;}
.wsfa{word-spacing:10.950963pt;}
.wsbb{word-spacing:11.689451pt;}
.wsa2{word-spacing:13.442868pt;}
.wscc{word-spacing:14.022629pt;}
.wscb{word-spacing:14.027341pt;}
.ws9f{word-spacing:15.036884pt;}
.ws92{word-spacing:16.471499pt;}
.wsa3{word-spacing:16.684034pt;}
.ws85{word-spacing:20.297137pt;}
.wsdc{word-spacing:22.156822pt;}
.ws84{word-spacing:32.783596pt;}
.ws106{word-spacing:35.744000pt;}
._16{margin-left:-6.179250pt;}
._1{margin-left:-5.260347pt;}
._6{margin-left:-3.878025pt;}
._1b{margin-left:-2.869229pt;}
._3{margin-left:-1.714122pt;}
._5{width:0.969929pt;}
._28{width:2.120077pt;}
._23{width:3.188032pt;}
._17{width:4.742753pt;}
._19{width:9.780621pt;}
._c{width:11.637262pt;}
._1e{width:12.872234pt;}
._13{width:13.782202pt;}
._4{width:14.823882pt;}
._f{width:15.727625pt;}
._8{width:16.684438pt;}
._2{width:17.697441pt;}
._22{width:18.610692pt;}
._11{width:19.500129pt;}
._a{width:20.614643pt;}
._10{width:21.731751pt;}
._7{width:23.431913pt;}
._12{width:24.416122pt;}
._9{width:25.558363pt;}
._b{width:27.219668pt;}
._14{width:28.182274pt;}
._0{width:29.648757pt;}
._1f{width:30.884709pt;}
._26{width:31.829611pt;}
._15{width:32.970674pt;}
._1d{width:34.444584pt;}
._1a{width:37.937581pt;}
._1c{width:39.531597pt;}
._21{width:41.019345pt;}
._25{width:42.586170pt;}
._18{width:43.955546pt;}
._27{width:44.855910pt;}
._24{width:48.095505pt;}
._d{width:888.365962pt;}
._20{width:1853.656533pt;}
._e{width:1874.909867pt;}
.fs3{font-size:26.565333pt;}
.fsb{font-size:31.880533pt;}
.fs6{font-size:37.276537pt;}
.fsa{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs7{font-size:42.506667pt;}
.fs8{font-size:42.507200pt;}
.fs4{font-size:47.818667pt;}
.fsc{font-size:47.820800pt;}
.fs9{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fs2{font-size:95.642667pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:14.008186pt;}
.y30{bottom:56.693333pt;}
.y2f{bottom:96.544000pt;}
.y113{bottom:99.845333pt;}
.ybe{bottom:101.472000pt;}
.y1cc{bottom:102.262667pt;}
.y161{bottom:103.670667pt;}
.y17b{bottom:105.032000pt;}
.y112{bottom:112.464000pt;}
.y21b{bottom:114.066667pt;}
.y2e{bottom:114.556000pt;}
.y1cb{bottom:114.881333pt;}
.y160{bottom:116.289333pt;}
.y8d{bottom:116.608000pt;}
.y1d1{bottom:118.441333pt;}
.y85{bottom:119.105333pt;}
.ybd{bottom:119.484000pt;}
.y15f{bottom:120.146667pt;}
.y1e8{bottom:120.600000pt;}
.yf3{bottom:120.733333pt;}
.y17a{bottom:123.044000pt;}
.y111{bottom:125.084000pt;}
.y1ca{bottom:127.501333pt;}
.y8c{bottom:129.228000pt;}
.y61{bottom:129.525333pt;}
.y1e7{bottom:129.908000pt;}
.yd6{bottom:130.662667pt;}
.y1d0{bottom:131.061333pt;}
.y21a{bottom:131.281333pt;}
.y1c9{bottom:131.358667pt;}
.y84{bottom:131.725333pt;}
.y2d{bottom:132.568000pt;}
.ybc{bottom:137.496000pt;}
.y110{bottom:137.702667pt;}
.yf2{bottom:138.745333pt;}
.y179{bottom:141.057333pt;}
.y8b{bottom:141.846667pt;}
.y1e6{bottom:142.528000pt;}
.yd5{bottom:143.281333pt;}
.y1cf{bottom:143.680000pt;}
.y83{bottom:144.344000pt;}
.y1ce{bottom:147.537333pt;}
.y219{bottom:148.497333pt;}
.y10f{bottom:150.322667pt;}
.y2c{bottom:150.581333pt;}
.y8a{bottom:154.466667pt;}
.y1e5{bottom:155.146667pt;}
.ybb{bottom:155.509333pt;}
.yd4{bottom:155.901333pt;}
.yf1{bottom:156.757333pt;}
.y82{bottom:156.964000pt;}
.y178{bottom:159.069333pt;}
.yd3{bottom:159.758667pt;}
.y10e{bottom:162.941333pt;}
.y218{bottom:165.713333pt;}
.y10d{bottom:166.798667pt;}
.y89{bottom:167.085333pt;}
.y1e4{bottom:167.766667pt;}
.y2b{bottom:168.593333pt;}
.y81{bottom:169.582667pt;}
.y15e{bottom:172.113333pt;}
.y13b{bottom:172.458667pt;}
.yba{bottom:173.521333pt;}
.y177{bottom:177.081333pt;}
.y88{bottom:179.705333pt;}
.y1e3{bottom:180.385333pt;}
.y60{bottom:181.492000pt;}
.y80{bottom:182.202667pt;}
.yf0{bottom:182.740000pt;}
.y217{bottom:182.928000pt;}
.y1c7{bottom:183.325333pt;}
.y87{bottom:183.562667pt;}
.y2a{bottom:186.606667pt;}
.y1c8{bottom:188.146667pt;}
.y15d{bottom:190.126667pt;}
.y13a{bottom:190.472000pt;}
.yb9{bottom:191.534667pt;}
.y1e2{bottom:193.005333pt;}
.y7f{bottom:194.821333pt;}
.y176{bottom:195.094667pt;}
.y7e{bottom:198.680000pt;}
.y5f{bottom:199.504000pt;}
.y216{bottom:200.144000pt;}
.y1c6{bottom:201.337333pt;}
.y29{bottom:204.618667pt;}
.y1e1{bottom:205.624000pt;}
.y15c{bottom:208.138667pt;}
.y139{bottom:208.484000pt;}
.y1e0{bottom:209.482667pt;}
.yb8{bottom:209.546667pt;}
.yd2{bottom:211.725333pt;}
.y175{bottom:213.106667pt;}
.yef{bottom:213.690667pt;}
.y19d{bottom:215.393333pt;}
.y215{bottom:217.358667pt;}
.y5e{bottom:217.517333pt;}
.y10c{bottom:218.765333pt;}
.y1c5{bottom:219.349333pt;}
.y28{bottom:222.630667pt;}
.y15b{bottom:226.150667pt;}
.y138{bottom:226.497333pt;}
.yb7{bottom:227.558667pt;}
.yd1{bottom:229.737333pt;}
.y174{bottom:231.118667pt;}
.yee{bottom:231.704000pt;}
.y19c{bottom:233.406667pt;}
.y214{bottom:234.574667pt;}
.y5d{bottom:235.529333pt;}
.y10b{bottom:236.778667pt;}
.y1c4{bottom:237.362667pt;}
.y27{bottom:240.644000pt;}
.y15a{bottom:244.164000pt;}
.y137{bottom:244.509333pt;}
.yb6{bottom:245.572000pt;}
.yd0{bottom:247.750667pt;}
.y173{bottom:249.132000pt;}
.yed{bottom:249.716000pt;}
.y7d{bottom:250.646667pt;}
.y19b{bottom:251.418667pt;}
.y213{bottom:251.790667pt;}
.y5c{bottom:253.541333pt;}
.y10a{bottom:254.790667pt;}
.y1c3{bottom:255.374667pt;}
.y21e{bottom:257.004000pt;}
.y26{bottom:258.656000pt;}
.y1df{bottom:261.074667pt;}
.y159{bottom:262.176000pt;}
.y136{bottom:262.521333pt;}
.yb5{bottom:263.584000pt;}
.ycf{bottom:265.762667pt;}
.y172{bottom:267.144000pt;}
.yec{bottom:267.729333pt;}
.y7c{bottom:268.658667pt;}
.y212{bottom:269.005333pt;}
.y19a{bottom:269.430667pt;}
.y5b{bottom:271.554667pt;}
.y109{bottom:272.802667pt;}
.y1c2{bottom:273.388000pt;}
.y21d{bottom:274.218667pt;}
.y25{bottom:276.669333pt;}
.y1de{bottom:278.289333pt;}
.y158{bottom:280.189333pt;}
.y135{bottom:280.534667pt;}
.yb4{bottom:281.597333pt;}
.yce{bottom:283.776000pt;}
.y171{bottom:285.157333pt;}
.yeb{bottom:285.741333pt;}
.y211{bottom:286.221333pt;}
.y7b{bottom:286.670667pt;}
.y199{bottom:287.444000pt;}
.y5a{bottom:289.566667pt;}
.y1c1{bottom:291.400000pt;}
.y21c{bottom:291.434667pt;}
.y24{bottom:294.681333pt;}
.y1dd{bottom:295.505333pt;}
.y157{bottom:298.201333pt;}
.y134{bottom:298.546667pt;}
.ycd{bottom:298.642667pt;}
.yb3{bottom:299.609333pt;}
.y108{bottom:301.442667pt;}
.ycc{bottom:301.788000pt;}
.y210{bottom:303.437333pt;}
.yea{bottom:303.753333pt;}
.y7a{bottom:304.684000pt;}
.y198{bottom:305.456000pt;}
.y59{bottom:307.580000pt;}
.y1c0{bottom:309.412000pt;}
.y23{bottom:312.693333pt;}
.y1dc{bottom:312.720000pt;}
.y170{bottom:313.796000pt;}
.y156{bottom:316.213333pt;}
.y133{bottom:316.560000pt;}
.yb2{bottom:317.621333pt;}
.y107{bottom:319.454667pt;}
.y20f{bottom:320.652000pt;}
.ye9{bottom:321.766667pt;}
.y78{bottom:322.696000pt;}
.y197{bottom:323.469333pt;}
.y58{bottom:325.592000pt;}
.y1bf{bottom:327.425333pt;}
.y79{bottom:327.518667pt;}
.ycb{bottom:327.770667pt;}
.y1db{bottom:329.936000pt;}
.y22{bottom:330.706667pt;}
.y16f{bottom:331.809333pt;}
.y155{bottom:334.226667pt;}
.y132{bottom:334.572000pt;}
.yb1{bottom:335.634667pt;}
.y106{bottom:337.468000pt;}
.y20e{bottom:337.868000pt;}
.ye8{bottom:339.778667pt;}
.y77{bottom:340.709333pt;}
.y196{bottom:341.481333pt;}
.y57{bottom:343.604000pt;}
.y1be{bottom:345.437333pt;}
.y1da{bottom:347.152000pt;}
.y21{bottom:348.718667pt;}
.y16e{bottom:349.821333pt;}
.y154{bottom:352.238667pt;}
.y131{bottom:352.584000pt;}
.yb0{bottom:353.646667pt;}
.y20d{bottom:355.082667pt;}
.y105{bottom:355.480000pt;}
.ye7{bottom:357.792000pt;}
.y76{bottom:358.721333pt;}
.y195{bottom:359.493333pt;}
.y56{bottom:361.617333pt;}
.y1bd{bottom:363.450667pt;}
.y1d9{bottom:364.366667pt;}
.y20{bottom:366.732000pt;}
.y16d{bottom:367.833333pt;}
.y153{bottom:370.252000pt;}
.y130{bottom:370.597333pt;}
.yaf{bottom:371.660000pt;}
.y20c{bottom:372.298667pt;}
.y104{bottom:373.492000pt;}
.ye6{bottom:375.804000pt;}
.y75{bottom:376.733333pt;}
.y194{bottom:377.506667pt;}
.y55{bottom:379.629333pt;}
.y1bc{bottom:381.462667pt;}
.y1d8{bottom:381.582667pt;}
.y1f{bottom:384.744000pt;}
.y152{bottom:388.264000pt;}
.y20b{bottom:389.514667pt;}
.yae{bottom:389.672000pt;}
.y103{bottom:391.505333pt;}
.y74{bottom:394.746667pt;}
.y193{bottom:395.518667pt;}
.y16c{bottom:396.473333pt;}
.y12f{bottom:396.580000pt;}
.y54{bottom:397.642667pt;}
.y1d7{bottom:398.797333pt;}
.y1bb{bottom:399.474667pt;}
.y1e{bottom:402.756000pt;}
.ye5{bottom:404.442667pt;}
.y151{bottom:406.276000pt;}
.y20a{bottom:406.729333pt;}
.yad{bottom:407.684000pt;}
.y73{bottom:412.758667pt;}
.y192{bottom:413.532000pt;}
.y53{bottom:415.654667pt;}
.y1d6{bottom:416.013333pt;}
.y1ba{bottom:417.488000pt;}
.y102{bottom:420.144000pt;}
.y1d{bottom:420.769333pt;}
.ye3{bottom:422.456000pt;}
.ye4{bottom:422.681333pt;}
.y209{bottom:423.945333pt;}
.yac{bottom:425.697333pt;}
.y12e{bottom:427.530667pt;}
.y16b{bottom:427.769333pt;}
.y72{bottom:430.772000pt;}
.y150{bottom:432.258667pt;}
.y52{bottom:433.666667pt;}
.y1b9{bottom:435.500000pt;}
.y101{bottom:438.157333pt;}
.y191{bottom:440.164000pt;}
.ye2{bottom:440.468000pt;}
.y208{bottom:441.160000pt;}
.y1d5{bottom:441.198667pt;}
.yab{bottom:443.709333pt;}
.y12d{bottom:445.542667pt;}
.y16a{bottom:445.781333pt;}
.y1c{bottom:446.752000pt;}
.y71{bottom:448.784000pt;}
.y51{bottom:451.680000pt;}
.y1b8{bottom:453.513333pt;}
.y100{bottom:456.169333pt;}
.y190{bottom:458.176000pt;}
.y207{bottom:458.376000pt;}
.ye1{bottom:458.481333pt;}
.yaa{bottom:461.722667pt;}
.y14f{bottom:463.209333pt;}
.y12c{bottom:463.554667pt;}
.y169{bottom:463.794667pt;}
.y70{bottom:466.796000pt;}
.y50{bottom:469.692000pt;}
.y1b7{bottom:471.525333pt;}
.yff{bottom:474.182667pt;}
.y206{bottom:475.592000pt;}
.y18f{bottom:476.189333pt;}
.y1d4{bottom:476.268000pt;}
.ye0{bottom:476.493333pt;}
.ya9{bottom:479.734667pt;}
.y14e{bottom:481.222667pt;}
.y12b{bottom:481.568000pt;}
.y168{bottom:481.806667pt;}
.y6f{bottom:484.809333pt;}
.y4f{bottom:487.704000pt;}
.y1b6{bottom:489.537333pt;}
.yfe{bottom:492.194667pt;}
.y205{bottom:492.806667pt;}
.y18e{bottom:494.201333pt;}
.ya8{bottom:497.746667pt;}
.y14d{bottom:499.234667pt;}
.y12a{bottom:499.580000pt;}
.y167{bottom:499.820000pt;}
.y6e{bottom:502.821333pt;}
.ydf{bottom:505.133333pt;}
.y4e{bottom:505.717333pt;}
.y1b5{bottom:507.550667pt;}
.y204{bottom:510.022667pt;}
.yfd{bottom:510.206667pt;}
.y1b{bottom:514.670667pt;}
.ya7{bottom:515.760000pt;}
.y14c{bottom:517.248000pt;}
.y129{bottom:517.593333pt;}
.y166{bottom:517.832000pt;}
.y18d{bottom:520.184000pt;}
.y6d{bottom:520.834667pt;}
.yde{bottom:523.145333pt;}
.y4d{bottom:523.729333pt;}
.y1b4{bottom:525.562667pt;}
.y203{bottom:527.237333pt;}
.yfc{bottom:528.220000pt;}
.y1d3{bottom:528.552000pt;}
.ya6{bottom:533.772000pt;}
.y14b{bottom:535.260000pt;}
.y128{bottom:535.605333pt;}
.y165{bottom:535.844000pt;}
.y6c{bottom:538.846667pt;}
.ydd{bottom:541.157333pt;}
.y4c{bottom:541.742667pt;}
.y1b3{bottom:543.576000pt;}
.y202{bottom:544.453333pt;}
.yfb{bottom:546.232000pt;}
.y1a{bottom:548.622667pt;}
.y18c{bottom:551.134667pt;}
.ya5{bottom:551.785333pt;}
.y14a{bottom:553.272000pt;}
.y127{bottom:553.617333pt;}
.y6b{bottom:556.858667pt;}
.ydc{bottom:559.170667pt;}
.y4b{bottom:559.754667pt;}
.y201{bottom:561.669333pt;}
.yfa{bottom:564.245333pt;}
.y19{bottom:566.636000pt;}
.y164{bottom:567.140000pt;}
.y18b{bottom:569.148000pt;}
.y1b2{bottom:569.558667pt;}
.ya4{bottom:569.797333pt;}
.y149{bottom:571.285333pt;}
.y126{bottom:571.630667pt;}
.y6a{bottom:574.872000pt;}
.ydb{bottom:577.182667pt;}
.y4a{bottom:577.766667pt;}
.y200{bottom:578.884000pt;}
.y18{bottom:584.648000pt;}
.y163{bottom:585.153333pt;}
.y18a{bottom:587.160000pt;}
.ya3{bottom:587.809333pt;}
.y125{bottom:589.642667pt;}
.yf9{bottom:590.228000pt;}
.y69{bottom:592.884000pt;}
.y49{bottom:595.780000pt;}
.y1ff{bottom:596.100000pt;}
.y148{bottom:599.924000pt;}
.y1b1{bottom:600.509333pt;}
.y17{bottom:602.660000pt;}
.y162{bottom:603.165333pt;}
.y189{bottom:605.172000pt;}
.ya2{bottom:605.822667pt;}
.y124{bottom:607.656000pt;}
.y68{bottom:610.896000pt;}
.y1fe{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.y147{bottom:617.937333pt;}
.y1b0{bottom:618.521333pt;}
.y16{bottom:620.673333pt;}
.yf8{bottom:621.178667pt;}
.y188{bottom:623.185333pt;}
.ya1{bottom:623.834667pt;}
.y123{bottom:625.668000pt;}
.y67{bottom:628.909333pt;}
.y1fd{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y146{bottom:635.949333pt;}
.y1af{bottom:636.533333pt;}
.y15{bottom:638.685333pt;}
.yf7{bottom:639.190667pt;}
.y187{bottom:641.197333pt;}
.ya0{bottom:641.846667pt;}
.y122{bottom:643.680000pt;}
.y66{bottom:646.921333pt;}
.y1fc{bottom:647.746667pt;}
.y46{bottom:649.817333pt;}
.y145{bottom:653.962667pt;}
.y1ae{bottom:654.546667pt;}
.y14{bottom:656.698667pt;}
.yf6{bottom:657.202667pt;}
.y186{bottom:659.210667pt;}
.y9f{bottom:659.860000pt;}
.y121{bottom:661.693333pt;}
.y65{bottom:664.934667pt;}
.y1fb{bottom:664.961333pt;}
.y45{bottom:667.829333pt;}
.y144{bottom:671.974667pt;}
.y1ad{bottom:672.558667pt;}
.y13{bottom:674.710667pt;}
.yf5{bottom:675.216000pt;}
.y185{bottom:677.222667pt;}
.y9e{bottom:677.872000pt;}
.y120{bottom:679.705333pt;}
.y1fa{bottom:682.177333pt;}
.y64{bottom:682.946667pt;}
.y44{bottom:685.842667pt;}
.y143{bottom:689.986667pt;}
.y1ac{bottom:690.572000pt;}
.y12{bottom:692.722667pt;}
.y184{bottom:695.234667pt;}
.y9d{bottom:695.885333pt;}
.y11f{bottom:697.718667pt;}
.y1f9{bottom:699.392000pt;}
.y63{bottom:700.958667pt;}
.y43{bottom:703.854667pt;}
.y142{bottom:708.000000pt;}
.y1ab{bottom:708.584000pt;}
.y11{bottom:710.736000pt;}
.y183{bottom:713.248000pt;}
.y9c{bottom:713.897333pt;}
.y11e{bottom:715.730667pt;}
.y1f8{bottom:716.608000pt;}
.yca{bottom:718.972000pt;}
.y42{bottom:721.868000pt;}
.y141{bottom:726.012000pt;}
.y1aa{bottom:726.596000pt;}
.y62{bottom:726.941333pt;}
.y10{bottom:728.748000pt;}
.y182{bottom:731.260000pt;}
.y9b{bottom:731.909333pt;}
.y11d{bottom:733.742667pt;}
.y1f7{bottom:733.824000pt;}
.yc9{bottom:736.984000pt;}
.y41{bottom:739.880000pt;}
.y140{bottom:744.025333pt;}
.y1a9{bottom:744.609333pt;}
.y1d2{bottom:744.701333pt;}
.yf{bottom:746.761333pt;}
.y181{bottom:749.272000pt;}
.y9a{bottom:749.922667pt;}
.y1f6{bottom:751.038667pt;}
.yc8{bottom:754.997333pt;}
.y40{bottom:757.892000pt;}
.y11c{bottom:759.725333pt;}
.y13f{bottom:762.037333pt;}
.y1a8{bottom:762.621333pt;}
.ye{bottom:764.773333pt;}
.y180{bottom:767.285333pt;}
.y99{bottom:767.934667pt;}
.y1f5{bottom:768.254667pt;}
.yc7{bottom:773.009333pt;}
.y3f{bottom:775.905333pt;}
.y13e{bottom:780.049333pt;}
.y1a7{bottom:780.634667pt;}
.yd{bottom:782.785333pt;}
.y17f{bottom:785.297333pt;}
.y1f4{bottom:785.469333pt;}
.y98{bottom:785.948000pt;}
.y11b{bottom:790.676000pt;}
.yc6{bottom:791.021333pt;}
.y3e{bottom:793.917333pt;}
.y1a6{bottom:798.646667pt;}
.y86{bottom:798.740000pt;}
.y1f3{bottom:802.685333pt;}
.y17e{bottom:803.310667pt;}
.y97{bottom:803.960000pt;}
.y11a{bottom:808.689333pt;}
.yc5{bottom:809.034667pt;}
.y9{bottom:811.350667pt;}
.ya{bottom:811.350715pt;}
.y3d{bottom:811.930667pt;}
.y1a5{bottom:816.658667pt;}
.yda{bottom:818.582667pt;}
.y1f2{bottom:819.901333pt;}
.y17d{bottom:821.322667pt;}
.y96{bottom:821.972000pt;}
.y119{bottom:826.701333pt;}
.yc4{bottom:827.046667pt;}
.y3c{bottom:829.942667pt;}
.y1a4{bottom:834.672000pt;}
.yd9{bottom:836.840000pt;}
.y1f1{bottom:837.116000pt;}
.y17c{bottom:839.334667pt;}
.y95{bottom:839.985333pt;}
.y118{bottom:844.714667pt;}
.yc3{bottom:845.060000pt;}
.y8{bottom:846.698667pt;}
.y3b{bottom:847.954667pt;}
.y1a3{bottom:852.684000pt;}
.y1f0{bottom:854.332000pt;}
.y13d{bottom:855.341333pt;}
.y94{bottom:857.997333pt;}
.y7{bottom:862.837333pt;}
.yc2{bottom:863.072000pt;}
.y3a{bottom:865.968000pt;}
.y1a2{bottom:870.697333pt;}
.y1ef{bottom:871.546667pt;}
.y117{bottom:873.353333pt;}
.y93{bottom:876.010667pt;}
.yc1{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y6{bottom:884.017333pt;}
.y1a1{bottom:888.709333pt;}
.y1ee{bottom:888.762667pt;}
.y116{bottom:891.366667pt;}
.y92{bottom:894.022667pt;}
.yc0{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y1ed{bottom:905.978667pt;}
.y1a0{bottom:906.721333pt;}
.y1cd{bottom:906.814667pt;}
.y115{bottom:909.378667pt;}
.y91{bottom:912.034667pt;}
.y37{bottom:920.005333pt;}
.y1ec{bottom:923.193333pt;}
.y19f{bottom:924.734667pt;}
.ybf{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y114{bottom:927.390667pt;}
.y90{bottom:930.048000pt;}
.y36{bottom:938.017333pt;}
.y1eb{bottom:940.409333pt;}
.y19e{bottom:942.746667pt;}
.y13c{bottom:945.404000pt;}
.y8f{bottom:948.060000pt;}
.yd8{bottom:948.286667pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y1ea{bottom:957.624000pt;}
.y8e{bottom:966.073333pt;}
.yd7{bottom:966.298667pt;}
.y33{bottom:974.042667pt;}
.y1e9{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y34{bottom:978.865333pt;}
.y32{bottom:992.056000pt;}
.yf4{bottom:996.877333pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h8{height:22.673858pt;}
.h11{height:23.209028pt;}
.hf{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h13{height:30.945242pt;}
.hc{height:31.199893pt;}
.hd{height:31.200285pt;}
.h7{height:34.811989pt;}
.h15{height:34.813542pt;}
.h16{height:35.100467pt;}
.h17{height:35.911134pt;}
.h12{height:38.256384pt;}
.h6{height:38.257920pt;}
.he{height:38.681455pt;}
.hb{height:38.683008pt;}
.h10{height:39.000258pt;}
.h4{height:39.001824pt;}
.h2{height:45.271688pt;}
.h14{height:48.683332pt;}
.h5{height:68.862720pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:172.951287pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:26.021437pt;}
.x2{left:51.605525pt;}
.x13{left:100.054667pt;}
.x1{left:102.046667pt;}
.x3{left:109.606667pt;}
.x10{left:119.350667pt;}
.xf{left:120.945333pt;}
.x24{left:124.884000pt;}
.x7{left:130.393333pt;}
.x55{left:133.700000pt;}
.x56{left:143.524000pt;}
.x3d{left:151.306667pt;}
.x49{left:160.724000pt;}
.x6{left:167.425333pt;}
.x52{left:172.953333pt;}
.x4a{left:181.466667pt;}
.x2c{left:191.128000pt;}
.x50{left:195.234667pt;}
.x43{left:196.708000pt;}
.x5a{left:205.182667pt;}
.x2d{left:212.617333pt;}
.x51{left:216.002667pt;}
.x44{left:217.462667pt;}
.x5c{left:224.086667pt;}
.x5e{left:225.868000pt;}
.x5d{left:236.168000pt;}
.x31{left:247.344000pt;}
.x32{left:262.894667pt;}
.x41{left:271.324000pt;}
.x3f{left:272.612000pt;}
.x58{left:288.425333pt;}
.x42{left:292.069333pt;}
.x40{left:293.716000pt;}
.x59{left:298.254667pt;}
.x2e{left:303.860000pt;}
.x8{left:306.546667pt;}
.x53{left:313.026667pt;}
.x9{left:317.298667pt;}
.xd{left:324.964000pt;}
.x2f{left:326.337333pt;}
.x39{left:331.365333pt;}
.x54{left:333.784000pt;}
.xe{left:334.825333pt;}
.x5b{left:341.318667pt;}
.x3a{left:354.449333pt;}
.x14{left:370.385333pt;}
.x47{left:390.594667pt;}
.x35{left:408.009333pt;}
.x48{left:411.334667pt;}
.x1f{left:414.008000pt;}
.x25{left:425.492000pt;}
.x26{left:427.318667pt;}
.x36{left:429.336000pt;}
.x27{left:432.466667pt;}
.x2a{left:448.996000pt;}
.x3b{left:463.701333pt;}
.x33{left:464.872000pt;}
.x2b{left:469.734667pt;}
.x4e{left:471.177333pt;}
.x45{left:481.618667pt;}
.x3c{left:485.465333pt;}
.x15{left:489.121333pt;}
.x4f{left:492.449333pt;}
.x46{left:502.376000pt;}
.x4d{left:505.304000pt;}
.x17{left:526.344000pt;}
.x18{left:530.766667pt;}
.x3e{left:535.462667pt;}
.x23{left:543.496000pt;}
.x22{left:545.016000pt;}
.x19{left:557.812000pt;}
.x1a{left:565.538667pt;}
.x28{left:566.649333pt;}
.x11{left:568.521333pt;}
.x1b{left:572.236000pt;}
.x37{left:576.209333pt;}
.x12{left:580.302667pt;}
.x29{left:582.290667pt;}
.x34{left:588.994667pt;}
.x4b{left:592.774667pt;}
.x1c{left:597.833333pt;}
.x1d{left:600.232000pt;}
.x1e{left:605.950667pt;}
.x4c{left:613.616000pt;}
.xa{left:621.116000pt;}
.x4{left:624.660065pt;}
.x30{left:645.873333pt;}
.xb{left:651.734667pt;}
.xc{left:659.482667pt;}
.x38{left:674.218667pt;}
.x21{left:678.486667pt;}
.x20{left:680.008000pt;}
.x57{left:685.941333pt;}
.x16{left:690.724000pt;}
}




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