
    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_4e938f49d8e28567927773ad.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0f2546750fa0572a46bd232e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_95d3d85f9a3115863e32d9c4.woff')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_3d22f17c14ed9f4cc5848b56.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_c8942aeaf60260d5978a1583.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_427d55ef55a00dcbe8b5fd81.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.m3{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);}
.m18{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);}
.m25{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);}
.m28{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);}
.m29{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);}
.m20{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);}
.m12{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);}
.m19{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);}
.m10{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);}
.m16{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);}
.m21{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);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1a{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);}
.m14{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);}
.m5{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);}
.m13{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);}
.m1{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);}
.m15{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);}
.m24{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);}
.m1c{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);}
.m11{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);}
.m23{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);}
.m27{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);}
.me{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);}
.m26{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);}
.mf{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);}
.m1f{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);}
.m1b{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);}
.m1e{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);}
.m8{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);}
.ma{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1d{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);}
.mc{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);}
.m7{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);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.906000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000800px;}
.lsb{letter-spacing:0.002375px;}
.ls18{letter-spacing:0.004800px;}
.ls2{letter-spacing:2.989200px;}
.lsd{letter-spacing:11.897339px;}
.ls6{letter-spacing:11.954850px;}
.ls1b{letter-spacing:13.224313px;}
.ls9{letter-spacing:13.274467px;}
.ls12{letter-spacing:13.392191px;}
.ls11{letter-spacing:13.401590px;}
.ls14{letter-spacing:13.411846px;}
.ls19{letter-spacing:13.426871px;}
.ls1c{letter-spacing:13.441966px;}
.ls1e{letter-spacing:13.447990px;}
.lse{letter-spacing:13.448196px;}
.lsa{letter-spacing:13.448400px;}
.lsc{letter-spacing:13.454400px;}
.ls16{letter-spacing:13.463313px;}
.ls20{letter-spacing:13.484135px;}
.ls22{letter-spacing:13.493228px;}
.ls17{letter-spacing:13.493457px;}
.ls25{letter-spacing:13.526158px;}
.ls24{letter-spacing:13.595901px;}
.ls13{letter-spacing:14.026871px;}
.ls21{letter-spacing:15.203341px;}
.ls23{letter-spacing:15.368047px;}
.ls1a{letter-spacing:16.526871px;}
.ls1d{letter-spacing:17.020988px;}
.ls26{letter-spacing:17.126871px;}
.lsf{letter-spacing:17.820988px;}
.ls3{letter-spacing:17.935200px;}
.ls15{letter-spacing:18.126871px;}
.ls1f{letter-spacing:18.632753px;}
.ls8{letter-spacing:24.638453px;}
.ls0{letter-spacing:54.423634px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsbc{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws95{word-spacing:-3.168107px;}
.wsb1{word-spacing:-3.108331px;}
.ws9d{word-spacing:-2.988780px;}
.ws9e{word-spacing:-2.929004px;}
.wsb{word-spacing:-2.869229px;}
.wse2{word-spacing:-2.851315px;}
.ws33{word-spacing:-2.809453px;}
.ws45{word-spacing:-2.749678px;}
.ws4e{word-spacing:-2.689902px;}
.ws62{word-spacing:-2.630126px;}
.ws31{word-spacing:-2.211697px;}
.ws8a{word-spacing:-2.164196px;}
.ws89{word-spacing:-2.151922px;}
.ws46{word-spacing:-2.092146px;}
.ws6c{word-spacing:-2.032370px;}
.wsc6{word-spacing:-1.990541px;}
.ws2c{word-spacing:-1.972595px;}
.ws82{word-spacing:-1.912819px;}
.ws63{word-spacing:-1.853044px;}
.wsac{word-spacing:-1.793268px;}
.ws9a{word-spacing:-1.673717px;}
.wsc8{word-spacing:-1.560154px;}
.ws52{word-spacing:-1.494390px;}
.ws67{word-spacing:-1.434614px;}
.ws2e{word-spacing:-1.315063px;}
.ws3e{word-spacing:-1.255288px;}
.wsa9{word-spacing:-1.195512px;}
.ws8f{word-spacing:-1.075961px;}
.wsb0{word-spacing:-0.956410px;}
.wsa3{word-spacing:-0.896634px;}
.ws6b{word-spacing:-0.836858px;}
.ws4b{word-spacing:-0.777083px;}
.wsb4{word-spacing:-0.753178px;}
.ws9c{word-spacing:-0.717307px;}
.ws5a{word-spacing:-0.657532px;}
.wsad{word-spacing:-0.597756px;}
.ws9b{word-spacing:-0.537980px;}
.ws2b{word-spacing:-0.418429px;}
.ws35{word-spacing:-0.358654px;}
.wsf0{word-spacing:-0.322790px;}
.wsc{word-spacing:-0.298878px;}
.wsb6{word-spacing:-0.268992px;}
.ws12{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.215194px;}
.wsd{word-spacing:-0.179327px;}
.wsb7{word-spacing:-0.161395px;}
.ws13{word-spacing:-0.119551px;}
.ws110{word-spacing:-0.107597px;}
.ws26{word-spacing:-0.059776px;}
.wsbd{word-spacing:-0.053798px;}
.ws21{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wsc2{word-spacing:-0.007277px;}
.ws7{word-spacing:-0.001424px;}
.ws0{word-spacing:0.000000px;}
.wsb9{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.wsc1{word-spacing:0.107597px;}
.ws2a{word-spacing:0.119551px;}
.wsb5{word-spacing:0.161395px;}
.ws10{word-spacing:0.179327px;}
.ws8c{word-spacing:0.190915px;}
.ws8e{word-spacing:0.194066px;}
.wsd0{word-spacing:0.215194px;}
.ws24{word-spacing:0.239102px;}
.wsc4{word-spacing:0.268992px;}
.wsf{word-spacing:0.298878px;}
.wse7{word-spacing:0.322790px;}
.ws41{word-spacing:0.358654px;}
.wsa7{word-spacing:0.418429px;}
.wsdb{word-spacing:0.430387px;}
.ws7f{word-spacing:0.478205px;}
.ws58{word-spacing:0.537980px;}
.wsdd{word-spacing:0.591782px;}
.ws50{word-spacing:0.597756px;}
.ws40{word-spacing:0.657532px;}
.ws14{word-spacing:0.717307px;}
.ws86{word-spacing:0.777083px;}
.ws5e{word-spacing:0.836858px;}
.ws123{word-spacing:0.860774px;}
.ws36{word-spacing:0.896634px;}
.ws56{word-spacing:0.956410px;}
.ws1a{word-spacing:1.016185px;}
.ws30{word-spacing:1.075961px;}
.wsea{word-spacing:1.129766px;}
.ws59{word-spacing:1.135736px;}
.ws22{word-spacing:1.195512px;}
.wsa2{word-spacing:1.255288px;}
.ws28{word-spacing:1.315063px;}
.ws11b{word-spacing:1.344960px;}
.ws3f{word-spacing:1.374839px;}
.ws104{word-spacing:1.398758px;}
.ws42{word-spacing:1.434614px;}
.ws11f{word-spacing:1.452557px;}
.ws9{word-spacing:1.494390px;}
.wsa5{word-spacing:1.554166px;}
.ws65{word-spacing:1.613941px;}
.ws3b{word-spacing:1.673717px;}
.ws102{word-spacing:1.775347px;}
.ws23{word-spacing:1.793268px;}
.ws60{word-spacing:1.853044px;}
.ws79{word-spacing:1.912819px;}
.wseb{word-spacing:1.936742px;}
.ws78{word-spacing:1.972595px;}
.ws49{word-spacing:2.032370px;}
.ws47{word-spacing:2.092146px;}
.ws75{word-spacing:2.151922px;}
.ws61{word-spacing:2.211697px;}
.ws116{word-spacing:2.259533px;}
.ws32{word-spacing:2.331248px;}
.ws57{word-spacing:2.391024px;}
.wsf7{word-spacing:2.420928px;}
.wsa8{word-spacing:2.450800px;}
.ws5{word-spacing:2.510252px;}
.ws8b{word-spacing:2.510575px;}
.ws91{word-spacing:2.570351px;}
.ws38{word-spacing:2.630126px;}
.wsf3{word-spacing:2.636122px;}
.ws15{word-spacing:2.689902px;}
.ws108{word-spacing:2.797517px;}
.ws80{word-spacing:2.809453px;}
.ws124{word-spacing:2.851315px;}
.ws3d{word-spacing:2.869229px;}
.wsfd{word-spacing:2.905114px;}
.ws34{word-spacing:2.929004px;}
.ws4c{word-spacing:3.048556px;}
.ws97{word-spacing:3.108331px;}
.ws55{word-spacing:3.168107px;}
.ws11e{word-spacing:3.218496px;}
.wsf5{word-spacing:3.220406px;}
.ws11d{word-spacing:3.221002px;}
.ws117{word-spacing:3.222758px;}
.ws25{word-spacing:3.227882px;}
.wsda{word-spacing:3.227904px;}
.ws37{word-spacing:3.287658px;}
.wsb8{word-spacing:3.340516px;}
.wsef{word-spacing:3.389299px;}
.ws7a{word-spacing:3.407209px;}
.wscd{word-spacing:3.443098px;}
.wsa1{word-spacing:3.466985px;}
.ws128{word-spacing:3.496896px;}
.ws66{word-spacing:3.526760px;}
.ws10a{word-spacing:3.550694px;}
.ws5b{word-spacing:3.586536px;}
.ws77{word-spacing:3.646312px;}
.ws126{word-spacing:3.658291px;}
.ws29{word-spacing:3.706087px;}
.wse4{word-spacing:3.712090px;}
.ws44{word-spacing:3.765863px;}
.ws5f{word-spacing:3.825638px;}
.ws10b{word-spacing:3.873485px;}
.ws88{word-spacing:3.885414px;}
.ws90{word-spacing:3.945190px;}
.ws7c{word-spacing:4.004965px;}
.ws4d{word-spacing:4.064741px;}
.ws10c{word-spacing:4.088678px;}
.ws6f{word-spacing:4.124516px;}
.wsb2{word-spacing:4.142477px;}
.ws1c{word-spacing:4.184292px;}
.ws1d{word-spacing:4.244068px;}
.ws1e{word-spacing:4.303843px;}
.ws18{word-spacing:4.303872px;}
.wscf{word-spacing:4.357670px;}
.ws83{word-spacing:4.363619px;}
.wsf9{word-spacing:4.572864px;}
.ws99{word-spacing:4.602721px;}
.ws39{word-spacing:4.662497px;}
.wse6{word-spacing:4.680461px;}
.wsae{word-spacing:4.722272px;}
.ws74{word-spacing:4.782048px;}
.ws3c{word-spacing:4.841824px;}
.ws11{word-spacing:4.961375px;}
.ws1b{word-spacing:5.021150px;}
.wsa6{word-spacing:5.080926px;}
.ws96{word-spacing:5.140702px;}
.ws10e{word-spacing:5.164646px;}
.wsb3{word-spacing:5.218445px;}
.ws87{word-spacing:5.260253px;}
.ws98{word-spacing:5.379804px;}
.wsba{word-spacing:5.433638px;}
.ws4a{word-spacing:5.439580px;}
.wsaa{word-spacing:5.678682px;}
.ws76{word-spacing:5.738458px;}
.ws64{word-spacing:5.858009px;}
.wsa0{word-spacing:5.917784px;}
.ws7e{word-spacing:5.977560px;}
.ws48{word-spacing:6.037336px;}
.ws7d{word-spacing:6.216662px;}
.wsa{word-spacing:6.276438px;}
.ws54{word-spacing:6.694867px;}
.ws93{word-spacing:6.814418px;}
.ws8{word-spacing:6.828571px;}
.ws85{word-spacing:6.874194px;}
.wsec{word-spacing:6.993792px;}
.ws51{word-spacing:7.053521px;}
.wsaf{word-spacing:7.173072px;}
.ws4f{word-spacing:7.352399px;}
.ws6d{word-spacing:7.412174px;}
.wsa4{word-spacing:7.531726px;}
.ws2d{word-spacing:7.591501px;}
.ws53{word-spacing:7.651277px;}
.wsde{word-spacing:7.693171px;}
.ws71{word-spacing:7.702209px;}
.ws73{word-spacing:7.711052px;}
.ws84{word-spacing:7.770828px;}
.ws92{word-spacing:7.890379px;}
.ws81{word-spacing:8.009930px;}
.ws43{word-spacing:8.189257px;}
.ws27{word-spacing:8.308808px;}
.ws3a{word-spacing:8.428360px;}
.ws2f{word-spacing:8.488135px;}
.ws5d{word-spacing:8.607686px;}
.wsff{word-spacing:8.876736px;}
.wsab{word-spacing:9.982525px;}
.wsc7{word-spacing:11.398169px;}
.ws1f{word-spacing:11.910929px;}
.ws2{word-spacing:12.924974px;}
.wsf1{word-spacing:13.073011px;}
.wsd6{word-spacing:13.126810px;}
.wsfb{word-spacing:13.180608px;}
.wsd4{word-spacing:13.234406px;}
.wsd2{word-spacing:13.328897px;}
.wsd9{word-spacing:13.342003px;}
.wscc{word-spacing:13.353277px;}
.ws127{word-spacing:13.385098px;}
.ws107{word-spacing:13.386134px;}
.wsfc{word-spacing:13.387373px;}
.wsd3{word-spacing:13.388534px;}
.wsd7{word-spacing:13.388803px;}
.wsd1{word-spacing:13.388995px;}
.ws119{word-spacing:13.389082px;}
.wsc5{word-spacing:13.389619px;}
.ws115{word-spacing:13.391520px;}
.wse3{word-spacing:13.392394px;}
.ws113{word-spacing:13.392528px;}
.ws121{word-spacing:13.392787px;}
.ws118{word-spacing:13.392816px;}
.wsbb{word-spacing:13.393373px;}
.wsbf{word-spacing:13.393968px;}
.ws100{word-spacing:13.394534px;}
.wsc3{word-spacing:13.395802px;}
.wse9{word-spacing:13.449600px;}
.ws122{word-spacing:13.471568px;}
.wsf2{word-spacing:13.503398px;}
.wse1{word-spacing:13.557197px;}
.wsdf{word-spacing:13.607213px;}
.wse0{word-spacing:13.610995px;}
.wse8{word-spacing:13.718592px;}
.ws7b{word-spacing:14.346144px;}
.ws94{word-spacing:14.577445px;}
.ws68{word-spacing:14.645022px;}
.ws9f{word-spacing:14.704798px;}
.ws69{word-spacing:14.764573px;}
.ws103{word-spacing:14.782899px;}
.ws120{word-spacing:14.848358px;}
.ws6a{word-spacing:14.880253px;}
.ws19{word-spacing:14.884124px;}
.ws5c{word-spacing:14.943900px;}
.ws8d{word-spacing:15.063451px;}
.wsc9{word-spacing:15.547738px;}
.wsf4{word-spacing:16.031923px;}
.ws125{word-spacing:16.284462px;}
.ws105{word-spacing:16.516109px;}
.ws112{word-spacing:16.613030px;}
.ws10f{word-spacing:16.614326px;}
.ws111{word-spacing:16.618253px;}
.wsfe{word-spacing:16.618349px;}
.ws101{word-spacing:16.618685px;}
.ws106{word-spacing:16.620691px;}
.wsd5{word-spacing:16.620758px;}
.wsbe{word-spacing:16.620816px;}
.wsf6{word-spacing:16.621920px;}
.ws114{word-spacing:16.622832px;}
.wsc0{word-spacing:16.623706px;}
.wsee{word-spacing:16.785101px;}
.wsed{word-spacing:16.851656px;}
.wsd8{word-spacing:16.892698px;}
.ws11a{word-spacing:16.946496px;}
.wse5{word-spacing:17.102472px;}
.ws10d{word-spacing:17.481156px;}
.ws17{word-spacing:17.753353px;}
.wsdc{word-spacing:18.345254px;}
.ws6e{word-spacing:19.008641px;}
.ws11c{word-spacing:21.142771px;}
.ws72{word-spacing:22.557767px;}
.ws70{word-spacing:22.595177px;}
.wscb{word-spacing:23.456102px;}
.wsf8{word-spacing:24.316877px;}
.ws109{word-spacing:25.500442px;}
.wsce{word-spacing:27.437184px;}
.ws1{word-spacing:28.455541px;}
.wsca{word-spacing:28.943539px;}
.ws16{word-spacing:39.215945px;}
._28{margin-left:-31.029642px;}
._27{margin-left:-21.736705px;}
._22{margin-left:-20.452000px;}
._4{margin-left:-11.943245px;}
._1d{margin-left:-7.639326px;}
._5{margin-left:-6.635092px;}
._15{margin-left:-5.260253px;}
._1{margin-left:-3.765852px;}
._7{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._6{width:3.000529px;}
._29{width:4.519066px;}
._25{width:11.710207px;}
._0{width:12.971268px;}
._8{width:14.190743px;}
._b{width:16.151369px;}
._d{width:17.825080px;}
._a{width:18.960816px;}
._11{width:20.801909px;}
._c{width:21.830045px;}
._16{width:23.336386px;}
._1a{width:24.782972px;}
._3{width:25.943736px;}
._e{width:27.448951px;}
._14{width:29.301995px;}
._19{width:30.557282px;}
._10{width:31.681068px;}
._1c{width:33.534112px;}
._1f{width:34.849175px;}
._9{width:37.001096px;}
._20{width:38.208559px;}
._1b{width:39.571447px;}
._f{width:41.663593px;}
._18{width:43.110158px;}
._17{width:44.712149px;}
._24{width:48.011475px;}
._26{width:61.868160px;}
._23{width:63.033980px;}
._21{width:88.767360px;}
._12{width:1835.196343px;}
._1e{width:2489.526343px;}
._13{width:2513.436343px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.y42{bottom:99.720000px;}
.y18{bottom:100.260000px;}
.y193{bottom:105.961500px;}
.y13b{bottom:107.410500px;}
.ydf{bottom:111.342000px;}
.y111{bottom:111.924000px;}
.yc6{bottom:114.882000px;}
.ya5{bottom:115.315500px;}
.yba{bottom:116.407500px;}
.y17{bottom:118.147500px;}
.y75{bottom:118.365000px;}
.y41{bottom:120.610500px;}
.y192{bottom:125.112000px;}
.y13a{bottom:128.302500px;}
.y116{bottom:129.826500px;}
.yde{bottom:132.234000px;}
.y110{bottom:132.816000px;}
.y161{bottom:132.898500px;}
.yc5{bottom:135.774000px;}
.y16{bottom:136.035000px;}
.ya4{bottom:136.207500px;}
.yb9{bottom:137.298000px;}
.y74{bottom:139.255500px;}
.y40{bottom:141.502500px;}
.y191{bottom:144.262500px;}
.y139{bottom:149.193000px;}
.y115{bottom:150.718500px;}
.y160{bottom:152.049000px;}
.ydd{bottom:153.126000px;}
.y10f{bottom:153.706500px;}
.y15{bottom:153.924000px;}
.ya3{bottom:157.099500px;}
.yb8{bottom:158.190000px;}
.y73{bottom:160.147500px;}
.yc4{bottom:161.149500px;}
.y3f{bottom:162.394500px;}
.y190{bottom:163.413000px;}
.y138{bottom:170.085000px;}
.y15f{bottom:171.199500px;}
.y114{bottom:171.609000px;}
.y14{bottom:171.811500px;}
.ydc{bottom:174.016500px;}
.y10e{bottom:174.598500px;}
.ya2{bottom:177.990000px;}
.yb7{bottom:179.082000px;}
.y72{bottom:181.039500px;}
.y18f{bottom:182.563500px;}
.y3e{bottom:183.285000px;}
.y13{bottom:189.699000px;}
.y15e{bottom:190.350000px;}
.y137{bottom:190.977000px;}
.y113{bottom:192.501000px;}
.ydb{bottom:194.908500px;}
.y10d{bottom:195.490500px;}
.ya1{bottom:198.882000px;}
.yb6{bottom:199.972500px;}
.y18e{bottom:201.714000px;}
.y71{bottom:201.930000px;}
.y3d{bottom:204.177000px;}
.y12{bottom:207.586500px;}
.y15d{bottom:209.500500px;}
.y136{bottom:211.869000px;}
.yda{bottom:215.800500px;}
.y10c{bottom:216.381000px;}
.ya0{bottom:219.774000px;}
.yb5{bottom:220.864500px;}
.y70{bottom:222.822000px;}
.y3c{bottom:225.069000px;}
.y11{bottom:225.475500px;}
.y15c{bottom:228.651000px;}
.y135{bottom:232.759500px;}
.yd9{bottom:236.691000px;}
.y10b{bottom:237.273000px;}
.y18d{bottom:240.015000px;}
.y9f{bottom:240.664500px;}
.yb4{bottom:241.756500px;}
.y6f{bottom:243.714000px;}
.y3b{bottom:245.961000px;}
.y15b{bottom:247.801500px;}
.y10{bottom:252.330000px;}
.y134{bottom:253.651500px;}
.yd8{bottom:257.583000px;}
.y10a{bottom:258.165000px;}
.y18c{bottom:259.165500px;}
.y9e{bottom:261.556500px;}
.yb3{bottom:262.647000px;}
.y6e{bottom:264.606000px;}
.y15a{bottom:266.953500px;}
.yf{bottom:270.217500px;}
.y3a{bottom:271.335000px;}
.y133{bottom:274.543500px;}
.y18b{bottom:278.316000px;}
.yd7{bottom:278.475000px;}
.y109{bottom:279.055500px;}
.ye0{bottom:280.809000px;}
.y9d{bottom:282.448500px;}
.yb2{bottom:283.539000px;}
.y6d{bottom:285.496500px;}
.y159{bottom:286.104000px;}
.ye{bottom:288.105000px;}
.y132{bottom:295.434000px;}
.y39{bottom:295.767000px;}
.y18a{bottom:297.466500px;}
.yd6{bottom:299.365500px;}
.y108{bottom:299.947500px;}
.y9c{bottom:303.339000px;}
.yb1{bottom:304.431000px;}
.y158{bottom:305.254500px;}
.yd{bottom:305.994000px;}
.y6c{bottom:306.388500px;}
.y131{bottom:316.326000px;}
.y189{bottom:316.617000px;}
.yd5{bottom:320.257500px;}
.y107{bottom:320.839500px;}
.yc{bottom:323.881500px;}
.y9b{bottom:324.231000px;}
.y157{bottom:324.405000px;}
.yb0{bottom:325.323000px;}
.y6b{bottom:327.280500px;}
.y188{bottom:335.767500px;}
.y130{bottom:337.218000px;}
.yd4{bottom:341.149500px;}
.y106{bottom:341.730000px;}
.yb{bottom:341.769000px;}
.y156{bottom:343.555500px;}
.yaf{bottom:346.213500px;}
.y6a{bottom:348.171000px;}
.y9a{bottom:349.606500px;}
.y187{bottom:354.918000px;}
.y12f{bottom:358.108500px;}
.ya{bottom:359.658000px;}
.y105{bottom:362.622000px;}
.y155{bottom:362.706000px;}
.yd3{bottom:366.523500px;}
.yae{bottom:367.105500px;}
.y69{bottom:369.063000px;}
.y186{bottom:374.070000px;}
.y38{bottom:374.979000px;}
.y9{bottom:377.545500px;}
.y12e{bottom:379.000500px;}
.y154{bottom:381.856500px;}
.y104{bottom:383.514000px;}
.y99{bottom:384.948000px;}
.yad{bottom:387.997500px;}
.y68{bottom:389.955000px;}
.yd2{bottom:390.955500px;}
.y185{bottom:393.220500px;}
.y8{bottom:395.433000px;}
.y37{bottom:395.869500px;}
.y12d{bottom:399.892500px;}
.y153{bottom:401.007000px;}
.y103{bottom:404.406000px;}
.y98{bottom:405.840000px;}
.yac{bottom:408.888000px;}
.y67{bottom:410.845500px;}
.y184{bottom:412.371000px;}
.y7{bottom:413.322000px;}
.y152{bottom:420.157500px;}
.y12c{bottom:420.783000px;}
.y102{bottom:425.296500px;}
.y97{bottom:426.730500px;}
.yab{bottom:429.780000px;}
.y183{bottom:431.521500px;}
.y66{bottom:431.737500px;}
.y36{bottom:434.694000px;}
.y6{bottom:437.187000px;}
.y151{bottom:439.308000px;}
.y12b{bottom:441.675000px;}
.y101{bottom:446.188500px;}
.yaa{bottom:450.672000px;}
.y96{bottom:452.106000px;}
.y65{bottom:452.629500px;}
.y5{bottom:455.074500px;}
.y35{bottom:455.586000px;}
.y150{bottom:458.458500px;}
.y12a{bottom:462.567000px;}
.y196{bottom:465.093000px;}
.y100{bottom:467.080500px;}
.y182{bottom:469.822500px;}
.ya9{bottom:471.562500px;}
.y4{bottom:472.963500px;}
.y64{bottom:473.520000px;}
.y34{bottom:476.478000px;}
.y14f{bottom:477.609000px;}
.y129{bottom:483.457500px;}
.y195{bottom:484.243500px;}
.yff{bottom:487.971000px;}
.y181{bottom:488.973000px;}
.y3{bottom:490.851000px;}
.y95{bottom:490.930500px;}
.ya8{bottom:492.454500px;}
.y63{bottom:494.412000px;}
.y14e{bottom:496.759500px;}
.y33{bottom:497.368500px;}
.y194{bottom:503.394000px;}
.y128{bottom:504.349500px;}
.y180{bottom:508.123500px;}
.yfe{bottom:508.863000px;}
.y94{bottom:511.822500px;}
.ya7{bottom:513.346500px;}
.y2{bottom:514.716000px;}
.y7f{bottom:515.304000px;}
.y14d{bottom:515.910000px;}
.y32{bottom:518.260500px;}
.y62{bottom:519.787500px;}
.y127{bottom:525.241500px;}
.y17f{bottom:527.274000px;}
.yfd{bottom:529.755000px;}
.y1{bottom:532.605000px;}
.y93{bottom:532.713000px;}
.ya6{bottom:534.237000px;}
.y14c{bottom:535.060500px;}
.y7e{bottom:536.194500px;}
.y31{bottom:539.152500px;}
.y126{bottom:546.133500px;}
.y17e{bottom:546.424500px;}
.yfc{bottom:550.645500px;}
.y92{bottom:553.605000px;}
.y14b{bottom:554.211000px;}
.y61{bottom:555.129000px;}
.y7d{bottom:557.086500px;}
.y30{bottom:560.043000px;}
.y17d{bottom:565.575000px;}
.y125{bottom:567.024000px;}
.yfb{bottom:571.537500px;}
.y14a{bottom:573.361500px;}
.y91{bottom:574.497000px;}
.y60{bottom:576.021000px;}
.y7c{bottom:577.978500px;}
.y2f{bottom:580.935000px;}
.y17c{bottom:584.725500px;}
.y124{bottom:587.916000px;}
.yfa{bottom:592.429500px;}
.y90{bottom:595.387500px;}
.y5f{bottom:596.913000px;}
.y149{bottom:596.995500px;}
.y7b{bottom:598.870500px;}
.y2e{bottom:601.827000px;}
.y17b{bottom:603.876000px;}
.y123{bottom:608.808000px;}
.yf9{bottom:613.320000px;}
.y112{bottom:615.073500px;}
.y8f{bottom:616.279500px;}
.y5e{bottom:617.803500px;}
.y7a{bottom:619.761000px;}
.y2d{bottom:622.717500px;}
.y17a{bottom:623.026500px;}
.y122{bottom:629.698500px;}
.yf8{bottom:634.212000px;}
.y148{bottom:635.820000px;}
.y8e{bottom:637.171500px;}
.y5d{bottom:638.695500px;}
.y79{bottom:640.653000px;}
.y179{bottom:642.177000px;}
.y2c{bottom:643.609500px;}
.y121{bottom:650.590500px;}
.yf7{bottom:655.104000px;}
.y8d{bottom:658.062000px;}
.y5c{bottom:659.587500px;}
.y178{bottom:661.327500px;}
.y78{bottom:661.545000px;}
.y147{bottom:664.285500px;}
.y2b{bottom:664.501500px;}
.y120{bottom:671.482500px;}
.yf6{bottom:675.996000px;}
.y8c{bottom:678.954000px;}
.y5b{bottom:680.478000px;}
.y77{bottom:682.435500px;}
.y2a{bottom:685.393500px;}
.y11f{bottom:692.373000px;}
.y146{bottom:692.751000px;}
.yf5{bottom:696.886500px;}
.y177{bottom:699.628500px;}
.y8b{bottom:699.846000px;}
.y5a{bottom:701.370000px;}
.yc3{bottom:703.327500px;}
.y29{bottom:706.284000px;}
.y76{bottom:707.811000px;}
.y11e{bottom:713.265000px;}
.yf4{bottom:717.778500px;}
.y176{bottom:718.779000px;}
.y8a{bottom:720.736500px;}
.y145{bottom:721.215000px;}
.y59{bottom:722.262000px;}
.yc2{bottom:724.219500px;}
.y28{bottom:727.176000px;}
.y11d{bottom:734.157000px;}
.y175{bottom:737.929500px;}
.yf3{bottom:738.670500px;}
.y89{bottom:741.628500px;}
.y58{bottom:743.152500px;}
.yc1{bottom:745.110000px;}
.y27{bottom:748.068000px;}
.y144{bottom:749.680500px;}
.y11c{bottom:755.047500px;}
.y174{bottom:757.081500px;}
.yf2{bottom:759.561000px;}
.y88{bottom:762.520500px;}
.y57{bottom:764.044500px;}
.yc0{bottom:766.002000px;}
.y26{bottom:768.958500px;}
.y143{bottom:769.179000px;}
.y173{bottom:776.232000px;}
.y11b{bottom:780.423000px;}
.yf1{bottom:780.453000px;}
.y87{bottom:783.411000px;}
.y56{bottom:784.936500px;}
.ybf{bottom:786.894000px;}
.y142{bottom:788.677500px;}
.y25{bottom:789.850500px;}
.y172{bottom:795.382500px;}
.yf0{bottom:801.345000px;}
.y86{bottom:804.303000px;}
.yd0{bottom:805.056000px;}
.y55{bottom:805.827000px;}
.ybe{bottom:807.784500px;}
.y24{bottom:810.742500px;}
.y171{bottom:814.533000px;}
.y141{bottom:817.143000px;}
.y11a{bottom:819.247500px;}
.yef{bottom:822.235500px;}
.y85{bottom:825.195000px;}
.y54{bottom:826.719000px;}
.ybd{bottom:828.676500px;}
.y170{bottom:833.683500px;}
.y140{bottom:836.641500px;}
.y119{bottom:840.139500px;}
.yee{bottom:843.127500px;}
.y84{bottom:846.087000px;}
.y53{bottom:847.611000px;}
.ybc{bottom:849.568500px;}
.y23{bottom:850.714500px;}
.y16f{bottom:852.834000px;}
.y13f{bottom:856.140000px;}
.y118{bottom:861.030000px;}
.yed{bottom:864.019500px;}
.y22{bottom:866.853000px;}
.y83{bottom:866.977500px;}
.y52{bottom:868.503000px;}
.ycf{bottom:870.460500px;}
.y16e{bottom:871.984500px;}
.ybb{bottom:874.942500px;}
.y13e{bottom:875.640000px;}
.y117{bottom:881.922000px;}
.y21{bottom:882.993000px;}
.yec{bottom:884.910000px;}
.yd1{bottom:886.663500px;}
.y82{bottom:887.869500px;}
.y51{bottom:889.393500px;}
.y16d{bottom:891.135000px;}
.yce{bottom:891.351000px;}
.y13d{bottom:895.138500px;}
.y20{bottom:903.472500px;}
.yeb{bottom:905.802000px;}
.y81{bottom:908.761500px;}
.y50{bottom:910.285500px;}
.ycd{bottom:912.243000px;}
.y13c{bottom:914.637000px;}
.y1f{bottom:915.271500px;}
.yea{bottom:926.694000px;}
.y16c{bottom:929.436000px;}
.y4f{bottom:931.177500px;}
.ycc{bottom:933.135000px;}
.y80{bottom:934.135500px;}
.y1e{bottom:935.751000px;}
.ye9{bottom:947.584500px;}
.y16b{bottom:948.586500px;}
.y4e{bottom:952.068000px;}
.ycb{bottom:954.025500px;}
.y16a{bottom:967.737000px;}
.ye8{bottom:968.476500px;}
.y4d{bottom:972.960000px;}
.yca{bottom:974.917500px;}
.y1d{bottom:980.380500px;}
.y169{bottom:986.887500px;}
.ye7{bottom:989.368500px;}
.y4c{bottom:993.852000px;}
.yc9{bottom:995.809500px;}
.y1c{bottom:1001.271000px;}
.y168{bottom:1006.038000px;}
.ye6{bottom:1010.260500px;}
.y4b{bottom:1014.742500px;}
.yc8{bottom:1016.700000px;}
.y167{bottom:1025.188500px;}
.ye5{bottom:1031.151000px;}
.y4a{bottom:1035.634500px;}
.y1b{bottom:1040.095500px;}
.yc7{bottom:1042.075500px;}
.y166{bottom:1044.339000px;}
.ye4{bottom:1052.043000px;}
.y49{bottom:1056.526500px;}
.y165{bottom:1063.489500px;}
.y1a{bottom:1071.433500px;}
.ye3{bottom:1072.935000px;}
.y48{bottom:1077.417000px;}
.y164{bottom:1082.640000px;}
.ye2{bottom:1093.825500px;}
.y47{bottom:1098.309000px;}
.y163{bottom:1101.790500px;}
.y19{bottom:1102.770000px;}
.ye1{bottom:1114.717500px;}
.y46{bottom:1119.201000px;}
.y162{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y44{bottom:1200.196500px;}
.hd{height:27.655250px;}
.h7{height:32.565965px;}
.h2{height:37.993262px;}
.hc{height:41.250077px;}
.hb{height:41.723369px;}
.h8{height:43.421105px;}
.h3{height:43.815515px;}
.he{height:48.848947px;}
.ha{height:51.646464px;}
.h9{height:54.276245px;}
.h6{height:54.405312px;}
.h5{height:54.411312px;}
.hf{height:61.754947px;}
.h4{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x89{left:85.848000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.x8a{left:287.772000px;}
.x72{left:295.998000px;}
.x1d{left:297.084000px;}
.x50{left:303.589500px;}
.x7b{left:306.897000px;}
.x73{left:310.941000px;}
.x57{left:313.144500px;}
.x81{left:315.085500px;}
.x15{left:319.416000px;}
.x7c{left:321.841500px;}
.x58{left:328.089000px;}
.x4d{left:330.208500px;}
.x16{left:334.360500px;}
.x76{left:339.387000px;}
.x4e{left:345.153000px;}
.x5d{left:346.602000px;}
.x74{left:353.590500px;}
.x5e{left:359.451000px;}
.x1e{left:360.940500px;}
.x75{left:368.533500px;}
.x5f{left:369.630000px;}
.x38{left:370.984500px;}
.x1f{left:375.885000px;}
.x41{left:379.558500px;}
.x39{left:385.929000px;}
.x42{left:389.398500px;}
.x6a{left:394.911000px;}
.x51{left:401.817000px;}
.x8{left:403.699500px;}
.x9{left:411.171000px;}
.x6e{left:427.192500px;}
.x59{left:431.826000px;}
.x36{left:440.323500px;}
.x6f{left:442.135500px;}
.x5a{left:446.769000px;}
.x37{left:455.268000px;}
.x13{left:470.863500px;}
.x77{left:474.480000px;}
.x19{left:483.531000px;}
.x14{left:485.806500px;}
.x2e{left:488.754000px;}
.x78{left:493.086000px;}
.x1a{left:498.475500px;}
.x1b{left:502.287000px;}
.x2f{left:503.697000px;}
.x30{left:507.408000px;}
.x79{left:510.505500px;}
.x1c{left:517.230000px;}
.x31{left:522.351000px;}
.x82{left:524.083500px;}
.x7a{left:525.448500px;}
.x24{left:526.839000px;}
.x62{left:533.926500px;}
.x83{left:539.026500px;}
.x88{left:540.111000px;}
.x25{left:541.782000px;}
.x85{left:542.922000px;}
.x26{left:545.581500px;}
.x63{left:548.871000px;}
.xc{left:551.154000px;}
.x35{left:557.059500px;}
.xd{left:558.625500px;}
.x27{left:560.526000px;}
.x28{left:564.325500px;}
.x60{left:566.844000px;}
.x11{left:576.582000px;}
.x29{left:579.270000px;}
.x3a{left:580.710000px;}
.x2a{left:583.069500px;}
.x43{left:584.241000px;}
.x12{left:591.526500px;}
.x2c{left:594.363000px;}
.x3b{left:595.653000px;}
.x2b{left:598.012500px;}
.x44{left:599.185500px;}
.x61{left:606.321000px;}
.x2d{left:609.306000px;}
.x34{left:613.873500px;}
.x32{left:621.369000px;}
.x7d{left:626.779500px;}
.x33{left:636.313500px;}
.x7e{left:641.722500px;}
.x64{left:644.766000px;}
.x52{left:651.259500px;}
.x65{left:659.710500px;}
.x6{left:668.373000px;}
.x7{left:675.846000px;}
.x66{left:678.654000px;}
.x4b{left:679.714500px;}
.x53{left:681.564000px;}
.x84{left:687.112500px;}
.x4f{left:689.832000px;}
.x67{left:693.597000px;}
.x4c{left:694.659000px;}
.x3f{left:696.135000px;}
.x56{left:701.167500px;}
.x54{left:703.935000px;}
.x70{left:707.617500px;}
.x40{left:711.079500px;}
.x7f{left:712.216500px;}
.x45{left:714.303000px;}
.x3c{left:715.746000px;}
.x55{left:718.879500px;}
.x71{left:722.562000px;}
.x48{left:725.076000px;}
.x80{left:727.159500px;}
.x22{left:729.766500px;}
.x46{left:733.057500px;}
.x3d{left:734.500500px;}
.x49{left:740.019000px;}
.x23{left:744.709500px;}
.x47{left:748.002000px;}
.x3e{left:749.445000px;}
.x86{left:751.087500px;}
.x4a{left:758.773500px;}
.x5b{left:759.883500px;}
.x87{left:766.032000px;}
.x68{left:772.111500px;}
.x5c{left:774.828000px;}
.x17{left:780.216000px;}
.x69{left:782.013000px;}
.x6d{left:786.202500px;}
.x20{left:791.166000px;}
.x18{left:795.159000px;}
.xe{left:799.341000px;}
.x21{left:806.110500px;}
.xf{left:814.285500px;}
.x10{left:817.977000px;}
.xa{left:825.519000px;}
.x6b{left:828.985500px;}
.xb{left:832.990500px;}
.x6c{left:835.411500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.472000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000711pt;}
.lsb{letter-spacing:0.002111pt;}
.ls18{letter-spacing:0.004267pt;}
.ls2{letter-spacing:2.657067pt;}
.lsd{letter-spacing:10.575412pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1b{letter-spacing:11.754945pt;}
.ls9{letter-spacing:11.799527pt;}
.ls12{letter-spacing:11.904170pt;}
.ls11{letter-spacing:11.912525pt;}
.ls14{letter-spacing:11.921641pt;}
.ls19{letter-spacing:11.934996pt;}
.ls1c{letter-spacing:11.948414pt;}
.ls1e{letter-spacing:11.953769pt;}
.lse{letter-spacing:11.953952pt;}
.lsa{letter-spacing:11.954133pt;}
.lsc{letter-spacing:11.959467pt;}
.ls16{letter-spacing:11.967389pt;}
.ls20{letter-spacing:11.985898pt;}
.ls22{letter-spacing:11.993981pt;}
.ls17{letter-spacing:11.994184pt;}
.ls25{letter-spacing:12.023251pt;}
.ls24{letter-spacing:12.085245pt;}
.ls13{letter-spacing:12.468329pt;}
.ls21{letter-spacing:13.514081pt;}
.ls23{letter-spacing:13.660486pt;}
.ls1a{letter-spacing:14.690552pt;}
.ls1d{letter-spacing:15.129767pt;}
.ls26{letter-spacing:15.223885pt;}
.lsf{letter-spacing:15.840878pt;}
.ls3{letter-spacing:15.942400pt;}
.ls15{letter-spacing:16.112774pt;}
.ls1f{letter-spacing:16.562447pt;}
.ls8{letter-spacing:21.900847pt;}
.ls0{letter-spacing:48.376563pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.wsbc{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws95{word-spacing:-2.816095pt;}
.wsb1{word-spacing:-2.762961pt;}
.ws9d{word-spacing:-2.656693pt;}
.ws9e{word-spacing:-2.603559pt;}
.wsb{word-spacing:-2.550426pt;}
.wse2{word-spacing:-2.534502pt;}
.ws33{word-spacing:-2.497292pt;}
.ws45{word-spacing:-2.444158pt;}
.ws4e{word-spacing:-2.391024pt;}
.ws62{word-spacing:-2.337890pt;}
.ws31{word-spacing:-1.965953pt;}
.ws8a{word-spacing:-1.923730pt;}
.ws89{word-spacing:-1.912819pt;}
.ws46{word-spacing:-1.859685pt;}
.ws6c{word-spacing:-1.806551pt;}
.wsc6{word-spacing:-1.769370pt;}
.ws2c{word-spacing:-1.753418pt;}
.ws82{word-spacing:-1.700284pt;}
.ws63{word-spacing:-1.647150pt;}
.wsac{word-spacing:-1.594016pt;}
.ws9a{word-spacing:-1.487748pt;}
.wsc8{word-spacing:-1.386803pt;}
.ws52{word-spacing:-1.328347pt;}
.ws67{word-spacing:-1.275213pt;}
.ws2e{word-spacing:-1.168945pt;}
.ws3e{word-spacing:-1.115811pt;}
.wsa9{word-spacing:-1.062677pt;}
.ws8f{word-spacing:-0.956410pt;}
.wsb0{word-spacing:-0.850142pt;}
.wsa3{word-spacing:-0.797008pt;}
.ws6b{word-spacing:-0.743874pt;}
.ws4b{word-spacing:-0.690740pt;}
.wsb4{word-spacing:-0.669491pt;}
.ws9c{word-spacing:-0.637606pt;}
.ws5a{word-spacing:-0.584473pt;}
.wsad{word-spacing:-0.531339pt;}
.ws9b{word-spacing:-0.478205pt;}
.ws2b{word-spacing:-0.371937pt;}
.ws35{word-spacing:-0.318803pt;}
.wsf0{word-spacing:-0.286925pt;}
.wsc{word-spacing:-0.265669pt;}
.wsb6{word-spacing:-0.239104pt;}
.ws12{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.191283pt;}
.wsd{word-spacing:-0.159402pt;}
.wsb7{word-spacing:-0.143462pt;}
.ws13{word-spacing:-0.106268pt;}
.ws110{word-spacing:-0.095642pt;}
.ws26{word-spacing:-0.053134pt;}
.wsbd{word-spacing:-0.047821pt;}
.ws21{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wsc2{word-spacing:-0.006468pt;}
.ws7{word-spacing:-0.001266pt;}
.ws0{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.wsc1{word-spacing:0.095642pt;}
.ws2a{word-spacing:0.106268pt;}
.wsb5{word-spacing:0.143462pt;}
.ws10{word-spacing:0.159402pt;}
.ws8c{word-spacing:0.169702pt;}
.ws8e{word-spacing:0.172503pt;}
.wsd0{word-spacing:0.191283pt;}
.ws24{word-spacing:0.212535pt;}
.wsc4{word-spacing:0.239104pt;}
.wsf{word-spacing:0.265669pt;}
.wse7{word-spacing:0.286925pt;}
.ws41{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.371937pt;}
.wsdb{word-spacing:0.382566pt;}
.ws7f{word-spacing:0.425071pt;}
.ws58{word-spacing:0.478205pt;}
.wsdd{word-spacing:0.526029pt;}
.ws50{word-spacing:0.531339pt;}
.ws40{word-spacing:0.584473pt;}
.ws14{word-spacing:0.637606pt;}
.ws86{word-spacing:0.690740pt;}
.ws5e{word-spacing:0.743874pt;}
.ws123{word-spacing:0.765133pt;}
.ws36{word-spacing:0.797008pt;}
.ws56{word-spacing:0.850142pt;}
.ws1a{word-spacing:0.903276pt;}
.ws30{word-spacing:0.956410pt;}
.wsea{word-spacing:1.004237pt;}
.ws59{word-spacing:1.009543pt;}
.ws22{word-spacing:1.062677pt;}
.wsa2{word-spacing:1.115811pt;}
.ws28{word-spacing:1.168945pt;}
.ws11b{word-spacing:1.195520pt;}
.ws3f{word-spacing:1.222079pt;}
.ws104{word-spacing:1.243341pt;}
.ws42{word-spacing:1.275213pt;}
.ws11f{word-spacing:1.291162pt;}
.ws9{word-spacing:1.328347pt;}
.wsa5{word-spacing:1.381481pt;}
.ws65{word-spacing:1.434614pt;}
.ws3b{word-spacing:1.487748pt;}
.ws102{word-spacing:1.578086pt;}
.ws23{word-spacing:1.594016pt;}
.ws60{word-spacing:1.647150pt;}
.ws79{word-spacing:1.700284pt;}
.wseb{word-spacing:1.721549pt;}
.ws78{word-spacing:1.753418pt;}
.ws49{word-spacing:1.806551pt;}
.ws47{word-spacing:1.859685pt;}
.ws75{word-spacing:1.912819pt;}
.ws61{word-spacing:1.965953pt;}
.ws116{word-spacing:2.008474pt;}
.ws32{word-spacing:2.072221pt;}
.ws57{word-spacing:2.125355pt;}
.wsf7{word-spacing:2.151936pt;}
.wsa8{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231335pt;}
.ws8b{word-spacing:2.231622pt;}
.ws91{word-spacing:2.284756pt;}
.ws38{word-spacing:2.337890pt;}
.wsf3{word-spacing:2.343219pt;}
.ws15{word-spacing:2.391024pt;}
.ws108{word-spacing:2.486682pt;}
.ws80{word-spacing:2.497292pt;}
.ws124{word-spacing:2.534502pt;}
.ws3d{word-spacing:2.550426pt;}
.wsfd{word-spacing:2.582323pt;}
.ws34{word-spacing:2.603559pt;}
.ws4c{word-spacing:2.709827pt;}
.ws97{word-spacing:2.762961pt;}
.ws55{word-spacing:2.816095pt;}
.ws11e{word-spacing:2.860885pt;}
.wsf5{word-spacing:2.862583pt;}
.ws11d{word-spacing:2.863113pt;}
.ws117{word-spacing:2.864674pt;}
.ws25{word-spacing:2.869229pt;}
.wsda{word-spacing:2.869248pt;}
.ws37{word-spacing:2.922363pt;}
.wsb8{word-spacing:2.969348pt;}
.wsef{word-spacing:3.012710pt;}
.ws7a{word-spacing:3.028630pt;}
.wscd{word-spacing:3.060531pt;}
.wsa1{word-spacing:3.081764pt;}
.ws128{word-spacing:3.108352pt;}
.ws66{word-spacing:3.134898pt;}
.ws10a{word-spacing:3.156173pt;}
.ws5b{word-spacing:3.188032pt;}
.ws77{word-spacing:3.241166pt;}
.ws126{word-spacing:3.251814pt;}
.ws29{word-spacing:3.294300pt;}
.wse4{word-spacing:3.299635pt;}
.ws44{word-spacing:3.347434pt;}
.ws5f{word-spacing:3.400567pt;}
.ws10b{word-spacing:3.443098pt;}
.ws88{word-spacing:3.453701pt;}
.ws90{word-spacing:3.506835pt;}
.ws7c{word-spacing:3.559969pt;}
.ws4d{word-spacing:3.613103pt;}
.ws10c{word-spacing:3.634381pt;}
.ws6f{word-spacing:3.666237pt;}
.wsb2{word-spacing:3.682202pt;}
.ws1c{word-spacing:3.719371pt;}
.ws1d{word-spacing:3.772505pt;}
.ws1e{word-spacing:3.825638pt;}
.ws18{word-spacing:3.825664pt;}
.wscf{word-spacing:3.873485pt;}
.ws83{word-spacing:3.878772pt;}
.wsf9{word-spacing:4.064768pt;}
.ws99{word-spacing:4.091308pt;}
.ws39{word-spacing:4.144442pt;}
.wse6{word-spacing:4.160410pt;}
.wsae{word-spacing:4.197575pt;}
.ws74{word-spacing:4.250709pt;}
.ws3c{word-spacing:4.303843pt;}
.ws11{word-spacing:4.410111pt;}
.ws1b{word-spacing:4.463245pt;}
.wsa6{word-spacing:4.516379pt;}
.ws96{word-spacing:4.569513pt;}
.ws10e{word-spacing:4.590797pt;}
.wsb3{word-spacing:4.638618pt;}
.ws87{word-spacing:4.675780pt;}
.ws98{word-spacing:4.782048pt;}
.wsba{word-spacing:4.829901pt;}
.ws4a{word-spacing:4.835182pt;}
.wsaa{word-spacing:5.047717pt;}
.ws76{word-spacing:5.100851pt;}
.ws64{word-spacing:5.207119pt;}
.wsa0{word-spacing:5.260253pt;}
.ws7e{word-spacing:5.313387pt;}
.ws48{word-spacing:5.366521pt;}
.ws7d{word-spacing:5.525922pt;}
.wsa{word-spacing:5.579056pt;}
.ws54{word-spacing:5.950993pt;}
.ws93{word-spacing:6.057261pt;}
.ws8{word-spacing:6.069841pt;}
.ws85{word-spacing:6.110395pt;}
.wsec{word-spacing:6.216704pt;}
.ws51{word-spacing:6.269796pt;}
.wsaf{word-spacing:6.376064pt;}
.ws4f{word-spacing:6.535466pt;}
.ws6d{word-spacing:6.588599pt;}
.wsa4{word-spacing:6.694867pt;}
.ws2d{word-spacing:6.748001pt;}
.ws53{word-spacing:6.801135pt;}
.wsde{word-spacing:6.838374pt;}
.ws71{word-spacing:6.846408pt;}
.ws73{word-spacing:6.854269pt;}
.ws84{word-spacing:6.907403pt;}
.ws92{word-spacing:7.013670pt;}
.ws81{word-spacing:7.119938pt;}
.ws43{word-spacing:7.279340pt;}
.ws27{word-spacing:7.385607pt;}
.ws3a{word-spacing:7.491875pt;}
.ws2f{word-spacing:7.545009pt;}
.ws5d{word-spacing:7.651277pt;}
.wsff{word-spacing:7.890432pt;}
.wsab{word-spacing:8.873356pt;}
.wsc7{word-spacing:10.131706pt;}
.ws1f{word-spacing:10.587492pt;}
.ws2{word-spacing:11.488866pt;}
.wsf1{word-spacing:11.620454pt;}
.wsd6{word-spacing:11.668275pt;}
.wsfb{word-spacing:11.716096pt;}
.wsd4{word-spacing:11.763917pt;}
.wsd2{word-spacing:11.847908pt;}
.wsd9{word-spacing:11.859558pt;}
.wscc{word-spacing:11.869579pt;}
.ws127{word-spacing:11.897865pt;}
.ws107{word-spacing:11.898786pt;}
.wsfc{word-spacing:11.899887pt;}
.wsd3{word-spacing:11.900919pt;}
.wsd7{word-spacing:11.901158pt;}
.wsd1{word-spacing:11.901329pt;}
.ws119{word-spacing:11.901406pt;}
.wsc5{word-spacing:11.901884pt;}
.ws115{word-spacing:11.903573pt;}
.wse3{word-spacing:11.904350pt;}
.ws113{word-spacing:11.904469pt;}
.ws121{word-spacing:11.904700pt;}
.ws118{word-spacing:11.904725pt;}
.wsbb{word-spacing:11.905220pt;}
.wsbf{word-spacing:11.905749pt;}
.ws100{word-spacing:11.906253pt;}
.wsc3{word-spacing:11.907379pt;}
.wse9{word-spacing:11.955200pt;}
.ws122{word-spacing:11.974727pt;}
.wsf2{word-spacing:12.003021pt;}
.wse1{word-spacing:12.050842pt;}
.wsdf{word-spacing:12.095300pt;}
.wse0{word-spacing:12.098662pt;}
.wse8{word-spacing:12.194304pt;}
.ws7b{word-spacing:12.752128pt;}
.ws94{word-spacing:12.957729pt;}
.ws68{word-spacing:13.017797pt;}
.ws9f{word-spacing:13.070931pt;}
.ws69{word-spacing:13.124065pt;}
.ws103{word-spacing:13.140355pt;}
.ws120{word-spacing:13.198541pt;}
.ws6a{word-spacing:13.226892pt;}
.ws19{word-spacing:13.230333pt;}
.ws5c{word-spacing:13.283467pt;}
.ws8d{word-spacing:13.389734pt;}
.wsc9{word-spacing:13.820211pt;}
.wsf4{word-spacing:14.250598pt;}
.ws125{word-spacing:14.475077pt;}
.ws105{word-spacing:14.680986pt;}
.ws112{word-spacing:14.767138pt;}
.ws10f{word-spacing:14.768290pt;}
.ws111{word-spacing:14.771780pt;}
.wsfe{word-spacing:14.771866pt;}
.ws101{word-spacing:14.772164pt;}
.ws106{word-spacing:14.773948pt;}
.wsd5{word-spacing:14.774007pt;}
.wsbe{word-spacing:14.774059pt;}
.wsf6{word-spacing:14.775040pt;}
.ws114{word-spacing:14.775851pt;}
.wsc0{word-spacing:14.776627pt;}
.wsee{word-spacing:14.920090pt;}
.wsed{word-spacing:14.979250pt;}
.wsd8{word-spacing:15.015731pt;}
.ws11a{word-spacing:15.063552pt;}
.wse5{word-spacing:15.202197pt;}
.ws10d{word-spacing:15.538805pt;}
.ws17{word-spacing:15.780758pt;}
.wsdc{word-spacing:16.306893pt;}
.ws6e{word-spacing:16.896570pt;}
.ws11c{word-spacing:18.793574pt;}
.ws72{word-spacing:20.051348pt;}
.ws70{word-spacing:20.084602pt;}
.wscb{word-spacing:20.849869pt;}
.wsf8{word-spacing:21.615002pt;}
.ws109{word-spacing:22.667059pt;}
.wsce{word-spacing:24.388608pt;}
.ws1{word-spacing:25.293814pt;}
.wsca{word-spacing:25.727590pt;}
.ws16{word-spacing:34.858618pt;}
._28{margin-left:-27.581904pt;}
._27{margin-left:-19.321516pt;}
._22{margin-left:-18.179555pt;}
._4{margin-left:-10.616218pt;}
._1d{margin-left:-6.790512pt;}
._5{margin-left:-5.897859pt;}
._15{margin-left:-4.675780pt;}
._1{margin-left:-3.347424pt;}
._7{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._6{width:2.667137pt;}
._29{width:4.016947pt;}
._25{width:10.409073pt;}
._0{width:11.530016pt;}
._8{width:12.613994pt;}
._b{width:14.356773pt;}
._d{width:15.844515pt;}
._a{width:16.854059pt;}
._11{width:18.490586pt;}
._c{width:19.404484pt;}
._16{width:20.743454pt;}
._1a{width:22.029309pt;}
._3{width:23.061099pt;}
._e{width:24.399068pt;}
._14{width:26.046218pt;}
._19{width:27.162029pt;}
._10{width:28.160949pt;}
._1c{width:29.808099pt;}
._1f{width:30.977044pt;}
._9{width:32.889863pt;}
._20{width:33.963164pt;}
._1b{width:35.174620pt;}
._f{width:37.034305pt;}
._18{width:38.320141pt;}
._17{width:39.744132pt;}
._24{width:42.676867pt;}
._26{width:54.993920pt;}
._23{width:56.030205pt;}
._21{width:78.904320pt;}
._12{width:1631.285638pt;}
._1e{width:2212.912305pt;}
._13{width:2234.165638pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.y42{bottom:88.640000pt;}
.y18{bottom:89.120000pt;}
.y193{bottom:94.188000pt;}
.y13b{bottom:95.476000pt;}
.ydf{bottom:98.970667pt;}
.y111{bottom:99.488000pt;}
.yc6{bottom:102.117333pt;}
.ya5{bottom:102.502667pt;}
.yba{bottom:103.473333pt;}
.y17{bottom:105.020000pt;}
.y75{bottom:105.213333pt;}
.y41{bottom:107.209333pt;}
.y192{bottom:111.210667pt;}
.y13a{bottom:114.046667pt;}
.y116{bottom:115.401333pt;}
.yde{bottom:117.541333pt;}
.y110{bottom:118.058667pt;}
.y161{bottom:118.132000pt;}
.yc5{bottom:120.688000pt;}
.y16{bottom:120.920000pt;}
.ya4{bottom:121.073333pt;}
.yb9{bottom:122.042667pt;}
.y74{bottom:123.782667pt;}
.y40{bottom:125.780000pt;}
.y191{bottom:128.233333pt;}
.y139{bottom:132.616000pt;}
.y115{bottom:133.972000pt;}
.y160{bottom:135.154667pt;}
.ydd{bottom:136.112000pt;}
.y10f{bottom:136.628000pt;}
.y15{bottom:136.821333pt;}
.ya3{bottom:139.644000pt;}
.yb8{bottom:140.613333pt;}
.y73{bottom:142.353333pt;}
.yc4{bottom:143.244000pt;}
.y3f{bottom:144.350667pt;}
.y190{bottom:145.256000pt;}
.y138{bottom:151.186667pt;}
.y15f{bottom:152.177333pt;}
.y114{bottom:152.541333pt;}
.y14{bottom:152.721333pt;}
.ydc{bottom:154.681333pt;}
.y10e{bottom:155.198667pt;}
.ya2{bottom:158.213333pt;}
.yb7{bottom:159.184000pt;}
.y72{bottom:160.924000pt;}
.y18f{bottom:162.278667pt;}
.y3e{bottom:162.920000pt;}
.y13{bottom:168.621333pt;}
.y15e{bottom:169.200000pt;}
.y137{bottom:169.757333pt;}
.y113{bottom:171.112000pt;}
.ydb{bottom:173.252000pt;}
.y10d{bottom:173.769333pt;}
.ya1{bottom:176.784000pt;}
.yb6{bottom:177.753333pt;}
.y18e{bottom:179.301333pt;}
.y71{bottom:179.493333pt;}
.y3d{bottom:181.490667pt;}
.y12{bottom:184.521333pt;}
.y15d{bottom:186.222667pt;}
.y136{bottom:188.328000pt;}
.yda{bottom:191.822667pt;}
.y10c{bottom:192.338667pt;}
.ya0{bottom:195.354667pt;}
.yb5{bottom:196.324000pt;}
.y70{bottom:198.064000pt;}
.y3c{bottom:200.061333pt;}
.y11{bottom:200.422667pt;}
.y15c{bottom:203.245333pt;}
.y135{bottom:206.897333pt;}
.yd9{bottom:210.392000pt;}
.y10b{bottom:210.909333pt;}
.y18d{bottom:213.346667pt;}
.y9f{bottom:213.924000pt;}
.yb4{bottom:214.894667pt;}
.y6f{bottom:216.634667pt;}
.y3b{bottom:218.632000pt;}
.y15b{bottom:220.268000pt;}
.y10{bottom:224.293333pt;}
.y134{bottom:225.468000pt;}
.yd8{bottom:228.962667pt;}
.y10a{bottom:229.480000pt;}
.y18c{bottom:230.369333pt;}
.y9e{bottom:232.494667pt;}
.yb3{bottom:233.464000pt;}
.y6e{bottom:235.205333pt;}
.y15a{bottom:237.292000pt;}
.yf{bottom:240.193333pt;}
.y3a{bottom:241.186667pt;}
.y133{bottom:244.038667pt;}
.y18b{bottom:247.392000pt;}
.yd7{bottom:247.533333pt;}
.y109{bottom:248.049333pt;}
.ye0{bottom:249.608000pt;}
.y9d{bottom:251.065333pt;}
.yb2{bottom:252.034667pt;}
.y6d{bottom:253.774667pt;}
.y159{bottom:254.314667pt;}
.ye{bottom:256.093333pt;}
.y132{bottom:262.608000pt;}
.y39{bottom:262.904000pt;}
.y18a{bottom:264.414667pt;}
.yd6{bottom:266.102667pt;}
.y108{bottom:266.620000pt;}
.y9c{bottom:269.634667pt;}
.yb1{bottom:270.605333pt;}
.y158{bottom:271.337333pt;}
.yd{bottom:271.994667pt;}
.y6c{bottom:272.345333pt;}
.y131{bottom:281.178667pt;}
.y189{bottom:281.437333pt;}
.yd5{bottom:284.673333pt;}
.y107{bottom:285.190667pt;}
.yc{bottom:287.894667pt;}
.y9b{bottom:288.205333pt;}
.y157{bottom:288.360000pt;}
.yb0{bottom:289.176000pt;}
.y6b{bottom:290.916000pt;}
.y188{bottom:298.460000pt;}
.y130{bottom:299.749333pt;}
.yd4{bottom:303.244000pt;}
.y106{bottom:303.760000pt;}
.yb{bottom:303.794667pt;}
.y156{bottom:305.382667pt;}
.yaf{bottom:307.745333pt;}
.y6a{bottom:309.485333pt;}
.y9a{bottom:310.761333pt;}
.y187{bottom:315.482667pt;}
.y12f{bottom:318.318667pt;}
.ya{bottom:319.696000pt;}
.y105{bottom:322.330667pt;}
.y155{bottom:322.405333pt;}
.yd3{bottom:325.798667pt;}
.yae{bottom:326.316000pt;}
.y69{bottom:328.056000pt;}
.y186{bottom:332.506667pt;}
.y38{bottom:333.314667pt;}
.y9{bottom:335.596000pt;}
.y12e{bottom:336.889333pt;}
.y154{bottom:339.428000pt;}
.y104{bottom:340.901333pt;}
.y99{bottom:342.176000pt;}
.yad{bottom:344.886667pt;}
.y68{bottom:346.626667pt;}
.yd2{bottom:347.516000pt;}
.y185{bottom:349.529333pt;}
.y8{bottom:351.496000pt;}
.y37{bottom:351.884000pt;}
.y12d{bottom:355.460000pt;}
.y153{bottom:356.450667pt;}
.y103{bottom:359.472000pt;}
.y98{bottom:360.746667pt;}
.yac{bottom:363.456000pt;}
.y67{bottom:365.196000pt;}
.y184{bottom:366.552000pt;}
.y7{bottom:367.397333pt;}
.y152{bottom:373.473333pt;}
.y12c{bottom:374.029333pt;}
.y102{bottom:378.041333pt;}
.y97{bottom:379.316000pt;}
.yab{bottom:382.026667pt;}
.y183{bottom:383.574667pt;}
.y66{bottom:383.766667pt;}
.y36{bottom:386.394667pt;}
.y6{bottom:388.610667pt;}
.y151{bottom:390.496000pt;}
.y12b{bottom:392.600000pt;}
.y101{bottom:396.612000pt;}
.yaa{bottom:400.597333pt;}
.y96{bottom:401.872000pt;}
.y65{bottom:402.337333pt;}
.y5{bottom:404.510667pt;}
.y35{bottom:404.965333pt;}
.y150{bottom:407.518667pt;}
.y12a{bottom:411.170667pt;}
.y196{bottom:413.416000pt;}
.y100{bottom:415.182667pt;}
.y182{bottom:417.620000pt;}
.ya9{bottom:419.166667pt;}
.y4{bottom:420.412000pt;}
.y64{bottom:420.906667pt;}
.y34{bottom:423.536000pt;}
.y14f{bottom:424.541333pt;}
.y129{bottom:429.740000pt;}
.y195{bottom:430.438667pt;}
.yff{bottom:433.752000pt;}
.y181{bottom:434.642667pt;}
.y3{bottom:436.312000pt;}
.y95{bottom:436.382667pt;}
.ya8{bottom:437.737333pt;}
.y63{bottom:439.477333pt;}
.y14e{bottom:441.564000pt;}
.y33{bottom:442.105333pt;}
.y194{bottom:447.461333pt;}
.y128{bottom:448.310667pt;}
.y180{bottom:451.665333pt;}
.yfe{bottom:452.322667pt;}
.y94{bottom:454.953333pt;}
.ya7{bottom:456.308000pt;}
.y2{bottom:457.525333pt;}
.y7f{bottom:458.048000pt;}
.y14d{bottom:458.586667pt;}
.y32{bottom:460.676000pt;}
.y62{bottom:462.033333pt;}
.y127{bottom:466.881333pt;}
.y17f{bottom:468.688000pt;}
.yfd{bottom:470.893333pt;}
.y1{bottom:473.426667pt;}
.y93{bottom:473.522667pt;}
.ya6{bottom:474.877333pt;}
.y14c{bottom:475.609333pt;}
.y7e{bottom:476.617333pt;}
.y31{bottom:479.246667pt;}
.y126{bottom:485.452000pt;}
.y17e{bottom:485.710667pt;}
.yfc{bottom:489.462667pt;}
.y92{bottom:492.093333pt;}
.y14b{bottom:492.632000pt;}
.y61{bottom:493.448000pt;}
.y7d{bottom:495.188000pt;}
.y30{bottom:497.816000pt;}
.y17d{bottom:502.733333pt;}
.y125{bottom:504.021333pt;}
.yfb{bottom:508.033333pt;}
.y14a{bottom:509.654667pt;}
.y91{bottom:510.664000pt;}
.y60{bottom:512.018667pt;}
.y7c{bottom:513.758667pt;}
.y2f{bottom:516.386667pt;}
.y17c{bottom:519.756000pt;}
.y124{bottom:522.592000pt;}
.yfa{bottom:526.604000pt;}
.y90{bottom:529.233333pt;}
.y5f{bottom:530.589333pt;}
.y149{bottom:530.662667pt;}
.y7b{bottom:532.329333pt;}
.y2e{bottom:534.957333pt;}
.y17b{bottom:536.778667pt;}
.y123{bottom:541.162667pt;}
.yf9{bottom:545.173333pt;}
.y112{bottom:546.732000pt;}
.y8f{bottom:547.804000pt;}
.y5e{bottom:549.158667pt;}
.y7a{bottom:550.898667pt;}
.y2d{bottom:553.526667pt;}
.y17a{bottom:553.801333pt;}
.y122{bottom:559.732000pt;}
.yf8{bottom:563.744000pt;}
.y148{bottom:565.173333pt;}
.y8e{bottom:566.374667pt;}
.y5d{bottom:567.729333pt;}
.y79{bottom:569.469333pt;}
.y179{bottom:570.824000pt;}
.y2c{bottom:572.097333pt;}
.y121{bottom:578.302667pt;}
.yf7{bottom:582.314667pt;}
.y8d{bottom:584.944000pt;}
.y5c{bottom:586.300000pt;}
.y178{bottom:587.846667pt;}
.y78{bottom:588.040000pt;}
.y147{bottom:590.476000pt;}
.y2b{bottom:590.668000pt;}
.y120{bottom:596.873333pt;}
.yf6{bottom:600.885333pt;}
.y8c{bottom:603.514667pt;}
.y5b{bottom:604.869333pt;}
.y77{bottom:606.609333pt;}
.y2a{bottom:609.238667pt;}
.y11f{bottom:615.442667pt;}
.y146{bottom:615.778667pt;}
.yf5{bottom:619.454667pt;}
.y177{bottom:621.892000pt;}
.y8b{bottom:622.085333pt;}
.y5a{bottom:623.440000pt;}
.yc3{bottom:625.180000pt;}
.y29{bottom:627.808000pt;}
.y76{bottom:629.165333pt;}
.y11e{bottom:634.013333pt;}
.yf4{bottom:638.025333pt;}
.y176{bottom:638.914667pt;}
.y8a{bottom:640.654667pt;}
.y145{bottom:641.080000pt;}
.y59{bottom:642.010667pt;}
.yc2{bottom:643.750667pt;}
.y28{bottom:646.378667pt;}
.y11d{bottom:652.584000pt;}
.y175{bottom:655.937333pt;}
.yf3{bottom:656.596000pt;}
.y89{bottom:659.225333pt;}
.y58{bottom:660.580000pt;}
.yc1{bottom:662.320000pt;}
.y27{bottom:664.949333pt;}
.y144{bottom:666.382667pt;}
.y11c{bottom:671.153333pt;}
.y174{bottom:672.961333pt;}
.yf2{bottom:675.165333pt;}
.y88{bottom:677.796000pt;}
.y57{bottom:679.150667pt;}
.yc0{bottom:680.890667pt;}
.y26{bottom:683.518667pt;}
.y143{bottom:683.714667pt;}
.y173{bottom:689.984000pt;}
.y11b{bottom:693.709333pt;}
.yf1{bottom:693.736000pt;}
.y87{bottom:696.365333pt;}
.y56{bottom:697.721333pt;}
.ybf{bottom:699.461333pt;}
.y142{bottom:701.046667pt;}
.y25{bottom:702.089333pt;}
.y172{bottom:707.006667pt;}
.yf0{bottom:712.306667pt;}
.y86{bottom:714.936000pt;}
.yd0{bottom:715.605333pt;}
.y55{bottom:716.290667pt;}
.ybe{bottom:718.030667pt;}
.y24{bottom:720.660000pt;}
.y171{bottom:724.029333pt;}
.y141{bottom:726.349333pt;}
.y11a{bottom:728.220000pt;}
.yef{bottom:730.876000pt;}
.y85{bottom:733.506667pt;}
.y54{bottom:734.861333pt;}
.ybd{bottom:736.601333pt;}
.y170{bottom:741.052000pt;}
.y140{bottom:743.681333pt;}
.y119{bottom:746.790667pt;}
.yee{bottom:749.446667pt;}
.y84{bottom:752.077333pt;}
.y53{bottom:753.432000pt;}
.ybc{bottom:755.172000pt;}
.y23{bottom:756.190667pt;}
.y16f{bottom:758.074667pt;}
.y13f{bottom:761.013333pt;}
.y118{bottom:765.360000pt;}
.yed{bottom:768.017333pt;}
.y22{bottom:770.536000pt;}
.y83{bottom:770.646667pt;}
.y52{bottom:772.002667pt;}
.ycf{bottom:773.742667pt;}
.y16e{bottom:775.097333pt;}
.ybb{bottom:777.726667pt;}
.y13e{bottom:778.346667pt;}
.y117{bottom:783.930667pt;}
.y21{bottom:784.882667pt;}
.yec{bottom:786.586667pt;}
.yd1{bottom:788.145333pt;}
.y82{bottom:789.217333pt;}
.y51{bottom:790.572000pt;}
.y16d{bottom:792.120000pt;}
.yce{bottom:792.312000pt;}
.y13d{bottom:795.678667pt;}
.y20{bottom:803.086667pt;}
.yeb{bottom:805.157333pt;}
.y81{bottom:807.788000pt;}
.y50{bottom:809.142667pt;}
.ycd{bottom:810.882667pt;}
.y13c{bottom:813.010667pt;}
.y1f{bottom:813.574667pt;}
.yea{bottom:823.728000pt;}
.y16c{bottom:826.165333pt;}
.y4f{bottom:827.713333pt;}
.ycc{bottom:829.453333pt;}
.y80{bottom:830.342667pt;}
.y1e{bottom:831.778667pt;}
.ye9{bottom:842.297333pt;}
.y16b{bottom:843.188000pt;}
.y4e{bottom:846.282667pt;}
.ycb{bottom:848.022667pt;}
.y16a{bottom:860.210667pt;}
.ye8{bottom:860.868000pt;}
.y4d{bottom:864.853333pt;}
.yca{bottom:866.593333pt;}
.y1d{bottom:871.449333pt;}
.y169{bottom:877.233333pt;}
.ye7{bottom:879.438667pt;}
.y4c{bottom:883.424000pt;}
.yc9{bottom:885.164000pt;}
.y1c{bottom:890.018667pt;}
.y168{bottom:894.256000pt;}
.ye6{bottom:898.009333pt;}
.y4b{bottom:901.993333pt;}
.yc8{bottom:903.733333pt;}
.y167{bottom:911.278667pt;}
.ye5{bottom:916.578667pt;}
.y4a{bottom:920.564000pt;}
.y1b{bottom:924.529333pt;}
.yc7{bottom:926.289333pt;}
.y166{bottom:928.301333pt;}
.ye4{bottom:935.149333pt;}
.y49{bottom:939.134667pt;}
.y165{bottom:945.324000pt;}
.y1a{bottom:952.385333pt;}
.ye3{bottom:953.720000pt;}
.y48{bottom:957.704000pt;}
.y164{bottom:962.346667pt;}
.ye2{bottom:972.289333pt;}
.y47{bottom:976.274667pt;}
.y163{bottom:979.369333pt;}
.y19{bottom:980.240000pt;}
.ye1{bottom:990.860000pt;}
.y46{bottom:994.845333pt;}
.y162{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y44{bottom:1066.841333pt;}
.hd{height:24.582445pt;}
.h7{height:28.947524pt;}
.h2{height:33.771789pt;}
.hc{height:36.666735pt;}
.hb{height:37.087439pt;}
.h8{height:38.596538pt;}
.h3{height:38.947124pt;}
.he{height:43.421286pt;}
.ha{height:45.907968pt;}
.h9{height:48.245551pt;}
.h6{height:48.360277pt;}
.h5{height:48.365611pt;}
.hf{height:54.893286pt;}
.h4{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x89{left:76.309333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.x8a{left:255.797333pt;}
.x72{left:263.109333pt;}
.x1d{left:264.074667pt;}
.x50{left:269.857333pt;}
.x7b{left:272.797333pt;}
.x73{left:276.392000pt;}
.x57{left:278.350667pt;}
.x81{left:280.076000pt;}
.x15{left:283.925333pt;}
.x7c{left:286.081333pt;}
.x58{left:291.634667pt;}
.x4d{left:293.518667pt;}
.x16{left:297.209333pt;}
.x76{left:301.677333pt;}
.x4e{left:306.802667pt;}
.x5d{left:308.090667pt;}
.x74{left:314.302667pt;}
.x5e{left:319.512000pt;}
.x1e{left:320.836000pt;}
.x75{left:327.585333pt;}
.x5f{left:328.560000pt;}
.x38{left:329.764000pt;}
.x1f{left:334.120000pt;}
.x41{left:337.385333pt;}
.x39{left:343.048000pt;}
.x42{left:346.132000pt;}
.x6a{left:351.032000pt;}
.x51{left:357.170667pt;}
.x8{left:358.844000pt;}
.x9{left:365.485333pt;}
.x6e{left:379.726667pt;}
.x59{left:383.845333pt;}
.x36{left:391.398667pt;}
.x6f{left:393.009333pt;}
.x5a{left:397.128000pt;}
.x37{left:404.682667pt;}
.x13{left:418.545333pt;}
.x77{left:421.760000pt;}
.x19{left:429.805333pt;}
.x14{left:431.828000pt;}
.x2e{left:434.448000pt;}
.x78{left:438.298667pt;}
.x1a{left:443.089333pt;}
.x1b{left:446.477333pt;}
.x2f{left:447.730667pt;}
.x30{left:451.029333pt;}
.x79{left:453.782667pt;}
.x1c{left:459.760000pt;}
.x31{left:464.312000pt;}
.x82{left:465.852000pt;}
.x7a{left:467.065333pt;}
.x24{left:468.301333pt;}
.x62{left:474.601333pt;}
.x83{left:479.134667pt;}
.x88{left:480.098667pt;}
.x25{left:481.584000pt;}
.x85{left:482.597333pt;}
.x26{left:484.961333pt;}
.x63{left:487.885333pt;}
.xc{left:489.914667pt;}
.x35{left:495.164000pt;}
.xd{left:496.556000pt;}
.x27{left:498.245333pt;}
.x28{left:501.622667pt;}
.x60{left:503.861333pt;}
.x11{left:512.517333pt;}
.x29{left:514.906667pt;}
.x3a{left:516.186667pt;}
.x2a{left:518.284000pt;}
.x43{left:519.325333pt;}
.x12{left:525.801333pt;}
.x2c{left:528.322667pt;}
.x3b{left:529.469333pt;}
.x2b{left:531.566667pt;}
.x44{left:532.609333pt;}
.x61{left:538.952000pt;}
.x2d{left:541.605333pt;}
.x34{left:545.665333pt;}
.x32{left:552.328000pt;}
.x7d{left:557.137333pt;}
.x33{left:565.612000pt;}
.x7e{left:570.420000pt;}
.x64{left:573.125333pt;}
.x52{left:578.897333pt;}
.x65{left:586.409333pt;}
.x6{left:594.109333pt;}
.x7{left:600.752000pt;}
.x66{left:603.248000pt;}
.x4b{left:604.190667pt;}
.x53{left:605.834667pt;}
.x84{left:610.766667pt;}
.x4f{left:613.184000pt;}
.x67{left:616.530667pt;}
.x4c{left:617.474667pt;}
.x3f{left:618.786667pt;}
.x56{left:623.260000pt;}
.x54{left:625.720000pt;}
.x70{left:628.993333pt;}
.x40{left:632.070667pt;}
.x7f{left:633.081333pt;}
.x45{left:634.936000pt;}
.x3c{left:636.218667pt;}
.x55{left:639.004000pt;}
.x71{left:642.277333pt;}
.x48{left:644.512000pt;}
.x80{left:646.364000pt;}
.x22{left:648.681333pt;}
.x46{left:651.606667pt;}
.x3d{left:652.889333pt;}
.x49{left:657.794667pt;}
.x23{left:661.964000pt;}
.x47{left:664.890667pt;}
.x3e{left:666.173333pt;}
.x86{left:667.633333pt;}
.x4a{left:674.465333pt;}
.x5b{left:675.452000pt;}
.x87{left:680.917333pt;}
.x68{left:686.321333pt;}
.x5c{left:688.736000pt;}
.x17{left:693.525333pt;}
.x69{left:695.122667pt;}
.x6d{left:698.846667pt;}
.x20{left:703.258667pt;}
.x18{left:706.808000pt;}
.xe{left:710.525333pt;}
.x21{left:716.542667pt;}
.xf{left:723.809333pt;}
.x10{left:727.090667pt;}
.xa{left:733.794667pt;}
.x6b{left:736.876000pt;}
.xb{left:740.436000pt;}
.x6c{left:742.588000pt;}
}




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