
    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_e585dca05852c201629eacf7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0648bbaa3f8cd7121098ccf6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_9badf0e671a42dede9233e15.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_422785156fcfa58dd462bfb5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eec47d288d4a2089877d5242.woff')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_5574f0fc8e3674046f860182.woff')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_89a4f70d6fb93a114af0110b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_99232c189cec867fb43290d6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.663000;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_5cdca4ba865cb03b1e67dd3a.woff')format("woff");}.ff9{font-family:ff9;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;}
.m9{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);}
.m1a{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);}
.m20{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);}
.m26{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);}
.m17{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m18{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m27{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);}
.m24{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);}
.ma{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);}
.m2{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);}
.mf{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);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m10{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);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.mc{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);}
.m28{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);}
.m1b{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);}
.m1f{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);}
.m1c{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);}
.m4{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);}
.m22{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m15{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);}
.m19{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);}
.m23{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);}
.m25{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);}
.m13{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);}
.m6{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);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.880000px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000335px;}
.ls1c{letter-spacing:0.000422px;}
.ls19{letter-spacing:0.000435px;}
.ls1f{letter-spacing:0.000566px;}
.ls0{letter-spacing:0.000600px;}
.ls25{letter-spacing:0.000800px;}
.ls1b{letter-spacing:0.001155px;}
.lsf{letter-spacing:0.001996px;}
.ls23{letter-spacing:0.002074px;}
.ls14{letter-spacing:0.003389px;}
.ls2{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.005562px;}
.ls17{letter-spacing:0.642088px;}
.ls11{letter-spacing:0.648088px;}
.ls12{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.954850px;}
.ls16{letter-spacing:12.344853px;}
.ls15{letter-spacing:12.406078px;}
.ls1e{letter-spacing:13.203306px;}
.ls22{letter-spacing:13.415090px;}
.ls24{letter-spacing:13.446422px;}
.ls1d{letter-spacing:13.446566px;}
.ls26{letter-spacing:13.450090px;}
.ls9{letter-spacing:14.704798px;}
.ls18{letter-spacing:14.884124px;}
.ls13{letter-spacing:14.944200px;}
.ls8{letter-spacing:15.063451px;}
.lsc{letter-spacing:15.123227px;}
.ls1a{letter-spacing:15.302554px;}
.lsa{letter-spacing:15.541656px;}
.ls1{letter-spacing:17.935200px;}
.lsb{letter-spacing:19.307519px;}
.lse{letter-spacing:19.486846px;}
.ls7{letter-spacing:19.905275px;}
.lsd{letter-spacing:20.443255px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls10{letter-spacing:94.292700px;}
.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;}
}
.ws55{word-spacing:-14.943900px;}
.ws70{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws2f{word-spacing:-3.526760px;}
.ws6c{word-spacing:-3.466985px;}
.ws3d{word-spacing:-3.287658px;}
.wsb2{word-spacing:-3.012710px;}
.ws66{word-spacing:-2.988780px;}
.ws39{word-spacing:-2.929004px;}
.ws96{word-spacing:-2.570351px;}
.ws95{word-spacing:-2.510575px;}
.ws79{word-spacing:-2.391024px;}
.wsab{word-spacing:-2.331248px;}
.ws20{word-spacing:-2.151922px;}
.wsa9{word-spacing:-2.032370px;}
.ws94{word-spacing:-1.972595px;}
.ws2e{word-spacing:-1.912819px;}
.ws41{word-spacing:-1.793268px;}
.wsad{word-spacing:-1.560154px;}
.ws67{word-spacing:-1.494390px;}
.ws7a{word-spacing:-1.374839px;}
.wsa1{word-spacing:-1.315063px;}
.ws69{word-spacing:-1.255288px;}
.ws7f{word-spacing:-1.195512px;}
.wsae{word-spacing:-1.183565px;}
.ws5e{word-spacing:-1.135736px;}
.ws49{word-spacing:-1.075961px;}
.ws5d{word-spacing:-1.016185px;}
.wsb0{word-spacing:-0.645581px;}
.ws6d{word-spacing:-0.597756px;}
.ws1d{word-spacing:-0.478205px;}
.wsa5{word-spacing:-0.418429px;}
.ws2d{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.322790px;}
.ws4e{word-spacing:-0.298878px;}
.wsba{word-spacing:-0.269919px;}
.wsbb{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws29{word-spacing:-0.179327px;}
.ws23{word-spacing:-0.119551px;}
.ws13{word-spacing:-0.107597px;}
.ws24{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.008659px;}
.wse{word-spacing:-0.004450px;}
.wsbd{word-spacing:-0.003869px;}
.wsb9{word-spacing:-0.003754px;}
.ws26{word-spacing:-0.003197px;}
.ws4{word-spacing:-0.002641px;}
.wsc2{word-spacing:-0.001843px;}
.wsd{word-spacing:-0.000499px;}
.ws2{word-spacing:0.000000px;}
.wsb4{word-spacing:0.001267px;}
.ws1b{word-spacing:0.053798px;}
.ws1e{word-spacing:0.059776px;}
.ws8f{word-spacing:0.107597px;}
.ws34{word-spacing:0.119551px;}
.ws1{word-spacing:0.125528px;}
.ws19{word-spacing:0.161395px;}
.ws21{word-spacing:0.179327px;}
.ws36{word-spacing:0.239102px;}
.wsb1{word-spacing:0.268992px;}
.ws2c{word-spacing:0.298878px;}
.ws45{word-spacing:0.358654px;}
.ws35{word-spacing:0.418429px;}
.ws6a{word-spacing:0.478205px;}
.ws56{word-spacing:0.597756px;}
.wsa2{word-spacing:0.657532px;}
.ws68{word-spacing:0.777083px;}
.ws6b{word-spacing:0.896634px;}
.wsa6{word-spacing:0.956410px;}
.ws92{word-spacing:1.016185px;}
.ws31{word-spacing:1.075961px;}
.ws3a{word-spacing:1.195512px;}
.ws6e{word-spacing:1.255288px;}
.ws48{word-spacing:1.315063px;}
.wsc{word-spacing:1.380812px;}
.ws53{word-spacing:1.434614px;}
.ws46{word-spacing:1.494390px;}
.ws1f{word-spacing:1.554166px;}
.ws5f{word-spacing:1.613941px;}
.ws16{word-spacing:1.613952px;}
.ws65{word-spacing:1.673717px;}
.ws42{word-spacing:1.793268px;}
.ws32{word-spacing:1.853044px;}
.wsaa{word-spacing:1.912819px;}
.ws4c{word-spacing:1.972595px;}
.ws60{word-spacing:2.092146px;}
.ws33{word-spacing:2.151922px;}
.ws43{word-spacing:2.271473px;}
.ws44{word-spacing:2.331248px;}
.ws7c{word-spacing:2.391024px;}
.ws6f{word-spacing:2.450800px;}
.ws3{word-spacing:2.510568px;}
.wsac{word-spacing:2.510575px;}
.wsc0{word-spacing:2.528525px;}
.ws7d{word-spacing:2.570351px;}
.ws8b{word-spacing:2.630126px;}
.ws0{word-spacing:2.659600px;}
.ws62{word-spacing:2.689902px;}
.ws7e{word-spacing:2.749678px;}
.ws10{word-spacing:2.869236px;}
.wsbc{word-spacing:2.905114px;}
.ws7b{word-spacing:2.929004px;}
.ws57{word-spacing:3.108331px;}
.ws8d{word-spacing:3.120307px;}
.wsc3{word-spacing:3.220570px;}
.wsaf{word-spacing:3.224822px;}
.wsbe{word-spacing:3.226896px;}
.wsb5{word-spacing:3.227904px;}
.ws11{word-spacing:3.268861px;}
.ws47{word-spacing:3.287658px;}
.ws1a{word-spacing:3.324872px;}
.ws8c{word-spacing:3.347434px;}
.ws40{word-spacing:3.407209px;}
.wsb7{word-spacing:3.443098px;}
.ws3f{word-spacing:3.466985px;}
.wsc4{word-spacing:3.496896px;}
.ws63{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.wsb8{word-spacing:3.712090px;}
.ws17{word-spacing:3.765888px;}
.ws2a{word-spacing:3.885414px;}
.ws2b{word-spacing:3.945190px;}
.ws4f{word-spacing:4.004965px;}
.ws30{word-spacing:4.124516px;}
.ws3b{word-spacing:4.184292px;}
.ws50{word-spacing:4.303843px;}
.ws15{word-spacing:4.357670px;}
.ws51{word-spacing:4.483170px;}
.ws93{word-spacing:4.722272px;}
.ws52{word-spacing:4.782048px;}
.wsb3{word-spacing:4.788058px;}
.ws38{word-spacing:4.841824px;}
.ws22{word-spacing:5.140702px;}
.ws86{word-spacing:5.200477px;}
.ws54{word-spacing:5.439580px;}
.wsa{word-spacing:5.481407px;}
.wsa8{word-spacing:5.499355px;}
.wsa7{word-spacing:5.559131px;}
.ws3c{word-spacing:5.678682px;}
.wsc1{word-spacing:5.702630px;}
.wsa4{word-spacing:5.798233px;}
.ws97{word-spacing:6.037336px;}
.ws4b{word-spacing:6.276438px;}
.ws58{word-spacing:6.455765px;}
.ws8a{word-spacing:6.694867px;}
.ws64{word-spacing:6.754643px;}
.ws61{word-spacing:6.874194px;}
.ws3e{word-spacing:7.053521px;}
.ws89{word-spacing:7.232848px;}
.ws98{word-spacing:7.292623px;}
.ws37{word-spacing:7.471950px;}
.ws4a{word-spacing:7.531726px;}
.ws59{word-spacing:7.651277px;}
.wsa3{word-spacing:7.770828px;}
.ws25{word-spacing:8.009930px;}
.ws8{word-spacing:9.833058px;}
.ws9{word-spacing:11.841512px;}
.wsb6{word-spacing:13.987584px;}
.ws4d{word-spacing:14.943900px;}
.ws5{word-spacing:15.481836px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.ws80{word-spacing:86.077440px;}
.ws9d{word-spacing:92.210458px;}
.ws82{word-spacing:99.527040px;}
.ws9c{word-spacing:113.783616px;}
.ws9b{word-spacing:114.474653px;}
.ws9a{word-spacing:128.040192px;}
.ws87{word-spacing:129.331354px;}
.ws8e{word-spacing:136.056154px;}
.ws9e{word-spacing:136.271347px;}
.ws90{word-spacing:142.727155px;}
.ws88{word-spacing:142.780954px;}
.ws73{word-spacing:154.670400px;}
.ws75{word-spacing:168.120000px;}
.ws91{word-spacing:169.680154px;}
.ws85{word-spacing:198.356400px;}
.ws83{word-spacing:211.808400px;}
.ws72{word-spacing:231.871200px;}
.ws84{word-spacing:233.592653px;}
.ws71{word-spacing:245.324400px;}
.ws81{word-spacing:256.080384px;}
.ws78{word-spacing:258.770400px;}
.ws77{word-spacing:258.776400px;}
.ws76{word-spacing:280.558656px;}
.ws74{word-spacing:303.046387px;}
.ws5a{word-spacing:322.468224px;}
.wsa0{word-spacing:561.465792px;}
.ws9f{word-spacing:601.061414px;}
.ws5c{word-spacing:614.775744px;}
.ws5b{word-spacing:634.946544px;}
.ws99{word-spacing:669.628685px;}
._5{margin-left:-11.943245px;}
._20{margin-left:-8.547479px;}
._c{margin-left:-6.635092px;}
._7{margin-left:-5.308087px;}
._0{margin-left:-3.807695px;}
._12{margin-left:-2.582453px;}
._2{margin-left:-1.506341px;}
._24{width:1.619825px;}
._6{width:2.995853px;}
._16{width:4.949433px;}
._1f{width:11.094379px;}
._1{width:12.224159px;}
._b{width:14.041382px;}
._3f{width:15.673158px;}
._8{width:17.107877px;}
._d{width:18.291334px;}
._a{width:19.403267px;}
._11{width:21.160562px;}
._10{width:22.499527px;}
._17{width:24.101518px;}
._3{width:25.314894px;}
._5a{width:27.329400px;}
._13{width:28.584688px;}
._9{width:30.611275px;}
._15{width:32.039722px;}
._4{width:33.355008px;}
._4d{width:35.279555px;}
._14{width:37.276073px;}
._59{width:39.236735px;}
._21{width:40.480032px;}
._48{width:56.595917px;}
._25{width:91.396892px;}
._23{width:93.548814px;}
._22{width:96.537594px;}
._40{width:104.651520px;}
._4b{width:112.548239px;}
._45{width:113.657059px;}
._67{width:119.916634px;}
._43{width:126.426240px;}
._69{width:127.948637px;}
._42{width:139.929638px;}
._29{width:150.151334px;}
._54{width:151.173504px;}
._55{width:156.230554px;}
._1b{width:158.167296px;}
._6e{width:161.275681px;}
._4f{width:164.354112px;}
._27{width:168.120000px;}
._47{width:169.539312px;}
._65{width:170.648525px;}
._28{width:173.175581px;}
._6f{width:176.000256px;}
._51{width:177.803712px;}
._31{width:180.619184px;}
._2e{width:182.520016px;}
._64{width:184.151923px;}
._5b{width:185.981069px;}
._1e{width:187.110835px;}
._34{width:190.177344px;}
._44{width:191.253312px;}
._2b{width:195.019200px;}
._5d{width:199.430669px;}
._49{width:204.649114px;}
._66{width:205.778880px;}
._2a{width:208.468800px;}
._35{width:238.053840px;}
._1d{width:248.172019px;}
._3d{width:252.473905px;}
._2c{width:259.846272px;}
._4a{width:269.529984px;}
._33{width:272.578538px;}
._4e{width:276.631373px;}
._6a{width:281.258035px;}
._30{width:283.338218px;}
._32{width:289.542989px;}
._3c{width:294.649162px;}
._2f{width:303.046387px;}
._2d{width:316.442189px;}
._60{width:338.391936px;}
._3b{width:344.524954px;}
._19{width:350.119987px;}
._56{width:360.018893px;}
._18{width:370.993766px;}
._6c{width:380.434176px;}
._1a{width:383.313600px;}
._38{width:386.421985px;}
._36{width:394.109123px;}
._3a{width:403.147240px;}
._6d{width:412.498022px;}
._6b{width:414.301478px;}
._3e{width:426.172970px;}
._26{width:488.059085px;}
._70{width:501.401088px;}
._39{width:504.306187px;}
._37{width:519.477350px;}
._72{width:532.335168px;}
._1c{width:546.664502px;}
._4c{width:553.047552px;}
._41{width:564.345216px;}
._5e{width:620.241754px;}
._46{width:622.770278px;}
._68{width:631.887898px;}
._5c{width:637.295846px;}
._61{width:639.447782px;}
._52{width:641.868710px;}
._50{width:658.922803px;}
._57{width:661.074739px;}
._71{width:696.581683px;}
._5f{width:709.170509px;}
._62{width:715.446967px;}
._53{width:730.797466px;}
._58{width:737.073923px;}
._e{width:957.294845px;}
._63{width:2525.673000px;}
._f{width:2549.583000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(52,101,152);}
.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;}
.fs9{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y16{bottom:15.759303px;}
.y44{bottom:31.890000px;}
.yd3{bottom:103.620000px;}
.y43{bottom:103.621500px;}
.y14{bottom:104.646000px;}
.y1ad{bottom:109.117500px;}
.ya7{bottom:110.181000px;}
.y180{bottom:115.167000px;}
.y130{bottom:115.678500px;}
.y7a{bottom:119.148000px;}
.y42{bottom:122.449500px;}
.y13{bottom:122.535000px;}
.y1b3{bottom:127.218000px;}
.y1e9{bottom:127.890000px;}
.y1ac{bottom:127.947000px;}
.ya6{bottom:129.010500px;}
.y150{bottom:133.702500px;}
.y17f{bottom:133.996500px;}
.y12f{bottom:134.521500px;}
.y79{bottom:137.977500px;}
.y12{bottom:140.422500px;}
.y41{bottom:141.279000px;}
.y100{bottom:142.068000px;}
.y1e8{bottom:145.150500px;}
.y1ab{bottom:146.776500px;}
.ya5{bottom:147.840000px;}
.y17e{bottom:152.826000px;}
.y1b2{bottom:153.759000px;}
.y78{bottom:156.807000px;}
.y14f{bottom:157.342500px;}
.y12e{bottom:158.163000px;}
.y11{bottom:158.310000px;}
.y40{bottom:160.108500px;}
.y1e7{bottom:162.411000px;}
.y1aa{bottom:165.606000px;}
.yff{bottom:165.708000px;}
.ya4{bottom:166.669500px;}
.y17d{bottom:171.655500px;}
.y14e{bottom:173.781000px;}
.y77{bottom:175.636500px;}
.y10{bottom:176.199000px;}
.y3f{bottom:178.938000px;}
.y1e6{bottom:179.671500px;}
.y1b1{bottom:180.298500px;}
.y12d{bottom:181.803000px;}
.y1a9{bottom:184.435500px;}
.ya3{bottom:185.499000px;}
.yfd{bottom:189.349500px;}
.y17c{bottom:190.485000px;}
.yf{bottom:194.086500px;}
.y76{bottom:194.466000px;}
.y1e5{bottom:196.932000px;}
.y14d{bottom:197.422500px;}
.yfc{bottom:197.568000px;}
.y3e{bottom:197.767500px;}
.y1b0{bottom:197.872500px;}
.yd2{bottom:202.251000px;}
.y1a8{bottom:203.265000px;}
.ya2{bottom:204.328500px;}
.y12c{bottom:205.444500px;}
.yfe{bottom:205.786500px;}
.y17b{bottom:209.314500px;}
.ye{bottom:211.974000px;}
.y75{bottom:213.295500px;}
.y1e4{bottom:214.192500px;}
.y1af{bottom:215.448000px;}
.y3d{bottom:216.597000px;}
.y14c{bottom:221.062500px;}
.y1a7{bottom:222.094500px;}
.yd1{bottom:222.426000px;}
.ya1{bottom:223.158000px;}
.y17a{bottom:228.144000px;}
.y12b{bottom:229.084500px;}
.yfb{bottom:229.428000px;}
.yd{bottom:229.863000px;}
.y1e3{bottom:231.453000px;}
.y74{bottom:232.125000px;}
.y3c{bottom:235.426500px;}
.y1a6{bottom:240.924000px;}
.ya0{bottom:241.987500px;}
.y14b{bottom:244.704000px;}
.y179{bottom:246.973500px;}
.y1e2{bottom:248.712000px;}
.y73{bottom:250.954500px;}
.y12a{bottom:252.726000px;}
.yfa{bottom:253.068000px;}
.y3b{bottom:254.256000px;}
.yd0{bottom:256.050000px;}
.y1a5{bottom:259.752000px;}
.y9f{bottom:260.817000px;}
.y178{bottom:265.803000px;}
.y1e1{bottom:265.972500px;}
.y72{bottom:269.784000px;}
.y3a{bottom:273.085500px;}
.ycf{bottom:274.879500px;}
.y14a{bottom:276.322500px;}
.y128{bottom:276.366000px;}
.yf9{bottom:276.709500px;}
.y1a4{bottom:278.581500px;}
.y1e0{bottom:283.233000px;}
.y9e{bottom:284.130000px;}
.y127{bottom:284.586000px;}
.y177{bottom:284.632500px;}
.y71{bottom:288.613500px;}
.y39{bottom:291.915000px;}
.y129{bottom:292.804500px;}
.yce{bottom:293.709000px;}
.y149{bottom:295.555500px;}
.y1a3{bottom:297.411000px;}
.yc{bottom:299.892000px;}
.yf8{bottom:300.349500px;}
.y1df{bottom:300.493500px;}
.y9d{bottom:302.959500px;}
.y176{bottom:303.462000px;}
.y70{bottom:307.443000px;}
.y38{bottom:310.744500px;}
.ycc{bottom:312.538500px;}
.y1a2{bottom:316.240500px;}
.y1de{bottom:317.754000px;}
.yb{bottom:317.779500px;}
.ycd{bottom:317.962500px;}
.y9c{bottom:321.789000px;}
.y175{bottom:322.291500px;}
.yf7{bottom:323.991000px;}
.y126{bottom:324.424500px;}
.y6f{bottom:326.272500px;}
.y37{bottom:329.574000px;}
.ycb{bottom:331.368000px;}
.y148{bottom:332.659500px;}
.y1dd{bottom:335.014500px;}
.y1a1{bottom:335.070000px;}
.ya{bottom:335.667000px;}
.y9b{bottom:340.618500px;}
.y174{bottom:341.121000px;}
.y6e{bottom:345.102000px;}
.yf6{bottom:347.631000px;}
.y36{bottom:348.403500px;}
.yca{bottom:350.196000px;}
.y147{bottom:351.489000px;}
.y1dc{bottom:352.275000px;}
.y9{bottom:353.556000px;}
.y1a0{bottom:353.899500px;}
.y9a{bottom:359.448000px;}
.y173{bottom:359.950500px;}
.y125{bottom:361.528500px;}
.y6d{bottom:363.931500px;}
.y35{bottom:367.233000px;}
.yc9{bottom:369.025500px;}
.y1db{bottom:369.535500px;}
.y146{bottom:370.318500px;}
.yf4{bottom:371.272500px;}
.y19f{bottom:372.729000px;}
.y99{bottom:378.277500px;}
.y172{bottom:378.780000px;}
.yf3{bottom:379.491000px;}
.y124{bottom:380.358000px;}
.y8{bottom:381.904500px;}
.y6c{bottom:382.761000px;}
.y34{bottom:386.062500px;}
.y1da{bottom:386.796000px;}
.yf5{bottom:387.711000px;}
.yc8{bottom:387.855000px;}
.y145{bottom:389.148000px;}
.y19e{bottom:391.558500px;}
.y98{bottom:397.107000px;}
.y171{bottom:397.609500px;}
.y123{bottom:399.187500px;}
.y6b{bottom:401.589000px;}
.y1d9{bottom:404.055000px;}
.y33{bottom:404.892000px;}
.yc7{bottom:406.684500px;}
.y144{bottom:407.977500px;}
.y7{bottom:408.759000px;}
.y19d{bottom:410.388000px;}
.y97{bottom:415.936500px;}
.y170{bottom:416.437500px;}
.y122{bottom:418.017000px;}
.y6a{bottom:420.418500px;}
.y1d8{bottom:421.315500px;}
.yf2{bottom:422.319000px;}
.y32{bottom:423.721500px;}
.yc6{bottom:425.514000px;}
.y6{bottom:426.646500px;}
.y143{bottom:426.807000px;}
.y19c{bottom:429.217500px;}
.y16f{bottom:435.267000px;}
.y121{bottom:436.846500px;}
.y1d7{bottom:438.576000px;}
.y69{bottom:439.248000px;}
.y31{bottom:442.551000px;}
.yc5{bottom:444.343500px;}
.y5{bottom:444.534000px;}
.y142{bottom:445.636500px;}
.y19b{bottom:448.047000px;}
.y16e{bottom:454.096500px;}
.y120{bottom:455.676000px;}
.y1d6{bottom:455.836500px;}
.y68{bottom:458.077500px;}
.yf1{bottom:459.423000px;}
.y30{bottom:461.380500px;}
.y4{bottom:462.423000px;}
.yc4{bottom:463.173000px;}
.y141{bottom:464.466000px;}
.y19a{bottom:466.876500px;}
.y16d{bottom:472.926000px;}
.y1d5{bottom:473.097000px;}
.y11f{bottom:474.505500px;}
.y67{bottom:476.907000px;}
.yf0{bottom:478.252500px;}
.y3{bottom:480.310500px;}
.yc3{bottom:482.002500px;}
.y140{bottom:483.295500px;}
.y2f{bottom:484.693500px;}
.y199{bottom:485.706000px;}
.y1d4{bottom:490.357500px;}
.y16c{bottom:491.755500px;}
.y66{bottom:495.736500px;}
.yef{bottom:497.082000px;}
.y11e{bottom:497.817000px;}
.y2{bottom:498.198000px;}
.yc2{bottom:500.832000px;}
.y13f{bottom:502.125000px;}
.y1d3{bottom:507.618000px;}
.y198{bottom:509.019000px;}
.y16b{bottom:510.585000px;}
.y65{bottom:514.566000px;}
.yee{bottom:515.911500px;}
.y1{bottom:516.087000px;}
.y11d{bottom:516.646500px;}
.y96{bottom:519.049500px;}
.yc1{bottom:519.661500px;}
.y1d2{bottom:524.878500px;}
.y16a{bottom:529.414500px;}
.y64{bottom:533.395500px;}
.yed{bottom:534.741000px;}
.y11c{bottom:535.476000px;}
.yc0{bottom:538.491000px;}
.y13e{bottom:539.145000px;}
.y1d1{bottom:542.137500px;}
.y197{bottom:542.643000px;}
.y169{bottom:548.244000px;}
.y63{bottom:552.225000px;}
.y95{bottom:552.673500px;}
.yec{bottom:553.570500px;}
.y11b{bottom:554.305500px;}
.y1ae{bottom:556.708500px;}
.ybf{bottom:557.320500px;}
.y13d{bottom:557.988000px;}
.y1d0{bottom:559.398000px;}
.y2e{bottom:559.843500px;}
.y196{bottom:561.472500px;}
.y168{bottom:567.073500px;}
.y62{bottom:571.054500px;}
.y94{bottom:571.503000px;}
.yeb{bottom:572.400000px;}
.y11a{bottom:573.135000px;}
.ybe{bottom:576.150000px;}
.y1cf{bottom:576.658500px;}
.y2d{bottom:579.300000px;}
.y195{bottom:580.302000px;}
.y13c{bottom:581.629500px;}
.y167{bottom:585.903000px;}
.y61{bottom:589.884000px;}
.y93{bottom:590.332500px;}
.yea{bottom:591.229500px;}
.y119{bottom:591.964500px;}
.y1ce{bottom:593.919000px;}
.ybd{bottom:594.979500px;}
.y194{bottom:599.131500px;}
.y166{bottom:604.732500px;}
.y13b{bottom:605.269500px;}
.y60{bottom:608.713500px;}
.y92{bottom:609.162000px;}
.ye9{bottom:610.059000px;}
.y118{bottom:610.794000px;}
.y1cd{bottom:611.179500px;}
.ybc{bottom:613.809000px;}
.y2c{bottom:616.690500px;}
.y193{bottom:617.961000px;}
.y165{bottom:623.562000px;}
.y5f{bottom:627.543000px;}
.y91{bottom:627.991500px;}
.y1cc{bottom:628.440000px;}
.ye8{bottom:628.888500px;}
.y13a{bottom:628.909500px;}
.y117{bottom:629.623500px;}
.ybb{bottom:632.638500px;}
.y2b{bottom:636.147000px;}
.y164{bottom:642.391500px;}
.y1cb{bottom:645.700500px;}
.y5e{bottom:646.372500px;}
.y90{bottom:646.821000px;}
.ye7{bottom:647.718000px;}
.yba{bottom:651.468000px;}
.y139{bottom:652.551000px;}
.y116{bottom:652.936500px;}
.y192{bottom:654.979500px;}
.y2a{bottom:655.603500px;}
.y1ca{bottom:662.961000px;}
.y5d{bottom:665.202000px;}
.y8f{bottom:665.650500px;}
.y163{bottom:665.704500px;}
.ye6{bottom:666.547500px;}
.yb9{bottom:670.297500px;}
.y115{bottom:671.766000px;}
.y29{bottom:675.061500px;}
.y138{bottom:676.191000px;}
.y191{bottom:676.812000px;}
.y1c9{bottom:680.221500px;}
.y162{bottom:681.396000px;}
.y200{bottom:681.490500px;}
.y5c{bottom:684.031500px;}
.y8e{bottom:684.480000px;}
.ye5{bottom:685.377000px;}
.yb8{bottom:689.127000px;}
.y114{bottom:690.595500px;}
.y28{bottom:694.518000px;}
.y1c8{bottom:697.480500px;}
.y1ff{bottom:698.751000px;}
.y137{bottom:699.832500px;}
.y190{bottom:700.453500px;}
.y5b{bottom:702.861000px;}
.y8d{bottom:703.309500px;}
.ye4{bottom:704.206500px;}
.yb7{bottom:707.956500px;}
.y113{bottom:709.425000px;}
.y27{bottom:713.974500px;}
.y1c7{bottom:714.741000px;}
.y161{bottom:715.020000px;}
.y1fe{bottom:716.011500px;}
.y5a{bottom:721.690500px;}
.y8c{bottom:722.139000px;}
.ye3{bottom:723.034500px;}
.y136{bottom:723.472500px;}
.y18f{bottom:724.093500px;}
.yb6{bottom:726.786000px;}
.y112{bottom:728.254500px;}
.y1c6{bottom:732.001500px;}
.y26{bottom:733.432500px;}
.y160{bottom:733.849500px;}
.y59{bottom:740.520000px;}
.y8b{bottom:740.968500px;}
.ye2{bottom:741.864000px;}
.yb5{bottom:745.615500px;}
.y111{bottom:747.084000px;}
.y135{bottom:747.114000px;}
.y18e{bottom:747.733500px;}
.y1c5{bottom:749.262000px;}
.y15f{bottom:752.677500px;}
.y25{bottom:752.889000px;}
.y1fd{bottom:755.089500px;}
.y58{bottom:759.349500px;}
.y8a{bottom:759.798000px;}
.yb4{bottom:764.445000px;}
.ye1{bottom:765.177000px;}
.y110{bottom:765.913500px;}
.y1c4{bottom:766.522500px;}
.y18d{bottom:771.375000px;}
.y15e{bottom:771.507000px;}
.y24{bottom:772.347000px;}
.y1fc{bottom:772.350000px;}
.y57{bottom:778.179000px;}
.y89{bottom:778.627500px;}
.y134{bottom:778.734000px;}
.y1c3{bottom:783.783000px;}
.ye0{bottom:784.006500px;}
.y10f{bottom:784.743000px;}
.y1fb{bottom:789.610500px;}
.y23{bottom:791.803500px;}
.y18c{bottom:795.015000px;}
.y56{bottom:797.008500px;}
.y88{bottom:797.457000px;}
.yb3{bottom:799.048500px;}
.y1c2{bottom:801.043500px;}
.ydf{bottom:802.836000px;}
.y10e{bottom:803.572500px;}
.y1fa{bottom:806.871000px;}
.y15d{bottom:808.527000px;}
.y22{bottom:811.260000px;}
.y55{bottom:815.838000px;}
.y87{bottom:816.286500px;}
.y1c1{bottom:818.304000px;}
.y18b{bottom:818.656500px;}
.yb2{bottom:820.881000px;}
.yde{bottom:821.665500px;}
.y10d{bottom:822.402000px;}
.y1f9{bottom:824.131500px;}
.y15c{bottom:827.370000px;}
.y21{bottom:830.718000px;}
.y54{bottom:834.667500px;}
.y86{bottom:835.114500px;}
.y1c0{bottom:835.563000px;}
.y84{bottom:839.149500px;}
.ydd{bottom:840.495000px;}
.y10c{bottom:841.231500px;}
.y1f8{bottom:841.392000px;}
.y18a{bottom:842.296500px;}
.yb1{bottom:844.522500px;}
.y20{bottom:850.174500px;}
.y15b{bottom:851.011500px;}
.y1bf{bottom:852.823500px;}
.y53{bottom:853.497000px;}
.y85{bottom:853.944000px;}
.y1f7{bottom:858.652500px;}
.ydc{bottom:859.324500px;}
.y10b{bottom:860.061000px;}
.y189{bottom:865.938000px;}
.yb0{bottom:868.162500px;}
.y1be{bottom:870.084000px;}
.y52{bottom:872.326500px;}
.y83{bottom:872.773500px;}
.y15a{bottom:874.651500px;}
.y1f6{bottom:875.913000px;}
.ydb{bottom:878.154000px;}
.y10a{bottom:878.890500px;}
.y1f{bottom:886.137000px;}
.y1bd{bottom:887.344500px;}
.y188{bottom:889.578000px;}
.y51{bottom:891.156000px;}
.y82{bottom:891.603000px;}
.yae{bottom:891.804000px;}
.y1f5{bottom:893.172000px;}
.yda{bottom:896.983500px;}
.y159{bottom:898.293000px;}
.yad{bottom:900.022500px;}
.y109{bottom:902.202000px;}
.y1e{bottom:902.277000px;}
.y1bc{bottom:904.605000px;}
.yaf{bottom:908.242500px;}
.y50{bottom:909.984000px;}
.y81{bottom:910.432500px;}
.y187{bottom:913.219500px;}
.yd9{bottom:920.296500px;}
.y1bb{bottom:921.865500px;}
.y158{bottom:921.933000px;}
.y1d{bottom:922.756500px;}
.y1f4{bottom:927.693000px;}
.y4f{bottom:928.813500px;}
.y80{bottom:929.262000px;}
.yac{bottom:931.882500px;}
.y1c{bottom:934.555500px;}
.y108{bottom:935.826000px;}
.y186{bottom:936.859500px;}
.yd8{bottom:939.126000px;}
.y1f3{bottom:944.953500px;}
.y157{bottom:945.574500px;}
.y4e{bottom:947.643000px;}
.y7f{bottom:948.091500px;}
.y107{bottom:954.655500px;}
.y1b{bottom:955.035000px;}
.y1ba{bottom:956.386500px;}
.yd7{bottom:957.955500px;}
.y185{bottom:960.501000px;}
.y1f2{bottom:962.214000px;}
.y4d{bottom:966.472500px;}
.yab{bottom:966.490500px;}
.y7e{bottom:966.921000px;}
.y156{bottom:969.214500px;}
.yd6{bottom:976.785000px;}
.y1b9{bottom:978.129000px;}
.y1f1{bottom:979.474500px;}
.y184{bottom:984.141000px;}
.y4c{bottom:985.302000px;}
.y7d{bottom:985.750500px;}
.y106{bottom:991.675500px;}
.y155{bottom:992.856000px;}
.y1f0{bottom:996.735000px;}
.y1a{bottom:997.089000px;}
.yaa{bottom:1000.096500px;}
.y133{bottom:1004.131500px;}
.y7c{bottom:1004.580000px;}
.y183{bottom:1007.782500px;}
.y4b{bottom:1008.615000px;}
.y1b8{bottom:1011.753000px;}
.y105{bottom:1013.508000px;}
.y1ef{bottom:1013.995500px;}
.y154{bottom:1016.496000px;}
.ya9{bottom:1018.926000px;}
.y132{bottom:1022.961000px;}
.y7b{bottom:1023.409500px;}
.y1ee{bottom:1031.254500px;}
.y19{bottom:1037.008500px;}
.y104{bottom:1037.148000px;}
.ya8{bottom:1037.755500px;}
.y1b7{bottom:1038.294000px;}
.y153{bottom:1040.137500px;}
.y4a{bottom:1042.239000px;}
.y182{bottom:1042.390500px;}
.y131{bottom:1046.274000px;}
.y1ed{bottom:1048.515000px;}
.y1b6{bottom:1055.868000px;}
.yd5{bottom:1056.585000px;}
.y103{bottom:1060.789500px;}
.y49{bottom:1061.068500px;}
.y181{bottom:1061.623500px;}
.y152{bottom:1063.777500px;}
.y18{bottom:1065.253500px;}
.y1ec{bottom:1065.775500px;}
.y1b5{bottom:1073.442000px;}
.yd4{bottom:1075.414500px;}
.y48{bottom:1079.898000px;}
.y1eb{bottom:1083.036000px;}
.y102{bottom:1084.429500px;}
.y151{bottom:1087.419000px;}
.y1b4{bottom:1091.016000px;}
.y17{bottom:1093.497000px;}
.y47{bottom:1098.727500px;}
.y1ea{bottom:1100.296500px;}
.y46{bottom:1117.557000px;}
.y101{bottom:1119.037500px;}
.y15{bottom:1136.983500px;}
.y45{bottom:1177.662000px;}
.ha{height:26.110157px;}
.h2{height:30.461558px;}
.h4{height:30.670772px;}
.h14{height:33.072749px;}
.hb{height:34.813397px;}
.hf{height:35.052500px;}
.h3{height:38.202476px;}
.h12{height:38.896243px;}
.hc{height:39.165235px;}
.h17{height:39.434227px;}
.h10{height:41.482876px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h7{height:43.815515px;}
.h19{height:49.117939px;}
.h5{height:50.930649px;}
.h9{height:54.547601px;}
.h11{height:54.575123px;}
.h18{height:54.768749px;}
.h16{height:71.770243px;}
.h15{height:71.776243px;}
.h13{height:72.045235px;}
.h8{height:77.792486px;}
.h6{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:194.570198px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x3f{left:62.541000px;}
.x1f{left:65.056500px;}
.x22{left:74.026500px;}
.x20{left:76.420500px;}
.x23{left:78.424500px;}
.x42{left:85.431000px;}
.x14{left:92.235000px;}
.x21{left:101.619000px;}
.x13{left:106.828500px;}
.x28{left:117.153000px;}
.xd{left:118.804500px;}
.x25{left:124.294500px;}
.x12{left:129.639000px;}
.x27{left:131.590500px;}
.x2a{left:137.481000px;}
.x29{left:152.733000px;}
.x1a{left:154.575000px;}
.x26{left:156.963000px;}
.x24{left:162.423000px;}
.x19{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x30{left:258.556500px;}
.x4{left:269.914500px;}
.x40{left:271.063500px;}
.x3e{left:274.827000px;}
.x6{left:281.479500px;}
.xc{left:297.487500px;}
.x39{left:307.213500px;}
.xb{left:314.880000px;}
.xe{left:321.502500px;}
.x41{left:326.472000px;}
.x3d{left:333.553500px;}
.x3a{left:356.137500px;}
.x3b{left:371.181000px;}
.x36{left:434.313000px;}
.x2b{left:443.424000px;}
.x35{left:450.745500px;}
.x33{left:461.677500px;}
.xf{left:464.779500px;}
.x34{left:466.705500px;}
.x32{left:470.425500px;}
.x31{left:488.550000px;}
.x10{left:517.731000px;}
.x1b{left:565.366500px;}
.x3c{left:582.310500px;}
.x2c{left:597.841500px;}
.x7{left:661.057500px;}
.x1c{left:663.502500px;}
.x8{left:682.980000px;}
.x2d{left:684.237000px;}
.x11{left:713.958000px;}
.x37{left:715.848000px;}
.x9{left:751.860000px;}
.x15{left:756.091500px;}
.x1e{left:757.227000px;}
.x1d{left:759.432000px;}
.x2f{left:766.219500px;}
.x2e{left:768.426000px;}
.x17{left:818.188500px;}
.x18{left:828.336000px;}
.xa{left:832.990500px;}
.x16{left:835.462500px;}
.x38{left:837.067500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.226667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000298pt;}
.ls1c{letter-spacing:0.000375pt;}
.ls19{letter-spacing:0.000387pt;}
.ls1f{letter-spacing:0.000503pt;}
.ls0{letter-spacing:0.000533pt;}
.ls25{letter-spacing:0.000711pt;}
.ls1b{letter-spacing:0.001026pt;}
.lsf{letter-spacing:0.001774pt;}
.ls23{letter-spacing:0.001843pt;}
.ls14{letter-spacing:0.003012pt;}
.ls2{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.004944pt;}
.ls17{letter-spacing:0.570745pt;}
.ls11{letter-spacing:0.576078pt;}
.ls12{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626533pt;}
.ls16{letter-spacing:10.973203pt;}
.ls15{letter-spacing:11.027624pt;}
.ls1e{letter-spacing:11.736272pt;}
.ls22{letter-spacing:11.924525pt;}
.ls24{letter-spacing:11.952375pt;}
.ls1d{letter-spacing:11.952503pt;}
.ls26{letter-spacing:11.955635pt;}
.ls9{letter-spacing:13.070931pt;}
.ls18{letter-spacing:13.230333pt;}
.ls13{letter-spacing:13.283733pt;}
.ls8{letter-spacing:13.389734pt;}
.lsc{letter-spacing:13.442868pt;}
.ls1a{letter-spacing:13.602270pt;}
.lsa{letter-spacing:13.814805pt;}
.ls1{letter-spacing:15.942400pt;}
.lsb{letter-spacing:17.162239pt;}
.lse{letter-spacing:17.321641pt;}
.ls7{letter-spacing:17.693578pt;}
.lsd{letter-spacing:18.171782pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls10{letter-spacing:83.815733pt;}
.ws55{word-spacing:-13.283467pt;}
.ws70{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws2f{word-spacing:-3.134898pt;}
.ws6c{word-spacing:-3.081764pt;}
.ws3d{word-spacing:-2.922363pt;}
.wsb2{word-spacing:-2.677965pt;}
.ws66{word-spacing:-2.656693pt;}
.ws39{word-spacing:-2.603559pt;}
.ws96{word-spacing:-2.284756pt;}
.ws95{word-spacing:-2.231622pt;}
.ws79{word-spacing:-2.125355pt;}
.wsab{word-spacing:-2.072221pt;}
.ws20{word-spacing:-1.912819pt;}
.wsa9{word-spacing:-1.806551pt;}
.ws94{word-spacing:-1.753418pt;}
.ws2e{word-spacing:-1.700284pt;}
.ws41{word-spacing:-1.594016pt;}
.wsad{word-spacing:-1.386803pt;}
.ws67{word-spacing:-1.328347pt;}
.ws7a{word-spacing:-1.222079pt;}
.wsa1{word-spacing:-1.168945pt;}
.ws69{word-spacing:-1.115811pt;}
.ws7f{word-spacing:-1.062677pt;}
.wsae{word-spacing:-1.052058pt;}
.ws5e{word-spacing:-1.009543pt;}
.ws49{word-spacing:-0.956410pt;}
.ws5d{word-spacing:-0.903276pt;}
.wsb0{word-spacing:-0.573850pt;}
.ws6d{word-spacing:-0.531339pt;}
.ws1d{word-spacing:-0.425071pt;}
.wsa5{word-spacing:-0.371937pt;}
.ws2d{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.286925pt;}
.ws4e{word-spacing:-0.265669pt;}
.wsba{word-spacing:-0.239928pt;}
.wsbb{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws29{word-spacing:-0.159402pt;}
.ws23{word-spacing:-0.106268pt;}
.ws13{word-spacing:-0.095642pt;}
.ws24{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.007697pt;}
.wse{word-spacing:-0.003955pt;}
.wsbd{word-spacing:-0.003439pt;}
.wsb9{word-spacing:-0.003337pt;}
.ws26{word-spacing:-0.002842pt;}
.ws4{word-spacing:-0.002348pt;}
.wsc2{word-spacing:-0.001638pt;}
.wsd{word-spacing:-0.000444pt;}
.ws2{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.001126pt;}
.ws1b{word-spacing:0.047821pt;}
.ws1e{word-spacing:0.053134pt;}
.ws8f{word-spacing:0.095642pt;}
.ws34{word-spacing:0.106268pt;}
.ws1{word-spacing:0.111581pt;}
.ws19{word-spacing:0.143462pt;}
.ws21{word-spacing:0.159402pt;}
.ws36{word-spacing:0.212535pt;}
.wsb1{word-spacing:0.239104pt;}
.ws2c{word-spacing:0.265669pt;}
.ws45{word-spacing:0.318803pt;}
.ws35{word-spacing:0.371937pt;}
.ws6a{word-spacing:0.425071pt;}
.ws56{word-spacing:0.531339pt;}
.wsa2{word-spacing:0.584473pt;}
.ws68{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.797008pt;}
.wsa6{word-spacing:0.850142pt;}
.ws92{word-spacing:0.903276pt;}
.ws31{word-spacing:0.956410pt;}
.ws3a{word-spacing:1.062677pt;}
.ws6e{word-spacing:1.115811pt;}
.ws48{word-spacing:1.168945pt;}
.wsc{word-spacing:1.227389pt;}
.ws53{word-spacing:1.275213pt;}
.ws46{word-spacing:1.328347pt;}
.ws1f{word-spacing:1.381481pt;}
.ws5f{word-spacing:1.434614pt;}
.ws16{word-spacing:1.434624pt;}
.ws65{word-spacing:1.487748pt;}
.ws42{word-spacing:1.594016pt;}
.ws32{word-spacing:1.647150pt;}
.wsaa{word-spacing:1.700284pt;}
.ws4c{word-spacing:1.753418pt;}
.ws60{word-spacing:1.859685pt;}
.ws33{word-spacing:1.912819pt;}
.ws43{word-spacing:2.019087pt;}
.ws44{word-spacing:2.072221pt;}
.ws7c{word-spacing:2.125355pt;}
.ws6f{word-spacing:2.178489pt;}
.ws3{word-spacing:2.231616pt;}
.wsac{word-spacing:2.231622pt;}
.wsc0{word-spacing:2.247578pt;}
.ws7d{word-spacing:2.284756pt;}
.ws8b{word-spacing:2.337890pt;}
.ws0{word-spacing:2.364089pt;}
.ws62{word-spacing:2.391024pt;}
.ws7e{word-spacing:2.444158pt;}
.ws10{word-spacing:2.550432pt;}
.wsbc{word-spacing:2.582323pt;}
.ws7b{word-spacing:2.603559pt;}
.ws57{word-spacing:2.762961pt;}
.ws8d{word-spacing:2.773606pt;}
.wsc3{word-spacing:2.862729pt;}
.wsaf{word-spacing:2.866509pt;}
.wsbe{word-spacing:2.868352pt;}
.wsb5{word-spacing:2.869248pt;}
.ws11{word-spacing:2.905654pt;}
.ws47{word-spacing:2.922363pt;}
.ws1a{word-spacing:2.955442pt;}
.ws8c{word-spacing:2.975497pt;}
.ws40{word-spacing:3.028630pt;}
.wsb7{word-spacing:3.060531pt;}
.ws3f{word-spacing:3.081764pt;}
.wsc4{word-spacing:3.108352pt;}
.ws63{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.wsb8{word-spacing:3.299635pt;}
.ws17{word-spacing:3.347456pt;}
.ws2a{word-spacing:3.453701pt;}
.ws2b{word-spacing:3.506835pt;}
.ws4f{word-spacing:3.559969pt;}
.ws30{word-spacing:3.666237pt;}
.ws3b{word-spacing:3.719371pt;}
.ws50{word-spacing:3.825638pt;}
.ws15{word-spacing:3.873485pt;}
.ws51{word-spacing:3.985040pt;}
.ws93{word-spacing:4.197575pt;}
.ws52{word-spacing:4.250709pt;}
.wsb3{word-spacing:4.256051pt;}
.ws38{word-spacing:4.303843pt;}
.ws22{word-spacing:4.569513pt;}
.ws86{word-spacing:4.622646pt;}
.ws54{word-spacing:4.835182pt;}
.wsa{word-spacing:4.872362pt;}
.wsa8{word-spacing:4.888316pt;}
.wsa7{word-spacing:4.941450pt;}
.ws3c{word-spacing:5.047717pt;}
.wsc1{word-spacing:5.069005pt;}
.wsa4{word-spacing:5.153985pt;}
.ws97{word-spacing:5.366521pt;}
.ws4b{word-spacing:5.579056pt;}
.ws58{word-spacing:5.738458pt;}
.ws8a{word-spacing:5.950993pt;}
.ws64{word-spacing:6.004127pt;}
.ws61{word-spacing:6.110395pt;}
.ws3e{word-spacing:6.269796pt;}
.ws89{word-spacing:6.429198pt;}
.ws98{word-spacing:6.482332pt;}
.ws37{word-spacing:6.641733pt;}
.ws4a{word-spacing:6.694867pt;}
.ws59{word-spacing:6.801135pt;}
.wsa3{word-spacing:6.907403pt;}
.ws25{word-spacing:7.119938pt;}
.ws8{word-spacing:8.740496pt;}
.ws9{word-spacing:10.525789pt;}
.wsb6{word-spacing:12.433408pt;}
.ws4d{word-spacing:13.283467pt;}
.ws5{word-spacing:13.761632pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.ws80{word-spacing:76.513280pt;}
.ws9d{word-spacing:81.964851pt;}
.ws82{word-spacing:88.468480pt;}
.ws9c{word-spacing:101.140992pt;}
.ws9b{word-spacing:101.755247pt;}
.ws9a{word-spacing:113.813504pt;}
.ws87{word-spacing:114.961203pt;}
.ws8e{word-spacing:120.938803pt;}
.ws9e{word-spacing:121.130086pt;}
.ws90{word-spacing:126.868582pt;}
.ws88{word-spacing:126.916403pt;}
.ws73{word-spacing:137.484800pt;}
.ws75{word-spacing:149.440000pt;}
.ws91{word-spacing:150.826803pt;}
.ws85{word-spacing:176.316800pt;}
.ws83{word-spacing:188.274133pt;}
.ws72{word-spacing:206.107733pt;}
.ws84{word-spacing:207.637914pt;}
.ws71{word-spacing:218.066133pt;}
.ws81{word-spacing:227.627008pt;}
.ws78{word-spacing:230.018133pt;}
.ws77{word-spacing:230.023467pt;}
.ws76{word-spacing:249.385472pt;}
.ws74{word-spacing:269.374566pt;}
.ws5a{word-spacing:286.638421pt;}
.wsa0{word-spacing:499.080704pt;}
.ws9f{word-spacing:534.276813pt;}
.ws5c{word-spacing:546.467328pt;}
.ws5b{word-spacing:564.396928pt;}
.ws99{word-spacing:595.225498pt;}
._5{margin-left:-10.616218pt;}
._20{margin-left:-7.597759pt;}
._c{margin-left:-5.897859pt;}
._7{margin-left:-4.718299pt;}
._0{margin-left:-3.384618pt;}
._12{margin-left:-2.295514pt;}
._2{margin-left:-1.338970pt;}
._24{width:1.439844pt;}
._6{width:2.662980pt;}
._16{width:4.399496pt;}
._1f{width:9.861670pt;}
._1{width:10.865919pt;}
._b{width:12.481229pt;}
._3f{width:13.931696pt;}
._8{width:15.207002pt;}
._d{width:16.258963pt;}
._a{width:17.247349pt;}
._11{width:18.809389pt;}
._10{width:19.999580pt;}
._17{width:21.423571pt;}
._3{width:22.502128pt;}
._5a{width:24.292800pt;}
._13{width:25.408611pt;}
._9{width:27.210022pt;}
._15{width:28.479753pt;}
._4{width:29.648896pt;}
._4d{width:31.359604pt;}
._14{width:33.134287pt;}
._59{width:34.877098pt;}
._21{width:35.982251pt;}
._48{width:50.307482pt;}
._25{width:81.241682pt;}
._23{width:83.154501pt;}
._22{width:85.811195pt;}
._40{width:93.023573pt;}
._4b{width:100.042879pt;}
._45{width:101.028497pt;}
._67{width:106.592563pt;}
._43{width:112.378880pt;}
._69{width:113.732122pt;}
._42{width:124.381901pt;}
._29{width:133.467853pt;}
._54{width:134.376448pt;}
._55{width:138.871603pt;}
._1b{width:140.593152pt;}
._6e{width:143.356161pt;}
._4f{width:146.092544pt;}
._27{width:149.440000pt;}
._47{width:150.701611pt;}
._65{width:151.687578pt;}
._28{width:153.933850pt;}
._6f{width:156.444672pt;}
._51{width:158.047744pt;}
._31{width:160.550386pt;}
._2e{width:162.240014pt;}
._64{width:163.690598pt;}
._5b{width:165.316506pt;}
._1e{width:166.320742pt;}
._34{width:169.046528pt;}
._44{width:170.002944pt;}
._2b{width:173.350400pt;}
._5d{width:177.271706pt;}
._49{width:181.910323pt;}
._66{width:182.914560pt;}
._2a{width:185.305600pt;}
._35{width:211.603413pt;}
._1d{width:220.597350pt;}
._3d{width:224.421249pt;}
._2c{width:230.974464pt;}
._4a{width:239.582208pt;}
._33{width:242.292034pt;}
._4e{width:245.894554pt;}
._6a{width:250.007142pt;}
._30{width:251.856194pt;}
._32{width:257.371546pt;}
._3c{width:261.910366pt;}
._2f{width:269.374566pt;}
._2d{width:281.281946pt;}
._60{width:300.792832pt;}
._3b{width:306.244403pt;}
._19{width:311.217766pt;}
._56{width:320.016794pt;}
._18{width:329.772237pt;}
._6c{width:338.163712pt;}
._1a{width:340.723200pt;}
._38{width:343.486209pt;}
._36{width:350.319221pt;}
._3a{width:358.353102pt;}
._6d{width:366.664909pt;}
._6b{width:368.267981pt;}
._3e{width:378.820418pt;}
._26{width:433.830298pt;}
._70{width:445.689856pt;}
._39{width:448.272166pt;}
._37{width:461.757645pt;}
._72{width:473.186816pt;}
._1c{width:485.924002pt;}
._4c{width:491.597824pt;}
._41{width:501.640192pt;}
._5e{width:551.326003pt;}
._46{width:553.573581pt;}
._68{width:561.678131pt;}
._5c{width:566.485197pt;}
._61{width:568.398029pt;}
._52{width:570.549965pt;}
._50{width:585.709158pt;}
._57{width:587.621990pt;}
._71{width:619.183718pt;}
._5f{width:630.373786pt;}
._62{width:635.952859pt;}
._53{width:649.597747pt;}
._58{width:655.176821pt;}
._e{width:850.928751pt;}
._63{width:2245.042667pt;}
._f{width:2266.296000pt;}
.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;}
.fs9{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:14.008270pt;}
.y44{bottom:28.346667pt;}
.yd3{bottom:92.106667pt;}
.y43{bottom:92.108000pt;}
.y14{bottom:93.018667pt;}
.y1ad{bottom:96.993333pt;}
.ya7{bottom:97.938667pt;}
.y180{bottom:102.370667pt;}
.y130{bottom:102.825333pt;}
.y7a{bottom:105.909333pt;}
.y42{bottom:108.844000pt;}
.y13{bottom:108.920000pt;}
.y1b3{bottom:113.082667pt;}
.y1e9{bottom:113.680000pt;}
.y1ac{bottom:113.730667pt;}
.ya6{bottom:114.676000pt;}
.y150{bottom:118.846667pt;}
.y17f{bottom:119.108000pt;}
.y12f{bottom:119.574667pt;}
.y79{bottom:122.646667pt;}
.y12{bottom:124.820000pt;}
.y41{bottom:125.581333pt;}
.y100{bottom:126.282667pt;}
.y1e8{bottom:129.022667pt;}
.y1ab{bottom:130.468000pt;}
.ya5{bottom:131.413333pt;}
.y17e{bottom:135.845333pt;}
.y1b2{bottom:136.674667pt;}
.y78{bottom:139.384000pt;}
.y14f{bottom:139.860000pt;}
.y12e{bottom:140.589333pt;}
.y11{bottom:140.720000pt;}
.y40{bottom:142.318667pt;}
.y1e7{bottom:144.365333pt;}
.y1aa{bottom:147.205333pt;}
.yff{bottom:147.296000pt;}
.ya4{bottom:148.150667pt;}
.y17d{bottom:152.582667pt;}
.y14e{bottom:154.472000pt;}
.y77{bottom:156.121333pt;}
.y10{bottom:156.621333pt;}
.y3f{bottom:159.056000pt;}
.y1e6{bottom:159.708000pt;}
.y1b1{bottom:160.265333pt;}
.y12d{bottom:161.602667pt;}
.y1a9{bottom:163.942667pt;}
.ya3{bottom:164.888000pt;}
.yfd{bottom:168.310667pt;}
.y17c{bottom:169.320000pt;}
.yf{bottom:172.521333pt;}
.y76{bottom:172.858667pt;}
.y1e5{bottom:175.050667pt;}
.y14d{bottom:175.486667pt;}
.yfc{bottom:175.616000pt;}
.y3e{bottom:175.793333pt;}
.y1b0{bottom:175.886667pt;}
.yd2{bottom:179.778667pt;}
.y1a8{bottom:180.680000pt;}
.ya2{bottom:181.625333pt;}
.y12c{bottom:182.617333pt;}
.yfe{bottom:182.921333pt;}
.y17b{bottom:186.057333pt;}
.ye{bottom:188.421333pt;}
.y75{bottom:189.596000pt;}
.y1e4{bottom:190.393333pt;}
.y1af{bottom:191.509333pt;}
.y3d{bottom:192.530667pt;}
.y14c{bottom:196.500000pt;}
.y1a7{bottom:197.417333pt;}
.yd1{bottom:197.712000pt;}
.ya1{bottom:198.362667pt;}
.y17a{bottom:202.794667pt;}
.y12b{bottom:203.630667pt;}
.yfb{bottom:203.936000pt;}
.yd{bottom:204.322667pt;}
.y1e3{bottom:205.736000pt;}
.y74{bottom:206.333333pt;}
.y3c{bottom:209.268000pt;}
.y1a6{bottom:214.154667pt;}
.ya0{bottom:215.100000pt;}
.y14b{bottom:217.514667pt;}
.y179{bottom:219.532000pt;}
.y1e2{bottom:221.077333pt;}
.y73{bottom:223.070667pt;}
.y12a{bottom:224.645333pt;}
.yfa{bottom:224.949333pt;}
.y3b{bottom:226.005333pt;}
.yd0{bottom:227.600000pt;}
.y1a5{bottom:230.890667pt;}
.y9f{bottom:231.837333pt;}
.y178{bottom:236.269333pt;}
.y1e1{bottom:236.420000pt;}
.y72{bottom:239.808000pt;}
.y3a{bottom:242.742667pt;}
.ycf{bottom:244.337333pt;}
.y14a{bottom:245.620000pt;}
.y128{bottom:245.658667pt;}
.yf9{bottom:245.964000pt;}
.y1a4{bottom:247.628000pt;}
.y1e0{bottom:251.762667pt;}
.y9e{bottom:252.560000pt;}
.y127{bottom:252.965333pt;}
.y177{bottom:253.006667pt;}
.y71{bottom:256.545333pt;}
.y39{bottom:259.480000pt;}
.y129{bottom:260.270667pt;}
.yce{bottom:261.074667pt;}
.y149{bottom:262.716000pt;}
.y1a3{bottom:264.365333pt;}
.yc{bottom:266.570667pt;}
.yf8{bottom:266.977333pt;}
.y1df{bottom:267.105333pt;}
.y9d{bottom:269.297333pt;}
.y176{bottom:269.744000pt;}
.y70{bottom:273.282667pt;}
.y38{bottom:276.217333pt;}
.ycc{bottom:277.812000pt;}
.y1a2{bottom:281.102667pt;}
.y1de{bottom:282.448000pt;}
.yb{bottom:282.470667pt;}
.ycd{bottom:282.633333pt;}
.y9c{bottom:286.034667pt;}
.y175{bottom:286.481333pt;}
.yf7{bottom:287.992000pt;}
.y126{bottom:288.377333pt;}
.y6f{bottom:290.020000pt;}
.y37{bottom:292.954667pt;}
.ycb{bottom:294.549333pt;}
.y148{bottom:295.697333pt;}
.y1dd{bottom:297.790667pt;}
.y1a1{bottom:297.840000pt;}
.ya{bottom:298.370667pt;}
.y9b{bottom:302.772000pt;}
.y174{bottom:303.218667pt;}
.y6e{bottom:306.757333pt;}
.yf6{bottom:309.005333pt;}
.y36{bottom:309.692000pt;}
.yca{bottom:311.285333pt;}
.y147{bottom:312.434667pt;}
.y1dc{bottom:313.133333pt;}
.y9{bottom:314.272000pt;}
.y1a0{bottom:314.577333pt;}
.y9a{bottom:319.509333pt;}
.y173{bottom:319.956000pt;}
.y125{bottom:321.358667pt;}
.y6d{bottom:323.494667pt;}
.y35{bottom:326.429333pt;}
.yc9{bottom:328.022667pt;}
.y1db{bottom:328.476000pt;}
.y146{bottom:329.172000pt;}
.yf4{bottom:330.020000pt;}
.y19f{bottom:331.314667pt;}
.y99{bottom:336.246667pt;}
.y172{bottom:336.693333pt;}
.yf3{bottom:337.325333pt;}
.y124{bottom:338.096000pt;}
.y8{bottom:339.470667pt;}
.y6c{bottom:340.232000pt;}
.y34{bottom:343.166667pt;}
.y1da{bottom:343.818667pt;}
.yf5{bottom:344.632000pt;}
.yc8{bottom:344.760000pt;}
.y145{bottom:345.909333pt;}
.y19e{bottom:348.052000pt;}
.y98{bottom:352.984000pt;}
.y171{bottom:353.430667pt;}
.y123{bottom:354.833333pt;}
.y6b{bottom:356.968000pt;}
.y1d9{bottom:359.160000pt;}
.y33{bottom:359.904000pt;}
.yc7{bottom:361.497333pt;}
.y144{bottom:362.646667pt;}
.y7{bottom:363.341333pt;}
.y19d{bottom:364.789333pt;}
.y97{bottom:369.721333pt;}
.y170{bottom:370.166667pt;}
.y122{bottom:371.570667pt;}
.y6a{bottom:373.705333pt;}
.y1d8{bottom:374.502667pt;}
.yf2{bottom:375.394667pt;}
.y32{bottom:376.641333pt;}
.yc6{bottom:378.234667pt;}
.y6{bottom:379.241333pt;}
.y143{bottom:379.384000pt;}
.y19c{bottom:381.526667pt;}
.y16f{bottom:386.904000pt;}
.y121{bottom:388.308000pt;}
.y1d7{bottom:389.845333pt;}
.y69{bottom:390.442667pt;}
.y31{bottom:393.378667pt;}
.yc5{bottom:394.972000pt;}
.y5{bottom:395.141333pt;}
.y142{bottom:396.121333pt;}
.y19b{bottom:398.264000pt;}
.y16e{bottom:403.641333pt;}
.y120{bottom:405.045333pt;}
.y1d6{bottom:405.188000pt;}
.y68{bottom:407.180000pt;}
.yf1{bottom:408.376000pt;}
.y30{bottom:410.116000pt;}
.y4{bottom:411.042667pt;}
.yc4{bottom:411.709333pt;}
.y141{bottom:412.858667pt;}
.y19a{bottom:415.001333pt;}
.y16d{bottom:420.378667pt;}
.y1d5{bottom:420.530667pt;}
.y11f{bottom:421.782667pt;}
.y67{bottom:423.917333pt;}
.yf0{bottom:425.113333pt;}
.y3{bottom:426.942667pt;}
.yc3{bottom:428.446667pt;}
.y140{bottom:429.596000pt;}
.y2f{bottom:430.838667pt;}
.y199{bottom:431.738667pt;}
.y1d4{bottom:435.873333pt;}
.y16c{bottom:437.116000pt;}
.y66{bottom:440.654667pt;}
.yef{bottom:441.850667pt;}
.y11e{bottom:442.504000pt;}
.y2{bottom:442.842667pt;}
.yc2{bottom:445.184000pt;}
.y13f{bottom:446.333333pt;}
.y1d3{bottom:451.216000pt;}
.y198{bottom:452.461333pt;}
.y16b{bottom:453.853333pt;}
.y65{bottom:457.392000pt;}
.yee{bottom:458.588000pt;}
.y1{bottom:458.744000pt;}
.y11d{bottom:459.241333pt;}
.y96{bottom:461.377333pt;}
.yc1{bottom:461.921333pt;}
.y1d2{bottom:466.558667pt;}
.y16a{bottom:470.590667pt;}
.y64{bottom:474.129333pt;}
.yed{bottom:475.325333pt;}
.y11c{bottom:475.978667pt;}
.yc0{bottom:478.658667pt;}
.y13e{bottom:479.240000pt;}
.y1d1{bottom:481.900000pt;}
.y197{bottom:482.349333pt;}
.y169{bottom:487.328000pt;}
.y63{bottom:490.866667pt;}
.y95{bottom:491.265333pt;}
.yec{bottom:492.062667pt;}
.y11b{bottom:492.716000pt;}
.y1ae{bottom:494.852000pt;}
.ybf{bottom:495.396000pt;}
.y13d{bottom:495.989333pt;}
.y1d0{bottom:497.242667pt;}
.y2e{bottom:497.638667pt;}
.y196{bottom:499.086667pt;}
.y168{bottom:504.065333pt;}
.y62{bottom:507.604000pt;}
.y94{bottom:508.002667pt;}
.yeb{bottom:508.800000pt;}
.y11a{bottom:509.453333pt;}
.ybe{bottom:512.133333pt;}
.y1cf{bottom:512.585333pt;}
.y2d{bottom:514.933333pt;}
.y195{bottom:515.824000pt;}
.y13c{bottom:517.004000pt;}
.y167{bottom:520.802667pt;}
.y61{bottom:524.341333pt;}
.y93{bottom:524.740000pt;}
.yea{bottom:525.537333pt;}
.y119{bottom:526.190667pt;}
.y1ce{bottom:527.928000pt;}
.ybd{bottom:528.870667pt;}
.y194{bottom:532.561333pt;}
.y166{bottom:537.540000pt;}
.y13b{bottom:538.017333pt;}
.y60{bottom:541.078667pt;}
.y92{bottom:541.477333pt;}
.ye9{bottom:542.274667pt;}
.y118{bottom:542.928000pt;}
.y1cd{bottom:543.270667pt;}
.ybc{bottom:545.608000pt;}
.y2c{bottom:548.169333pt;}
.y193{bottom:549.298667pt;}
.y165{bottom:554.277333pt;}
.y5f{bottom:557.816000pt;}
.y91{bottom:558.214667pt;}
.y1cc{bottom:558.613333pt;}
.ye8{bottom:559.012000pt;}
.y13a{bottom:559.030667pt;}
.y117{bottom:559.665333pt;}
.ybb{bottom:562.345333pt;}
.y2b{bottom:565.464000pt;}
.y164{bottom:571.014667pt;}
.y1cb{bottom:573.956000pt;}
.y5e{bottom:574.553333pt;}
.y90{bottom:574.952000pt;}
.ye7{bottom:575.749333pt;}
.yba{bottom:579.082667pt;}
.y139{bottom:580.045333pt;}
.y116{bottom:580.388000pt;}
.y192{bottom:582.204000pt;}
.y2a{bottom:582.758667pt;}
.y1ca{bottom:589.298667pt;}
.y5d{bottom:591.290667pt;}
.y8f{bottom:591.689333pt;}
.y163{bottom:591.737333pt;}
.ye6{bottom:592.486667pt;}
.yb9{bottom:595.820000pt;}
.y115{bottom:597.125333pt;}
.y29{bottom:600.054667pt;}
.y138{bottom:601.058667pt;}
.y191{bottom:601.610667pt;}
.y1c9{bottom:604.641333pt;}
.y162{bottom:605.685333pt;}
.y200{bottom:605.769333pt;}
.y5c{bottom:608.028000pt;}
.y8e{bottom:608.426667pt;}
.ye5{bottom:609.224000pt;}
.yb8{bottom:612.557333pt;}
.y114{bottom:613.862667pt;}
.y28{bottom:617.349333pt;}
.y1c8{bottom:619.982667pt;}
.y1ff{bottom:621.112000pt;}
.y137{bottom:622.073333pt;}
.y190{bottom:622.625333pt;}
.y5b{bottom:624.765333pt;}
.y8d{bottom:625.164000pt;}
.ye4{bottom:625.961333pt;}
.yb7{bottom:629.294667pt;}
.y113{bottom:630.600000pt;}
.y27{bottom:634.644000pt;}
.y1c7{bottom:635.325333pt;}
.y161{bottom:635.573333pt;}
.y1fe{bottom:636.454667pt;}
.y5a{bottom:641.502667pt;}
.y8c{bottom:641.901333pt;}
.ye3{bottom:642.697333pt;}
.y136{bottom:643.086667pt;}
.y18f{bottom:643.638667pt;}
.yb6{bottom:646.032000pt;}
.y112{bottom:647.337333pt;}
.y1c6{bottom:650.668000pt;}
.y26{bottom:651.940000pt;}
.y160{bottom:652.310667pt;}
.y59{bottom:658.240000pt;}
.y8b{bottom:658.638667pt;}
.ye2{bottom:659.434667pt;}
.yb5{bottom:662.769333pt;}
.y111{bottom:664.074667pt;}
.y135{bottom:664.101333pt;}
.y18e{bottom:664.652000pt;}
.y1c5{bottom:666.010667pt;}
.y15f{bottom:669.046667pt;}
.y25{bottom:669.234667pt;}
.y1fd{bottom:671.190667pt;}
.y58{bottom:674.977333pt;}
.y8a{bottom:675.376000pt;}
.yb4{bottom:679.506667pt;}
.ye1{bottom:680.157333pt;}
.y110{bottom:680.812000pt;}
.y1c4{bottom:681.353333pt;}
.y18d{bottom:685.666667pt;}
.y15e{bottom:685.784000pt;}
.y24{bottom:686.530667pt;}
.y1fc{bottom:686.533333pt;}
.y57{bottom:691.714667pt;}
.y89{bottom:692.113333pt;}
.y134{bottom:692.208000pt;}
.y1c3{bottom:696.696000pt;}
.ye0{bottom:696.894667pt;}
.y10f{bottom:697.549333pt;}
.y1fb{bottom:701.876000pt;}
.y23{bottom:703.825333pt;}
.y18c{bottom:706.680000pt;}
.y56{bottom:708.452000pt;}
.y88{bottom:708.850667pt;}
.yb3{bottom:710.265333pt;}
.y1c2{bottom:712.038667pt;}
.ydf{bottom:713.632000pt;}
.y10e{bottom:714.286667pt;}
.y1fa{bottom:717.218667pt;}
.y15d{bottom:718.690667pt;}
.y22{bottom:721.120000pt;}
.y55{bottom:725.189333pt;}
.y87{bottom:725.588000pt;}
.y1c1{bottom:727.381333pt;}
.y18b{bottom:727.694667pt;}
.yb2{bottom:729.672000pt;}
.yde{bottom:730.369333pt;}
.y10d{bottom:731.024000pt;}
.y1f9{bottom:732.561333pt;}
.y15c{bottom:735.440000pt;}
.y21{bottom:738.416000pt;}
.y54{bottom:741.926667pt;}
.y86{bottom:742.324000pt;}
.y1c0{bottom:742.722667pt;}
.y84{bottom:745.910667pt;}
.ydd{bottom:747.106667pt;}
.y10c{bottom:747.761333pt;}
.y1f8{bottom:747.904000pt;}
.y18a{bottom:748.708000pt;}
.yb1{bottom:750.686667pt;}
.y20{bottom:755.710667pt;}
.y15b{bottom:756.454667pt;}
.y1bf{bottom:758.065333pt;}
.y53{bottom:758.664000pt;}
.y85{bottom:759.061333pt;}
.y1f7{bottom:763.246667pt;}
.ydc{bottom:763.844000pt;}
.y10b{bottom:764.498667pt;}
.y189{bottom:769.722667pt;}
.yb0{bottom:771.700000pt;}
.y1be{bottom:773.408000pt;}
.y52{bottom:775.401333pt;}
.y83{bottom:775.798667pt;}
.y15a{bottom:777.468000pt;}
.y1f6{bottom:778.589333pt;}
.ydb{bottom:780.581333pt;}
.y10a{bottom:781.236000pt;}
.y1f{bottom:787.677333pt;}
.y1bd{bottom:788.750667pt;}
.y188{bottom:790.736000pt;}
.y51{bottom:792.138667pt;}
.y82{bottom:792.536000pt;}
.yae{bottom:792.714667pt;}
.y1f5{bottom:793.930667pt;}
.yda{bottom:797.318667pt;}
.y159{bottom:798.482667pt;}
.yad{bottom:800.020000pt;}
.y109{bottom:801.957333pt;}
.y1e{bottom:802.024000pt;}
.y1bc{bottom:804.093333pt;}
.yaf{bottom:807.326667pt;}
.y50{bottom:808.874667pt;}
.y81{bottom:809.273333pt;}
.y187{bottom:811.750667pt;}
.yd9{bottom:818.041333pt;}
.y1bb{bottom:819.436000pt;}
.y158{bottom:819.496000pt;}
.y1d{bottom:820.228000pt;}
.y1f4{bottom:824.616000pt;}
.y4f{bottom:825.612000pt;}
.y80{bottom:826.010667pt;}
.yac{bottom:828.340000pt;}
.y1c{bottom:830.716000pt;}
.y108{bottom:831.845333pt;}
.y186{bottom:832.764000pt;}
.yd8{bottom:834.778667pt;}
.y1f3{bottom:839.958667pt;}
.y157{bottom:840.510667pt;}
.y4e{bottom:842.349333pt;}
.y7f{bottom:842.748000pt;}
.y107{bottom:848.582667pt;}
.y1b{bottom:848.920000pt;}
.y1ba{bottom:850.121333pt;}
.yd7{bottom:851.516000pt;}
.y185{bottom:853.778667pt;}
.y1f2{bottom:855.301333pt;}
.y4d{bottom:859.086667pt;}
.yab{bottom:859.102667pt;}
.y7e{bottom:859.485333pt;}
.y156{bottom:861.524000pt;}
.yd6{bottom:868.253333pt;}
.y1b9{bottom:869.448000pt;}
.y1f1{bottom:870.644000pt;}
.y184{bottom:874.792000pt;}
.y4c{bottom:875.824000pt;}
.y7d{bottom:876.222667pt;}
.y106{bottom:881.489333pt;}
.y155{bottom:882.538667pt;}
.y1f0{bottom:885.986667pt;}
.y1a{bottom:886.301333pt;}
.yaa{bottom:888.974667pt;}
.y133{bottom:892.561333pt;}
.y7c{bottom:892.960000pt;}
.y183{bottom:895.806667pt;}
.y4b{bottom:896.546667pt;}
.y1b8{bottom:899.336000pt;}
.y105{bottom:900.896000pt;}
.y1ef{bottom:901.329333pt;}
.y154{bottom:903.552000pt;}
.ya9{bottom:905.712000pt;}
.y132{bottom:909.298667pt;}
.y7b{bottom:909.697333pt;}
.y1ee{bottom:916.670667pt;}
.y19{bottom:921.785333pt;}
.y104{bottom:921.909333pt;}
.ya8{bottom:922.449333pt;}
.y1b7{bottom:922.928000pt;}
.y153{bottom:924.566667pt;}
.y4a{bottom:926.434667pt;}
.y182{bottom:926.569333pt;}
.y131{bottom:930.021333pt;}
.y1ed{bottom:932.013333pt;}
.y1b6{bottom:938.549333pt;}
.yd5{bottom:939.186667pt;}
.y103{bottom:942.924000pt;}
.y49{bottom:943.172000pt;}
.y181{bottom:943.665333pt;}
.y152{bottom:945.580000pt;}
.y18{bottom:946.892000pt;}
.y1ec{bottom:947.356000pt;}
.y1b5{bottom:954.170667pt;}
.yd4{bottom:955.924000pt;}
.y48{bottom:959.909333pt;}
.y1eb{bottom:962.698667pt;}
.y102{bottom:963.937333pt;}
.y151{bottom:966.594667pt;}
.y1b4{bottom:969.792000pt;}
.y17{bottom:971.997333pt;}
.y47{bottom:976.646667pt;}
.y1ea{bottom:978.041333pt;}
.y46{bottom:993.384000pt;}
.y101{bottom:994.700000pt;}
.y15{bottom:1010.652000pt;}
.y45{bottom:1046.810667pt;}
.ha{height:23.209028pt;}
.h2{height:27.076941pt;}
.h4{height:27.262909pt;}
.h14{height:29.397999pt;}
.hb{height:30.945242pt;}
.hf{height:31.157778pt;}
.h3{height:33.957757pt;}
.h12{height:34.574438pt;}
.hc{height:34.813542pt;}
.h17{height:35.052646pt;}
.h10{height:36.873667pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h7{height:38.947124pt;}
.h19{height:43.660390pt;}
.h5{height:45.271688pt;}
.h9{height:48.486756pt;}
.h11{height:48.511220pt;}
.h18{height:48.683332pt;}
.h16{height:63.795772pt;}
.h15{height:63.801105pt;}
.h13{height:64.040209pt;}
.h8{height:69.148877pt;}
.h6{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:172.951287pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x3f{left:55.592000pt;}
.x1f{left:57.828000pt;}
.x22{left:65.801333pt;}
.x20{left:67.929333pt;}
.x23{left:69.710667pt;}
.x42{left:75.938667pt;}
.x14{left:81.986667pt;}
.x21{left:90.328000pt;}
.x13{left:94.958667pt;}
.x28{left:104.136000pt;}
.xd{left:105.604000pt;}
.x25{left:110.484000pt;}
.x12{left:115.234667pt;}
.x27{left:116.969333pt;}
.x2a{left:122.205333pt;}
.x29{left:135.762667pt;}
.x1a{left:137.400000pt;}
.x26{left:139.522667pt;}
.x24{left:144.376000pt;}
.x19{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x30{left:229.828000pt;}
.x4{left:239.924000pt;}
.x40{left:240.945333pt;}
.x3e{left:244.290667pt;}
.x6{left:250.204000pt;}
.xc{left:264.433333pt;}
.x39{left:273.078667pt;}
.xb{left:279.893333pt;}
.xe{left:285.780000pt;}
.x41{left:290.197333pt;}
.x3d{left:296.492000pt;}
.x3a{left:316.566667pt;}
.x3b{left:329.938667pt;}
.x36{left:386.056000pt;}
.x2b{left:394.154667pt;}
.x35{left:400.662667pt;}
.x33{left:410.380000pt;}
.xf{left:413.137333pt;}
.x34{left:414.849333pt;}
.x32{left:418.156000pt;}
.x31{left:434.266667pt;}
.x10{left:460.205333pt;}
.x1b{left:502.548000pt;}
.x3c{left:517.609333pt;}
.x2c{left:531.414667pt;}
.x7{left:587.606667pt;}
.x1c{left:589.780000pt;}
.x8{left:607.093333pt;}
.x2d{left:608.210667pt;}
.x11{left:634.629333pt;}
.x37{left:636.309333pt;}
.x9{left:668.320000pt;}
.x15{left:672.081333pt;}
.x1e{left:673.090667pt;}
.x1d{left:675.050667pt;}
.x2f{left:681.084000pt;}
.x2e{left:683.045333pt;}
.x17{left:727.278667pt;}
.x18{left:736.298667pt;}
.xa{left:740.436000pt;}
.x16{left:742.633333pt;}
.x38{left:744.060000pt;}
}




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