
    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_bd40d167142e4d842c28cae4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee78aabbb31f1f38a6d4f56c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181000;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_f83d4cce8b3889aa79659184.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c6f70b742b5cc2a5fd31d629.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.040000;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);}
.m4{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);}
.m21{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);}
.m25{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);}
.m1e{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);}
.m26{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);}
.m1d{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);}
.mf{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);}
.ma{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);}
.m12{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);}
.m13{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);}
.m24{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);}
.mb{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);}
.m7{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);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m19{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);}
.m3{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);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m28{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);}
.m23{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);}
.mc{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);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m1f{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m1b{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);}
.m10{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);}
.m14{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);}
.m20{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);}
.m15{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);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001133px;}
.lsa{letter-spacing:0.001746px;}
.lsb{letter-spacing:0.003178px;}
.ls4{letter-spacing:11.954850px;}
.lsd{letter-spacing:13.448400px;}
.lse{letter-spacing:13.454400px;}
.lsc{letter-spacing:14.525471px;}
.ls6{letter-spacing:14.585246px;}
.ls8{letter-spacing:14.824349px;}
.ls7{letter-spacing:15.003676px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.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;}
}
.ws2c{word-spacing:-14.943900px;}
.ws7f{word-spacing:-13.449600px;}
.ws1f{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws38{word-spacing:-3.287658px;}
.ws7a{word-spacing:-3.108331px;}
.ws73{word-spacing:-2.988780px;}
.ws71{word-spacing:-2.929004px;}
.ws5e{word-spacing:-2.869229px;}
.ws7c{word-spacing:-2.809453px;}
.ws82{word-spacing:-2.630126px;}
.ws44{word-spacing:-2.450800px;}
.wsa9{word-spacing:-2.420928px;}
.ws99{word-spacing:-2.331248px;}
.ws59{word-spacing:-2.211697px;}
.ws21{word-spacing:-2.151922px;}
.wsa3{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws1b{word-spacing:-2.032370px;}
.ws40{word-spacing:-1.972595px;}
.ws51{word-spacing:-1.912819px;}
.wsae{word-spacing:-1.882944px;}
.ws52{word-spacing:-1.853044px;}
.ws55{word-spacing:-1.793268px;}
.wsdb{word-spacing:-1.721549px;}
.ws80{word-spacing:-1.673717px;}
.ws4a{word-spacing:-1.554166px;}
.ws69{word-spacing:-1.434614px;}
.ws53{word-spacing:-1.374839px;}
.ws5d{word-spacing:-1.315063px;}
.wse0{word-spacing:-1.291162px;}
.ws8e{word-spacing:-1.195512px;}
.ws67{word-spacing:-1.135736px;}
.ws3f{word-spacing:-1.075961px;}
.ws4b{word-spacing:-1.016185px;}
.ws5c{word-spacing:-0.956410px;}
.ws87{word-spacing:-0.896634px;}
.ws25{word-spacing:-0.836858px;}
.ws5b{word-spacing:-0.777083px;}
.ws12{word-spacing:-0.717307px;}
.ws6f{word-spacing:-0.657532px;}
.ws10{word-spacing:-0.537980px;}
.ws70{word-spacing:-0.478205px;}
.ws27{word-spacing:-0.418429px;}
.wsc8{word-spacing:-0.376589px;}
.ws57{word-spacing:-0.358654px;}
.wsd1{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.wsd4{word-spacing:-0.268992px;}
.wsb{word-spacing:-0.239102px;}
.wsb7{word-spacing:-0.215194px;}
.ws13{word-spacing:-0.179327px;}
.wsc9{word-spacing:-0.161395px;}
.ws16{word-spacing:-0.119551px;}
.wsb2{word-spacing:-0.107597px;}
.ws23{word-spacing:-0.059776px;}
.ws9c{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws8{word-spacing:-0.003550px;}
.ws6{word-spacing:0.000000px;}
.wsd7{word-spacing:0.003600px;}
.wsb0{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.wsde{word-spacing:0.107597px;}
.ws11{word-spacing:0.119551px;}
.wsc4{word-spacing:0.161395px;}
.ws15{word-spacing:0.179327px;}
.wsd2{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.wsbb{word-spacing:0.268992px;}
.ws2d{word-spacing:0.298878px;}
.wsba{word-spacing:0.322790px;}
.wsf{word-spacing:0.358654px;}
.ws39{word-spacing:0.418429px;}
.ws5{word-spacing:0.422252px;}
.wsb6{word-spacing:0.430387px;}
.ws58{word-spacing:0.478205px;}
.ws7b{word-spacing:0.537980px;}
.wsb4{word-spacing:0.537984px;}
.ws7e{word-spacing:0.591782px;}
.ws18{word-spacing:0.597756px;}
.ws31{word-spacing:0.717307px;}
.wsda{word-spacing:0.753178px;}
.ws95{word-spacing:0.777083px;}
.wsc5{word-spacing:0.806976px;}
.ws1d{word-spacing:0.836858px;}
.wscd{word-spacing:0.860774px;}
.ws30{word-spacing:0.896634px;}
.ws14{word-spacing:0.956410px;}
.ws9d{word-spacing:1.022170px;}
.ws88{word-spacing:1.075961px;}
.wscb{word-spacing:1.075968px;}
.ws60{word-spacing:1.135736px;}
.ws5a{word-spacing:1.195512px;}
.wsca{word-spacing:1.237363px;}
.ws6a{word-spacing:1.315063px;}
.wsd0{word-spacing:1.344960px;}
.wsa2{word-spacing:1.374839px;}
.ws76{word-spacing:1.434614px;}
.ws28{word-spacing:1.494390px;}
.wse7{word-spacing:1.506355px;}
.ws37{word-spacing:1.554166px;}
.ws29{word-spacing:1.613941px;}
.wsaa{word-spacing:1.673717px;}
.ws32{word-spacing:1.733492px;}
.ws78{word-spacing:1.793268px;}
.wsdf{word-spacing:1.829146px;}
.ws90{word-spacing:1.853044px;}
.ws42{word-spacing:1.912819px;}
.ws6b{word-spacing:1.972595px;}
.wsbc{word-spacing:1.990541px;}
.ws85{word-spacing:2.032370px;}
.wsc0{word-spacing:2.044339px;}
.ws41{word-spacing:2.092146px;}
.ws45{word-spacing:2.151922px;}
.wsc2{word-spacing:2.205734px;}
.ws68{word-spacing:2.211697px;}
.ws91{word-spacing:2.271473px;}
.ws43{word-spacing:2.331248px;}
.ws6d{word-spacing:2.391024px;}
.wse4{word-spacing:2.420928px;}
.ws26{word-spacing:2.450800px;}
.wse6{word-spacing:2.474726px;}
.wsc{word-spacing:2.510575px;}
.ws84{word-spacing:2.570351px;}
.wsce{word-spacing:2.582323px;}
.ws48{word-spacing:2.630126px;}
.ws4d{word-spacing:2.689902px;}
.ws49{word-spacing:2.749678px;}
.ws89{word-spacing:2.809453px;}
.wsd8{word-spacing:2.851315px;}
.wsa{word-spacing:2.869236px;}
.wsc3{word-spacing:2.905114px;}
.wsab{word-spacing:2.988780px;}
.ws7d{word-spacing:3.108331px;}
.wsaf{word-spacing:3.120307px;}
.wsb1{word-spacing:3.143030px;}
.ws3c{word-spacing:3.168107px;}
.wsb3{word-spacing:3.174106px;}
.ws63{word-spacing:3.227882px;}
.wsc7{word-spacing:3.227904px;}
.ws97{word-spacing:3.287658px;}
.ws2f{word-spacing:3.347434px;}
.ws75{word-spacing:3.407209px;}
.ws2e{word-spacing:3.466985px;}
.wse9{word-spacing:3.496896px;}
.ws2a{word-spacing:3.526760px;}
.wsd9{word-spacing:3.550694px;}
.ws4f{word-spacing:3.586536px;}
.ws50{word-spacing:3.706087px;}
.ws4e{word-spacing:3.765863px;}
.ws6e{word-spacing:3.885414px;}
.ws74{word-spacing:3.945190px;}
.ws8f{word-spacing:4.184292px;}
.ws86{word-spacing:4.244068px;}
.ws47{word-spacing:4.303843px;}
.ws19{word-spacing:4.303872px;}
.ws98{word-spacing:4.483170px;}
.ws36{word-spacing:4.542946px;}
.ws34{word-spacing:4.602721px;}
.ws8a{word-spacing:4.662497px;}
.ws81{word-spacing:4.722272px;}
.ws17{word-spacing:4.951240px;}
.wsad{word-spacing:4.961375px;}
.wse2{word-spacing:5.003251px;}
.ws66{word-spacing:5.021150px;}
.ws77{word-spacing:5.080926px;}
.ws83{word-spacing:5.200477px;}
.ws3d{word-spacing:5.260253px;}
.ws33{word-spacing:5.499355px;}
.ws46{word-spacing:5.559131px;}
.ws61{word-spacing:5.618906px;}
.ws1a{word-spacing:5.678682px;}
.ws72{word-spacing:5.798233px;}
.ws54{word-spacing:5.858009px;}
.ws96{word-spacing:5.917784px;}
.wsb9{word-spacing:5.917824px;}
.ws8c{word-spacing:5.977560px;}
.ws2b{word-spacing:6.037336px;}
.ws93{word-spacing:6.156887px;}
.ws6c{word-spacing:6.216662px;}
.ws1c{word-spacing:6.276438px;}
.ws5f{word-spacing:6.336214px;}
.wsc6{word-spacing:6.348211px;}
.ws3a{word-spacing:6.515540px;}
.wsa4{word-spacing:6.635092px;}
.ws56{word-spacing:6.754643px;}
.ws94{word-spacing:6.874194px;}
.ws35{word-spacing:6.933970px;}
.wsb5{word-spacing:7.477978px;}
.wsd{word-spacing:7.591501px;}
.ws65{word-spacing:7.651277px;}
.wsac{word-spacing:7.770828px;}
.ws64{word-spacing:7.830604px;}
.ws8d{word-spacing:8.009930px;}
.ws3b{word-spacing:8.189257px;}
.ws2{word-spacing:8.321741px;}
.ws79{word-spacing:8.368584px;}
.ws92{word-spacing:8.787013px;}
.wsdc{word-spacing:9.136963px;}
.wsd5{word-spacing:9.140026px;}
.wsbe{word-spacing:9.140880px;}
.ws4c{word-spacing:9.683647px;}
.ws8b{word-spacing:11.476915px;}
.ws62{word-spacing:11.835569px;}
.ws1e{word-spacing:11.906842px;}
.wsd3{word-spacing:13.342003px;}
.wsbd{word-spacing:13.389091px;}
.wsbf{word-spacing:13.389581px;}
.wsdd{word-spacing:13.392192px;}
.wsd6{word-spacing:13.395802px;}
.wscc{word-spacing:14.016887px;}
.wse5{word-spacing:14.256576px;}
.ws3e{word-spacing:14.884124px;}
.wse8{word-spacing:14.902157px;}
.wscf{word-spacing:16.618570px;}
.wse3{word-spacing:16.621210px;}
.wsc1{word-spacing:16.623706px;}
.wse1{word-spacing:18.399053px;}
.ws1{word-spacing:22.179541px;}
.ws9{word-spacing:46.059600px;}
.wsb8{word-spacing:174.629606px;}
.wsa1{word-spacing:184.945706px;}
.wsa0{word-spacing:214.833506px;}
.ws9f{word-spacing:229.777406px;}
.ws9e{word-spacing:244.721306px;}
.wsa6{word-spacing:960.832994px;}
.wsa8{word-spacing:969.141803px;}
.wsa5{word-spacing:996.040823px;}
.wsa7{word-spacing:1001.599954px;}
.ws9a{word-spacing:1077.375533px;}
.ws9b{word-spacing:1078.881533px;}
._4{margin-left:-7.531776px;}
._7{margin-left:-5.798259px;}
._42{margin-left:-4.787822px;}
._1{margin-left:-3.765852px;}
._2{margin-left:-2.092140px;}
._8{margin-left:-1.075961px;}
._5{width:2.985042px;}
._0{width:10.879128px;}
._1b{width:13.150688px;}
._17{width:14.405914px;}
._18{width:15.661258px;}
._b{width:16.677386px;}
._11{width:17.753347px;}
._a{width:19.128186px;}
._12{width:20.383480px;}
._3{width:21.753456px;}
._10{width:23.611362px;}
._9{width:24.627547px;}
._f{width:26.361040px;}
._1d{width:27.437000px;}
._13{width:29.469371px;}
._16{width:31.621286px;}
._1a{width:32.697253px;}
._19{width:34.072086px;}
._14{width:35.506706px;}
._c{width:37.897730px;}
._15{width:39.870325px;}
._1f{width:42.201574px;}
._1e{width:43.217759px;}
._6{width:54.429634px;}
._38{width:71.713267px;}
._36{width:84.840077px;}
._20{width:91.217566px;}
._3b{width:110.501914px;}
._34{width:112.600051px;}
._41{width:127.932595px;}
._3e{width:131.046905px;}
._29{width:151.590953px;}
._3f{width:155.046989px;}
._3a{width:159.835046px;}
._33{width:162.202176px;}
._40{width:165.268685px;}
._35{width:168.765581px;}
._3c{width:176.727744px;}
._22{width:180.044107px;}
._3d{width:181.354406px;}
._37{width:191.576102px;}
._39{width:197.493926px;}
._23{width:199.889606px;}
._2c{width:214.833506px;}
._2b{width:221.946809px;}
._2a{width:229.777406px;}
._2e{width:244.781082px;}
._24{width:246.395023px;}
._27{width:260.681392px;}
._26{width:352.018508px;}
._28{width:368.397029px;}
._2d{width:387.286112px;}
._21{width:424.825189px;}
._2f{width:476.172430px;}
._25{width:515.325448px;}
._32{width:859.513352px;}
._30{width:872.245581px;}
._31{width:881.271671px;}
._d{width:1671.215929px;}
._1c{width:2468.093929px;}
._e{width:2492.003929px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y41{bottom:45.921000px;}
.y17{bottom:100.260000px;}
.ycb{bottom:101.463000px;}
.y19a{bottom:105.745500px;}
.y218{bottom:105.961500px;}
.ye7{bottom:107.815500px;}
.y15d{bottom:111.342000px;}
.y178{bottom:112.006500px;}
.ybc{bottom:113.299500px;}
.y40{bottom:114.138000px;}
.y1ad{bottom:116.139000px;}
.y74{bottom:116.407500px;}
.y16{bottom:118.147500px;}
.y1e6{bottom:118.290000px;}
.y139{bottom:118.365000px;}
.y1b5{bottom:121.542000px;}
.yca{bottom:122.355000px;}
.y217{bottom:125.112000px;}
.y183{bottom:126.289500px;}
.y199{bottom:126.637500px;}
.y9a{bottom:130.710000px;}
.y131{bottom:131.694000px;}
.y104{bottom:132.103500px;}
.y15c{bottom:132.234000px;}
.y177{bottom:132.898500px;}
.ybb{bottom:134.191500px;}
.ye5{bottom:134.907000px;}
.y3f{bottom:135.030000px;}
.y15{bottom:136.035000px;}
.y1ac{bottom:137.029500px;}
.y73{bottom:137.298000px;}
.y1e5{bottom:137.440500px;}
.y1e4{bottom:137.442000px;}
.y110{bottom:139.255500px;}
.y1b4{bottom:141.040500px;}
.yc9{bottom:143.245500px;}
.y216{bottom:144.262500px;}
.y182{bottom:147.181500px;}
.y198{bottom:147.529500px;}
.y99{bottom:151.600500px;}
.y130{bottom:152.584500px;}
.y103{bottom:152.994000px;}
.y15b{bottom:153.126000px;}
.y176{bottom:153.790500px;}
.y14{bottom:153.922500px;}
.yba{bottom:155.083500px;}
.ye4{bottom:155.799000px;}
.y3e{bottom:155.920500px;}
.y1e3{bottom:156.592500px;}
.y1ab{bottom:157.921500px;}
.y72{bottom:158.190000px;}
.y10f{bottom:160.147500px;}
.y1b3{bottom:160.539000px;}
.y215{bottom:163.413000px;}
.y181{bottom:168.073500px;}
.y197{bottom:168.420000px;}
.yc8{bottom:171.609000px;}
.y13{bottom:171.811500px;}
.y98{bottom:172.492500px;}
.y12f{bottom:173.476500px;}
.y102{bottom:173.886000px;}
.y15a{bottom:174.016500px;}
.y175{bottom:174.681000px;}
.y1e2{bottom:175.743000px;}
.ye3{bottom:176.691000px;}
.y3d{bottom:176.812500px;}
.y1aa{bottom:178.813500px;}
.y71{bottom:179.082000px;}
.yb9{bottom:180.457500px;}
.y10e{bottom:181.039500px;}
.y214{bottom:182.563500px;}
.y180{bottom:188.964000px;}
.y1b2{bottom:189.004500px;}
.y12{bottom:189.699000px;}
.yc7{bottom:192.501000px;}
.y97{bottom:193.384500px;}
.y196{bottom:193.795500px;}
.y12e{bottom:194.368500px;}
.y101{bottom:194.778000px;}
.y1e1{bottom:194.893500px;}
.y159{bottom:194.908500px;}
.y174{bottom:195.573000px;}
.ye2{bottom:197.581500px;}
.y3c{bottom:197.704500px;}
.y1a9{bottom:199.705500px;}
.y70{bottom:199.972500px;}
.y213{bottom:201.714000px;}
.y10d{bottom:201.930000px;}
.yb8{bottom:204.889500px;}
.y11{bottom:207.586500px;}
.y1b1{bottom:208.503000px;}
.y17f{bottom:209.856000px;}
.yc6{bottom:213.393000px;}
.y1e0{bottom:214.044000px;}
.y96{bottom:214.275000px;}
.y12d{bottom:215.259000px;}
.y100{bottom:215.668500px;}
.y158{bottom:215.800500px;}
.y173{bottom:216.465000px;}
.ye1{bottom:218.473500px;}
.y3b{bottom:218.595000px;}
.y1a8{bottom:220.596000px;}
.y6f{bottom:220.864500px;}
.y10c{bottom:222.822000px;}
.y10{bottom:225.475500px;}
.y195{bottom:225.940500px;}
.y1b0{bottom:228.001500px;}
.y1df{bottom:233.194500px;}
.yc5{bottom:234.283500px;}
.y95{bottom:235.167000px;}
.y12c{bottom:236.151000px;}
.yff{bottom:236.560500px;}
.y157{bottom:236.691000px;}
.y172{bottom:237.355500px;}
.ye0{bottom:239.365500px;}
.y3a{bottom:239.487000px;}
.y212{bottom:240.015000px;}
.y1a7{bottom:241.488000px;}
.y6e{bottom:241.756500px;}
.yb7{bottom:243.714000px;}
.y17e{bottom:245.484000px;}
.y1af{bottom:247.500000px;}
.yf{bottom:252.330000px;}
.y1de{bottom:252.345000px;}
.yc4{bottom:255.175500px;}
.y94{bottom:256.059000px;}
.y12b{bottom:257.043000px;}
.yfe{bottom:257.452500px;}
.y156{bottom:257.583000px;}
.y171{bottom:258.247500px;}
.y211{bottom:259.165500px;}
.ydf{bottom:260.256000px;}
.y1a6{bottom:262.380000px;}
.y6d{bottom:262.647000px;}
.yb6{bottom:264.606000px;}
.y17d{bottom:264.717000px;}
.y39{bottom:264.862500px;}
.y1ae{bottom:267.000000px;}
.ye{bottom:270.217500px;}
.y1dd{bottom:271.495500px;}
.yc3{bottom:276.067500px;}
.y93{bottom:276.949500px;}
.y12a{bottom:277.933500px;}
.y210{bottom:278.316000px;}
.yfd{bottom:278.343000px;}
.y155{bottom:278.475000px;}
.y170{bottom:279.139500px;}
.yde{bottom:281.148000px;}
.y1a5{bottom:283.270500px;}
.y6c{bottom:283.539000px;}
.y17c{bottom:283.950000px;}
.yb5{bottom:285.496500px;}
.yd{bottom:288.105000px;}
.y1dc{bottom:290.646000px;}
.yc2{bottom:296.959500px;}
.y20f{bottom:297.466500px;}
.y129{bottom:298.825500px;}
.yfc{bottom:299.235000px;}
.y154{bottom:299.365500px;}
.y16f{bottom:300.030000px;}
.ydd{bottom:302.040000px;}
.y92{bottom:302.325000px;}
.y6b{bottom:304.431000px;}
.yc{bottom:305.994000px;}
.yb4{bottom:306.388500px;}
.y1a4{bottom:308.646000px;}
.y1db{bottom:309.796500px;}
.y17b{bottom:312.148500px;}
.y20e{bottom:316.617000px;}
.yc1{bottom:317.850000px;}
.y128{bottom:319.717500px;}
.yfb{bottom:320.127000px;}
.y153{bottom:320.257500px;}
.y16e{bottom:320.922000px;}
.ydc{bottom:322.932000px;}
.yb{bottom:323.881500px;}
.y6a{bottom:325.323000px;}
.y91{bottom:326.757000px;}
.yb3{bottom:327.280500px;}
.y1da{bottom:328.947000px;}
.y20d{bottom:335.767500px;}
.yc0{bottom:338.742000px;}
.y127{bottom:340.608000px;}
.yfa{bottom:341.017500px;}
.y152{bottom:341.149500px;}
.ya{bottom:341.769000px;}
.y16d{bottom:341.814000px;}
.ydb{bottom:343.822500px;}
.y38{bottom:344.073000px;}
.y1a3{bottom:344.274000px;}
.y69{bottom:346.213500px;}
.y1d9{bottom:348.097500px;}
.yb2{bottom:348.171000px;}
.y20c{bottom:354.918000px;}
.ybf{bottom:359.634000px;}
.y9{bottom:359.658000px;}
.y126{bottom:361.500000px;}
.yf9{bottom:361.909500px;}
.y151{bottom:362.041500px;}
.y16c{bottom:362.706000px;}
.y1a2{bottom:363.507000px;}
.yda{bottom:364.714500px;}
.y37{bottom:364.965000px;}
.y90{bottom:365.581500px;}
.y68{bottom:367.105500px;}
.y1d8{bottom:367.248000px;}
.yb1{bottom:369.063000px;}
.y20b{bottom:374.070000px;}
.y8{bottom:377.545500px;}
.ybe{bottom:380.524500px;}
.y125{bottom:382.392000px;}
.yf8{bottom:382.801500px;}
.y150{bottom:382.932000px;}
.y16b{bottom:383.596500px;}
.yd9{bottom:385.606500px;}
.y8f{bottom:386.472000px;}
.y67{bottom:387.997500px;}
.yb0{bottom:389.955000px;}
.y1d7{bottom:390.882000px;}
.y20a{bottom:393.220500px;}
.y7{bottom:395.433000px;}
.ybd{bottom:401.416500px;}
.y124{bottom:403.284000px;}
.yf7{bottom:403.693500px;}
.y36{bottom:403.789500px;}
.y14f{bottom:403.824000px;}
.y16a{bottom:404.488500px;}
.yd8{bottom:406.497000px;}
.y8e{bottom:407.364000px;}
.y66{bottom:408.888000px;}
.yaf{bottom:410.845500px;}
.y209{bottom:412.371000px;}
.y6{bottom:413.322000px;}
.y123{bottom:424.174500px;}
.yf6{bottom:424.584000px;}
.y35{bottom:424.681500px;}
.y14e{bottom:424.716000px;}
.y169{bottom:425.380500px;}
.yd7{bottom:427.389000px;}
.y8d{bottom:428.256000px;}
.y65{bottom:429.780000px;}
.y1d6{bottom:430.783500px;}
.y208{bottom:431.521500px;}
.yae{bottom:431.737500px;}
.y5{bottom:437.187000px;}
.y122{bottom:445.066500px;}
.y34{bottom:445.572000px;}
.y14d{bottom:445.606500px;}
.yd6{bottom:448.281000px;}
.y8c{bottom:449.146500px;}
.yf5{bottom:449.959500px;}
.y1d5{bottom:450.282000px;}
.y64{bottom:450.672000px;}
.y168{bottom:450.754500px;}
.yad{bottom:452.629500px;}
.y4{bottom:455.074500px;}
.y121{bottom:465.958500px;}
.y33{bottom:466.464000px;}
.y14c{bottom:466.498500px;}
.yd5{bottom:469.171500px;}
.y1d4{bottom:469.780500px;}
.y207{bottom:469.822500px;}
.y8b{bottom:470.038500px;}
.y63{bottom:471.562500px;}
.y3{bottom:472.963500px;}
.yac{bottom:473.520000px;}
.yf4{bottom:485.301000px;}
.y120{bottom:486.849000px;}
.y32{bottom:487.356000px;}
.y14b{bottom:487.390500px;}
.y206{bottom:488.973000px;}
.y1d3{bottom:489.279000px;}
.y167{bottom:489.579000px;}
.yd4{bottom:490.063500px;}
.y2{bottom:490.851000px;}
.y8a{bottom:490.930500px;}
.y62{bottom:492.454500px;}
.yab{bottom:494.412000px;}
.yf3{bottom:506.193000px;}
.y11f{bottom:507.741000px;}
.y205{bottom:508.123500px;}
.y31{bottom:508.246500px;}
.y14a{bottom:508.281000px;}
.y1d2{bottom:508.777500px;}
.y166{bottom:510.471000px;}
.yd3{bottom:510.955500px;}
.y89{bottom:511.822500px;}
.y61{bottom:513.346500px;}
.y1{bottom:514.716000px;}
.yaa{bottom:515.304000px;}
.y17a{bottom:516.424500px;}
.yf2{bottom:527.085000px;}
.y204{bottom:527.274000px;}
.y1d1{bottom:528.276000px;}
.y11e{bottom:528.633000px;}
.y30{bottom:529.138500px;}
.y149{bottom:529.173000px;}
.y165{bottom:531.361500px;}
.yd2{bottom:531.846000px;}
.y88{bottom:532.713000px;}
.y60{bottom:534.237000px;}
.ya9{bottom:536.194500px;}
.y203{bottom:546.424500px;}
.y1d0{bottom:547.774500px;}
.yf1{bottom:547.975500px;}
.y11d{bottom:549.523500px;}
.y2f{bottom:550.030500px;}
.y148{bottom:550.065000px;}
.y164{bottom:552.253500px;}
.y87{bottom:553.605000px;}
.y5f{bottom:555.129000px;}
.ya8{bottom:557.086500px;}
.y21b{bottom:563.833500px;}
.y202{bottom:565.575000px;}
.y1cf{bottom:567.274500px;}
.yd1{bottom:567.474000px;}
.yf0{bottom:568.867500px;}
.y11c{bottom:570.415500px;}
.y2e{bottom:570.921000px;}
.y147{bottom:570.955500px;}
.y163{bottom:573.145500px;}
.y86{bottom:574.497000px;}
.y5e{bottom:576.021000px;}
.ya7{bottom:577.978500px;}
.y21a{bottom:582.984000px;}
.y201{bottom:584.725500px;}
.y1ce{bottom:586.773000px;}
.yef{bottom:589.759500px;}
.y11b{bottom:591.307500px;}
.y2d{bottom:591.813000px;}
.y146{bottom:591.847500px;}
.y162{bottom:594.036000px;}
.y5d{bottom:596.913000px;}
.ya6{bottom:598.870500px;}
.y219{bottom:602.134500px;}
.y85{bottom:602.860500px;}
.y200{bottom:603.876000px;}
.y1cd{bottom:606.271500px;}
.yee{bottom:610.650000px;}
.y11a{bottom:612.198000px;}
.y2c{bottom:612.705000px;}
.y145{bottom:612.739500px;}
.y161{bottom:614.928000px;}
.y5c{bottom:617.803500px;}
.ya5{bottom:619.761000px;}
.y1ff{bottom:623.026500px;}
.y84{bottom:623.751000px;}
.y1cc{bottom:625.770000px;}
.yed{bottom:631.542000px;}
.y119{bottom:633.090000px;}
.y2b{bottom:633.597000px;}
.y144{bottom:633.631500px;}
.y5b{bottom:638.695500px;}
.ya4{bottom:640.653000px;}
.y1fe{bottom:642.177000px;}
.y194{bottom:644.538000px;}
.y1cb{bottom:645.268500px;}
.y160{bottom:650.556000px;}
.y83{bottom:652.114500px;}
.yec{bottom:652.434000px;}
.y118{bottom:653.982000px;}
.y2a{bottom:654.487500px;}
.y143{bottom:654.522000px;}
.y5a{bottom:659.587500px;}
.y1fd{bottom:661.327500px;}
.ya3{bottom:661.545000px;}
.y1ca{bottom:664.767000px;}
.y193{bottom:665.430000px;}
.y82{bottom:673.006500px;}
.yeb{bottom:673.324500px;}
.y117{bottom:674.874000px;}
.y29{bottom:675.379500px;}
.y142{bottom:675.414000px;}
.y1a1{bottom:677.445000px;}
.y59{bottom:680.478000px;}
.ya2{bottom:682.435500px;}
.y1c9{bottom:684.265500px;}
.y192{bottom:686.322000px;}
.y81{bottom:693.898500px;}
.yea{bottom:694.216500px;}
.y116{bottom:695.764500px;}
.y28{bottom:696.271500px;}
.y141{bottom:696.306000px;}
.y1a0{bottom:698.337000px;}
.y1fc{bottom:699.628500px;}
.y58{bottom:701.370000px;}
.ya1{bottom:703.327500px;}
.y1c8{bottom:703.765500px;}
.y191{bottom:707.214000px;}
.y80{bottom:714.789000px;}
.ye9{bottom:715.108500px;}
.y115{bottom:716.656500px;}
.y27{bottom:717.162000px;}
.y140{bottom:717.196500px;}
.y1fb{bottom:718.779000px;}
.y19f{bottom:719.229000px;}
.y57{bottom:722.262000px;}
.y1c7{bottom:723.264000px;}
.ya0{bottom:724.219500px;}
.y190{bottom:728.104500px;}
.y7f{bottom:735.681000px;}
.y114{bottom:737.548500px;}
.y1fa{bottom:737.929500px;}
.y13f{bottom:738.088500px;}
.y19e{bottom:740.119500px;}
.y1c6{bottom:742.762500px;}
.y56{bottom:743.152500px;}
.y9f{bottom:745.110000px;}
.y26{bottom:747.021000px;}
.y18f{bottom:748.996500px;}
.ye6{bottom:749.593500px;}
.ye8{bottom:750.736500px;}
.y7e{bottom:756.573000px;}
.y1f9{bottom:757.081500px;}
.y13e{bottom:758.980500px;}
.y19d{bottom:761.011500px;}
.y1c5{bottom:762.261000px;}
.y113{bottom:762.922500px;}
.y55{bottom:764.044500px;}
.y9e{bottom:766.002000px;}
.y1f8{bottom:776.232000px;}
.y7d{bottom:777.463500px;}
.y13d{bottom:779.871000px;}
.y1c4{bottom:781.759500px;}
.y19c{bottom:781.903500px;}
.y54{bottom:784.936500px;}
.y9d{bottom:786.894000px;}
.y25{bottom:787.039500px;}
.y112{bottom:795.069000px;}
.y1f7{bottom:795.382500px;}
.y18e{bottom:796.969500px;}
.y7c{bottom:798.355500px;}
.y13c{bottom:800.763000px;}
.y1c3{bottom:801.258000px;}
.y19b{bottom:802.794000px;}
.y53{bottom:805.827000px;}
.y24{bottom:807.519000px;}
.y9c{bottom:807.784500px;}
.y111{bottom:814.302000px;}
.y1f6{bottom:814.533000px;}
.y18d{bottom:814.902000px;}
.y7b{bottom:819.247500px;}
.y1c2{bottom:820.756500px;}
.y23{bottom:823.659000px;}
.y13b{bottom:826.137000px;}
.y52{bottom:826.719000px;}
.y10b{bottom:828.676500px;}
.y18c{bottom:832.834500px;}
.y9b{bottom:833.160000px;}
.y1f5{bottom:833.683500px;}
.y22{bottom:835.459500px;}
.y7a{bottom:840.139500px;}
.y1c1{bottom:840.256500px;}
.y51{bottom:847.611000px;}
.y10a{bottom:849.568500px;}
.y13a{bottom:850.569000px;}
.y18b{bottom:850.767000px;}
.y1f4{bottom:852.834000px;}
.y179{bottom:854.052000px;}
.y21{bottom:855.937500px;}
.y79{bottom:861.030000px;}
.y20{bottom:867.738000px;}
.y50{bottom:868.503000px;}
.y18a{bottom:868.699500px;}
.y109{bottom:870.460500px;}
.y1f3{bottom:871.984500px;}
.y1c0{bottom:874.897500px;}
.y78{bottom:881.922000px;}
.y1f{bottom:883.878000px;}
.y189{bottom:886.632000px;}
.y4f{bottom:889.393500px;}
.y1f2{bottom:891.135000px;}
.y108{bottom:891.351000px;}
.y1bf{bottom:898.879500px;}
.y77{bottom:902.814000px;}
.y1e{bottom:904.357500px;}
.y188{bottom:904.566000px;}
.y4e{bottom:910.285500px;}
.y107{bottom:912.243000px;}
.y187{bottom:922.498500px;}
.y76{bottom:923.704500px;}
.y1f1{bottom:929.436000px;}
.y4d{bottom:931.177500px;}
.y106{bottom:933.135000px;}
.y1be{bottom:937.704000px;}
.y186{bottom:940.431000px;}
.y75{bottom:944.596500px;}
.y1f0{bottom:948.586500px;}
.y1d{bottom:949.033500px;}
.y4c{bottom:952.068000px;}
.y138{bottom:954.025500px;}
.y1bd{bottom:957.202500px;}
.y105{bottom:958.509000px;}
.y185{bottom:965.865000px;}
.y1ef{bottom:967.737000px;}
.y1c{bottom:969.925500px;}
.y4b{bottom:972.960000px;}
.y137{bottom:974.917500px;}
.y1bc{bottom:976.702500px;}
.y1ee{bottom:986.887500px;}
.y15f{bottom:989.368500px;}
.y4a{bottom:993.852000px;}
.y136{bottom:995.809500px;}
.y1bb{bottom:996.201000px;}
.y184{bottom:998.530500px;}
.y1ed{bottom:1006.038000px;}
.y1b{bottom:1008.748500px;}
.y15e{bottom:1010.260500px;}
.y49{bottom:1014.742500px;}
.y1ba{bottom:1015.699500px;}
.y135{bottom:1016.700000px;}
.y1ec{bottom:1025.188500px;}
.yd0{bottom:1031.151000px;}
.y1b9{bottom:1035.198000px;}
.y48{bottom:1035.634500px;}
.y134{bottom:1037.592000px;}
.y1a{bottom:1040.086500px;}
.y1eb{bottom:1044.339000px;}
.ycf{bottom:1052.043000px;}
.y47{bottom:1056.526500px;}
.y133{bottom:1058.484000px;}
.y1ea{bottom:1063.489500px;}
.y1b8{bottom:1063.663500px;}
.y19{bottom:1071.424500px;}
.yce{bottom:1072.935000px;}
.y46{bottom:1077.417000px;}
.y1e9{bottom:1082.640000px;}
.y1b7{bottom:1083.162000px;}
.y132{bottom:1083.858000px;}
.ycd{bottom:1093.825500px;}
.y45{bottom:1098.309000px;}
.y1e8{bottom:1101.790500px;}
.y18{bottom:1102.761000px;}
.y1b6{bottom:1111.627500px;}
.ycc{bottom:1114.717500px;}
.y44{bottom:1119.201000px;}
.y1e7{bottom:1120.941000px;}
.y43{bottom:1140.091500px;}
.y42{bottom:1200.196500px;}
.he{height:16.817382px;}
.h7{height:32.565965px;}
.h2{height:37.993262px;}
.h3{height:38.286162px;}
.h8{height:43.421105px;}
.h9{height:43.755849px;}
.h4{height:43.815515px;}
.hf{height:48.848947px;}
.hd{height:49.225536px;}
.hb{height:54.276245px;}
.ha{height:54.694674px;}
.h6{height:63.264084px;}
.hc{height:65.634048px;}
.h5{height:98.451072px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x4c{left:85.848000px;}
.x45{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x48{left:258.556500px;}
.x3{left:269.914500px;}
.x5{left:281.479500px;}
.x23{left:301.159500px;}
.x24{left:316.102500px;}
.x49{left:324.607500px;}
.x25{left:330.205500px;}
.x1a{left:332.197500px;}
.x3c{left:335.485500px;}
.x26{left:345.150000px;}
.x1b{left:347.142000px;}
.x27{left:348.961500px;}
.x1c{left:350.866500px;}
.xa{left:353.940000px;}
.x33{left:359.257500px;}
.xb{left:361.411500px;}
.x28{left:363.904500px;}
.x1d{left:365.811000px;}
.x4b{left:368.826000px;}
.x34{left:374.200500px;}
.x4a{left:376.948500px;}
.x44{left:389.940000px;}
.x3d{left:427.899000px;}
.x3e{left:440.191500px;}
.x2b{left:469.891500px;}
.x2c{left:484.834500px;}
.x18{left:495.054000px;}
.x35{left:497.844000px;}
.x19{left:509.997000px;}
.x36{left:512.788500px;}
.x8{left:527.977500px;}
.x9{left:535.449000px;}
.x46{left:569.490000px;}
.x47{left:584.434500px;}
.xc{left:587.142000px;}
.xd{left:594.615000px;}
.x10{left:596.058000px;}
.xe{left:598.324500px;}
.x11{left:603.529500px;}
.xf{left:605.796000px;}
.x6{left:607.723500px;}
.x1e{left:610.782000px;}
.x39{left:612.301500px;}
.x7{left:615.195000px;}
.x14{left:617.679000px;}
.x29{left:623.853000px;}
.x3a{left:627.246000px;}
.x2d{left:628.609500px;}
.x37{left:630.027000px;}
.x15{left:632.622000px;}
.x2a{left:638.796000px;}
.x2e{left:643.554000px;}
.x38{left:644.970000px;}
.x3b{left:657.582000px;}
.x31{left:660.201000px;}
.x32{left:675.145500px;}
.x12{left:677.217000px;}
.x13{left:684.690000px;}
.x41{left:688.890000px;}
.x43{left:699.478500px;}
.x2f{left:701.421000px;}
.x42{left:703.833000px;}
.x21{left:707.574000px;}
.x30{left:716.364000px;}
.x22{left:722.517000px;}
.x3f{left:753.151500px;}
.x40{left:768.094500px;}
.x1f{left:781.599000px;}
.x20{left:796.543500px;}
.x16{left:817.881000px;}
.x17{left:832.825500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001007pt;}
.lsa{letter-spacing:0.001552pt;}
.lsb{letter-spacing:0.002825pt;}
.ls4{letter-spacing:10.626533pt;}
.lsd{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.959467pt;}
.lsc{letter-spacing:12.911530pt;}
.ls6{letter-spacing:12.964663pt;}
.ls8{letter-spacing:13.177199pt;}
.ls7{letter-spacing:13.336601pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ws2c{word-spacing:-13.283467pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws38{word-spacing:-2.922363pt;}
.ws7a{word-spacing:-2.762961pt;}
.ws73{word-spacing:-2.656693pt;}
.ws71{word-spacing:-2.603559pt;}
.ws5e{word-spacing:-2.550426pt;}
.ws7c{word-spacing:-2.497292pt;}
.ws82{word-spacing:-2.337890pt;}
.ws44{word-spacing:-2.178489pt;}
.wsa9{word-spacing:-2.151936pt;}
.ws99{word-spacing:-2.072221pt;}
.ws59{word-spacing:-1.965953pt;}
.ws21{word-spacing:-1.912819pt;}
.wsa3{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws1b{word-spacing:-1.806551pt;}
.ws40{word-spacing:-1.753418pt;}
.ws51{word-spacing:-1.700284pt;}
.wsae{word-spacing:-1.673728pt;}
.ws52{word-spacing:-1.647150pt;}
.ws55{word-spacing:-1.594016pt;}
.wsdb{word-spacing:-1.530266pt;}
.ws80{word-spacing:-1.487748pt;}
.ws4a{word-spacing:-1.381481pt;}
.ws69{word-spacing:-1.275213pt;}
.ws53{word-spacing:-1.222079pt;}
.ws5d{word-spacing:-1.168945pt;}
.wse0{word-spacing:-1.147699pt;}
.ws8e{word-spacing:-1.062677pt;}
.ws67{word-spacing:-1.009543pt;}
.ws3f{word-spacing:-0.956410pt;}
.ws4b{word-spacing:-0.903276pt;}
.ws5c{word-spacing:-0.850142pt;}
.ws87{word-spacing:-0.797008pt;}
.ws25{word-spacing:-0.743874pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws12{word-spacing:-0.637606pt;}
.ws6f{word-spacing:-0.584473pt;}
.ws10{word-spacing:-0.478205pt;}
.ws70{word-spacing:-0.425071pt;}
.ws27{word-spacing:-0.371937pt;}
.wsc8{word-spacing:-0.334746pt;}
.ws57{word-spacing:-0.318803pt;}
.wsd1{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.wsd4{word-spacing:-0.239104pt;}
.wsb{word-spacing:-0.212535pt;}
.wsb7{word-spacing:-0.191283pt;}
.ws13{word-spacing:-0.159402pt;}
.wsc9{word-spacing:-0.143462pt;}
.ws16{word-spacing:-0.106268pt;}
.wsb2{word-spacing:-0.095642pt;}
.ws23{word-spacing:-0.053134pt;}
.ws9c{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws8{word-spacing:-0.003155pt;}
.ws6{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.003200pt;}
.wsb0{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.wsde{word-spacing:0.095642pt;}
.ws11{word-spacing:0.106268pt;}
.wsc4{word-spacing:0.143462pt;}
.ws15{word-spacing:0.159402pt;}
.wsd2{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.wsbb{word-spacing:0.239104pt;}
.ws2d{word-spacing:0.265669pt;}
.wsba{word-spacing:0.286925pt;}
.wsf{word-spacing:0.318803pt;}
.ws39{word-spacing:0.371937pt;}
.ws5{word-spacing:0.375335pt;}
.wsb6{word-spacing:0.382566pt;}
.ws58{word-spacing:0.425071pt;}
.ws7b{word-spacing:0.478205pt;}
.wsb4{word-spacing:0.478208pt;}
.ws7e{word-spacing:0.526029pt;}
.ws18{word-spacing:0.531339pt;}
.ws31{word-spacing:0.637606pt;}
.wsda{word-spacing:0.669491pt;}
.ws95{word-spacing:0.690740pt;}
.wsc5{word-spacing:0.717312pt;}
.ws1d{word-spacing:0.743874pt;}
.wscd{word-spacing:0.765133pt;}
.ws30{word-spacing:0.797008pt;}
.ws14{word-spacing:0.850142pt;}
.ws9d{word-spacing:0.908595pt;}
.ws88{word-spacing:0.956410pt;}
.wscb{word-spacing:0.956416pt;}
.ws60{word-spacing:1.009543pt;}
.ws5a{word-spacing:1.062677pt;}
.wsca{word-spacing:1.099878pt;}
.ws6a{word-spacing:1.168945pt;}
.wsd0{word-spacing:1.195520pt;}
.wsa2{word-spacing:1.222079pt;}
.ws76{word-spacing:1.275213pt;}
.ws28{word-spacing:1.328347pt;}
.wse7{word-spacing:1.338982pt;}
.ws37{word-spacing:1.381481pt;}
.ws29{word-spacing:1.434614pt;}
.wsaa{word-spacing:1.487748pt;}
.ws32{word-spacing:1.540882pt;}
.ws78{word-spacing:1.594016pt;}
.wsdf{word-spacing:1.625907pt;}
.ws90{word-spacing:1.647150pt;}
.ws42{word-spacing:1.700284pt;}
.ws6b{word-spacing:1.753418pt;}
.wsbc{word-spacing:1.769370pt;}
.ws85{word-spacing:1.806551pt;}
.wsc0{word-spacing:1.817190pt;}
.ws41{word-spacing:1.859685pt;}
.ws45{word-spacing:1.912819pt;}
.wsc2{word-spacing:1.960653pt;}
.ws68{word-spacing:1.965953pt;}
.ws91{word-spacing:2.019087pt;}
.ws43{word-spacing:2.072221pt;}
.ws6d{word-spacing:2.125355pt;}
.wse4{word-spacing:2.151936pt;}
.ws26{word-spacing:2.178489pt;}
.wse6{word-spacing:2.199757pt;}
.wsc{word-spacing:2.231622pt;}
.ws84{word-spacing:2.284756pt;}
.wsce{word-spacing:2.295398pt;}
.ws48{word-spacing:2.337890pt;}
.ws4d{word-spacing:2.391024pt;}
.ws49{word-spacing:2.444158pt;}
.ws89{word-spacing:2.497292pt;}
.wsd8{word-spacing:2.534502pt;}
.wsa{word-spacing:2.550432pt;}
.wsc3{word-spacing:2.582323pt;}
.wsab{word-spacing:2.656693pt;}
.ws7d{word-spacing:2.762961pt;}
.wsaf{word-spacing:2.773606pt;}
.wsb1{word-spacing:2.793804pt;}
.ws3c{word-spacing:2.816095pt;}
.wsb3{word-spacing:2.821427pt;}
.ws63{word-spacing:2.869229pt;}
.wsc7{word-spacing:2.869248pt;}
.ws97{word-spacing:2.922363pt;}
.ws2f{word-spacing:2.975497pt;}
.ws75{word-spacing:3.028630pt;}
.ws2e{word-spacing:3.081764pt;}
.wse9{word-spacing:3.108352pt;}
.ws2a{word-spacing:3.134898pt;}
.wsd9{word-spacing:3.156173pt;}
.ws4f{word-spacing:3.188032pt;}
.ws50{word-spacing:3.294300pt;}
.ws4e{word-spacing:3.347434pt;}
.ws6e{word-spacing:3.453701pt;}
.ws74{word-spacing:3.506835pt;}
.ws8f{word-spacing:3.719371pt;}
.ws86{word-spacing:3.772505pt;}
.ws47{word-spacing:3.825638pt;}
.ws19{word-spacing:3.825664pt;}
.ws98{word-spacing:3.985040pt;}
.ws36{word-spacing:4.038174pt;}
.ws34{word-spacing:4.091308pt;}
.ws8a{word-spacing:4.144442pt;}
.ws81{word-spacing:4.197575pt;}
.ws17{word-spacing:4.401102pt;}
.wsad{word-spacing:4.410111pt;}
.wse2{word-spacing:4.447334pt;}
.ws66{word-spacing:4.463245pt;}
.ws77{word-spacing:4.516379pt;}
.ws83{word-spacing:4.622646pt;}
.ws3d{word-spacing:4.675780pt;}
.ws33{word-spacing:4.888316pt;}
.ws46{word-spacing:4.941450pt;}
.ws61{word-spacing:4.994583pt;}
.ws1a{word-spacing:5.047717pt;}
.ws72{word-spacing:5.153985pt;}
.ws54{word-spacing:5.207119pt;}
.ws96{word-spacing:5.260253pt;}
.wsb9{word-spacing:5.260288pt;}
.ws8c{word-spacing:5.313387pt;}
.ws2b{word-spacing:5.366521pt;}
.ws93{word-spacing:5.472788pt;}
.ws6c{word-spacing:5.525922pt;}
.ws1c{word-spacing:5.579056pt;}
.ws5f{word-spacing:5.632190pt;}
.wsc6{word-spacing:5.642854pt;}
.ws3a{word-spacing:5.791591pt;}
.wsa4{word-spacing:5.897859pt;}
.ws56{word-spacing:6.004127pt;}
.ws94{word-spacing:6.110395pt;}
.ws35{word-spacing:6.163529pt;}
.wsb5{word-spacing:6.647091pt;}
.wsd{word-spacing:6.748001pt;}
.ws65{word-spacing:6.801135pt;}
.wsac{word-spacing:6.907403pt;}
.ws64{word-spacing:6.960537pt;}
.ws8d{word-spacing:7.119938pt;}
.ws3b{word-spacing:7.279340pt;}
.ws2{word-spacing:7.397103pt;}
.ws79{word-spacing:7.438741pt;}
.ws92{word-spacing:7.810678pt;}
.wsdc{word-spacing:8.121745pt;}
.wsd5{word-spacing:8.124467pt;}
.wsbe{word-spacing:8.125227pt;}
.ws4c{word-spacing:8.607686pt;}
.ws8b{word-spacing:10.201702pt;}
.ws62{word-spacing:10.520506pt;}
.ws1e{word-spacing:10.583859pt;}
.wsd3{word-spacing:11.859558pt;}
.wsbd{word-spacing:11.901414pt;}
.wsbf{word-spacing:11.901850pt;}
.wsdd{word-spacing:11.904171pt;}
.wsd6{word-spacing:11.907379pt;}
.wscc{word-spacing:12.459455pt;}
.wse5{word-spacing:12.672512pt;}
.ws3e{word-spacing:13.230333pt;}
.wse8{word-spacing:13.246362pt;}
.wscf{word-spacing:14.772062pt;}
.wse3{word-spacing:14.774409pt;}
.wsc1{word-spacing:14.776627pt;}
.wse1{word-spacing:16.354714pt;}
.ws1{word-spacing:19.715148pt;}
.ws9{word-spacing:40.941867pt;}
.wsb8{word-spacing:155.226317pt;}
.wsa1{word-spacing:164.396183pt;}
.wsa0{word-spacing:190.963117pt;}
.ws9f{word-spacing:204.246583pt;}
.ws9e{word-spacing:217.530050pt;}
.wsa6{word-spacing:854.073773pt;}
.wsa8{word-spacing:861.459380pt;}
.wsa5{word-spacing:885.369620pt;}
.wsa7{word-spacing:890.311070pt;}
.ws9a{word-spacing:957.667140pt;}
.ws9b{word-spacing:959.005807pt;}
._4{margin-left:-6.694912pt;}
._7{margin-left:-5.154008pt;}
._42{margin-left:-4.255842pt;}
._1{margin-left:-3.347424pt;}
._2{margin-left:-1.859680pt;}
._8{margin-left:-0.956410pt;}
._5{width:2.653371pt;}
._0{width:9.670336pt;}
._1b{width:11.689501pt;}
._17{width:12.805257pt;}
._18{width:13.921118pt;}
._b{width:14.824343pt;}
._11{width:15.780753pt;}
._a{width:17.002832pt;}
._12{width:18.118649pt;}
._3{width:19.336405pt;}
._10{width:20.987877pt;}
._9{width:21.891153pt;}
._f{width:23.432035pt;}
._1d{width:24.388445pt;}
._13{width:26.194996pt;}
._16{width:28.107810pt;}
._1a{width:29.064225pt;}
._19{width:30.286299pt;}
._14{width:31.561517pt;}
._c{width:33.686871pt;}
._15{width:35.440289pt;}
._1f{width:37.512510pt;}
._1e{width:38.415786pt;}
._6{width:48.381897pt;}
._38{width:63.745126pt;}
._36{width:75.413402pt;}
._20{width:81.082281pt;}
._3b{width:98.223923pt;}
._34{width:100.088934pt;}
._41{width:113.717862pt;}
._3e{width:116.486138pt;}
._29{width:134.747514pt;}
._3f{width:137.819546pt;}
._3a{width:142.075597pt;}
._33{width:144.179712pt;}
._40{width:146.905498pt;}
._35{width:150.013850pt;}
._3c{width:157.091328pt;}
._22{width:160.039206pt;}
._3d{width:161.203917pt;}
._37{width:170.289869pt;}
._39{width:175.550157pt;}
._23{width:177.679650pt;}
._2c{width:190.963117pt;}
._2b{width:197.286052pt;}
._2a{width:204.246583pt;}
._2e{width:217.583184pt;}
._24{width:219.017798pt;}
._27{width:231.716793pt;}
._26{width:312.905341pt;}
._28{width:327.464026pt;}
._2d{width:344.254322pt;}
._21{width:377.622390pt;}
._2f{width:423.264382pt;}
._25{width:458.067065pt;}
._32{width:764.011869pt;}
._30{width:775.329405pt;}
._31{width:783.352596pt;}
._d{width:1485.525270pt;}
._1c{width:2193.861270pt;}
._e{width:2215.114604pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:40.818667pt;}
.y17{bottom:89.120000pt;}
.ycb{bottom:90.189333pt;}
.y19a{bottom:93.996000pt;}
.y218{bottom:94.188000pt;}
.ye7{bottom:95.836000pt;}
.y15d{bottom:98.970667pt;}
.y178{bottom:99.561333pt;}
.ybc{bottom:100.710667pt;}
.y40{bottom:101.456000pt;}
.y1ad{bottom:103.234667pt;}
.y74{bottom:103.473333pt;}
.y16{bottom:105.020000pt;}
.y1e6{bottom:105.146667pt;}
.y139{bottom:105.213333pt;}
.y1b5{bottom:108.037333pt;}
.yca{bottom:108.760000pt;}
.y217{bottom:111.210667pt;}
.y183{bottom:112.257333pt;}
.y199{bottom:112.566667pt;}
.y9a{bottom:116.186667pt;}
.y131{bottom:117.061333pt;}
.y104{bottom:117.425333pt;}
.y15c{bottom:117.541333pt;}
.y177{bottom:118.132000pt;}
.ybb{bottom:119.281333pt;}
.ye5{bottom:119.917333pt;}
.y3f{bottom:120.026667pt;}
.y15{bottom:120.920000pt;}
.y1ac{bottom:121.804000pt;}
.y73{bottom:122.042667pt;}
.y1e5{bottom:122.169333pt;}
.y1e4{bottom:122.170667pt;}
.y110{bottom:123.782667pt;}
.y1b4{bottom:125.369333pt;}
.yc9{bottom:127.329333pt;}
.y216{bottom:128.233333pt;}
.y182{bottom:130.828000pt;}
.y198{bottom:131.137333pt;}
.y99{bottom:134.756000pt;}
.y130{bottom:135.630667pt;}
.y103{bottom:135.994667pt;}
.y15b{bottom:136.112000pt;}
.y176{bottom:136.702667pt;}
.y14{bottom:136.820000pt;}
.yba{bottom:137.852000pt;}
.ye4{bottom:138.488000pt;}
.y3e{bottom:138.596000pt;}
.y1e3{bottom:139.193333pt;}
.y1ab{bottom:140.374667pt;}
.y72{bottom:140.613333pt;}
.y10f{bottom:142.353333pt;}
.y1b3{bottom:142.701333pt;}
.y215{bottom:145.256000pt;}
.y181{bottom:149.398667pt;}
.y197{bottom:149.706667pt;}
.yc8{bottom:152.541333pt;}
.y13{bottom:152.721333pt;}
.y98{bottom:153.326667pt;}
.y12f{bottom:154.201333pt;}
.y102{bottom:154.565333pt;}
.y15a{bottom:154.681333pt;}
.y175{bottom:155.272000pt;}
.y1e2{bottom:156.216000pt;}
.ye3{bottom:157.058667pt;}
.y3d{bottom:157.166667pt;}
.y1aa{bottom:158.945333pt;}
.y71{bottom:159.184000pt;}
.yb9{bottom:160.406667pt;}
.y10e{bottom:160.924000pt;}
.y214{bottom:162.278667pt;}
.y180{bottom:167.968000pt;}
.y1b2{bottom:168.004000pt;}
.y12{bottom:168.621333pt;}
.yc7{bottom:171.112000pt;}
.y97{bottom:171.897333pt;}
.y196{bottom:172.262667pt;}
.y12e{bottom:172.772000pt;}
.y101{bottom:173.136000pt;}
.y1e1{bottom:173.238667pt;}
.y159{bottom:173.252000pt;}
.y174{bottom:173.842667pt;}
.ye2{bottom:175.628000pt;}
.y3c{bottom:175.737333pt;}
.y1a9{bottom:177.516000pt;}
.y70{bottom:177.753333pt;}
.y213{bottom:179.301333pt;}
.y10d{bottom:179.493333pt;}
.yb8{bottom:182.124000pt;}
.y11{bottom:184.521333pt;}
.y1b1{bottom:185.336000pt;}
.y17f{bottom:186.538667pt;}
.yc6{bottom:189.682667pt;}
.y1e0{bottom:190.261333pt;}
.y96{bottom:190.466667pt;}
.y12d{bottom:191.341333pt;}
.y100{bottom:191.705333pt;}
.y158{bottom:191.822667pt;}
.y173{bottom:192.413333pt;}
.ye1{bottom:194.198667pt;}
.y3b{bottom:194.306667pt;}
.y1a8{bottom:196.085333pt;}
.y6f{bottom:196.324000pt;}
.y10c{bottom:198.064000pt;}
.y10{bottom:200.422667pt;}
.y195{bottom:200.836000pt;}
.y1b0{bottom:202.668000pt;}
.y1df{bottom:207.284000pt;}
.yc5{bottom:208.252000pt;}
.y95{bottom:209.037333pt;}
.y12c{bottom:209.912000pt;}
.yff{bottom:210.276000pt;}
.y157{bottom:210.392000pt;}
.y172{bottom:210.982667pt;}
.ye0{bottom:212.769333pt;}
.y3a{bottom:212.877333pt;}
.y212{bottom:213.346667pt;}
.y1a7{bottom:214.656000pt;}
.y6e{bottom:214.894667pt;}
.yb7{bottom:216.634667pt;}
.y17e{bottom:218.208000pt;}
.y1af{bottom:220.000000pt;}
.yf{bottom:224.293333pt;}
.y1de{bottom:224.306667pt;}
.yc4{bottom:226.822667pt;}
.y94{bottom:227.608000pt;}
.y12b{bottom:228.482667pt;}
.yfe{bottom:228.846667pt;}
.y156{bottom:228.962667pt;}
.y171{bottom:229.553333pt;}
.y211{bottom:230.369333pt;}
.ydf{bottom:231.338667pt;}
.y1a6{bottom:233.226667pt;}
.y6d{bottom:233.464000pt;}
.yb6{bottom:235.205333pt;}
.y17d{bottom:235.304000pt;}
.y39{bottom:235.433333pt;}
.y1ae{bottom:237.333333pt;}
.ye{bottom:240.193333pt;}
.y1dd{bottom:241.329333pt;}
.yc3{bottom:245.393333pt;}
.y93{bottom:246.177333pt;}
.y12a{bottom:247.052000pt;}
.y210{bottom:247.392000pt;}
.yfd{bottom:247.416000pt;}
.y155{bottom:247.533333pt;}
.y170{bottom:248.124000pt;}
.yde{bottom:249.909333pt;}
.y1a5{bottom:251.796000pt;}
.y6c{bottom:252.034667pt;}
.y17c{bottom:252.400000pt;}
.yb5{bottom:253.774667pt;}
.yd{bottom:256.093333pt;}
.y1dc{bottom:258.352000pt;}
.yc2{bottom:263.964000pt;}
.y20f{bottom:264.414667pt;}
.y129{bottom:265.622667pt;}
.yfc{bottom:265.986667pt;}
.y154{bottom:266.102667pt;}
.y16f{bottom:266.693333pt;}
.ydd{bottom:268.480000pt;}
.y92{bottom:268.733333pt;}
.y6b{bottom:270.605333pt;}
.yc{bottom:271.994667pt;}
.yb4{bottom:272.345333pt;}
.y1a4{bottom:274.352000pt;}
.y1db{bottom:275.374667pt;}
.y17b{bottom:277.465333pt;}
.y20e{bottom:281.437333pt;}
.yc1{bottom:282.533333pt;}
.y128{bottom:284.193333pt;}
.yfb{bottom:284.557333pt;}
.y153{bottom:284.673333pt;}
.y16e{bottom:285.264000pt;}
.ydc{bottom:287.050667pt;}
.yb{bottom:287.894667pt;}
.y6a{bottom:289.176000pt;}
.y91{bottom:290.450667pt;}
.yb3{bottom:290.916000pt;}
.y1da{bottom:292.397333pt;}
.y20d{bottom:298.460000pt;}
.yc0{bottom:301.104000pt;}
.y127{bottom:302.762667pt;}
.yfa{bottom:303.126667pt;}
.y152{bottom:303.244000pt;}
.ya{bottom:303.794667pt;}
.y16d{bottom:303.834667pt;}
.ydb{bottom:305.620000pt;}
.y38{bottom:305.842667pt;}
.y1a3{bottom:306.021333pt;}
.y69{bottom:307.745333pt;}
.y1d9{bottom:309.420000pt;}
.yb2{bottom:309.485333pt;}
.y20c{bottom:315.482667pt;}
.ybf{bottom:319.674667pt;}
.y9{bottom:319.696000pt;}
.y126{bottom:321.333333pt;}
.yf9{bottom:321.697333pt;}
.y151{bottom:321.814667pt;}
.y16c{bottom:322.405333pt;}
.y1a2{bottom:323.117333pt;}
.yda{bottom:324.190667pt;}
.y37{bottom:324.413333pt;}
.y90{bottom:324.961333pt;}
.y68{bottom:326.316000pt;}
.y1d8{bottom:326.442667pt;}
.yb1{bottom:328.056000pt;}
.y20b{bottom:332.506667pt;}
.y8{bottom:335.596000pt;}
.ybe{bottom:338.244000pt;}
.y125{bottom:339.904000pt;}
.yf8{bottom:340.268000pt;}
.y150{bottom:340.384000pt;}
.y16b{bottom:340.974667pt;}
.yd9{bottom:342.761333pt;}
.y8f{bottom:343.530667pt;}
.y67{bottom:344.886667pt;}
.yb0{bottom:346.626667pt;}
.y1d7{bottom:347.450667pt;}
.y20a{bottom:349.529333pt;}
.y7{bottom:351.496000pt;}
.ybd{bottom:356.814667pt;}
.y124{bottom:358.474667pt;}
.yf7{bottom:358.838667pt;}
.y36{bottom:358.924000pt;}
.y14f{bottom:358.954667pt;}
.y16a{bottom:359.545333pt;}
.yd8{bottom:361.330667pt;}
.y8e{bottom:362.101333pt;}
.y66{bottom:363.456000pt;}
.yaf{bottom:365.196000pt;}
.y209{bottom:366.552000pt;}
.y6{bottom:367.397333pt;}
.y123{bottom:377.044000pt;}
.yf6{bottom:377.408000pt;}
.y35{bottom:377.494667pt;}
.y14e{bottom:377.525333pt;}
.y169{bottom:378.116000pt;}
.yd7{bottom:379.901333pt;}
.y8d{bottom:380.672000pt;}
.y65{bottom:382.026667pt;}
.y1d6{bottom:382.918667pt;}
.y208{bottom:383.574667pt;}
.yae{bottom:383.766667pt;}
.y5{bottom:388.610667pt;}
.y122{bottom:395.614667pt;}
.y34{bottom:396.064000pt;}
.y14d{bottom:396.094667pt;}
.yd6{bottom:398.472000pt;}
.y8c{bottom:399.241333pt;}
.yf5{bottom:399.964000pt;}
.y1d5{bottom:400.250667pt;}
.y64{bottom:400.597333pt;}
.y168{bottom:400.670667pt;}
.yad{bottom:402.337333pt;}
.y4{bottom:404.510667pt;}
.y121{bottom:414.185333pt;}
.y33{bottom:414.634667pt;}
.y14c{bottom:414.665333pt;}
.yd5{bottom:417.041333pt;}
.y1d4{bottom:417.582667pt;}
.y207{bottom:417.620000pt;}
.y8b{bottom:417.812000pt;}
.y63{bottom:419.166667pt;}
.y3{bottom:420.412000pt;}
.yac{bottom:420.906667pt;}
.yf4{bottom:431.378667pt;}
.y120{bottom:432.754667pt;}
.y32{bottom:433.205333pt;}
.y14b{bottom:433.236000pt;}
.y206{bottom:434.642667pt;}
.y1d3{bottom:434.914667pt;}
.y167{bottom:435.181333pt;}
.yd4{bottom:435.612000pt;}
.y2{bottom:436.312000pt;}
.y8a{bottom:436.382667pt;}
.y62{bottom:437.737333pt;}
.yab{bottom:439.477333pt;}
.yf3{bottom:449.949333pt;}
.y11f{bottom:451.325333pt;}
.y205{bottom:451.665333pt;}
.y31{bottom:451.774667pt;}
.y14a{bottom:451.805333pt;}
.y1d2{bottom:452.246667pt;}
.y166{bottom:453.752000pt;}
.yd3{bottom:454.182667pt;}
.y89{bottom:454.953333pt;}
.y61{bottom:456.308000pt;}
.y1{bottom:457.525333pt;}
.yaa{bottom:458.048000pt;}
.y17a{bottom:459.044000pt;}
.yf2{bottom:468.520000pt;}
.y204{bottom:468.688000pt;}
.y1d1{bottom:469.578667pt;}
.y11e{bottom:469.896000pt;}
.y30{bottom:470.345333pt;}
.y149{bottom:470.376000pt;}
.y165{bottom:472.321333pt;}
.yd2{bottom:472.752000pt;}
.y88{bottom:473.522667pt;}
.y60{bottom:474.877333pt;}
.ya9{bottom:476.617333pt;}
.y203{bottom:485.710667pt;}
.y1d0{bottom:486.910667pt;}
.yf1{bottom:487.089333pt;}
.y11d{bottom:488.465333pt;}
.y2f{bottom:488.916000pt;}
.y148{bottom:488.946667pt;}
.y164{bottom:490.892000pt;}
.y87{bottom:492.093333pt;}
.y5f{bottom:493.448000pt;}
.ya8{bottom:495.188000pt;}
.y21b{bottom:501.185333pt;}
.y202{bottom:502.733333pt;}
.y1cf{bottom:504.244000pt;}
.yd1{bottom:504.421333pt;}
.yf0{bottom:505.660000pt;}
.y11c{bottom:507.036000pt;}
.y2e{bottom:507.485333pt;}
.y147{bottom:507.516000pt;}
.y163{bottom:509.462667pt;}
.y86{bottom:510.664000pt;}
.y5e{bottom:512.018667pt;}
.ya7{bottom:513.758667pt;}
.y21a{bottom:518.208000pt;}
.y201{bottom:519.756000pt;}
.y1ce{bottom:521.576000pt;}
.yef{bottom:524.230667pt;}
.y11b{bottom:525.606667pt;}
.y2d{bottom:526.056000pt;}
.y146{bottom:526.086667pt;}
.y162{bottom:528.032000pt;}
.y5d{bottom:530.589333pt;}
.ya6{bottom:532.329333pt;}
.y219{bottom:535.230667pt;}
.y85{bottom:535.876000pt;}
.y200{bottom:536.778667pt;}
.y1cd{bottom:538.908000pt;}
.yee{bottom:542.800000pt;}
.y11a{bottom:544.176000pt;}
.y2c{bottom:544.626667pt;}
.y145{bottom:544.657333pt;}
.y161{bottom:546.602667pt;}
.y5c{bottom:549.158667pt;}
.ya5{bottom:550.898667pt;}
.y1ff{bottom:553.801333pt;}
.y84{bottom:554.445333pt;}
.y1cc{bottom:556.240000pt;}
.yed{bottom:561.370667pt;}
.y119{bottom:562.746667pt;}
.y2b{bottom:563.197333pt;}
.y144{bottom:563.228000pt;}
.y5b{bottom:567.729333pt;}
.ya4{bottom:569.469333pt;}
.y1fe{bottom:570.824000pt;}
.y194{bottom:572.922667pt;}
.y1cb{bottom:573.572000pt;}
.y160{bottom:578.272000pt;}
.y83{bottom:579.657333pt;}
.yec{bottom:579.941333pt;}
.y118{bottom:581.317333pt;}
.y2a{bottom:581.766667pt;}
.y143{bottom:581.797333pt;}
.y5a{bottom:586.300000pt;}
.y1fd{bottom:587.846667pt;}
.ya3{bottom:588.040000pt;}
.y1ca{bottom:590.904000pt;}
.y193{bottom:591.493333pt;}
.y82{bottom:598.228000pt;}
.yeb{bottom:598.510667pt;}
.y117{bottom:599.888000pt;}
.y29{bottom:600.337333pt;}
.y142{bottom:600.368000pt;}
.y1a1{bottom:602.173333pt;}
.y59{bottom:604.869333pt;}
.ya2{bottom:606.609333pt;}
.y1c9{bottom:608.236000pt;}
.y192{bottom:610.064000pt;}
.y81{bottom:616.798667pt;}
.yea{bottom:617.081333pt;}
.y116{bottom:618.457333pt;}
.y28{bottom:618.908000pt;}
.y141{bottom:618.938667pt;}
.y1a0{bottom:620.744000pt;}
.y1fc{bottom:621.892000pt;}
.y58{bottom:623.440000pt;}
.ya1{bottom:625.180000pt;}
.y1c8{bottom:625.569333pt;}
.y191{bottom:628.634667pt;}
.y80{bottom:635.368000pt;}
.ye9{bottom:635.652000pt;}
.y115{bottom:637.028000pt;}
.y27{bottom:637.477333pt;}
.y140{bottom:637.508000pt;}
.y1fb{bottom:638.914667pt;}
.y19f{bottom:639.314667pt;}
.y57{bottom:642.010667pt;}
.y1c7{bottom:642.901333pt;}
.ya0{bottom:643.750667pt;}
.y190{bottom:647.204000pt;}
.y7f{bottom:653.938667pt;}
.y114{bottom:655.598667pt;}
.y1fa{bottom:655.937333pt;}
.y13f{bottom:656.078667pt;}
.y19e{bottom:657.884000pt;}
.y1c6{bottom:660.233333pt;}
.y56{bottom:660.580000pt;}
.y9f{bottom:662.320000pt;}
.y26{bottom:664.018667pt;}
.y18f{bottom:665.774667pt;}
.ye6{bottom:666.305333pt;}
.ye8{bottom:667.321333pt;}
.y7e{bottom:672.509333pt;}
.y1f9{bottom:672.961333pt;}
.y13e{bottom:674.649333pt;}
.y19d{bottom:676.454667pt;}
.y1c5{bottom:677.565333pt;}
.y113{bottom:678.153333pt;}
.y55{bottom:679.150667pt;}
.y9e{bottom:680.890667pt;}
.y1f8{bottom:689.984000pt;}
.y7d{bottom:691.078667pt;}
.y13d{bottom:693.218667pt;}
.y1c4{bottom:694.897333pt;}
.y19c{bottom:695.025333pt;}
.y54{bottom:697.721333pt;}
.y9d{bottom:699.461333pt;}
.y25{bottom:699.590667pt;}
.y112{bottom:706.728000pt;}
.y1f7{bottom:707.006667pt;}
.y18e{bottom:708.417333pt;}
.y7c{bottom:709.649333pt;}
.y13c{bottom:711.789333pt;}
.y1c3{bottom:712.229333pt;}
.y19b{bottom:713.594667pt;}
.y53{bottom:716.290667pt;}
.y24{bottom:717.794667pt;}
.y9c{bottom:718.030667pt;}
.y111{bottom:723.824000pt;}
.y1f6{bottom:724.029333pt;}
.y18d{bottom:724.357333pt;}
.y7b{bottom:728.220000pt;}
.y1c2{bottom:729.561333pt;}
.y23{bottom:732.141333pt;}
.y13b{bottom:734.344000pt;}
.y52{bottom:734.861333pt;}
.y10b{bottom:736.601333pt;}
.y18c{bottom:740.297333pt;}
.y9b{bottom:740.586667pt;}
.y1f5{bottom:741.052000pt;}
.y22{bottom:742.630667pt;}
.y7a{bottom:746.790667pt;}
.y1c1{bottom:746.894667pt;}
.y51{bottom:753.432000pt;}
.y10a{bottom:755.172000pt;}
.y13a{bottom:756.061333pt;}
.y18b{bottom:756.237333pt;}
.y1f4{bottom:758.074667pt;}
.y179{bottom:759.157333pt;}
.y21{bottom:760.833333pt;}
.y79{bottom:765.360000pt;}
.y20{bottom:771.322667pt;}
.y50{bottom:772.002667pt;}
.y18a{bottom:772.177333pt;}
.y109{bottom:773.742667pt;}
.y1f3{bottom:775.097333pt;}
.y1c0{bottom:777.686667pt;}
.y78{bottom:783.930667pt;}
.y1f{bottom:785.669333pt;}
.y189{bottom:788.117333pt;}
.y4f{bottom:790.572000pt;}
.y1f2{bottom:792.120000pt;}
.y108{bottom:792.312000pt;}
.y1bf{bottom:799.004000pt;}
.y77{bottom:802.501333pt;}
.y1e{bottom:803.873333pt;}
.y188{bottom:804.058667pt;}
.y4e{bottom:809.142667pt;}
.y107{bottom:810.882667pt;}
.y187{bottom:819.998667pt;}
.y76{bottom:821.070667pt;}
.y1f1{bottom:826.165333pt;}
.y4d{bottom:827.713333pt;}
.y106{bottom:829.453333pt;}
.y1be{bottom:833.514667pt;}
.y186{bottom:835.938667pt;}
.y75{bottom:839.641333pt;}
.y1f0{bottom:843.188000pt;}
.y1d{bottom:843.585333pt;}
.y4c{bottom:846.282667pt;}
.y138{bottom:848.022667pt;}
.y1bd{bottom:850.846667pt;}
.y105{bottom:852.008000pt;}
.y185{bottom:858.546667pt;}
.y1ef{bottom:860.210667pt;}
.y1c{bottom:862.156000pt;}
.y4b{bottom:864.853333pt;}
.y137{bottom:866.593333pt;}
.y1bc{bottom:868.180000pt;}
.y1ee{bottom:877.233333pt;}
.y15f{bottom:879.438667pt;}
.y4a{bottom:883.424000pt;}
.y136{bottom:885.164000pt;}
.y1bb{bottom:885.512000pt;}
.y184{bottom:887.582667pt;}
.y1ed{bottom:894.256000pt;}
.y1b{bottom:896.665333pt;}
.y15e{bottom:898.009333pt;}
.y49{bottom:901.993333pt;}
.y1ba{bottom:902.844000pt;}
.y135{bottom:903.733333pt;}
.y1ec{bottom:911.278667pt;}
.yd0{bottom:916.578667pt;}
.y1b9{bottom:920.176000pt;}
.y48{bottom:920.564000pt;}
.y134{bottom:922.304000pt;}
.y1a{bottom:924.521333pt;}
.y1eb{bottom:928.301333pt;}
.ycf{bottom:935.149333pt;}
.y47{bottom:939.134667pt;}
.y133{bottom:940.874667pt;}
.y1ea{bottom:945.324000pt;}
.y1b8{bottom:945.478667pt;}
.y19{bottom:952.377333pt;}
.yce{bottom:953.720000pt;}
.y46{bottom:957.704000pt;}
.y1e9{bottom:962.346667pt;}
.y1b7{bottom:962.810667pt;}
.y132{bottom:963.429333pt;}
.ycd{bottom:972.289333pt;}
.y45{bottom:976.274667pt;}
.y1e8{bottom:979.369333pt;}
.y18{bottom:980.232000pt;}
.y1b6{bottom:988.113333pt;}
.ycc{bottom:990.860000pt;}
.y44{bottom:994.845333pt;}
.y1e7{bottom:996.392000pt;}
.y43{bottom:1013.414667pt;}
.y42{bottom:1066.841333pt;}
.he{height:14.948784pt;}
.h7{height:28.947524pt;}
.h2{height:33.771789pt;}
.h3{height:34.032144pt;}
.h8{height:38.596538pt;}
.h9{height:38.894088pt;}
.h4{height:38.947124pt;}
.hf{height:43.421286pt;}
.hd{height:43.756032pt;}
.hb{height:48.245551pt;}
.ha{height:48.617488pt;}
.h6{height:56.234741pt;}
.hc{height:58.341376pt;}
.h5{height:87.512064pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x4c{left:76.309333pt;}
.x45{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x48{left:229.828000pt;}
.x3{left:239.924000pt;}
.x5{left:250.204000pt;}
.x23{left:267.697333pt;}
.x24{left:280.980000pt;}
.x49{left:288.540000pt;}
.x25{left:293.516000pt;}
.x1a{left:295.286667pt;}
.x3c{left:298.209333pt;}
.x26{left:306.800000pt;}
.x1b{left:308.570667pt;}
.x27{left:310.188000pt;}
.x1c{left:311.881333pt;}
.xa{left:314.613333pt;}
.x33{left:319.340000pt;}
.xb{left:321.254667pt;}
.x28{left:323.470667pt;}
.x1d{left:325.165333pt;}
.x4b{left:327.845333pt;}
.x34{left:332.622667pt;}
.x4a{left:335.065333pt;}
.x44{left:346.613333pt;}
.x3d{left:380.354667pt;}
.x3e{left:391.281333pt;}
.x2b{left:417.681333pt;}
.x2c{left:430.964000pt;}
.x18{left:440.048000pt;}
.x35{left:442.528000pt;}
.x19{left:453.330667pt;}
.x36{left:455.812000pt;}
.x8{left:469.313333pt;}
.x9{left:475.954667pt;}
.x46{left:506.213333pt;}
.x47{left:519.497333pt;}
.xc{left:521.904000pt;}
.xd{left:528.546667pt;}
.x10{left:529.829333pt;}
.xe{left:531.844000pt;}
.x11{left:536.470667pt;}
.xf{left:538.485333pt;}
.x6{left:540.198667pt;}
.x1e{left:542.917333pt;}
.x39{left:544.268000pt;}
.x7{left:546.840000pt;}
.x14{left:549.048000pt;}
.x29{left:554.536000pt;}
.x3a{left:557.552000pt;}
.x2d{left:558.764000pt;}
.x37{left:560.024000pt;}
.x15{left:562.330667pt;}
.x2a{left:567.818667pt;}
.x2e{left:572.048000pt;}
.x38{left:573.306667pt;}
.x3b{left:584.517333pt;}
.x31{left:586.845333pt;}
.x32{left:600.129333pt;}
.x12{left:601.970667pt;}
.x13{left:608.613333pt;}
.x41{left:612.346667pt;}
.x43{left:621.758667pt;}
.x2f{left:623.485333pt;}
.x42{left:625.629333pt;}
.x21{left:628.954667pt;}
.x30{left:636.768000pt;}
.x22{left:642.237333pt;}
.x3f{left:669.468000pt;}
.x40{left:682.750667pt;}
.x1f{left:694.754667pt;}
.x20{left:708.038667pt;}
.x16{left:727.005333pt;}
.x17{left:740.289333pt;}
}




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