
    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_c7a09fcf30cf9608c462a2d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014000;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_c0b4abe0cc9e591b25ea645d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_286c41682763ddb58be44e3d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dd3d52ded73475b8fd30570b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3b99776030cb5c6483f7cc87.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_b6be1e849d1bd4b39149d74b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.587000;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_b2eeca2d9b4d0d367a383fcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012207;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_b2eeca2d9b4d0d367a383fcf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012207;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;}
.m6{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);}
.m1e{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);}
.m13{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);}
.m1d{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);}
.m2{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);}
.m0{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m7{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);}
.m19{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);}
.m28{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);}
.m5{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);}
.m14{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);}
.m1a{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);}
.m2a{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);}
.m16{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);}
.m20{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);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m26{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.md{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);}
.m23{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);}
.m21{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m15{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);}
.m8{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);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m18{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);}
.m22{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);}
.m11{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);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.v5{vertical-align:-36.672000px;}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.914000px;}
.v2{vertical-align:21.696000px;}
.v4{vertical-align:35.862000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000435px;}
.ls1{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.000608px;}
.ls5{letter-spacing:0.000612px;}
.ls23{letter-spacing:0.000800px;}
.lsb{letter-spacing:0.001039px;}
.ls1d{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.746700px;}
.ls12{letter-spacing:0.748200px;}
.ls6{letter-spacing:2.983200px;}
.ls7{letter-spacing:3.733200px;}
.ls0{letter-spacing:8.367300px;}
.ls3{letter-spacing:11.954850px;}
.ls1e{letter-spacing:13.248625px;}
.ls1c{letter-spacing:13.444518px;}
.ls11{letter-spacing:13.444800px;}
.ls1b{letter-spacing:13.448400px;}
.ls10{letter-spacing:13.450800px;}
.ls20{letter-spacing:13.454400px;}
.ls1f{letter-spacing:13.541373px;}
.ls26{letter-spacing:13.605167px;}
.ls24{letter-spacing:13.617202px;}
.ls21{letter-spacing:13.693547px;}
.ls1a{letter-spacing:13.706305px;}
.ls19{letter-spacing:13.712421px;}
.ls18{letter-spacing:14.704798px;}
.lse{letter-spacing:14.788505px;}
.lsd{letter-spacing:14.860004px;}
.lsf{letter-spacing:14.938766px;}
.ls8{letter-spacing:14.943483px;}
.ls9{letter-spacing:14.944766px;}
.ls15{letter-spacing:15.215986px;}
.lsa{letter-spacing:15.242778px;}
.lsc{letter-spacing:15.271895px;}
.ls25{letter-spacing:15.279812px;}
.ls14{letter-spacing:15.663483px;}
.ls22{letter-spacing:17.344518px;}
.ls2{letter-spacing:28.453654px;}
.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;}
}
.ws3a{word-spacing:-14.943900px;}
.ws50{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws4{word-spacing:-10.460700px;}
.ws55{word-spacing:-2.988780px;}
.ws13{word-spacing:-2.929004px;}
.ws17{word-spacing:-2.689902px;}
.ws4f{word-spacing:-2.420928px;}
.ws4c{word-spacing:-2.391024px;}
.ws4d{word-spacing:-2.211697px;}
.ws1{word-spacing:-2.092140px;}
.ws0{word-spacing:-2.008454px;}
.ws79{word-spacing:-1.853044px;}
.ws12{word-spacing:-1.793268px;}
.wsd3{word-spacing:-1.721549px;}
.wsc9{word-spacing:-1.506355px;}
.ws25{word-spacing:-1.494390px;}
.ws5b{word-spacing:-1.434614px;}
.wscc{word-spacing:-1.398758px;}
.ws95{word-spacing:-1.237363px;}
.ws66{word-spacing:-1.195512px;}
.ws30{word-spacing:-1.135736px;}
.ws8a{word-spacing:-1.075961px;}
.ws81{word-spacing:-1.016185px;}
.ws27{word-spacing:-0.956410px;}
.wsc6{word-spacing:-0.914573px;}
.ws7e{word-spacing:-0.896634px;}
.wsad{word-spacing:-0.860774px;}
.ws33{word-spacing:-0.657532px;}
.ws78{word-spacing:-0.597756px;}
.ws3f{word-spacing:-0.537980px;}
.ws43{word-spacing:-0.358654px;}
.ws8e{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.ws5d{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.215194px;}
.ws10{word-spacing:-0.179327px;}
.ws5c{word-spacing:-0.161395px;}
.ws1a{word-spacing:-0.119551px;}
.ws96{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws97{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.ws41{word-spacing:-0.003511px;}
.ws6{word-spacing:0.000000px;}
.wsab{word-spacing:0.053798px;}
.wsb{word-spacing:0.059776px;}
.ws93{word-spacing:0.107597px;}
.ws11{word-spacing:0.119551px;}
.ws6a{word-spacing:0.161395px;}
.wsc{word-spacing:0.179327px;}
.wsa0{word-spacing:0.215194px;}
.ws18{word-spacing:0.239102px;}
.ws86{word-spacing:0.268992px;}
.wsd{word-spacing:0.298878px;}
.wsf{word-spacing:0.358654px;}
.ws87{word-spacing:0.376589px;}
.ws4e{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.ws8b{word-spacing:0.478205px;}
.wsb3{word-spacing:0.484186px;}
.ws3d{word-spacing:0.537980px;}
.ws68{word-spacing:0.537984px;}
.ws92{word-spacing:0.591782px;}
.wsde{word-spacing:0.645581px;}
.ws3e{word-spacing:0.717307px;}
.ws7c{word-spacing:0.742500px;}
.ws32{word-spacing:0.777083px;}
.ws98{word-spacing:0.806976px;}
.ws40{word-spacing:0.896634px;}
.ws58{word-spacing:0.956410px;}
.wsc5{word-spacing:1.075968px;}
.ws69{word-spacing:1.129766px;}
.ws91{word-spacing:1.183565px;}
.ws2a{word-spacing:1.195512px;}
.ws7a{word-spacing:1.255288px;}
.wsc1{word-spacing:1.344960px;}
.ws4b{word-spacing:1.374839px;}
.wsd6{word-spacing:1.398758px;}
.ws67{word-spacing:1.434614px;}
.ws8c{word-spacing:1.494390px;}
.wsd9{word-spacing:1.506355px;}
.ws7b{word-spacing:1.554166px;}
.wsc2{word-spacing:1.560154px;}
.ws2e{word-spacing:1.613941px;}
.ws9a{word-spacing:1.613952px;}
.ws35{word-spacing:1.673717px;}
.wsd5{word-spacing:1.721549px;}
.ws36{word-spacing:1.733492px;}
.wsd8{word-spacing:1.829146px;}
.ws62{word-spacing:1.853044px;}
.ws46{word-spacing:1.972595px;}
.ws2c{word-spacing:2.032370px;}
.ws44{word-spacing:2.092146px;}
.wsc7{word-spacing:2.205734px;}
.ws5f{word-spacing:2.211697px;}
.ws45{word-spacing:2.450800px;}
.ws37{word-spacing:2.510575px;}
.wsaf{word-spacing:2.528525px;}
.ws2d{word-spacing:2.570351px;}
.ws4a{word-spacing:2.630126px;}
.ws89{word-spacing:2.689902px;}
.ws7d{word-spacing:2.749678px;}
.wsbd{word-spacing:2.797517px;}
.wsa{word-spacing:2.869229px;}
.ws7{word-spacing:2.869236px;}
.ws5a{word-spacing:2.929004px;}
.ws59{word-spacing:2.988780px;}
.wsd0{word-spacing:3.066509px;}
.ws2b{word-spacing:3.108331px;}
.ws8f{word-spacing:3.120307px;}
.ws63{word-spacing:3.168107px;}
.wsb9{word-spacing:3.219139px;}
.wscd{word-spacing:3.220186px;}
.wsbc{word-spacing:3.221088px;}
.wsdb{word-spacing:3.221520px;}
.wsc3{word-spacing:3.223296px;}
.wsd2{word-spacing:3.223507px;}
.wsb6{word-spacing:3.225850px;}
.ws47{word-spacing:3.227882px;}
.wsa9{word-spacing:3.227904px;}
.ws94{word-spacing:3.228076px;}
.ws24{word-spacing:3.287658px;}
.ws14{word-spacing:3.299712px;}
.ws80{word-spacing:3.347434px;}
.ws9c{word-spacing:3.389299px;}
.ws85{word-spacing:3.407209px;}
.wscf{word-spacing:3.443098px;}
.ws9b{word-spacing:3.496896px;}
.ws83{word-spacing:3.526760px;}
.wsbf{word-spacing:3.550694px;}
.ws28{word-spacing:3.586536px;}
.ws3b{word-spacing:3.706087px;}
.ws48{word-spacing:3.825638px;}
.wsbb{word-spacing:4.142477px;}
.ws49{word-spacing:4.244068px;}
.ws56{word-spacing:4.303843px;}
.ws16{word-spacing:4.303872px;}
.wsb8{word-spacing:4.411469px;}
.ws82{word-spacing:4.423394px;}
.ws3c{word-spacing:4.483170px;}
.ws38{word-spacing:4.542946px;}
.ws77{word-spacing:4.602721px;}
.ws22{word-spacing:4.662497px;}
.ws21{word-spacing:4.841824px;}
.ws42{word-spacing:5.021150px;}
.ws60{word-spacing:5.080926px;}
.ws88{word-spacing:5.140702px;}
.wsdc{word-spacing:5.164646px;}
.ws29{word-spacing:5.260253px;}
.ws26{word-spacing:5.618906px;}
.ws39{word-spacing:5.917784px;}
.ws5e{word-spacing:6.097111px;}
.wsb5{word-spacing:6.133018px;}
.ws64{word-spacing:6.216662px;}
.ws20{word-spacing:6.455765px;}
.ws99{word-spacing:6.608341px;}
.ws34{word-spacing:6.814418px;}
.ws19{word-spacing:6.874194px;}
.ws76{word-spacing:7.292623px;}
.ws2f{word-spacing:7.352399px;}
.ws61{word-spacing:7.412174px;}
.ws1f{word-spacing:7.531726px;}
.ws9e{word-spacing:7.693171px;}
.ws23{word-spacing:7.890379px;}
.ws65{word-spacing:8.069706px;}
.ws8{word-spacing:8.308808px;}
.ws3{word-spacing:8.322784px;}
.ws9{word-spacing:8.488135px;}
.ws7f{word-spacing:10.281403px;}
.ws1c{word-spacing:11.906062px;}
.wsa6{word-spacing:13.180608px;}
.wsa4{word-spacing:13.342003px;}
.wsc0{word-spacing:13.389341px;}
.wsb7{word-spacing:13.389907px;}
.wsba{word-spacing:13.391520px;}
.wsb1{word-spacing:13.391846px;}
.wsa7{word-spacing:13.392499px;}
.wsbe{word-spacing:13.392941px;}
.wsc4{word-spacing:13.393968px;}
.wsac{word-spacing:13.395802px;}
.wsdf{word-spacing:13.531286px;}
.wsd4{word-spacing:13.543531px;}
.ws84{word-spacing:13.569061px;}
.wsce{word-spacing:13.610995px;}
.wsaa{word-spacing:14.310374px;}
.wsd7{word-spacing:14.794560px;}
.ws31{word-spacing:14.884124px;}
.wsda{word-spacing:14.902157px;}
.wsc8{word-spacing:15.063552px;}
.wsa8{word-spacing:16.354714px;}
.wsd1{word-spacing:16.462310px;}
.wsa5{word-spacing:16.516109px;}
.wscb{word-spacing:16.615315px;}
.wsae{word-spacing:16.615853px;}
.wsa2{word-spacing:16.616832px;}
.wsca{word-spacing:16.618003px;}
.wsa3{word-spacing:16.619750px;}
.wsb4{word-spacing:16.620010px;}
.wsa1{word-spacing:16.620518px;}
.wsb0{word-spacing:16.623706px;}
.wsb2{word-spacing:16.785101px;}
.ws8d{word-spacing:20.120602px;}
.ws9f{word-spacing:21.088973px;}
.ws2{word-spacing:22.179541px;}
.ws57{word-spacing:25.165528px;}
.wsdd{word-spacing:32.548032px;}
.ws51{word-spacing:113.214986px;}
.ws9d{word-spacing:125.135078px;}
.ws54{word-spacing:163.187388px;}
.ws52{word-spacing:181.777600px;}
.ws53{word-spacing:203.894572px;}
.ws6b{word-spacing:328.973801px;}
.ws6c{word-spacing:386.233072px;}
.ws6e{word-spacing:397.806618px;}
.ws6d{word-spacing:405.930900px;}
.ws70{word-spacing:969.440681px;}
.ws71{word-spacing:984.384581px;}
.ws6f{word-spacing:999.328481px;}
.ws72{word-spacing:1043.921078px;}
.ws74{word-spacing:1045.295917px;}
.ws73{word-spacing:1065.081641px;}
.ws75{word-spacing:1079.427785px;}
._3d{margin-left:-22.015567px;}
._15{margin-left:-7.770828px;}
._4{margin-left:-6.635092px;}
._2{margin-left:-5.397721px;}
._b{margin-left:-4.363619px;}
._1{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._3b{width:1.990541px;}
._3c{width:3.012710px;}
._18{width:4.363619px;}
._0{width:11.004656px;}
._7{width:12.385519px;}
._d{width:13.867939px;}
._6{width:15.380255px;}
._1b{width:17.082959px;}
._c{width:18.231558px;}
._9{width:19.259694px;}
._a{width:20.754084px;}
._17{width:21.895787px;}
._2e{width:22.953830px;}
._11{width:24.316705px;}
._8{width:25.583957px;}
._34{width:27.807605px;}
._14{width:28.871615px;}
._19{width:30.246454px;}
._1a{width:31.561517px;}
._13{width:33.055907px;}
._16{width:34.968726px;}
._2d{width:37.299974px;}
._12{width:38.435711px;}
._39{width:39.578109px;}
._10{width:41.723369px;}
._35{width:49.912626px;}
._36{width:57.130759px;}
._3a{width:61.868160px;}
._5{width:69.365918px;}
._38{width:71.713267px;}
._21{width:124.153921px;}
._1c{width:140.831314px;}
._1f{width:150.754063px;}
._37{width:155.315981px;}
._23{width:171.316870px;}
._1e{width:172.452606px;}
._20{width:175.680488px;}
._2b{width:188.950672px;}
._22{width:194.988007px;}
._1d{width:200.606914px;}
._2a{width:225.413788px;}
._27{width:233.782372px;}
._25{width:247.112330px;}
._26{width:255.361363px;}
._24{width:258.091517px;}
._2c{width:268.691322px;}
._29{width:277.258757px;}
._28{width:283.635222px;}
._2f{width:314.738773px;}
._30{width:426.080477px;}
._32{width:761.421593px;}
._31{width:981.694679px;}
._e{width:1662.180829px;}
._33{width:2490.570829px;}
._f{width:2514.480829px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fs7{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs8{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs4{font-size:62.286600px;}
.fs5{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y178{bottom:3.315590px;}
.yf8{bottom:5.540924px;}
.y3e{bottom:45.921000px;}
.y15{bottom:100.260000px;}
.y1a3{bottom:102.483000px;}
.y149{bottom:105.832500px;}
.y222{bottom:105.961500px;}
.y15f{bottom:108.867000px;}
.yfb{bottom:114.942000px;}
.y71{bottom:116.407500px;}
.y3d{bottom:116.964000px;}
.y14{bottom:118.147500px;}
.y175{bottom:118.365000px;}
.y1a2{bottom:123.375000px;}
.y221{bottom:125.112000px;}
.y148{bottom:126.724500px;}
.y15e{bottom:126.801000px;}
.y18d{bottom:126.907500px;}
.yfa{bottom:134.175000px;}
.y9f{bottom:134.191500px;}
.y13{bottom:136.035000px;}
.y1f0{bottom:136.311000px;}
.yd2{bottom:136.731000px;}
.y70{bottom:137.298000px;}
.y3c{bottom:137.854500px;}
.y174{bottom:139.255500px;}
.y220{bottom:144.262500px;}
.y1a1{bottom:144.267000px;}
.y15d{bottom:144.733500px;}
.y147{bottom:147.616500px;}
.y18c{bottom:147.799500px;}
.yf9{bottom:153.406500px;}
.y12{bottom:153.924000px;}
.y9e{bottom:155.083500px;}
.y1ef{bottom:155.461500px;}
.yd1{bottom:157.621500px;}
.y6f{bottom:158.190000px;}
.y3b{bottom:158.746500px;}
.y173{bottom:160.147500px;}
.y15c{bottom:162.666000px;}
.y21f{bottom:163.413000px;}
.y1a0{bottom:165.157500px;}
.y146{bottom:168.507000px;}
.y18b{bottom:168.691500px;}
.y11{bottom:171.811500px;}
.y1be{bottom:172.725000px;}
.y1ee{bottom:174.612000px;}
.y9d{bottom:175.974000px;}
.yd0{bottom:178.513500px;}
.yf7{bottom:178.825215px;}
.y6e{bottom:179.082000px;}
.y3a{bottom:179.638500px;}
.y172{bottom:181.039500px;}
.y21e{bottom:182.563500px;}
.y19f{bottom:186.049500px;}
.y15b{bottom:187.801500px;}
.y145{bottom:189.399000px;}
.y18a{bottom:189.583500px;}
.y10{bottom:189.699000px;}
.y1bd{bottom:192.223500px;}
.y1ed{bottom:193.762500px;}
.y9c{bottom:196.866000px;}
.yce{bottom:199.405500px;}
.y6d{bottom:199.972500px;}
.y39{bottom:200.529000px;}
.y21d{bottom:201.714000px;}
.y171{bottom:201.930000px;}
.y127{bottom:203.770500px;}
.ycf{bottom:204.829500px;}
.y15a{bottom:205.734000px;}
.y19e{bottom:206.941500px;}
.yf{bottom:207.586500px;}
.y144{bottom:210.291000px;}
.y189{bottom:210.474000px;}
.y1bc{bottom:211.722000px;}
.y1ec{bottom:212.913000px;}
.y9b{bottom:217.758000px;}
.ycd{bottom:220.296000px;}
.y6c{bottom:220.864500px;}
.y38{bottom:221.421000px;}
.y170{bottom:222.822000px;}
.y159{bottom:223.666500px;}
.y126{bottom:224.662500px;}
.ye{bottom:225.475500px;}
.y19d{bottom:227.832000px;}
.y143{bottom:231.181500px;}
.y1bb{bottom:231.220500px;}
.y188{bottom:231.366000px;}
.y1eb{bottom:232.063500px;}
.y9a{bottom:238.648500px;}
.y21c{bottom:240.015000px;}
.ycc{bottom:241.188000px;}
.y158{bottom:241.599000px;}
.y6b{bottom:241.756500px;}
.y37{bottom:242.313000px;}
.y16f{bottom:243.714000px;}
.y125{bottom:245.553000px;}
.y19c{bottom:248.724000px;}
.y1ea{bottom:251.214000px;}
.y142{bottom:252.073500px;}
.y187{bottom:252.258000px;}
.yd{bottom:252.330000px;}
.y21b{bottom:259.165500px;}
.y157{bottom:259.531500px;}
.y99{bottom:259.540500px;}
.y1ba{bottom:259.686000px;}
.ycb{bottom:262.080000px;}
.y6a{bottom:262.647000px;}
.y36{bottom:263.203500px;}
.y16e{bottom:264.606000px;}
.y124{bottom:266.445000px;}
.y19b{bottom:269.616000px;}
.yc{bottom:270.217500px;}
.y1e9{bottom:270.364500px;}
.y141{bottom:272.965500px;}
.y186{bottom:273.148500px;}
.y21a{bottom:278.316000px;}
.y1b9{bottom:279.184500px;}
.y98{bottom:280.432500px;}
.yca{bottom:282.970500px;}
.y69{bottom:283.539000px;}
.y35{bottom:284.095500px;}
.y156{bottom:284.667000px;}
.y16d{bottom:285.496500px;}
.y123{bottom:287.337000px;}
.yb{bottom:288.105000px;}
.y1e8{bottom:289.515000px;}
.y19a{bottom:290.506500px;}
.y140{bottom:293.857500px;}
.y185{bottom:294.040500px;}
.y219{bottom:297.466500px;}
.y1b8{bottom:298.683000px;}
.y97{bottom:301.323000px;}
.yc9{bottom:303.862500px;}
.y68{bottom:304.431000px;}
.y34{bottom:304.987500px;}
.ya{bottom:305.994000px;}
.y16c{bottom:306.388500px;}
.y122{bottom:308.227500px;}
.y1e7{bottom:308.665500px;}
.y199{bottom:311.398500px;}
.y13f{bottom:314.748000px;}
.y184{bottom:314.932500px;}
.y218{bottom:316.617000px;}
.y155{bottom:317.332500px;}
.y1b7{bottom:318.181500px;}
.yf6{bottom:322.215000px;}
.y9{bottom:323.881500px;}
.y67{bottom:325.323000px;}
.y33{bottom:325.878000px;}
.y96{bottom:326.698500px;}
.y16b{bottom:327.280500px;}
.y1e6{bottom:327.816000px;}
.y121{bottom:329.119500px;}
.yc8{bottom:329.238000px;}
.y198{bottom:332.290500px;}
.y13e{bottom:335.640000px;}
.y217{bottom:335.767500px;}
.y183{bottom:335.823000px;}
.y1b6{bottom:337.681500px;}
.y8{bottom:341.769000px;}
.yf5{bottom:343.107000px;}
.y66{bottom:346.213500px;}
.y32{bottom:346.770000px;}
.y1e5{bottom:346.966500px;}
.y16a{bottom:348.171000px;}
.y120{bottom:350.011500px;}
.y197{bottom:353.181000px;}
.y216{bottom:354.918000px;}
.y13d{bottom:356.532000px;}
.y182{bottom:356.715000px;}
.y7{bottom:359.658000px;}
.y95{bottom:362.041500px;}
.yf4{bottom:363.999000px;}
.yc7{bottom:364.579500px;}
.y1e4{bottom:366.117000px;}
.y1b5{bottom:366.145500px;}
.y65{bottom:367.105500px;}
.y31{bottom:367.662000px;}
.y169{bottom:369.063000px;}
.y11f{bottom:370.902000px;}
.y154{bottom:371.611500px;}
.y215{bottom:374.070000px;}
.y196{bottom:374.073000px;}
.y13c{bottom:377.422500px;}
.y6{bottom:377.545500px;}
.y181{bottom:377.607000px;}
.y93{bottom:382.932000px;}
.yf3{bottom:384.889500px;}
.y1e3{bottom:385.269000px;}
.yc6{bottom:385.471500px;}
.y1b4{bottom:385.645500px;}
.y64{bottom:387.997500px;}
.y94{bottom:388.357500px;}
.y30{bottom:388.554000px;}
.y153{bottom:389.544000px;}
.y168{bottom:389.955000px;}
.y11e{bottom:391.794000px;}
.y214{bottom:393.220500px;}
.y195{bottom:394.965000px;}
.y13a{bottom:398.314500px;}
.y180{bottom:398.497500px;}
.y5{bottom:401.410500px;}
.y13b{bottom:403.738500px;}
.y92{bottom:403.824000px;}
.y1e2{bottom:404.419500px;}
.y1b3{bottom:405.144000px;}
.yf2{bottom:405.781500px;}
.yc4{bottom:406.363500px;}
.y63{bottom:408.888000px;}
.y2f{bottom:409.444500px;}
.y167{bottom:410.845500px;}
.yc5{bottom:411.787500px;}
.y213{bottom:412.371000px;}
.y11d{bottom:412.686000px;}
.y152{bottom:414.679500px;}
.y194{bottom:415.855500px;}
.y138{bottom:419.206500px;}
.y4{bottom:419.299500px;}
.y17f{bottom:419.389500px;}
.y1e1{bottom:423.570000px;}
.y139{bottom:424.630500px;}
.y91{bottom:424.716000px;}
.yf1{bottom:426.673500px;}
.yc2{bottom:427.254000px;}
.y62{bottom:429.780000px;}
.y212{bottom:431.521500px;}
.y166{bottom:431.737500px;}
.y151{bottom:432.612000px;}
.yc3{bottom:432.679500px;}
.y1b2{bottom:433.608000px;}
.y2e{bottom:434.820000px;}
.y3{bottom:437.187000px;}
.y11c{bottom:438.060000px;}
.y137{bottom:440.097000px;}
.y17e{bottom:440.281500px;}
.y193{bottom:441.231000px;}
.y1e0{bottom:442.720500px;}
.y90{bottom:445.606500px;}
.yf0{bottom:447.564000px;}
.yc1{bottom:448.146000px;}
.y61{bottom:450.672000px;}
.y165{bottom:452.629500px;}
.y1b1{bottom:453.108000px;}
.y2{bottom:455.074500px;}
.y136{bottom:460.989000px;}
.y17d{bottom:461.172000px;}
.y1df{bottom:461.871000px;}
.y225{bottom:465.093000px;}
.y150{bottom:465.277500px;}
.y8f{bottom:466.498500px;}
.yef{bottom:468.456000px;}
.yc0{bottom:469.038000px;}
.y211{bottom:469.822500px;}
.y60{bottom:471.562500px;}
.y1b0{bottom:472.606500px;}
.y11b{bottom:473.403000px;}
.y164{bottom:473.520000px;}
.y192{bottom:476.859000px;}
.y1{bottom:478.941000px;}
.y1de{bottom:481.021500px;}
.y135{bottom:481.881000px;}
.y17c{bottom:482.064000px;}
.y224{bottom:484.243500px;}
.y14f{bottom:484.510500px;}
.y8e{bottom:487.390500px;}
.y210{bottom:488.973000px;}
.yee{bottom:489.348000px;}
.ybf{bottom:489.928500px;}
.y1af{bottom:492.105000px;}
.y5f{bottom:492.454500px;}
.y11a{bottom:494.293500px;}
.y163{bottom:494.412000px;}
.y191{bottom:496.092000px;}
.y1dd{bottom:500.172000px;}
.y134{bottom:502.771500px;}
.y17b{bottom:502.956000px;}
.y223{bottom:503.394000px;}
.y20f{bottom:508.123500px;}
.y8d{bottom:508.281000px;}
.yed{bottom:510.238500px;}
.ybe{bottom:510.820500px;}
.y1ae{bottom:511.603500px;}
.y5e{bottom:513.346500px;}
.y2d{bottom:514.032000px;}
.y119{bottom:515.185500px;}
.y162{bottom:515.304000px;}
.y190{bottom:515.325000px;}
.y1dc{bottom:519.322500px;}
.y133{bottom:523.663500px;}
.y14e{bottom:526.444500px;}
.y20e{bottom:527.274000px;}
.y17a{bottom:528.330000px;}
.y8c{bottom:529.173000px;}
.yec{bottom:531.130500px;}
.ybd{bottom:531.712500px;}
.y5d{bottom:534.237000px;}
.y18f{bottom:534.558000px;}
.y2c{bottom:534.922500px;}
.y118{bottom:536.077500px;}
.y161{bottom:536.194500px;}
.y1db{bottom:538.473000px;}
.y1ad{bottom:540.069000px;}
.y132{bottom:544.555500px;}
.y14d{bottom:545.676000px;}
.y20d{bottom:546.424500px;}
.y8b{bottom:550.065000px;}
.yeb{bottom:552.022500px;}
.ybb{bottom:552.603000px;}
.y18e{bottom:553.789500px;}
.y5c{bottom:555.129000px;}
.y117{bottom:556.969500px;}
.y1da{bottom:557.623500px;}
.ybc{bottom:558.028500px;}
.y1ac{bottom:559.567500px;}
.y179{bottom:560.476500px;}
.y160{bottom:561.570000px;}
.y14c{bottom:564.909000px;}
.y131{bottom:565.447500px;}
.y20c{bottom:565.575000px;}
.y8a{bottom:570.955500px;}
.yea{bottom:572.913000px;}
.yba{bottom:573.495000px;}
.y2b{bottom:573.747000px;}
.y5b{bottom:576.021000px;}
.y1d9{bottom:576.774000px;}
.y116{bottom:577.860000px;}
.y1ab{bottom:579.066000px;}
.y20b{bottom:584.725500px;}
.y177{bottom:585.894600px;}
.y130{bottom:586.338000px;}
.y89{bottom:591.847500px;}
.ye9{bottom:593.805000px;}
.yb9{bottom:594.387000px;}
.y2a{bottom:594.639000px;}
.y1d8{bottom:595.924500px;}
.y5a{bottom:596.913000px;}
.y1aa{bottom:598.564500px;}
.y115{bottom:598.752000px;}
.y20a{bottom:603.876000px;}
.y12f{bottom:607.230000px;}
.yb8{bottom:612.549000px;}
.y88{bottom:612.739500px;}
.ye8{bottom:614.697000px;}
.y1d7{bottom:615.075000px;}
.yb7{bottom:615.277500px;}
.y29{bottom:615.529500px;}
.y59{bottom:617.803500px;}
.y1a9{bottom:618.064500px;}
.y114{bottom:619.644000px;}
.y209{bottom:623.026500px;}
.y12e{bottom:628.122000px;}
.y87{bottom:633.631500px;}
.y1d6{bottom:634.225500px;}
.ye7{bottom:635.589000px;}
.yb6{bottom:636.169500px;}
.y28{bottom:636.421500px;}
.y1a8{bottom:637.563000px;}
.y58{bottom:638.695500px;}
.y113{bottom:640.534500px;}
.y208{bottom:642.177000px;}
.y12d{bottom:649.012500px;}
.y1d5{bottom:653.376000px;}
.y86{bottom:654.522000px;}
.ye6{bottom:656.479500px;}
.yb5{bottom:657.061500px;}
.y27{bottom:657.313500px;}
.y57{bottom:659.587500px;}
.y207{bottom:661.327500px;}
.y111{bottom:661.426500px;}
.y1a7{bottom:666.027000px;}
.y112{bottom:666.850500px;}
.y12c{bottom:669.904500px;}
.y1d4{bottom:672.526500px;}
.y85{bottom:675.414000px;}
.ye5{bottom:677.371500px;}
.yb4{bottom:677.953500px;}
.y26{bottom:678.205500px;}
.y56{bottom:680.478000px;}
.y110{bottom:682.318500px;}
.y1a6{bottom:686.049000px;}
.y12b{bottom:690.796500px;}
.y1d3{bottom:691.677000px;}
.y83{bottom:696.306000px;}
.ye4{bottom:698.263500px;}
.yb3{bottom:698.844000px;}
.y25{bottom:699.096000px;}
.y206{bottom:699.628500px;}
.y55{bottom:701.370000px;}
.y84{bottom:701.730000px;}
.y10f{bottom:703.209000px;}
.y1a5{bottom:706.069500px;}
.y1d2{bottom:710.827500px;}
.y82{bottom:717.196500px;}
.y205{bottom:718.779000px;}
.ye3{bottom:719.154000px;}
.yb2{bottom:719.736000px;}
.y24{bottom:719.988000px;}
.y54{bottom:722.262000px;}
.y10e{bottom:724.101000px;}
.y1a4{bottom:726.091500px;}
.y12a{bottom:726.424500px;}
.y1d1{bottom:729.978000px;}
.y204{bottom:737.929500px;}
.y80{bottom:738.088500px;}
.ye2{bottom:740.046000px;}
.yb1{bottom:740.628000px;}
.y23{bottom:740.880000px;}
.y53{bottom:743.152500px;}
.y81{bottom:743.512500px;}
.y10d{bottom:744.993000px;}
.y129{bottom:745.656000px;}
.y1d0{bottom:749.128500px;}
.y203{bottom:757.081500px;}
.y7f{bottom:758.980500px;}
.ye1{bottom:760.938000px;}
.yb0{bottom:761.518500px;}
.y22{bottom:761.770500px;}
.y52{bottom:764.044500px;}
.y128{bottom:764.889000px;}
.y10c{bottom:765.883500px;}
.y1cf{bottom:768.280500px;}
.y202{bottom:776.232000px;}
.y7e{bottom:779.871000px;}
.y21{bottom:782.662500px;}
.y51{bottom:784.936500px;}
.ye0{bottom:786.312000px;}
.y10b{bottom:786.775500px;}
.yaf{bottom:786.894000px;}
.y1ce{bottom:787.431000px;}
.y201{bottom:795.382500px;}
.y7d{bottom:800.763000px;}
.y20{bottom:803.554500px;}
.y50{bottom:805.827000px;}
.y1cd{bottom:806.581500px;}
.y10a{bottom:807.667500px;}
.ydf{bottom:810.744000px;}
.y200{bottom:814.533000px;}
.y7c{bottom:821.655000px;}
.yae{bottom:822.235500px;}
.y1f{bottom:824.445000px;}
.y1cc{bottom:825.732000px;}
.y4f{bottom:826.719000px;}
.y109{bottom:828.559500px;}
.y1ff{bottom:833.683500px;}
.y7a{bottom:842.545500px;}
.yad{bottom:843.127500px;}
.y1cb{bottom:844.882500px;}
.y1e{bottom:845.337000px;}
.y4e{bottom:847.611000px;}
.y7b{bottom:847.971000px;}
.y108{bottom:849.450000px;}
.yde{bottom:849.568500px;}
.y1fe{bottom:852.834000px;}
.y79{bottom:863.437500px;}
.yac{bottom:864.019500px;}
.y1ca{bottom:864.033000px;}
.y4d{bottom:868.503000px;}
.y107{bottom:870.342000px;}
.ydd{bottom:870.460500px;}
.y1fd{bottom:871.984500px;}
.y1d{bottom:875.194500px;}
.y1c9{bottom:883.183500px;}
.y77{bottom:884.329500px;}
.yab{bottom:884.910000px;}
.y4c{bottom:889.393500px;}
.y78{bottom:889.753500px;}
.y1fc{bottom:891.135000px;}
.y106{bottom:891.234000px;}
.ydc{bottom:891.351000px;}
.y1c8{bottom:902.334000px;}
.y76{bottom:905.220000px;}
.yaa{bottom:905.802000px;}
.y4b{bottom:910.285500px;}
.y105{bottom:912.124500px;}
.ydb{bottom:912.243000px;}
.y1c{bottom:915.214500px;}
.y1c7{bottom:921.484500px;}
.y75{bottom:926.112000px;}
.ya9{bottom:926.694000px;}
.y1fb{bottom:929.436000px;}
.y4a{bottom:931.177500px;}
.y1b{bottom:931.354500px;}
.y104{bottom:933.016500px;}
.yda{bottom:933.135000px;}
.y1c6{bottom:940.635000px;}
.y74{bottom:947.004000px;}
.ya8{bottom:947.584500px;}
.y1fa{bottom:948.586500px;}
.y49{bottom:952.068000px;}
.y103{bottom:953.908500px;}
.yd9{bottom:954.025500px;}
.y1c5{bottom:959.785500px;}
.y1f9{bottom:967.737000px;}
.ya7{bottom:968.476500px;}
.y73{bottom:972.378000px;}
.y48{bottom:972.960000px;}
.y102{bottom:974.799000px;}
.yd8{bottom:974.917500px;}
.y1c4{bottom:978.936000px;}
.y1a{bottom:980.370000px;}
.y1f8{bottom:986.887500px;}
.ya6{bottom:989.368500px;}
.y47{bottom:993.852000px;}
.yd7{bottom:995.809500px;}
.y72{bottom:996.810000px;}
.y19{bottom:1001.262000px;}
.y1c3{bottom:1002.570000px;}
.y1f7{bottom:1006.038000px;}
.ya5{bottom:1010.260500px;}
.y46{bottom:1014.742500px;}
.yd6{bottom:1016.700000px;}
.y101{bottom:1022.772000px;}
.y1f6{bottom:1025.188500px;}
.ya4{bottom:1031.151000px;}
.y45{bottom:1035.634500px;}
.yd5{bottom:1037.592000px;}
.y18{bottom:1040.086500px;}
.y100{bottom:1040.704500px;}
.y1c2{bottom:1042.470000px;}
.y1f5{bottom:1044.339000px;}
.ya3{bottom:1052.043000px;}
.y44{bottom:1056.526500px;}
.yd4{bottom:1058.484000px;}
.yff{bottom:1058.637000px;}
.y1c1{bottom:1061.970000px;}
.y1f4{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.ya2{bottom:1072.935000px;}
.y43{bottom:1077.417000px;}
.y1c0{bottom:1081.468500px;}
.y1f3{bottom:1082.640000px;}
.y176{bottom:1082.842500px;}
.yfe{bottom:1083.772500px;}
.yd3{bottom:1083.858000px;}
.ya1{bottom:1093.825500px;}
.y42{bottom:1098.309000px;}
.y1f2{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y14b{bottom:1103.734500px;}
.yfd{bottom:1108.908000px;}
.ya0{bottom:1114.717500px;}
.y1bf{bottom:1116.111000px;}
.y41{bottom:1119.201000px;}
.y1f1{bottom:1120.941000px;}
.y40{bottom:1140.091500px;}
.yfc{bottom:1141.573500px;}
.y14a{bottom:1145.517000px;}
.y3f{bottom:1200.196500px;}
.h1a{height:25.070054px;}
.ha{height:27.855430px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.hd{height:33.209038px;}
.h7{height:34.956859px;}
.hc{height:35.052500px;}
.h10{height:35.503200px;}
.h11{height:36.437661px;}
.h14{height:39.326630px;}
.h15{height:39.434227px;}
.h13{height:41.747880px;}
.h19{height:42.043500px;}
.h6{height:43.217759px;}
.h8{height:43.695964px;}
.h4{height:43.815515px;}
.h18{height:43.945137px;}
.h9{height:46.714950px;}
.hb{height:51.861658px;}
.he{height:54.905038px;}
.hf{height:57.628950px;}
.h5{height:77.792486px;}
.h16{height:114.947759px;}
.h17{height:196.292400px;}
.h12{height:976.216485px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:669.533970px;}
.w3{width:732.353100px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.xc0{left:80.067900px;}
.xcc{left:85.848000px;}
.x7e{left:111.479355px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.xbe{left:254.173500px;}
.x80{left:262.215000px;}
.x81{left:263.232000px;}
.x64{left:266.193000px;}
.x61{left:267.255000px;}
.xc{left:272.029500px;}
.x62{left:276.486000px;}
.x8{left:279.870000px;}
.x10{left:281.479500px;}
.x14{left:282.792000px;}
.x65{left:284.154000px;}
.xc8{left:286.342500px;}
.xd{left:287.545500px;}
.x50{left:288.669000px;}
.x15{left:290.265000px;}
.x16{left:294.004500px;}
.x9{left:295.902000px;}
.xa7{left:298.359000px;}
.x17{left:301.476000px;}
.x9a{left:302.574000px;}
.x1a{left:305.017500px;}
.xa9{left:306.735000px;}
.x95{left:309.135000px;}
.x1b{left:312.489000px;}
.x32{left:314.812500px;}
.x1c{left:319.864500px;}
.x35{left:321.562500px;}
.x7d{left:324.420000px;}
.x1d{left:327.336000px;}
.x5f{left:328.438500px;}
.x33{left:329.757000px;}
.x70{left:331.069500px;}
.x22{left:334.579500px;}
.x36{left:336.507000px;}
.x23{left:338.391000px;}
.xb1{left:342.093000px;}
.x37{left:344.128500px;}
.xbf{left:345.733500px;}
.x71{left:347.364000px;}
.xa6{left:349.738500px;}
.x82{left:352.224000px;}
.x24{left:353.334000px;}
.x83{left:355.965000px;}
.xb2{left:357.037500px;}
.xe{left:358.380000px;}
.xaa{left:363.297000px;}
.x4c{left:366.099000px;}
.x89{left:368.956500px;}
.x84{left:370.908000px;}
.xf{left:373.896000px;}
.x8a{left:375.382500px;}
.x8c{left:377.638500px;}
.x4d{left:381.042000px;}
.xac{left:382.261500px;}
.xab{left:383.479500px;}
.x92{left:384.634500px;}
.x93{left:393.865500px;}
.x8e{left:396.730500px;}
.xc6{left:402.513000px;}
.x9f{left:411.219000px;}
.xa0{left:414.918000px;}
.xc7{left:418.530000px;}
.x48{left:421.072500px;}
.x40{left:425.356500px;}
.x49{left:428.544000px;}
.xa1{left:429.861000px;}
.x4a{left:432.355500px;}
.x51{left:436.218000px;}
.x41{left:440.301000px;}
.x46{left:444.163500px;}
.x4b{left:447.298500px;}
.x3e{left:450.414000px;}
.x52{left:457.050000px;}
.x47{left:459.106500px;}
.xaf{left:461.502000px;}
.x3f{left:465.358500px;}
.x53{left:466.981500px;}
.x54{left:471.858000px;}
.xb0{left:476.446500px;}
.x85{left:479.809500px;}
.x86{left:483.474000px;}
.xc2{left:484.627500px;}
.x55{left:486.802500px;}
.x77{left:490.635000px;}
.x1e{left:492.933000px;}
.xad{left:495.937500px;}
.x87{left:498.418500px;}
.x1f{left:500.406000px;}
.x20{left:504.085500px;}
.x78{left:506.658000px;}
.x98{left:508.566000px;}
.x21{left:511.557000px;}
.x34{left:515.851500px;}
.xba{left:519.258000px;}
.x56{left:521.164500px;}
.x7c{left:522.288000px;}
.x99{left:523.510500px;}
.x60{left:525.436500px;}
.x57{left:527.590500px;}
.xbb{left:529.410000px;}
.x3c{left:531.561000px;}
.x28{left:532.908000px;}
.x58{left:534.703500px;}
.x38{left:538.414500px;}
.x69{left:540.504000px;}
.x6e{left:541.771500px;}
.x79{left:544.977000px;}
.x3d{left:546.504000px;}
.x29{left:547.852500px;}
.x4{left:549.588000px;}
.x2a{left:551.662500px;}
.x39{left:553.357500px;}
.x3a{left:557.019000px;}
.x6f{left:558.135000px;}
.x4e{left:559.452000px;}
.x5{left:561.879000px;}
.x2b{left:566.607000px;}
.x3b{left:571.963500px;}
.x8d{left:575.046000px;}
.x18{left:576.069000px;}
.x66{left:578.011500px;}
.xb3{left:579.996000px;}
.x6{left:581.664000px;}
.x19{left:583.542000px;}
.x6a{left:585.291000px;}
.x4f{left:586.968000px;}
.x67{left:589.129500px;}
.x7{left:590.893500px;}
.x6b{left:592.098000px;}
.xb4{left:596.023500px;}
.x25{left:597.750000px;}
.x26{left:601.456500px;}
.xa{left:605.764500px;}
.x59{left:608.070000px;}
.x11{left:610.605000px;}
.x91{left:613.599000px;}
.x68{left:615.102000px;}
.x27{left:616.401000px;}
.x12{left:618.076500px;}
.xb{left:621.796500px;}
.x5a{left:623.013000px;}
.xbc{left:625.203000px;}
.x13{left:629.211000px;}
.x63{left:632.307000px;}
.xbd{left:635.358000px;}
.x30{left:637.227000px;}
.xa5{left:638.898000px;}
.xb5{left:644.787000px;}
.x8b{left:646.494000px;}
.xa2{left:648.804000px;}
.x31{left:652.171500px;}
.xc4{left:655.812000px;}
.x9d{left:660.013500px;}
.xcb{left:661.575000px;}
.xa3{left:663.747000px;}
.x7f{left:665.616820px;}
.x42{left:667.440000px;}
.xc5{left:671.836500px;}
.x9e{left:674.956500px;}
.x9b{left:678.303000px;}
.x43{left:682.384500px;}
.x9c{left:684.729000px;}
.x88{left:696.472500px;}
.x5b{left:701.095500px;}
.x94{left:703.539000px;}
.x7a{left:705.577500px;}
.xa8{left:706.936500px;}
.x5c{left:716.038500px;}
.x7b{left:720.522000px;}
.x96{left:723.840000px;}
.xc1{left:726.639095px;}
.xb6{left:728.728500px;}
.x72{left:731.700000px;}
.xb7{left:737.958000px;}
.x97{left:739.869000px;}
.x8f{left:742.480500px;}
.x73{left:747.739500px;}
.x90{left:751.711500px;}
.xae{left:759.804000px;}
.xc9{left:761.487000px;}
.xa4{left:762.952500px;}
.xca{left:777.528000px;}
.x6c{left:782.715000px;}
.x44{left:785.644500px;}
.xc3{left:789.487500px;}
.x6d{left:791.944500px;}
.x74{left:796.423500px;}
.x5d{left:797.745000px;}
.x2c{left:799.117500px;}
.x45{left:800.587500px;}
.x5e{left:804.171000px;}
.x75{left:806.598000px;}
.x2d{left:814.062000px;}
.xb8{left:816.381000px;}
.x2e{left:817.819500px;}
.xb9{left:825.612000px;}
.x76{left:826.801500px;}
.x2f{left:832.764000px;}
@media print{
.v5{vertical-align:-32.597333pt;}
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.701333pt;}
.v2{vertical-align:19.285333pt;}
.v4{vertical-align:31.877333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000387pt;}
.ls1{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.000540pt;}
.ls5{letter-spacing:0.000544pt;}
.ls23{letter-spacing:0.000711pt;}
.lsb{letter-spacing:0.000923pt;}
.ls1d{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.663733pt;}
.ls12{letter-spacing:0.665067pt;}
.ls6{letter-spacing:2.651733pt;}
.ls7{letter-spacing:3.318400pt;}
.ls0{letter-spacing:7.437600pt;}
.ls3{letter-spacing:10.626533pt;}
.ls1e{letter-spacing:11.776555pt;}
.ls1c{letter-spacing:11.950682pt;}
.ls11{letter-spacing:11.950933pt;}
.ls1b{letter-spacing:11.954133pt;}
.ls10{letter-spacing:11.956267pt;}
.ls20{letter-spacing:11.959467pt;}
.ls1f{letter-spacing:12.036776pt;}
.ls26{letter-spacing:12.093482pt;}
.ls24{letter-spacing:12.104179pt;}
.ls21{letter-spacing:12.172042pt;}
.ls1a{letter-spacing:12.183382pt;}
.ls19{letter-spacing:12.188818pt;}
.ls18{letter-spacing:13.070931pt;}
.lse{letter-spacing:13.145338pt;}
.lsd{letter-spacing:13.208893pt;}
.lsf{letter-spacing:13.278903pt;}
.ls8{letter-spacing:13.283096pt;}
.ls9{letter-spacing:13.284237pt;}
.ls15{letter-spacing:13.525321pt;}
.lsa{letter-spacing:13.549136pt;}
.lsc{letter-spacing:13.575018pt;}
.ls25{letter-spacing:13.582055pt;}
.ls14{letter-spacing:13.923096pt;}
.ls22{letter-spacing:15.417349pt;}
.ls2{letter-spacing:25.292137pt;}
.ws3a{word-spacing:-13.283467pt;}
.ws50{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws4{word-spacing:-9.298400pt;}
.ws55{word-spacing:-2.656693pt;}
.ws13{word-spacing:-2.603559pt;}
.ws17{word-spacing:-2.391024pt;}
.ws4f{word-spacing:-2.151936pt;}
.ws4c{word-spacing:-2.125355pt;}
.ws4d{word-spacing:-1.965953pt;}
.ws1{word-spacing:-1.859680pt;}
.ws0{word-spacing:-1.785293pt;}
.ws79{word-spacing:-1.647150pt;}
.ws12{word-spacing:-1.594016pt;}
.wsd3{word-spacing:-1.530266pt;}
.wsc9{word-spacing:-1.338982pt;}
.ws25{word-spacing:-1.328347pt;}
.ws5b{word-spacing:-1.275213pt;}
.wscc{word-spacing:-1.243341pt;}
.ws95{word-spacing:-1.099878pt;}
.ws66{word-spacing:-1.062677pt;}
.ws30{word-spacing:-1.009543pt;}
.ws8a{word-spacing:-0.956410pt;}
.ws81{word-spacing:-0.903276pt;}
.ws27{word-spacing:-0.850142pt;}
.wsc6{word-spacing:-0.812954pt;}
.ws7e{word-spacing:-0.797008pt;}
.wsad{word-spacing:-0.765133pt;}
.ws33{word-spacing:-0.584473pt;}
.ws78{word-spacing:-0.531339pt;}
.ws3f{word-spacing:-0.478205pt;}
.ws43{word-spacing:-0.318803pt;}
.ws8e{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws5d{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.191283pt;}
.ws10{word-spacing:-0.159402pt;}
.ws5c{word-spacing:-0.143462pt;}
.ws1a{word-spacing:-0.106268pt;}
.ws96{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws97{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws41{word-spacing:-0.003121pt;}
.ws6{word-spacing:0.000000pt;}
.wsab{word-spacing:0.047821pt;}
.wsb{word-spacing:0.053134pt;}
.ws93{word-spacing:0.095642pt;}
.ws11{word-spacing:0.106268pt;}
.ws6a{word-spacing:0.143462pt;}
.wsc{word-spacing:0.159402pt;}
.wsa0{word-spacing:0.191283pt;}
.ws18{word-spacing:0.212535pt;}
.ws86{word-spacing:0.239104pt;}
.wsd{word-spacing:0.265669pt;}
.wsf{word-spacing:0.318803pt;}
.ws87{word-spacing:0.334746pt;}
.ws4e{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.ws8b{word-spacing:0.425071pt;}
.wsb3{word-spacing:0.430387pt;}
.ws3d{word-spacing:0.478205pt;}
.ws68{word-spacing:0.478208pt;}
.ws92{word-spacing:0.526029pt;}
.wsde{word-spacing:0.573850pt;}
.ws3e{word-spacing:0.637606pt;}
.ws7c{word-spacing:0.660000pt;}
.ws32{word-spacing:0.690740pt;}
.ws98{word-spacing:0.717312pt;}
.ws40{word-spacing:0.797008pt;}
.ws58{word-spacing:0.850142pt;}
.wsc5{word-spacing:0.956416pt;}
.ws69{word-spacing:1.004237pt;}
.ws91{word-spacing:1.052058pt;}
.ws2a{word-spacing:1.062677pt;}
.ws7a{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.195520pt;}
.ws4b{word-spacing:1.222079pt;}
.wsd6{word-spacing:1.243341pt;}
.ws67{word-spacing:1.275213pt;}
.ws8c{word-spacing:1.328347pt;}
.wsd9{word-spacing:1.338982pt;}
.ws7b{word-spacing:1.381481pt;}
.wsc2{word-spacing:1.386803pt;}
.ws2e{word-spacing:1.434614pt;}
.ws9a{word-spacing:1.434624pt;}
.ws35{word-spacing:1.487748pt;}
.wsd5{word-spacing:1.530266pt;}
.ws36{word-spacing:1.540882pt;}
.wsd8{word-spacing:1.625907pt;}
.ws62{word-spacing:1.647150pt;}
.ws46{word-spacing:1.753418pt;}
.ws2c{word-spacing:1.806551pt;}
.ws44{word-spacing:1.859685pt;}
.wsc7{word-spacing:1.960653pt;}
.ws5f{word-spacing:1.965953pt;}
.ws45{word-spacing:2.178489pt;}
.ws37{word-spacing:2.231622pt;}
.wsaf{word-spacing:2.247578pt;}
.ws2d{word-spacing:2.284756pt;}
.ws4a{word-spacing:2.337890pt;}
.ws89{word-spacing:2.391024pt;}
.ws7d{word-spacing:2.444158pt;}
.wsbd{word-spacing:2.486682pt;}
.wsa{word-spacing:2.550426pt;}
.ws7{word-spacing:2.550432pt;}
.ws5a{word-spacing:2.603559pt;}
.ws59{word-spacing:2.656693pt;}
.wsd0{word-spacing:2.725786pt;}
.ws2b{word-spacing:2.762961pt;}
.ws8f{word-spacing:2.773606pt;}
.ws63{word-spacing:2.816095pt;}
.wsb9{word-spacing:2.861457pt;}
.wscd{word-spacing:2.862387pt;}
.wsbc{word-spacing:2.863189pt;}
.wsdb{word-spacing:2.863573pt;}
.wsc3{word-spacing:2.865152pt;}
.wsd2{word-spacing:2.865340pt;}
.wsb6{word-spacing:2.867422pt;}
.ws47{word-spacing:2.869229pt;}
.wsa9{word-spacing:2.869248pt;}
.ws94{word-spacing:2.869401pt;}
.ws24{word-spacing:2.922363pt;}
.ws14{word-spacing:2.933078pt;}
.ws80{word-spacing:2.975497pt;}
.ws9c{word-spacing:3.012710pt;}
.ws85{word-spacing:3.028630pt;}
.wscf{word-spacing:3.060531pt;}
.ws9b{word-spacing:3.108352pt;}
.ws83{word-spacing:3.134898pt;}
.wsbf{word-spacing:3.156173pt;}
.ws28{word-spacing:3.188032pt;}
.ws3b{word-spacing:3.294300pt;}
.ws48{word-spacing:3.400567pt;}
.wsbb{word-spacing:3.682202pt;}
.ws49{word-spacing:3.772505pt;}
.ws56{word-spacing:3.825638pt;}
.ws16{word-spacing:3.825664pt;}
.wsb8{word-spacing:3.921306pt;}
.ws82{word-spacing:3.931906pt;}
.ws3c{word-spacing:3.985040pt;}
.ws38{word-spacing:4.038174pt;}
.ws77{word-spacing:4.091308pt;}
.ws22{word-spacing:4.144442pt;}
.ws21{word-spacing:4.303843pt;}
.ws42{word-spacing:4.463245pt;}
.ws60{word-spacing:4.516379pt;}
.ws88{word-spacing:4.569513pt;}
.wsdc{word-spacing:4.590797pt;}
.ws29{word-spacing:4.675780pt;}
.ws26{word-spacing:4.994583pt;}
.ws39{word-spacing:5.260253pt;}
.ws5e{word-spacing:5.419654pt;}
.wsb5{word-spacing:5.451571pt;}
.ws64{word-spacing:5.525922pt;}
.ws20{word-spacing:5.738458pt;}
.ws99{word-spacing:5.874081pt;}
.ws34{word-spacing:6.057261pt;}
.ws19{word-spacing:6.110395pt;}
.ws76{word-spacing:6.482332pt;}
.ws2f{word-spacing:6.535466pt;}
.ws61{word-spacing:6.588599pt;}
.ws1f{word-spacing:6.694867pt;}
.ws9e{word-spacing:6.838374pt;}
.ws23{word-spacing:7.013670pt;}
.ws65{word-spacing:7.173072pt;}
.ws8{word-spacing:7.385607pt;}
.ws3{word-spacing:7.398030pt;}
.ws9{word-spacing:7.545009pt;}
.ws7f{word-spacing:9.139025pt;}
.ws1c{word-spacing:10.583166pt;}
.wsa6{word-spacing:11.716096pt;}
.wsa4{word-spacing:11.859558pt;}
.wsc0{word-spacing:11.901636pt;}
.wsb7{word-spacing:11.902140pt;}
.wsba{word-spacing:11.903573pt;}
.wsb1{word-spacing:11.903863pt;}
.wsa7{word-spacing:11.904444pt;}
.wsbe{word-spacing:11.904836pt;}
.wsc4{word-spacing:11.905749pt;}
.wsac{word-spacing:11.907379pt;}
.wsdf{word-spacing:12.027810pt;}
.wsd4{word-spacing:12.038694pt;}
.ws84{word-spacing:12.061388pt;}
.wsce{word-spacing:12.098662pt;}
.wsaa{word-spacing:12.720333pt;}
.wsd7{word-spacing:13.150720pt;}
.ws31{word-spacing:13.230333pt;}
.wsda{word-spacing:13.246362pt;}
.wsc8{word-spacing:13.389824pt;}
.wsa8{word-spacing:14.537523pt;}
.wsd1{word-spacing:14.633165pt;}
.wsa5{word-spacing:14.680986pt;}
.wscb{word-spacing:14.769169pt;}
.wsae{word-spacing:14.769647pt;}
.wsa2{word-spacing:14.770517pt;}
.wsca{word-spacing:14.771558pt;}
.wsa3{word-spacing:14.773111pt;}
.wsb4{word-spacing:14.773342pt;}
.wsa1{word-spacing:14.773794pt;}
.wsb0{word-spacing:14.776627pt;}
.wsb2{word-spacing:14.920090pt;}
.ws8d{word-spacing:17.884979pt;}
.ws9f{word-spacing:18.745754pt;}
.ws2{word-spacing:19.715148pt;}
.ws57{word-spacing:22.369358pt;}
.wsdd{word-spacing:28.931584pt;}
.ws51{word-spacing:100.635543pt;}
.ws9d{word-spacing:111.231181pt;}
.ws54{word-spacing:145.055456pt;}
.ws52{word-spacing:161.580089pt;}
.ws53{word-spacing:181.239619pt;}
.ws6b{word-spacing:292.421156pt;}
.ws6c{word-spacing:343.318286pt;}
.ws6e{word-spacing:353.605883pt;}
.ws6d{word-spacing:360.827467pt;}
.ws70{word-spacing:861.725050pt;}
.ws71{word-spacing:875.008516pt;}
.ws6f{word-spacing:888.291983pt;}
.ws72{word-spacing:927.929847pt;}
.ws74{word-spacing:929.151926pt;}
.ws73{word-spacing:946.739236pt;}
.ws75{word-spacing:959.491364pt;}
._3d{margin-left:-19.569393pt;}
._15{margin-left:-6.907403pt;}
._4{margin-left:-5.897859pt;}
._2{margin-left:-4.797974pt;}
._b{margin-left:-3.878772pt;}
._1{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._3b{width:1.769370pt;}
._3c{width:2.677965pt;}
._18{width:3.878772pt;}
._0{width:9.781917pt;}
._7{width:11.009350pt;}
._d{width:12.327057pt;}
._6{width:13.671338pt;}
._1b{width:15.184852pt;}
._c{width:16.205829pt;}
._9{width:17.119728pt;}
._a{width:18.448075pt;}
._17{width:19.462922pt;}
._2e{width:20.403405pt;}
._11{width:21.614849pt;}
._8{width:22.741295pt;}
._34{width:24.717871pt;}
._14{width:25.663658pt;}
._19{width:26.885737pt;}
._1a{width:28.054682pt;}
._13{width:29.383028pt;}
._16{width:31.083312pt;}
._2d{width:33.155533pt;}
._12{width:34.165076pt;}
._39{width:35.180541pt;}
._10{width:37.087439pt;}
._35{width:44.366779pt;}
._36{width:50.782897pt;}
._3a{width:54.993920pt;}
._5{width:61.658594pt;}
._38{width:63.745126pt;}
._21{width:110.359041pt;}
._1c{width:125.183390pt;}
._1f{width:134.003612pt;}
._37{width:138.058650pt;}
._23{width:152.281662pt;}
._1e{width:153.291205pt;}
._20{width:156.160434pt;}
._2b{width:167.956153pt;}
._22{width:173.322673pt;}
._1d{width:178.317257pt;}
._2a{width:200.367811pt;}
._27{width:207.806553pt;}
._25{width:219.655405pt;}
._26{width:226.987878pt;}
._24{width:229.414682pt;}
._2c{width:238.836731pt;}
._29{width:246.452228pt;}
._28{width:252.120197pt;}
._2f{width:279.767798pt;}
._30{width:378.738202pt;}
._32{width:676.819194pt;}
._31{width:872.617492pt;}
._e{width:1477.494070pt;}
._33{width:2213.840737pt;}
._f{width:2235.094070pt;}
.fs0{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fs7{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs8{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs4{font-size:55.365867pt;}
.fs5{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y178{bottom:2.947191pt;}
.yf8{bottom:4.925266pt;}
.y3e{bottom:40.818667pt;}
.y15{bottom:89.120000pt;}
.y1a3{bottom:91.096000pt;}
.y149{bottom:94.073333pt;}
.y222{bottom:94.188000pt;}
.y15f{bottom:96.770667pt;}
.yfb{bottom:102.170667pt;}
.y71{bottom:103.473333pt;}
.y3d{bottom:103.968000pt;}
.y14{bottom:105.020000pt;}
.y175{bottom:105.213333pt;}
.y1a2{bottom:109.666667pt;}
.y221{bottom:111.210667pt;}
.y148{bottom:112.644000pt;}
.y15e{bottom:112.712000pt;}
.y18d{bottom:112.806667pt;}
.yfa{bottom:119.266667pt;}
.y9f{bottom:119.281333pt;}
.y13{bottom:120.920000pt;}
.y1f0{bottom:121.165333pt;}
.yd2{bottom:121.538667pt;}
.y70{bottom:122.042667pt;}
.y3c{bottom:122.537333pt;}
.y174{bottom:123.782667pt;}
.y220{bottom:128.233333pt;}
.y1a1{bottom:128.237333pt;}
.y15d{bottom:128.652000pt;}
.y147{bottom:131.214667pt;}
.y18c{bottom:131.377333pt;}
.yf9{bottom:136.361333pt;}
.y12{bottom:136.821333pt;}
.y9e{bottom:137.852000pt;}
.y1ef{bottom:138.188000pt;}
.yd1{bottom:140.108000pt;}
.y6f{bottom:140.613333pt;}
.y3b{bottom:141.108000pt;}
.y173{bottom:142.353333pt;}
.y15c{bottom:144.592000pt;}
.y21f{bottom:145.256000pt;}
.y1a0{bottom:146.806667pt;}
.y146{bottom:149.784000pt;}
.y18b{bottom:149.948000pt;}
.y11{bottom:152.721333pt;}
.y1be{bottom:153.533333pt;}
.y1ee{bottom:155.210667pt;}
.y9d{bottom:156.421333pt;}
.yd0{bottom:158.678667pt;}
.yf7{bottom:158.955747pt;}
.y6e{bottom:159.184000pt;}
.y3a{bottom:159.678667pt;}
.y172{bottom:160.924000pt;}
.y21e{bottom:162.278667pt;}
.y19f{bottom:165.377333pt;}
.y15b{bottom:166.934667pt;}
.y145{bottom:168.354667pt;}
.y18a{bottom:168.518667pt;}
.y10{bottom:168.621333pt;}
.y1bd{bottom:170.865333pt;}
.y1ed{bottom:172.233333pt;}
.y9c{bottom:174.992000pt;}
.yce{bottom:177.249333pt;}
.y6d{bottom:177.753333pt;}
.y39{bottom:178.248000pt;}
.y21d{bottom:179.301333pt;}
.y171{bottom:179.493333pt;}
.y127{bottom:181.129333pt;}
.ycf{bottom:182.070667pt;}
.y15a{bottom:182.874667pt;}
.y19e{bottom:183.948000pt;}
.yf{bottom:184.521333pt;}
.y144{bottom:186.925333pt;}
.y189{bottom:187.088000pt;}
.y1bc{bottom:188.197333pt;}
.y1ec{bottom:189.256000pt;}
.y9b{bottom:193.562667pt;}
.ycd{bottom:195.818667pt;}
.y6c{bottom:196.324000pt;}
.y38{bottom:196.818667pt;}
.y170{bottom:198.064000pt;}
.y159{bottom:198.814667pt;}
.y126{bottom:199.700000pt;}
.ye{bottom:200.422667pt;}
.y19d{bottom:202.517333pt;}
.y143{bottom:205.494667pt;}
.y1bb{bottom:205.529333pt;}
.y188{bottom:205.658667pt;}
.y1eb{bottom:206.278667pt;}
.y9a{bottom:212.132000pt;}
.y21c{bottom:213.346667pt;}
.ycc{bottom:214.389333pt;}
.y158{bottom:214.754667pt;}
.y6b{bottom:214.894667pt;}
.y37{bottom:215.389333pt;}
.y16f{bottom:216.634667pt;}
.y125{bottom:218.269333pt;}
.y19c{bottom:221.088000pt;}
.y1ea{bottom:223.301333pt;}
.y142{bottom:224.065333pt;}
.y187{bottom:224.229333pt;}
.yd{bottom:224.293333pt;}
.y21b{bottom:230.369333pt;}
.y157{bottom:230.694667pt;}
.y99{bottom:230.702667pt;}
.y1ba{bottom:230.832000pt;}
.ycb{bottom:232.960000pt;}
.y6a{bottom:233.464000pt;}
.y36{bottom:233.958667pt;}
.y16e{bottom:235.205333pt;}
.y124{bottom:236.840000pt;}
.y19b{bottom:239.658667pt;}
.yc{bottom:240.193333pt;}
.y1e9{bottom:240.324000pt;}
.y141{bottom:242.636000pt;}
.y186{bottom:242.798667pt;}
.y21a{bottom:247.392000pt;}
.y1b9{bottom:248.164000pt;}
.y98{bottom:249.273333pt;}
.yca{bottom:251.529333pt;}
.y69{bottom:252.034667pt;}
.y35{bottom:252.529333pt;}
.y156{bottom:253.037333pt;}
.y16d{bottom:253.774667pt;}
.y123{bottom:255.410667pt;}
.yb{bottom:256.093333pt;}
.y1e8{bottom:257.346667pt;}
.y19a{bottom:258.228000pt;}
.y140{bottom:261.206667pt;}
.y185{bottom:261.369333pt;}
.y219{bottom:264.414667pt;}
.y1b8{bottom:265.496000pt;}
.y97{bottom:267.842667pt;}
.yc9{bottom:270.100000pt;}
.y68{bottom:270.605333pt;}
.y34{bottom:271.100000pt;}
.ya{bottom:271.994667pt;}
.y16c{bottom:272.345333pt;}
.y122{bottom:273.980000pt;}
.y1e7{bottom:274.369333pt;}
.y199{bottom:276.798667pt;}
.y13f{bottom:279.776000pt;}
.y184{bottom:279.940000pt;}
.y218{bottom:281.437333pt;}
.y155{bottom:282.073333pt;}
.y1b7{bottom:282.828000pt;}
.yf6{bottom:286.413333pt;}
.y9{bottom:287.894667pt;}
.y67{bottom:289.176000pt;}
.y33{bottom:289.669333pt;}
.y96{bottom:290.398667pt;}
.y16b{bottom:290.916000pt;}
.y1e6{bottom:291.392000pt;}
.y121{bottom:292.550667pt;}
.yc8{bottom:292.656000pt;}
.y198{bottom:295.369333pt;}
.y13e{bottom:298.346667pt;}
.y217{bottom:298.460000pt;}
.y183{bottom:298.509333pt;}
.y1b6{bottom:300.161333pt;}
.y8{bottom:303.794667pt;}
.yf5{bottom:304.984000pt;}
.y66{bottom:307.745333pt;}
.y32{bottom:308.240000pt;}
.y1e5{bottom:308.414667pt;}
.y16a{bottom:309.485333pt;}
.y120{bottom:311.121333pt;}
.y197{bottom:313.938667pt;}
.y216{bottom:315.482667pt;}
.y13d{bottom:316.917333pt;}
.y182{bottom:317.080000pt;}
.y7{bottom:319.696000pt;}
.y95{bottom:321.814667pt;}
.yf4{bottom:323.554667pt;}
.yc7{bottom:324.070667pt;}
.y1e4{bottom:325.437333pt;}
.y1b5{bottom:325.462667pt;}
.y65{bottom:326.316000pt;}
.y31{bottom:326.810667pt;}
.y169{bottom:328.056000pt;}
.y11f{bottom:329.690667pt;}
.y154{bottom:330.321333pt;}
.y215{bottom:332.506667pt;}
.y196{bottom:332.509333pt;}
.y13c{bottom:335.486667pt;}
.y6{bottom:335.596000pt;}
.y181{bottom:335.650667pt;}
.y93{bottom:340.384000pt;}
.yf3{bottom:342.124000pt;}
.y1e3{bottom:342.461333pt;}
.yc6{bottom:342.641333pt;}
.y1b4{bottom:342.796000pt;}
.y64{bottom:344.886667pt;}
.y94{bottom:345.206667pt;}
.y30{bottom:345.381333pt;}
.y153{bottom:346.261333pt;}
.y168{bottom:346.626667pt;}
.y11e{bottom:348.261333pt;}
.y214{bottom:349.529333pt;}
.y195{bottom:351.080000pt;}
.y13a{bottom:354.057333pt;}
.y180{bottom:354.220000pt;}
.y5{bottom:356.809333pt;}
.y13b{bottom:358.878667pt;}
.y92{bottom:358.954667pt;}
.y1e2{bottom:359.484000pt;}
.y1b3{bottom:360.128000pt;}
.yf2{bottom:360.694667pt;}
.yc4{bottom:361.212000pt;}
.y63{bottom:363.456000pt;}
.y2f{bottom:363.950667pt;}
.y167{bottom:365.196000pt;}
.yc5{bottom:366.033333pt;}
.y213{bottom:366.552000pt;}
.y11d{bottom:366.832000pt;}
.y152{bottom:368.604000pt;}
.y194{bottom:369.649333pt;}
.y138{bottom:372.628000pt;}
.y4{bottom:372.710667pt;}
.y17f{bottom:372.790667pt;}
.y1e1{bottom:376.506667pt;}
.y139{bottom:377.449333pt;}
.y91{bottom:377.525333pt;}
.yf1{bottom:379.265333pt;}
.yc2{bottom:379.781333pt;}
.y62{bottom:382.026667pt;}
.y212{bottom:383.574667pt;}
.y166{bottom:383.766667pt;}
.y151{bottom:384.544000pt;}
.yc3{bottom:384.604000pt;}
.y1b2{bottom:385.429333pt;}
.y2e{bottom:386.506667pt;}
.y3{bottom:388.610667pt;}
.y11c{bottom:389.386667pt;}
.y137{bottom:391.197333pt;}
.y17e{bottom:391.361333pt;}
.y193{bottom:392.205333pt;}
.y1e0{bottom:393.529333pt;}
.y90{bottom:396.094667pt;}
.yf0{bottom:397.834667pt;}
.yc1{bottom:398.352000pt;}
.y61{bottom:400.597333pt;}
.y165{bottom:402.337333pt;}
.y1b1{bottom:402.762667pt;}
.y2{bottom:404.510667pt;}
.y136{bottom:409.768000pt;}
.y17d{bottom:409.930667pt;}
.y1df{bottom:410.552000pt;}
.y225{bottom:413.416000pt;}
.y150{bottom:413.580000pt;}
.y8f{bottom:414.665333pt;}
.yef{bottom:416.405333pt;}
.yc0{bottom:416.922667pt;}
.y211{bottom:417.620000pt;}
.y60{bottom:419.166667pt;}
.y1b0{bottom:420.094667pt;}
.y11b{bottom:420.802667pt;}
.y164{bottom:420.906667pt;}
.y192{bottom:423.874667pt;}
.y1{bottom:425.725333pt;}
.y1de{bottom:427.574667pt;}
.y135{bottom:428.338667pt;}
.y17c{bottom:428.501333pt;}
.y224{bottom:430.438667pt;}
.y14f{bottom:430.676000pt;}
.y8e{bottom:433.236000pt;}
.y210{bottom:434.642667pt;}
.yee{bottom:434.976000pt;}
.ybf{bottom:435.492000pt;}
.y1af{bottom:437.426667pt;}
.y5f{bottom:437.737333pt;}
.y11a{bottom:439.372000pt;}
.y163{bottom:439.477333pt;}
.y191{bottom:440.970667pt;}
.y1dd{bottom:444.597333pt;}
.y134{bottom:446.908000pt;}
.y17b{bottom:447.072000pt;}
.y223{bottom:447.461333pt;}
.y20f{bottom:451.665333pt;}
.y8d{bottom:451.805333pt;}
.yed{bottom:453.545333pt;}
.ybe{bottom:454.062667pt;}
.y1ae{bottom:454.758667pt;}
.y5e{bottom:456.308000pt;}
.y2d{bottom:456.917333pt;}
.y119{bottom:457.942667pt;}
.y162{bottom:458.048000pt;}
.y190{bottom:458.066667pt;}
.y1dc{bottom:461.620000pt;}
.y133{bottom:465.478667pt;}
.y14e{bottom:467.950667pt;}
.y20e{bottom:468.688000pt;}
.y17a{bottom:469.626667pt;}
.y8c{bottom:470.376000pt;}
.yec{bottom:472.116000pt;}
.ybd{bottom:472.633333pt;}
.y5d{bottom:474.877333pt;}
.y18f{bottom:475.162667pt;}
.y2c{bottom:475.486667pt;}
.y118{bottom:476.513333pt;}
.y161{bottom:476.617333pt;}
.y1db{bottom:478.642667pt;}
.y1ad{bottom:480.061333pt;}
.y132{bottom:484.049333pt;}
.y14d{bottom:485.045333pt;}
.y20d{bottom:485.710667pt;}
.y8b{bottom:488.946667pt;}
.yeb{bottom:490.686667pt;}
.ybb{bottom:491.202667pt;}
.y18e{bottom:492.257333pt;}
.y5c{bottom:493.448000pt;}
.y117{bottom:495.084000pt;}
.y1da{bottom:495.665333pt;}
.ybc{bottom:496.025333pt;}
.y1ac{bottom:497.393333pt;}
.y179{bottom:498.201333pt;}
.y160{bottom:499.173333pt;}
.y14c{bottom:502.141333pt;}
.y131{bottom:502.620000pt;}
.y20c{bottom:502.733333pt;}
.y8a{bottom:507.516000pt;}
.yea{bottom:509.256000pt;}
.yba{bottom:509.773333pt;}
.y2b{bottom:509.997333pt;}
.y5b{bottom:512.018667pt;}
.y1d9{bottom:512.688000pt;}
.y116{bottom:513.653333pt;}
.y1ab{bottom:514.725333pt;}
.y20b{bottom:519.756000pt;}
.y177{bottom:520.795200pt;}
.y130{bottom:521.189333pt;}
.y89{bottom:526.086667pt;}
.ye9{bottom:527.826667pt;}
.yb9{bottom:528.344000pt;}
.y2a{bottom:528.568000pt;}
.y1d8{bottom:529.710667pt;}
.y5a{bottom:530.589333pt;}
.y1aa{bottom:532.057333pt;}
.y115{bottom:532.224000pt;}
.y20a{bottom:536.778667pt;}
.y12f{bottom:539.760000pt;}
.yb8{bottom:544.488000pt;}
.y88{bottom:544.657333pt;}
.ye8{bottom:546.397333pt;}
.y1d7{bottom:546.733333pt;}
.yb7{bottom:546.913333pt;}
.y29{bottom:547.137333pt;}
.y59{bottom:549.158667pt;}
.y1a9{bottom:549.390667pt;}
.y114{bottom:550.794667pt;}
.y209{bottom:553.801333pt;}
.y12e{bottom:558.330667pt;}
.y87{bottom:563.228000pt;}
.y1d6{bottom:563.756000pt;}
.ye7{bottom:564.968000pt;}
.yb6{bottom:565.484000pt;}
.y28{bottom:565.708000pt;}
.y1a8{bottom:566.722667pt;}
.y58{bottom:567.729333pt;}
.y113{bottom:569.364000pt;}
.y208{bottom:570.824000pt;}
.y12d{bottom:576.900000pt;}
.y1d5{bottom:580.778667pt;}
.y86{bottom:581.797333pt;}
.ye6{bottom:583.537333pt;}
.yb5{bottom:584.054667pt;}
.y27{bottom:584.278667pt;}
.y57{bottom:586.300000pt;}
.y207{bottom:587.846667pt;}
.y111{bottom:587.934667pt;}
.y1a7{bottom:592.024000pt;}
.y112{bottom:592.756000pt;}
.y12c{bottom:595.470667pt;}
.y1d4{bottom:597.801333pt;}
.y85{bottom:600.368000pt;}
.ye5{bottom:602.108000pt;}
.yb4{bottom:602.625333pt;}
.y26{bottom:602.849333pt;}
.y56{bottom:604.869333pt;}
.y110{bottom:606.505333pt;}
.y1a6{bottom:609.821333pt;}
.y12b{bottom:614.041333pt;}
.y1d3{bottom:614.824000pt;}
.y83{bottom:618.938667pt;}
.ye4{bottom:620.678667pt;}
.yb3{bottom:621.194667pt;}
.y25{bottom:621.418667pt;}
.y206{bottom:621.892000pt;}
.y55{bottom:623.440000pt;}
.y84{bottom:623.760000pt;}
.y10f{bottom:625.074667pt;}
.y1a5{bottom:627.617333pt;}
.y1d2{bottom:631.846667pt;}
.y82{bottom:637.508000pt;}
.y205{bottom:638.914667pt;}
.ye3{bottom:639.248000pt;}
.yb2{bottom:639.765333pt;}
.y24{bottom:639.989333pt;}
.y54{bottom:642.010667pt;}
.y10e{bottom:643.645333pt;}
.y1a4{bottom:645.414667pt;}
.y12a{bottom:645.710667pt;}
.y1d1{bottom:648.869333pt;}
.y204{bottom:655.937333pt;}
.y80{bottom:656.078667pt;}
.ye2{bottom:657.818667pt;}
.yb1{bottom:658.336000pt;}
.y23{bottom:658.560000pt;}
.y53{bottom:660.580000pt;}
.y81{bottom:660.900000pt;}
.y10d{bottom:662.216000pt;}
.y129{bottom:662.805333pt;}
.y1d0{bottom:665.892000pt;}
.y203{bottom:672.961333pt;}
.y7f{bottom:674.649333pt;}
.ye1{bottom:676.389333pt;}
.yb0{bottom:676.905333pt;}
.y22{bottom:677.129333pt;}
.y52{bottom:679.150667pt;}
.y128{bottom:679.901333pt;}
.y10c{bottom:680.785333pt;}
.y1cf{bottom:682.916000pt;}
.y202{bottom:689.984000pt;}
.y7e{bottom:693.218667pt;}
.y21{bottom:695.700000pt;}
.y51{bottom:697.721333pt;}
.ye0{bottom:698.944000pt;}
.y10b{bottom:699.356000pt;}
.yaf{bottom:699.461333pt;}
.y1ce{bottom:699.938667pt;}
.y201{bottom:707.006667pt;}
.y7d{bottom:711.789333pt;}
.y20{bottom:714.270667pt;}
.y50{bottom:716.290667pt;}
.y1cd{bottom:716.961333pt;}
.y10a{bottom:717.926667pt;}
.ydf{bottom:720.661333pt;}
.y200{bottom:724.029333pt;}
.y7c{bottom:730.360000pt;}
.yae{bottom:730.876000pt;}
.y1f{bottom:732.840000pt;}
.y1cc{bottom:733.984000pt;}
.y4f{bottom:734.861333pt;}
.y109{bottom:736.497333pt;}
.y1ff{bottom:741.052000pt;}
.y7a{bottom:748.929333pt;}
.yad{bottom:749.446667pt;}
.y1cb{bottom:751.006667pt;}
.y1e{bottom:751.410667pt;}
.y4e{bottom:753.432000pt;}
.y7b{bottom:753.752000pt;}
.y108{bottom:755.066667pt;}
.yde{bottom:755.172000pt;}
.y1fe{bottom:758.074667pt;}
.y79{bottom:767.500000pt;}
.yac{bottom:768.017333pt;}
.y1ca{bottom:768.029333pt;}
.y4d{bottom:772.002667pt;}
.y107{bottom:773.637333pt;}
.ydd{bottom:773.742667pt;}
.y1fd{bottom:775.097333pt;}
.y1d{bottom:777.950667pt;}
.y1c9{bottom:785.052000pt;}
.y77{bottom:786.070667pt;}
.yab{bottom:786.586667pt;}
.y4c{bottom:790.572000pt;}
.y78{bottom:790.892000pt;}
.y1fc{bottom:792.120000pt;}
.y106{bottom:792.208000pt;}
.ydc{bottom:792.312000pt;}
.y1c8{bottom:802.074667pt;}
.y76{bottom:804.640000pt;}
.yaa{bottom:805.157333pt;}
.y4b{bottom:809.142667pt;}
.y105{bottom:810.777333pt;}
.ydb{bottom:810.882667pt;}
.y1c{bottom:813.524000pt;}
.y1c7{bottom:819.097333pt;}
.y75{bottom:823.210667pt;}
.ya9{bottom:823.728000pt;}
.y1fb{bottom:826.165333pt;}
.y4a{bottom:827.713333pt;}
.y1b{bottom:827.870667pt;}
.y104{bottom:829.348000pt;}
.yda{bottom:829.453333pt;}
.y1c6{bottom:836.120000pt;}
.y74{bottom:841.781333pt;}
.ya8{bottom:842.297333pt;}
.y1fa{bottom:843.188000pt;}
.y49{bottom:846.282667pt;}
.y103{bottom:847.918667pt;}
.yd9{bottom:848.022667pt;}
.y1c5{bottom:853.142667pt;}
.y1f9{bottom:860.210667pt;}
.ya7{bottom:860.868000pt;}
.y73{bottom:864.336000pt;}
.y48{bottom:864.853333pt;}
.y102{bottom:866.488000pt;}
.yd8{bottom:866.593333pt;}
.y1c4{bottom:870.165333pt;}
.y1a{bottom:871.440000pt;}
.y1f8{bottom:877.233333pt;}
.ya6{bottom:879.438667pt;}
.y47{bottom:883.424000pt;}
.yd7{bottom:885.164000pt;}
.y72{bottom:886.053333pt;}
.y19{bottom:890.010667pt;}
.y1c3{bottom:891.173333pt;}
.y1f7{bottom:894.256000pt;}
.ya5{bottom:898.009333pt;}
.y46{bottom:901.993333pt;}
.yd6{bottom:903.733333pt;}
.y101{bottom:909.130667pt;}
.y1f6{bottom:911.278667pt;}
.ya4{bottom:916.578667pt;}
.y45{bottom:920.564000pt;}
.yd5{bottom:922.304000pt;}
.y18{bottom:924.521333pt;}
.y100{bottom:925.070667pt;}
.y1c2{bottom:926.640000pt;}
.y1f5{bottom:928.301333pt;}
.ya3{bottom:935.149333pt;}
.y44{bottom:939.134667pt;}
.yd4{bottom:940.874667pt;}
.yff{bottom:941.010667pt;}
.y1c1{bottom:943.973333pt;}
.y1f4{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.ya2{bottom:953.720000pt;}
.y43{bottom:957.704000pt;}
.y1c0{bottom:961.305333pt;}
.y1f3{bottom:962.346667pt;}
.y176{bottom:962.526667pt;}
.yfe{bottom:963.353333pt;}
.yd3{bottom:963.429333pt;}
.ya1{bottom:972.289333pt;}
.y42{bottom:976.274667pt;}
.y1f2{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y14b{bottom:981.097333pt;}
.yfd{bottom:985.696000pt;}
.ya0{bottom:990.860000pt;}
.y1bf{bottom:992.098667pt;}
.y41{bottom:994.845333pt;}
.y1f1{bottom:996.392000pt;}
.y40{bottom:1013.414667pt;}
.yfc{bottom:1014.732000pt;}
.y14a{bottom:1018.237333pt;}
.y3f{bottom:1066.841333pt;}
.h1a{height:22.284493pt;}
.ha{height:24.760382pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.hd{height:29.519145pt;}
.h7{height:31.072763pt;}
.hc{height:31.157778pt;}
.h10{height:31.558400pt;}
.h11{height:32.389032pt;}
.h14{height:34.957005pt;}
.h15{height:35.052646pt;}
.h13{height:37.109227pt;}
.h19{height:37.372000pt;}
.h6{height:38.415786pt;}
.h8{height:38.840857pt;}
.h4{height:38.947124pt;}
.h18{height:39.062344pt;}
.h9{height:41.524400pt;}
.hb{height:46.099251pt;}
.he{height:48.804478pt;}
.hf{height:51.225733pt;}
.h5{height:69.148877pt;}
.h16{height:102.175786pt;}
.h17{height:174.482133pt;}
.h12{height:867.747987pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:595.141307pt;}
.w3{width:650.980533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.xc0{left:71.171467pt;}
.xcc{left:76.309333pt;}
.x7e{left:99.092760pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.xbe{left:225.932000pt;}
.x80{left:233.080000pt;}
.x81{left:233.984000pt;}
.x64{left:236.616000pt;}
.x61{left:237.560000pt;}
.xc{left:241.804000pt;}
.x62{left:245.765333pt;}
.x8{left:248.773333pt;}
.x10{left:250.204000pt;}
.x14{left:251.370667pt;}
.x65{left:252.581333pt;}
.xc8{left:254.526667pt;}
.xd{left:255.596000pt;}
.x50{left:256.594667pt;}
.x15{left:258.013333pt;}
.x16{left:261.337333pt;}
.x9{left:263.024000pt;}
.xa7{left:265.208000pt;}
.x17{left:267.978667pt;}
.x9a{left:268.954667pt;}
.x1a{left:271.126667pt;}
.xa9{left:272.653333pt;}
.x95{left:274.786667pt;}
.x1b{left:277.768000pt;}
.x32{left:279.833333pt;}
.x1c{left:284.324000pt;}
.x35{left:285.833333pt;}
.x7d{left:288.373333pt;}
.x1d{left:290.965333pt;}
.x5f{left:291.945333pt;}
.x33{left:293.117333pt;}
.x70{left:294.284000pt;}
.x22{left:297.404000pt;}
.x36{left:299.117333pt;}
.x23{left:300.792000pt;}
.xb1{left:304.082667pt;}
.x37{left:305.892000pt;}
.xbf{left:307.318667pt;}
.x71{left:308.768000pt;}
.xa6{left:310.878667pt;}
.x82{left:313.088000pt;}
.x24{left:314.074667pt;}
.x83{left:316.413333pt;}
.xb2{left:317.366667pt;}
.xe{left:318.560000pt;}
.xaa{left:322.930667pt;}
.x4c{left:325.421333pt;}
.x89{left:327.961333pt;}
.x84{left:329.696000pt;}
.xf{left:332.352000pt;}
.x8a{left:333.673333pt;}
.x8c{left:335.678667pt;}
.x4d{left:338.704000pt;}
.xac{left:339.788000pt;}
.xab{left:340.870667pt;}
.x92{left:341.897333pt;}
.x93{left:350.102667pt;}
.x8e{left:352.649333pt;}
.xc6{left:357.789333pt;}
.x9f{left:365.528000pt;}
.xa0{left:368.816000pt;}
.xc7{left:372.026667pt;}
.x48{left:374.286667pt;}
.x40{left:378.094667pt;}
.x49{left:380.928000pt;}
.xa1{left:382.098667pt;}
.x4a{left:384.316000pt;}
.x51{left:387.749333pt;}
.x41{left:391.378667pt;}
.x46{left:394.812000pt;}
.x4b{left:397.598667pt;}
.x3e{left:400.368000pt;}
.x52{left:406.266667pt;}
.x47{left:408.094667pt;}
.xaf{left:410.224000pt;}
.x3f{left:413.652000pt;}
.x53{left:415.094667pt;}
.x54{left:419.429333pt;}
.xb0{left:423.508000pt;}
.x85{left:426.497333pt;}
.x86{left:429.754667pt;}
.xc2{left:430.780000pt;}
.x55{left:432.713333pt;}
.x77{left:436.120000pt;}
.x1e{left:438.162667pt;}
.xad{left:440.833333pt;}
.x87{left:443.038667pt;}
.x1f{left:444.805333pt;}
.x20{left:448.076000pt;}
.x78{left:450.362667pt;}
.x98{left:452.058667pt;}
.x21{left:454.717333pt;}
.x34{left:458.534667pt;}
.xba{left:461.562667pt;}
.x56{left:463.257333pt;}
.x7c{left:464.256000pt;}
.x99{left:465.342667pt;}
.x60{left:467.054667pt;}
.x57{left:468.969333pt;}
.xbb{left:470.586667pt;}
.x3c{left:472.498667pt;}
.x28{left:473.696000pt;}
.x58{left:475.292000pt;}
.x38{left:478.590667pt;}
.x69{left:480.448000pt;}
.x6e{left:481.574667pt;}
.x79{left:484.424000pt;}
.x3d{left:485.781333pt;}
.x29{left:486.980000pt;}
.x4{left:488.522667pt;}
.x2a{left:490.366667pt;}
.x39{left:491.873333pt;}
.x3a{left:495.128000pt;}
.x6f{left:496.120000pt;}
.x4e{left:497.290667pt;}
.x5{left:499.448000pt;}
.x2b{left:503.650667pt;}
.x3b{left:508.412000pt;}
.x8d{left:511.152000pt;}
.x18{left:512.061333pt;}
.x66{left:513.788000pt;}
.xb3{left:515.552000pt;}
.x6{left:517.034667pt;}
.x19{left:518.704000pt;}
.x6a{left:520.258667pt;}
.x4f{left:521.749333pt;}
.x67{left:523.670667pt;}
.x7{left:525.238667pt;}
.x6b{left:526.309333pt;}
.xb4{left:529.798667pt;}
.x25{left:531.333333pt;}
.x26{left:534.628000pt;}
.xa{left:538.457333pt;}
.x59{left:540.506667pt;}
.x11{left:542.760000pt;}
.x91{left:545.421333pt;}
.x68{left:546.757333pt;}
.x27{left:547.912000pt;}
.x12{left:549.401333pt;}
.xb{left:552.708000pt;}
.x5a{left:553.789333pt;}
.xbc{left:555.736000pt;}
.x13{left:559.298667pt;}
.x63{left:562.050667pt;}
.xbd{left:564.762667pt;}
.x30{left:566.424000pt;}
.xa5{left:567.909333pt;}
.xb5{left:573.144000pt;}
.x8b{left:574.661333pt;}
.xa2{left:576.714667pt;}
.x31{left:579.708000pt;}
.xc4{left:582.944000pt;}
.x9d{left:586.678667pt;}
.xcb{left:588.066667pt;}
.xa3{left:589.997333pt;}
.x7f{left:591.659395pt;}
.x42{left:593.280000pt;}
.xc5{left:597.188000pt;}
.x9e{left:599.961333pt;}
.x9b{left:602.936000pt;}
.x43{left:606.564000pt;}
.x9c{left:608.648000pt;}
.x88{left:619.086667pt;}
.x5b{left:623.196000pt;}
.x94{left:625.368000pt;}
.x7a{left:627.180000pt;}
.xa8{left:628.388000pt;}
.x5c{left:636.478667pt;}
.x7b{left:640.464000pt;}
.x96{left:643.413333pt;}
.xc1{left:645.901418pt;}
.xb6{left:647.758667pt;}
.x72{left:650.400000pt;}
.xb7{left:655.962667pt;}
.x97{left:657.661333pt;}
.x8f{left:659.982667pt;}
.x73{left:664.657333pt;}
.x90{left:668.188000pt;}
.xae{left:675.381333pt;}
.xc9{left:676.877333pt;}
.xa4{left:678.180000pt;}
.xca{left:691.136000pt;}
.x6c{left:695.746667pt;}
.x44{left:698.350667pt;}
.xc3{left:701.766667pt;}
.x6d{left:703.950667pt;}
.x74{left:707.932000pt;}
.x5d{left:709.106667pt;}
.x2c{left:710.326667pt;}
.x45{left:711.633333pt;}
.x5e{left:714.818667pt;}
.x75{left:716.976000pt;}
.x2d{left:723.610667pt;}
.xb8{left:725.672000pt;}
.x2e{left:726.950667pt;}
.xb9{left:733.877333pt;}
.x76{left:734.934667pt;}
.x2f{left:740.234667pt;}
}




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