
    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_bad5a44d25a753e7d62b114a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_75c1df2cf14642b0c1f2a5e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_34453fbe88d1ff1df51761db.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_d3543cdab0fc0b075dc4bfc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_94674d8debc2ff7d8a70632a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_a0b0728dd1d43203b0b5aa38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_96d4fd7f81b6278303dfce00.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd3f1c2c01e2e882412c4653.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_08d108a34ef4356800e62e63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.186000;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;}
.m2{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);}
.m8{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m3{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);}
.m11{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);}
.m23{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);}
.m28{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);}
.m12{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);}
.m10{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);}
.m1a{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);}
.mb{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);}
.m14{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);}
.ma{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);}
.m1f{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);}
.m1{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);}
.m1c{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);}
.m24{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);}
.m21{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);}
.m27{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);}
.m13{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);}
.m1e{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);}
.mf{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);}
.m5{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);}
.m17{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);}
.m16{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);}
.me{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);}
.m15{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);}
.m1d{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);}
.m1b{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);}
.m18{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);}
.m26{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);}
.m22{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);}
.m20{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);}
.m29{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);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.880000px;}
.lsa{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000496px;}
.ls4{letter-spacing:0.000583px;}
.ls22{letter-spacing:0.000589px;}
.ls10{letter-spacing:0.000800px;}
.ls1e{letter-spacing:0.000823px;}
.ls2a{letter-spacing:0.000845px;}
.ls14{letter-spacing:0.001036px;}
.ls23{letter-spacing:0.001102px;}
.ls13{letter-spacing:0.001565px;}
.ls2b{letter-spacing:0.001651px;}
.ls28{letter-spacing:0.001701px;}
.ls19{letter-spacing:0.001831px;}
.ls12{letter-spacing:0.002074px;}
.ls25{letter-spacing:0.002096px;}
.ls1c{letter-spacing:0.002271px;}
.ls17{letter-spacing:0.002283px;}
.ls1b{letter-spacing:0.002311px;}
.ls29{letter-spacing:0.002338px;}
.ls1f{letter-spacing:0.002544px;}
.ls16{letter-spacing:0.003155px;}
.ls7{letter-spacing:0.003488px;}
.ls18{letter-spacing:0.003830px;}
.lse{letter-spacing:0.004090px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls1d{letter-spacing:13.213786px;}
.ls24{letter-spacing:13.262566px;}
.ls1a{letter-spacing:13.317747px;}
.ls15{letter-spacing:13.448400px;}
.ls11{letter-spacing:13.454400px;}
.ls27{letter-spacing:13.502207px;}
.ls26{letter-spacing:13.585694px;}
.lsc{letter-spacing:14.818082px;}
.ls3{letter-spacing:14.944200px;}
.lsd{letter-spacing:15.123227px;}
.lsf{letter-spacing:16.378514px;}
.ls20{letter-spacing:17.662165px;}
.lsb{letter-spacing:18.829314px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.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;}
}
.ws10{word-spacing:-14.943900px;}
.ws64{word-spacing:-13.449600px;}
.ws15{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws5e{word-spacing:-2.809453px;}
.ws42{word-spacing:-2.271473px;}
.ws2c{word-spacing:-2.211697px;}
.ws54{word-spacing:-2.032370px;}
.ws4c{word-spacing:-1.972595px;}
.ws78{word-spacing:-1.912819px;}
.ws6e{word-spacing:-1.793268px;}
.ws5a{word-spacing:-1.733492px;}
.ws6f{word-spacing:-1.613941px;}
.ws43{word-spacing:-1.255288px;}
.ws68{word-spacing:-1.135736px;}
.ws7b{word-spacing:-1.016185px;}
.ws58{word-spacing:-0.956410px;}
.ws34{word-spacing:-0.896634px;}
.ws62{word-spacing:-0.836858px;}
.ws59{word-spacing:-0.777083px;}
.ws57{word-spacing:-0.717307px;}
.ws2d{word-spacing:-0.597756px;}
.ws40{word-spacing:-0.537980px;}
.ws85{word-spacing:-0.484186px;}
.ws84{word-spacing:-0.430387px;}
.ws74{word-spacing:-0.418429px;}
.ws52{word-spacing:-0.358654px;}
.ws99{word-spacing:-0.322790px;}
.ws30{word-spacing:-0.298878px;}
.ws92{word-spacing:-0.268992px;}
.ws3a{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.215194px;}
.ws2a{word-spacing:-0.179327px;}
.ws1b{word-spacing:-0.161395px;}
.ws3c{word-spacing:-0.119551px;}
.ws91{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.ws63{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wsa4{word-spacing:-0.004070px;}
.wse{word-spacing:-0.003766px;}
.wsc{word-spacing:-0.000908px;}
.ws13{word-spacing:-0.000439px;}
.ws12{word-spacing:-0.000008px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.000350px;}
.ws17{word-spacing:0.053798px;}
.ws38{word-spacing:0.059776px;}
.ws18{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws66{word-spacing:0.161395px;}
.ws27{word-spacing:0.179327px;}
.ws7e{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws19{word-spacing:0.268992px;}
.ws3d{word-spacing:0.298878px;}
.ws7f{word-spacing:0.322790px;}
.ws26{word-spacing:0.358654px;}
.ws7d{word-spacing:0.376589px;}
.ws24{word-spacing:0.478205px;}
.wsab{word-spacing:0.484186px;}
.ws5d{word-spacing:0.597756px;}
.ws49{word-spacing:0.657532px;}
.ws31{word-spacing:0.717307px;}
.ws73{word-spacing:0.777083px;}
.ws79{word-spacing:0.896634px;}
.ws36{word-spacing:1.016185px;}
.ws3e{word-spacing:1.075961px;}
.ws82{word-spacing:1.075968px;}
.ws6d{word-spacing:1.135736px;}
.ws32{word-spacing:1.195512px;}
.ws45{word-spacing:1.255288px;}
.ws37{word-spacing:1.315063px;}
.ws81{word-spacing:1.344960px;}
.ws6b{word-spacing:1.374839px;}
.ws1a{word-spacing:1.452557px;}
.ws35{word-spacing:1.673717px;}
.ws41{word-spacing:1.733492px;}
.ws95{word-spacing:1.775347px;}
.ws25{word-spacing:1.912819px;}
.ws1e{word-spacing:1.936742px;}
.wsa7{word-spacing:1.990541px;}
.ws2f{word-spacing:2.032370px;}
.ws33{word-spacing:2.092146px;}
.ws4f{word-spacing:2.211697px;}
.ws4b{word-spacing:2.271473px;}
.ws94{word-spacing:2.313331px;}
.ws70{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws1c{word-spacing:2.582323px;}
.ws3f{word-spacing:2.749678px;}
.ws5b{word-spacing:2.869229px;}
.ws16{word-spacing:2.869236px;}
.ws44{word-spacing:2.929004px;}
.ws7a{word-spacing:3.048556px;}
.ws6a{word-spacing:3.108331px;}
.ws22{word-spacing:3.219667px;}
.ws88{word-spacing:3.222576px;}
.wsae{word-spacing:3.222586px;}
.ws80{word-spacing:3.224822px;}
.ws97{word-spacing:3.227904px;}
.ws3b{word-spacing:3.287658px;}
.ws1d{word-spacing:3.335501px;}
.ws75{word-spacing:3.347434px;}
.wsa9{word-spacing:3.389299px;}
.ws4e{word-spacing:3.407209px;}
.ws20{word-spacing:3.496896px;}
.ws69{word-spacing:3.526760px;}
.ws23{word-spacing:3.586536px;}
.ws8d{word-spacing:3.712090px;}
.ws67{word-spacing:3.765863px;}
.ws83{word-spacing:3.765888px;}
.ws5f{word-spacing:3.825638px;}
.ws60{word-spacing:3.885414px;}
.ws48{word-spacing:3.945190px;}
.ws21{word-spacing:4.142477px;}
.wsa0{word-spacing:4.196275px;}
.wsb0{word-spacing:4.250074px;}
.ws76{word-spacing:4.423394px;}
.ws9d{word-spacing:4.519066px;}
.wsaf{word-spacing:4.626662px;}
.ws39{word-spacing:4.662497px;}
.ws8c{word-spacing:4.734259px;}
.wsa{word-spacing:4.770079px;}
.ws29{word-spacing:4.782048px;}
.wsb{word-spacing:4.853765px;}
.ws7c{word-spacing:4.961375px;}
.ws50{word-spacing:5.021150px;}
.ws56{word-spacing:5.200477px;}
.wsa8{word-spacing:5.218445px;}
.wsa2{word-spacing:5.272243px;}
.ws4a{word-spacing:5.320028px;}
.ws71{word-spacing:5.379804px;}
.ws5c{word-spacing:5.559131px;}
.ws55{word-spacing:5.798233px;}
.ws46{word-spacing:6.216662px;}
.ws65{word-spacing:6.336214px;}
.ws87{word-spacing:6.348211px;}
.ws6c{word-spacing:6.455765px;}
.ws47{word-spacing:6.694867px;}
.ws86{word-spacing:6.724800px;}
.ws72{word-spacing:7.173072px;}
.ws61{word-spacing:7.292623px;}
.ws8{word-spacing:7.782761px;}
.ws53{word-spacing:7.890379px;}
.wsa5{word-spacing:9.307123px;}
.ws8a{word-spacing:9.468518px;}
.ws2{word-spacing:10.419305px;}
.ws2e{word-spacing:11.901520px;}
.ws6{word-spacing:12.176255px;}
.wsad{word-spacing:13.073011px;}
.ws93{word-spacing:13.126810px;}
.ws90{word-spacing:13.180608px;}
.ws9e{word-spacing:13.387325px;}
.ws98{word-spacing:13.392106px;}
.ws8e{word-spacing:13.392278px;}
.ws89{word-spacing:13.393546px;}
.ws8b{word-spacing:13.395802px;}
.wsac{word-spacing:13.879987px;}
.ws4d{word-spacing:14.884124px;}
.ws77{word-spacing:15.900310px;}
.ws7{word-spacing:16.109478px;}
.ws9a{word-spacing:16.300915px;}
.ws9b{word-spacing:16.569907px;}
.ws9c{word-spacing:16.615603px;}
.ws8f{word-spacing:16.616477px;}
.wsaa{word-spacing:16.617744px;}
.wsa6{word-spacing:16.619146px;}
.ws96{word-spacing:16.623706px;}
.ws9f{word-spacing:16.677504px;}
.wsa1{word-spacing:17.269286px;}
.ws51{word-spacing:18.470660px;}
.wsa3{word-spacing:18.668045px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
._68{margin-left:-7.749474px;}
._8{margin-left:-6.639491px;}
._9{margin-left:-5.260266px;}
._0{margin-left:-3.849538px;}
._6a{margin-left:-2.672382px;}
._1{margin-left:-1.506341px;}
._69{width:1.011774px;}
._6{width:2.996071px;}
._1a{width:4.435345px;}
._2{width:12.971268px;}
._6c{width:14.005458px;}
._f{width:15.607418px;}
._a{width:17.424799px;}
._11{width:18.773938px;}
._c{width:19.797811px;}
._b{width:21.680741px;}
._e{width:22.971917px;}
._d{width:23.994086px;}
._3{width:25.192966px;}
._18{width:26.496941px;}
._10{width:27.759974px;}
._12{width:28.875877px;}
._4{width:30.587087px;}
._15{width:31.937972px;}
._5{width:33.355008px;}
._67{width:34.610072px;}
._16{width:37.658628px;}
._17{width:39.033467px;}
._35{width:41.065837px;}
._19{width:43.349261px;}
._7{width:54.413009px;}
._6d{width:61.868160px;}
._63{width:72.627840px;}
._6b{width:88.767360px;}
._57{width:129.869338px;}
._3a{width:143.318938px;}
._38{width:151.442496px;}
._3d{width:156.768538px;}
._3c{width:164.892096px;}
._4b{width:167.205427px;}
._4a{width:169.447093px;}
._4e{width:176.942938px;}
._39{width:178.341696px;}
._54{width:180.655027px;}
._51{width:183.410723px;}
._48{width:192.048311px;}
._5f{width:197.117338px;}
._42{width:205.240896px;}
._4d{width:211.965696px;}
._27{width:217.883520px;}
._40{width:228.481805px;}
._43{width:241.931405px;}
._47{width:255.381005px;}
._3f{width:263.504563px;}
._58{width:273.188275px;}
._46{width:276.954163px;}
._5b{width:286.368883px;}
._26{width:295.837402px;}
._66{width:306.435686px;}
._1e{width:307.673050px;}
._5a{width:322.162686px;}
._45{width:335.217830px;}
._50{width:345.331930px;}
._41{width:354.101069px;}
._61{width:384.981350px;}
._60{width:407.361485px;}
._49{width:425.871859px;}
._3e{width:433.615104px;}
._53{width:437.918976px;}
._2d{width:454.542682px;}
._65{width:459.761126px;}
._5e{width:467.884685px;}
._4c{width:474.663283px;}
._24{width:478.644365px;}
._22{width:482.786842px;}
._23{width:484.777382px;}
._33{width:488.381875px;}
._28{width:496.613030px;}
._1d{width:497.635200px;}
._52{width:500.594112px;}
._4f{width:502.196087px;}
._2c{width:510.600614px;}
._20{width:513.613325px;}
._34{width:515.281075px;}
._2a{width:519.531149px;}
._25{width:525.287578px;}
._1c{width:528.623078px;}
._44{width:531.345206px;}
._2e{width:536.208653px;}
._32{width:541.480896px;}
._37{width:548.086122px;}
._29{width:550.788019px;}
._31{width:555.145690px;}
._21{width:556.167859px;}
._30{width:562.330728px;}
._3b{width:563.914829px;}
._2f{width:574.997299px;}
._2b{width:610.719437px;}
._1f{width:642.299098px;}
._5d{width:685.768205px;}
._5c{width:693.192384px;}
._64{width:699.455376px;}
._13{width:709.596198px;}
._62{width:765.251376px;}
._56{width:783.077533px;}
._59{width:815.099558px;}
._36{width:905.635066px;}
._55{width:992.029066px;}
._1b{width:1178.453952px;}
._6e{width:2474.693929px;}
._14{width:2498.603929px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(91,41,111);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:136.067040px;}
.y0{bottom:0.000000px;}
.y1a{bottom:12.925707px;}
.y47{bottom:31.890000px;}
.y15d{bottom:91.665000px;}
.y18{bottom:104.646000px;}
.y174{bottom:106.744500px;}
.y7e{bottom:107.641500px;}
.y15c{bottom:110.494500px;}
.y46{bottom:122.437500px;}
.y17{bottom:122.535000px;}
.y1a5{bottom:123.960000px;}
.y173{bottom:125.574000px;}
.y7d{bottom:126.471000px;}
.y15b{bottom:129.324000px;}
.y16{bottom:140.422500px;}
.y1a4{bottom:141.220500px;}
.y45{bottom:141.267000px;}
.y172{bottom:144.403500px;}
.y7c{bottom:145.300500px;}
.y137{bottom:146.085000px;}
.y15a{bottom:148.153500px;}
.yd4{bottom:152.025000px;}
.y15{bottom:158.310000px;}
.y1a3{bottom:158.481000px;}
.y44{bottom:160.096500px;}
.y171{bottom:163.233000px;}
.y7b{bottom:164.130000px;}
.y159{bottom:166.983000px;}
.y136{bottom:167.917500px;}
.yd3{bottom:170.854500px;}
.y1a2{bottom:175.741500px;}
.y14{bottom:176.199000px;}
.y43{bottom:178.926000px;}
.y170{bottom:182.062500px;}
.y7a{bottom:182.959500px;}
.y135{bottom:184.356000px;}
.y158{bottom:185.812500px;}
.yd2{bottom:189.684000px;}
.y1a1{bottom:193.002000px;}
.y101{bottom:193.083000px;}
.y13{bottom:194.086500px;}
.y42{bottom:197.755500px;}
.y134{bottom:200.794500px;}
.y16f{bottom:200.892000px;}
.y79{bottom:201.789000px;}
.yd1{bottom:208.513500px;}
.y157{bottom:209.125500px;}
.y1a0{bottom:210.262500px;}
.ya6{bottom:211.651500px;}
.y100{bottom:211.912500px;}
.y12{bottom:211.974000px;}
.y41{bottom:216.585000px;}
.y133{bottom:217.233000px;}
.y16e{bottom:219.721500px;}
.y78{bottom:220.618500px;}
.yd0{bottom:227.343000px;}
.y19f{bottom:227.523000px;}
.y11{bottom:229.863000px;}
.ya5{bottom:230.481000px;}
.yff{bottom:230.742000px;}
.y132{bottom:233.671500px;}
.y40{bottom:235.414500px;}
.y16d{bottom:238.551000px;}
.y77{bottom:239.446500px;}
.y12f{bottom:241.890000px;}
.y156{bottom:242.749500px;}
.y19e{bottom:244.783500px;}
.ycf{bottom:246.172500px;}
.ya4{bottom:249.310500px;}
.yfe{bottom:249.571500px;}
.y131{bottom:250.110000px;}
.y3f{bottom:254.244000px;}
.y16c{bottom:257.380500px;}
.y76{bottom:258.276000px;}
.y12e{bottom:258.328500px;}
.y155{bottom:261.579000px;}
.y19d{bottom:262.042500px;}
.y130{bottom:266.547000px;}
.ya3{bottom:268.140000px;}
.yfd{bottom:268.401000px;}
.yce{bottom:269.485500px;}
.y3e{bottom:273.073500px;}
.y16b{bottom:276.210000px;}
.y75{bottom:277.105500px;}
.y19c{bottom:279.303000px;}
.y154{bottom:280.408500px;}
.y12d{bottom:282.985500px;}
.ya2{bottom:286.969500px;}
.yfc{bottom:287.229000px;}
.y3d{bottom:291.903000px;}
.y16a{bottom:295.039500px;}
.y74{bottom:295.935000px;}
.y19b{bottom:296.563500px;}
.y10{bottom:298.876500px;}
.y153{bottom:299.238000px;}
.ycd{bottom:303.109500px;}
.ya1{bottom:305.799000px;}
.yfb{bottom:306.058500px;}
.y12c{bottom:306.627000px;}
.y3c{bottom:310.732500px;}
.y19a{bottom:313.824000px;}
.y73{bottom:314.764500px;}
.yf{bottom:316.764000px;}
.y169{bottom:318.351000px;}
.ycc{bottom:321.939000px;}
.y12b{bottom:323.065500px;}
.y1ce{bottom:324.328500px;}
.ya0{bottom:324.628500px;}
.yfa{bottom:324.888000px;}
.y3b{bottom:329.562000px;}
.y199{bottom:331.084500px;}
.y152{bottom:331.743000px;}
.y72{bottom:333.594000px;}
.ye{bottom:334.653000px;}
.y12a{bottom:339.504000px;}
.ycb{bottom:340.768500px;}
.y1cd{bottom:341.589000px;}
.yf9{bottom:343.717500px;}
.y127{bottom:347.722500px;}
.y9f{bottom:347.940000px;}
.y198{bottom:348.345000px;}
.y3a{bottom:348.391500px;}
.y151{bottom:350.586000px;}
.y168{bottom:351.975000px;}
.y71{bottom:352.423500px;}
.yd{bottom:352.540500px;}
.y129{bottom:355.941000px;}
.y1cc{bottom:358.849500px;}
.yca{bottom:359.598000px;}
.yf8{bottom:362.547000px;}
.y126{bottom:364.161000px;}
.y197{bottom:365.605500px;}
.y9e{bottom:366.769500px;}
.y150{bottom:367.024500px;}
.y39{bottom:367.221000px;}
.y167{bottom:370.804500px;}
.y70{bottom:371.253000px;}
.y128{bottom:372.379500px;}
.yc9{bottom:378.426000px;}
.yc{bottom:380.889000px;}
.yf7{bottom:381.376500px;}
.y196{bottom:382.866000px;}
.y14f{bottom:383.463000px;}
.y9d{bottom:385.599000px;}
.y38{bottom:386.050500px;}
.y166{bottom:389.634000px;}
.y6f{bottom:390.082500px;}
.y125{bottom:396.021000px;}
.yc8{bottom:397.255500px;}
.y1cb{bottom:397.929000px;}
.yb{bottom:398.776500px;}
.y195{bottom:400.125000px;}
.y9c{bottom:404.428500px;}
.y14e{bottom:407.104500px;}
.y165{bottom:408.463500px;}
.y6e{bottom:408.912000px;}
.y37{bottom:409.363500px;}
.y124{bottom:412.459500px;}
.y1ca{bottom:415.188000px;}
.yc7{bottom:416.085000px;}
.y194{bottom:417.385500px;}
.yf6{bottom:422.355000px;}
.y9b{bottom:423.258000px;}
.y14d{bottom:423.543000px;}
.ya{bottom:425.631000px;}
.y164{bottom:427.293000px;}
.y6d{bottom:427.741500px;}
.y1c9{bottom:432.448500px;}
.y193{bottom:434.646000px;}
.y123{bottom:436.099500px;}
.yf5{bottom:438.793500px;}
.yc6{bottom:439.398000px;}
.y9a{bottom:442.087500px;}
.y9{bottom:443.520000px;}
.y163{bottom:446.122500px;}
.y6c{bottom:446.571000px;}
.y14c{bottom:447.183000px;}
.y1c8{bottom:449.709000px;}
.y192{bottom:451.906500px;}
.yf4{bottom:455.232000px;}
.y122{bottom:459.741000px;}
.y99{bottom:460.917000px;}
.y8{bottom:461.407500px;}
.y162{bottom:464.952000px;}
.y6b{bottom:465.400500px;}
.y1c7{bottom:466.969500px;}
.y191{bottom:469.167000px;}
.y14b{bottom:470.824500px;}
.yf3{bottom:471.670500px;}
.yc5{bottom:473.022000px;}
.y7{bottom:479.295000px;}
.y98{bottom:479.746500px;}
.y161{bottom:483.781500px;}
.y6a{bottom:484.230000px;}
.y36{bottom:484.513500px;}
.y190{bottom:486.427500px;}
.yc4{bottom:491.851500px;}
.y121{bottom:494.349000px;}
.yf2{bottom:495.312000px;}
.y6{bottom:497.184000px;}
.y97{bottom:498.576000px;}
.y1c6{bottom:501.490500px;}
.y14a{bottom:502.443000px;}
.y160{bottom:502.611000px;}
.y69{bottom:503.059500px;}
.y18f{bottom:503.688000px;}
.yc3{bottom:510.681000px;}
.yf1{bottom:511.750500px;}
.y5{bottom:515.071500px;}
.y96{bottom:517.405500px;}
.y1c5{bottom:518.751000px;}
.y18e{bottom:520.948500px;}
.y15f{bottom:521.440500px;}
.y68{bottom:521.889000px;}
.y35{bottom:521.902500px;}
.yf0{bottom:528.189000px;}
.yc2{bottom:529.510500px;}
.y120{bottom:531.453000px;}
.y4{bottom:532.959000px;}
.y1c4{bottom:536.011500px;}
.y95{bottom:536.235000px;}
.y149{bottom:537.897000px;}
.y18d{bottom:538.209000px;}
.y67{bottom:540.718500px;}
.y34{bottom:541.359000px;}
.yef{bottom:544.626000px;}
.y15e{bottom:544.753500px;}
.yc1{bottom:548.340000px;}
.y11f{bottom:550.282500px;}
.y3{bottom:550.848000px;}
.y1c3{bottom:553.272000px;}
.y94{bottom:555.064500px;}
.y18c{bottom:555.468000px;}
.y148{bottom:556.726500px;}
.y66{bottom:559.548000px;}
.y33{bottom:560.817000px;}
.yee{bottom:561.064500px;}
.yc0{bottom:567.169500px;}
.y2{bottom:568.735500px;}
.y1c2{bottom:570.531000px;}
.y18b{bottom:572.728500px;}
.y93{bottom:573.894000px;}
.y147{bottom:575.556000px;}
.y65{bottom:578.377500px;}
.y32{bottom:580.273500px;}
.y11e{bottom:584.439000px;}
.yed{bottom:584.706000px;}
.ybf{bottom:585.999000px;}
.y1{bottom:586.623000px;}
.y1c1{bottom:587.791500px;}
.y18a{bottom:589.989000px;}
.y92{bottom:592.723500px;}
.y146{bottom:594.385500px;}
.y64{bottom:597.207000px;}
.y31{bottom:599.731500px;}
.yec{bottom:601.144500px;}
.ybe{bottom:604.828500px;}
.y1c0{bottom:605.052000px;}
.y11d{bottom:606.271500px;}
.y189{bottom:607.249500px;}
.y91{bottom:611.553000px;}
.y145{bottom:613.215000px;}
.y63{bottom:616.036500px;}
.yeb{bottom:617.583000px;}
.y30{bottom:619.188000px;}
.y1bf{bottom:622.312500px;}
.y11c{bottom:622.708500px;}
.ybd{bottom:623.658000px;}
.y188{bottom:624.510000px;}
.y90{bottom:630.382500px;}
.yea{bottom:634.021500px;}
.y62{bottom:634.866000px;}
.y2f{bottom:638.644500px;}
.y11b{bottom:639.147000px;}
.y1be{bottom:639.573000px;}
.ybc{bottom:642.487500px;}
.y144{bottom:642.606000px;}
.y187{bottom:646.254000px;}
.y8f{bottom:649.212000px;}
.y61{bottom:653.695500px;}
.y11a{bottom:655.585500px;}
.y1bd{bottom:656.833500px;}
.ye9{bottom:657.661500px;}
.y2e{bottom:658.102500px;}
.y143{bottom:661.449000px;}
.ybb{bottom:665.800500px;}
.y8e{bottom:668.041500px;}
.y119{bottom:672.024000px;}
.y60{bottom:672.525000px;}
.y1bc{bottom:674.094000px;}
.ye8{bottom:674.100000px;}
.y2d{bottom:677.559000px;}
.y142{bottom:677.887500px;}
.y186{bottom:679.878000px;}
.y8d{bottom:686.871000px;}
.y118{bottom:688.462500px;}
.ye7{bottom:690.538500px;}
.y5f{bottom:691.354500px;}
.y140{bottom:694.326000px;}
.y2c{bottom:697.017000px;}
.yba{bottom:699.424500px;}
.y117{bottom:704.901000px;}
.y8c{bottom:705.700500px;}
.y185{bottom:706.417500px;}
.ye6{bottom:706.977000px;}
.y1bb{bottom:708.613500px;}
.y5e{bottom:710.184000px;}
.y13f{bottom:710.764500px;}
.y2b{bottom:716.473500px;}
.yb9{bottom:718.252500px;}
.y116{bottom:721.339500px;}
.y8b{bottom:724.530000px;}
.y1ba{bottom:725.874000px;}
.y141{bottom:727.203000px;}
.y5d{bottom:729.013500px;}
.ye5{bottom:730.617000px;}
.y184{bottom:732.958500px;}
.y2a{bottom:735.930000px;}
.yb8{bottom:737.082000px;}
.y115{bottom:737.778000px;}
.y1b9{bottom:743.134500px;}
.y8a{bottom:743.359500px;}
.ye4{bottom:747.055500px;}
.y5c{bottom:747.843000px;}
.y183{bottom:750.532500px;}
.y13e{bottom:750.843000px;}
.yb7{bottom:755.911500px;}
.y1b8{bottom:760.395000px;}
.y114{bottom:761.418000px;}
.y89{bottom:762.189000px;}
.y5b{bottom:766.671000px;}
.y13d{bottom:767.281500px;}
.ye3{bottom:770.697000px;}
.y29{bottom:774.516000px;}
.yb6{bottom:774.741000px;}
.y182{bottom:777.073500px;}
.y1b7{bottom:777.655500px;}
.y113{bottom:777.856500px;}
.y88{bottom:781.018500px;}
.y13c{bottom:783.720000px;}
.y5a{bottom:785.500500px;}
.ye2{bottom:787.134000px;}
.y28{bottom:790.656000px;}
.yb5{bottom:793.570500px;}
.y112{bottom:794.295000px;}
.y1b6{bottom:794.916000px;}
.y87{bottom:799.848000px;}
.ye1{bottom:803.572500px;}
.y181{bottom:803.613000px;}
.y59{bottom:804.330000px;}
.y13b{bottom:807.360000px;}
.y111{bottom:810.733500px;}
.y27{bottom:811.134000px;}
.y1b5{bottom:812.176500px;}
.yb4{bottom:812.400000px;}
.y86{bottom:818.677500px;}
.ye0{bottom:820.011000px;}
.y180{bottom:821.187000px;}
.y58{bottom:823.159500px;}
.y110{bottom:827.172000px;}
.y26{bottom:827.274000px;}
.y1b4{bottom:829.437000px;}
.y13a{bottom:831.001500px;}
.yb3{bottom:831.229500px;}
.y85{bottom:837.507000px;}
.y17f{bottom:838.762500px;}
.y25{bottom:839.074500px;}
.y57{bottom:841.989000px;}
.y10f{bottom:843.610500px;}
.ydf{bottom:843.652500px;}
.y1b3{bottom:846.697500px;}
.yb2{bottom:854.542500px;}
.y84{bottom:856.335000px;}
.y17e{bottom:856.336500px;}
.y24{bottom:859.554000px;}
.y10e{bottom:860.049000px;}
.y56{bottom:860.818500px;}
.y139{bottom:862.621500px;}
.y1b2{bottom:863.956500px;}
.y23{bottom:871.353000px;}
.y17d{bottom:873.910500px;}
.y83{bottom:875.164500px;}
.yde{bottom:875.271000px;}
.y10d{bottom:876.487500px;}
.y55{bottom:879.648000px;}
.y1b1{bottom:881.217000px;}
.y138{bottom:881.854500px;}
.yb1{bottom:888.166500px;}
.y17c{bottom:891.484500px;}
.y22{bottom:891.832500px;}
.y10c{bottom:892.926000px;}
.y82{bottom:893.994000px;}
.y54{bottom:898.477500px;}
.yb0{bottom:906.996000px;}
.y21{bottom:907.972500px;}
.y10b{bottom:909.363000px;}
.ydd{bottom:912.376500px;}
.y81{bottom:912.823500px;}
.y1b0{bottom:915.738000px;}
.y53{bottom:917.307000px;}
.y17b{bottom:918.024000px;}
.yaf{bottom:925.825500px;}
.ydc{bottom:931.206000px;}
.y80{bottom:931.653000px;}
.y1af{bottom:932.998500px;}
.y10a{bottom:933.004500px;}
.y52{bottom:936.136500px;}
.y17a{bottom:944.565000px;}
.yae{bottom:944.655000px;}
.y109{bottom:949.443000px;}
.y1ae{bottom:950.259000px;}
.y7f{bottom:950.482500px;}
.y20{bottom:952.648500px;}
.ydb{bottom:954.517500px;}
.y51{bottom:954.966000px;}
.y179{bottom:962.139000px;}
.yad{bottom:963.484500px;}
.y1ad{bottom:967.519500px;}
.y1f{bottom:971.478000px;}
.y108{bottom:973.083000px;}
.y50{bottom:973.795500px;}
.y178{bottom:979.713000px;}
.yac{bottom:982.314000px;}
.y1ac{bottom:984.780000px;}
.yda{bottom:988.141500px;}
.y107{bottom:989.521500px;}
.y4f{bottom:992.625000px;}
.y177{bottom:997.287000px;}
.yab{bottom:1001.143500px;}
.y1ab{bottom:1002.040500px;}
.y106{bottom:1005.960000px;}
.yd9{bottom:1006.971000px;}
.y1e{bottom:1008.240000px;}
.y4e{bottom:1011.454500px;}
.y176{bottom:1014.862500px;}
.y1aa{bottom:1019.299500px;}
.yaa{bottom:1019.973000px;}
.yd8{bottom:1025.800500px;}
.y105{bottom:1029.601500px;}
.y4d{bottom:1030.284000px;}
.y175{bottom:1032.436500px;}
.y1d{bottom:1036.485000px;}
.y1a9{bottom:1036.560000px;}
.ya9{bottom:1043.284500px;}
.yd7{bottom:1044.630000px;}
.y4c{bottom:1049.113500px;}
.y104{bottom:1053.241500px;}
.y1a8{bottom:1053.820500px;}
.ya8{bottom:1062.114000px;}
.yd6{bottom:1063.459500px;}
.y1c{bottom:1064.728500px;}
.y4b{bottom:1067.943000px;}
.y1a7{bottom:1071.081000px;}
.yd5{bottom:1082.289000px;}
.ya7{bottom:1085.427000px;}
.y4a{bottom:1086.772500px;}
.y103{bottom:1087.849500px;}
.y1a6{bottom:1088.341500px;}
.y1b{bottom:1092.972000px;}
.y49{bottom:1105.602000px;}
.y102{bottom:1107.082500px;}
.y19{bottom:1136.460000px;}
.y48{bottom:1168.366500px;}
.he{height:27.655250px;}
.h8{height:32.565965px;}
.h2{height:37.993262px;}
.ha{height:38.896243px;}
.h10{height:41.783144px;}
.hc{height:43.217759px;}
.h9{height:43.421105px;}
.h5{height:43.815515px;}
.hb{height:48.848947px;}
.h11{height:49.117939px;}
.h3{height:50.930649px;}
.hd{height:54.276245px;}
.h7{height:55.352206px;}
.h6{height:77.792486px;}
.hf{height:81.728947px;}
.h4{height:92.253453px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.345381px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056971px;}
.x5f{left:62.541000px;}
.x52{left:66.360000px;}
.x54{left:70.806000px;}
.x55{left:79.762500px;}
.x92{left:85.848000px;}
.x57{left:93.931500px;}
.x42{left:95.283000px;}
.x5b{left:115.927500px;}
.x51{left:118.362000px;}
.x4c{left:121.126500px;}
.x56{left:135.691500px;}
.x5c{left:136.822500px;}
.x50{left:138.006000px;}
.x58{left:139.855500px;}
.x53{left:144.508500px;}
.x59{left:148.267500px;}
.x5a{left:155.065500px;}
.x4b{left:169.900500px;}
.x9a{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x2b{left:250.591500px;}
.x31{left:267.282000px;}
.x78{left:268.873500px;}
.x4{left:269.914500px;}
.x68{left:272.589000px;}
.x60{left:276.226500px;}
.x61{left:279.993000px;}
.x7{left:281.479500px;}
.x79{left:289.041000px;}
.x35{left:292.056000px;}
.x77{left:295.443000px;}
.x3f{left:299.568000px;}
.x6{left:308.155500px;}
.x38{left:311.793000px;}
.x30{left:313.611000px;}
.x3a{left:317.577000px;}
.x34{left:324.718500px;}
.x43{left:328.594500px;}
.x4d{left:331.956000px;}
.x2f{left:337.821000px;}
.x62{left:360.328500px;}
.x63{left:361.761000px;}
.x72{left:372.985500px;}
.x69{left:375.790500px;}
.x88{left:377.263500px;}
.x6a{left:379.557000px;}
.x90{left:390.760500px;}
.x89{left:392.206500px;}
.x7f{left:393.847500px;}
.x7a{left:405.888000px;}
.x80{left:408.792000px;}
.x81{left:412.602000px;}
.x44{left:414.330000px;}
.x45{left:415.762500px;}
.x4e{left:419.124000px;}
.x12{left:420.951000px;}
.x29{left:422.055000px;}
.x13{left:428.422500px;}
.x2a{left:429.526500px;}
.x14{left:432.234000px;}
.x91{left:433.776000px;}
.x15{left:439.705500px;}
.x16{left:443.515500px;}
.x83{left:445.969500px;}
.x17{left:450.988500px;}
.x6b{left:452.823000px;}
.x64{left:455.311500px;}
.x84{left:460.912500px;}
.x7e{left:462.489000px;}
.x7b{left:466.047000px;}
.x33{left:491.752500px;}
.x5e{left:494.583000px;}
.x5d{left:498.592500px;}
.x46{left:509.313000px;}
.x41{left:510.784500px;}
.x40{left:520.194000px;}
.x2c{left:530.844000px;}
.x6c{left:532.470000px;}
.x3b{left:534.945000px;}
.x36{left:537.607500px;}
.x67{left:542.175000px;}
.x37{left:544.231500px;}
.x2d{left:545.788500px;}
.x3c{left:546.955500px;}
.x2e{left:549.598500px;}
.x39{left:552.280500px;}
.x32{left:553.531500px;}
.x3e{left:554.950500px;}
.x3d{left:558.333000px;}
.x8{left:561.832500px;}
.x18{left:565.252500px;}
.x9{left:569.304000px;}
.x19{left:572.725500px;}
.x1a{left:576.435000px;}
.x26{left:577.837500px;}
.x65{left:581.946000px;}
.x1b{left:591.379500px;}
.x27{left:592.780500px;}
.x48{left:603.549000px;}
.x47{left:605.829000px;}
.x73{left:611.701500px;}
.x7d{left:612.921000px;}
.x6e{left:615.595500px;}
.x7c{left:617.823000px;}
.x1c{left:620.419500px;}
.x6f{left:621.984000px;}
.x6d{left:624.264000px;}
.xe{left:626.070000px;}
.xf{left:633.541500px;}
.x1d{left:635.364000px;}
.x10{left:637.203000px;}
.x1e{left:639.036000px;}
.x11{left:644.674500px;}
.x1f{left:653.980500px;}
.x24{left:664.948500px;}
.x97{left:666.853500px;}
.x25{left:679.893000px;}
.x4a{left:681.954000px;}
.x4f{left:685.317000px;}
.x93{left:690.967500px;}
.x49{left:693.406500px;}
.x74{left:697.860000px;}
.x71{left:701.068500px;}
.x66{left:704.203500px;}
.x82{left:711.196500px;}
.x70{left:712.521000px;}
.x94{left:717.865500px;}
.x86{left:719.569500px;}
.x98{left:730.620000px;}
.x76{left:732.171000px;}
.x87{left:734.514000px;}
.x95{left:735.915000px;}
.x8a{left:747.010500px;}
.x99{left:757.518000px;}
.x8b{left:761.955000px;}
.x8c{left:765.765000px;}
.x85{left:773.490000px;}
.x8d{left:780.709500px;}
.x75{left:782.788500px;}
.x8e{left:788.331000px;}
.x20{left:794.499000px;}
.x8f{left:803.274000px;}
.x21{left:809.442000px;}
.xa{left:814.348500px;}
.x22{left:817.011000px;}
.x28{left:818.046000px;}
.xb{left:821.820000px;}
.xc{left:825.492000px;}
.x23{left:831.955500px;}
.xd{left:832.963500px;}
.x96{left:837.168000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.226667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000441pt;}
.ls4{letter-spacing:0.000518pt;}
.ls22{letter-spacing:0.000523pt;}
.ls10{letter-spacing:0.000711pt;}
.ls1e{letter-spacing:0.000732pt;}
.ls2a{letter-spacing:0.000751pt;}
.ls14{letter-spacing:0.000921pt;}
.ls23{letter-spacing:0.000980pt;}
.ls13{letter-spacing:0.001391pt;}
.ls2b{letter-spacing:0.001467pt;}
.ls28{letter-spacing:0.001512pt;}
.ls19{letter-spacing:0.001628pt;}
.ls12{letter-spacing:0.001843pt;}
.ls25{letter-spacing:0.001863pt;}
.ls1c{letter-spacing:0.002018pt;}
.ls17{letter-spacing:0.002030pt;}
.ls1b{letter-spacing:0.002054pt;}
.ls29{letter-spacing:0.002078pt;}
.ls1f{letter-spacing:0.002262pt;}
.ls16{letter-spacing:0.002805pt;}
.ls7{letter-spacing:0.003100pt;}
.ls18{letter-spacing:0.003405pt;}
.lse{letter-spacing:0.003635pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls1d{letter-spacing:11.745587pt;}
.ls24{letter-spacing:11.788948pt;}
.ls1a{letter-spacing:11.837997pt;}
.ls15{letter-spacing:11.954133pt;}
.ls11{letter-spacing:11.959467pt;}
.ls27{letter-spacing:12.001962pt;}
.ls26{letter-spacing:12.076173pt;}
.lsc{letter-spacing:13.171629pt;}
.ls3{letter-spacing:13.283733pt;}
.lsd{letter-spacing:13.442868pt;}
.lsf{letter-spacing:14.558679pt;}
.ls20{letter-spacing:15.699702pt;}
.lsb{letter-spacing:16.737168pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.ws10{word-spacing:-13.283467pt;}
.ws64{word-spacing:-11.955200pt;}
.ws15{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws5e{word-spacing:-2.497292pt;}
.ws42{word-spacing:-2.019087pt;}
.ws2c{word-spacing:-1.965953pt;}
.ws54{word-spacing:-1.806551pt;}
.ws4c{word-spacing:-1.753418pt;}
.ws78{word-spacing:-1.700284pt;}
.ws6e{word-spacing:-1.594016pt;}
.ws5a{word-spacing:-1.540882pt;}
.ws6f{word-spacing:-1.434614pt;}
.ws43{word-spacing:-1.115811pt;}
.ws68{word-spacing:-1.009543pt;}
.ws7b{word-spacing:-0.903276pt;}
.ws58{word-spacing:-0.850142pt;}
.ws34{word-spacing:-0.797008pt;}
.ws62{word-spacing:-0.743874pt;}
.ws59{word-spacing:-0.690740pt;}
.ws57{word-spacing:-0.637606pt;}
.ws2d{word-spacing:-0.531339pt;}
.ws40{word-spacing:-0.478205pt;}
.ws85{word-spacing:-0.430387pt;}
.ws84{word-spacing:-0.382566pt;}
.ws74{word-spacing:-0.371937pt;}
.ws52{word-spacing:-0.318803pt;}
.ws99{word-spacing:-0.286925pt;}
.ws30{word-spacing:-0.265669pt;}
.ws92{word-spacing:-0.239104pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws1b{word-spacing:-0.143462pt;}
.ws3c{word-spacing:-0.106268pt;}
.ws91{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.ws63{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wsa4{word-spacing:-0.003618pt;}
.wse{word-spacing:-0.003347pt;}
.wsc{word-spacing:-0.000807pt;}
.ws13{word-spacing:-0.000390pt;}
.ws12{word-spacing:-0.000007pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.000311pt;}
.ws17{word-spacing:0.047821pt;}
.ws38{word-spacing:0.053134pt;}
.ws18{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws66{word-spacing:0.143462pt;}
.ws27{word-spacing:0.159402pt;}
.ws7e{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws19{word-spacing:0.239104pt;}
.ws3d{word-spacing:0.265669pt;}
.ws7f{word-spacing:0.286925pt;}
.ws26{word-spacing:0.318803pt;}
.ws7d{word-spacing:0.334746pt;}
.ws24{word-spacing:0.425071pt;}
.wsab{word-spacing:0.430387pt;}
.ws5d{word-spacing:0.531339pt;}
.ws49{word-spacing:0.584473pt;}
.ws31{word-spacing:0.637606pt;}
.ws73{word-spacing:0.690740pt;}
.ws79{word-spacing:0.797008pt;}
.ws36{word-spacing:0.903276pt;}
.ws3e{word-spacing:0.956410pt;}
.ws82{word-spacing:0.956416pt;}
.ws6d{word-spacing:1.009543pt;}
.ws32{word-spacing:1.062677pt;}
.ws45{word-spacing:1.115811pt;}
.ws37{word-spacing:1.168945pt;}
.ws81{word-spacing:1.195520pt;}
.ws6b{word-spacing:1.222079pt;}
.ws1a{word-spacing:1.291162pt;}
.ws35{word-spacing:1.487748pt;}
.ws41{word-spacing:1.540882pt;}
.ws95{word-spacing:1.578086pt;}
.ws25{word-spacing:1.700284pt;}
.ws1e{word-spacing:1.721549pt;}
.wsa7{word-spacing:1.769370pt;}
.ws2f{word-spacing:1.806551pt;}
.ws33{word-spacing:1.859685pt;}
.ws4f{word-spacing:1.965953pt;}
.ws4b{word-spacing:2.019087pt;}
.ws94{word-spacing:2.056294pt;}
.ws70{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws1c{word-spacing:2.295398pt;}
.ws3f{word-spacing:2.444158pt;}
.ws5b{word-spacing:2.550426pt;}
.ws16{word-spacing:2.550432pt;}
.ws44{word-spacing:2.603559pt;}
.ws7a{word-spacing:2.709827pt;}
.ws6a{word-spacing:2.762961pt;}
.ws22{word-spacing:2.861926pt;}
.ws88{word-spacing:2.864512pt;}
.wsae{word-spacing:2.864521pt;}
.ws80{word-spacing:2.866509pt;}
.ws97{word-spacing:2.869248pt;}
.ws3b{word-spacing:2.922363pt;}
.ws1d{word-spacing:2.964890pt;}
.ws75{word-spacing:2.975497pt;}
.wsa9{word-spacing:3.012710pt;}
.ws4e{word-spacing:3.028630pt;}
.ws20{word-spacing:3.108352pt;}
.ws69{word-spacing:3.134898pt;}
.ws23{word-spacing:3.188032pt;}
.ws8d{word-spacing:3.299635pt;}
.ws67{word-spacing:3.347434pt;}
.ws83{word-spacing:3.347456pt;}
.ws5f{word-spacing:3.400567pt;}
.ws60{word-spacing:3.453701pt;}
.ws48{word-spacing:3.506835pt;}
.ws21{word-spacing:3.682202pt;}
.wsa0{word-spacing:3.730022pt;}
.wsb0{word-spacing:3.777843pt;}
.ws76{word-spacing:3.931906pt;}
.ws9d{word-spacing:4.016947pt;}
.wsaf{word-spacing:4.112589pt;}
.ws39{word-spacing:4.144442pt;}
.ws8c{word-spacing:4.208230pt;}
.wsa{word-spacing:4.240070pt;}
.ws29{word-spacing:4.250709pt;}
.wsb{word-spacing:4.314458pt;}
.ws7c{word-spacing:4.410111pt;}
.ws50{word-spacing:4.463245pt;}
.ws56{word-spacing:4.622646pt;}
.wsa8{word-spacing:4.638618pt;}
.wsa2{word-spacing:4.686438pt;}
.ws4a{word-spacing:4.728914pt;}
.ws71{word-spacing:4.782048pt;}
.ws5c{word-spacing:4.941450pt;}
.ws55{word-spacing:5.153985pt;}
.ws46{word-spacing:5.525922pt;}
.ws65{word-spacing:5.632190pt;}
.ws87{word-spacing:5.642854pt;}
.ws6c{word-spacing:5.738458pt;}
.ws47{word-spacing:5.950993pt;}
.ws86{word-spacing:5.977600pt;}
.ws72{word-spacing:6.376064pt;}
.ws61{word-spacing:6.482332pt;}
.ws8{word-spacing:6.918010pt;}
.ws53{word-spacing:7.013670pt;}
.wsa5{word-spacing:8.272998pt;}
.ws8a{word-spacing:8.416461pt;}
.ws2{word-spacing:9.261604pt;}
.ws2e{word-spacing:10.579129pt;}
.ws6{word-spacing:10.823338pt;}
.wsad{word-spacing:11.620454pt;}
.ws93{word-spacing:11.668275pt;}
.ws90{word-spacing:11.716096pt;}
.ws9e{word-spacing:11.899844pt;}
.ws98{word-spacing:11.904094pt;}
.ws8e{word-spacing:11.904247pt;}
.ws89{word-spacing:11.905374pt;}
.ws8b{word-spacing:11.907379pt;}
.wsac{word-spacing:12.337766pt;}
.ws4d{word-spacing:13.230333pt;}
.ws77{word-spacing:14.133609pt;}
.ws7{word-spacing:14.319536pt;}
.ws9a{word-spacing:14.489702pt;}
.ws9b{word-spacing:14.728806pt;}
.ws9c{word-spacing:14.769425pt;}
.ws8f{word-spacing:14.770202pt;}
.wsaa{word-spacing:14.771328pt;}
.wsa6{word-spacing:14.772574pt;}
.ws96{word-spacing:14.776627pt;}
.ws9f{word-spacing:14.824448pt;}
.wsa1{word-spacing:15.350477pt;}
.ws51{word-spacing:16.418365pt;}
.wsa3{word-spacing:16.593818pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
._68{margin-left:-6.888421pt;}
._8{margin-left:-5.901770pt;}
._9{margin-left:-4.675792pt;}
._0{margin-left:-3.421811pt;}
._6a{margin-left:-2.375450pt;}
._1{margin-left:-1.338970pt;}
._69{width:0.899354pt;}
._6{width:2.663174pt;}
._1a{width:3.942529pt;}
._2{width:11.530016pt;}
._6c{width:12.449296pt;}
._f{width:13.873261pt;}
._a{width:15.488710pt;}
._11{width:16.687945pt;}
._c{width:17.598054pt;}
._b{width:19.271770pt;}
._e{width:20.419482pt;}
._d{width:21.328077pt;}
._3{width:22.393747pt;}
._18{width:23.552836pt;}
._10{width:24.675533pt;}
._12{width:25.667446pt;}
._4{width:27.188522pt;}
._15{width:28.389309pt;}
._5{width:29.648896pt;}
._67{width:30.764509pt;}
._16{width:33.474336pt;}
._17{width:34.696415pt;}
._35{width:36.502966pt;}
._19{width:38.532676pt;}
._7{width:48.367119pt;}
._6d{width:54.993920pt;}
._63{width:64.558080pt;}
._6b{width:78.904320pt;}
._57{width:115.439411pt;}
._3a{width:127.394611pt;}
._38{width:134.615552pt;}
._3d{width:139.349811pt;}
._3c{width:146.570752pt;}
._4b{width:148.627046pt;}
._4a{width:150.619638pt;}
._4e{width:157.282611pt;}
._39{width:158.525952pt;}
._54{width:160.582246pt;}
._51{width:163.031754pt;}
._48{width:170.709610pt;}
._5f{width:175.215411pt;}
._42{width:182.436352pt;}
._4d{width:188.413952pt;}
._27{width:193.674240pt;}
._40{width:203.094938pt;}
._43{width:215.050138pt;}
._47{width:227.005338pt;}
._3f{width:234.226278pt;}
._58{width:242.834022pt;}
._46{width:246.181478pt;}
._5b{width:254.550118pt;}
._26{width:262.966579pt;}
._66{width:272.387277pt;}
._1e{width:273.487155pt;}
._5a{width:286.366832pt;}
._45{width:297.971405pt;}
._50{width:306.961715pt;}
._41{width:314.756506pt;}
._61{width:342.205645pt;}
._60{width:362.099098pt;}
._49{width:378.552764pt;}
._3e{width:385.435648pt;}
._53{width:389.261312pt;}
._2d{width:404.037939pt;}
._65{width:408.676557pt;}
._5e{width:415.897498pt;}
._4c{width:421.922918pt;}
._24{width:425.461658pt;}
._22{width:429.143859pt;}
._23{width:430.913229pt;}
._33{width:434.117222pt;}
._28{width:441.433805pt;}
._1d{width:442.342400pt;}
._52{width:444.972544pt;}
._4f{width:446.396522pt;}
._2c{width:453.867213pt;}
._20{width:456.545178pt;}
._34{width:458.027622pt;}
._2a{width:461.805466pt;}
._25{width:466.922291pt;}
._1c{width:469.887181pt;}
._44{width:472.306850pt;}
._2e{width:476.629914pt;}
._32{width:481.316352pt;}
._37{width:487.187664pt;}
._29{width:489.589350pt;}
._31{width:493.462835pt;}
._21{width:494.371430pt;}
._30{width:499.849536pt;}
._3b{width:501.257626pt;}
._2f{width:511.108710pt;}
._2b{width:542.861722pt;}
._1f{width:570.932531pt;}
._5d{width:609.571738pt;}
._5c{width:616.171008pt;}
._64{width:621.738112pt;}
._13{width:630.752176pt;}
._62{width:680.223445pt;}
._56{width:696.068918pt;}
._59{width:724.532941pt;}
._36{width:805.008947pt;}
._55{width:881.803614pt;}
._1b{width:1047.514624pt;}
._6e{width:2199.727937pt;}
._14{width:2220.981270pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:120.948480pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:11.489518pt;}
.y47{bottom:28.346667pt;}
.y15d{bottom:81.480000pt;}
.y18{bottom:93.018667pt;}
.y174{bottom:94.884000pt;}
.y7e{bottom:95.681333pt;}
.y15c{bottom:98.217333pt;}
.y46{bottom:108.833333pt;}
.y17{bottom:108.920000pt;}
.y1a5{bottom:110.186667pt;}
.y173{bottom:111.621333pt;}
.y7d{bottom:112.418667pt;}
.y15b{bottom:114.954667pt;}
.y16{bottom:124.820000pt;}
.y1a4{bottom:125.529333pt;}
.y45{bottom:125.570667pt;}
.y172{bottom:128.358667pt;}
.y7c{bottom:129.156000pt;}
.y137{bottom:129.853333pt;}
.y15a{bottom:131.692000pt;}
.yd4{bottom:135.133333pt;}
.y15{bottom:140.720000pt;}
.y1a3{bottom:140.872000pt;}
.y44{bottom:142.308000pt;}
.y171{bottom:145.096000pt;}
.y7b{bottom:145.893333pt;}
.y159{bottom:148.429333pt;}
.y136{bottom:149.260000pt;}
.yd3{bottom:151.870667pt;}
.y1a2{bottom:156.214667pt;}
.y14{bottom:156.621333pt;}
.y43{bottom:159.045333pt;}
.y170{bottom:161.833333pt;}
.y7a{bottom:162.630667pt;}
.y135{bottom:163.872000pt;}
.y158{bottom:165.166667pt;}
.yd2{bottom:168.608000pt;}
.y1a1{bottom:171.557333pt;}
.y101{bottom:171.629333pt;}
.y13{bottom:172.521333pt;}
.y42{bottom:175.782667pt;}
.y134{bottom:178.484000pt;}
.y16f{bottom:178.570667pt;}
.y79{bottom:179.368000pt;}
.yd1{bottom:185.345333pt;}
.y157{bottom:185.889333pt;}
.y1a0{bottom:186.900000pt;}
.ya6{bottom:188.134667pt;}
.y100{bottom:188.366667pt;}
.y12{bottom:188.421333pt;}
.y41{bottom:192.520000pt;}
.y133{bottom:193.096000pt;}
.y16e{bottom:195.308000pt;}
.y78{bottom:196.105333pt;}
.yd0{bottom:202.082667pt;}
.y19f{bottom:202.242667pt;}
.y11{bottom:204.322667pt;}
.ya5{bottom:204.872000pt;}
.yff{bottom:205.104000pt;}
.y132{bottom:207.708000pt;}
.y40{bottom:209.257333pt;}
.y16d{bottom:212.045333pt;}
.y77{bottom:212.841333pt;}
.y12f{bottom:215.013333pt;}
.y156{bottom:215.777333pt;}
.y19e{bottom:217.585333pt;}
.ycf{bottom:218.820000pt;}
.ya4{bottom:221.609333pt;}
.yfe{bottom:221.841333pt;}
.y131{bottom:222.320000pt;}
.y3f{bottom:225.994667pt;}
.y16c{bottom:228.782667pt;}
.y76{bottom:229.578667pt;}
.y12e{bottom:229.625333pt;}
.y155{bottom:232.514667pt;}
.y19d{bottom:232.926667pt;}
.y130{bottom:236.930667pt;}
.ya3{bottom:238.346667pt;}
.yfd{bottom:238.578667pt;}
.yce{bottom:239.542667pt;}
.y3e{bottom:242.732000pt;}
.y16b{bottom:245.520000pt;}
.y75{bottom:246.316000pt;}
.y19c{bottom:248.269333pt;}
.y154{bottom:249.252000pt;}
.y12d{bottom:251.542667pt;}
.ya2{bottom:255.084000pt;}
.yfc{bottom:255.314667pt;}
.y3d{bottom:259.469333pt;}
.y16a{bottom:262.257333pt;}
.y74{bottom:263.053333pt;}
.y19b{bottom:263.612000pt;}
.y10{bottom:265.668000pt;}
.y153{bottom:265.989333pt;}
.ycd{bottom:269.430667pt;}
.ya1{bottom:271.821333pt;}
.yfb{bottom:272.052000pt;}
.y12c{bottom:272.557333pt;}
.y3c{bottom:276.206667pt;}
.y19a{bottom:278.954667pt;}
.y73{bottom:279.790667pt;}
.yf{bottom:281.568000pt;}
.y169{bottom:282.978667pt;}
.ycc{bottom:286.168000pt;}
.y12b{bottom:287.169333pt;}
.y1ce{bottom:288.292000pt;}
.ya0{bottom:288.558667pt;}
.yfa{bottom:288.789333pt;}
.y3b{bottom:292.944000pt;}
.y199{bottom:294.297333pt;}
.y152{bottom:294.882667pt;}
.y72{bottom:296.528000pt;}
.ye{bottom:297.469333pt;}
.y12a{bottom:301.781333pt;}
.ycb{bottom:302.905333pt;}
.y1cd{bottom:303.634667pt;}
.yf9{bottom:305.526667pt;}
.y127{bottom:309.086667pt;}
.y9f{bottom:309.280000pt;}
.y198{bottom:309.640000pt;}
.y3a{bottom:309.681333pt;}
.y151{bottom:311.632000pt;}
.y168{bottom:312.866667pt;}
.y71{bottom:313.265333pt;}
.yd{bottom:313.369333pt;}
.y129{bottom:316.392000pt;}
.y1cc{bottom:318.977333pt;}
.yca{bottom:319.642667pt;}
.yf8{bottom:322.264000pt;}
.y126{bottom:323.698667pt;}
.y197{bottom:324.982667pt;}
.y9e{bottom:326.017333pt;}
.y150{bottom:326.244000pt;}
.y39{bottom:326.418667pt;}
.y167{bottom:329.604000pt;}
.y70{bottom:330.002667pt;}
.y128{bottom:331.004000pt;}
.yc9{bottom:336.378667pt;}
.yc{bottom:338.568000pt;}
.yf7{bottom:339.001333pt;}
.y196{bottom:340.325333pt;}
.y14f{bottom:340.856000pt;}
.y9d{bottom:342.754667pt;}
.y38{bottom:343.156000pt;}
.y166{bottom:346.341333pt;}
.y6f{bottom:346.740000pt;}
.y125{bottom:352.018667pt;}
.yc8{bottom:353.116000pt;}
.y1cb{bottom:353.714667pt;}
.yb{bottom:354.468000pt;}
.y195{bottom:355.666667pt;}
.y9c{bottom:359.492000pt;}
.y14e{bottom:361.870667pt;}
.y165{bottom:363.078667pt;}
.y6e{bottom:363.477333pt;}
.y37{bottom:363.878667pt;}
.y124{bottom:366.630667pt;}
.y1ca{bottom:369.056000pt;}
.yc7{bottom:369.853333pt;}
.y194{bottom:371.009333pt;}
.yf6{bottom:375.426667pt;}
.y9b{bottom:376.229333pt;}
.y14d{bottom:376.482667pt;}
.ya{bottom:378.338667pt;}
.y164{bottom:379.816000pt;}
.y6d{bottom:380.214667pt;}
.y1c9{bottom:384.398667pt;}
.y193{bottom:386.352000pt;}
.y123{bottom:387.644000pt;}
.yf5{bottom:390.038667pt;}
.yc6{bottom:390.576000pt;}
.y9a{bottom:392.966667pt;}
.y9{bottom:394.240000pt;}
.y163{bottom:396.553333pt;}
.y6c{bottom:396.952000pt;}
.y14c{bottom:397.496000pt;}
.y1c8{bottom:399.741333pt;}
.y192{bottom:401.694667pt;}
.yf4{bottom:404.650667pt;}
.y122{bottom:408.658667pt;}
.y99{bottom:409.704000pt;}
.y8{bottom:410.140000pt;}
.y162{bottom:413.290667pt;}
.y6b{bottom:413.689333pt;}
.y1c7{bottom:415.084000pt;}
.y191{bottom:417.037333pt;}
.y14b{bottom:418.510667pt;}
.yf3{bottom:419.262667pt;}
.yc5{bottom:420.464000pt;}
.y7{bottom:426.040000pt;}
.y98{bottom:426.441333pt;}
.y161{bottom:430.028000pt;}
.y6a{bottom:430.426667pt;}
.y36{bottom:430.678667pt;}
.y190{bottom:432.380000pt;}
.yc4{bottom:437.201333pt;}
.y121{bottom:439.421333pt;}
.yf2{bottom:440.277333pt;}
.y6{bottom:441.941333pt;}
.y97{bottom:443.178667pt;}
.y1c6{bottom:445.769333pt;}
.y14a{bottom:446.616000pt;}
.y160{bottom:446.765333pt;}
.y69{bottom:447.164000pt;}
.y18f{bottom:447.722667pt;}
.yc3{bottom:453.938667pt;}
.yf1{bottom:454.889333pt;}
.y5{bottom:457.841333pt;}
.y96{bottom:459.916000pt;}
.y1c5{bottom:461.112000pt;}
.y18e{bottom:463.065333pt;}
.y15f{bottom:463.502667pt;}
.y68{bottom:463.901333pt;}
.y35{bottom:463.913333pt;}
.yf0{bottom:469.501333pt;}
.yc2{bottom:470.676000pt;}
.y120{bottom:472.402667pt;}
.y4{bottom:473.741333pt;}
.y1c4{bottom:476.454667pt;}
.y95{bottom:476.653333pt;}
.y149{bottom:478.130667pt;}
.y18d{bottom:478.408000pt;}
.y67{bottom:480.638667pt;}
.y34{bottom:481.208000pt;}
.yef{bottom:484.112000pt;}
.y15e{bottom:484.225333pt;}
.yc1{bottom:487.413333pt;}
.y11f{bottom:489.140000pt;}
.y3{bottom:489.642667pt;}
.y1c3{bottom:491.797333pt;}
.y94{bottom:493.390667pt;}
.y18c{bottom:493.749333pt;}
.y148{bottom:494.868000pt;}
.y66{bottom:497.376000pt;}
.y33{bottom:498.504000pt;}
.yee{bottom:498.724000pt;}
.yc0{bottom:504.150667pt;}
.y2{bottom:505.542667pt;}
.y1c2{bottom:507.138667pt;}
.y18b{bottom:509.092000pt;}
.y93{bottom:510.128000pt;}
.y147{bottom:511.605333pt;}
.y65{bottom:514.113333pt;}
.y32{bottom:515.798667pt;}
.y11e{bottom:519.501333pt;}
.yed{bottom:519.738667pt;}
.ybf{bottom:520.888000pt;}
.y1{bottom:521.442667pt;}
.y1c1{bottom:522.481333pt;}
.y18a{bottom:524.434667pt;}
.y92{bottom:526.865333pt;}
.y146{bottom:528.342667pt;}
.y64{bottom:530.850667pt;}
.y31{bottom:533.094667pt;}
.yec{bottom:534.350667pt;}
.ybe{bottom:537.625333pt;}
.y1c0{bottom:537.824000pt;}
.y11d{bottom:538.908000pt;}
.y189{bottom:539.777333pt;}
.y91{bottom:543.602667pt;}
.y145{bottom:545.080000pt;}
.y63{bottom:547.588000pt;}
.yeb{bottom:548.962667pt;}
.y30{bottom:550.389333pt;}
.y1bf{bottom:553.166667pt;}
.y11c{bottom:553.518667pt;}
.ybd{bottom:554.362667pt;}
.y188{bottom:555.120000pt;}
.y90{bottom:560.340000pt;}
.yea{bottom:563.574667pt;}
.y62{bottom:564.325333pt;}
.y2f{bottom:567.684000pt;}
.y11b{bottom:568.130667pt;}
.y1be{bottom:568.509333pt;}
.ybc{bottom:571.100000pt;}
.y144{bottom:571.205333pt;}
.y187{bottom:574.448000pt;}
.y8f{bottom:577.077333pt;}
.y61{bottom:581.062667pt;}
.y11a{bottom:582.742667pt;}
.y1bd{bottom:583.852000pt;}
.ye9{bottom:584.588000pt;}
.y2e{bottom:584.980000pt;}
.y143{bottom:587.954667pt;}
.ybb{bottom:591.822667pt;}
.y8e{bottom:593.814667pt;}
.y119{bottom:597.354667pt;}
.y60{bottom:597.800000pt;}
.y1bc{bottom:599.194667pt;}
.ye8{bottom:599.200000pt;}
.y2d{bottom:602.274667pt;}
.y142{bottom:602.566667pt;}
.y186{bottom:604.336000pt;}
.y8d{bottom:610.552000pt;}
.y118{bottom:611.966667pt;}
.ye7{bottom:613.812000pt;}
.y5f{bottom:614.537333pt;}
.y140{bottom:617.178667pt;}
.y2c{bottom:619.570667pt;}
.yba{bottom:621.710667pt;}
.y117{bottom:626.578667pt;}
.y8c{bottom:627.289333pt;}
.y185{bottom:627.926667pt;}
.ye6{bottom:628.424000pt;}
.y1bb{bottom:629.878667pt;}
.y5e{bottom:631.274667pt;}
.y13f{bottom:631.790667pt;}
.y2b{bottom:636.865333pt;}
.yb9{bottom:638.446667pt;}
.y116{bottom:641.190667pt;}
.y8b{bottom:644.026667pt;}
.y1ba{bottom:645.221333pt;}
.y141{bottom:646.402667pt;}
.y5d{bottom:648.012000pt;}
.ye5{bottom:649.437333pt;}
.y184{bottom:651.518667pt;}
.y2a{bottom:654.160000pt;}
.yb8{bottom:655.184000pt;}
.y115{bottom:655.802667pt;}
.y1b9{bottom:660.564000pt;}
.y8a{bottom:660.764000pt;}
.ye4{bottom:664.049333pt;}
.y5c{bottom:664.749333pt;}
.y183{bottom:667.140000pt;}
.y13e{bottom:667.416000pt;}
.yb7{bottom:671.921333pt;}
.y1b8{bottom:675.906667pt;}
.y114{bottom:676.816000pt;}
.y89{bottom:677.501333pt;}
.y5b{bottom:681.485333pt;}
.y13d{bottom:682.028000pt;}
.ye3{bottom:685.064000pt;}
.y29{bottom:688.458667pt;}
.yb6{bottom:688.658667pt;}
.y182{bottom:690.732000pt;}
.y1b7{bottom:691.249333pt;}
.y113{bottom:691.428000pt;}
.y88{bottom:694.238667pt;}
.y13c{bottom:696.640000pt;}
.y5a{bottom:698.222667pt;}
.ye2{bottom:699.674667pt;}
.y28{bottom:702.805333pt;}
.yb5{bottom:705.396000pt;}
.y112{bottom:706.040000pt;}
.y1b6{bottom:706.592000pt;}
.y87{bottom:710.976000pt;}
.ye1{bottom:714.286667pt;}
.y181{bottom:714.322667pt;}
.y59{bottom:714.960000pt;}
.y13b{bottom:717.653333pt;}
.y111{bottom:720.652000pt;}
.y27{bottom:721.008000pt;}
.y1b5{bottom:721.934667pt;}
.yb4{bottom:722.133333pt;}
.y86{bottom:727.713333pt;}
.ye0{bottom:728.898667pt;}
.y180{bottom:729.944000pt;}
.y58{bottom:731.697333pt;}
.y110{bottom:735.264000pt;}
.y26{bottom:735.354667pt;}
.y1b4{bottom:737.277333pt;}
.y13a{bottom:738.668000pt;}
.yb3{bottom:738.870667pt;}
.y85{bottom:744.450667pt;}
.y17f{bottom:745.566667pt;}
.y25{bottom:745.844000pt;}
.y57{bottom:748.434667pt;}
.y10f{bottom:749.876000pt;}
.ydf{bottom:749.913333pt;}
.y1b3{bottom:752.620000pt;}
.yb2{bottom:759.593333pt;}
.y84{bottom:761.186667pt;}
.y17e{bottom:761.188000pt;}
.y24{bottom:764.048000pt;}
.y10e{bottom:764.488000pt;}
.y56{bottom:765.172000pt;}
.y139{bottom:766.774667pt;}
.y1b2{bottom:767.961333pt;}
.y23{bottom:774.536000pt;}
.y17d{bottom:776.809333pt;}
.y83{bottom:777.924000pt;}
.yde{bottom:778.018667pt;}
.y10d{bottom:779.100000pt;}
.y55{bottom:781.909333pt;}
.y1b1{bottom:783.304000pt;}
.y138{bottom:783.870667pt;}
.yb1{bottom:789.481333pt;}
.y17c{bottom:792.430667pt;}
.y22{bottom:792.740000pt;}
.y10c{bottom:793.712000pt;}
.y82{bottom:794.661333pt;}
.y54{bottom:798.646667pt;}
.yb0{bottom:806.218667pt;}
.y21{bottom:807.086667pt;}
.y10b{bottom:808.322667pt;}
.ydd{bottom:811.001333pt;}
.y81{bottom:811.398667pt;}
.y1b0{bottom:813.989333pt;}
.y53{bottom:815.384000pt;}
.y17b{bottom:816.021333pt;}
.yaf{bottom:822.956000pt;}
.ydc{bottom:827.738667pt;}
.y80{bottom:828.136000pt;}
.y1af{bottom:829.332000pt;}
.y10a{bottom:829.337333pt;}
.y52{bottom:832.121333pt;}
.y17a{bottom:839.613333pt;}
.yae{bottom:839.693333pt;}
.y109{bottom:843.949333pt;}
.y1ae{bottom:844.674667pt;}
.y7f{bottom:844.873333pt;}
.y20{bottom:846.798667pt;}
.ydb{bottom:848.460000pt;}
.y51{bottom:848.858667pt;}
.y179{bottom:855.234667pt;}
.yad{bottom:856.430667pt;}
.y1ad{bottom:860.017333pt;}
.y1f{bottom:863.536000pt;}
.y108{bottom:864.962667pt;}
.y50{bottom:865.596000pt;}
.y178{bottom:870.856000pt;}
.yac{bottom:873.168000pt;}
.y1ac{bottom:875.360000pt;}
.yda{bottom:878.348000pt;}
.y107{bottom:879.574667pt;}
.y4f{bottom:882.333333pt;}
.y177{bottom:886.477333pt;}
.yab{bottom:889.905333pt;}
.y1ab{bottom:890.702667pt;}
.y106{bottom:894.186667pt;}
.yd9{bottom:895.085333pt;}
.y1e{bottom:896.213333pt;}
.y4e{bottom:899.070667pt;}
.y176{bottom:902.100000pt;}
.y1aa{bottom:906.044000pt;}
.yaa{bottom:906.642667pt;}
.yd8{bottom:911.822667pt;}
.y105{bottom:915.201333pt;}
.y4d{bottom:915.808000pt;}
.y175{bottom:917.721333pt;}
.y1d{bottom:921.320000pt;}
.y1a9{bottom:921.386667pt;}
.ya9{bottom:927.364000pt;}
.yd7{bottom:928.560000pt;}
.y4c{bottom:932.545333pt;}
.y104{bottom:936.214667pt;}
.y1a8{bottom:936.729333pt;}
.ya8{bottom:944.101333pt;}
.yd6{bottom:945.297333pt;}
.y1c{bottom:946.425333pt;}
.y4b{bottom:949.282667pt;}
.y1a7{bottom:952.072000pt;}
.yd5{bottom:962.034667pt;}
.ya7{bottom:964.824000pt;}
.y4a{bottom:966.020000pt;}
.y103{bottom:966.977333pt;}
.y1a6{bottom:967.414667pt;}
.y1b{bottom:971.530667pt;}
.y49{bottom:982.757333pt;}
.y102{bottom:984.073333pt;}
.y19{bottom:1010.186667pt;}
.y48{bottom:1038.548000pt;}
.he{height:24.582445pt;}
.h8{height:28.947524pt;}
.h2{height:33.771789pt;}
.ha{height:34.574438pt;}
.h10{height:37.140573pt;}
.hc{height:38.415786pt;}
.h9{height:38.596538pt;}
.h5{height:38.947124pt;}
.hb{height:43.421286pt;}
.h11{height:43.660390pt;}
.h3{height:45.271688pt;}
.hd{height:48.245551pt;}
.h7{height:49.201961pt;}
.h6{height:69.148877pt;}
.hf{height:72.647953pt;}
.h4{height:82.003069pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.307005pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.606197pt;}
.x5f{left:55.592000pt;}
.x52{left:58.986667pt;}
.x54{left:62.938667pt;}
.x55{left:70.900000pt;}
.x92{left:76.309333pt;}
.x57{left:83.494667pt;}
.x42{left:84.696000pt;}
.x5b{left:103.046667pt;}
.x51{left:105.210667pt;}
.x4c{left:107.668000pt;}
.x56{left:120.614667pt;}
.x5c{left:121.620000pt;}
.x50{left:122.672000pt;}
.x58{left:124.316000pt;}
.x53{left:128.452000pt;}
.x59{left:131.793333pt;}
.x5a{left:137.836000pt;}
.x4b{left:151.022667pt;}
.x9a{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x2b{left:222.748000pt;}
.x31{left:237.584000pt;}
.x78{left:238.998667pt;}
.x4{left:239.924000pt;}
.x68{left:242.301333pt;}
.x60{left:245.534667pt;}
.x61{left:248.882667pt;}
.x7{left:250.204000pt;}
.x79{left:256.925333pt;}
.x35{left:259.605333pt;}
.x77{left:262.616000pt;}
.x3f{left:266.282667pt;}
.x6{left:273.916000pt;}
.x38{left:277.149333pt;}
.x30{left:278.765333pt;}
.x3a{left:282.290667pt;}
.x34{left:288.638667pt;}
.x43{left:292.084000pt;}
.x4d{left:295.072000pt;}
.x2f{left:300.285333pt;}
.x62{left:320.292000pt;}
.x63{left:321.565333pt;}
.x72{left:331.542667pt;}
.x69{left:334.036000pt;}
.x88{left:335.345333pt;}
.x6a{left:337.384000pt;}
.x90{left:347.342667pt;}
.x89{left:348.628000pt;}
.x7f{left:350.086667pt;}
.x7a{left:360.789333pt;}
.x80{left:363.370667pt;}
.x81{left:366.757333pt;}
.x44{left:368.293333pt;}
.x45{left:369.566667pt;}
.x4e{left:372.554667pt;}
.x12{left:374.178667pt;}
.x29{left:375.160000pt;}
.x13{left:380.820000pt;}
.x2a{left:381.801333pt;}
.x14{left:384.208000pt;}
.x91{left:385.578667pt;}
.x15{left:390.849333pt;}
.x16{left:394.236000pt;}
.x83{left:396.417333pt;}
.x17{left:400.878667pt;}
.x6b{left:402.509333pt;}
.x64{left:404.721333pt;}
.x84{left:409.700000pt;}
.x7e{left:411.101333pt;}
.x7b{left:414.264000pt;}
.x33{left:437.113333pt;}
.x5e{left:439.629333pt;}
.x5d{left:443.193333pt;}
.x46{left:452.722667pt;}
.x41{left:454.030667pt;}
.x40{left:462.394667pt;}
.x2c{left:471.861333pt;}
.x6c{left:473.306667pt;}
.x3b{left:475.506667pt;}
.x36{left:477.873333pt;}
.x67{left:481.933333pt;}
.x37{left:483.761333pt;}
.x2d{left:485.145333pt;}
.x3c{left:486.182667pt;}
.x2e{left:488.532000pt;}
.x39{left:490.916000pt;}
.x32{left:492.028000pt;}
.x3e{left:493.289333pt;}
.x3d{left:496.296000pt;}
.x8{left:499.406667pt;}
.x18{left:502.446667pt;}
.x9{left:506.048000pt;}
.x19{left:509.089333pt;}
.x1a{left:512.386667pt;}
.x26{left:513.633333pt;}
.x65{left:517.285333pt;}
.x1b{left:525.670667pt;}
.x27{left:526.916000pt;}
.x48{left:536.488000pt;}
.x47{left:538.514667pt;}
.x73{left:543.734667pt;}
.x7d{left:544.818667pt;}
.x6e{left:547.196000pt;}
.x7c{left:549.176000pt;}
.x1c{left:551.484000pt;}
.x6f{left:552.874667pt;}
.x6d{left:554.901333pt;}
.xe{left:556.506667pt;}
.xf{left:563.148000pt;}
.x1d{left:564.768000pt;}
.x10{left:566.402667pt;}
.x1e{left:568.032000pt;}
.x11{left:573.044000pt;}
.x1f{left:581.316000pt;}
.x24{left:591.065333pt;}
.x97{left:592.758667pt;}
.x25{left:604.349333pt;}
.x4a{left:606.181333pt;}
.x4f{left:609.170667pt;}
.x93{left:614.193333pt;}
.x49{left:616.361333pt;}
.x74{left:620.320000pt;}
.x71{left:623.172000pt;}
.x66{left:625.958667pt;}
.x82{left:632.174667pt;}
.x70{left:633.352000pt;}
.x94{left:638.102667pt;}
.x86{left:639.617333pt;}
.x98{left:649.440000pt;}
.x76{left:650.818667pt;}
.x87{left:652.901333pt;}
.x95{left:654.146667pt;}
.x8a{left:664.009333pt;}
.x99{left:673.349333pt;}
.x8b{left:677.293333pt;}
.x8c{left:680.680000pt;}
.x85{left:687.546667pt;}
.x8d{left:693.964000pt;}
.x75{left:695.812000pt;}
.x8e{left:700.738667pt;}
.x20{left:706.221333pt;}
.x8f{left:714.021333pt;}
.x21{left:719.504000pt;}
.xa{left:723.865333pt;}
.x22{left:726.232000pt;}
.x28{left:727.152000pt;}
.xb{left:730.506667pt;}
.xc{left:733.770667pt;}
.x23{left:739.516000pt;}
.xd{left:740.412000pt;}
.x96{left:744.149333pt;}
}




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