
    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_c2b18991741870d6a355c9e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_78a6fe08f717c97d12f13c86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_f6ed8358401f2e061de9e161.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_7495f5c6af48debf43dae3bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_ca88eeebe1e7f180fc2ea8b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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;}
.m5{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);}
.m21{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);}
.m17{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);}
.mf{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);}
.m1c{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);}
.m12{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);}
.m1b{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);}
.m20{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);}
.me{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);}
.m18{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);}
.m9{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);}
.m28{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1a{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);}
.m23{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);}
.ma{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);}
.m13{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);}
.m8{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);}
.m16{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);}
.m25{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);}
.m24{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);}
.mc{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);}
.m1d{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);}
.m15{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);}
.m4{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);}
.m27{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);}
.mb{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);}
.m26{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);}
.m29{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);}
.m7{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);}
.m11{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);}
.md{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);}
.m19{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);}
.m3{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);}
.m14{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);}
.m6{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:23.527834px;}
.ls5{letter-spacing:31.561728px;}
.ls4{letter-spacing:32.494234px;}
.ls6{letter-spacing:32.565965px;}
.ls3{letter-spacing:35.148288px;}
.ls0{letter-spacing:35.865600px;}
.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;}
}
.ws1c{word-spacing:-59.293010px;}
.ws1d{word-spacing:-58.934354px;}
.ws15{word-spacing:-58.288773px;}
.ws4{word-spacing:-58.101975px;}
.ws20{word-spacing:-57.427999px;}
.ws23{word-spacing:-56.352031px;}
.ws1b{word-spacing:-55.419525px;}
.ws18{word-spacing:-53.841439px;}
.ws17{word-spacing:-52.622008px;}
.ws26{word-spacing:-52.478546px;}
.wsb{word-spacing:-52.263352px;}
.wsa{word-spacing:-52.119890px;}
.ws24{word-spacing:-50.685266px;}
.ws19{word-spacing:-50.111416px;}
.ws1e{word-spacing:-49.394104px;}
.wsc{word-spacing:-48.533330px;}
.wsbe{word-spacing:-48.418425px;}
.ws14{word-spacing:-46.309663px;}
.ws16{word-spacing:-45.377157px;}
.ws25{word-spacing:-43.655608px;}
.ws1a{word-spacing:-42.723103px;}
.ws27{word-spacing:-42.364447px;}
.ws28{word-spacing:-40.929823px;}
.ws29{word-spacing:-40.499436px;}
.ws8{word-spacing:-40.427704px;}
.ws1f{word-spacing:-39.710392px;}
.ws21{word-spacing:-37.414994px;}
.wse{word-spacing:-36.554220px;}
.ws13{word-spacing:-36.195564px;}
.ws22{word-spacing:-35.406520px;}
.ws4a{word-spacing:-35.119596px;}
.wsf{word-spacing:-34.976133px;}
.ws1{word-spacing:-19.414485px;}
.ws43{word-spacing:-19.367325px;}
.wsd0{word-spacing:-19.123538px;}
.ws0{word-spacing:-19.042560px;}
.wsb0{word-spacing:-18.621420px;}
.wsc2{word-spacing:-18.334495px;}
.wsb8{word-spacing:-18.262764px;}
.wsd6{word-spacing:-17.904108px;}
.ws2e{word-spacing:-17.760645px;}
.ws40{word-spacing:-17.401989px;}
.wsb6{word-spacing:-17.186796px;}
.wsda{word-spacing:-17.115064px;}
.wsbb{word-spacing:-17.043333px;}
.wsbf{word-spacing:-16.899871px;}
.ws8a{word-spacing:-16.612946px;}
.wsd2{word-spacing:-16.541215px;}
.wsb1{word-spacing:-16.326021px;}
.ws6a{word-spacing:-16.254290px;}
.ws5a{word-spacing:-16.182559px;}
.ws55{word-spacing:-16.139475px;}
.wsc5{word-spacing:-16.039096px;}
.wsd1{word-spacing:-15.967365px;}
.wsd8{word-spacing:-15.895634px;}
.wsde{word-spacing:-15.823903px;}
.ws8f{word-spacing:-15.752172px;}
.ws4b{word-spacing:-15.680440px;}
.wsac{word-spacing:-15.608709px;}
.ws44{word-spacing:-15.536978px;}
.ws9d{word-spacing:-15.321784px;}
.ws97{word-spacing:-15.250053px;}
.ws9e{word-spacing:-15.178322px;}
.wsdb{word-spacing:-15.106591px;}
.ws76{word-spacing:-15.034860px;}
.ws59{word-spacing:-14.963128px;}
.wsd3{word-spacing:-14.819666px;}
.ws33{word-spacing:-14.747935px;}
.wsae{word-spacing:-14.676204px;}
.ws93{word-spacing:-14.604472px;}
.ws8d{word-spacing:-14.389279px;}
.wsd5{word-spacing:-14.317548px;}
.ws4f{word-spacing:-14.245816px;}
.ws47{word-spacing:-14.174085px;}
.ws3{word-spacing:-14.082230px;}
.ws7c{word-spacing:-14.030623px;}
.ws2{word-spacing:-13.996153px;}
.ws79{word-spacing:-13.958892px;}
.ws78{word-spacing:-13.887160px;}
.wsb4{word-spacing:-13.743698px;}
.ws7d{word-spacing:-13.671967px;}
.wsa4{word-spacing:-13.600236px;}
.ws8b{word-spacing:-13.528504px;}
.wsc6{word-spacing:-13.456773px;}
.ws6{word-spacing:-13.449600px;}
.wsab{word-spacing:-13.385042px;}
.ws72{word-spacing:-13.313311px;}
.wscc{word-spacing:-13.241580px;}
.ws90{word-spacing:-13.169848px;}
.ws74{word-spacing:-13.098117px;}
.ws4d{word-spacing:-13.026386px;}
.ws71{word-spacing:-12.954655px;}
.ws8e{word-spacing:-12.882924px;}
.wsb3{word-spacing:-12.811192px;}
.wsb2{word-spacing:-12.739461px;}
.wsa6{word-spacing:-12.667730px;}
.ws63{word-spacing:-12.595999px;}
.ws4e{word-spacing:-12.524268px;}
.ws67{word-spacing:-12.452536px;}
.wsa9{word-spacing:-12.445363px;}
.ws99{word-spacing:-12.380805px;}
.ws73{word-spacing:-12.309074px;}
.ws50{word-spacing:-12.237343px;}
.ws2f{word-spacing:-12.165612px;}
.ws48{word-spacing:-12.093880px;}
.ws2c{word-spacing:-12.022149px;}
.ws2d{word-spacing:-11.950418px;}
.ws42{word-spacing:-11.878687px;}
.ws32{word-spacing:-11.806956px;}
.ws30{word-spacing:-11.735224px;}
.ws36{word-spacing:-11.663493px;}
.ws38{word-spacing:-11.591762px;}
.ws3a{word-spacing:-11.520031px;}
.ws45{word-spacing:-11.448300px;}
.ws46{word-spacing:-11.376568px;}
.ws49{word-spacing:-11.304837px;}
.ws5b{word-spacing:-11.233106px;}
.ws64{word-spacing:-11.161375px;}
.ws5e{word-spacing:-11.089644px;}
.ws41{word-spacing:-11.017912px;}
.wsa1{word-spacing:-10.874450px;}
.ws52{word-spacing:-10.802719px;}
.ws9c{word-spacing:-10.730988px;}
.ws3f{word-spacing:-10.659256px;}
.ws60{word-spacing:-10.587525px;}
.ws91{word-spacing:-10.515794px;}
.wsaf{word-spacing:-10.444063px;}
.ws53{word-spacing:-10.372332px;}
.ws7b{word-spacing:-10.228869px;}
.ws61{word-spacing:-10.085407px;}
.ws82{word-spacing:-10.013676px;}
.ws62{word-spacing:-9.941944px;}
.ws7f{word-spacing:-9.870213px;}
.ws69{word-spacing:-9.798482px;}
.ws5c{word-spacing:-9.726751px;}
.ws57{word-spacing:-9.655020px;}
.wsa2{word-spacing:-9.583288px;}
.ws96{word-spacing:-9.511557px;}
.ws83{word-spacing:-9.439826px;}
.ws86{word-spacing:-9.296364px;}
.wsd{word-spacing:-9.224632px;}
.ws11{word-spacing:-9.152901px;}
.ws6d{word-spacing:-9.081170px;}
.ws9f{word-spacing:-9.009439px;}
.wsc7{word-spacing:-8.937708px;}
.ws6e{word-spacing:-8.865976px;}
.ws3e{word-spacing:-8.794245px;}
.ws75{word-spacing:-8.722514px;}
.wscf{word-spacing:-8.650783px;}
.ws94{word-spacing:-8.579052px;}
.ws8c{word-spacing:-8.435589px;}
.ws70{word-spacing:-8.363858px;}
.ws68{word-spacing:-8.292127px;}
.wsd9{word-spacing:-8.148664px;}
.ws34{word-spacing:-8.076933px;}
.wsba{word-spacing:-8.005202px;}
.ws5f{word-spacing:-7.933471px;}
.ws6b{word-spacing:-7.861740px;}
.wsc0{word-spacing:-7.790008px;}
.wsbd{word-spacing:-7.718277px;}
.wsbc{word-spacing:-7.646546px;}
.ws87{word-spacing:-7.574815px;}
.ws3d{word-spacing:-7.503084px;}
.ws92{word-spacing:-7.431352px;}
.ws4c{word-spacing:-7.359621px;}
.ws51{word-spacing:-7.287890px;}
.wsb7{word-spacing:-7.144428px;}
.wscb{word-spacing:-7.072696px;}
.ws89{word-spacing:-7.000965px;}
.wsc8{word-spacing:-6.929234px;}
.wsa3{word-spacing:-6.857503px;}
.ws84{word-spacing:-6.785772px;}
.wsad{word-spacing:-6.714040px;}
.ws6c{word-spacing:-6.642309px;}
.wscd{word-spacing:-6.570578px;}
.wsd4{word-spacing:-6.498847px;}
.ws77{word-spacing:-6.427116px;}
.wsb9{word-spacing:-6.355384px;}
.wsa8{word-spacing:-6.204749px;}
.ws9b{word-spacing:-6.140191px;}
.ws9a{word-spacing:-6.068460px;}
.wsb5{word-spacing:-5.996728px;}
.ws65{word-spacing:-5.924997px;}
.wsc3{word-spacing:-5.781535px;}
.wsaa{word-spacing:-5.709804px;}
.ws6f{word-spacing:-5.638072px;}
.wsa7{word-spacing:-5.422879px;}
.wsc4{word-spacing:-5.351148px;}
.ws7a{word-spacing:-5.279416px;}
.ws3b{word-spacing:-5.207685px;}
.ws58{word-spacing:-5.135954px;}
.ws80{word-spacing:-4.920760px;}
.ws54{word-spacing:-4.777298px;}
.ws88{word-spacing:-4.633836px;}
.ws35{word-spacing:-4.203448px;}
.ws85{word-spacing:-4.059986px;}
.ws31{word-spacing:-3.773061px;}
.ws5d{word-spacing:-3.701330px;}
.wsc1{word-spacing:-3.629599px;}
.ws98{word-spacing:-3.199212px;}
.ws66{word-spacing:-3.055749px;}
.ws81{word-spacing:-2.912287px;}
.ws95{word-spacing:-2.697093px;}
.wsc9{word-spacing:-2.481900px;}
.wsa0{word-spacing:-2.410168px;}
.wsca{word-spacing:-2.194975px;}
.ws56{word-spacing:-1.764588px;}
.wsd7{word-spacing:-1.692856px;}
.wsa5{word-spacing:-1.119007px;}
.ws7e{word-spacing:-0.903813px;}
.wsce{word-spacing:-0.688620px;}
.ws37{word-spacing:-0.071731px;}
.ws10{word-spacing:0.000000px;}
.ws7{word-spacing:0.746004px;}
.wsdd{word-spacing:21.304166px;}
.wsdf{word-spacing:22.093210px;}
.wsdc{word-spacing:25.034189px;}
.ws39{word-spacing:25.894963px;}
.ws9{word-spacing:25.923656px;}
.ws3c{word-spacing:26.899200px;}
.ws5{word-spacing:2283.239962px;}
.ws2b{word-spacing:2309.350118px;}
.ws2a{word-spacing:2426.480867px;}
.ws12{word-spacing:2476.592283px;}
._15{margin-left:-41.747558px;}
._12{margin-left:-37.802342px;}
._e{margin-left:-35.865600px;}
._11{margin-left:-33.928858px;}
._3e{margin-left:-17.430682px;}
._41{margin-left:-13.557197px;}
._f{margin-left:-12.481229px;}
._1d{margin-left:-11.190067px;}
._21{margin-left:-9.611981px;}
._4a{margin-left:-8.249088px;}
._2{margin-left:-6.331219px;}
._16{margin-left:-4.662528px;}
._0{margin-left:-3.223350px;}
._4{margin-left:-1.635498px;}
._b{width:1.984388px;}
._1{width:3.347325px;}
._19{width:6.671002px;}
._6c{width:17.741692px;}
._35{width:18.875071px;}
._2d{width:20.003239px;}
._4f{width:21.486167px;}
._7{width:22.509935px;}
._6{width:23.532388px;}
._3f{width:24.905046px;}
._2e{width:26.048191px;}
._1b{width:27.769740px;}
._8{width:29.180279px;}
._6b{width:30.294652px;}
._18{width:31.351088px;}
._24{width:33.311916px;}
._6a{width:34.631850px;}
._48{width:35.865600px;}
._1e{width:37.223939px;}
._23{width:38.228176px;}
._50{width:39.543422px;}
._6d{width:41.040012px;}
._37{width:42.086026px;}
._4d{width:43.904706px;}
._44{width:45.137798px;}
._5d{width:46.511114px;}
._6e{width:47.644494px;}
._42{width:49.115683px;}
._d{width:50.546411px;}
._4e{width:52.254955px;}
._4b{width:53.439744px;}
._c{width:54.529374px;}
._3c{width:55.840724px;}
._51{width:58.489700px;}
._1a{width:59.690124px;}
._17{width:61.832294px;}
._a{width:64.614834px;}
._34{width:68.206606px;}
._46{width:69.644468px;}
._22{width:70.779821px;}
._52{width:71.983650px;}
._56{width:81.313313px;}
._59{width:85.377853px;}
._10{width:96.980582px;}
._1c{width:98.018012px;}
._57{width:104.726377px;}
._5b{width:106.768070px;}
._54{width:114.166230px;}
._9{width:132.774451px;}
._68{width:149.177906px;}
._5e{width:187.220872px;}
._60{width:202.490752px;}
._65{width:231.651473px;}
._67{width:251.659924px;}
._61{width:307.524503px;}
._5c{width:309.085632px;}
._55{width:344.903559px;}
._5f{width:364.758854px;}
._62{width:367.986732px;}
._64{width:381.673044px;}
._66{width:383.595441px;}
._63{width:448.337055px;}
._58{width:469.777839px;}
._53{width:488.165165px;}
._69{width:512.335632px;}
._5a{width:577.059022px;}
._38{width:876.235146px;}
._49{width:1053.941968px;}
._36{width:1162.227440px;}
._30{width:1233.781852px;}
._4c{width:1307.444582px;}
._2f{width:1323.852154px;}
._47{width:1362.099203px;}
._43{width:1395.009504px;}
._3b{width:1454.933695px;}
._5{width:1470.001801px;}
._33{width:1481.249280px;}
._3a{width:1484.687824px;}
._3d{width:1498.484255px;}
._2b{width:1514.336237px;}
._2a{width:1562.305536px;}
._27{width:1600.203695px;}
._2c{width:1616.534323px;}
._26{width:1649.028557px;}
._25{width:1686.180764px;}
._29{width:1705.380508px;}
._31{width:1728.434995px;}
._1f{width:1792.706150px;}
._39{width:1851.066575px;}
._14{width:1861.563548px;}
._28{width:1940.525280px;}
._40{width:1942.662896px;}
._45{width:1978.341942px;}
._32{width:2048.786534px;}
._20{width:2069.942684px;}
._13{width:2126.251676px;}
._3{width:2268.929587px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:63.168000px;}
.y18e{bottom:108.000000px;}
.ybe{bottom:108.198000px;}
.y55{bottom:109.470000px;}
.y149{bottom:110.406000px;}
.y17a{bottom:111.777000px;}
.ya6{bottom:114.475500px;}
.y26e{bottom:117.177000px;}
.y134{bottom:117.862500px;}
.y39{bottom:118.512000px;}
.y212{bottom:118.821000px;}
.y1b{bottom:120.802500px;}
.yfb{bottom:121.611000px;}
.y2e8{bottom:124.959000px;}
.y289{bottom:125.010000px;}
.y21c{bottom:126.654000px;}
.ydf{bottom:127.800000px;}
.y117{bottom:129.444000px;}
.y18d{bottom:132.919500px;}
.ybd{bottom:133.117500px;}
.y54{bottom:134.389500px;}
.y148{bottom:135.325500px;}
.y279{bottom:136.591500px;}
.y179{bottom:136.695000px;}
.y1c7{bottom:138.871500px;}
.y2b9{bottom:139.381500px;}
.ya5{bottom:139.395000px;}
.y26d{bottom:142.096500px;}
.y133{bottom:142.782000px;}
.y211{bottom:143.740500px;}
.y1a{bottom:145.722000px;}
.yfa{bottom:146.529000px;}
.y309{bottom:148.074000px;}
.y1d2{bottom:149.319000px;}
.y2e7{bottom:149.878500px;}
.y25e{bottom:149.929500px;}
.yde{bottom:152.719500px;}
.y299{bottom:153.678000px;}
.y1f7{bottom:153.864000px;}
.y116{bottom:154.363500px;}
.y2a0{bottom:155.322000px;}
.y18c{bottom:157.837500px;}
.y8a{bottom:158.211000px;}
.y53{bottom:159.309000px;}
.y2ad{bottom:159.867000px;}
.y147{bottom:160.243500px;}
.y38{bottom:160.990500px;}
.y278{bottom:161.511000px;}
.y178{bottom:161.614500px;}
.y1c6{bottom:163.789500px;}
.y2b8{bottom:164.301000px;}
.ya4{bottom:164.313000px;}
.y21b{bottom:166.516500px;}
.y26c{bottom:167.014500px;}
.y132{bottom:167.700000px;}
.y210{bottom:168.658500px;}
.ybc{bottom:169.617000px;}
.y19{bottom:170.641500px;}
.yf9{bottom:171.448500px;}
.y254{bottom:173.751000px;}
.y1d1{bottom:174.238500px;}
.y25d{bottom:174.849000px;}
.y63{bottom:176.868000px;}
.ydd{bottom:177.637500px;}
.y1f6{bottom:178.783500px;}
.y115{bottom:179.281500px;}
.y308{bottom:181.773000px;}
.y163{bottom:182.071500px;}
.y18b{bottom:182.757000px;}
.y89{bottom:183.130500px;}
.y52{bottom:184.227000px;}
.y2ac{bottom:184.786500px;}
.y146{bottom:185.163000px;}
.y277{bottom:186.430500px;}
.y177{bottom:186.532500px;}
.y2b7{bottom:189.219000px;}
.y19e{bottom:189.232500px;}
.y298{bottom:190.177500px;}
.y26b{bottom:191.934000px;}
.y131{bottom:192.619500px;}
.y20f{bottom:193.578000px;}
.y2e6{bottom:194.224500px;}
.y18{bottom:195.559500px;}
.yf8{bottom:196.368000px;}
.y253{bottom:198.670500px;}
.y1d0{bottom:199.156500px;}
.y25c{bottom:199.767000px;}
.y1c5{bottom:200.290500px;}
.y62{bottom:201.786000px;}
.ydc{bottom:202.557000px;}
.y37{bottom:203.469000px;}
.y1f5{bottom:203.703000px;}
.y114{bottom:204.201000px;}
.y21a{bottom:206.379000px;}
.ya3{bottom:206.991000px;}
.y18a{bottom:207.675000px;}
.y88{bottom:208.048500px;}
.y2ab{bottom:209.704500px;}
.y145{bottom:210.082500px;}
.y276{bottom:211.348500px;}
.y176{bottom:211.452000px;}
.y2b6{bottom:214.138500px;}
.y19d{bottom:214.150500px;}
.y231{bottom:215.781000px;}
.y2a3{bottom:217.537500px;}
.y130{bottom:217.539000px;}
.y288{bottom:220.327500px;}
.y17{bottom:220.479000px;}
.y1df{bottom:221.286000px;}
.y252{bottom:223.590000px;}
.y1cf{bottom:224.076000px;}
.y25b{bottom:224.686500px;}
.y2d2{bottom:225.433500px;}
.ybb{bottom:225.645000px;}
.y51{bottom:226.705500px;}
.ydb{bottom:227.476500px;}
.y36{bottom:228.387000px;}
.y26a{bottom:228.435000px;}
.y1f4{bottom:228.621000px;}
.y113{bottom:229.120500px;}
.y20e{bottom:230.079000px;}
.y162{bottom:231.909000px;}
.y189{bottom:232.594500px;}
.yf7{bottom:232.867500px;}
.y87{bottom:232.968000px;}
.y2e5{bottom:234.087000px;}
.y2aa{bottom:234.624000px;}
.y144{bottom:235.000500px;}
.y275{bottom:236.268000px;}
.y2b5{bottom:239.058000px;}
.y19c{bottom:239.070000px;}
.y230{bottom:240.700500px;}
.y12f{bottom:242.457000px;}
.y287{bottom:245.247000px;}
.y16{bottom:245.397000px;}
.y2f3{bottom:245.557500px;}
.y1de{bottom:246.205500px;}
.y219{bottom:246.243000px;}
.y251{bottom:248.508000px;}
.y1ce{bottom:248.995500px;}
.y25a{bottom:249.604500px;}
.yba{bottom:250.563000px;}
.y50{bottom:251.623500px;}
.yda{bottom:252.394500px;}
.y35{bottom:253.306500px;}
.y1f3{bottom:253.540500px;}
.y112{bottom:254.038500px;}
.y175{bottom:254.130000px;}
.y1c4{bottom:256.317000px;}
.y161{bottom:256.828500px;}
.y188{bottom:257.514000px;}
.y86{bottom:257.887500px;}
.y2a9{bottom:259.542000px;}
.y143{bottom:259.920000px;}
.y274{bottom:261.186000px;}
.y307{bottom:261.237000px;}
.y2b4{bottom:263.976000px;}
.y19b{bottom:263.989500px;}
.y12e{bottom:267.376500px;}
.y286{bottom:270.166500px;}
.y15{bottom:270.316500px;}
.y2f2{bottom:270.475500px;}
.y1dd{bottom:271.125000px;}
.ya2{bottom:271.822500px;}
.y250{bottom:273.427500px;}
.y1cd{bottom:273.913500px;}
.y2e4{bottom:273.951000px;}
.y259{bottom:274.524000px;}
.y1b8{bottom:275.272500px;}
.yb9{bottom:275.482500px;}
.y244{bottom:276.291000px;}
.y4f{bottom:276.543000px;}
.yd9{bottom:277.314000px;}
.y1f2{bottom:278.460000px;}
.y111{bottom:278.958000px;}
.y1c3{bottom:281.236500px;}
.y160{bottom:281.748000px;}
.y187{bottom:282.432000px;}
.y85{bottom:282.805500px;}
.y269{bottom:284.461500px;}
.y142{bottom:284.839500px;}
.y22f{bottom:285.046500px;}
.y20d{bottom:286.105500px;}
.y306{bottom:286.155000px;}
.yf6{bottom:288.895500px;}
.y19a{bottom:288.907500px;}
.y2d1{bottom:289.225500px;}
.y12d{bottom:292.294500px;}
.y285{bottom:295.084500px;}
.y14{bottom:295.236000px;}
.y34{bottom:295.783500px;}
.y1dc{bottom:296.043000px;}
.ya1{bottom:296.740500px;}
.y1cc{bottom:298.833000px;}
.y243{bottom:301.210500px;}
.y4e{bottom:301.462500px;}
.yd8{bottom:302.232000px;}
.y1f1{bottom:303.378000px;}
.y110{bottom:303.876000px;}
.y1c2{bottom:306.156000px;}
.y15f{bottom:306.666000px;}
.y186{bottom:307.351500px;}
.y84{bottom:307.725000px;}
.y174{bottom:308.376000px;}
.y268{bottom:309.381000px;}
.y141{bottom:309.757500px;}
.y20c{bottom:311.025000px;}
.y305{bottom:311.074500px;}
.yb8{bottom:311.983500px;}
.yf5{bottom:313.813500px;}
.y199{bottom:313.827000px;}
.y2d0{bottom:314.145000px;}
.y2f1{bottom:314.821500px;}
.y24f{bottom:316.104000px;}
.y12c{bottom:317.214000px;}
.y284{bottom:320.004000px;}
.y13{bottom:320.154000px;}
.y1db{bottom:320.962500px;}
.ya0{bottom:321.660000px;}
.y1cb{bottom:323.752500px;}
.y22e{bottom:324.909000px;}
.y218{bottom:325.968000px;}
.y4d{bottom:326.380500px;}
.yd7{bottom:327.151500px;}
.y1f0{bottom:328.297500px;}
.y10f{bottom:328.795500px;}
.y1c1{bottom:331.074000px;}
.y15e{bottom:331.585500px;}
.y185{bottom:332.271000px;}
.y83{bottom:332.643000px;}
.y173{bottom:333.892500px;}
.y267{bottom:334.299000px;}
.y140{bottom:334.677000px;}
.y20b{bottom:335.943000px;}
.y304{bottom:335.992500px;}
.y33{bottom:338.262000px;}
.y29c{bottom:338.721000px;}
.yf4{bottom:338.733000px;}
.y198{bottom:338.745000px;}
.y2cf{bottom:339.063000px;}
.y1ff{bottom:339.418500px;}
.y1b7{bottom:340.024500px;}
.y12b{bottom:342.133500px;}
.y61{bottom:343.939500px;}
.y283{bottom:344.922000px;}
.y12{bottom:345.073500px;}
.y242{bottom:345.556500px;}
.y297{bottom:345.880500px;}
.y9f{bottom:346.579500px;}
.y29f{bottom:347.524500px;}
.y1ca{bottom:348.670500px;}
.y4c{bottom:351.300000px;}
.yd6{bottom:352.071000px;}
.y1ef{bottom:353.215500px;}
.y10e{bottom:353.715000px;}
.y2f0{bottom:354.685500px;}
.y1c0{bottom:355.993500px;}
.y15d{bottom:356.503500px;}
.y184{bottom:357.189000px;}
.y1da{bottom:357.462000px;}
.y82{bottom:357.562500px;}
.y2e3{bottom:358.159500px;}
.y266{bottom:359.218500px;}
.y172{bottom:359.409000px;}
.y13f{bottom:359.595000px;}
.y20a{bottom:360.862500px;}
.y303{bottom:360.912000px;}
.yf3{bottom:363.652500px;}
.y2ce{bottom:363.982500px;}
.y1fe{bottom:364.338000px;}
.y22d{bottom:364.771500px;}
.y1b6{bottom:364.942500px;}
.y217{bottom:365.830500px;}
.y12a{bottom:367.051500px;}
.yb7{bottom:368.010000px;}
.y60{bottom:368.859000px;}
.y282{bottom:369.841500px;}
.y296{bottom:370.800000px;}
.y9e{bottom:371.497500px;}
.y273{bottom:372.444000px;}
.y1c9{bottom:373.590000px;}
.y4b{bottom:376.218000px;}
.yd5{bottom:376.989000px;}
.y1ee{bottom:378.135000px;}
.y10d{bottom:378.633000px;}
.y32{bottom:380.739000px;}
.y1bf{bottom:380.911500px;}
.y24e{bottom:380.937000px;}
.y15c{bottom:381.423000px;}
.y183{bottom:382.108500px;}
.y2a2{bottom:382.381500px;}
.y81{bottom:382.482000px;}
.y265{bottom:384.138000px;}
.y16c{bottom:384.823500px;}
.y171{bottom:384.927000px;}
.y241{bottom:385.419000px;}
.y209{bottom:385.782000px;}
.y302{bottom:385.831500px;}
.y11{bottom:387.550500px;}
.yf2{bottom:388.570500px;}
.y2cd{bottom:388.902000px;}
.y1fd{bottom:389.256000px;}
.y1b5{bottom:389.862000px;}
.y164{bottom:391.971000px;}
.yb6{bottom:392.929500px;}
.y5f{bottom:393.777000px;}
.y2ef{bottom:394.548000px;}
.y2e2{bottom:394.660500px;}
.y281{bottom:394.761000px;}
.y295{bottom:395.719500px;}
.y9d{bottom:396.417000px;}
.y2b3{bottom:400.152000px;}
.yd4{bottom:401.908500px;}
.y13e{bottom:402.273000px;}
.y1ed{bottom:403.054500px;}
.y10c{bottom:403.552500px;}
.y22c{bottom:404.635500px;}
.y216{bottom:405.694500px;}
.y1be{bottom:405.831000px;}
.y24d{bottom:405.855000px;}
.y15b{bottom:406.342500px;}
.y182{bottom:407.026500px;}
.y80{bottom:407.400000px;}
.y264{bottom:409.056000px;}
.y16b{bottom:409.741500px;}
.y170{bottom:410.443500px;}
.y208{bottom:410.700000px;}
.y301{bottom:410.749500px;}
.yf1{bottom:413.490000px;}
.y2cc{bottom:413.820000px;}
.y1fc{bottom:414.175500px;}
.y1b4{bottom:414.781500px;}
.y1c8{bottom:416.266500px;}
.y1e3{bottom:416.889000px;}
.yb5{bottom:417.847500px;}
.y4a{bottom:418.696500px;}
.y294{bottom:420.637500px;}
.y9c{bottom:421.336500px;}
.y31{bottom:423.217500px;}
.y240{bottom:425.283000px;}
.y2b1{bottom:426.814500px;}
.yd3{bottom:426.826500px;}
.y10b{bottom:428.470500px;}
.y10{bottom:430.029000px;}
.y1bd{bottom:430.750500px;}
.y15a{bottom:431.260500px;}
.y181{bottom:431.946000px;}
.y7f{bottom:432.319500px;}
.y263{bottom:433.975500px;}
.y16a{bottom:434.661000px;}
.y207{bottom:435.619500px;}
.y300{bottom:435.669000px;}
.y16f{bottom:435.960000px;}
.y280{bottom:437.437500px;}
.yf0{bottom:438.409500px;}
.y2cb{bottom:438.739500px;}
.y2ee{bottom:438.894000px;}
.y1fb{bottom:439.093500px;}
.y1ec{bottom:439.554000px;}
.y1b3{bottom:439.699500px;}
.y1e2{bottom:441.808500px;}
.y49{bottom:443.616000px;}
.y22b{bottom:444.498000px;}
.y215{bottom:445.557000px;}
.y9b{bottom:446.254500px;}
.y24c{bottom:450.201000px;}
.y2e1{bottom:450.687000px;}
.yd2{bottom:451.746000px;}
.y272{bottom:453.390000px;}
.yb4{bottom:454.348500px;}
.yf{bottom:454.948500px;}
.y1bc{bottom:455.668500px;}
.y197{bottom:456.180000px;}
.y13d{bottom:456.520500px;}
.y180{bottom:456.865500px;}
.y7e{bottom:457.239000px;}
.y262{bottom:458.893500px;}
.y129{bottom:459.579000px;}
.y206{bottom:460.537500px;}
.y2ff{bottom:460.587000px;}
.y16e{bottom:461.476500px;}
.yef{bottom:463.327500px;}
.y1fa{bottom:464.013000px;}
.y1b2{bottom:464.619000px;}
.y10a{bottom:464.971500px;}
.y23f{bottom:465.145500px;}
.y30{bottom:465.696000px;}
.y258{bottom:466.728000px;}
.y48{bottom:468.534000px;}
.y293{bottom:470.475000px;}
.y9a{bottom:471.174000px;}
.y159{bottom:473.938500px;}
.y2ca{bottom:475.240500px;}
.y2ed{bottom:475.393500px;}
.yd1{bottom:476.665500px;}
.y1e1{bottom:478.309500px;}
.ye{bottom:479.866500px;}
.y22a{bottom:480.997500px;}
.y196{bottom:481.098000px;}
.y13c{bottom:481.438500px;}
.y17f{bottom:481.783500px;}
.y214{bottom:482.058000px;}
.y7d{bottom:482.157000px;}
.y128{bottom:484.498500px;}
.y2fe{bottom:485.506500px;}
.yee{bottom:488.247000px;}
.y1f9{bottom:488.932500px;}
.y1b1{bottom:489.537000px;}
.y24b{bottom:490.063500px;}
.y2e0{bottom:490.549500px;}
.y257{bottom:491.646000px;}
.y1bb{bottom:492.169500px;}
.y47{bottom:493.453500px;}
.y261{bottom:495.394500px;}
.y1eb{bottom:495.582000px;}
.y99{bottom:496.092000px;}
.y205{bottom:497.038500px;}
.yd0{bottom:501.583500px;}
.y27f{bottom:502.269000px;}
.y271{bottom:503.227500px;}
.yd{bottom:504.786000px;}
.y23e{bottom:505.008000px;}
.y195{bottom:506.017500px;}
.y13b{bottom:506.358000px;}
.y17e{bottom:506.703000px;}
.y292{bottom:506.976000px;}
.y7c{bottom:507.076500px;}
.y2f{bottom:508.173000px;}
.y127{bottom:509.418000px;}
.yb3{bottom:510.376500px;}
.y2fd{bottom:510.426000px;}
.y5e{bottom:511.012500px;}
.yed{bottom:513.165000px;}
.y1f8{bottom:513.850500px;}
.y1b0{bottom:514.456500px;}
.y256{bottom:516.565500px;}
.y46{bottom:518.371500px;}
.y1ea{bottom:520.500000px;}
.y109{bottom:520.999500px;}
.y98{bottom:521.011500px;}
.ycf{bottom:526.503000px;}
.y27e{bottom:527.188500px;}
.y270{bottom:528.147000px;}
.yc{bottom:529.704000px;}
.y24a{bottom:529.927500px;}
.y2c9{bottom:530.227500px;}
.y2df{bottom:530.413500px;}
.y194{bottom:530.937000px;}
.y13a{bottom:531.276000px;}
.y2ec{bottom:531.421500px;}
.y17d{bottom:531.621000px;}
.y7b{bottom:531.994500px;}
.y126{bottom:534.336000px;}
.yb2{bottom:535.294500px;}
.y2fc{bottom:535.344000px;}
.y5d{bottom:535.930500px;}
.y229{bottom:537.025500px;}
.yec{bottom:538.084500px;}
.y158{bottom:538.770000px;}
.y1ba{bottom:540.861000px;}
.y2b0{bottom:541.483500px;}
.y45{bottom:543.291000px;}
.y23d{bottom:544.870500px;}
.y1e9{bottom:545.419500px;}
.y108{bottom:545.917500px;}
.y97{bottom:545.931000px;}
.y2e{bottom:550.651500px;}
.yce{bottom:551.422500px;}
.y27d{bottom:552.106500px;}
.y204{bottom:553.066500px;}
.yb{bottom:554.623500px;}
.y2c8{bottom:555.145500px;}
.y193{bottom:555.855000px;}
.y139{bottom:556.195500px;}
.y17c{bottom:556.540500px;}
.y7a{bottom:556.914000px;}
.y1af{bottom:558.187500px;}
.y125{bottom:559.255500px;}
.yb1{bottom:560.214000px;}
.y2fb{bottom:560.263500px;}
.y5c{bottom:560.850000px;}
.y228{bottom:561.945000px;}
.yeb{bottom:563.004000px;}
.y157{bottom:563.689500px;}
.y29e{bottom:564.648000px;}
.y2af{bottom:566.403000px;}
.y44{bottom:568.210500px;}
.y249{bottom:569.790000px;}
.y2de{bottom:570.276000px;}
.y1e8{bottom:570.339000px;}
.y107{bottom:570.837000px;}
.y96{bottom:570.849000px;}
.y2b2{bottom:573.613500px;}
.y2eb{bottom:575.767500px;}
.ycd{bottom:576.340500px;}
.y27c{bottom:577.026000px;}
.y203{bottom:577.984500px;}
.ya{bottom:579.543000px;}
.y2c7{bottom:580.065000px;}
.y192{bottom:580.774500px;}
.y1a2{bottom:581.460000px;}
.y138{bottom:581.712000px;}
.y79{bottom:581.833500px;}
.y124{bottom:584.173500px;}
.y23c{bottom:584.734500px;}
.yb0{bottom:585.132000px;}
.y2fa{bottom:585.183000px;}
.y5b{bottom:585.769500px;}
.y1d9{bottom:587.922000px;}
.y156{bottom:588.607500px;}
.y2ae{bottom:591.322500px;}
.y2d{bottom:593.128500px;}
.y1e7{bottom:595.257000px;}
.y106{bottom:595.755000px;}
.y95{bottom:595.768500px;}
.y1ae{bottom:597.895500px;}
.y17b{bottom:599.218500px;}
.yea{bottom:599.503500px;}
.ycc{bottom:601.260000px;}
.y27b{bottom:601.945500px;}
.y202{bottom:602.904000px;}
.y9{bottom:604.461000px;}
.y2c6{bottom:604.983000px;}
.y191{bottom:605.694000px;}
.y227{bottom:606.291000px;}
.y1a1{bottom:606.378000px;}
.y78{bottom:606.751500px;}
.y123{bottom:609.093000px;}
.y2f9{bottom:610.101000px;}
.y2dd{bottom:610.138500px;}
.y5a{bottom:610.687500px;}
.y1d8{bottom:612.841500px;}
.y155{bottom:613.527000px;}
.y26f{bottom:614.485500px;}
.y2ea{bottom:615.630000px;}
.y1e6{bottom:620.176500px;}
.y105{bottom:620.674500px;}
.y94{bottom:620.686500px;}
.yaf{bottom:621.633000px;}
.y23b{bottom:624.597000px;}
.ycb{bottom:626.178000px;}
.y27a{bottom:626.863500px;}
.y201{bottom:627.822000px;}
.y8{bottom:629.380500px;}
.y2c5{bottom:629.902500px;}
.y2a1{bottom:630.600000px;}
.y190{bottom:630.612000px;}
.y1a0{bottom:631.297500px;}
.y77{bottom:631.671000px;}
.y122{bottom:634.012500px;}
.y2f8{bottom:635.020500px;}
.y2c{bottom:635.607000px;}
.y1ad{bottom:637.605000px;}
.y1d7{bottom:637.759500px;}
.y154{bottom:638.445000px;}
.y29b{bottom:639.403500px;}
.y260{bottom:643.936500px;}
.y1e5{bottom:645.094500px;}
.y104{bottom:645.594000px;}
.y93{bottom:645.606000px;}
.y226{bottom:646.153500px;}
.y2dc{bottom:650.001000px;}
.yca{bottom:651.097500px;}
.y169{bottom:651.783000px;}
.y200{bottom:652.741500px;}
.y2c4{bottom:654.822000px;}
.y2e9{bottom:655.494000px;}
.ye9{bottom:655.531500px;}
.y76{bottom:656.589000px;}
.y121{bottom:658.930500px;}
.y2f7{bottom:659.938500px;}
.y43{bottom:660.525000px;}
.y248{bottom:662.317500px;}
.y1d6{bottom:662.679000px;}
.y153{bottom:663.364500px;}
.y23a{bottom:664.459500px;}
.y103{bottom:670.512000px;}
.y92{bottom:670.525500px;}
.y7{bottom:671.857500px;}
.y19f{bottom:673.974000px;}
.y2db{bottom:674.920500px;}
.yc9{bottom:676.017000px;}
.y168{bottom:676.702500px;}
.y1ac{bottom:677.314500px;}
.yae{bottom:677.661000px;}
.y2b{bottom:678.084000px;}
.y2c3{bottom:679.740000px;}
.ye8{bottom:680.449500px;}
.y75{bottom:681.508500px;}
.y1e4{bottom:681.595500px;}
.y120{bottom:683.850000px;}
.y2f6{bottom:684.858000px;}
.y42{bottom:685.444500px;}
.y225{bottom:686.016000px;}
.y291{bottom:687.598500px;}
.y152{bottom:688.284000px;}
.y2a8{bottom:693.787500px;}
.y102{bottom:695.431500px;}
.y91{bottom:695.443500px;}
.y1d5{bottom:699.180000px;}
.y2da{bottom:699.840000px;}
.yc8{bottom:700.935000px;}
.y239{bottom:700.960500px;}
.y167{bottom:701.620500px;}
.yad{bottom:702.579000px;}
.y2a{bottom:703.003500px;}
.y2c2{bottom:704.659500px;}
.y213{bottom:705.357000px;}
.ye7{bottom:705.369000px;}
.y74{bottom:706.428000px;}
.y247{bottom:706.663500px;}
.y135{bottom:708.768000px;}
.y2f5{bottom:709.777500px;}
.y41{bottom:710.364000px;}
.y290{bottom:712.516500px;}
.y151{bottom:713.202000px;}
.y6{bottom:714.336000px;}
.y1ab{bottom:717.024000px;}
.y2a7{bottom:718.707000px;}
.y101{bottom:720.351000px;}
.y90{bottom:720.363000px;}
.yc7{bottom:725.854500px;}
.y224{bottom:725.878500px;}
.y166{bottom:726.540000px;}
.yac{bottom:727.498500px;}
.y29{bottom:727.923000px;}
.ye6{bottom:730.288500px;}
.y73{bottom:731.346000px;}
.y16d{bottom:733.687500px;}
.y40{bottom:735.282000px;}
.y2d9{bottom:736.339500px;}
.y28f{bottom:737.436000px;}
.y150{bottom:738.121500px;}
.y2c1{bottom:741.160500px;}
.y2a6{bottom:743.625000px;}
.y100{bottom:745.269000px;}
.y8f{bottom:745.282500px;}
.y68{bottom:745.482000px;}
.y246{bottom:746.526000px;}
.y165{bottom:751.458000px;}
.y2f4{bottom:752.454000px;}
.y28{bottom:752.841000px;}
.ye5{bottom:755.206500px;}
.y1aa{bottom:756.732000px;}
.y238{bottom:756.987000px;}
.y5{bottom:757.014000px;}
.y1e0{bottom:758.607000px;}
.y3f{bottom:760.201500px;}
.y14f{bottom:763.039500px;}
.yab{bottom:763.999500px;}
.y223{bottom:765.742500px;}
.yc6{bottom:768.531000px;}
.y2a5{bottom:768.544500px;}
.yff{bottom:770.188500px;}
.y8e{bottom:770.200500px;}
.y67{bottom:770.400000px;}
.y28e{bottom:773.937000px;}
.y72{bottom:775.692000px;}
.y11f{bottom:776.377500px;}
.y27{bottom:777.760500px;}
.ye4{bottom:780.126000px;}
.y237{bottom:781.906500px;}
.y255{bottom:783.525000px;}
.y245{bottom:786.390000px;}
.y14e{bottom:787.959000px;}
.y2d8{bottom:792.367500px;}
.yfe{bottom:795.106500px;}
.y8d{bottom:795.120000px;}
.y66{bottom:795.319500px;}
.y2c0{bottom:796.147500px;}
.y1a9{bottom:796.441500px;}
.y71{bottom:800.611500px;}
.y11e{bottom:801.297000px;}
.y26{bottom:802.678500px;}
.ye3{bottom:805.044000px;}
.y222{bottom:805.605000px;}
.y25f{bottom:808.444500px;}
.y2a4{bottom:811.221000px;}
.y14d{bottom:812.878500px;}
.y2d7{bottom:817.285500px;}
.yaa{bottom:820.026000px;}
.y8c{bottom:820.038000px;}
.y65{bottom:820.237500px;}
.y2bf{bottom:821.065500px;}
.y1b9{bottom:822.802500px;}
.y70{bottom:825.531000px;}
.y11d{bottom:826.215000px;}
.y236{bottom:826.252500px;}
.y25{bottom:827.598000px;}
.ye2{bottom:829.963500px;}
.y29a{bottom:831.607500px;}
.yc5{bottom:833.364000px;}
.y1a8{bottom:836.151000px;}
.y14c{bottom:837.796500px;}
.y4{bottom:841.272000px;}
.ya9{bottom:844.945500px;}
.y8b{bottom:844.957500px;}
.y64{bottom:845.157000px;}
.y221{bottom:845.467500px;}
.y2be{bottom:845.985000px;}
.y18f{bottom:847.722000px;}
.y11c{bottom:851.134500px;}
.y24{bottom:852.517500px;}
.ye1{bottom:854.883000px;}
.yfd{bottom:856.527000px;}
.yc4{bottom:858.282000px;}
.y2d6{bottom:861.631500px;}
.y14b{bottom:862.716000px;}
.y235{bottom:866.115000px;}
.ya8{bottom:869.863500px;}
.y6f{bottom:869.877000px;}
.y59{bottom:870.076500px;}
.y2bd{bottom:870.904500px;}
.y11b{bottom:876.052500px;}
.y23{bottom:877.435500px;}
.y1d4{bottom:879.801000px;}
.y1a7{bottom:879.880500px;}
.y29d{bottom:881.445000px;}
.yc3{bottom:883.201500px;}
.y3{bottom:883.750500px;}
.y220{bottom:885.330000px;}
.y14a{bottom:887.635500px;}
.y137{bottom:894.783000px;}
.y6e{bottom:894.795000px;}
.y3e{bottom:894.994500px;}
.y2bc{bottom:895.822500px;}
.ye0{bottom:897.559500px;}
.y11a{bottom:900.972000px;}
.y2d5{bottom:901.495500px;}
.y22{bottom:902.355000px;}
.y28d{bottom:904.720500px;}
.y1a6{bottom:904.800000px;}
.y234{bottom:905.977500px;}
.ya7{bottom:906.364500px;}
.yfc{bottom:912.553500px;}
.yc2{bottom:919.701000px;}
.y6d{bottom:919.714500px;}
.y58{bottom:919.914000px;}
.y2bb{bottom:920.742000px;}
.y1d3{bottom:922.479000px;}
.y21f{bottom:925.194000px;}
.y119{bottom:925.891500px;}
.y21{bottom:927.273000px;}
.y28c{bottom:929.640000px;}
.y1a5{bottom:929.719500px;}
.y3d{bottom:937.473000px;}
.y2{bottom:941.022000px;}
.y2d4{bottom:941.358000px;}
.y6c{bottom:944.632500px;}
.y57{bottom:944.832000px;}
.y233{bottom:945.841500px;}
.y118{bottom:950.809500px;}
.y20{bottom:952.192500px;}
.y28b{bottom:954.558000px;}
.y1a4{bottom:954.637500px;}
.y136{bottom:956.202000px;}
.y2ba{bottom:957.241500px;}
.y21e{bottom:961.693500px;}
.y3c{bottom:962.391000px;}
.y6b{bottom:969.552000px;}
.y56{bottom:969.751500px;}
.yc1{bottom:975.729000px;}
.y2d3{bottom:981.220500px;}
.y1{bottom:983.986500px;}
.y232{bottom:985.704000px;}
.y3b{bottom:987.310500px;}
.y6a{bottom:994.471500px;}
.y1f{bottom:994.671000px;}
.y28a{bottom:997.236000px;}
.y1a3{bottom:997.315500px;}
.yc0{bottom:1000.648500px;}
.y3a{bottom:1012.230000px;}
.y21d{bottom:1017.721500px;}
.y69{bottom:1019.389500px;}
.ybf{bottom:1025.566500px;}
.y1e{bottom:1037.148000px;}
.y1d{bottom:1062.067500px;}
.h5{height:51.287808px;}
.h4{height:53.798400px;}
.h2{height:64.557900px;}
.h3{height:77.469300px;}
.h1{height:87.030450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:57.088500px;}
.xb{left:102.732000px;}
.xf{left:106.654500px;}
.x1{left:108.030000px;}
.x9{left:116.967000px;}
.xc{left:129.460500px;}
.x5{left:134.338500px;}
.x7{left:151.248000px;}
.xd{left:290.658000px;}
.x3{left:293.311500px;}
.x2{left:350.451000px;}
.x4{left:372.201000px;}
.x8{left:450.220500px;}
.x6{left:454.611000px;}
.xe{left:533.851500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:20.913630pt;}
.ls5{letter-spacing:28.054869pt;}
.ls4{letter-spacing:28.883763pt;}
.ls6{letter-spacing:28.947524pt;}
.ls3{letter-spacing:31.242923pt;}
.ls0{letter-spacing:31.880533pt;}
.ws1c{word-spacing:-52.704898pt;}
.ws1d{word-spacing:-52.386092pt;}
.ws15{word-spacing:-51.812243pt;}
.ws4{word-spacing:-51.646200pt;}
.ws20{word-spacing:-51.047110pt;}
.ws23{word-spacing:-50.090694pt;}
.ws1b{word-spacing:-49.261800pt;}
.ws18{word-spacing:-47.859057pt;}
.ws17{word-spacing:-46.775119pt;}
.ws26{word-spacing:-46.647596pt;}
.wsb{word-spacing:-46.456313pt;}
.wsa{word-spacing:-46.328791pt;}
.ws24{word-spacing:-45.053570pt;}
.ws19{word-spacing:-44.543481pt;}
.ws1e{word-spacing:-43.905871pt;}
.wsc{word-spacing:-43.140738pt;}
.wsbe{word-spacing:-43.038600pt;}
.ws14{word-spacing:-41.164145pt;}
.ws16{word-spacing:-40.335251pt;}
.ws25{word-spacing:-38.804985pt;}
.ws1a{word-spacing:-37.976091pt;}
.ws27{word-spacing:-37.657286pt;}
.ws28{word-spacing:-36.382065pt;}
.ws29{word-spacing:-35.999498pt;}
.ws8{word-spacing:-35.935737pt;}
.ws1f{word-spacing:-35.298127pt;}
.ws21{word-spacing:-33.257772pt;}
.wse{word-spacing:-32.492640pt;}
.ws13{word-spacing:-32.173834pt;}
.ws22{word-spacing:-31.472463pt;}
.ws4a{word-spacing:-31.217418pt;}
.wsf{word-spacing:-31.089896pt;}
.ws1{word-spacing:-17.257320pt;}
.ws43{word-spacing:-17.215400pt;}
.wsd0{word-spacing:-16.998700pt;}
.ws0{word-spacing:-16.926720pt;}
.wsb0{word-spacing:-16.552373pt;}
.wsc2{word-spacing:-16.297329pt;}
.wsb8{word-spacing:-16.233568pt;}
.wsd6{word-spacing:-15.914762pt;}
.ws2e{word-spacing:-15.787240pt;}
.ws40{word-spacing:-15.468435pt;}
.wsb6{word-spacing:-15.277152pt;}
.wsda{word-spacing:-15.213391pt;}
.wsbb{word-spacing:-15.149629pt;}
.wsbf{word-spacing:-15.022107pt;}
.ws8a{word-spacing:-14.767063pt;}
.wsd2{word-spacing:-14.703302pt;}
.wsb1{word-spacing:-14.512019pt;}
.ws6a{word-spacing:-14.448258pt;}
.ws5a{word-spacing:-14.384497pt;}
.ws55{word-spacing:-14.346200pt;}
.wsc5{word-spacing:-14.256975pt;}
.wsd1{word-spacing:-14.193213pt;}
.wsd8{word-spacing:-14.129452pt;}
.wsde{word-spacing:-14.065691pt;}
.ws8f{word-spacing:-14.001930pt;}
.ws4b{word-spacing:-13.938169pt;}
.wsac{word-spacing:-13.874408pt;}
.ws44{word-spacing:-13.810647pt;}
.ws9d{word-spacing:-13.619364pt;}
.ws97{word-spacing:-13.555603pt;}
.ws9e{word-spacing:-13.491842pt;}
.wsdb{word-spacing:-13.428081pt;}
.ws76{word-spacing:-13.364320pt;}
.ws59{word-spacing:-13.300559pt;}
.wsd3{word-spacing:-13.173036pt;}
.ws33{word-spacing:-13.109275pt;}
.wsae{word-spacing:-13.045514pt;}
.ws93{word-spacing:-12.981753pt;}
.ws8d{word-spacing:-12.790470pt;}
.wsd5{word-spacing:-12.726709pt;}
.ws4f{word-spacing:-12.662948pt;}
.ws47{word-spacing:-12.599187pt;}
.ws3{word-spacing:-12.517538pt;}
.ws7c{word-spacing:-12.471665pt;}
.ws2{word-spacing:-12.441025pt;}
.ws79{word-spacing:-12.407904pt;}
.ws78{word-spacing:-12.344143pt;}
.wsb4{word-spacing:-12.216620pt;}
.ws7d{word-spacing:-12.152859pt;}
.wsa4{word-spacing:-12.089098pt;}
.ws8b{word-spacing:-12.025337pt;}
.wsc6{word-spacing:-11.961576pt;}
.ws6{word-spacing:-11.955200pt;}
.wsab{word-spacing:-11.897815pt;}
.ws72{word-spacing:-11.834054pt;}
.wscc{word-spacing:-11.770293pt;}
.ws90{word-spacing:-11.706532pt;}
.ws74{word-spacing:-11.642771pt;}
.ws4d{word-spacing:-11.579010pt;}
.ws71{word-spacing:-11.515249pt;}
.ws8e{word-spacing:-11.451488pt;}
.wsb3{word-spacing:-11.387727pt;}
.wsb2{word-spacing:-11.323965pt;}
.wsa6{word-spacing:-11.260204pt;}
.ws63{word-spacing:-11.196443pt;}
.ws4e{word-spacing:-11.132682pt;}
.ws67{word-spacing:-11.068921pt;}
.wsa9{word-spacing:-11.062545pt;}
.ws99{word-spacing:-11.005160pt;}
.ws73{word-spacing:-10.941399pt;}
.ws50{word-spacing:-10.877638pt;}
.ws2f{word-spacing:-10.813877pt;}
.ws48{word-spacing:-10.750116pt;}
.ws2c{word-spacing:-10.686355pt;}
.ws2d{word-spacing:-10.622594pt;}
.ws42{word-spacing:-10.558833pt;}
.ws32{word-spacing:-10.495072pt;}
.ws30{word-spacing:-10.431311pt;}
.ws36{word-spacing:-10.367549pt;}
.ws38{word-spacing:-10.303788pt;}
.ws3a{word-spacing:-10.240027pt;}
.ws45{word-spacing:-10.176266pt;}
.ws46{word-spacing:-10.112505pt;}
.ws49{word-spacing:-10.048744pt;}
.ws5b{word-spacing:-9.984983pt;}
.ws64{word-spacing:-9.921222pt;}
.ws5e{word-spacing:-9.857461pt;}
.ws41{word-spacing:-9.793700pt;}
.wsa1{word-spacing:-9.666178pt;}
.ws52{word-spacing:-9.602417pt;}
.ws9c{word-spacing:-9.538656pt;}
.ws3f{word-spacing:-9.474895pt;}
.ws60{word-spacing:-9.411133pt;}
.ws91{word-spacing:-9.347372pt;}
.wsaf{word-spacing:-9.283611pt;}
.ws53{word-spacing:-9.219850pt;}
.ws7b{word-spacing:-9.092328pt;}
.ws61{word-spacing:-8.964806pt;}
.ws82{word-spacing:-8.901045pt;}
.ws62{word-spacing:-8.837284pt;}
.ws7f{word-spacing:-8.773523pt;}
.ws69{word-spacing:-8.709762pt;}
.ws5c{word-spacing:-8.646001pt;}
.ws57{word-spacing:-8.582240pt;}
.wsa2{word-spacing:-8.518479pt;}
.ws96{word-spacing:-8.454717pt;}
.ws83{word-spacing:-8.390956pt;}
.ws86{word-spacing:-8.263434pt;}
.wsd{word-spacing:-8.199673pt;}
.ws11{word-spacing:-8.135912pt;}
.ws6d{word-spacing:-8.072151pt;}
.ws9f{word-spacing:-8.008390pt;}
.wsc7{word-spacing:-7.944629pt;}
.ws6e{word-spacing:-7.880868pt;}
.ws3e{word-spacing:-7.817107pt;}
.ws75{word-spacing:-7.753346pt;}
.wscf{word-spacing:-7.689585pt;}
.ws94{word-spacing:-7.625824pt;}
.ws8c{word-spacing:-7.498301pt;}
.ws70{word-spacing:-7.434540pt;}
.ws68{word-spacing:-7.370779pt;}
.wsd9{word-spacing:-7.243257pt;}
.ws34{word-spacing:-7.179496pt;}
.wsba{word-spacing:-7.115735pt;}
.ws5f{word-spacing:-7.051974pt;}
.ws6b{word-spacing:-6.988213pt;}
.wsc0{word-spacing:-6.924452pt;}
.wsbd{word-spacing:-6.860691pt;}
.wsbc{word-spacing:-6.796930pt;}
.ws87{word-spacing:-6.733169pt;}
.ws3d{word-spacing:-6.669408pt;}
.ws92{word-spacing:-6.605647pt;}
.ws4c{word-spacing:-6.541885pt;}
.ws51{word-spacing:-6.478124pt;}
.wsb7{word-spacing:-6.350602pt;}
.wscb{word-spacing:-6.286841pt;}
.ws89{word-spacing:-6.223080pt;}
.wsc8{word-spacing:-6.159319pt;}
.wsa3{word-spacing:-6.095558pt;}
.ws84{word-spacing:-6.031797pt;}
.wsad{word-spacing:-5.968036pt;}
.ws6c{word-spacing:-5.904275pt;}
.wscd{word-spacing:-5.840514pt;}
.wsd4{word-spacing:-5.776753pt;}
.ws77{word-spacing:-5.712992pt;}
.wsb9{word-spacing:-5.649231pt;}
.wsa8{word-spacing:-5.515332pt;}
.ws9b{word-spacing:-5.457947pt;}
.ws9a{word-spacing:-5.394186pt;}
.wsb5{word-spacing:-5.330425pt;}
.ws65{word-spacing:-5.266664pt;}
.wsc3{word-spacing:-5.139142pt;}
.wsaa{word-spacing:-5.075381pt;}
.ws6f{word-spacing:-5.011620pt;}
.wsa7{word-spacing:-4.820337pt;}
.wsc4{word-spacing:-4.756576pt;}
.ws7a{word-spacing:-4.692815pt;}
.ws3b{word-spacing:-4.629053pt;}
.ws58{word-spacing:-4.565292pt;}
.ws80{word-spacing:-4.374009pt;}
.ws54{word-spacing:-4.246487pt;}
.ws88{word-spacing:-4.118965pt;}
.ws35{word-spacing:-3.736399pt;}
.ws85{word-spacing:-3.608876pt;}
.ws31{word-spacing:-3.353832pt;}
.ws5d{word-spacing:-3.290071pt;}
.wsc1{word-spacing:-3.226310pt;}
.ws98{word-spacing:-2.843744pt;}
.ws66{word-spacing:-2.716221pt;}
.ws81{word-spacing:-2.588699pt;}
.ws95{word-spacing:-2.397416pt;}
.wsc9{word-spacing:-2.206133pt;}
.wsa0{word-spacing:-2.142372pt;}
.wsca{word-spacing:-1.951089pt;}
.ws56{word-spacing:-1.568522pt;}
.wsd7{word-spacing:-1.504761pt;}
.wsa5{word-spacing:-0.994673pt;}
.ws7e{word-spacing:-0.803389pt;}
.wsce{word-spacing:-0.612106pt;}
.ws37{word-spacing:-0.063761pt;}
.ws10{word-spacing:0.000000pt;}
.ws7{word-spacing:0.663115pt;}
.wsdd{word-spacing:18.937037pt;}
.wsdf{word-spacing:19.638409pt;}
.wsdc{word-spacing:22.252612pt;}
.ws39{word-spacing:23.017745pt;}
.ws9{word-spacing:23.043249pt;}
.ws3c{word-spacing:23.910400pt;}
.ws5{word-spacing:2029.546633pt;}
.ws2b{word-spacing:2052.755661pt;}
.ws2a{word-spacing:2156.871881pt;}
.ws12{word-spacing:2201.415363pt;}
._15{margin-left:-37.108941pt;}
._12{margin-left:-33.602082pt;}
._e{margin-left:-31.880533pt;}
._11{margin-left:-30.158985pt;}
._3e{margin-left:-15.493939pt;}
._41{margin-left:-12.050842pt;}
._f{margin-left:-11.094426pt;}
._1d{margin-left:-9.946726pt;}
._21{margin-left:-8.543983pt;}
._4a{margin-left:-7.332523pt;}
._2{margin-left:-5.627750pt;}
._16{margin-left:-4.144469pt;}
._0{margin-left:-2.865200pt;}
._4{margin-left:-1.453776pt;}
._b{width:1.763901pt;}
._1{width:2.975400pt;}
._19{width:5.929779pt;}
._6c{width:15.770393pt;}
._35{width:16.777841pt;}
._2d{width:17.780657pt;}
._4f{width:19.098815pt;}
._7{width:20.008831pt;}
._6{width:20.917678pt;}
._3f{width:22.137819pt;}
._2e{width:23.153948pt;}
._1b{width:24.684213pt;}
._8{width:25.938026pt;}
._6b{width:26.928579pt;}
._18{width:27.867634pt;}
._24{width:29.610592pt;}
._6a{width:30.783867pt;}
._48{width:31.880533pt;}
._1e{width:33.087946pt;}
._23{width:33.980601pt;}
._50{width:35.149709pt;}
._6d{width:36.480011pt;}
._37{width:37.409801pt;}
._4d{width:39.026405pt;}
._44{width:40.122487pt;}
._5d{width:41.343213pt;}
._6e{width:42.350661pt;}
._42{width:43.658385pt;}
._d{width:44.930143pt;}
._4e{width:46.448849pt;}
._4b{width:47.501995pt;}
._c{width:48.470555pt;}
._3c{width:49.636199pt;}
._51{width:51.990845pt;}
._1a{width:53.057888pt;}
._17{width:54.962039pt;}
._a{width:57.435408pt;}
._34{width:60.628094pt;}
._46{width:61.906194pt;}
._22{width:62.915396pt;}
._52{width:63.985467pt;}
._56{width:72.278501pt;}
._59{width:75.891425pt;}
._10{width:86.204962pt;}
._1c{width:87.127122pt;}
._57{width:93.090113pt;}
._5b{width:94.904951pt;}
._54{width:101.481093pt;}
._9{width:118.021734pt;}
._68{width:132.602583pt;}
._5e{width:166.418553pt;}
._60{width:179.991780pt;}
._65{width:205.912420pt;}
._67{width:223.697710pt;}
._61{width:273.355114pt;}
._5c{width:274.742784pt;}
._55{width:306.580941pt;}
._5f{width:324.230093pt;}
._62{width:327.099317pt;}
._64{width:339.264928pt;}
._66{width:340.973725pt;}
._63{width:398.521827pt;}
._58{width:417.580302pt;}
._53{width:433.924591pt;}
._69{width:455.409451pt;}
._5a{width:512.941353pt;}
._38{width:778.875685pt;}
._49{width:936.837305pt;}
._36{width:1033.091058pt;}
._30{width:1096.694979pt;}
._4c{width:1162.172962pt;}
._2f{width:1176.757470pt;}
._47{width:1210.754847pt;}
._43{width:1240.008448pt;}
._3b{width:1293.274396pt;}
._5{width:1306.668268pt;}
._33{width:1316.666027pt;}
._3a{width:1319.722510pt;}
._3d{width:1331.986005pt;}
._2b{width:1346.076655pt;}
._2a{width:1388.716032pt;}
._27{width:1422.403284pt;}
._2c{width:1436.919398pt;}
._26{width:1465.803162pt;}
._25{width:1498.827346pt;}
._29{width:1515.893785pt;}
._31{width:1536.386662pt;}
._1f{width:1593.516578pt;}
._39{width:1645.392511pt;}
._14{width:1654.723154pt;}
._28{width:1724.911360pt;}
._40{width:1726.811463pt;}
._45{width:1758.526171pt;}
._32{width:1821.143586pt;}
._20{width:1839.949053pt;}
._13{width:1890.001490pt;}
._3{width:2016.826300pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:56.149333pt;}
.y18e{bottom:96.000000pt;}
.ybe{bottom:96.176000pt;}
.y55{bottom:97.306667pt;}
.y149{bottom:98.138667pt;}
.y17a{bottom:99.357333pt;}
.ya6{bottom:101.756000pt;}
.y26e{bottom:104.157333pt;}
.y134{bottom:104.766667pt;}
.y39{bottom:105.344000pt;}
.y212{bottom:105.618667pt;}
.y1b{bottom:107.380000pt;}
.yfb{bottom:108.098667pt;}
.y2e8{bottom:111.074667pt;}
.y289{bottom:111.120000pt;}
.y21c{bottom:112.581333pt;}
.ydf{bottom:113.600000pt;}
.y117{bottom:115.061333pt;}
.y18d{bottom:118.150667pt;}
.ybd{bottom:118.326667pt;}
.y54{bottom:119.457333pt;}
.y148{bottom:120.289333pt;}
.y279{bottom:121.414667pt;}
.y179{bottom:121.506667pt;}
.y1c7{bottom:123.441333pt;}
.y2b9{bottom:123.894667pt;}
.ya5{bottom:123.906667pt;}
.y26d{bottom:126.308000pt;}
.y133{bottom:126.917333pt;}
.y211{bottom:127.769333pt;}
.y1a{bottom:129.530667pt;}
.yfa{bottom:130.248000pt;}
.y309{bottom:131.621333pt;}
.y1d2{bottom:132.728000pt;}
.y2e7{bottom:133.225333pt;}
.y25e{bottom:133.270667pt;}
.yde{bottom:135.750667pt;}
.y299{bottom:136.602667pt;}
.y1f7{bottom:136.768000pt;}
.y116{bottom:137.212000pt;}
.y2a0{bottom:138.064000pt;}
.y18c{bottom:140.300000pt;}
.y8a{bottom:140.632000pt;}
.y53{bottom:141.608000pt;}
.y2ad{bottom:142.104000pt;}
.y147{bottom:142.438667pt;}
.y38{bottom:143.102667pt;}
.y278{bottom:143.565333pt;}
.y178{bottom:143.657333pt;}
.y1c6{bottom:145.590667pt;}
.y2b8{bottom:146.045333pt;}
.ya4{bottom:146.056000pt;}
.y21b{bottom:148.014667pt;}
.y26c{bottom:148.457333pt;}
.y132{bottom:149.066667pt;}
.y210{bottom:149.918667pt;}
.ybc{bottom:150.770667pt;}
.y19{bottom:151.681333pt;}
.yf9{bottom:152.398667pt;}
.y254{bottom:154.445333pt;}
.y1d1{bottom:154.878667pt;}
.y25d{bottom:155.421333pt;}
.y63{bottom:157.216000pt;}
.ydd{bottom:157.900000pt;}
.y1f6{bottom:158.918667pt;}
.y115{bottom:159.361333pt;}
.y308{bottom:161.576000pt;}
.y163{bottom:161.841333pt;}
.y18b{bottom:162.450667pt;}
.y89{bottom:162.782667pt;}
.y52{bottom:163.757333pt;}
.y2ac{bottom:164.254667pt;}
.y146{bottom:164.589333pt;}
.y277{bottom:165.716000pt;}
.y177{bottom:165.806667pt;}
.y2b7{bottom:168.194667pt;}
.y19e{bottom:168.206667pt;}
.y298{bottom:169.046667pt;}
.y26b{bottom:170.608000pt;}
.y131{bottom:171.217333pt;}
.y20f{bottom:172.069333pt;}
.y2e6{bottom:172.644000pt;}
.y18{bottom:173.830667pt;}
.yf8{bottom:174.549333pt;}
.y253{bottom:176.596000pt;}
.y1d0{bottom:177.028000pt;}
.y25c{bottom:177.570667pt;}
.y1c5{bottom:178.036000pt;}
.y62{bottom:179.365333pt;}
.ydc{bottom:180.050667pt;}
.y37{bottom:180.861333pt;}
.y1f5{bottom:181.069333pt;}
.y114{bottom:181.512000pt;}
.y21a{bottom:183.448000pt;}
.ya3{bottom:183.992000pt;}
.y18a{bottom:184.600000pt;}
.y88{bottom:184.932000pt;}
.y2ab{bottom:186.404000pt;}
.y145{bottom:186.740000pt;}
.y276{bottom:187.865333pt;}
.y176{bottom:187.957333pt;}
.y2b6{bottom:190.345333pt;}
.y19d{bottom:190.356000pt;}
.y231{bottom:191.805333pt;}
.y2a3{bottom:193.366667pt;}
.y130{bottom:193.368000pt;}
.y288{bottom:195.846667pt;}
.y17{bottom:195.981333pt;}
.y1df{bottom:196.698667pt;}
.y252{bottom:198.746667pt;}
.y1cf{bottom:199.178667pt;}
.y25b{bottom:199.721333pt;}
.y2d2{bottom:200.385333pt;}
.ybb{bottom:200.573333pt;}
.y51{bottom:201.516000pt;}
.ydb{bottom:202.201333pt;}
.y36{bottom:203.010667pt;}
.y26a{bottom:203.053333pt;}
.y1f4{bottom:203.218667pt;}
.y113{bottom:203.662667pt;}
.y20e{bottom:204.514667pt;}
.y162{bottom:206.141333pt;}
.y189{bottom:206.750667pt;}
.yf7{bottom:206.993333pt;}
.y87{bottom:207.082667pt;}
.y2e5{bottom:208.077333pt;}
.y2aa{bottom:208.554667pt;}
.y144{bottom:208.889333pt;}
.y275{bottom:210.016000pt;}
.y2b5{bottom:212.496000pt;}
.y19c{bottom:212.506667pt;}
.y230{bottom:213.956000pt;}
.y12f{bottom:215.517333pt;}
.y287{bottom:217.997333pt;}
.y16{bottom:218.130667pt;}
.y2f3{bottom:218.273333pt;}
.y1de{bottom:218.849333pt;}
.y219{bottom:218.882667pt;}
.y251{bottom:220.896000pt;}
.y1ce{bottom:221.329333pt;}
.y25a{bottom:221.870667pt;}
.yba{bottom:222.722667pt;}
.y50{bottom:223.665333pt;}
.yda{bottom:224.350667pt;}
.y35{bottom:225.161333pt;}
.y1f3{bottom:225.369333pt;}
.y112{bottom:225.812000pt;}
.y175{bottom:225.893333pt;}
.y1c4{bottom:227.837333pt;}
.y161{bottom:228.292000pt;}
.y188{bottom:228.901333pt;}
.y86{bottom:229.233333pt;}
.y2a9{bottom:230.704000pt;}
.y143{bottom:231.040000pt;}
.y274{bottom:232.165333pt;}
.y307{bottom:232.210667pt;}
.y2b4{bottom:234.645333pt;}
.y19b{bottom:234.657333pt;}
.y12e{bottom:237.668000pt;}
.y286{bottom:240.148000pt;}
.y15{bottom:240.281333pt;}
.y2f2{bottom:240.422667pt;}
.y1dd{bottom:241.000000pt;}
.ya2{bottom:241.620000pt;}
.y250{bottom:243.046667pt;}
.y1cd{bottom:243.478667pt;}
.y2e4{bottom:243.512000pt;}
.y259{bottom:244.021333pt;}
.y1b8{bottom:244.686667pt;}
.yb9{bottom:244.873333pt;}
.y244{bottom:245.592000pt;}
.y4f{bottom:245.816000pt;}
.yd9{bottom:246.501333pt;}
.y1f2{bottom:247.520000pt;}
.y111{bottom:247.962667pt;}
.y1c3{bottom:249.988000pt;}
.y160{bottom:250.442667pt;}
.y187{bottom:251.050667pt;}
.y85{bottom:251.382667pt;}
.y269{bottom:252.854667pt;}
.y142{bottom:253.190667pt;}
.y22f{bottom:253.374667pt;}
.y20d{bottom:254.316000pt;}
.y306{bottom:254.360000pt;}
.yf6{bottom:256.796000pt;}
.y19a{bottom:256.806667pt;}
.y2d1{bottom:257.089333pt;}
.y12d{bottom:259.817333pt;}
.y285{bottom:262.297333pt;}
.y14{bottom:262.432000pt;}
.y34{bottom:262.918667pt;}
.y1dc{bottom:263.149333pt;}
.ya1{bottom:263.769333pt;}
.y1cc{bottom:265.629333pt;}
.y243{bottom:267.742667pt;}
.y4e{bottom:267.966667pt;}
.yd8{bottom:268.650667pt;}
.y1f1{bottom:269.669333pt;}
.y110{bottom:270.112000pt;}
.y1c2{bottom:272.138667pt;}
.y15f{bottom:272.592000pt;}
.y186{bottom:273.201333pt;}
.y84{bottom:273.533333pt;}
.y174{bottom:274.112000pt;}
.y268{bottom:275.005333pt;}
.y141{bottom:275.340000pt;}
.y20c{bottom:276.466667pt;}
.y305{bottom:276.510667pt;}
.yb8{bottom:277.318667pt;}
.yf5{bottom:278.945333pt;}
.y199{bottom:278.957333pt;}
.y2d0{bottom:279.240000pt;}
.y2f1{bottom:279.841333pt;}
.y24f{bottom:280.981333pt;}
.y12c{bottom:281.968000pt;}
.y284{bottom:284.448000pt;}
.y13{bottom:284.581333pt;}
.y1db{bottom:285.300000pt;}
.ya0{bottom:285.920000pt;}
.y1cb{bottom:287.780000pt;}
.y22e{bottom:288.808000pt;}
.y218{bottom:289.749333pt;}
.y4d{bottom:290.116000pt;}
.yd7{bottom:290.801333pt;}
.y1f0{bottom:291.820000pt;}
.y10f{bottom:292.262667pt;}
.y1c1{bottom:294.288000pt;}
.y15e{bottom:294.742667pt;}
.y185{bottom:295.352000pt;}
.y83{bottom:295.682667pt;}
.y173{bottom:296.793333pt;}
.y267{bottom:297.154667pt;}
.y140{bottom:297.490667pt;}
.y20b{bottom:298.616000pt;}
.y304{bottom:298.660000pt;}
.y33{bottom:300.677333pt;}
.y29c{bottom:301.085333pt;}
.yf4{bottom:301.096000pt;}
.y198{bottom:301.106667pt;}
.y2cf{bottom:301.389333pt;}
.y1ff{bottom:301.705333pt;}
.y1b7{bottom:302.244000pt;}
.y12b{bottom:304.118667pt;}
.y61{bottom:305.724000pt;}
.y283{bottom:306.597333pt;}
.y12{bottom:306.732000pt;}
.y242{bottom:307.161333pt;}
.y297{bottom:307.449333pt;}
.y9f{bottom:308.070667pt;}
.y29f{bottom:308.910667pt;}
.y1ca{bottom:309.929333pt;}
.y4c{bottom:312.266667pt;}
.yd6{bottom:312.952000pt;}
.y1ef{bottom:313.969333pt;}
.y10e{bottom:314.413333pt;}
.y2f0{bottom:315.276000pt;}
.y1c0{bottom:316.438667pt;}
.y15d{bottom:316.892000pt;}
.y184{bottom:317.501333pt;}
.y1da{bottom:317.744000pt;}
.y82{bottom:317.833333pt;}
.y2e3{bottom:318.364000pt;}
.y266{bottom:319.305333pt;}
.y172{bottom:319.474667pt;}
.y13f{bottom:319.640000pt;}
.y20a{bottom:320.766667pt;}
.y303{bottom:320.810667pt;}
.yf3{bottom:323.246667pt;}
.y2ce{bottom:323.540000pt;}
.y1fe{bottom:323.856000pt;}
.y22d{bottom:324.241333pt;}
.y1b6{bottom:324.393333pt;}
.y217{bottom:325.182667pt;}
.y12a{bottom:326.268000pt;}
.yb7{bottom:327.120000pt;}
.y60{bottom:327.874667pt;}
.y282{bottom:328.748000pt;}
.y296{bottom:329.600000pt;}
.y9e{bottom:330.220000pt;}
.y273{bottom:331.061333pt;}
.y1c9{bottom:332.080000pt;}
.y4b{bottom:334.416000pt;}
.yd5{bottom:335.101333pt;}
.y1ee{bottom:336.120000pt;}
.y10d{bottom:336.562667pt;}
.y32{bottom:338.434667pt;}
.y1bf{bottom:338.588000pt;}
.y24e{bottom:338.610667pt;}
.y15c{bottom:339.042667pt;}
.y183{bottom:339.652000pt;}
.y2a2{bottom:339.894667pt;}
.y81{bottom:339.984000pt;}
.y265{bottom:341.456000pt;}
.y16c{bottom:342.065333pt;}
.y171{bottom:342.157333pt;}
.y241{bottom:342.594667pt;}
.y209{bottom:342.917333pt;}
.y302{bottom:342.961333pt;}
.y11{bottom:344.489333pt;}
.yf2{bottom:345.396000pt;}
.y2cd{bottom:345.690667pt;}
.y1fd{bottom:346.005333pt;}
.y1b5{bottom:346.544000pt;}
.y164{bottom:348.418667pt;}
.yb6{bottom:349.270667pt;}
.y5f{bottom:350.024000pt;}
.y2ef{bottom:350.709333pt;}
.y2e2{bottom:350.809333pt;}
.y281{bottom:350.898667pt;}
.y295{bottom:351.750667pt;}
.y9d{bottom:352.370667pt;}
.y2b3{bottom:355.690667pt;}
.yd4{bottom:357.252000pt;}
.y13e{bottom:357.576000pt;}
.y1ed{bottom:358.270667pt;}
.y10c{bottom:358.713333pt;}
.y22c{bottom:359.676000pt;}
.y216{bottom:360.617333pt;}
.y1be{bottom:360.738667pt;}
.y24d{bottom:360.760000pt;}
.y15b{bottom:361.193333pt;}
.y182{bottom:361.801333pt;}
.y80{bottom:362.133333pt;}
.y264{bottom:363.605333pt;}
.y16b{bottom:364.214667pt;}
.y170{bottom:364.838667pt;}
.y208{bottom:365.066667pt;}
.y301{bottom:365.110667pt;}
.yf1{bottom:367.546667pt;}
.y2cc{bottom:367.840000pt;}
.y1fc{bottom:368.156000pt;}
.y1b4{bottom:368.694667pt;}
.y1c8{bottom:370.014667pt;}
.y1e3{bottom:370.568000pt;}
.yb5{bottom:371.420000pt;}
.y4a{bottom:372.174667pt;}
.y294{bottom:373.900000pt;}
.y9c{bottom:374.521333pt;}
.y31{bottom:376.193333pt;}
.y240{bottom:378.029333pt;}
.y2b1{bottom:379.390667pt;}
.yd3{bottom:379.401333pt;}
.y10b{bottom:380.862667pt;}
.y10{bottom:382.248000pt;}
.y1bd{bottom:382.889333pt;}
.y15a{bottom:383.342667pt;}
.y181{bottom:383.952000pt;}
.y7f{bottom:384.284000pt;}
.y263{bottom:385.756000pt;}
.y16a{bottom:386.365333pt;}
.y207{bottom:387.217333pt;}
.y300{bottom:387.261333pt;}
.y16f{bottom:387.520000pt;}
.y280{bottom:388.833333pt;}
.yf0{bottom:389.697333pt;}
.y2cb{bottom:389.990667pt;}
.y2ee{bottom:390.128000pt;}
.y1fb{bottom:390.305333pt;}
.y1ec{bottom:390.714667pt;}
.y1b3{bottom:390.844000pt;}
.y1e2{bottom:392.718667pt;}
.y49{bottom:394.325333pt;}
.y22b{bottom:395.109333pt;}
.y215{bottom:396.050667pt;}
.y9b{bottom:396.670667pt;}
.y24c{bottom:400.178667pt;}
.y2e1{bottom:400.610667pt;}
.yd2{bottom:401.552000pt;}
.y272{bottom:403.013333pt;}
.yb4{bottom:403.865333pt;}
.yf{bottom:404.398667pt;}
.y1bc{bottom:405.038667pt;}
.y197{bottom:405.493333pt;}
.y13d{bottom:405.796000pt;}
.y180{bottom:406.102667pt;}
.y7e{bottom:406.434667pt;}
.y262{bottom:407.905333pt;}
.y129{bottom:408.514667pt;}
.y206{bottom:409.366667pt;}
.y2ff{bottom:409.410667pt;}
.y16e{bottom:410.201333pt;}
.yef{bottom:411.846667pt;}
.y1fa{bottom:412.456000pt;}
.y1b2{bottom:412.994667pt;}
.y10a{bottom:413.308000pt;}
.y23f{bottom:413.462667pt;}
.y30{bottom:413.952000pt;}
.y258{bottom:414.869333pt;}
.y48{bottom:416.474667pt;}
.y293{bottom:418.200000pt;}
.y9a{bottom:418.821333pt;}
.y159{bottom:421.278667pt;}
.y2ca{bottom:422.436000pt;}
.y2ed{bottom:422.572000pt;}
.yd1{bottom:423.702667pt;}
.y1e1{bottom:425.164000pt;}
.ye{bottom:426.548000pt;}
.y22a{bottom:427.553333pt;}
.y196{bottom:427.642667pt;}
.y13c{bottom:427.945333pt;}
.y17f{bottom:428.252000pt;}
.y214{bottom:428.496000pt;}
.y7d{bottom:428.584000pt;}
.y128{bottom:430.665333pt;}
.y2fe{bottom:431.561333pt;}
.yee{bottom:433.997333pt;}
.y1f9{bottom:434.606667pt;}
.y1b1{bottom:435.144000pt;}
.y24b{bottom:435.612000pt;}
.y2e0{bottom:436.044000pt;}
.y257{bottom:437.018667pt;}
.y1bb{bottom:437.484000pt;}
.y47{bottom:438.625333pt;}
.y261{bottom:440.350667pt;}
.y1eb{bottom:440.517333pt;}
.y99{bottom:440.970667pt;}
.y205{bottom:441.812000pt;}
.yd0{bottom:445.852000pt;}
.y27f{bottom:446.461333pt;}
.y271{bottom:447.313333pt;}
.yd{bottom:448.698667pt;}
.y23e{bottom:448.896000pt;}
.y195{bottom:449.793333pt;}
.y13b{bottom:450.096000pt;}
.y17e{bottom:450.402667pt;}
.y292{bottom:450.645333pt;}
.y7c{bottom:450.734667pt;}
.y2f{bottom:451.709333pt;}
.y127{bottom:452.816000pt;}
.yb3{bottom:453.668000pt;}
.y2fd{bottom:453.712000pt;}
.y5e{bottom:454.233333pt;}
.yed{bottom:456.146667pt;}
.y1f8{bottom:456.756000pt;}
.y1b0{bottom:457.294667pt;}
.y256{bottom:459.169333pt;}
.y46{bottom:460.774667pt;}
.y1ea{bottom:462.666667pt;}
.y109{bottom:463.110667pt;}
.y98{bottom:463.121333pt;}
.ycf{bottom:468.002667pt;}
.y27e{bottom:468.612000pt;}
.y270{bottom:469.464000pt;}
.yc{bottom:470.848000pt;}
.y24a{bottom:471.046667pt;}
.y2c9{bottom:471.313333pt;}
.y2df{bottom:471.478667pt;}
.y194{bottom:471.944000pt;}
.y13a{bottom:472.245333pt;}
.y2ec{bottom:472.374667pt;}
.y17d{bottom:472.552000pt;}
.y7b{bottom:472.884000pt;}
.y126{bottom:474.965333pt;}
.yb2{bottom:475.817333pt;}
.y2fc{bottom:475.861333pt;}
.y5d{bottom:476.382667pt;}
.y229{bottom:477.356000pt;}
.yec{bottom:478.297333pt;}
.y158{bottom:478.906667pt;}
.y1ba{bottom:480.765333pt;}
.y2b0{bottom:481.318667pt;}
.y45{bottom:482.925333pt;}
.y23d{bottom:484.329333pt;}
.y1e9{bottom:484.817333pt;}
.y108{bottom:485.260000pt;}
.y97{bottom:485.272000pt;}
.y2e{bottom:489.468000pt;}
.yce{bottom:490.153333pt;}
.y27d{bottom:490.761333pt;}
.y204{bottom:491.614667pt;}
.yb{bottom:492.998667pt;}
.y2c8{bottom:493.462667pt;}
.y193{bottom:494.093333pt;}
.y139{bottom:494.396000pt;}
.y17c{bottom:494.702667pt;}
.y7a{bottom:495.034667pt;}
.y1af{bottom:496.166667pt;}
.y125{bottom:497.116000pt;}
.yb1{bottom:497.968000pt;}
.y2fb{bottom:498.012000pt;}
.y5c{bottom:498.533333pt;}
.y228{bottom:499.506667pt;}
.yeb{bottom:500.448000pt;}
.y157{bottom:501.057333pt;}
.y29e{bottom:501.909333pt;}
.y2af{bottom:503.469333pt;}
.y44{bottom:505.076000pt;}
.y249{bottom:506.480000pt;}
.y2de{bottom:506.912000pt;}
.y1e8{bottom:506.968000pt;}
.y107{bottom:507.410667pt;}
.y96{bottom:507.421333pt;}
.y2b2{bottom:509.878667pt;}
.y2eb{bottom:511.793333pt;}
.ycd{bottom:512.302667pt;}
.y27c{bottom:512.912000pt;}
.y203{bottom:513.764000pt;}
.ya{bottom:515.149333pt;}
.y2c7{bottom:515.613333pt;}
.y192{bottom:516.244000pt;}
.y1a2{bottom:516.853333pt;}
.y138{bottom:517.077333pt;}
.y79{bottom:517.185333pt;}
.y124{bottom:519.265333pt;}
.y23c{bottom:519.764000pt;}
.yb0{bottom:520.117333pt;}
.y2fa{bottom:520.162667pt;}
.y5b{bottom:520.684000pt;}
.y1d9{bottom:522.597333pt;}
.y156{bottom:523.206667pt;}
.y2ae{bottom:525.620000pt;}
.y2d{bottom:527.225333pt;}
.y1e7{bottom:529.117333pt;}
.y106{bottom:529.560000pt;}
.y95{bottom:529.572000pt;}
.y1ae{bottom:531.462667pt;}
.y17b{bottom:532.638667pt;}
.yea{bottom:532.892000pt;}
.ycc{bottom:534.453333pt;}
.y27b{bottom:535.062667pt;}
.y202{bottom:535.914667pt;}
.y9{bottom:537.298667pt;}
.y2c6{bottom:537.762667pt;}
.y191{bottom:538.394667pt;}
.y227{bottom:538.925333pt;}
.y1a1{bottom:539.002667pt;}
.y78{bottom:539.334667pt;}
.y123{bottom:541.416000pt;}
.y2f9{bottom:542.312000pt;}
.y2dd{bottom:542.345333pt;}
.y5a{bottom:542.833333pt;}
.y1d8{bottom:544.748000pt;}
.y155{bottom:545.357333pt;}
.y26f{bottom:546.209333pt;}
.y2ea{bottom:547.226667pt;}
.y1e6{bottom:551.268000pt;}
.y105{bottom:551.710667pt;}
.y94{bottom:551.721333pt;}
.yaf{bottom:552.562667pt;}
.y23b{bottom:555.197333pt;}
.ycb{bottom:556.602667pt;}
.y27a{bottom:557.212000pt;}
.y201{bottom:558.064000pt;}
.y8{bottom:559.449333pt;}
.y2c5{bottom:559.913333pt;}
.y2a1{bottom:560.533333pt;}
.y190{bottom:560.544000pt;}
.y1a0{bottom:561.153333pt;}
.y77{bottom:561.485333pt;}
.y122{bottom:563.566667pt;}
.y2f8{bottom:564.462667pt;}
.y2c{bottom:564.984000pt;}
.y1ad{bottom:566.760000pt;}
.y1d7{bottom:566.897333pt;}
.y154{bottom:567.506667pt;}
.y29b{bottom:568.358667pt;}
.y260{bottom:572.388000pt;}
.y1e5{bottom:573.417333pt;}
.y104{bottom:573.861333pt;}
.y93{bottom:573.872000pt;}
.y226{bottom:574.358667pt;}
.y2dc{bottom:577.778667pt;}
.yca{bottom:578.753333pt;}
.y169{bottom:579.362667pt;}
.y200{bottom:580.214667pt;}
.y2c4{bottom:582.064000pt;}
.y2e9{bottom:582.661333pt;}
.ye9{bottom:582.694667pt;}
.y76{bottom:583.634667pt;}
.y121{bottom:585.716000pt;}
.y2f7{bottom:586.612000pt;}
.y43{bottom:587.133333pt;}
.y248{bottom:588.726667pt;}
.y1d6{bottom:589.048000pt;}
.y153{bottom:589.657333pt;}
.y23a{bottom:590.630667pt;}
.y103{bottom:596.010667pt;}
.y92{bottom:596.022667pt;}
.y7{bottom:597.206667pt;}
.y19f{bottom:599.088000pt;}
.y2db{bottom:599.929333pt;}
.yc9{bottom:600.904000pt;}
.y168{bottom:601.513333pt;}
.y1ac{bottom:602.057333pt;}
.yae{bottom:602.365333pt;}
.y2b{bottom:602.741333pt;}
.y2c3{bottom:604.213333pt;}
.ye8{bottom:604.844000pt;}
.y75{bottom:605.785333pt;}
.y1e4{bottom:605.862667pt;}
.y120{bottom:607.866667pt;}
.y2f6{bottom:608.762667pt;}
.y42{bottom:609.284000pt;}
.y225{bottom:609.792000pt;}
.y291{bottom:611.198667pt;}
.y152{bottom:611.808000pt;}
.y2a8{bottom:616.700000pt;}
.y102{bottom:618.161333pt;}
.y91{bottom:618.172000pt;}
.y1d5{bottom:621.493333pt;}
.y2da{bottom:622.080000pt;}
.yc8{bottom:623.053333pt;}
.y239{bottom:623.076000pt;}
.y167{bottom:623.662667pt;}
.yad{bottom:624.514667pt;}
.y2a{bottom:624.892000pt;}
.y2c2{bottom:626.364000pt;}
.y213{bottom:626.984000pt;}
.ye7{bottom:626.994667pt;}
.y74{bottom:627.936000pt;}
.y247{bottom:628.145333pt;}
.y135{bottom:630.016000pt;}
.y2f5{bottom:630.913333pt;}
.y41{bottom:631.434667pt;}
.y290{bottom:633.348000pt;}
.y151{bottom:633.957333pt;}
.y6{bottom:634.965333pt;}
.y1ab{bottom:637.354667pt;}
.y2a7{bottom:638.850667pt;}
.y101{bottom:640.312000pt;}
.y90{bottom:640.322667pt;}
.yc7{bottom:645.204000pt;}
.y224{bottom:645.225333pt;}
.y166{bottom:645.813333pt;}
.yac{bottom:646.665333pt;}
.y29{bottom:647.042667pt;}
.ye6{bottom:649.145333pt;}
.y73{bottom:650.085333pt;}
.y16d{bottom:652.166667pt;}
.y40{bottom:653.584000pt;}
.y2d9{bottom:654.524000pt;}
.y28f{bottom:655.498667pt;}
.y150{bottom:656.108000pt;}
.y2c1{bottom:658.809333pt;}
.y2a6{bottom:661.000000pt;}
.y100{bottom:662.461333pt;}
.y8f{bottom:662.473333pt;}
.y68{bottom:662.650667pt;}
.y246{bottom:663.578667pt;}
.y165{bottom:667.962667pt;}
.y2f4{bottom:668.848000pt;}
.y28{bottom:669.192000pt;}
.ye5{bottom:671.294667pt;}
.y1aa{bottom:672.650667pt;}
.y238{bottom:672.877333pt;}
.y5{bottom:672.901333pt;}
.y1e0{bottom:674.317333pt;}
.y3f{bottom:675.734667pt;}
.y14f{bottom:678.257333pt;}
.yab{bottom:679.110667pt;}
.y223{bottom:680.660000pt;}
.yc6{bottom:683.138667pt;}
.y2a5{bottom:683.150667pt;}
.yff{bottom:684.612000pt;}
.y8e{bottom:684.622667pt;}
.y67{bottom:684.800000pt;}
.y28e{bottom:687.944000pt;}
.y72{bottom:689.504000pt;}
.y11f{bottom:690.113333pt;}
.y27{bottom:691.342667pt;}
.ye4{bottom:693.445333pt;}
.y237{bottom:695.028000pt;}
.y255{bottom:696.466667pt;}
.y245{bottom:699.013333pt;}
.y14e{bottom:700.408000pt;}
.y2d8{bottom:704.326667pt;}
.yfe{bottom:706.761333pt;}
.y8d{bottom:706.773333pt;}
.y66{bottom:706.950667pt;}
.y2c0{bottom:707.686667pt;}
.y1a9{bottom:707.948000pt;}
.y71{bottom:711.654667pt;}
.y11e{bottom:712.264000pt;}
.y26{bottom:713.492000pt;}
.ye3{bottom:715.594667pt;}
.y222{bottom:716.093333pt;}
.y25f{bottom:718.617333pt;}
.y2a4{bottom:721.085333pt;}
.y14d{bottom:722.558667pt;}
.y2d7{bottom:726.476000pt;}
.yaa{bottom:728.912000pt;}
.y8c{bottom:728.922667pt;}
.y65{bottom:729.100000pt;}
.y2bf{bottom:729.836000pt;}
.y1b9{bottom:731.380000pt;}
.y70{bottom:733.805333pt;}
.y11d{bottom:734.413333pt;}
.y236{bottom:734.446667pt;}
.y25{bottom:735.642667pt;}
.ye2{bottom:737.745333pt;}
.y29a{bottom:739.206667pt;}
.yc5{bottom:740.768000pt;}
.y1a8{bottom:743.245333pt;}
.y14c{bottom:744.708000pt;}
.y4{bottom:747.797333pt;}
.ya9{bottom:751.062667pt;}
.y8b{bottom:751.073333pt;}
.y64{bottom:751.250667pt;}
.y221{bottom:751.526667pt;}
.y2be{bottom:751.986667pt;}
.y18f{bottom:753.530667pt;}
.y11c{bottom:756.564000pt;}
.y24{bottom:757.793333pt;}
.ye1{bottom:759.896000pt;}
.yfd{bottom:761.357333pt;}
.yc4{bottom:762.917333pt;}
.y2d6{bottom:765.894667pt;}
.y14b{bottom:766.858667pt;}
.y235{bottom:769.880000pt;}
.ya8{bottom:773.212000pt;}
.y6f{bottom:773.224000pt;}
.y59{bottom:773.401333pt;}
.y2bd{bottom:774.137333pt;}
.y11b{bottom:778.713333pt;}
.y23{bottom:779.942667pt;}
.y1d4{bottom:782.045333pt;}
.y1a7{bottom:782.116000pt;}
.y29d{bottom:783.506667pt;}
.yc3{bottom:785.068000pt;}
.y3{bottom:785.556000pt;}
.y220{bottom:786.960000pt;}
.y14a{bottom:789.009333pt;}
.y137{bottom:795.362667pt;}
.y6e{bottom:795.373333pt;}
.y3e{bottom:795.550667pt;}
.y2bc{bottom:796.286667pt;}
.ye0{bottom:797.830667pt;}
.y11a{bottom:800.864000pt;}
.y2d5{bottom:801.329333pt;}
.y22{bottom:802.093333pt;}
.y28d{bottom:804.196000pt;}
.y1a6{bottom:804.266667pt;}
.y234{bottom:805.313333pt;}
.ya7{bottom:805.657333pt;}
.yfc{bottom:811.158667pt;}
.yc2{bottom:817.512000pt;}
.y6d{bottom:817.524000pt;}
.y58{bottom:817.701333pt;}
.y2bb{bottom:818.437333pt;}
.y1d3{bottom:819.981333pt;}
.y21f{bottom:822.394667pt;}
.y119{bottom:823.014667pt;}
.y21{bottom:824.242667pt;}
.y28c{bottom:826.346667pt;}
.y1a5{bottom:826.417333pt;}
.y3d{bottom:833.309333pt;}
.y2{bottom:836.464000pt;}
.y2d4{bottom:836.762667pt;}
.y6c{bottom:839.673333pt;}
.y57{bottom:839.850667pt;}
.y233{bottom:840.748000pt;}
.y118{bottom:845.164000pt;}
.y20{bottom:846.393333pt;}
.y28b{bottom:848.496000pt;}
.y1a4{bottom:848.566667pt;}
.y136{bottom:849.957333pt;}
.y2ba{bottom:850.881333pt;}
.y21e{bottom:854.838667pt;}
.y3c{bottom:855.458667pt;}
.y6b{bottom:861.824000pt;}
.y56{bottom:862.001333pt;}
.yc1{bottom:867.314667pt;}
.y2d3{bottom:872.196000pt;}
.y1{bottom:874.654667pt;}
.y232{bottom:876.181333pt;}
.y3b{bottom:877.609333pt;}
.y6a{bottom:883.974667pt;}
.y1f{bottom:884.152000pt;}
.y28a{bottom:886.432000pt;}
.y1a3{bottom:886.502667pt;}
.yc0{bottom:889.465333pt;}
.y3a{bottom:899.760000pt;}
.y21d{bottom:904.641333pt;}
.y69{bottom:906.124000pt;}
.ybf{bottom:911.614667pt;}
.y1e{bottom:921.909333pt;}
.y1d{bottom:944.060000pt;}
.h5{height:45.589163pt;}
.h4{height:47.820800pt;}
.h2{height:57.384800pt;}
.h3{height:68.861600pt;}
.h1{height:77.360400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:50.745333pt;}
.xb{left:91.317333pt;}
.xf{left:94.804000pt;}
.x1{left:96.026667pt;}
.x9{left:103.970667pt;}
.xc{left:115.076000pt;}
.x5{left:119.412000pt;}
.x7{left:134.442667pt;}
.xd{left:258.362667pt;}
.x3{left:260.721333pt;}
.x2{left:311.512000pt;}
.x4{left:330.845333pt;}
.x8{left:400.196000pt;}
.x6{left:404.098667pt;}
.xe{left:474.534667pt;}
}




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