
    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_a66e23453ff9189da03b7029.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_730c90382935a66c2794aef0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f4d2af8423237d0b75d1a35.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_9e041eefa198477acb9f8c1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_ed08faa5108548b75fc87706.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;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_cf0f03c061143d4918ac98ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3b37c0ee77224106c6c034fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_ac7f141e090c23adefdaaaf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a8a06341a26c1c56c977bdf1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.799000;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);}
.m29{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);}
.m27{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);}
.mc{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);}
.m9{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);}
.mb{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);}
.me{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);}
.m2{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);}
.m1e{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.md{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);}
.m26{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m19{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);}
.mf{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);}
.m12{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);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m20{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);}
.m23{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);}
.ma{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);}
.m7{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);}
.m14{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);}
.m4{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);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m1f{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);}
.m18{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);}
.m13{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);}
.m1a{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);}
.m5{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);}
.m8{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);}
.v4{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:24.690000px;}
.v6{vertical-align:66.384000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls1c{letter-spacing:0.000638px;}
.lsb{letter-spacing:0.000810px;}
.ls18{letter-spacing:0.001580px;}
.ls7{letter-spacing:0.001933px;}
.ls13{letter-spacing:0.002725px;}
.ls35{letter-spacing:0.002841px;}
.lsf{letter-spacing:0.004766px;}
.ls10{letter-spacing:0.005108px;}
.ls37{letter-spacing:0.503764px;}
.ls2d{letter-spacing:0.734012px;}
.ls2c{letter-spacing:0.744583px;}
.ls12{letter-spacing:0.747762px;}
.ls2f{letter-spacing:1.194612px;}
.ls1b{letter-spacing:1.195512px;}
.ls20{letter-spacing:1.348200px;}
.ls23{letter-spacing:1.414741px;}
.ls27{letter-spacing:1.420741px;}
.ls14{letter-spacing:1.433108px;}
.ls2b{letter-spacing:1.464783px;}
.ls28{letter-spacing:1.491986px;}
.ls29{letter-spacing:1.942954px;}
.ls2{letter-spacing:2.151936px;}
.ls26{letter-spacing:2.927108px;}
.ls5{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls1f{letter-spacing:3.733200px;}
.ls2a{letter-spacing:3.739200px;}
.ls0{letter-spacing:8.367300px;}
.ls9{letter-spacing:11.954850px;}
.ls24{letter-spacing:13.419634px;}
.ls30{letter-spacing:13.448400px;}
.ls33{letter-spacing:13.454400px;}
.ls34{letter-spacing:13.749177px;}
.ls25{letter-spacing:13.866783px;}
.ls38{letter-spacing:14.426871px;}
.ls31{letter-spacing:14.656282px;}
.ls15{letter-spacing:14.941580px;}
.ls17{letter-spacing:14.942100px;}
.ls16{letter-spacing:14.943986px;}
.lsc{letter-spacing:15.017778px;}
.lsd{letter-spacing:15.147745px;}
.ls32{letter-spacing:15.326871px;}
.ls1a{letter-spacing:15.660783px;}
.ls11{letter-spacing:15.686100px;}
.ls19{letter-spacing:15.692725px;}
.ls1e{letter-spacing:15.993634px;}
.lse{letter-spacing:16.418285px;}
.ls1d{letter-spacing:17.929258px;}
.ls22{letter-spacing:18.075483px;}
.ls36{letter-spacing:18.985694px;}
.ls21{letter-spacing:20.335200px;}
.ls2e{letter-spacing:22.742145px;}
.ls4{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls8{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;}
}
.ws70{word-spacing:-16.139412px;}
.ws25{word-spacing:-14.943900px;}
.ws8{word-spacing:-14.355754px;}
.ws9e{word-spacing:-13.449600px;}
.wse{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws5f{word-spacing:-4.064741px;}
.ws81{word-spacing:-3.466985px;}
.ws76{word-spacing:-3.168107px;}
.ws58{word-spacing:-2.988780px;}
.ws30{word-spacing:-2.929004px;}
.ws28{word-spacing:-2.869229px;}
.ws8e{word-spacing:-2.749678px;}
.ws3c{word-spacing:-2.689902px;}
.ws6e{word-spacing:-2.630126px;}
.ws7c{word-spacing:-2.391024px;}
.ws0{word-spacing:-2.092140px;}
.ws2{word-spacing:-2.089988px;}
.ws33{word-spacing:-2.032370px;}
.ws50{word-spacing:-1.853044px;}
.ws19{word-spacing:-1.793268px;}
.ws67{word-spacing:-1.733492px;}
.ws6{word-spacing:-1.613952px;}
.ws26{word-spacing:-1.613941px;}
.ws91{word-spacing:-1.554166px;}
.ws2f{word-spacing:-1.494390px;}
.ws6a{word-spacing:-1.434614px;}
.ws45{word-spacing:-1.374839px;}
.ws69{word-spacing:-1.315063px;}
.ws68{word-spacing:-1.255288px;}
.ws43{word-spacing:-1.195512px;}
.ws63{word-spacing:-1.135736px;}
.ws61{word-spacing:-1.075961px;}
.ws48{word-spacing:-1.016185px;}
.ws65{word-spacing:-0.956410px;}
.ws6f{word-spacing:-0.898859px;}
.ws24{word-spacing:-0.896634px;}
.ws44{word-spacing:-0.836858px;}
.ws56{word-spacing:-0.777083px;}
.ws62{word-spacing:-0.717307px;}
.ws4b{word-spacing:-0.597756px;}
.wscb{word-spacing:-0.537984px;}
.ws3a{word-spacing:-0.537980px;}
.ws79{word-spacing:-0.478205px;}
.ws23{word-spacing:-0.418429px;}
.ws5c{word-spacing:-0.358654px;}
.wsa2{word-spacing:-0.322790px;}
.ws15{word-spacing:-0.298878px;}
.wsa4{word-spacing:-0.283442px;}
.ws9c{word-spacing:-0.268992px;}
.ws1c{word-spacing:-0.239102px;}
.ws95{word-spacing:-0.215194px;}
.ws1b{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.161395px;}
.ws13{word-spacing:-0.119551px;}
.wsa5{word-spacing:-0.107597px;}
.ws4a{word-spacing:-0.089654px;}
.ws17{word-spacing:-0.059776px;}
.wsa6{word-spacing:-0.053798px;}
.wsb9{word-spacing:-0.011789px;}
.wsa0{word-spacing:-0.009859px;}
.wsb3{word-spacing:-0.006806px;}
.wsc5{word-spacing:-0.005520px;}
.wsb4{word-spacing:-0.003139px;}
.wsc{word-spacing:-0.002514px;}
.wsb8{word-spacing:-0.002429px;}
.wsa8{word-spacing:-0.002304px;}
.ws46{word-spacing:-0.002192px;}
.wsc9{word-spacing:-0.000806px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:0.000868px;}
.ws3f{word-spacing:0.020786px;}
.wsf{word-spacing:0.047821px;}
.wsa7{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws9d{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.wsba{word-spacing:0.161395px;}
.ws12{word-spacing:0.179327px;}
.ws97{word-spacing:0.215194px;}
.ws29{word-spacing:0.237985px;}
.ws11{word-spacing:0.239102px;}
.wsaf{word-spacing:0.268992px;}
.ws34{word-spacing:0.298878px;}
.wsb1{word-spacing:0.322790px;}
.ws1f{word-spacing:0.358654px;}
.ws6b{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.ws3b{word-spacing:0.537980px;}
.ws99{word-spacing:0.591782px;}
.ws75{word-spacing:0.597756px;}
.ws31{word-spacing:0.657532px;}
.wsc6{word-spacing:0.699379px;}
.ws2e{word-spacing:0.717307px;}
.ws4d{word-spacing:0.777083px;}
.ws72{word-spacing:0.836858px;}
.wsbd{word-spacing:0.860774px;}
.ws27{word-spacing:0.896634px;}
.wsa9{word-spacing:0.914573px;}
.ws4f{word-spacing:0.956410px;}
.wsc8{word-spacing:0.968371px;}
.wsb7{word-spacing:1.129766px;}
.ws57{word-spacing:1.135736px;}
.wsab{word-spacing:1.183565px;}
.ws3e{word-spacing:1.195512px;}
.ws4c{word-spacing:1.255288px;}
.ws5a{word-spacing:1.315063px;}
.ws71{word-spacing:1.374839px;}
.ws7a{word-spacing:1.434614px;}
.ws60{word-spacing:1.494390px;}
.ws89{word-spacing:1.554166px;}
.ws7f{word-spacing:1.673717px;}
.ws5e{word-spacing:1.733492px;}
.ws38{word-spacing:1.793268px;}
.ws41{word-spacing:1.853044px;}
.wsac{word-spacing:1.882944px;}
.ws2b{word-spacing:1.912819px;}
.ws3d{word-spacing:1.972595px;}
.ws73{word-spacing:2.092146px;}
.ws32{word-spacing:2.151922px;}
.wsbb{word-spacing:2.151936px;}
.ws1d{word-spacing:2.211697px;}
.ws9a{word-spacing:2.259533px;}
.ws18{word-spacing:2.271473px;}
.ws4e{word-spacing:2.510575px;}
.ws7b{word-spacing:2.570351px;}
.ws53{word-spacing:2.689902px;}
.ws9b{word-spacing:2.689920px;}
.wsa1{word-spacing:2.743718px;}
.ws5b{word-spacing:2.809453px;}
.ws1a{word-spacing:3.048556px;}
.ws93{word-spacing:3.108331px;}
.wsbf{word-spacing:3.219610px;}
.wsb6{word-spacing:3.219782px;}
.wsbc{word-spacing:3.221347px;}
.wsae{word-spacing:3.222432px;}
.wsbe{word-spacing:3.222490px;}
.wsb0{word-spacing:3.222902px;}
.wsc4{word-spacing:3.223958px;}
.wsb2{word-spacing:3.224208px;}
.wsca{word-spacing:3.224630px;}
.wsc0{word-spacing:3.225082px;}
.wsa3{word-spacing:3.227904px;}
.ws8a{word-spacing:3.347434px;}
.ws94{word-spacing:3.407209px;}
.wscc{word-spacing:3.496896px;}
.ws59{word-spacing:3.526760px;}
.ws40{word-spacing:3.646312px;}
.ws87{word-spacing:3.706087px;}
.ws55{word-spacing:3.825638px;}
.ws82{word-spacing:3.885414px;}
.ws84{word-spacing:3.945190px;}
.ws80{word-spacing:4.004965px;}
.ws6d{word-spacing:4.064741px;}
.ws1e{word-spacing:4.077546px;}
.ws22{word-spacing:4.124516px;}
.ws20{word-spacing:4.303872px;}
.wsc1{word-spacing:4.357670px;}
.ws35{word-spacing:4.483170px;}
.ws98{word-spacing:4.649411px;}
.ws66{word-spacing:4.722272px;}
.ws86{word-spacing:4.841824px;}
.ws77{word-spacing:4.901599px;}
.ws83{word-spacing:4.961375px;}
.ws52{word-spacing:5.080926px;}
.ws14{word-spacing:5.320028px;}
.wsc3{word-spacing:5.541235px;}
.ws5d{word-spacing:5.559131px;}
.ws54{word-spacing:5.798233px;}
.wsc7{word-spacing:5.864026px;}
.ws39{word-spacing:5.917784px;}
.ws78{word-spacing:5.977560px;}
.ws88{word-spacing:6.097111px;}
.ws74{word-spacing:6.156887px;}
.ws8d{word-spacing:6.216662px;}
.ws2c{word-spacing:6.336214px;}
.ws8b{word-spacing:6.455765px;}
.wsaa{word-spacing:6.455808px;}
.ws21{word-spacing:6.515540px;}
.ws85{word-spacing:6.874194px;}
.ws8f{word-spacing:7.113296px;}
.ws7d{word-spacing:7.471950px;}
.wsb5{word-spacing:7.477978px;}
.ws7e{word-spacing:7.531726px;}
.ws64{word-spacing:7.591501px;}
.ws8c{word-spacing:7.711052px;}
.ws90{word-spacing:7.890379px;}
.ws92{word-spacing:8.009930px;}
.wsad{word-spacing:8.015962px;}
.ws51{word-spacing:8.368584px;}
.ws36{word-spacing:8.787013px;}
.ws6c{word-spacing:13.389734px;}
.wsc2{word-spacing:16.797567px;}
.ws37{word-spacing:21.399665px;}
.ws1{word-spacing:22.179541px;}
.ws10{word-spacing:41.838000px;}
.ws9{word-spacing:46.035293px;}
.wsb{word-spacing:46.053000px;}
.wsa{word-spacing:46.059000px;}
.ws9f{word-spacing:58.282666px;}
.wsd{word-spacing:60.999000px;}
.ws49{word-spacing:789.874778px;}
.ws42{word-spacing:823.349114px;}
.ws47{word-spacing:939.851759px;}
._d{margin-left:-26.600142px;}
._4{margin-left:-18.620046px;}
._b{margin-left:-7.707060px;}
._a{margin-left:-6.680327px;}
._2{margin-left:-5.397721px;}
._e{margin-left:-4.309861px;}
._1{margin-left:-3.096367px;}
._5{margin-left:-1.506341px;}
._8{width:2.045401px;}
._3{width:3.933223px;}
._c{width:6.694867px;}
._0{width:10.879128px;}
._1b{width:12.863705px;}
._f{width:13.963615px;}
._15{width:15.956093px;}
._14{width:17.167548px;}
._13{width:18.195684px;}
._10{width:19.259694px;}
._6{width:21.007486px;}
._17{width:22.475626px;}
._1f{width:23.617379px;}
._1d{width:24.998152px;}
._16{width:26.062162px;}
._19{width:27.090298px;}
._29{width:29.988892px;}
._1e{width:31.083312px;}
._7{width:33.892992px;}
._18{width:36.881545px;}
._20{width:39.284520px;}
._1c{width:41.980439px;}
._22{width:43.038432px;}
._1a{width:45.202304px;}
._9{width:54.423634px;}
._28{width:61.868160px;}
._27{width:88.767360px;}
._24{width:195.557184px;}
._23{width:230.364749px;}
._25{width:251.023334px;}
._26{width:257.855731px;}
._11{width:1783.686829px;}
._21{width:2550.774829px;}
._12{width:2574.684829px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs9{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y4c{bottom:45.921000px;}
.y4b{bottom:100.006500px;}
.y17{bottom:100.260000px;}
.y140{bottom:100.386000px;}
.y1f9{bottom:105.961500px;}
.y1a1{bottom:114.315000px;}
.y112{bottom:116.362500px;}
.y16{bottom:118.147500px;}
.y7b{bottom:119.236500px;}
.y4a{bottom:120.898500px;}
.y13f{bottom:121.278000px;}
.yc3{bottom:121.860000px;}
.y1f8{bottom:125.112000px;}
.ye1{bottom:127.035000px;}
.y1a0{bottom:135.205500px;}
.y18c{bottom:135.729000px;}
.y15{bottom:136.035000px;}
.y1c2{bottom:136.221000px;}
.y111{bottom:137.253000px;}
.y7a{bottom:140.128500px;}
.y49{bottom:141.789000px;}
.y13e{bottom:142.170000px;}
.yc2{bottom:142.750500px;}
.y1f7{bottom:144.262500px;}
.y14{bottom:153.922500px;}
.y1c1{bottom:155.371500px;}
.y19f{bottom:156.097500px;}
.y18b{bottom:156.621000px;}
.y110{bottom:158.145000px;}
.y79{bottom:161.020500px;}
.y48{bottom:162.681000px;}
.y1f6{bottom:163.413000px;}
.yc1{bottom:163.642500px;}
.y13d{bottom:167.544000px;}
.y13{bottom:171.811500px;}
.y1c0{bottom:174.522000px;}
.y19e{bottom:176.989500px;}
.y18a{bottom:177.511500px;}
.y10f{bottom:179.037000px;}
.y78{bottom:181.911000px;}
.y1f5{bottom:182.563500px;}
.y47{bottom:183.573000px;}
.yc0{bottom:184.534500px;}
.y160{bottom:185.478000px;}
.y9f{bottom:189.483000px;}
.y12{bottom:189.699000px;}
.y1bf{bottom:193.672500px;}
.y19d{bottom:197.880000px;}
.y189{bottom:198.403500px;}
.y10e{bottom:199.927500px;}
.y1f4{bottom:201.714000px;}
.y77{bottom:202.803000px;}
.y13c{bottom:202.887000px;}
.y46{bottom:204.463500px;}
.ybf{bottom:205.425000px;}
.y15f{bottom:206.368500px;}
.y11{bottom:207.586500px;}
.y9e{bottom:210.373500px;}
.y1be{bottom:212.823000px;}
.y188{bottom:219.295500px;}
.y10d{bottom:220.819500px;}
.y1f3{bottom:220.864500px;}
.ybe{bottom:223.240500px;}
.y19c{bottom:223.255500px;}
.y76{bottom:223.695000px;}
.y13b{bottom:223.779000px;}
.y45{bottom:225.355500px;}
.y10{bottom:225.475500px;}
.ybd{bottom:226.317000px;}
.y15e{bottom:227.260500px;}
.y9d{bottom:231.265500px;}
.y1bc{bottom:231.973500px;}
.y1bd{bottom:236.856000px;}
.y1f1{bottom:240.015000px;}
.y187{bottom:240.187500px;}
.y10c{bottom:241.711500px;}
.y75{bottom:244.585500px;}
.y13a{bottom:244.669500px;}
.y1f2{bottom:244.897500px;}
.y15d{bottom:248.152500px;}
.y1bb{bottom:251.124000px;}
.y9c{bottom:252.157500px;}
.yf{bottom:252.330000px;}
.y44{bottom:255.213000px;}
.y19b{bottom:258.597000px;}
.y1f0{bottom:259.165500px;}
.y186{bottom:261.078000px;}
.y10b{bottom:262.602000px;}
.ybc{bottom:264.618000px;}
.y74{bottom:265.477500px;}
.y139{bottom:265.561500px;}
.y15c{bottom:269.043000px;}
.ye{bottom:270.217500px;}
.y1ba{bottom:270.274500px;}
.y9b{bottom:273.048000px;}
.y1ef{bottom:278.316000px;}
.y19a{bottom:279.489000px;}
.y185{bottom:281.970000px;}
.y1ee{bottom:283.198500px;}
.y10a{bottom:283.494000px;}
.y73{bottom:286.369500px;}
.y138{bottom:286.453500px;}
.yd{bottom:288.105000px;}
.y1b9{bottom:289.425000px;}
.y15b{bottom:289.935000px;}
.y43{bottom:295.233000px;}
.y1ed{bottom:297.466500px;}
.y9a{bottom:298.423500px;}
.y199{bottom:300.381000px;}
.y184{bottom:302.862000px;}
.y109{bottom:304.386000px;}
.ybb{bottom:304.914000px;}
.yc{bottom:305.994000px;}
.y72{bottom:307.261500px;}
.y137{bottom:307.344000px;}
.y15a{bottom:310.827000px;}
.y42{bottom:311.373000px;}
.y1b8{bottom:313.059000px;}
.y1ec{bottom:316.617000px;}
.y99{bottom:319.315500px;}
.y198{bottom:321.273000px;}
.y183{bottom:323.752500px;}
.yb{bottom:323.881500px;}
.y108{bottom:325.278000px;}
.yba{bottom:325.806000px;}
.y71{bottom:328.152000px;}
.y136{bottom:328.236000px;}
.y159{bottom:331.717500px;}
.y41{bottom:331.852500px;}
.y1eb{bottom:335.767500px;}
.y98{bottom:340.206000px;}
.ya{bottom:341.769000px;}
.y197{bottom:342.163500px;}
.y40{bottom:343.651500px;}
.y182{bottom:344.644500px;}
.y107{bottom:346.168500px;}
.yb8{bottom:346.698000px;}
.y70{bottom:349.044000px;}
.y135{bottom:349.128000px;}
.yb9{bottom:352.122000px;}
.y158{bottom:352.609500px;}
.y1b7{bottom:352.960500px;}
.y1ea{bottom:354.918000px;}
.y9{bottom:359.658000px;}
.y97{bottom:361.098000px;}
.y196{bottom:363.055500px;}
.y3f{bottom:364.131000px;}
.y181{bottom:365.536500px;}
.y106{bottom:367.060500px;}
.yb7{bottom:367.588500px;}
.y6f{bottom:369.936000px;}
.y134{bottom:370.018500px;}
.y1b6{bottom:372.459000px;}
.y157{bottom:373.501500px;}
.y1e9{bottom:374.070000px;}
.y8{bottom:377.545500px;}
.y3e{bottom:380.271000px;}
.y96{bottom:381.990000px;}
.y195{bottom:383.947500px;}
.y180{bottom:386.427000px;}
.y105{bottom:387.952500px;}
.yb6{bottom:388.480500px;}
.y6e{bottom:390.826500px;}
.y133{bottom:390.910500px;}
.y1b5{bottom:391.957500px;}
.y3d{bottom:392.070000px;}
.y1e8{bottom:393.220500px;}
.y156{bottom:394.392000px;}
.y7{bottom:395.433000px;}
.y95{bottom:402.880500px;}
.y194{bottom:404.838000px;}
.y104{bottom:408.843000px;}
.y1b4{bottom:411.456000px;}
.y6d{bottom:411.718500px;}
.y132{bottom:411.802500px;}
.y1e7{bottom:412.371000px;}
.y3c{bottom:412.549500px;}
.y155{bottom:412.554000px;}
.y6{bottom:413.322000px;}
.y154{bottom:415.284000px;}
.y94{bottom:423.772500px;}
.y3b{bottom:424.350000px;}
.y193{bottom:425.730000px;}
.yb5{bottom:426.781500px;}
.y103{bottom:429.735000px;}
.y1b3{bottom:430.954500px;}
.y1e6{bottom:431.521500px;}
.y6c{bottom:432.610500px;}
.y131{bottom:432.694500px;}
.y153{bottom:436.176000px;}
.y5{bottom:437.187000px;}
.y93{bottom:444.664500px;}
.y3a{bottom:444.829500px;}
.y17f{bottom:447.144000px;}
.y1b2{bottom:450.454500px;}
.y102{bottom:450.627000px;}
.y1e5{bottom:450.672000px;}
.y192{bottom:451.104000px;}
.y6b{bottom:453.501000px;}
.y130{bottom:453.585000px;}
.y4{bottom:455.074500px;}
.y152{bottom:457.068000px;}
.y39{bottom:460.968000px;}
.yb4{bottom:465.082500px;}
.y92{bottom:465.555000px;}
.y17e{bottom:468.036000px;}
.y1e4{bottom:469.822500px;}
.y101{bottom:471.517500px;}
.y191{bottom:471.996000px;}
.y38{bottom:472.768500px;}
.y3{bottom:472.963500px;}
.y6a{bottom:474.393000px;}
.y12f{bottom:474.477000px;}
.y151{bottom:477.958500px;}
.y1b1{bottom:485.095500px;}
.yb3{bottom:485.974500px;}
.y91{bottom:486.447000px;}
.y17d{bottom:488.928000px;}
.y1e3{bottom:488.973000px;}
.y2{bottom:490.851000px;}
.y100{bottom:492.409500px;}
.y190{bottom:492.888000px;}
.y37{bottom:493.248000px;}
.y69{bottom:495.285000px;}
.y12e{bottom:495.369000px;}
.y150{bottom:498.850500px;}
.y36{bottom:505.047000px;}
.yb2{bottom:506.866500px;}
.ye0{bottom:507.339000px;}
.y1e2{bottom:508.123500px;}
.y1b0{bottom:509.077500px;}
.y17c{bottom:509.818500px;}
.y90{bottom:511.822500px;}
.yff{bottom:513.301500px;}
.y1{bottom:514.716000px;}
.y68{bottom:516.175500px;}
.y12d{bottom:516.259500px;}
.y18f{bottom:518.262000px;}
.y14f{bottom:519.742500px;}
.y35{bottom:525.526500px;}
.y1e1{bottom:527.274000px;}
.yb1{bottom:527.757000px;}
.ydf{bottom:528.229500px;}
.y17b{bottom:530.710500px;}
.y8f{bottom:532.713000px;}
.yfe{bottom:534.192000px;}
.y67{bottom:537.067500px;}
.y12b{bottom:537.151500px;}
.y14e{bottom:540.633000px;}
.y34{bottom:541.666500px;}
.y12c{bottom:542.575500px;}
.y1e0{bottom:546.424500px;}
.y1af{bottom:547.902000px;}
.yde{bottom:549.121500px;}
.y17a{bottom:551.602500px;}
.yb0{bottom:553.132500px;}
.y33{bottom:553.465500px;}
.y8e{bottom:553.605000px;}
.yfd{bottom:555.084000px;}
.y66{bottom:557.959500px;}
.y12a{bottom:558.043500px;}
.y14d{bottom:561.525000px;}
.y1df{bottom:565.575000px;}
.y1ae{bottom:567.400500px;}
.y32{bottom:569.605500px;}
.ydd{bottom:570.013500px;}
.y179{bottom:572.494500px;}
.y31{bottom:573.945000px;}
.y8d{bottom:574.497000px;}
.yfc{bottom:575.976000px;}
.y65{bottom:578.851500px;}
.y129{bottom:578.934000px;}
.y1de{bottom:584.725500px;}
.y30{bottom:585.745500px;}
.y14c{bottom:586.899000px;}
.y1ad{bottom:586.900500px;}
.yaf{bottom:588.474000px;}
.ydc{bottom:590.904000px;}
.y178{bottom:593.385000px;}
.y8c{bottom:595.387500px;}
.yfb{bottom:596.868000px;}
.y64{bottom:599.742000px;}
.y128{bottom:599.826000px;}
.y1dd{bottom:603.876000px;}
.y2f{bottom:606.225000px;}
.yae{bottom:609.366000px;}
.ydb{bottom:611.796000px;}
.y177{bottom:614.277000px;}
.y1ac{bottom:615.364500px;}
.y8b{bottom:616.279500px;}
.yfa{bottom:617.758500px;}
.y63{bottom:620.634000px;}
.y127{bottom:620.718000px;}
.y14b{bottom:622.242000px;}
.y2e{bottom:622.363500px;}
.y1dc{bottom:623.026500px;}
.yad{bottom:630.258000px;}
.yda{bottom:632.688000px;}
.y2d{bottom:634.164000px;}
.y176{bottom:635.169000px;}
.y8a{bottom:637.171500px;}
.y62{bottom:641.526000px;}
.y126{bottom:641.608500px;}
.y1db{bottom:642.177000px;}
.yf9{bottom:643.134000px;}
.y1ab{bottom:643.830000px;}
.yac{bottom:651.148500px;}
.yd9{bottom:653.580000px;}
.y2c{bottom:654.643500px;}
.y175{bottom:656.059500px;}
.y89{bottom:658.062000px;}
.y1da{bottom:661.327500px;}
.y61{bottom:662.416500px;}
.y125{bottom:662.500500px;}
.y1aa{bottom:663.328500px;}
.y14a{bottom:664.024500px;}
.y2b{bottom:666.442500px;}
.yab{bottom:672.040500px;}
.yd8{bottom:674.470500px;}
.y174{bottom:676.951500px;}
.yf8{bottom:678.475500px;}
.y88{bottom:678.954000px;}
.y1d9{bottom:680.478000px;}
.y1a9{bottom:682.827000px;}
.y60{bottom:683.308500px;}
.y149{bottom:684.916500px;}
.y2a{bottom:686.922000px;}
.y124{bottom:687.876000px;}
.yaa{bottom:692.932500px;}
.yd7{bottom:695.362500px;}
.y173{bottom:697.843500px;}
.yf7{bottom:699.367500px;}
.y1d8{bottom:699.628500px;}
.y87{bottom:699.846000px;}
.y1a8{bottom:702.327000px;}
.y29{bottom:703.062000px;}
.y5f{bottom:704.200500px;}
.y148{bottom:705.808500px;}
.ya9{bottom:713.824500px;}
.y28{bottom:714.861000px;}
.yd6{bottom:716.254500px;}
.y172{bottom:718.734000px;}
.y1d7{bottom:718.779000px;}
.yf6{bottom:720.259500px;}
.y86{bottom:720.736500px;}
.y1a7{bottom:721.825500px;}
.y123{bottom:723.217500px;}
.y5e{bottom:725.091000px;}
.y147{bottom:726.699000px;}
.y27{bottom:735.340500px;}
.yd5{bottom:737.145000px;}
.y1d6{bottom:737.929500px;}
.y171{bottom:739.626000px;}
.yf5{bottom:741.150000px;}
.y85{bottom:741.628500px;}
.y122{bottom:744.109500px;}
.y5d{bottom:745.983000px;}
.y26{bottom:747.141000px;}
.y146{bottom:747.591000px;}
.y1a6{bottom:750.289500px;}
.ya8{bottom:752.125500px;}
.y1d5{bottom:757.081500px;}
.yd4{bottom:758.037000px;}
.y170{bottom:760.518000px;}
.yf4{bottom:762.042000px;}
.y84{bottom:762.520500px;}
.y121{bottom:765.001500px;}
.y5c{bottom:766.875000px;}
.y25{bottom:767.620500px;}
.y145{bottom:768.483000px;}
.y1a5{bottom:769.789500px;}
.y1d4{bottom:776.232000px;}
.yd3{bottom:778.929000px;}
.y24{bottom:779.419500px;}
.yf3{bottom:782.934000px;}
.y83{bottom:783.411000px;}
.y120{bottom:785.892000px;}
.y5b{bottom:787.765500px;}
.y1a4{bottom:789.288000px;}
.y144{bottom:789.375000px;}
.ya7{bottom:790.426500px;}
.y1d3{bottom:795.382500px;}
.yd2{bottom:799.819500px;}
.y23{bottom:799.899000px;}
.yf2{bottom:803.824500px;}
.y18e{bottom:804.303000px;}
.y11f{bottom:806.784000px;}
.y5a{bottom:808.657500px;}
.y82{bottom:808.786500px;}
.ya6{bottom:811.317000px;}
.y1d2{bottom:814.533000px;}
.y143{bottom:814.749000px;}
.yd1{bottom:820.711500px;}
.y16f{bottom:821.235000px;}
.yf1{bottom:824.716500px;}
.y1a3{bottom:826.719000px;}
.y11e{bottom:827.676000px;}
.y18d{bottom:829.678500px;}
.ya5{bottom:832.209000px;}
.y1d1{bottom:833.683500px;}
.y59{bottom:834.033000px;}
.y142{bottom:836.641500px;}
.yd0{bottom:841.603500px;}
.y16e{bottom:842.127000px;}
.y22{bottom:844.575000px;}
.yef{bottom:845.608500px;}
.y81{bottom:847.611000px;}
.y11d{bottom:848.566500px;}
.yf0{bottom:851.032500px;}
.y1d0{bottom:852.834000px;}
.ya4{bottom:853.101000px;}
.y141{bottom:854.052000px;}
.y16d{bottom:863.017500px;}
.y21{bottom:865.467000px;}
.yee{bottom:866.499000px;}
.ycf{bottom:866.977500px;}
.y80{bottom:868.503000px;}
.y11c{bottom:869.458500px;}
.y1cf{bottom:871.984500px;}
.ya3{bottom:873.993000px;}
.y16c{bottom:883.909500px;}
.y20{bottom:886.359000px;}
.yed{bottom:887.391000px;}
.y7f{bottom:889.393500px;}
.y11b{bottom:890.350500px;}
.y1ce{bottom:891.135000px;}
.ya2{bottom:894.883500px;}
.y16b{bottom:904.801500px;}
.yce{bottom:905.802000px;}
.y1f{bottom:907.251000px;}
.y1a2{bottom:907.555500px;}
.yec{bottom:908.283000px;}
.y7e{bottom:910.285500px;}
.y11a{bottom:911.241000px;}
.y58{bottom:913.243500px;}
.ya1{bottom:920.259000px;}
.y16a{bottom:925.692000px;}
.ycd{bottom:926.694000px;}
.y1e{bottom:928.141500px;}
.yeb{bottom:929.175000px;}
.y1cd{bottom:929.436000px;}
.y7d{bottom:931.177500px;}
.y119{bottom:932.133000px;}
.y57{bottom:934.135500px;}
.y169{bottom:946.584000px;}
.ycc{bottom:947.584500px;}
.y1cc{bottom:948.586500px;}
.y1d{bottom:949.033500px;}
.yea{bottom:950.065500px;}
.y7c{bottom:952.068000px;}
.ya0{bottom:952.404000px;}
.y117{bottom:953.025000px;}
.y118{bottom:958.449000px;}
.y168{bottom:967.476000px;}
.y1cb{bottom:967.737000px;}
.ycb{bottom:968.476500px;}
.y1c{bottom:969.925500px;}
.ye9{bottom:970.957500px;}
.y56{bottom:972.960000px;}
.y116{bottom:973.915500px;}
.y1ca{bottom:986.887500px;}
.y167{bottom:988.366500px;}
.yca{bottom:989.368500px;}
.ye8{bottom:991.849500px;}
.y55{bottom:993.852000px;}
.y115{bottom:994.807500px;}
.y1fc{bottom:1001.308500px;}
.y1c9{bottom:1006.038000px;}
.y1b{bottom:1008.748500px;}
.y166{bottom:1009.258500px;}
.yc9{bottom:1010.260500px;}
.ye7{bottom:1012.740000px;}
.y54{bottom:1014.742500px;}
.y114{bottom:1020.183000px;}
.y1fb{bottom:1020.459000px;}
.y1c8{bottom:1025.188500px;}
.y165{bottom:1030.150500px;}
.yc8{bottom:1031.151000px;}
.ye6{bottom:1033.632000px;}
.y53{bottom:1035.634500px;}
.y1fa{bottom:1039.609500px;}
.y1a{bottom:1040.086500px;}
.y113{bottom:1042.075500px;}
.y1c7{bottom:1044.339000px;}
.y164{bottom:1051.041000px;}
.yc7{bottom:1052.043000px;}
.ye5{bottom:1054.524000px;}
.y52{bottom:1056.526500px;}
.y1c6{bottom:1063.489500px;}
.y19{bottom:1071.424500px;}
.y163{bottom:1071.933000px;}
.yc6{bottom:1072.935000px;}
.ye4{bottom:1075.414500px;}
.y51{bottom:1077.417000px;}
.y1c5{bottom:1082.640000px;}
.y162{bottom:1092.825000px;}
.yc5{bottom:1093.825500px;}
.y50{bottom:1098.309000px;}
.ye3{bottom:1100.790000px;}
.y1c4{bottom:1101.790500px;}
.y18{bottom:1102.761000px;}
.yc4{bottom:1114.717500px;}
.y161{bottom:1118.199000px;}
.y4f{bottom:1119.201000px;}
.y1c3{bottom:1120.941000px;}
.ye2{bottom:1122.682500px;}
.y4e{bottom:1140.091500px;}
.y4d{bottom:1200.196500px;}
.h8{height:26.217754px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h15{height:32.700150px;}
.h12{height:33.209038px;}
.h9{height:34.956859px;}
.hc{height:35.052500px;}
.h10{height:39.326630px;}
.h14{height:39.434227px;}
.he{height:41.245164px;}
.h16{height:42.043500px;}
.h11{height:42.500452px;}
.ha{height:43.217759px;}
.hb{height:43.695964px;}
.h4{height:43.815515px;}
.hf{height:46.714950px;}
.hd{height:51.861658px;}
.h6{height:54.541601px;}
.h7{height:54.547601px;}
.h13{height:68.775024px;}
.h5{height:77.792486px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x5b{left:85.848000px;}
.x5e{left:101.763000px;}
.x5f{left:114.370500px;}
.x60{left:121.456500px;}
.x61{left:126.024000px;}
.x62{left:142.462500px;}
.x63{left:159.199500px;}
.x64{left:169.900500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x2a{left:252.766500px;}
.x49{left:258.307500px;}
.x4a{left:266.104500px;}
.x3{left:269.914500px;}
.x5{left:281.368500px;}
.x2b{left:282.466500px;}
.xe{left:302.974500px;}
.x35{left:305.808000px;}
.x52{left:307.417500px;}
.xf{left:310.446000px;}
.x10{left:314.197500px;}
.x24{left:319.266000px;}
.x11{left:321.669000px;}
.x36{left:323.092500px;}
.x50{left:326.826000px;}
.x25{left:334.209000px;}
.x53{left:341.116500px;}
.x16{left:348.099000px;}
.x17{left:355.570500px;}
.x12{left:362.209500px;}
.x65{left:368.692500px;}
.x13{left:371.439000px;}
.x4b{left:376.437000px;}
.x66{left:383.370000px;}
.xc{left:387.391500px;}
.xd{left:394.863000px;}
.x67{left:397.219500px;}
.x51{left:407.796000px;}
.x2e{left:415.873500px;}
.x68{left:420.646500px;}
.x2f{left:430.816500px;}
.x3f{left:463.902000px;}
.x34{left:468.964500px;}
.x40{left:471.373500px;}
.x2d{left:475.087500px;}
.x30{left:504.214500px;}
.x41{left:520.747500px;}
.x42{left:531.289500px;}
.x1e{left:537.132000px;}
.x3a{left:544.473000px;}
.x44{left:546.603000px;}
.x4c{left:549.697500px;}
.x1f{left:552.076500px;}
.x3b{left:559.416000px;}
.x26{left:571.110000px;}
.x31{left:578.766000px;}
.x32{left:584.991000px;}
.x27{left:586.054500px;}
.x28{left:589.864500px;}
.x33{left:592.612500px;}
.xa{left:595.816500px;}
.x2c{left:601.975500px;}
.xb{left:603.289500px;}
.x29{left:604.809000px;}
.x38{left:607.468500px;}
.x18{left:609.478500px;}
.x37{left:612.903000px;}
.x19{left:616.950000px;}
.x1a{left:620.761500px;}
.x39{left:622.411500px;}
.x1b{left:635.704500px;}
.x4d{left:640.254000px;}
.x54{left:642.327000px;}
.x69{left:647.761500px;}
.x4e{left:655.198500px;}
.x47{left:656.278500px;}
.x57{left:659.617500px;}
.x6a{left:662.187000px;}
.x55{left:664.893000px;}
.x58{left:674.562000px;}
.x6b{left:675.982500px;}
.x56{left:679.837500px;}
.x6c{left:699.157500px;}
.x5c{left:739.695000px;}
.x20{left:741.738000px;}
.x59{left:745.369500px;}
.x5a{left:755.523000px;}
.x21{left:756.682500px;}
.x45{left:758.304000px;}
.x22{left:760.482000px;}
.x46{left:768.819000px;}
.x43{left:770.173500px;}
.x23{left:775.425000px;}
.x14{left:777.894000px;}
.x15{left:785.365500px;}
.x3c{left:801.262500px;}
.x3d{left:806.913000px;}
.x5d{left:809.755500px;}
.x6{left:815.226000px;}
.x1c{left:816.951000px;}
.x3e{left:818.046000px;}
.x7{left:822.474000px;}
.x8{left:825.925500px;}
.x4f{left:829.945500px;}
.x1d{left:831.894000px;}
.x9{left:833.173500px;}
.x48{left:836.994000px;}
@media print{
.v4{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:21.946667pt;}
.v6{vertical-align:59.008000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls1c{letter-spacing:0.000567pt;}
.lsb{letter-spacing:0.000720pt;}
.ls18{letter-spacing:0.001404pt;}
.ls7{letter-spacing:0.001718pt;}
.ls13{letter-spacing:0.002422pt;}
.ls35{letter-spacing:0.002525pt;}
.lsf{letter-spacing:0.004237pt;}
.ls10{letter-spacing:0.004541pt;}
.ls37{letter-spacing:0.447791pt;}
.ls2d{letter-spacing:0.652455pt;}
.ls2c{letter-spacing:0.661852pt;}
.ls12{letter-spacing:0.664677pt;}
.ls2f{letter-spacing:1.061877pt;}
.ls1b{letter-spacing:1.062677pt;}
.ls20{letter-spacing:1.198400pt;}
.ls23{letter-spacing:1.257548pt;}
.ls27{letter-spacing:1.262881pt;}
.ls14{letter-spacing:1.273874pt;}
.ls2b{letter-spacing:1.302029pt;}
.ls28{letter-spacing:1.326210pt;}
.ls29{letter-spacing:1.727070pt;}
.ls2{letter-spacing:1.912832pt;}
.ls26{letter-spacing:2.601874pt;}
.ls5{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1f{letter-spacing:3.318400pt;}
.ls2a{letter-spacing:3.323733pt;}
.ls0{letter-spacing:7.437600pt;}
.ls9{letter-spacing:10.626533pt;}
.ls24{letter-spacing:11.928563pt;}
.ls30{letter-spacing:11.954133pt;}
.ls33{letter-spacing:11.959467pt;}
.ls34{letter-spacing:12.221490pt;}
.ls25{letter-spacing:12.326029pt;}
.ls38{letter-spacing:12.823885pt;}
.ls31{letter-spacing:13.027807pt;}
.ls15{letter-spacing:13.281404pt;}
.ls17{letter-spacing:13.281867pt;}
.ls16{letter-spacing:13.283543pt;}
.lsc{letter-spacing:13.349136pt;}
.lsd{letter-spacing:13.464662pt;}
.ls32{letter-spacing:13.623885pt;}
.ls1a{letter-spacing:13.920696pt;}
.ls11{letter-spacing:13.943200pt;}
.ls19{letter-spacing:13.949089pt;}
.ls1e{letter-spacing:14.216563pt;}
.lse{letter-spacing:14.594031pt;}
.ls1d{letter-spacing:15.937118pt;}
.ls22{letter-spacing:16.067096pt;}
.ls36{letter-spacing:16.876173pt;}
.ls21{letter-spacing:18.075733pt;}
.ls2e{letter-spacing:20.215240pt;}
.ls4{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ws70{word-spacing:-14.346144pt;}
.ws25{word-spacing:-13.283467pt;}
.ws8{word-spacing:-12.760670pt;}
.ws9e{word-spacing:-11.955200pt;}
.wse{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws5f{word-spacing:-3.613103pt;}
.ws81{word-spacing:-3.081764pt;}
.ws76{word-spacing:-2.816095pt;}
.ws58{word-spacing:-2.656693pt;}
.ws30{word-spacing:-2.603559pt;}
.ws28{word-spacing:-2.550426pt;}
.ws8e{word-spacing:-2.444158pt;}
.ws3c{word-spacing:-2.391024pt;}
.ws6e{word-spacing:-2.337890pt;}
.ws7c{word-spacing:-2.125355pt;}
.ws0{word-spacing:-1.859680pt;}
.ws2{word-spacing:-1.857767pt;}
.ws33{word-spacing:-1.806551pt;}
.ws50{word-spacing:-1.647150pt;}
.ws19{word-spacing:-1.594016pt;}
.ws67{word-spacing:-1.540882pt;}
.ws6{word-spacing:-1.434624pt;}
.ws26{word-spacing:-1.434614pt;}
.ws91{word-spacing:-1.381481pt;}
.ws2f{word-spacing:-1.328347pt;}
.ws6a{word-spacing:-1.275213pt;}
.ws45{word-spacing:-1.222079pt;}
.ws69{word-spacing:-1.168945pt;}
.ws68{word-spacing:-1.115811pt;}
.ws43{word-spacing:-1.062677pt;}
.ws63{word-spacing:-1.009543pt;}
.ws61{word-spacing:-0.956410pt;}
.ws48{word-spacing:-0.903276pt;}
.ws65{word-spacing:-0.850142pt;}
.ws6f{word-spacing:-0.798986pt;}
.ws24{word-spacing:-0.797008pt;}
.ws44{word-spacing:-0.743874pt;}
.ws56{word-spacing:-0.690740pt;}
.ws62{word-spacing:-0.637606pt;}
.ws4b{word-spacing:-0.531339pt;}
.wscb{word-spacing:-0.478208pt;}
.ws3a{word-spacing:-0.478205pt;}
.ws79{word-spacing:-0.425071pt;}
.ws23{word-spacing:-0.371937pt;}
.ws5c{word-spacing:-0.318803pt;}
.wsa2{word-spacing:-0.286925pt;}
.ws15{word-spacing:-0.265669pt;}
.wsa4{word-spacing:-0.251949pt;}
.ws9c{word-spacing:-0.239104pt;}
.ws1c{word-spacing:-0.212535pt;}
.ws95{word-spacing:-0.191283pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.143462pt;}
.ws13{word-spacing:-0.106268pt;}
.wsa5{word-spacing:-0.095642pt;}
.ws4a{word-spacing:-0.079692pt;}
.ws17{word-spacing:-0.053134pt;}
.wsa6{word-spacing:-0.047821pt;}
.wsb9{word-spacing:-0.010479pt;}
.wsa0{word-spacing:-0.008764pt;}
.wsb3{word-spacing:-0.006050pt;}
.wsc5{word-spacing:-0.004907pt;}
.wsb4{word-spacing:-0.002790pt;}
.wsc{word-spacing:-0.002235pt;}
.wsb8{word-spacing:-0.002159pt;}
.wsa8{word-spacing:-0.002048pt;}
.ws46{word-spacing:-0.001949pt;}
.wsc9{word-spacing:-0.000717pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:0.000772pt;}
.ws3f{word-spacing:0.018476pt;}
.wsf{word-spacing:0.042507pt;}
.wsa7{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.wsba{word-spacing:0.143462pt;}
.ws12{word-spacing:0.159402pt;}
.ws97{word-spacing:0.191283pt;}
.ws29{word-spacing:0.211542pt;}
.ws11{word-spacing:0.212535pt;}
.wsaf{word-spacing:0.239104pt;}
.ws34{word-spacing:0.265669pt;}
.wsb1{word-spacing:0.286925pt;}
.ws1f{word-spacing:0.318803pt;}
.ws6b{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.ws3b{word-spacing:0.478205pt;}
.ws99{word-spacing:0.526029pt;}
.ws75{word-spacing:0.531339pt;}
.ws31{word-spacing:0.584473pt;}
.wsc6{word-spacing:0.621670pt;}
.ws2e{word-spacing:0.637606pt;}
.ws4d{word-spacing:0.690740pt;}
.ws72{word-spacing:0.743874pt;}
.wsbd{word-spacing:0.765133pt;}
.ws27{word-spacing:0.797008pt;}
.wsa9{word-spacing:0.812954pt;}
.ws4f{word-spacing:0.850142pt;}
.wsc8{word-spacing:0.860774pt;}
.wsb7{word-spacing:1.004237pt;}
.ws57{word-spacing:1.009543pt;}
.wsab{word-spacing:1.052058pt;}
.ws3e{word-spacing:1.062677pt;}
.ws4c{word-spacing:1.115811pt;}
.ws5a{word-spacing:1.168945pt;}
.ws71{word-spacing:1.222079pt;}
.ws7a{word-spacing:1.275213pt;}
.ws60{word-spacing:1.328347pt;}
.ws89{word-spacing:1.381481pt;}
.ws7f{word-spacing:1.487748pt;}
.ws5e{word-spacing:1.540882pt;}
.ws38{word-spacing:1.594016pt;}
.ws41{word-spacing:1.647150pt;}
.wsac{word-spacing:1.673728pt;}
.ws2b{word-spacing:1.700284pt;}
.ws3d{word-spacing:1.753418pt;}
.ws73{word-spacing:1.859685pt;}
.ws32{word-spacing:1.912819pt;}
.wsbb{word-spacing:1.912832pt;}
.ws1d{word-spacing:1.965953pt;}
.ws9a{word-spacing:2.008474pt;}
.ws18{word-spacing:2.019087pt;}
.ws4e{word-spacing:2.231622pt;}
.ws7b{word-spacing:2.284756pt;}
.ws53{word-spacing:2.391024pt;}
.ws9b{word-spacing:2.391040pt;}
.wsa1{word-spacing:2.438861pt;}
.ws5b{word-spacing:2.497292pt;}
.ws1a{word-spacing:2.709827pt;}
.ws93{word-spacing:2.762961pt;}
.wsbf{word-spacing:2.861875pt;}
.wsb6{word-spacing:2.862029pt;}
.wsbc{word-spacing:2.863420pt;}
.wsae{word-spacing:2.864384pt;}
.wsbe{word-spacing:2.864435pt;}
.wsb0{word-spacing:2.864802pt;}
.wsc4{word-spacing:2.865741pt;}
.wsb2{word-spacing:2.865963pt;}
.wsca{word-spacing:2.866338pt;}
.wsc0{word-spacing:2.866739pt;}
.wsa3{word-spacing:2.869248pt;}
.ws8a{word-spacing:2.975497pt;}
.ws94{word-spacing:3.028630pt;}
.wscc{word-spacing:3.108352pt;}
.ws59{word-spacing:3.134898pt;}
.ws40{word-spacing:3.241166pt;}
.ws87{word-spacing:3.294300pt;}
.ws55{word-spacing:3.400567pt;}
.ws82{word-spacing:3.453701pt;}
.ws84{word-spacing:3.506835pt;}
.ws80{word-spacing:3.559969pt;}
.ws6d{word-spacing:3.613103pt;}
.ws1e{word-spacing:3.624485pt;}
.ws22{word-spacing:3.666237pt;}
.ws20{word-spacing:3.825664pt;}
.wsc1{word-spacing:3.873485pt;}
.ws35{word-spacing:3.985040pt;}
.ws98{word-spacing:4.132809pt;}
.ws66{word-spacing:4.197575pt;}
.ws86{word-spacing:4.303843pt;}
.ws77{word-spacing:4.356977pt;}
.ws83{word-spacing:4.410111pt;}
.ws52{word-spacing:4.516379pt;}
.ws14{word-spacing:4.728914pt;}
.wsc3{word-spacing:4.925542pt;}
.ws5d{word-spacing:4.941450pt;}
.ws54{word-spacing:5.153985pt;}
.wsc7{word-spacing:5.212467pt;}
.ws39{word-spacing:5.260253pt;}
.ws78{word-spacing:5.313387pt;}
.ws88{word-spacing:5.419654pt;}
.ws74{word-spacing:5.472788pt;}
.ws8d{word-spacing:5.525922pt;}
.ws2c{word-spacing:5.632190pt;}
.ws8b{word-spacing:5.738458pt;}
.wsaa{word-spacing:5.738496pt;}
.ws21{word-spacing:5.791591pt;}
.ws85{word-spacing:6.110395pt;}
.ws8f{word-spacing:6.322930pt;}
.ws7d{word-spacing:6.641733pt;}
.wsb5{word-spacing:6.647091pt;}
.ws7e{word-spacing:6.694867pt;}
.ws64{word-spacing:6.748001pt;}
.ws8c{word-spacing:6.854269pt;}
.ws90{word-spacing:7.013670pt;}
.ws92{word-spacing:7.119938pt;}
.wsad{word-spacing:7.125299pt;}
.ws51{word-spacing:7.438741pt;}
.ws36{word-spacing:7.810678pt;}
.ws6c{word-spacing:11.901986pt;}
.wsc2{word-spacing:14.931171pt;}
.ws37{word-spacing:19.021924pt;}
.ws1{word-spacing:19.715148pt;}
.ws10{word-spacing:37.189333pt;}
.ws9{word-spacing:40.920260pt;}
.wsb{word-spacing:40.936000pt;}
.wsa{word-spacing:40.941333pt;}
.ws9f{word-spacing:51.806814pt;}
.wsd{word-spacing:54.221333pt;}
.ws49{word-spacing:702.110914pt;}
.ws42{word-spacing:731.865879pt;}
.ws47{word-spacing:835.423786pt;}
._d{margin-left:-23.644571pt;}
._4{margin-left:-16.551152pt;}
._b{margin-left:-6.850720pt;}
._a{margin-left:-5.938068pt;}
._2{margin-left:-4.797974pt;}
._e{margin-left:-3.830987pt;}
._1{margin-left:-2.752326pt;}
._5{margin-left:-1.338970pt;}
._8{width:1.818134pt;}
._3{width:3.496198pt;}
._c{width:5.950993pt;}
._0{width:9.670336pt;}
._1b{width:11.434404pt;}
._f{width:12.412102pt;}
._15{width:14.183194pt;}
._14{width:15.260043pt;}
._13{width:16.173941pt;}
._10{width:17.119728pt;}
._6{width:18.673321pt;}
._17{width:19.978334pt;}
._1f{width:20.993226pt;}
._1d{width:22.220579pt;}
._16{width:23.166366pt;}
._19{width:24.080265pt;}
._29{width:26.656793pt;}
._1e{width:27.629611pt;}
._7{width:30.127104pt;}
._18{width:32.783596pt;}
._20{width:34.919573pt;}
._1c{width:37.315946pt;}
._22{width:38.256384pt;}
._1a{width:40.179826pt;}
._9{width:48.376563pt;}
._28{width:54.993920pt;}
._27{width:78.904320pt;}
._24{width:173.828608pt;}
._23{width:204.768666pt;}
._25{width:223.131853pt;}
._26{width:229.205094pt;}
._11{width:1585.499404pt;}
._21{width:2267.355404pt;}
._12{width:2288.608737pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs9{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:40.818667pt;}
.y4b{bottom:88.894667pt;}
.y17{bottom:89.120000pt;}
.y140{bottom:89.232000pt;}
.y1f9{bottom:94.188000pt;}
.y1a1{bottom:101.613333pt;}
.y112{bottom:103.433333pt;}
.y16{bottom:105.020000pt;}
.y7b{bottom:105.988000pt;}
.y4a{bottom:107.465333pt;}
.y13f{bottom:107.802667pt;}
.yc3{bottom:108.320000pt;}
.y1f8{bottom:111.210667pt;}
.ye1{bottom:112.920000pt;}
.y1a0{bottom:120.182667pt;}
.y18c{bottom:120.648000pt;}
.y15{bottom:120.920000pt;}
.y1c2{bottom:121.085333pt;}
.y111{bottom:122.002667pt;}
.y7a{bottom:124.558667pt;}
.y49{bottom:126.034667pt;}
.y13e{bottom:126.373333pt;}
.yc2{bottom:126.889333pt;}
.y1f7{bottom:128.233333pt;}
.y14{bottom:136.820000pt;}
.y1c1{bottom:138.108000pt;}
.y19f{bottom:138.753333pt;}
.y18b{bottom:139.218667pt;}
.y110{bottom:140.573333pt;}
.y79{bottom:143.129333pt;}
.y48{bottom:144.605333pt;}
.y1f6{bottom:145.256000pt;}
.yc1{bottom:145.460000pt;}
.y13d{bottom:148.928000pt;}
.y13{bottom:152.721333pt;}
.y1c0{bottom:155.130667pt;}
.y19e{bottom:157.324000pt;}
.y18a{bottom:157.788000pt;}
.y10f{bottom:159.144000pt;}
.y78{bottom:161.698667pt;}
.y1f5{bottom:162.278667pt;}
.y47{bottom:163.176000pt;}
.yc0{bottom:164.030667pt;}
.y160{bottom:164.869333pt;}
.y9f{bottom:168.429333pt;}
.y12{bottom:168.621333pt;}
.y1bf{bottom:172.153333pt;}
.y19d{bottom:175.893333pt;}
.y189{bottom:176.358667pt;}
.y10e{bottom:177.713333pt;}
.y1f4{bottom:179.301333pt;}
.y77{bottom:180.269333pt;}
.y13c{bottom:180.344000pt;}
.y46{bottom:181.745333pt;}
.ybf{bottom:182.600000pt;}
.y15f{bottom:183.438667pt;}
.y11{bottom:184.521333pt;}
.y9e{bottom:186.998667pt;}
.y1be{bottom:189.176000pt;}
.y188{bottom:194.929333pt;}
.y10d{bottom:196.284000pt;}
.y1f3{bottom:196.324000pt;}
.ybe{bottom:198.436000pt;}
.y19c{bottom:198.449333pt;}
.y76{bottom:198.840000pt;}
.y13b{bottom:198.914667pt;}
.y45{bottom:200.316000pt;}
.y10{bottom:200.422667pt;}
.ybd{bottom:201.170667pt;}
.y15e{bottom:202.009333pt;}
.y9d{bottom:205.569333pt;}
.y1bc{bottom:206.198667pt;}
.y1bd{bottom:210.538667pt;}
.y1f1{bottom:213.346667pt;}
.y187{bottom:213.500000pt;}
.y10c{bottom:214.854667pt;}
.y75{bottom:217.409333pt;}
.y13a{bottom:217.484000pt;}
.y1f2{bottom:217.686667pt;}
.y15d{bottom:220.580000pt;}
.y1bb{bottom:223.221333pt;}
.y9c{bottom:224.140000pt;}
.yf{bottom:224.293333pt;}
.y44{bottom:226.856000pt;}
.y19b{bottom:229.864000pt;}
.y1f0{bottom:230.369333pt;}
.y186{bottom:232.069333pt;}
.y10b{bottom:233.424000pt;}
.ybc{bottom:235.216000pt;}
.y74{bottom:235.980000pt;}
.y139{bottom:236.054667pt;}
.y15c{bottom:239.149333pt;}
.ye{bottom:240.193333pt;}
.y1ba{bottom:240.244000pt;}
.y9b{bottom:242.709333pt;}
.y1ef{bottom:247.392000pt;}
.y19a{bottom:248.434667pt;}
.y185{bottom:250.640000pt;}
.y1ee{bottom:251.732000pt;}
.y10a{bottom:251.994667pt;}
.y73{bottom:254.550667pt;}
.y138{bottom:254.625333pt;}
.yd{bottom:256.093333pt;}
.y1b9{bottom:257.266667pt;}
.y15b{bottom:257.720000pt;}
.y43{bottom:262.429333pt;}
.y1ed{bottom:264.414667pt;}
.y9a{bottom:265.265333pt;}
.y199{bottom:267.005333pt;}
.y184{bottom:269.210667pt;}
.y109{bottom:270.565333pt;}
.ybb{bottom:271.034667pt;}
.yc{bottom:271.994667pt;}
.y72{bottom:273.121333pt;}
.y137{bottom:273.194667pt;}
.y15a{bottom:276.290667pt;}
.y42{bottom:276.776000pt;}
.y1b8{bottom:278.274667pt;}
.y1ec{bottom:281.437333pt;}
.y99{bottom:283.836000pt;}
.y198{bottom:285.576000pt;}
.y183{bottom:287.780000pt;}
.yb{bottom:287.894667pt;}
.y108{bottom:289.136000pt;}
.yba{bottom:289.605333pt;}
.y71{bottom:291.690667pt;}
.y136{bottom:291.765333pt;}
.y159{bottom:294.860000pt;}
.y41{bottom:294.980000pt;}
.y1eb{bottom:298.460000pt;}
.y98{bottom:302.405333pt;}
.ya{bottom:303.794667pt;}
.y197{bottom:304.145333pt;}
.y40{bottom:305.468000pt;}
.y182{bottom:306.350667pt;}
.y107{bottom:307.705333pt;}
.yb8{bottom:308.176000pt;}
.y70{bottom:310.261333pt;}
.y135{bottom:310.336000pt;}
.yb9{bottom:312.997333pt;}
.y158{bottom:313.430667pt;}
.y1b7{bottom:313.742667pt;}
.y1ea{bottom:315.482667pt;}
.y9{bottom:319.696000pt;}
.y97{bottom:320.976000pt;}
.y196{bottom:322.716000pt;}
.y3f{bottom:323.672000pt;}
.y181{bottom:324.921333pt;}
.y106{bottom:326.276000pt;}
.yb7{bottom:326.745333pt;}
.y6f{bottom:328.832000pt;}
.y134{bottom:328.905333pt;}
.y1b6{bottom:331.074667pt;}
.y157{bottom:332.001333pt;}
.y1e9{bottom:332.506667pt;}
.y8{bottom:335.596000pt;}
.y3e{bottom:338.018667pt;}
.y96{bottom:339.546667pt;}
.y195{bottom:341.286667pt;}
.y180{bottom:343.490667pt;}
.y105{bottom:344.846667pt;}
.yb6{bottom:345.316000pt;}
.y6e{bottom:347.401333pt;}
.y133{bottom:347.476000pt;}
.y1b5{bottom:348.406667pt;}
.y3d{bottom:348.506667pt;}
.y1e8{bottom:349.529333pt;}
.y156{bottom:350.570667pt;}
.y7{bottom:351.496000pt;}
.y95{bottom:358.116000pt;}
.y194{bottom:359.856000pt;}
.y104{bottom:363.416000pt;}
.y1b4{bottom:365.738667pt;}
.y6d{bottom:365.972000pt;}
.y132{bottom:366.046667pt;}
.y1e7{bottom:366.552000pt;}
.y3c{bottom:366.710667pt;}
.y155{bottom:366.714667pt;}
.y6{bottom:367.397333pt;}
.y154{bottom:369.141333pt;}
.y94{bottom:376.686667pt;}
.y3b{bottom:377.200000pt;}
.y193{bottom:378.426667pt;}
.yb5{bottom:379.361333pt;}
.y103{bottom:381.986667pt;}
.y1b3{bottom:383.070667pt;}
.y1e6{bottom:383.574667pt;}
.y6c{bottom:384.542667pt;}
.y131{bottom:384.617333pt;}
.y153{bottom:387.712000pt;}
.y5{bottom:388.610667pt;}
.y93{bottom:395.257333pt;}
.y3a{bottom:395.404000pt;}
.y17f{bottom:397.461333pt;}
.y1b2{bottom:400.404000pt;}
.y102{bottom:400.557333pt;}
.y1e5{bottom:400.597333pt;}
.y192{bottom:400.981333pt;}
.y6b{bottom:403.112000pt;}
.y130{bottom:403.186667pt;}
.y4{bottom:404.510667pt;}
.y152{bottom:406.282667pt;}
.y39{bottom:409.749333pt;}
.yb4{bottom:413.406667pt;}
.y92{bottom:413.826667pt;}
.y17e{bottom:416.032000pt;}
.y1e4{bottom:417.620000pt;}
.y101{bottom:419.126667pt;}
.y191{bottom:419.552000pt;}
.y38{bottom:420.238667pt;}
.y3{bottom:420.412000pt;}
.y6a{bottom:421.682667pt;}
.y12f{bottom:421.757333pt;}
.y151{bottom:424.852000pt;}
.y1b1{bottom:431.196000pt;}
.yb3{bottom:431.977333pt;}
.y91{bottom:432.397333pt;}
.y17d{bottom:434.602667pt;}
.y1e3{bottom:434.642667pt;}
.y2{bottom:436.312000pt;}
.y100{bottom:437.697333pt;}
.y190{bottom:438.122667pt;}
.y37{bottom:438.442667pt;}
.y69{bottom:440.253333pt;}
.y12e{bottom:440.328000pt;}
.y150{bottom:443.422667pt;}
.y36{bottom:448.930667pt;}
.yb2{bottom:450.548000pt;}
.ye0{bottom:450.968000pt;}
.y1e2{bottom:451.665333pt;}
.y1b0{bottom:452.513333pt;}
.y17c{bottom:453.172000pt;}
.y90{bottom:454.953333pt;}
.yff{bottom:456.268000pt;}
.y1{bottom:457.525333pt;}
.y68{bottom:458.822667pt;}
.y12d{bottom:458.897333pt;}
.y18f{bottom:460.677333pt;}
.y14f{bottom:461.993333pt;}
.y35{bottom:467.134667pt;}
.y1e1{bottom:468.688000pt;}
.yb1{bottom:469.117333pt;}
.ydf{bottom:469.537333pt;}
.y17b{bottom:471.742667pt;}
.y8f{bottom:473.522667pt;}
.yfe{bottom:474.837333pt;}
.y67{bottom:477.393333pt;}
.y12b{bottom:477.468000pt;}
.y14e{bottom:480.562667pt;}
.y34{bottom:481.481333pt;}
.y12c{bottom:482.289333pt;}
.y1e0{bottom:485.710667pt;}
.y1af{bottom:487.024000pt;}
.yde{bottom:488.108000pt;}
.y17a{bottom:490.313333pt;}
.yb0{bottom:491.673333pt;}
.y33{bottom:491.969333pt;}
.y8e{bottom:492.093333pt;}
.yfd{bottom:493.408000pt;}
.y66{bottom:495.964000pt;}
.y12a{bottom:496.038667pt;}
.y14d{bottom:499.133333pt;}
.y1df{bottom:502.733333pt;}
.y1ae{bottom:504.356000pt;}
.y32{bottom:506.316000pt;}
.ydd{bottom:506.678667pt;}
.y179{bottom:508.884000pt;}
.y31{bottom:510.173333pt;}
.y8d{bottom:510.664000pt;}
.yfc{bottom:511.978667pt;}
.y65{bottom:514.534667pt;}
.y129{bottom:514.608000pt;}
.y1de{bottom:519.756000pt;}
.y30{bottom:520.662667pt;}
.y14c{bottom:521.688000pt;}
.y1ad{bottom:521.689333pt;}
.yaf{bottom:523.088000pt;}
.ydc{bottom:525.248000pt;}
.y178{bottom:527.453333pt;}
.y8c{bottom:529.233333pt;}
.yfb{bottom:530.549333pt;}
.y64{bottom:533.104000pt;}
.y128{bottom:533.178667pt;}
.y1dd{bottom:536.778667pt;}
.y2f{bottom:538.866667pt;}
.yae{bottom:541.658667pt;}
.ydb{bottom:543.818667pt;}
.y177{bottom:546.024000pt;}
.y1ac{bottom:546.990667pt;}
.y8b{bottom:547.804000pt;}
.yfa{bottom:549.118667pt;}
.y63{bottom:551.674667pt;}
.y127{bottom:551.749333pt;}
.y14b{bottom:553.104000pt;}
.y2e{bottom:553.212000pt;}
.y1dc{bottom:553.801333pt;}
.yad{bottom:560.229333pt;}
.yda{bottom:562.389333pt;}
.y2d{bottom:563.701333pt;}
.y176{bottom:564.594667pt;}
.y8a{bottom:566.374667pt;}
.y62{bottom:570.245333pt;}
.y126{bottom:570.318667pt;}
.y1db{bottom:570.824000pt;}
.yf9{bottom:571.674667pt;}
.y1ab{bottom:572.293333pt;}
.yac{bottom:578.798667pt;}
.yd9{bottom:580.960000pt;}
.y2c{bottom:581.905333pt;}
.y175{bottom:583.164000pt;}
.y89{bottom:584.944000pt;}
.y1da{bottom:587.846667pt;}
.y61{bottom:588.814667pt;}
.y125{bottom:588.889333pt;}
.y1aa{bottom:589.625333pt;}
.y14a{bottom:590.244000pt;}
.y2b{bottom:592.393333pt;}
.yab{bottom:597.369333pt;}
.yd8{bottom:599.529333pt;}
.y174{bottom:601.734667pt;}
.yf8{bottom:603.089333pt;}
.y88{bottom:603.514667pt;}
.y1d9{bottom:604.869333pt;}
.y1a9{bottom:606.957333pt;}
.y60{bottom:607.385333pt;}
.y149{bottom:608.814667pt;}
.y2a{bottom:610.597333pt;}
.y124{bottom:611.445333pt;}
.yaa{bottom:615.940000pt;}
.yd7{bottom:618.100000pt;}
.y173{bottom:620.305333pt;}
.yf7{bottom:621.660000pt;}
.y1d8{bottom:621.892000pt;}
.y87{bottom:622.085333pt;}
.y1a8{bottom:624.290667pt;}
.y29{bottom:624.944000pt;}
.y5f{bottom:625.956000pt;}
.y148{bottom:627.385333pt;}
.ya9{bottom:634.510667pt;}
.y28{bottom:635.432000pt;}
.yd6{bottom:636.670667pt;}
.y172{bottom:638.874667pt;}
.y1d7{bottom:638.914667pt;}
.yf6{bottom:640.230667pt;}
.y86{bottom:640.654667pt;}
.y1a7{bottom:641.622667pt;}
.y123{bottom:642.860000pt;}
.y5e{bottom:644.525333pt;}
.y147{bottom:645.954667pt;}
.y27{bottom:653.636000pt;}
.yd5{bottom:655.240000pt;}
.y1d6{bottom:655.937333pt;}
.y171{bottom:657.445333pt;}
.yf5{bottom:658.800000pt;}
.y85{bottom:659.225333pt;}
.y122{bottom:661.430667pt;}
.y5d{bottom:663.096000pt;}
.y26{bottom:664.125333pt;}
.y146{bottom:664.525333pt;}
.y1a6{bottom:666.924000pt;}
.ya8{bottom:668.556000pt;}
.y1d5{bottom:672.961333pt;}
.yd4{bottom:673.810667pt;}
.y170{bottom:676.016000pt;}
.yf4{bottom:677.370667pt;}
.y84{bottom:677.796000pt;}
.y121{bottom:680.001333pt;}
.y5c{bottom:681.666667pt;}
.y25{bottom:682.329333pt;}
.y145{bottom:683.096000pt;}
.y1a5{bottom:684.257333pt;}
.y1d4{bottom:689.984000pt;}
.yd3{bottom:692.381333pt;}
.y24{bottom:692.817333pt;}
.yf3{bottom:695.941333pt;}
.y83{bottom:696.365333pt;}
.y120{bottom:698.570667pt;}
.y5b{bottom:700.236000pt;}
.y1a4{bottom:701.589333pt;}
.y144{bottom:701.666667pt;}
.ya7{bottom:702.601333pt;}
.y1d3{bottom:707.006667pt;}
.yd2{bottom:710.950667pt;}
.y23{bottom:711.021333pt;}
.yf2{bottom:714.510667pt;}
.y18e{bottom:714.936000pt;}
.y11f{bottom:717.141333pt;}
.y5a{bottom:718.806667pt;}
.y82{bottom:718.921333pt;}
.ya6{bottom:721.170667pt;}
.y1d2{bottom:724.029333pt;}
.y143{bottom:724.221333pt;}
.yd1{bottom:729.521333pt;}
.y16f{bottom:729.986667pt;}
.yf1{bottom:733.081333pt;}
.y1a3{bottom:734.861333pt;}
.y11e{bottom:735.712000pt;}
.y18d{bottom:737.492000pt;}
.ya5{bottom:739.741333pt;}
.y1d1{bottom:741.052000pt;}
.y59{bottom:741.362667pt;}
.y142{bottom:743.681333pt;}
.yd0{bottom:748.092000pt;}
.y16e{bottom:748.557333pt;}
.y22{bottom:750.733333pt;}
.yef{bottom:751.652000pt;}
.y81{bottom:753.432000pt;}
.y11d{bottom:754.281333pt;}
.yf0{bottom:756.473333pt;}
.y1d0{bottom:758.074667pt;}
.ya4{bottom:758.312000pt;}
.y141{bottom:759.157333pt;}
.y16d{bottom:767.126667pt;}
.y21{bottom:769.304000pt;}
.yee{bottom:770.221333pt;}
.ycf{bottom:770.646667pt;}
.y80{bottom:772.002667pt;}
.y11c{bottom:772.852000pt;}
.y1cf{bottom:775.097333pt;}
.ya3{bottom:776.882667pt;}
.y16c{bottom:785.697333pt;}
.y20{bottom:787.874667pt;}
.yed{bottom:788.792000pt;}
.y7f{bottom:790.572000pt;}
.y11b{bottom:791.422667pt;}
.y1ce{bottom:792.120000pt;}
.ya2{bottom:795.452000pt;}
.y16b{bottom:804.268000pt;}
.yce{bottom:805.157333pt;}
.y1f{bottom:806.445333pt;}
.y1a2{bottom:806.716000pt;}
.yec{bottom:807.362667pt;}
.y7e{bottom:809.142667pt;}
.y11a{bottom:809.992000pt;}
.y58{bottom:811.772000pt;}
.ya1{bottom:818.008000pt;}
.y16a{bottom:822.837333pt;}
.ycd{bottom:823.728000pt;}
.y1e{bottom:825.014667pt;}
.yeb{bottom:825.933333pt;}
.y1cd{bottom:826.165333pt;}
.y7d{bottom:827.713333pt;}
.y119{bottom:828.562667pt;}
.y57{bottom:830.342667pt;}
.y169{bottom:841.408000pt;}
.ycc{bottom:842.297333pt;}
.y1cc{bottom:843.188000pt;}
.y1d{bottom:843.585333pt;}
.yea{bottom:844.502667pt;}
.y7c{bottom:846.282667pt;}
.ya0{bottom:846.581333pt;}
.y117{bottom:847.133333pt;}
.y118{bottom:851.954667pt;}
.y168{bottom:859.978667pt;}
.y1cb{bottom:860.210667pt;}
.ycb{bottom:860.868000pt;}
.y1c{bottom:862.156000pt;}
.ye9{bottom:863.073333pt;}
.y56{bottom:864.853333pt;}
.y116{bottom:865.702667pt;}
.y1ca{bottom:877.233333pt;}
.y167{bottom:878.548000pt;}
.yca{bottom:879.438667pt;}
.ye8{bottom:881.644000pt;}
.y55{bottom:883.424000pt;}
.y115{bottom:884.273333pt;}
.y1fc{bottom:890.052000pt;}
.y1c9{bottom:894.256000pt;}
.y1b{bottom:896.665333pt;}
.y166{bottom:897.118667pt;}
.yc9{bottom:898.009333pt;}
.ye7{bottom:900.213333pt;}
.y54{bottom:901.993333pt;}
.y114{bottom:906.829333pt;}
.y1fb{bottom:907.074667pt;}
.y1c8{bottom:911.278667pt;}
.y165{bottom:915.689333pt;}
.yc8{bottom:916.578667pt;}
.ye6{bottom:918.784000pt;}
.y53{bottom:920.564000pt;}
.y1fa{bottom:924.097333pt;}
.y1a{bottom:924.521333pt;}
.y113{bottom:926.289333pt;}
.y1c7{bottom:928.301333pt;}
.y164{bottom:934.258667pt;}
.yc7{bottom:935.149333pt;}
.ye5{bottom:937.354667pt;}
.y52{bottom:939.134667pt;}
.y1c6{bottom:945.324000pt;}
.y19{bottom:952.377333pt;}
.y163{bottom:952.829333pt;}
.yc6{bottom:953.720000pt;}
.ye4{bottom:955.924000pt;}
.y51{bottom:957.704000pt;}
.y1c5{bottom:962.346667pt;}
.y162{bottom:971.400000pt;}
.yc5{bottom:972.289333pt;}
.y50{bottom:976.274667pt;}
.ye3{bottom:978.480000pt;}
.y1c4{bottom:979.369333pt;}
.y18{bottom:980.232000pt;}
.yc4{bottom:990.860000pt;}
.y161{bottom:993.954667pt;}
.y4f{bottom:994.845333pt;}
.y1c3{bottom:996.392000pt;}
.ye2{bottom:997.940000pt;}
.y4e{bottom:1013.414667pt;}
.y4d{bottom:1066.841333pt;}
.h8{height:23.304670pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h15{height:29.066800pt;}
.h12{height:29.519145pt;}
.h9{height:31.072763pt;}
.hc{height:31.157778pt;}
.h10{height:34.957005pt;}
.h14{height:35.052646pt;}
.he{height:36.662368pt;}
.h16{height:37.372000pt;}
.h11{height:37.778179pt;}
.ha{height:38.415786pt;}
.hb{height:38.840857pt;}
.h4{height:38.947124pt;}
.hf{height:41.524400pt;}
.hd{height:46.099251pt;}
.h6{height:48.481423pt;}
.h7{height:48.486756pt;}
.h13{height:61.133355pt;}
.h5{height:69.148877pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x5b{left:76.309333pt;}
.x5e{left:90.456000pt;}
.x5f{left:101.662667pt;}
.x60{left:107.961333pt;}
.x61{left:112.021333pt;}
.x62{left:126.633333pt;}
.x63{left:141.510667pt;}
.x64{left:151.022667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x2a{left:224.681333pt;}
.x49{left:229.606667pt;}
.x4a{left:236.537333pt;}
.x3{left:239.924000pt;}
.x5{left:250.105333pt;}
.x2b{left:251.081333pt;}
.xe{left:269.310667pt;}
.x35{left:271.829333pt;}
.x52{left:273.260000pt;}
.xf{left:275.952000pt;}
.x10{left:279.286667pt;}
.x24{left:283.792000pt;}
.x11{left:285.928000pt;}
.x36{left:287.193333pt;}
.x50{left:290.512000pt;}
.x25{left:297.074667pt;}
.x53{left:303.214667pt;}
.x16{left:309.421333pt;}
.x17{left:316.062667pt;}
.x12{left:321.964000pt;}
.x65{left:327.726667pt;}
.x13{left:330.168000pt;}
.x4b{left:334.610667pt;}
.x66{left:340.773333pt;}
.xc{left:344.348000pt;}
.xd{left:350.989333pt;}
.x67{left:353.084000pt;}
.x51{left:362.485333pt;}
.x2e{left:369.665333pt;}
.x68{left:373.908000pt;}
.x2f{left:382.948000pt;}
.x3f{left:412.357333pt;}
.x34{left:416.857333pt;}
.x40{left:418.998667pt;}
.x2d{left:422.300000pt;}
.x30{left:448.190667pt;}
.x41{left:462.886667pt;}
.x42{left:472.257333pt;}
.x1e{left:477.450667pt;}
.x3a{left:483.976000pt;}
.x44{left:485.869333pt;}
.x4c{left:488.620000pt;}
.x1f{left:490.734667pt;}
.x3b{left:497.258667pt;}
.x26{left:507.653333pt;}
.x31{left:514.458667pt;}
.x32{left:519.992000pt;}
.x27{left:520.937333pt;}
.x28{left:524.324000pt;}
.x33{left:526.766667pt;}
.xa{left:529.614667pt;}
.x2c{left:535.089333pt;}
.xb{left:536.257333pt;}
.x29{left:537.608000pt;}
.x38{left:539.972000pt;}
.x18{left:541.758667pt;}
.x37{left:544.802667pt;}
.x19{left:548.400000pt;}
.x1a{left:551.788000pt;}
.x39{left:553.254667pt;}
.x1b{left:565.070667pt;}
.x4d{left:569.114667pt;}
.x54{left:570.957333pt;}
.x69{left:575.788000pt;}
.x4e{left:582.398667pt;}
.x47{left:583.358667pt;}
.x57{left:586.326667pt;}
.x6a{left:588.610667pt;}
.x55{left:591.016000pt;}
.x58{left:599.610667pt;}
.x6b{left:600.873333pt;}
.x56{left:604.300000pt;}
.x6c{left:621.473333pt;}
.x5c{left:657.506667pt;}
.x20{left:659.322667pt;}
.x59{left:662.550667pt;}
.x5a{left:671.576000pt;}
.x21{left:672.606667pt;}
.x45{left:674.048000pt;}
.x22{left:675.984000pt;}
.x46{left:683.394667pt;}
.x43{left:684.598667pt;}
.x23{left:689.266667pt;}
.x14{left:691.461333pt;}
.x15{left:698.102667pt;}
.x3c{left:712.233333pt;}
.x3d{left:717.256000pt;}
.x5d{left:719.782667pt;}
.x6{left:724.645333pt;}
.x1c{left:726.178667pt;}
.x3e{left:727.152000pt;}
.x7{left:731.088000pt;}
.x8{left:734.156000pt;}
.x4f{left:737.729333pt;}
.x1d{left:739.461333pt;}
.x9{left:740.598667pt;}
.x48{left:743.994667pt;}
}




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