
    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_d27d64744a82dade41cbd0a1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae34539d98d83732b1d0fd7a.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_69334a6dc6d7f66937e67e96.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_35aa9fd36d6b24dd769b828e.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_82544ba028e0fc5233849676.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929000;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_0c1ae02948902a8e473fa350.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_3f0456e89e0a146b6005939f.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_969d6e440e1964bb7dd5debc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.488000;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_34c12fe2fb86c7ba32eb5627.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bb54b88b8adcf62c358be5bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m19{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);}
.m12{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);}
.m16{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);}
.m15{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);}
.m28{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);}
.m21{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);}
.m4{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);}
.m13{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);}
.m1a{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);}
.m17{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);}
.ma{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);}
.m5{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);}
.mc{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);}
.m1b{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);}
.m14{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);}
.m26{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);}
.m25{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);}
.m11{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);}
.m23{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);}
.m10{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);}
.m29{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);}
.me{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);}
.m20{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);}
.m9{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);}
.m2{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);}
.m7{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);}
.m8{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);}
.m18{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);}
.mb{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);}
.m24{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);}
.m1f{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);}
.m1e{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m27{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);}
.m1d{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);}
.md{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000121px;}
.ls22{letter-spacing:0.000566px;}
.ls1{letter-spacing:0.000583px;}
.ls29{letter-spacing:0.000676px;}
.ls27{letter-spacing:0.000751px;}
.ls20{letter-spacing:0.000800px;}
.ls14{letter-spacing:0.001155px;}
.ls25{letter-spacing:0.001276px;}
.ls5{letter-spacing:0.001573px;}
.ls15{letter-spacing:0.001584px;}
.ls1f{letter-spacing:0.001746px;}
.ls4{letter-spacing:0.001933px;}
.ls24{letter-spacing:0.002045px;}
.ls2a{letter-spacing:0.002841px;}
.ls28{letter-spacing:0.002928px;}
.ls23{letter-spacing:0.003178px;}
.ls21{letter-spacing:0.003239px;}
.ls1b{letter-spacing:0.003306px;}
.ls13{letter-spacing:0.003668px;}
.ls19{letter-spacing:0.004173px;}
.ls26{letter-spacing:0.005161px;}
.ls0{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls1c{letter-spacing:13.111470px;}
.ls1a{letter-spacing:13.252976px;}
.ls16{letter-spacing:13.448400px;}
.ls17{letter-spacing:13.454400px;}
.ls1d{letter-spacing:13.696445px;}
.lsc{letter-spacing:14.823965px;}
.lsb{letter-spacing:14.924602px;}
.ls10{letter-spacing:14.971024px;}
.lse{letter-spacing:15.016008px;}
.lsd{letter-spacing:15.118322px;}
.lsf{letter-spacing:15.124321px;}
.ls11{letter-spacing:15.160783px;}
.ls18{letter-spacing:16.168047px;}
.ls9{letter-spacing:19.128192px;}
.ls3{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.lsa{letter-spacing:94.292700px;}
.ls12{letter-spacing:443.097600px;}
.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;}
}
.wsb{word-spacing:-31.347956px;}
.ws58{word-spacing:-14.943900px;}
.ws45{word-spacing:-13.449600px;}
.ws28{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws72{word-spacing:-3.287658px;}
.ws5f{word-spacing:-3.108331px;}
.ws8d{word-spacing:-2.869229px;}
.ws3e{word-spacing:-2.809453px;}
.ws17{word-spacing:-2.420928px;}
.ws74{word-spacing:-2.391024px;}
.ws52{word-spacing:-2.331248px;}
.ws5c{word-spacing:-2.271473px;}
.ws98{word-spacing:-2.259533px;}
.ws8f{word-spacing:-1.972595px;}
.ws90{word-spacing:-1.912819px;}
.ws29{word-spacing:-1.793268px;}
.ws80{word-spacing:-1.673717px;}
.ws9e{word-spacing:-1.667750px;}
.ws4c{word-spacing:-1.613941px;}
.ws9f{word-spacing:-1.452557px;}
.ws8c{word-spacing:-1.434614px;}
.ws5d{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.255288px;}
.ws8e{word-spacing:-1.075961px;}
.ws69{word-spacing:-1.016185px;}
.ws2a{word-spacing:-0.717307px;}
.ws73{word-spacing:-0.657532px;}
.ws19{word-spacing:-0.645581px;}
.ws77{word-spacing:-0.597756px;}
.wsa2{word-spacing:-0.537984px;}
.ws91{word-spacing:-0.537980px;}
.wsa1{word-spacing:-0.484186px;}
.wsb0{word-spacing:-0.376589px;}
.ws4d{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.322790px;}
.ws23{word-spacing:-0.298878px;}
.ws16{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.wsaf{word-spacing:-0.215194px;}
.ws42{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.ws79{word-spacing:-0.130208px;}
.ws20{word-spacing:-0.119551px;}
.ws11{word-spacing:-0.107597px;}
.wsd{word-spacing:-0.059776px;}
.wsbe{word-spacing:-0.053921px;}
.ws96{word-spacing:-0.053798px;}
.wsa3{word-spacing:-0.026371px;}
.wsae{word-spacing:-0.023443px;}
.wsac{word-spacing:-0.008342px;}
.wsc4{word-spacing:-0.007882px;}
.wsbf{word-spacing:-0.003466px;}
.ws84{word-spacing:-0.002381px;}
.wse{word-spacing:-0.001183px;}
.ws27{word-spacing:-0.001125px;}
.wsc1{word-spacing:-0.000998px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.001483px;}
.ws1a{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.wsb1{word-spacing:0.087741px;}
.ws13{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.wsa0{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.wsad{word-spacing:0.201417px;}
.ws12{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.ws97{word-spacing:0.268992px;}
.ws32{word-spacing:0.298878px;}
.wsb5{word-spacing:0.322790px;}
.ws34{word-spacing:0.358654px;}
.wsc0{word-spacing:0.376589px;}
.ws3f{word-spacing:0.418429px;}
.wsba{word-spacing:0.430387px;}
.ws24{word-spacing:0.478205px;}
.ws8b{word-spacing:0.537980px;}
.ws14{word-spacing:0.591782px;}
.ws3d{word-spacing:0.657532px;}
.ws3b{word-spacing:0.717307px;}
.ws7a{word-spacing:0.777083px;}
.ws4a{word-spacing:0.836858px;}
.ws40{word-spacing:0.896634px;}
.ws4e{word-spacing:0.956410px;}
.ws4f{word-spacing:1.016185px;}
.ws53{word-spacing:1.075961px;}
.ws86{word-spacing:1.135736px;}
.ws50{word-spacing:1.195512px;}
.ws65{word-spacing:1.255288px;}
.wsa5{word-spacing:1.291162px;}
.ws92{word-spacing:1.315063px;}
.ws2e{word-spacing:1.374839px;}
.ws44{word-spacing:1.434614px;}
.ws47{word-spacing:1.554166px;}
.ws9d{word-spacing:1.721549px;}
.ws37{word-spacing:1.733492px;}
.ws2d{word-spacing:1.793268px;}
.ws68{word-spacing:1.853044px;}
.ws5b{word-spacing:1.972595px;}
.ws38{word-spacing:2.032370px;}
.wsa6{word-spacing:2.098138px;}
.ws9c{word-spacing:2.205734px;}
.ws2b{word-spacing:2.211697px;}
.ws39{word-spacing:2.271473px;}
.ws66{word-spacing:2.331248px;}
.ws7f{word-spacing:2.343209px;}
.ws10{word-spacing:2.367130px;}
.ws62{word-spacing:2.450800px;}
.ws2{word-spacing:2.510568px;}
.ws51{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws21{word-spacing:2.570351px;}
.ws36{word-spacing:2.630126px;}
.wsa8{word-spacing:2.743718px;}
.ws55{word-spacing:2.749678px;}
.ws3a{word-spacing:2.929004px;}
.ws8a{word-spacing:2.988780px;}
.ws5e{word-spacing:3.048556px;}
.ws1b{word-spacing:3.219667px;}
.wsb9{word-spacing:3.222000px;}
.wsb8{word-spacing:3.222384px;}
.wsab{word-spacing:3.222394px;}
.wsb6{word-spacing:3.222758px;}
.wsaa{word-spacing:3.223402px;}
.wsb7{word-spacing:3.224659px;}
.ws99{word-spacing:3.224822px;}
.ws46{word-spacing:3.227904px;}
.ws3c{word-spacing:3.287658px;}
.ws78{word-spacing:3.407209px;}
.ws4b{word-spacing:3.466985px;}
.ws70{word-spacing:3.526760px;}
.wsa9{word-spacing:3.550694px;}
.ws1c{word-spacing:3.586536px;}
.ws6f{word-spacing:3.646312px;}
.ws41{word-spacing:3.706087px;}
.wsb2{word-spacing:3.712090px;}
.ws59{word-spacing:3.825638px;}
.ws30{word-spacing:3.885414px;}
.ws71{word-spacing:3.945190px;}
.ws49{word-spacing:4.004965px;}
.wsbb{word-spacing:4.080267px;}
.wsbd{word-spacing:4.088678px;}
.wsbc{word-spacing:4.142477px;}
.ws25{word-spacing:4.184292px;}
.ws54{word-spacing:4.244068px;}
.wsc6{word-spacing:4.250074px;}
.ws67{word-spacing:4.303843px;}
.wsc2{word-spacing:4.345978px;}
.wsc3{word-spacing:4.357670px;}
.ws76{word-spacing:4.363619px;}
.ws9b{word-spacing:4.465267px;}
.ws43{word-spacing:4.602721px;}
.wsc5{word-spacing:4.626662px;}
.ws48{word-spacing:4.722272px;}
.wsb4{word-spacing:4.734259px;}
.ws9{word-spacing:4.770079px;}
.ws26{word-spacing:4.841824px;}
.ws9a{word-spacing:4.841856px;}
.wsa{word-spacing:4.853765px;}
.ws60{word-spacing:4.901599px;}
.ws89{word-spacing:4.961375px;}
.wsa4{word-spacing:5.164646px;}
.ws5a{word-spacing:5.499355px;}
.ws61{word-spacing:5.559131px;}
.wsb3{word-spacing:5.702630px;}
.ws95{word-spacing:6.025421px;}
.ws57{word-spacing:6.216662px;}
.ws93{word-spacing:6.402010px;}
.ws35{word-spacing:7.053521px;}
.ws87{word-spacing:7.292623px;}
.ws2f{word-spacing:7.352399px;}
.ws63{word-spacing:7.471950px;}
.ws94{word-spacing:7.585574px;}
.ws56{word-spacing:7.591501px;}
.ws85{word-spacing:7.711052px;}
.ws7{word-spacing:7.782761px;}
.ws64{word-spacing:8.428360px;}
.ws82{word-spacing:8.876736px;}
.ws81{word-spacing:9.307123px;}
.wsa7{word-spacing:10.060301px;}
.ws75{word-spacing:10.640057px;}
.ws2c{word-spacing:10.759608px;}
.ws5{word-spacing:12.176255px;}
.ws6{word-spacing:16.109478px;}
.ws88{word-spacing:19.023711px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.ws83{word-spacing:289.919578px;}
.ws7c{word-spacing:363.139200px;}
.ws6a{word-spacing:378.848333px;}
.ws7e{word-spacing:383.313600px;}
.ws6d{word-spacing:388.801037px;}
.ws7b{word-spacing:390.038400px;}
.ws7d{word-spacing:396.763200px;}
.ws6b{word-spacing:902.145370px;}
.ws6c{word-spacing:912.098074px;}
.ws6e{word-spacing:2471.954390px;}
._56{margin-left:-7.898869px;}
._9{margin-left:-6.778598px;}
._6{margin-left:-5.308087px;}
._7{margin-left:-3.538724px;}
._3{margin-left:-1.506341px;}
._2d{width:1.004215px;}
._4{width:2.999503px;}
._1d{width:4.303843px;}
._2e{width:10.329293px;}
._1{width:12.971268px;}
._c{width:14.059217px;}
._8{width:15.816730px;}
._a{width:17.000294px;}
._10{width:18.159810px;}
._b{width:19.313597px;}
._15{width:20.801909px;}
._52{width:22.053772px;}
._11{width:23.133157px;}
._55{width:24.766215px;}
._0{width:25.941318px;}
._13{width:26.958796px;}
._54{width:28.351757px;}
._2{width:30.587087px;}
._17{width:31.979946px;}
._d{width:33.653663px;}
._16{width:36.439247px;}
._12{width:40.445504px;}
._5{width:54.382370px;}
._53{width:61.868160px;}
._51{width:88.767360px;}
._1f{width:269.798976px;}
._48{width:287.068262px;}
._30{width:303.369178px;}
._1e{width:304.875533px;}
._18{width:333.496282px;}
._25{width:339.091301px;}
._2a{width:376.588800px;}
._26{width:390.038400px;}
._22{width:403.488000px;}
._28{width:423.662400px;}
._2f{width:432.861912px;}
._24{width:437.112000px;}
._21{width:450.561600px;}
._4d{width:502.584610px;}
._37{width:566.712346px;}
._20{width:608.764739px;}
._29{width:666.651818px;}
._23{width:762.699917px;}
._2b{width:769.908902px;}
._35{width:775.826726px;}
._14{width:806.653210px;}
._e{width:813.181513px;}
._27{width:827.849779px;}
._2c{width:841.819408px;}
._31{width:872.072064px;}
._32{width:888.857165px;}
._49{width:902.629555px;}
._43{width:922.481165px;}
._3a{width:946.367654px;}
._36{width:1008.881395px;}
._33{width:1077.097766px;}
._3e{width:1142.785613px;}
._34{width:1151.716147px;}
._44{width:1155.159245px;}
._42{width:1166.725901px;}
._3b{width:1209.011443px;}
._4a{width:1233.704909px;}
._46{width:1234.942272px;}
._3f{width:1245.432960px;}
._3c{width:1292.883134px;}
._40{width:1370.406629px;}
._41{width:1378.530202px;}
._39{width:1386.707558px;}
._38{width:1412.208000px;}
._1b{width:1438.838208px;}
._1a{width:1448.790912px;}
._4e{width:1477.525459px;}
._4b{width:1538.849434px;}
._4c{width:1544.121677px;}
._47{width:1553.321203px;}
._45{width:1564.732666px;}
._4f{width:1582.060512px;}
._3d{width:1586.999002px;}
._1c{width:1962.125990px;}
._19{width:1972.059658px;}
._50{width:2509.794169px;}
._f{width:2533.704169px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(69,127,95);}
.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:125.391825px;}
.y0{bottom:0.000000px;}
.y17{bottom:1.961066px;}
.y16{bottom:28.258762px;}
.y45{bottom:31.890000px;}
.yb9{bottom:91.665000px;}
.yf7{bottom:93.744000px;}
.yc7{bottom:96.882000px;}
.y1aa{bottom:100.647000px;}
.y44{bottom:103.627500px;}
.y14{bottom:104.646000px;}
.y170{bottom:106.188000px;}
.yb8{bottom:110.494500px;}
.y7b{bottom:111.526500px;}
.yf6{bottom:112.573500px;}
.yc6{bottom:115.711500px;}
.y1a9{bottom:118.221000px;}
.y125{bottom:118.228500px;}
.y43{bottom:122.457000px;}
.y13{bottom:122.535000px;}
.y1e1{bottom:122.974500px;}
.y16f{bottom:125.017500px;}
.yb7{bottom:129.324000px;}
.y7a{bottom:130.356000px;}
.yf5{bottom:131.401500px;}
.yc5{bottom:134.541000px;}
.y1a8{bottom:135.796500px;}
.y124{bottom:140.061000px;}
.y1e0{bottom:140.235000px;}
.y12{bottom:140.422500px;}
.y42{bottom:141.285000px;}
.y16e{bottom:143.847000px;}
.y147{bottom:143.955000px;}
.yb6{bottom:148.153500px;}
.y79{bottom:149.185500px;}
.yf4{bottom:150.231000px;}
.yc4{bottom:153.370500px;}
.y123{bottom:156.499500px;}
.y1df{bottom:157.494000px;}
.y11{bottom:158.310000px;}
.y41{bottom:160.114500px;}
.y1a7{bottom:162.336000px;}
.y16d{bottom:162.676500px;}
.y146{bottom:162.784500px;}
.yb5{bottom:166.983000px;}
.y78{bottom:168.015000px;}
.yf3{bottom:169.060500px;}
.y122{bottom:172.938000px;}
.y1de{bottom:174.754500px;}
.y10{bottom:176.199000px;}
.yc3{bottom:176.682000px;}
.y40{bottom:178.944000px;}
.y16c{bottom:181.506000px;}
.y145{bottom:181.614000px;}
.yb4{bottom:185.812500px;}
.yf2{bottom:187.890000px;}
.y1a6{bottom:188.877000px;}
.y121{bottom:189.376500px;}
.y1dd{bottom:192.015000px;}
.yf{bottom:194.086500px;}
.y77{bottom:194.316000px;}
.yc2{bottom:196.857000px;}
.y3f{bottom:197.773500px;}
.y16b{bottom:200.335500px;}
.y144{bottom:200.443500px;}
.yb3{bottom:204.642000px;}
.y120{bottom:205.813500px;}
.y1a5{bottom:206.451000px;}
.yf1{bottom:206.719500px;}
.y1dc{bottom:209.275500px;}
.ye{bottom:211.974000px;}
.y76{bottom:213.145500px;}
.y3e{bottom:216.603000px;}
.y16a{bottom:219.165000px;}
.y143{bottom:219.273000px;}
.y11f{bottom:222.252000px;}
.yb2{bottom:223.471500px;}
.y1a4{bottom:224.025000px;}
.yf0{bottom:225.549000px;}
.y1db{bottom:226.536000px;}
.y19f{bottom:227.955000px;}
.yd{bottom:229.863000px;}
.yc1{bottom:230.481000px;}
.y75{bottom:231.975000px;}
.y3d{bottom:235.432500px;}
.y169{bottom:237.994500px;}
.y142{bottom:238.102500px;}
.y11e{bottom:238.690500px;}
.y1a3{bottom:241.599000px;}
.yb1{bottom:242.301000px;}
.y1da{bottom:243.796500px;}
.yef{bottom:244.378500px;}
.yc0{bottom:249.310500px;}
.y74{bottom:250.804500px;}
.y3c{bottom:254.262000px;}
.y11d{bottom:255.129000px;}
.y168{bottom:256.824000px;}
.y141{bottom:256.932000px;}
.y1d9{bottom:261.057000px;}
.yb0{bottom:261.130500px;}
.y19e{bottom:262.446000px;}
.yee{bottom:263.208000px;}
.ybf{bottom:268.140000px;}
.y73{bottom:269.634000px;}
.y11c{bottom:271.567500px;}
.y3b{bottom:273.091500px;}
.y167{bottom:275.653500px;}
.y140{bottom:275.761500px;}
.y1a2{bottom:277.105500px;}
.y1d8{bottom:278.317500px;}
.yaf{bottom:279.960000px;}
.yed{bottom:282.037500px;}
.y19d{bottom:284.278500px;}
.ybe{bottom:286.969500px;}
.y11b{bottom:288.006000px;}
.y72{bottom:288.463500px;}
.y3a{bottom:291.921000px;}
.y166{bottom:294.483000px;}
.y1d7{bottom:295.576500px;}
.y1a1{bottom:295.935000px;}
.yae{bottom:298.789500px;}
.y13f{bottom:299.074500px;}
.yc{bottom:299.892000px;}
.y19c{bottom:300.717000px;}
.yec{bottom:300.867000px;}
.y11a{bottom:304.444500px;}
.y71{bottom:307.293000px;}
.ybd{bottom:310.282500px;}
.y39{bottom:310.750500px;}
.y1d6{bottom:312.837000px;}
.y165{bottom:313.312500px;}
.y1a0{bottom:314.764500px;}
.y19b{bottom:317.155500px;}
.yad{bottom:317.619000px;}
.yb{bottom:317.779500px;}
.yeb{bottom:319.696500px;}
.y119{bottom:320.883000px;}
.ybc{bottom:329.112000px;}
.y38{bottom:329.580000px;}
.y1d5{bottom:330.097500px;}
.y164{bottom:332.142000px;}
.y13e{bottom:332.698500px;}
.y70{bottom:333.594000px;}
.ya{bottom:335.667000px;}
.yac{bottom:336.448500px;}
.y118{bottom:337.321500px;}
.yea{bottom:338.526000px;}
.y1d4{bottom:347.358000px;}
.ybb{bottom:347.940000px;}
.y37{bottom:348.409500px;}
.y19a{bottom:350.032500px;}
.y163{bottom:350.971500px;}
.y13d{bottom:351.528000px;}
.y6f{bottom:352.423500px;}
.y9{bottom:353.556000px;}
.y117{bottom:353.760000px;}
.yab{bottom:355.278000px;}
.ye9{bottom:357.355500px;}
.y1d3{bottom:364.618500px;}
.y199{bottom:366.471000px;}
.yba{bottom:366.769500px;}
.y162{bottom:369.801000px;}
.y116{bottom:370.197000px;}
.y13c{bottom:370.357500px;}
.y6e{bottom:371.253000px;}
.y36{bottom:371.722500px;}
.yaa{bottom:374.107500px;}
.ye8{bottom:376.185000px;}
.y1d2{bottom:381.879000px;}
.y8{bottom:381.904500px;}
.y198{bottom:382.909500px;}
.y115{bottom:386.635500px;}
.y161{bottom:388.630500px;}
.y13b{bottom:389.187000px;}
.y6d{bottom:390.082500px;}
.ya9{bottom:392.937000px;}
.ye7{bottom:395.014500px;}
.y1d1{bottom:399.139500px;}
.y197{bottom:399.348000px;}
.y114{bottom:403.074000px;}
.y160{bottom:407.460000px;}
.y13a{bottom:408.015000px;}
.y7{bottom:408.759000px;}
.y6c{bottom:408.912000px;}
.ya8{bottom:411.766500px;}
.ye6{bottom:413.844000px;}
.y196{bottom:415.786500px;}
.y1d0{bottom:416.400000px;}
.y113{bottom:419.512500px;}
.y15f{bottom:426.289500px;}
.y6{bottom:426.646500px;}
.y139{bottom:426.844500px;}
.y6b{bottom:427.741500px;}
.ya7{bottom:430.596000px;}
.y195{bottom:432.223500px;}
.ye5{bottom:432.673500px;}
.y1cf{bottom:433.660500px;}
.y112{bottom:435.951000px;}
.y5{bottom:444.534000px;}
.y15e{bottom:445.119000px;}
.y138{bottom:445.674000px;}
.y6a{bottom:446.571000px;}
.y35{bottom:446.872500px;}
.y194{bottom:448.662000px;}
.ya6{bottom:449.425500px;}
.y1ce{bottom:450.919500px;}
.ye4{bottom:451.503000px;}
.y111{bottom:452.389500px;}
.y4{bottom:462.423000px;}
.y15d{bottom:463.948500px;}
.y193{bottom:465.100500px;}
.y69{bottom:465.400500px;}
.y1cd{bottom:468.180000px;}
.ya5{bottom:468.255000px;}
.y110{bottom:468.828000px;}
.y137{bottom:468.987000px;}
.ye3{bottom:470.332500px;}
.y3{bottom:480.310500px;}
.y192{bottom:481.539000px;}
.y15c{bottom:482.778000px;}
.y68{bottom:484.230000px;}
.y34{bottom:484.261500px;}
.y10f{bottom:485.266500px;}
.y1cc{bottom:485.440500px;}
.ya4{bottom:487.084500px;}
.ye2{bottom:489.162000px;}
.y191{bottom:497.977500px;}
.y2{bottom:498.198000px;}
.y15b{bottom:501.606000px;}
.y10e{bottom:501.705000px;}
.y136{bottom:502.611000px;}
.y1cb{bottom:502.701000px;}
.y67{bottom:503.059500px;}
.y33{bottom:503.719500px;}
.ya3{bottom:505.914000px;}
.ye1{bottom:512.475000px;}
.y190{bottom:514.416000px;}
.y1{bottom:516.087000px;}
.y10d{bottom:518.143500px;}
.y1ca{bottom:519.961500px;}
.y15a{bottom:520.435500px;}
.y135{bottom:521.440500px;}
.y66{bottom:521.889000px;}
.y32{bottom:523.176000px;}
.ya2{bottom:524.743500px;}
.y18f{bottom:530.854500px;}
.ye0{bottom:531.303000px;}
.y10c{bottom:534.580500px;}
.y1c9{bottom:537.222000px;}
.y134{bottom:540.270000px;}
.y65{bottom:540.718500px;}
.y31{bottom:542.634000px;}
.ya1{bottom:543.573000px;}
.y18e{bottom:547.293000px;}
.ydf{bottom:550.132500px;}
.y10b{bottom:551.019000px;}
.y1c8{bottom:554.482500px;}
.y133{bottom:559.099500px;}
.y64{bottom:559.548000px;}
.y159{bottom:560.569500px;}
.y30{bottom:562.090500px;}
.ya0{bottom:562.401000px;}
.y18d{bottom:563.731500px;}
.y10a{bottom:567.457500px;}
.yde{bottom:568.962000px;}
.y1c7{bottom:571.743000px;}
.y158{bottom:574.767000px;}
.y132{bottom:577.929000px;}
.y63{bottom:578.377500px;}
.y18c{bottom:580.170000px;}
.y9f{bottom:581.230500px;}
.y2f{bottom:581.547000px;}
.y1fc{bottom:583.234500px;}
.y109{bottom:583.896000px;}
.ydd{bottom:587.791500px;}
.y1c6{bottom:589.002000px;}
.y157{bottom:593.610000px;}
.y18b{bottom:596.607000px;}
.y131{bottom:596.758500px;}
.y62{bottom:597.207000px;}
.y9e{bottom:600.060000px;}
.y108{bottom:600.334500px;}
.y1fb{bottom:600.495000px;}
.y2e{bottom:601.005000px;}
.y1c5{bottom:606.262500px;}
.ydc{bottom:606.621000px;}
.y156{bottom:610.048500px;}
.y18a{bottom:613.045500px;}
.y130{bottom:615.588000px;}
.y61{bottom:616.036500px;}
.y107{bottom:616.773000px;}
.y1fa{bottom:617.754000px;}
.y9d{bottom:618.889500px;}
.y2d{bottom:620.461500px;}
.y1c4{bottom:623.523000px;}
.ydb{bottom:625.450500px;}
.y155{bottom:626.487000px;}
.y189{bottom:629.484000px;}
.y106{bottom:633.211500px;}
.y12f{bottom:634.417500px;}
.y60{bottom:634.866000px;}
.y9c{bottom:637.719000px;}
.y2c{bottom:639.918000px;}
.y1c3{bottom:640.783500px;}
.y154{bottom:642.925500px;}
.yda{bottom:644.280000px;}
.y188{bottom:645.922500px;}
.y12e{bottom:653.247000px;}
.y5f{bottom:653.695500px;}
.y1f9{bottom:656.833500px;}
.y105{bottom:656.851500px;}
.y1c2{bottom:658.044000px;}
.y153{bottom:659.364000px;}
.y2b{bottom:659.376000px;}
.y187{bottom:662.361000px;}
.yd9{bottom:663.109500px;}
.y12d{bottom:672.076500px;}
.y5e{bottom:672.525000px;}
.y1f8{bottom:674.094000px;}
.y1c1{bottom:675.304500px;}
.y9b{bottom:675.402000px;}
.y152{bottom:675.802500px;}
.y186{bottom:678.799500px;}
.y2a{bottom:678.832500px;}
.yd8{bottom:686.422500px;}
.y12c{bottom:690.906000px;}
.y5d{bottom:691.354500px;}
.y104{bottom:691.461000px;}
.y151{bottom:692.239500px;}
.y1c0{bottom:692.565000px;}
.y9a{bottom:694.246500px;}
.y185{bottom:695.238000px;}
.y29{bottom:698.290500px;}
.yd7{bottom:705.252000px;}
.y1f7{bottom:708.613500px;}
.y12b{bottom:709.735500px;}
.y1bf{bottom:709.825500px;}
.y5c{bottom:710.184000px;}
.y99{bottom:710.685000px;}
.y184{bottom:711.676500px;}
.y150{bottom:715.881000px;}
.y28{bottom:717.747000px;}
.y96{bottom:719.296500px;}
.yd6{bottom:724.081500px;}
.y1f6{bottom:725.874000px;}
.y1bd{bottom:727.084500px;}
.y1be{bottom:727.086000px;}
.y98{bottom:727.122000px;}
.y183{bottom:728.115000px;}
.y103{bottom:728.565000px;}
.y5b{bottom:729.013500px;}
.y27{bottom:737.203500px;}
.yd5{bottom:742.911000px;}
.y1f5{bottom:743.134500px;}
.y97{bottom:743.560500px;}
.y1bc{bottom:744.345000px;}
.y182{bottom:744.553500px;}
.y102{bottom:747.394500px;}
.y14f{bottom:747.501000px;}
.y5a{bottom:747.843000px;}
.y26{bottom:756.661500px;}
.y1f4{bottom:760.395000px;}
.y181{bottom:760.992000px;}
.y1bb{bottom:761.605500px;}
.yd4{bottom:766.224000px;}
.y59{bottom:766.671000px;}
.y95{bottom:767.202000px;}
.y25{bottom:776.118000px;}
.y180{bottom:777.429000px;}
.y1f3{bottom:777.655500px;}
.y1ba{bottom:778.866000px;}
.y94{bottom:783.640500px;}
.y14e{bottom:784.605000px;}
.y101{bottom:785.053500px;}
.y58{bottom:785.500500px;}
.y91{bottom:792.252000px;}
.y17f{bottom:793.867500px;}
.y1f2{bottom:794.916000px;}
.y24{bottom:795.574500px;}
.y1b9{bottom:796.126500px;}
.yd3{bottom:799.848000px;}
.y93{bottom:800.079000px;}
.y14d{bottom:803.434500px;}
.y100{bottom:803.883000px;}
.y57{bottom:804.330000px;}
.y17e{bottom:810.306000px;}
.y1f1{bottom:812.176500px;}
.y1b8{bottom:813.387000px;}
.y92{bottom:816.517500px;}
.yd2{bottom:818.677500px;}
.y14c{bottom:822.264000px;}
.yff{bottom:822.712500px;}
.y56{bottom:823.159500px;}
.y17d{bottom:826.744500px;}
.y1f0{bottom:829.437000px;}
.y1b7{bottom:830.647500px;}
.y23{bottom:834.160500px;}
.yd1{bottom:837.507000px;}
.y90{bottom:840.157500px;}
.y14b{bottom:841.093500px;}
.yfe{bottom:841.540500px;}
.y55{bottom:841.989000px;}
.y17c{bottom:843.183000px;}
.y1ef{bottom:846.697500px;}
.y1b6{bottom:847.908000px;}
.y22{bottom:850.300500px;}
.y8c{bottom:855.162000px;}
.yd0{bottom:856.335000px;}
.y8f{bottom:856.596000px;}
.y17b{bottom:859.621500px;}
.y14a{bottom:859.923000px;}
.yfd{bottom:860.370000px;}
.y54{bottom:860.818500px;}
.y1ee{bottom:863.956500px;}
.y1b5{bottom:865.168500px;}
.y21{bottom:866.439000px;}
.y8b{bottom:871.600500px;}
.y8e{bottom:873.034500px;}
.ycf{bottom:875.164500px;}
.y17a{bottom:876.060000px;}
.y149{bottom:878.752500px;}
.yfc{bottom:879.199500px;}
.y53{bottom:879.648000px;}
.y1ed{bottom:881.217000px;}
.y1b4{bottom:886.911000px;}
.y20{bottom:886.918500px;}
.y8d{bottom:889.473000px;}
.y179{bottom:892.498500px;}
.yce{bottom:893.994000px;}
.yfb{bottom:898.029000px;}
.y52{bottom:898.477500px;}
.y1f{bottom:898.719000px;}
.y148{bottom:902.064000px;}
.y178{bottom:908.937000px;}
.ycd{bottom:912.823500px;}
.y8a{bottom:913.113000px;}
.y1ec{bottom:915.738000px;}
.yfa{bottom:916.858500px;}
.y51{bottom:917.307000px;}
.y1e{bottom:919.198500px;}
.y1b3{bottom:920.535000px;}
.y177{bottom:925.375500px;}
.y89{bottom:929.551500px;}
.y1d{bottom:930.997500px;}
.ycc{bottom:931.653000px;}
.y1eb{bottom:932.998500px;}
.yf9{bottom:935.688000px;}
.y50{bottom:936.136500px;}
.y1b2{bottom:938.109000px;}
.y176{bottom:941.812500px;}
.y84{bottom:944.557500px;}
.y88{bottom:945.990000px;}
.y1ea{bottom:950.259000px;}
.ycb{bottom:950.482500px;}
.y1c{bottom:951.477000px;}
.y12a{bottom:954.517500px;}
.y4f{bottom:954.966000px;}
.y1b1{bottom:955.683000px;}
.y175{bottom:958.251000px;}
.yf8{bottom:959.001000px;}
.y83{bottom:960.994500px;}
.y87{bottom:962.428500px;}
.y1e9{bottom:967.519500px;}
.yca{bottom:969.312000px;}
.y129{bottom:973.347000px;}
.y4e{bottom:973.795500px;}
.y174{bottom:974.689500px;}
.y86{bottom:978.867000px;}
.y1b0{bottom:982.224000px;}
.y1e8{bottom:984.780000px;}
.yc9{bottom:988.141500px;}
.y128{bottom:992.176500px;}
.y4d{bottom:992.625000px;}
.y85{bottom:995.305500px;}
.y1b{bottom:996.153000px;}
.y173{bottom:998.331000px;}
.y1af{bottom:999.798000px;}
.y1e7{bottom:1002.040500px;}
.yc8{bottom:1006.971000px;}
.y127{bottom:1011.006000px;}
.y4c{bottom:1011.454500px;}
.y1ae{bottom:1017.372000px;}
.y82{bottom:1018.945500px;}
.y1e6{bottom:1019.299500px;}
.y7f{bottom:1027.483500px;}
.y4b{bottom:1030.284000px;}
.y172{bottom:1032.939000px;}
.y126{bottom:1034.319000px;}
.y81{bottom:1035.384000px;}
.y1a{bottom:1036.485000px;}
.y1e5{bottom:1036.560000px;}
.y1ad{bottom:1043.913000px;}
.y7e{bottom:1043.922000px;}
.y4a{bottom:1049.113500px;}
.y80{bottom:1051.822500px;}
.y171{bottom:1052.172000px;}
.y1e4{bottom:1053.820500px;}
.y1ac{bottom:1061.487000px;}
.y19{bottom:1064.728500px;}
.y49{bottom:1067.943000px;}
.y1e3{bottom:1071.081000px;}
.y7d{bottom:1075.462500px;}
.y48{bottom:1086.772500px;}
.y1ab{bottom:1088.028000px;}
.y1e2{bottom:1088.341500px;}
.y18{bottom:1092.972000px;}
.y47{bottom:1105.602000px;}
.y7c{bottom:1107.082500px;}
.y15{bottom:1136.460000px;}
.y46{bottom:1168.366500px;}
.hf{height:27.655250px;}
.h10{height:27.974981px;}
.h8{height:32.565965px;}
.h2{height:37.993262px;}
.hb{height:38.734848px;}
.h12{height:39.434227px;}
.hd{height:43.038432px;}
.h9{height:43.421105px;}
.ha{height:43.660208px;}
.h5{height:43.815515px;}
.hc{height:48.848947px;}
.h15{height:49.117939px;}
.h3{height:50.931027px;}
.he{height:54.276245px;}
.h11{height:54.575123px;}
.h7{height:55.352206px;}
.h6{height:77.469696px;}
.h13{height:81.722947px;}
.h14{height:81.728947px;}
.h4{height:85.015657px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:230.008102px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:63.251425px;}
.x44{left:68.667000px;}
.x55{left:85.848000px;}
.x49{left:89.653500px;}
.x43{left:193.359000px;}
.x59{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x2c{left:257.884500px;}
.x4{left:269.914500px;}
.x7{left:281.479500px;}
.x6{left:309.468000px;}
.x8{left:313.753500px;}
.x3d{left:319.488000px;}
.x9{left:321.225000px;}
.x47{left:326.602500px;}
.x1b{left:333.765000px;}
.x28{left:335.139000px;}
.x1c{left:348.708000px;}
.x29{left:350.083500px;}
.x35{left:366.769500px;}
.x54{left:373.660500px;}
.x4a{left:377.949000px;}
.x36{left:381.714000px;}
.x4b{left:392.893500px;}
.x50{left:395.515500px;}
.x30{left:397.755000px;}
.x2d{left:412.818000px;}
.x33{left:418.015500px;}
.x53{left:427.968000px;}
.x34{left:432.960000px;}
.x52{left:439.785000px;}
.x2a{left:454.549500px;}
.x2b{left:469.492500px;}
.xc{left:476.098500px;}
.x3b{left:478.047000px;}
.xd{left:483.570000px;}
.xe{left:487.303500px;}
.x51{left:489.022500px;}
.x42{left:490.944000px;}
.x3c{left:492.991500px;}
.xf{left:494.775000px;}
.x2e{left:506.646000px;}
.x14{left:510.666000px;}
.x2f{left:521.589000px;}
.x4c{left:525.507000px;}
.x4d{left:540.450000px;}
.x4e{left:547.855500px;}
.xa{left:551.157000px;}
.xb{left:558.628500px;}
.x4f{left:562.798500px;}
.x45{left:566.313000px;}
.x19{left:576.973500px;}
.x46{left:579.864000px;}
.x1a{left:591.918000px;}
.x15{left:631.314000px;}
.x16{left:646.257000px;}
.x37{left:647.577000px;}
.x17{left:649.650000px;}
.x1d{left:658.575000px;}
.x38{left:662.520000px;}
.x18{left:664.594500px;}
.x48{left:666.319500px;}
.x1e{left:673.519500px;}
.x1f{left:677.329500px;}
.x20{left:692.274000px;}
.x10{left:717.948000px;}
.x11{left:725.419500px;}
.x12{left:729.229500px;}
.x31{left:733.248000px;}
.x13{left:736.702500px;}
.x3e{left:739.872000px;}
.x32{left:748.191000px;}
.x57{left:751.255500px;}
.x3f{left:754.816500px;}
.x56{left:760.999500px;}
.x39{left:764.428500px;}
.x25{left:765.966000px;}
.x40{left:774.729000px;}
.x58{left:778.155000px;}
.x3a{left:779.373000px;}
.x26{left:780.910500px;}
.x27{left:784.720500px;}
.x21{left:798.943500px;}
.x22{left:813.886500px;}
.x23{left:817.698000px;}
.x24{left:832.642500px;}
.x41{left:837.030000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000108pt;}
.ls22{letter-spacing:0.000503pt;}
.ls1{letter-spacing:0.000518pt;}
.ls29{letter-spacing:0.000600pt;}
.ls27{letter-spacing:0.000667pt;}
.ls20{letter-spacing:0.000711pt;}
.ls14{letter-spacing:0.001026pt;}
.ls25{letter-spacing:0.001134pt;}
.ls5{letter-spacing:0.001398pt;}
.ls15{letter-spacing:0.001408pt;}
.ls1f{letter-spacing:0.001552pt;}
.ls4{letter-spacing:0.001718pt;}
.ls24{letter-spacing:0.001818pt;}
.ls2a{letter-spacing:0.002525pt;}
.ls28{letter-spacing:0.002603pt;}
.ls23{letter-spacing:0.002825pt;}
.ls21{letter-spacing:0.002879pt;}
.ls1b{letter-spacing:0.002939pt;}
.ls13{letter-spacing:0.003261pt;}
.ls19{letter-spacing:0.003709pt;}
.ls26{letter-spacing:0.004588pt;}
.ls0{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:11.654640pt;}
.ls1a{letter-spacing:11.780423pt;}
.ls16{letter-spacing:11.954133pt;}
.ls17{letter-spacing:11.959467pt;}
.ls1d{letter-spacing:12.174617pt;}
.lsc{letter-spacing:13.176858pt;}
.lsb{letter-spacing:13.266313pt;}
.ls10{letter-spacing:13.307576pt;}
.lse{letter-spacing:13.347562pt;}
.lsd{letter-spacing:13.438509pt;}
.lsf{letter-spacing:13.443841pt;}
.ls11{letter-spacing:13.476252pt;}
.ls18{letter-spacing:14.371597pt;}
.ls9{letter-spacing:17.002837pt;}
.ls3{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.lsa{letter-spacing:83.815733pt;}
.ls12{letter-spacing:393.864533pt;}
.wsb{word-spacing:-27.864850pt;}
.ws58{word-spacing:-13.283467pt;}
.ws45{word-spacing:-11.955200pt;}
.ws28{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws72{word-spacing:-2.922363pt;}
.ws5f{word-spacing:-2.762961pt;}
.ws8d{word-spacing:-2.550426pt;}
.ws3e{word-spacing:-2.497292pt;}
.ws17{word-spacing:-2.151936pt;}
.ws74{word-spacing:-2.125355pt;}
.ws52{word-spacing:-2.072221pt;}
.ws5c{word-spacing:-2.019087pt;}
.ws98{word-spacing:-2.008474pt;}
.ws8f{word-spacing:-1.753418pt;}
.ws90{word-spacing:-1.700284pt;}
.ws29{word-spacing:-1.594016pt;}
.ws80{word-spacing:-1.487748pt;}
.ws9e{word-spacing:-1.482445pt;}
.ws4c{word-spacing:-1.434614pt;}
.ws9f{word-spacing:-1.291162pt;}
.ws8c{word-spacing:-1.275213pt;}
.ws5d{word-spacing:-1.168945pt;}
.ws33{word-spacing:-1.115811pt;}
.ws8e{word-spacing:-0.956410pt;}
.ws69{word-spacing:-0.903276pt;}
.ws2a{word-spacing:-0.637606pt;}
.ws73{word-spacing:-0.584473pt;}
.ws19{word-spacing:-0.573850pt;}
.ws77{word-spacing:-0.531339pt;}
.wsa2{word-spacing:-0.478208pt;}
.ws91{word-spacing:-0.478205pt;}
.wsa1{word-spacing:-0.430387pt;}
.wsb0{word-spacing:-0.334746pt;}
.ws4d{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.286925pt;}
.ws23{word-spacing:-0.265669pt;}
.ws16{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.wsaf{word-spacing:-0.191283pt;}
.ws42{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.ws79{word-spacing:-0.115740pt;}
.ws20{word-spacing:-0.106268pt;}
.ws11{word-spacing:-0.095642pt;}
.wsd{word-spacing:-0.053134pt;}
.wsbe{word-spacing:-0.047930pt;}
.ws96{word-spacing:-0.047821pt;}
.wsa3{word-spacing:-0.023441pt;}
.wsae{word-spacing:-0.020838pt;}
.wsac{word-spacing:-0.007415pt;}
.wsc4{word-spacing:-0.007006pt;}
.wsbf{word-spacing:-0.003081pt;}
.ws84{word-spacing:-0.002116pt;}
.wse{word-spacing:-0.001052pt;}
.ws27{word-spacing:-0.001000pt;}
.wsc1{word-spacing:-0.000887pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.001318pt;}
.ws1a{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.wsb1{word-spacing:0.077992pt;}
.ws13{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.wsa0{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.wsad{word-spacing:0.179037pt;}
.ws12{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.ws97{word-spacing:0.239104pt;}
.ws32{word-spacing:0.265669pt;}
.wsb5{word-spacing:0.286925pt;}
.ws34{word-spacing:0.318803pt;}
.wsc0{word-spacing:0.334746pt;}
.ws3f{word-spacing:0.371937pt;}
.wsba{word-spacing:0.382566pt;}
.ws24{word-spacing:0.425071pt;}
.ws8b{word-spacing:0.478205pt;}
.ws14{word-spacing:0.526029pt;}
.ws3d{word-spacing:0.584473pt;}
.ws3b{word-spacing:0.637606pt;}
.ws7a{word-spacing:0.690740pt;}
.ws4a{word-spacing:0.743874pt;}
.ws40{word-spacing:0.797008pt;}
.ws4e{word-spacing:0.850142pt;}
.ws4f{word-spacing:0.903276pt;}
.ws53{word-spacing:0.956410pt;}
.ws86{word-spacing:1.009543pt;}
.ws50{word-spacing:1.062677pt;}
.ws65{word-spacing:1.115811pt;}
.wsa5{word-spacing:1.147699pt;}
.ws92{word-spacing:1.168945pt;}
.ws2e{word-spacing:1.222079pt;}
.ws44{word-spacing:1.275213pt;}
.ws47{word-spacing:1.381481pt;}
.ws9d{word-spacing:1.530266pt;}
.ws37{word-spacing:1.540882pt;}
.ws2d{word-spacing:1.594016pt;}
.ws68{word-spacing:1.647150pt;}
.ws5b{word-spacing:1.753418pt;}
.ws38{word-spacing:1.806551pt;}
.wsa6{word-spacing:1.865011pt;}
.ws9c{word-spacing:1.960653pt;}
.ws2b{word-spacing:1.965953pt;}
.ws39{word-spacing:2.019087pt;}
.ws66{word-spacing:2.072221pt;}
.ws7f{word-spacing:2.082853pt;}
.ws10{word-spacing:2.104115pt;}
.ws62{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231616pt;}
.ws51{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws21{word-spacing:2.284756pt;}
.ws36{word-spacing:2.337890pt;}
.wsa8{word-spacing:2.438861pt;}
.ws55{word-spacing:2.444158pt;}
.ws3a{word-spacing:2.603559pt;}
.ws8a{word-spacing:2.656693pt;}
.ws5e{word-spacing:2.709827pt;}
.ws1b{word-spacing:2.861926pt;}
.wsb9{word-spacing:2.864000pt;}
.wsb8{word-spacing:2.864341pt;}
.wsab{word-spacing:2.864350pt;}
.wsb6{word-spacing:2.864674pt;}
.wsaa{word-spacing:2.865246pt;}
.wsb7{word-spacing:2.866364pt;}
.ws99{word-spacing:2.866509pt;}
.ws46{word-spacing:2.869248pt;}
.ws3c{word-spacing:2.922363pt;}
.ws78{word-spacing:3.028630pt;}
.ws4b{word-spacing:3.081764pt;}
.ws70{word-spacing:3.134898pt;}
.wsa9{word-spacing:3.156173pt;}
.ws1c{word-spacing:3.188032pt;}
.ws6f{word-spacing:3.241166pt;}
.ws41{word-spacing:3.294300pt;}
.wsb2{word-spacing:3.299635pt;}
.ws59{word-spacing:3.400567pt;}
.ws30{word-spacing:3.453701pt;}
.ws71{word-spacing:3.506835pt;}
.ws49{word-spacing:3.559969pt;}
.wsbb{word-spacing:3.626904pt;}
.wsbd{word-spacing:3.634381pt;}
.wsbc{word-spacing:3.682202pt;}
.ws25{word-spacing:3.719371pt;}
.ws54{word-spacing:3.772505pt;}
.wsc6{word-spacing:3.777843pt;}
.ws67{word-spacing:3.825638pt;}
.wsc2{word-spacing:3.863091pt;}
.wsc3{word-spacing:3.873485pt;}
.ws76{word-spacing:3.878772pt;}
.ws9b{word-spacing:3.969126pt;}
.ws43{word-spacing:4.091308pt;}
.wsc5{word-spacing:4.112589pt;}
.ws48{word-spacing:4.197575pt;}
.wsb4{word-spacing:4.208230pt;}
.ws9{word-spacing:4.240070pt;}
.ws26{word-spacing:4.303843pt;}
.ws9a{word-spacing:4.303872pt;}
.wsa{word-spacing:4.314458pt;}
.ws60{word-spacing:4.356977pt;}
.ws89{word-spacing:4.410111pt;}
.wsa4{word-spacing:4.590797pt;}
.ws5a{word-spacing:4.888316pt;}
.ws61{word-spacing:4.941450pt;}
.wsb3{word-spacing:5.069005pt;}
.ws95{word-spacing:5.355930pt;}
.ws57{word-spacing:5.525922pt;}
.ws93{word-spacing:5.690675pt;}
.ws35{word-spacing:6.269796pt;}
.ws87{word-spacing:6.482332pt;}
.ws2f{word-spacing:6.535466pt;}
.ws63{word-spacing:6.641733pt;}
.ws94{word-spacing:6.742733pt;}
.ws56{word-spacing:6.748001pt;}
.ws85{word-spacing:6.854269pt;}
.ws7{word-spacing:6.918010pt;}
.ws64{word-spacing:7.491875pt;}
.ws82{word-spacing:7.890432pt;}
.ws81{word-spacing:8.272998pt;}
.wsa7{word-spacing:8.942490pt;}
.ws75{word-spacing:9.457828pt;}
.ws2c{word-spacing:9.564096pt;}
.ws5{word-spacing:10.823338pt;}
.ws6{word-spacing:14.319536pt;}
.ws88{word-spacing:16.909965pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.ws83{word-spacing:257.706291pt;}
.ws7c{word-spacing:322.790400pt;}
.ws6a{word-spacing:336.754074pt;}
.ws7e{word-spacing:340.723200pt;}
.ws6d{word-spacing:345.600922pt;}
.ws7b{word-spacing:346.700800pt;}
.ws7d{word-spacing:352.678400pt;}
.ws6b{word-spacing:801.906995pt;}
.ws6c{word-spacing:810.753843pt;}
.ws6e{word-spacing:2197.292791pt;}
._56{margin-left:-7.021217pt;}
._9{margin-left:-6.025421pt;}
._6{margin-left:-4.718299pt;}
._7{margin-left:-3.145533pt;}
._3{margin-left:-1.338970pt;}
._2d{width:0.892635pt;}
._4{width:2.666225pt;}
._1d{width:3.825638pt;}
._2e{width:9.181594pt;}
._1{width:11.530016pt;}
._c{width:12.497082pt;}
._8{width:14.059315pt;}
._a{width:15.111373pt;}
._10{width:16.142053pt;}
._b{width:17.167642pt;}
._15{width:18.490586pt;}
._52{width:19.603353pt;}
._11{width:20.562806pt;}
._55{width:22.014413pt;}
._0{width:23.058949pt;}
._13{width:23.963374pt;}
._54{width:25.201562pt;}
._2{width:27.188522pt;}
._17{width:28.426619pt;}
._d{width:29.914367pt;}
._16{width:32.390442pt;}
._12{width:35.951559pt;}
._5{width:48.339885pt;}
._53{width:54.993920pt;}
._51{width:78.904320pt;}
._1f{width:239.821312pt;}
._48{width:255.171789pt;}
._30{width:269.661491pt;}
._1e{width:271.000474pt;}
._18{width:296.441139pt;}
._25{width:301.414490pt;}
._2a{width:334.745600pt;}
._26{width:346.700800pt;}
._22{width:358.656000pt;}
._28{width:376.588800pt;}
._2f{width:384.766144pt;}
._24{width:388.544000pt;}
._21{width:400.499200pt;}
._4d{width:446.741875pt;}
._37{width:503.744307pt;}
._20{width:541.124213pt;}
._29{width:592.579394pt;}
._23{width:677.955482pt;}
._2b{width:684.363469pt;}
._35{width:689.623757pt;}
._14{width:717.025075pt;}
._e{width:722.828012pt;}
._27{width:735.866470pt;}
._2c{width:748.283918pt;}
._31{width:775.175168pt;}
._32{width:790.095258pt;}
._49{width:802.337382pt;}
._43{width:819.983258pt;}
._3a{width:841.215693pt;}
._36{width:896.783462pt;}
._33{width:957.420237pt;}
._3e{width:1015.809434pt;}
._34{width:1023.747686pt;}
._44{width:1026.808218pt;}
._42{width:1037.089690pt;}
._3b{width:1074.676838pt;}
._4a{width:1096.626586pt;}
._46{width:1097.726464pt;}
._3f{width:1107.051520pt;}
._3c{width:1149.229453pt;}
._40{width:1218.139226pt;}
._41{width:1225.360179pt;}
._39{width:1232.628941pt;}
._38{width:1255.296000pt;}
._1b{width:1278.967296pt;}
._1a{width:1287.814144pt;}
._4e{width:1313.355964pt;}
._4b{width:1367.866163pt;}
._4c{width:1372.552602pt;}
._47{width:1380.729958pt;}
._45{width:1390.873481pt;}
._4f{width:1406.276011pt;}
._3d{width:1410.665779pt;}
._1c{width:1744.111991pt;}
._19{width:1752.941918pt;}
._50{width:2230.928150pt;}
._f{width:2252.181484pt;}
.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:111.459400pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:1.743170pt;}
.y16{bottom:25.118899pt;}
.y45{bottom:28.346667pt;}
.yb9{bottom:81.480000pt;}
.yf7{bottom:83.328000pt;}
.yc7{bottom:86.117333pt;}
.y1aa{bottom:89.464000pt;}
.y44{bottom:92.113333pt;}
.y14{bottom:93.018667pt;}
.y170{bottom:94.389333pt;}
.yb8{bottom:98.217333pt;}
.y7b{bottom:99.134667pt;}
.yf6{bottom:100.065333pt;}
.yc6{bottom:102.854667pt;}
.y1a9{bottom:105.085333pt;}
.y125{bottom:105.092000pt;}
.y43{bottom:108.850667pt;}
.y13{bottom:108.920000pt;}
.y1e1{bottom:109.310667pt;}
.y16f{bottom:111.126667pt;}
.yb7{bottom:114.954667pt;}
.y7a{bottom:115.872000pt;}
.yf5{bottom:116.801333pt;}
.yc5{bottom:119.592000pt;}
.y1a8{bottom:120.708000pt;}
.y124{bottom:124.498667pt;}
.y1e0{bottom:124.653333pt;}
.y12{bottom:124.820000pt;}
.y42{bottom:125.586667pt;}
.y16e{bottom:127.864000pt;}
.y147{bottom:127.960000pt;}
.yb6{bottom:131.692000pt;}
.y79{bottom:132.609333pt;}
.yf4{bottom:133.538667pt;}
.yc4{bottom:136.329333pt;}
.y123{bottom:139.110667pt;}
.y1df{bottom:139.994667pt;}
.y11{bottom:140.720000pt;}
.y41{bottom:142.324000pt;}
.y1a7{bottom:144.298667pt;}
.y16d{bottom:144.601333pt;}
.y146{bottom:144.697333pt;}
.yb5{bottom:148.429333pt;}
.y78{bottom:149.346667pt;}
.yf3{bottom:150.276000pt;}
.y122{bottom:153.722667pt;}
.y1de{bottom:155.337333pt;}
.y10{bottom:156.621333pt;}
.yc3{bottom:157.050667pt;}
.y40{bottom:159.061333pt;}
.y16c{bottom:161.338667pt;}
.y145{bottom:161.434667pt;}
.yb4{bottom:165.166667pt;}
.yf2{bottom:167.013333pt;}
.y1a6{bottom:167.890667pt;}
.y121{bottom:168.334667pt;}
.y1dd{bottom:170.680000pt;}
.yf{bottom:172.521333pt;}
.y77{bottom:172.725333pt;}
.yc2{bottom:174.984000pt;}
.y3f{bottom:175.798667pt;}
.y16b{bottom:178.076000pt;}
.y144{bottom:178.172000pt;}
.yb3{bottom:181.904000pt;}
.y120{bottom:182.945333pt;}
.y1a5{bottom:183.512000pt;}
.yf1{bottom:183.750667pt;}
.y1dc{bottom:186.022667pt;}
.ye{bottom:188.421333pt;}
.y76{bottom:189.462667pt;}
.y3e{bottom:192.536000pt;}
.y16a{bottom:194.813333pt;}
.y143{bottom:194.909333pt;}
.y11f{bottom:197.557333pt;}
.yb2{bottom:198.641333pt;}
.y1a4{bottom:199.133333pt;}
.yf0{bottom:200.488000pt;}
.y1db{bottom:201.365333pt;}
.y19f{bottom:202.626667pt;}
.yd{bottom:204.322667pt;}
.yc1{bottom:204.872000pt;}
.y75{bottom:206.200000pt;}
.y3d{bottom:209.273333pt;}
.y169{bottom:211.550667pt;}
.y142{bottom:211.646667pt;}
.y11e{bottom:212.169333pt;}
.y1a3{bottom:214.754667pt;}
.yb1{bottom:215.378667pt;}
.y1da{bottom:216.708000pt;}
.yef{bottom:217.225333pt;}
.yc0{bottom:221.609333pt;}
.y74{bottom:222.937333pt;}
.y3c{bottom:226.010667pt;}
.y11d{bottom:226.781333pt;}
.y168{bottom:228.288000pt;}
.y141{bottom:228.384000pt;}
.y1d9{bottom:232.050667pt;}
.yb0{bottom:232.116000pt;}
.y19e{bottom:233.285333pt;}
.yee{bottom:233.962667pt;}
.ybf{bottom:238.346667pt;}
.y73{bottom:239.674667pt;}
.y11c{bottom:241.393333pt;}
.y3b{bottom:242.748000pt;}
.y167{bottom:245.025333pt;}
.y140{bottom:245.121333pt;}
.y1a2{bottom:246.316000pt;}
.y1d8{bottom:247.393333pt;}
.yaf{bottom:248.853333pt;}
.yed{bottom:250.700000pt;}
.y19d{bottom:252.692000pt;}
.ybe{bottom:255.084000pt;}
.y11b{bottom:256.005333pt;}
.y72{bottom:256.412000pt;}
.y3a{bottom:259.485333pt;}
.y166{bottom:261.762667pt;}
.y1d7{bottom:262.734667pt;}
.y1a1{bottom:263.053333pt;}
.yae{bottom:265.590667pt;}
.y13f{bottom:265.844000pt;}
.yc{bottom:266.570667pt;}
.y19c{bottom:267.304000pt;}
.yec{bottom:267.437333pt;}
.y11a{bottom:270.617333pt;}
.y71{bottom:273.149333pt;}
.ybd{bottom:275.806667pt;}
.y39{bottom:276.222667pt;}
.y1d6{bottom:278.077333pt;}
.y165{bottom:278.500000pt;}
.y1a0{bottom:279.790667pt;}
.y19b{bottom:281.916000pt;}
.yad{bottom:282.328000pt;}
.yb{bottom:282.470667pt;}
.yeb{bottom:284.174667pt;}
.y119{bottom:285.229333pt;}
.ybc{bottom:292.544000pt;}
.y38{bottom:292.960000pt;}
.y1d5{bottom:293.420000pt;}
.y164{bottom:295.237333pt;}
.y13e{bottom:295.732000pt;}
.y70{bottom:296.528000pt;}
.ya{bottom:298.370667pt;}
.yac{bottom:299.065333pt;}
.y118{bottom:299.841333pt;}
.yea{bottom:300.912000pt;}
.y1d4{bottom:308.762667pt;}
.ybb{bottom:309.280000pt;}
.y37{bottom:309.697333pt;}
.y19a{bottom:311.140000pt;}
.y163{bottom:311.974667pt;}
.y13d{bottom:312.469333pt;}
.y6f{bottom:313.265333pt;}
.y9{bottom:314.272000pt;}
.y117{bottom:314.453333pt;}
.yab{bottom:315.802667pt;}
.ye9{bottom:317.649333pt;}
.y1d3{bottom:324.105333pt;}
.y199{bottom:325.752000pt;}
.yba{bottom:326.017333pt;}
.y162{bottom:328.712000pt;}
.y116{bottom:329.064000pt;}
.y13c{bottom:329.206667pt;}
.y6e{bottom:330.002667pt;}
.y36{bottom:330.420000pt;}
.yaa{bottom:332.540000pt;}
.ye8{bottom:334.386667pt;}
.y1d2{bottom:339.448000pt;}
.y8{bottom:339.470667pt;}
.y198{bottom:340.364000pt;}
.y115{bottom:343.676000pt;}
.y161{bottom:345.449333pt;}
.y13b{bottom:345.944000pt;}
.y6d{bottom:346.740000pt;}
.ya9{bottom:349.277333pt;}
.ye7{bottom:351.124000pt;}
.y1d1{bottom:354.790667pt;}
.y197{bottom:354.976000pt;}
.y114{bottom:358.288000pt;}
.y160{bottom:362.186667pt;}
.y13a{bottom:362.680000pt;}
.y7{bottom:363.341333pt;}
.y6c{bottom:363.477333pt;}
.ya8{bottom:366.014667pt;}
.ye6{bottom:367.861333pt;}
.y196{bottom:369.588000pt;}
.y1d0{bottom:370.133333pt;}
.y113{bottom:372.900000pt;}
.y15f{bottom:378.924000pt;}
.y6{bottom:379.241333pt;}
.y139{bottom:379.417333pt;}
.y6b{bottom:380.214667pt;}
.ya7{bottom:382.752000pt;}
.y195{bottom:384.198667pt;}
.ye5{bottom:384.598667pt;}
.y1cf{bottom:385.476000pt;}
.y112{bottom:387.512000pt;}
.y5{bottom:395.141333pt;}
.y15e{bottom:395.661333pt;}
.y138{bottom:396.154667pt;}
.y6a{bottom:396.952000pt;}
.y35{bottom:397.220000pt;}
.y194{bottom:398.810667pt;}
.ya6{bottom:399.489333pt;}
.y1ce{bottom:400.817333pt;}
.ye4{bottom:401.336000pt;}
.y111{bottom:402.124000pt;}
.y4{bottom:411.042667pt;}
.y15d{bottom:412.398667pt;}
.y193{bottom:413.422667pt;}
.y69{bottom:413.689333pt;}
.y1cd{bottom:416.160000pt;}
.ya5{bottom:416.226667pt;}
.y110{bottom:416.736000pt;}
.y137{bottom:416.877333pt;}
.ye3{bottom:418.073333pt;}
.y3{bottom:426.942667pt;}
.y192{bottom:428.034667pt;}
.y15c{bottom:429.136000pt;}
.y68{bottom:430.426667pt;}
.y34{bottom:430.454667pt;}
.y10f{bottom:431.348000pt;}
.y1cc{bottom:431.502667pt;}
.ya4{bottom:432.964000pt;}
.ye2{bottom:434.810667pt;}
.y191{bottom:442.646667pt;}
.y2{bottom:442.842667pt;}
.y15b{bottom:445.872000pt;}
.y10e{bottom:445.960000pt;}
.y136{bottom:446.765333pt;}
.y1cb{bottom:446.845333pt;}
.y67{bottom:447.164000pt;}
.y33{bottom:447.750667pt;}
.ya3{bottom:449.701333pt;}
.ye1{bottom:455.533333pt;}
.y190{bottom:457.258667pt;}
.y1{bottom:458.744000pt;}
.y10d{bottom:460.572000pt;}
.y1ca{bottom:462.188000pt;}
.y15a{bottom:462.609333pt;}
.y135{bottom:463.502667pt;}
.y66{bottom:463.901333pt;}
.y32{bottom:465.045333pt;}
.ya2{bottom:466.438667pt;}
.y18f{bottom:471.870667pt;}
.ye0{bottom:472.269333pt;}
.y10c{bottom:475.182667pt;}
.y1c9{bottom:477.530667pt;}
.y134{bottom:480.240000pt;}
.y65{bottom:480.638667pt;}
.y31{bottom:482.341333pt;}
.ya1{bottom:483.176000pt;}
.y18e{bottom:486.482667pt;}
.ydf{bottom:489.006667pt;}
.y10b{bottom:489.794667pt;}
.y1c8{bottom:492.873333pt;}
.y133{bottom:496.977333pt;}
.y64{bottom:497.376000pt;}
.y159{bottom:498.284000pt;}
.y30{bottom:499.636000pt;}
.ya0{bottom:499.912000pt;}
.y18d{bottom:501.094667pt;}
.y10a{bottom:504.406667pt;}
.yde{bottom:505.744000pt;}
.y1c7{bottom:508.216000pt;}
.y158{bottom:510.904000pt;}
.y132{bottom:513.714667pt;}
.y63{bottom:514.113333pt;}
.y18c{bottom:515.706667pt;}
.y9f{bottom:516.649333pt;}
.y2f{bottom:516.930667pt;}
.y1fc{bottom:518.430667pt;}
.y109{bottom:519.018667pt;}
.ydd{bottom:522.481333pt;}
.y1c6{bottom:523.557333pt;}
.y157{bottom:527.653333pt;}
.y18b{bottom:530.317333pt;}
.y131{bottom:530.452000pt;}
.y62{bottom:530.850667pt;}
.y9e{bottom:533.386667pt;}
.y108{bottom:533.630667pt;}
.y1fb{bottom:533.773333pt;}
.y2e{bottom:534.226667pt;}
.y1c5{bottom:538.900000pt;}
.ydc{bottom:539.218667pt;}
.y156{bottom:542.265333pt;}
.y18a{bottom:544.929333pt;}
.y130{bottom:547.189333pt;}
.y61{bottom:547.588000pt;}
.y107{bottom:548.242667pt;}
.y1fa{bottom:549.114667pt;}
.y9d{bottom:550.124000pt;}
.y2d{bottom:551.521333pt;}
.y1c4{bottom:554.242667pt;}
.ydb{bottom:555.956000pt;}
.y155{bottom:556.877333pt;}
.y189{bottom:559.541333pt;}
.y106{bottom:562.854667pt;}
.y12f{bottom:563.926667pt;}
.y60{bottom:564.325333pt;}
.y9c{bottom:566.861333pt;}
.y2c{bottom:568.816000pt;}
.y1c3{bottom:569.585333pt;}
.y154{bottom:571.489333pt;}
.yda{bottom:572.693333pt;}
.y188{bottom:574.153333pt;}
.y12e{bottom:580.664000pt;}
.y5f{bottom:581.062667pt;}
.y1f9{bottom:583.852000pt;}
.y105{bottom:583.868000pt;}
.y1c2{bottom:584.928000pt;}
.y153{bottom:586.101333pt;}
.y2b{bottom:586.112000pt;}
.y187{bottom:588.765333pt;}
.yd9{bottom:589.430667pt;}
.y12d{bottom:597.401333pt;}
.y5e{bottom:597.800000pt;}
.y1f8{bottom:599.194667pt;}
.y1c1{bottom:600.270667pt;}
.y9b{bottom:600.357333pt;}
.y152{bottom:600.713333pt;}
.y186{bottom:603.377333pt;}
.y2a{bottom:603.406667pt;}
.yd8{bottom:610.153333pt;}
.y12c{bottom:614.138667pt;}
.y5d{bottom:614.537333pt;}
.y104{bottom:614.632000pt;}
.y151{bottom:615.324000pt;}
.y1c0{bottom:615.613333pt;}
.y9a{bottom:617.108000pt;}
.y185{bottom:617.989333pt;}
.y29{bottom:620.702667pt;}
.yd7{bottom:626.890667pt;}
.y1f7{bottom:629.878667pt;}
.y12b{bottom:630.876000pt;}
.y1bf{bottom:630.956000pt;}
.y5c{bottom:631.274667pt;}
.y99{bottom:631.720000pt;}
.y184{bottom:632.601333pt;}
.y150{bottom:636.338667pt;}
.y28{bottom:637.997333pt;}
.y96{bottom:639.374667pt;}
.yd6{bottom:643.628000pt;}
.y1f6{bottom:645.221333pt;}
.y1bd{bottom:646.297333pt;}
.y1be{bottom:646.298667pt;}
.y98{bottom:646.330667pt;}
.y183{bottom:647.213333pt;}
.y103{bottom:647.613333pt;}
.y5b{bottom:648.012000pt;}
.y27{bottom:655.292000pt;}
.yd5{bottom:660.365333pt;}
.y1f5{bottom:660.564000pt;}
.y97{bottom:660.942667pt;}
.y1bc{bottom:661.640000pt;}
.y182{bottom:661.825333pt;}
.y102{bottom:664.350667pt;}
.y14f{bottom:664.445333pt;}
.y5a{bottom:664.749333pt;}
.y26{bottom:672.588000pt;}
.y1f4{bottom:675.906667pt;}
.y181{bottom:676.437333pt;}
.y1bb{bottom:676.982667pt;}
.yd4{bottom:681.088000pt;}
.y59{bottom:681.485333pt;}
.y95{bottom:681.957333pt;}
.y25{bottom:689.882667pt;}
.y180{bottom:691.048000pt;}
.y1f3{bottom:691.249333pt;}
.y1ba{bottom:692.325333pt;}
.y94{bottom:696.569333pt;}
.y14e{bottom:697.426667pt;}
.y101{bottom:697.825333pt;}
.y58{bottom:698.222667pt;}
.y91{bottom:704.224000pt;}
.y17f{bottom:705.660000pt;}
.y1f2{bottom:706.592000pt;}
.y24{bottom:707.177333pt;}
.y1b9{bottom:707.668000pt;}
.yd3{bottom:710.976000pt;}
.y93{bottom:711.181333pt;}
.y14d{bottom:714.164000pt;}
.y100{bottom:714.562667pt;}
.y57{bottom:714.960000pt;}
.y17e{bottom:720.272000pt;}
.y1f1{bottom:721.934667pt;}
.y1b8{bottom:723.010667pt;}
.y92{bottom:725.793333pt;}
.yd2{bottom:727.713333pt;}
.y14c{bottom:730.901333pt;}
.yff{bottom:731.300000pt;}
.y56{bottom:731.697333pt;}
.y17d{bottom:734.884000pt;}
.y1f0{bottom:737.277333pt;}
.y1b7{bottom:738.353333pt;}
.y23{bottom:741.476000pt;}
.yd1{bottom:744.450667pt;}
.y90{bottom:746.806667pt;}
.y14b{bottom:747.638667pt;}
.yfe{bottom:748.036000pt;}
.y55{bottom:748.434667pt;}
.y17c{bottom:749.496000pt;}
.y1ef{bottom:752.620000pt;}
.y1b6{bottom:753.696000pt;}
.y22{bottom:755.822667pt;}
.y8c{bottom:760.144000pt;}
.yd0{bottom:761.186667pt;}
.y8f{bottom:761.418667pt;}
.y17b{bottom:764.108000pt;}
.y14a{bottom:764.376000pt;}
.yfd{bottom:764.773333pt;}
.y54{bottom:765.172000pt;}
.y1ee{bottom:767.961333pt;}
.y1b5{bottom:769.038667pt;}
.y21{bottom:770.168000pt;}
.y8b{bottom:774.756000pt;}
.y8e{bottom:776.030667pt;}
.ycf{bottom:777.924000pt;}
.y17a{bottom:778.720000pt;}
.y149{bottom:781.113333pt;}
.yfc{bottom:781.510667pt;}
.y53{bottom:781.909333pt;}
.y1ed{bottom:783.304000pt;}
.y1b4{bottom:788.365333pt;}
.y20{bottom:788.372000pt;}
.y8d{bottom:790.642667pt;}
.y179{bottom:793.332000pt;}
.yce{bottom:794.661333pt;}
.yfb{bottom:798.248000pt;}
.y52{bottom:798.646667pt;}
.y1f{bottom:798.861333pt;}
.y148{bottom:801.834667pt;}
.y178{bottom:807.944000pt;}
.ycd{bottom:811.398667pt;}
.y8a{bottom:811.656000pt;}
.y1ec{bottom:813.989333pt;}
.yfa{bottom:814.985333pt;}
.y51{bottom:815.384000pt;}
.y1e{bottom:817.065333pt;}
.y1b3{bottom:818.253333pt;}
.y177{bottom:822.556000pt;}
.y89{bottom:826.268000pt;}
.y1d{bottom:827.553333pt;}
.ycc{bottom:828.136000pt;}
.y1eb{bottom:829.332000pt;}
.yf9{bottom:831.722667pt;}
.y50{bottom:832.121333pt;}
.y1b2{bottom:833.874667pt;}
.y176{bottom:837.166667pt;}
.y84{bottom:839.606667pt;}
.y88{bottom:840.880000pt;}
.y1ea{bottom:844.674667pt;}
.ycb{bottom:844.873333pt;}
.y1c{bottom:845.757333pt;}
.y12a{bottom:848.460000pt;}
.y4f{bottom:848.858667pt;}
.y1b1{bottom:849.496000pt;}
.y175{bottom:851.778667pt;}
.yf8{bottom:852.445333pt;}
.y83{bottom:854.217333pt;}
.y87{bottom:855.492000pt;}
.y1e9{bottom:860.017333pt;}
.yca{bottom:861.610667pt;}
.y129{bottom:865.197333pt;}
.y4e{bottom:865.596000pt;}
.y174{bottom:866.390667pt;}
.y86{bottom:870.104000pt;}
.y1b0{bottom:873.088000pt;}
.y1e8{bottom:875.360000pt;}
.yc9{bottom:878.348000pt;}
.y128{bottom:881.934667pt;}
.y4d{bottom:882.333333pt;}
.y85{bottom:884.716000pt;}
.y1b{bottom:885.469333pt;}
.y173{bottom:887.405333pt;}
.y1af{bottom:888.709333pt;}
.y1e7{bottom:890.702667pt;}
.yc8{bottom:895.085333pt;}
.y127{bottom:898.672000pt;}
.y4c{bottom:899.070667pt;}
.y1ae{bottom:904.330667pt;}
.y82{bottom:905.729333pt;}
.y1e6{bottom:906.044000pt;}
.y7f{bottom:913.318667pt;}
.y4b{bottom:915.808000pt;}
.y172{bottom:918.168000pt;}
.y126{bottom:919.394667pt;}
.y81{bottom:920.341333pt;}
.y1a{bottom:921.320000pt;}
.y1e5{bottom:921.386667pt;}
.y1ad{bottom:927.922667pt;}
.y7e{bottom:927.930667pt;}
.y4a{bottom:932.545333pt;}
.y80{bottom:934.953333pt;}
.y171{bottom:935.264000pt;}
.y1e4{bottom:936.729333pt;}
.y1ac{bottom:943.544000pt;}
.y19{bottom:946.425333pt;}
.y49{bottom:949.282667pt;}
.y1e3{bottom:952.072000pt;}
.y7d{bottom:955.966667pt;}
.y48{bottom:966.020000pt;}
.y1ab{bottom:967.136000pt;}
.y1e2{bottom:967.414667pt;}
.y18{bottom:971.530667pt;}
.y47{bottom:982.757333pt;}
.y7c{bottom:984.073333pt;}
.y15{bottom:1010.186667pt;}
.y46{bottom:1038.548000pt;}
.hf{height:24.582445pt;}
.h10{height:24.866650pt;}
.h8{height:28.947524pt;}
.h2{height:33.771789pt;}
.hb{height:34.430976pt;}
.h12{height:35.052646pt;}
.hd{height:38.256384pt;}
.h9{height:38.596538pt;}
.ha{height:38.809074pt;}
.h5{height:38.947124pt;}
.hc{height:43.421286pt;}
.h15{height:43.660390pt;}
.h3{height:45.272024pt;}
.he{height:48.245551pt;}
.h11{height:48.511220pt;}
.h7{height:49.201961pt;}
.h6{height:68.861952pt;}
.h13{height:72.642620pt;}
.h14{height:72.647953pt;}
.h4{height:75.569473pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:204.451647pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:56.223489pt;}
.x44{left:61.037333pt;}
.x55{left:76.309333pt;}
.x49{left:79.692000pt;}
.x43{left:171.874667pt;}
.x59{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x2c{left:229.230667pt;}
.x4{left:239.924000pt;}
.x7{left:250.204000pt;}
.x6{left:275.082667pt;}
.x8{left:278.892000pt;}
.x3d{left:283.989333pt;}
.x9{left:285.533333pt;}
.x47{left:290.313333pt;}
.x1b{left:296.680000pt;}
.x28{left:297.901333pt;}
.x1c{left:309.962667pt;}
.x29{left:311.185333pt;}
.x35{left:326.017333pt;}
.x54{left:332.142667pt;}
.x4a{left:335.954667pt;}
.x36{left:339.301333pt;}
.x4b{left:349.238667pt;}
.x50{left:351.569333pt;}
.x30{left:353.560000pt;}
.x2d{left:366.949333pt;}
.x33{left:371.569333pt;}
.x53{left:380.416000pt;}
.x34{left:384.853333pt;}
.x52{left:390.920000pt;}
.x2a{left:404.044000pt;}
.x2b{left:417.326667pt;}
.xc{left:423.198667pt;}
.x3b{left:424.930667pt;}
.xd{left:429.840000pt;}
.xe{left:433.158667pt;}
.x51{left:434.686667pt;}
.x42{left:436.394667pt;}
.x3c{left:438.214667pt;}
.xf{left:439.800000pt;}
.x2e{left:450.352000pt;}
.x14{left:453.925333pt;}
.x2f{left:463.634667pt;}
.x4c{left:467.117333pt;}
.x4d{left:480.400000pt;}
.x4e{left:486.982667pt;}
.xa{left:489.917333pt;}
.xb{left:496.558667pt;}
.x4f{left:500.265333pt;}
.x45{left:503.389333pt;}
.x19{left:512.865333pt;}
.x46{left:515.434667pt;}
.x1a{left:526.149333pt;}
.x15{left:561.168000pt;}
.x16{left:574.450667pt;}
.x37{left:575.624000pt;}
.x17{left:577.466667pt;}
.x1d{left:585.400000pt;}
.x38{left:588.906667pt;}
.x18{left:590.750667pt;}
.x48{left:592.284000pt;}
.x1e{left:598.684000pt;}
.x1f{left:602.070667pt;}
.x20{left:615.354667pt;}
.x10{left:638.176000pt;}
.x11{left:644.817333pt;}
.x12{left:648.204000pt;}
.x31{left:651.776000pt;}
.x13{left:654.846667pt;}
.x3e{left:657.664000pt;}
.x32{left:665.058667pt;}
.x57{left:667.782667pt;}
.x3f{left:670.948000pt;}
.x56{left:676.444000pt;}
.x39{left:679.492000pt;}
.x25{left:680.858667pt;}
.x40{left:688.648000pt;}
.x58{left:691.693333pt;}
.x3a{left:692.776000pt;}
.x26{left:694.142667pt;}
.x27{left:697.529333pt;}
.x21{left:710.172000pt;}
.x22{left:723.454667pt;}
.x23{left:726.842667pt;}
.x24{left:740.126667pt;}
.x41{left:744.026667pt;}
}




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