
    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_55bda23a5ad536540190c593.woff')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_d014bf5b09f25b800372ef58.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7fc6a444ac6142ee76941d34.woff')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_be1fc4a8e8936f16f1db52b3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_50dc363ab2fb8c37c1737ac2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.479000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6b5c864efb89546c759cd7e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c5f1db9a2e76ed56986cb812.woff')format("woff");}.ff7{font-family:ff7;line-height:0.997000;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);}
.m1b{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);}
.m29{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);}
.m18{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);}
.m1f{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);}
.m3{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);}
.m27{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);}
.m23{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);}
.m1{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);}
.m1e{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);}
.ma{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);}
.m2{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);}
.m16{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);}
.m4{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);}
.m19{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);}
.m28{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);}
.m15{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);}
.mf{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);}
.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);}
.m12{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);}
.md{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);}
.m21{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);}
.m8{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);}
.m14{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);}
.mb{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);}
.m7{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);}
.m24{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);}
.m9{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);}
.m25{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);}
.m20{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);}
.m1d{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);}
.mc{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);}
.m1c{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);}
.m10{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);}
.m26{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);}
.m1a{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);}
.m22{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);}
.m11{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:34.710000px;}
.v5{vertical-align:35.868000px;}
.v4{vertical-align:52.800000px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000009px;}
.ls2a{letter-spacing:0.000741px;}
.ls1e{letter-spacing:0.000862px;}
.ls19{letter-spacing:0.002417px;}
.ls8{letter-spacing:0.002483px;}
.ls27{letter-spacing:0.002841px;}
.ls1d{letter-spacing:0.002969px;}
.ls1f{letter-spacing:0.003178px;}
.ls18{letter-spacing:0.004221px;}
.ls28{letter-spacing:0.004800px;}
.lsa{letter-spacing:0.742483px;}
.ls12{letter-spacing:0.748483px;}
.lsb{letter-spacing:2.241986px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.ls4{letter-spacing:11.954850px;}
.ls20{letter-spacing:13.078200px;}
.ls24{letter-spacing:13.350400px;}
.lsf{letter-spacing:13.448170px;}
.ls22{letter-spacing:13.448400px;}
.lse{letter-spacing:13.449754px;}
.ls10{letter-spacing:13.450560px;}
.ls23{letter-spacing:13.454400px;}
.ls26{letter-spacing:13.502110px;}
.ls2c{letter-spacing:13.535264px;}
.ls2f{letter-spacing:13.581012px;}
.ls2e{letter-spacing:13.610884px;}
.ls25{letter-spacing:13.668047px;}
.ls2b{letter-spacing:13.693257px;}
.ls13{letter-spacing:14.585246px;}
.ls29{letter-spacing:14.697459px;}
.ls6{letter-spacing:14.884124px;}
.ls1b{letter-spacing:14.920200px;}
.ls1a{letter-spacing:14.923965px;}
.ls14{letter-spacing:14.943900px;}
.ls9{letter-spacing:14.944200px;}
.ls15{letter-spacing:15.003676px;}
.lsc{letter-spacing:15.691625px;}
.ls2d{letter-spacing:16.044518px;}
.ls21{letter-spacing:17.485694px;}
.lsd{letter-spacing:22.356074px;}
.ls11{letter-spacing:22.535401px;}
.ls17{letter-spacing:24.209118px;}
.ls16{letter-spacing:24.268894px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls7{letter-spacing:373.037279px;}
.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;}
}
.ws59{word-spacing:-14.943900px;}
.ws5f{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6f{word-spacing:-3.347434px;}
.ws2a{word-spacing:-3.048556px;}
.ws30{word-spacing:-2.929004px;}
.ws80{word-spacing:-2.809453px;}
.ws9c{word-spacing:-2.689902px;}
.ws1e{word-spacing:-2.570351px;}
.ws8e{word-spacing:-2.510575px;}
.ws55{word-spacing:-2.331248px;}
.ws8b{word-spacing:-2.271473px;}
.wsd{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws7b{word-spacing:-2.032370px;}
.ws82{word-spacing:-1.972595px;}
.ws2{word-spacing:-1.966612px;}
.wse0{word-spacing:-1.882944px;}
.ws1a{word-spacing:-1.853044px;}
.ws42{word-spacing:-1.793268px;}
.ws43{word-spacing:-1.673717px;}
.ws60{word-spacing:-1.613941px;}
.ws31{word-spacing:-1.554166px;}
.wsa8{word-spacing:-1.506355px;}
.wsc{word-spacing:-1.494390px;}
.ws67{word-spacing:-1.434614px;}
.ws39{word-spacing:-1.315063px;}
.ws97{word-spacing:-1.135736px;}
.ws64{word-spacing:-1.075961px;}
.ws70{word-spacing:-0.896634px;}
.wsa4{word-spacing:-0.860774px;}
.ws96{word-spacing:-0.777083px;}
.ws95{word-spacing:-0.717307px;}
.ws3b{word-spacing:-0.657532px;}
.ws7c{word-spacing:-0.645581px;}
.ws1f{word-spacing:-0.597756px;}
.ws77{word-spacing:-0.537980px;}
.wsa1{word-spacing:-0.484186px;}
.ws27{word-spacing:-0.478205px;}
.wsa2{word-spacing:-0.430387px;}
.ws18{word-spacing:-0.418429px;}
.wsbc{word-spacing:-0.376589px;}
.ws22{word-spacing:-0.358654px;}
.ws29{word-spacing:-0.298878px;}
.ws6c{word-spacing:-0.268992px;}
.ws17{word-spacing:-0.239102px;}
.ws91{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws7e{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.wsa6{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws7f{word-spacing:-0.053798px;}
.wsb7{word-spacing:-0.010224px;}
.wsba{word-spacing:-0.007622px;}
.wsda{word-spacing:-0.007315px;}
.wsc2{word-spacing:-0.005779px;}
.ws1b{word-spacing:-0.005694px;}
.wsb3{word-spacing:-0.004224px;}
.ws23{word-spacing:-0.001643px;}
.wscf{word-spacing:-0.001315px;}
.wsc3{word-spacing:-0.000682px;}
.ws7{word-spacing:0.000000px;}
.wsbb{word-spacing:0.000221px;}
.wsbe{word-spacing:0.033629px;}
.ws7d{word-spacing:0.053798px;}
.ws15{word-spacing:0.059776px;}
.wsd0{word-spacing:0.074323px;}
.ws9{word-spacing:0.095641px;}
.ws92{word-spacing:0.107597px;}
.ws14{word-spacing:0.119551px;}
.wse3{word-spacing:0.138146px;}
.wsa{word-spacing:0.143462px;}
.wsa5{word-spacing:0.161395px;}
.ws12{word-spacing:0.179327px;}
.ws5{word-spacing:0.215194px;}
.wsf{word-spacing:0.239102px;}
.ws6b{word-spacing:0.268992px;}
.ws33{word-spacing:0.298878px;}
.ws6{word-spacing:0.322790px;}
.ws2f{word-spacing:0.358654px;}
.wsc9{word-spacing:0.372953px;}
.wsc1{word-spacing:0.376589px;}
.ws76{word-spacing:0.418429px;}
.ws4{word-spacing:0.422252px;}
.wsdf{word-spacing:0.430387px;}
.wsc0{word-spacing:0.484186px;}
.ws66{word-spacing:0.597756px;}
.wse{word-spacing:0.657532px;}
.ws57{word-spacing:0.717307px;}
.wsd9{word-spacing:0.753178px;}
.ws4e{word-spacing:0.777083px;}
.ws79{word-spacing:0.836858px;}
.ws6d{word-spacing:0.860774px;}
.ws8d{word-spacing:0.896634px;}
.wsc6{word-spacing:0.914573px;}
.ws3a{word-spacing:0.956410px;}
.ws5c{word-spacing:1.016185px;}
.wsdb{word-spacing:1.022170px;}
.ws5e{word-spacing:1.075961px;}
.ws9b{word-spacing:1.075968px;}
.wse4{word-spacing:1.183565px;}
.ws47{word-spacing:1.195512px;}
.wsc7{word-spacing:1.237363px;}
.ws3f{word-spacing:1.255288px;}
.wsb6{word-spacing:1.291162px;}
.ws61{word-spacing:1.315063px;}
.ws16{word-spacing:1.374839px;}
.wsb8{word-spacing:1.398758px;}
.wsd4{word-spacing:1.452557px;}
.wsd5{word-spacing:1.506355px;}
.ws56{word-spacing:1.554166px;}
.wsbd{word-spacing:1.560154px;}
.ws69{word-spacing:1.613941px;}
.ws45{word-spacing:1.673717px;}
.wse2{word-spacing:1.721549px;}
.ws49{word-spacing:1.733492px;}
.ws46{word-spacing:1.793268px;}
.ws3d{word-spacing:1.853044px;}
.ws72{word-spacing:1.912819px;}
.wsb4{word-spacing:1.936742px;}
.ws21{word-spacing:1.972595px;}
.ws74{word-spacing:1.990541px;}
.ws2c{word-spacing:2.032370px;}
.wsd6{word-spacing:2.044339px;}
.ws37{word-spacing:2.211697px;}
.ws10{word-spacing:2.271473px;}
.wsca{word-spacing:2.313331px;}
.ws9d{word-spacing:2.331248px;}
.wsbf{word-spacing:2.474726px;}
.ws2d{word-spacing:2.510575px;}
.wsb0{word-spacing:2.582323px;}
.wsa7{word-spacing:2.672700px;}
.wsd8{word-spacing:2.689920px;}
.ws35{word-spacing:2.749678px;}
.wsa3{word-spacing:2.797517px;}
.ws4c{word-spacing:2.809453px;}
.ws9e{word-spacing:2.869229px;}
.ws19{word-spacing:2.870087px;}
.wsae{word-spacing:2.958912px;}
.ws54{word-spacing:2.988780px;}
.wsb{word-spacing:3.050060px;}
.ws20{word-spacing:3.168107px;}
.wsab{word-spacing:3.174106px;}
.wsaa{word-spacing:3.216576px;}
.wsb2{word-spacing:3.219245px;}
.wsb5{word-spacing:3.221587px;}
.wsd7{word-spacing:3.221904px;}
.wsc8{word-spacing:3.223066px;}
.wsdc{word-spacing:3.224093px;}
.wsaf{word-spacing:3.224333px;}
.wsce{word-spacing:3.226003px;}
.wsde{word-spacing:3.226867px;}
.wse1{word-spacing:3.226925px;}
.wsb1{word-spacing:3.227904px;}
.wsd1{word-spacing:3.335501px;}
.ws83{word-spacing:3.347434px;}
.ws93{word-spacing:3.389299px;}
.ws63{word-spacing:3.407209px;}
.wsdd{word-spacing:3.443098px;}
.ws3c{word-spacing:3.466985px;}
.wscd{word-spacing:3.496896px;}
.wsa9{word-spacing:3.550694px;}
.ws26{word-spacing:3.586536px;}
.ws94{word-spacing:3.646312px;}
.ws28{word-spacing:3.706087px;}
.ws2e{word-spacing:3.765863px;}
.ws4b{word-spacing:3.825638px;}
.wscb{word-spacing:3.873485px;}
.ws4f{word-spacing:3.945190px;}
.ws8a{word-spacing:4.004965px;}
.wsad{word-spacing:4.034880px;}
.ws81{word-spacing:4.064741px;}
.ws9f{word-spacing:4.184292px;}
.wsc4{word-spacing:4.250074px;}
.ws88{word-spacing:4.303843px;}
.ws1c{word-spacing:4.303872px;}
.ws73{word-spacing:4.465267px;}
.wsb9{word-spacing:4.519066px;}
.ws3e{word-spacing:4.662497px;}
.ws4d{word-spacing:4.782048px;}
.ws71{word-spacing:4.841824px;}
.ws36{word-spacing:4.961375px;}
.ws75{word-spacing:5.021150px;}
.ws98{word-spacing:5.080926px;}
.ws5d{word-spacing:5.140702px;}
.ws62{word-spacing:5.200477px;}
.wse5{word-spacing:5.272243px;}
.wsd3{word-spacing:5.326042px;}
.wsa0{word-spacing:5.379804px;}
.ws34{word-spacing:5.439580px;}
.ws65{word-spacing:5.499355px;}
.ws87{word-spacing:5.618906px;}
.ws44{word-spacing:5.738458px;}
.ws41{word-spacing:5.798233px;}
.ws2b{word-spacing:5.977560px;}
.ws89{word-spacing:6.037336px;}
.ws32{word-spacing:6.455765px;}
.ws85{word-spacing:6.515540px;}
.ws78{word-spacing:6.575316px;}
.ws48{word-spacing:6.694867px;}
.ws38{word-spacing:6.754643px;}
.ws53{word-spacing:6.814418px;}
.ws4a{word-spacing:7.053521px;}
.ws1d{word-spacing:7.173072px;}
.ws7a{word-spacing:7.232848px;}
.ws8c{word-spacing:7.352399px;}
.ws68{word-spacing:7.412174px;}
.ws9a{word-spacing:7.471950px;}
.ws6e{word-spacing:7.591501px;}
.wscc{word-spacing:7.639373px;}
.ws84{word-spacing:7.651277px;}
.ws99{word-spacing:7.711052px;}
.ws40{word-spacing:7.830604px;}
.ws86{word-spacing:8.069706px;}
.ws6a{word-spacing:8.249033px;}
.wsd2{word-spacing:9.629914px;}
.wsac{word-spacing:13.234406px;}
.ws90{word-spacing:15.003676px;}
.wsc5{word-spacing:16.408512px;}
.ws8f{word-spacing:20.443255px;}
.ws1{word-spacing:22.179541px;}
.ws58{word-spacing:340.048567px;}
.ws5a{word-spacing:424.466536px;}
.ws5b{word-spacing:515.096056px;}
.ws51{word-spacing:703.558812px;}
.ws50{word-spacing:710.193904px;}
.ws52{word-spacing:710.313455px;}
._33{margin-left:-23.832691px;}
._35{margin-left:-20.176756px;}
._16{margin-left:-7.519775px;}
._1{margin-left:-6.150892px;}
._2{margin-left:-4.686394px;}
._3{margin-left:-3.096367px;}
._5{margin-left:-1.506341px;}
._27{width:1.105753px;}
._7{width:2.993122px;}
._32{width:6.730733px;}
._2c{width:9.647791px;}
._0{width:10.879128px;}
._a{width:12.445276px;}
._9{width:13.963615px;}
._8{width:15.111284px;}
._17{width:16.671312px;}
._d{width:17.765304px;}
._c{width:19.343366px;}
._2b{width:20.443255px;}
._4{width:21.761856px;}
._11{width:22.965781px;}
._e{width:24.460171px;}
._b{width:25.948566px;}
._13{width:27.317449px;}
._26{width:28.512961px;}
._14{width:30.366005px;}
._6{width:33.892992px;}
._15{width:35.817535px;}
._2a{width:37.001096px;}
._12{width:38.555262px;}
._24{width:40.790861px;}
._29{width:41.842920px;}
._25{width:43.755739px;}
._34{width:61.868160px;}
._30{width:71.713267px;}
._31{width:104.584090px;}
._2e{width:122.606554px;}
._2f{width:155.477376px;}
._2d{width:168.819379px;}
._23{width:356.905853px;}
._1e{width:403.610968px;}
._21{width:418.556968px;}
._1f{width:520.824803px;}
._22{width:535.768703px;}
._20{width:565.716278px;}
._19{width:581.556812px;}
._18{width:675.603418px;}
._1c{width:727.229950px;}
._1b{width:730.158954px;}
._1d{width:731.772895px;}
._1a{width:733.446612px;}
._f{width:1855.898700px;}
._28{width:2494.970700px;}
._10{width:2518.880700px;}
.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;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y43{bottom:45.921000px;}
.y111{bottom:99.720000px;}
.y12c{bottom:100.033500px;}
.y16{bottom:100.260000px;}
.yd1{bottom:102.781500px;}
.yb5{bottom:105.672000px;}
.y140{bottom:107.713500px;}
.yf9{bottom:108.163500px;}
.y42{bottom:111.717000px;}
.y76{bottom:116.407500px;}
.yce{bottom:116.592000px;}
.y15{bottom:118.147500px;}
.y110{bottom:120.610500px;}
.y12b{bottom:120.925500px;}
.yd0{bottom:122.014500px;}
.y1c2{bottom:125.112000px;}
.y162{bottom:125.589000px;}
.yb4{bottom:126.564000px;}
.y13f{bottom:128.605500px;}
.yf8{bottom:129.054000px;}
.y41{bottom:132.609000px;}
.y191{bottom:135.090000px;}
.y14{bottom:136.035000px;}
.y75{bottom:137.298000px;}
.ycd{bottom:137.484000px;}
.ycf{bottom:141.247500px;}
.y10f{bottom:141.502500px;}
.y12a{bottom:141.817500px;}
.y85{bottom:144.252000px;}
.y1c1{bottom:144.262500px;}
.y161{bottom:145.087500px;}
.y13e{bottom:149.497500px;}
.yf7{bottom:149.946000px;}
.y40{bottom:153.499500px;}
.y13{bottom:153.924000px;}
.y190{bottom:154.240500px;}
.y74{bottom:158.190000px;}
.ycc{bottom:158.374500px;}
.yfb{bottom:159.985500px;}
.y10e{bottom:162.394500px;}
.y129{bottom:162.708000px;}
.y1c0{bottom:163.413000px;}
.y160{bottom:164.586000px;}
.yb3{bottom:168.759000px;}
.y13d{bottom:170.389500px;}
.yf6{bottom:170.838000px;}
.y12{bottom:171.811500px;}
.y18f{bottom:173.391000px;}
.y3f{bottom:174.391500px;}
.y73{bottom:179.082000px;}
.yfa{bottom:179.217000px;}
.ycb{bottom:179.266500px;}
.y1bf{bottom:182.563500px;}
.y10d{bottom:183.285000px;}
.y128{bottom:183.600000px;}
.y15f{bottom:184.084500px;}
.y11{bottom:189.699000px;}
.yb2{bottom:191.040000px;}
.y13c{bottom:191.280000px;}
.yf5{bottom:191.730000px;}
.y18e{bottom:192.541500px;}
.y3e{bottom:195.283500px;}
.y72{bottom:199.972500px;}
.yca{bottom:200.158500px;}
.y1be{bottom:201.714000px;}
.y15e{bottom:203.583000px;}
.y10c{bottom:204.177000px;}
.y127{bottom:204.492000px;}
.y10{bottom:207.586500px;}
.yb0{bottom:208.972500px;}
.y18d{bottom:211.692000px;}
.y13b{bottom:212.172000px;}
.yf4{bottom:212.620500px;}
.y3d{bottom:216.174000px;}
.y71{bottom:220.864500px;}
.yc9{bottom:221.049000px;}
.yfd{bottom:223.353000px;}
.y10b{bottom:225.069000px;}
.y126{bottom:225.382500px;}
.yf{bottom:225.475500px;}
.yb1{bottom:226.905000px;}
.y18c{bottom:230.842500px;}
.y15d{bottom:232.048500px;}
.y13a{bottom:233.064000px;}
.yf3{bottom:233.512500px;}
.y1bd{bottom:240.015000px;}
.y3c{bottom:241.549500px;}
.y70{bottom:241.756500px;}
.yc8{bottom:241.941000px;}
.yfc{bottom:242.586000px;}
.yaf{bottom:244.839000px;}
.y10a{bottom:245.961000px;}
.y125{bottom:246.274500px;}
.y18b{bottom:249.993000px;}
.y15c{bottom:251.547000px;}
.ye{bottom:252.330000px;}
.yde{bottom:253.608000px;}
.y139{bottom:253.954500px;}
.yf2{bottom:254.404500px;}
.y1bc{bottom:259.165500px;}
.y6f{bottom:262.647000px;}
.yad{bottom:262.771500px;}
.yc7{bottom:262.833000px;}
.y109{bottom:266.851500px;}
.y124{bottom:267.166500px;}
.y18a{bottom:269.143500px;}
.yd{bottom:270.217500px;}
.y15b{bottom:271.045500px;}
.ydd{bottom:274.500000px;}
.y138{bottom:274.846500px;}
.yf1{bottom:275.295000px;}
.y1bb{bottom:278.316000px;}
.yae{bottom:280.704000px;}
.y6e{bottom:283.539000px;}
.y108{bottom:287.743500px;}
.y123{bottom:288.057000px;}
.yc{bottom:288.105000px;}
.yc6{bottom:288.207000px;}
.y189{bottom:288.294000px;}
.y15a{bottom:290.545500px;}
.ydc{bottom:295.390500px;}
.y137{bottom:295.738500px;}
.y1ba{bottom:297.466500px;}
.yac{bottom:298.636500px;}
.yf0{bottom:300.670500px;}
.y6d{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y188{bottom:307.444500px;}
.y107{bottom:308.635500px;}
.y122{bottom:308.949000px;}
.y159{bottom:310.044000px;}
.ydb{bottom:316.282500px;}
.yab{bottom:316.569000px;}
.y1b9{bottom:316.617000px;}
.y136{bottom:316.629000px;}
.y3b{bottom:320.761500px;}
.yc5{bottom:323.550000px;}
.ya{bottom:323.881500px;}
.y6c{bottom:325.323000px;}
.y187{bottom:326.595000px;}
.y106{bottom:329.526000px;}
.y158{bottom:329.542500px;}
.y121{bottom:329.841000px;}
.yaa{bottom:334.501500px;}
.y1b8{bottom:335.767500px;}
.yef{bottom:336.012000px;}
.yda{bottom:337.174500px;}
.y135{bottom:337.521000px;}
.y3a{bottom:341.652000px;}
.y9{bottom:341.769000px;}
.yc4{bottom:344.442000px;}
.y186{bottom:345.745500px;}
.y6b{bottom:346.213500px;}
.y157{bottom:349.041000px;}
.y105{bottom:350.418000px;}
.ya9{bottom:352.435500px;}
.y1b7{bottom:354.918000px;}
.y120{bottom:355.215000px;}
.yee{bottom:356.904000px;}
.yd9{bottom:358.066500px;}
.y134{bottom:358.413000px;}
.y8{bottom:359.658000px;}
.y185{bottom:364.896000px;}
.yc3{bottom:365.332500px;}
.y6a{bottom:367.105500px;}
.ya8{bottom:370.368000px;}
.y104{bottom:371.310000px;}
.y11f{bottom:372.625500px;}
.y1b6{bottom:374.070000px;}
.y7{bottom:377.545500px;}
.yed{bottom:377.796000px;}
.yd8{bottom:378.957000px;}
.y133{bottom:379.303500px;}
.y39{bottom:380.476500px;}
.y156{bottom:381.990000px;}
.y184{bottom:384.048000px;}
.yc2{bottom:386.224500px;}
.y69{bottom:387.997500px;}
.ya7{bottom:388.300500px;}
.y103{bottom:392.200500px;}
.y1b5{bottom:393.220500px;}
.y6{bottom:395.433000px;}
.yec{bottom:398.686500px;}
.yd7{bottom:399.849000px;}
.y132{bottom:400.195500px;}
.y38{bottom:401.368500px;}
.y155{bottom:402.880500px;}
.y183{bottom:403.198500px;}
.yc1{bottom:407.116500px;}
.y11e{bottom:407.967000px;}
.y68{bottom:408.888000px;}
.y1b4{bottom:412.371000px;}
.y102{bottom:413.092500px;}
.ya5{bottom:413.436000px;}
.y5{bottom:419.299500px;}
.yeb{bottom:419.578500px;}
.yd6{bottom:420.741000px;}
.y131{bottom:421.087500px;}
.y37{bottom:422.260500px;}
.y182{bottom:422.349000px;}
.ya4{bottom:422.401500px;}
.y154{bottom:423.772500px;}
.yc0{bottom:428.007000px;}
.y11d{bottom:428.859000px;}
.y67{bottom:429.780000px;}
.ya6{bottom:431.368500px;}
.y1b3{bottom:431.521500px;}
.y4{bottom:437.187000px;}
.y101{bottom:438.468000px;}
.yea{bottom:440.470500px;}
.y181{bottom:441.499500px;}
.yd5{bottom:441.631500px;}
.y130{bottom:441.978000px;}
.y36{bottom:443.151000px;}
.y153{bottom:444.664500px;}
.ybf{bottom:448.899000px;}
.y11c{bottom:449.751000px;}
.y66{bottom:450.672000px;}
.y3{bottom:455.074500px;}
.y100{bottom:455.877000px;}
.y180{bottom:460.650000px;}
.ye9{bottom:461.361000px;}
.y35{bottom:464.043000px;}
.y1c5{bottom:465.093000px;}
.y152{bottom:465.555000px;}
.yd4{bottom:467.007000px;}
.ya3{bottom:467.022000px;}
.ybe{bottom:469.791000px;}
.y1b2{bottom:469.822500px;}
.y11b{bottom:470.641500px;}
.y65{bottom:471.562500px;}
.y2{bottom:472.963500px;}
.y12f{bottom:477.606000px;}
.y17f{bottom:479.800500px;}
.ye8{bottom:482.253000px;}
.y1c4{bottom:484.243500px;}
.y34{bottom:484.935000px;}
.yff{bottom:485.167500px;}
.y151{bottom:486.447000px;}
.y1b1{bottom:488.973000px;}
.ybd{bottom:490.681500px;}
.y11a{bottom:491.533500px;}
.y64{bottom:492.454500px;}
.y1{bottom:496.828500px;}
.y12e{bottom:496.839000px;}
.y17e{bottom:498.951000px;}
.yd3{bottom:499.152000px;}
.ye7{bottom:503.145000px;}
.y1c3{bottom:503.394000px;}
.ya2{bottom:504.127500px;}
.yfe{bottom:504.400500px;}
.y33{bottom:505.825500px;}
.y150{bottom:507.339000px;}
.y1b0{bottom:508.123500px;}
.ybc{bottom:511.573500px;}
.y119{bottom:512.425500px;}
.y63{bottom:513.346500px;}
.y12d{bottom:516.072000px;}
.y17d{bottom:518.101500px;}
.yd2{bottom:518.385000px;}
.ye6{bottom:524.037000px;}
.ya1{bottom:525.018000px;}
.y32{bottom:526.717500px;}
.y1af{bottom:527.274000px;}
.y14f{bottom:528.229500px;}
.ybb{bottom:532.465500px;}
.y118{bottom:533.316000px;}
.y62{bottom:534.237000px;}
.y17c{bottom:537.252000px;}
.ye5{bottom:544.927500px;}
.ya0{bottom:545.910000px;}
.y1ae{bottom:546.424500px;}
.y31{bottom:547.609500px;}
.y14e{bottom:549.121500px;}
.yba{bottom:553.357500px;}
.y117{bottom:554.208000px;}
.y61{bottom:555.129000px;}
.y17b{bottom:556.402500px;}
.y1ad{bottom:565.575000px;}
.ye4{bottom:565.819500px;}
.y9f{bottom:566.802000px;}
.y30{bottom:568.500000px;}
.y14d{bottom:570.013500px;}
.yb9{bottom:574.248000px;}
.y116{bottom:575.100000px;}
.y17a{bottom:575.553000px;}
.y60{bottom:576.021000px;}
.y1ac{bottom:584.725500px;}
.ye3{bottom:586.711500px;}
.y9e{bottom:587.692500px;}
.y2f{bottom:589.392000px;}
.y14c{bottom:590.904000px;}
.y84{bottom:591.847500px;}
.y179{bottom:594.703500px;}
.yb8{bottom:595.140000px;}
.y5f{bottom:596.913000px;}
.y1ab{bottom:603.876000px;}
.y9d{bottom:608.584500px;}
.y2e{bottom:610.284000px;}
.y115{bottom:610.728000px;}
.y14b{bottom:611.796000px;}
.ye2{bottom:612.085500px;}
.y83{bottom:612.739500px;}
.y178{bottom:613.854000px;}
.y5e{bottom:617.803500px;}
.y1aa{bottom:623.026500px;}
.y9c{bottom:629.476500px;}
.y114{bottom:629.961000px;}
.yb7{bottom:630.768000px;}
.y2d{bottom:631.174500px;}
.y14a{bottom:632.688000px;}
.y177{bottom:633.004500px;}
.y82{bottom:633.631500px;}
.y5d{bottom:638.695500px;}
.y1a9{bottom:642.177000px;}
.ye1{bottom:644.232000px;}
.y113{bottom:649.192500px;}
.yb6{bottom:650.001000px;}
.y9b{bottom:650.367000px;}
.y2c{bottom:652.066500px;}
.y176{bottom:652.155000px;}
.y149{bottom:653.580000px;}
.y81{bottom:654.522000px;}
.y5c{bottom:659.587500px;}
.y1a8{bottom:661.327500px;}
.ye0{bottom:663.465000px;}
.y112{bottom:668.425500px;}
.y175{bottom:671.305500px;}
.y2b{bottom:672.958500px;}
.y148{bottom:674.470500px;}
.y80{bottom:675.414000px;}
.y9a{bottom:675.742500px;}
.y5b{bottom:680.478000px;}
.ydf{bottom:682.696500px;}
.y174{bottom:690.456000px;}
.y2a{bottom:693.849000px;}
.y147{bottom:695.362500px;}
.y7f{bottom:696.306000px;}
.y1a7{bottom:699.628500px;}
.y5a{bottom:701.370000px;}
.y173{bottom:709.606500px;}
.y99{bottom:711.084000px;}
.y29{bottom:714.741000px;}
.y146{bottom:716.254500px;}
.y7e{bottom:717.196500px;}
.y1a6{bottom:718.779000px;}
.y59{bottom:722.262000px;}
.y172{bottom:728.757000px;}
.y98{bottom:731.976000px;}
.y1a5{bottom:737.929500px;}
.y7d{bottom:738.088500px;}
.y145{bottom:741.628500px;}
.y58{bottom:743.152500px;}
.y171{bottom:752.391000px;}
.y97{bottom:752.868000px;}
.y28{bottom:754.761000px;}
.y1a4{bottom:757.081500px;}
.y7c{bottom:758.980500px;}
.y144{bottom:762.520500px;}
.y57{bottom:764.044500px;}
.y27{bottom:770.901000px;}
.y96{bottom:773.760000px;}
.y1a3{bottom:776.232000px;}
.y7b{bottom:779.871000px;}
.y143{bottom:783.411000px;}
.y56{bottom:784.936500px;}
.y26{bottom:791.380500px;}
.y170{bottom:792.292500px;}
.y95{bottom:794.650500px;}
.y1a2{bottom:795.382500px;}
.y7a{bottom:800.763000px;}
.y25{bottom:803.179500px;}
.y142{bottom:804.303000px;}
.y55{bottom:805.827000px;}
.y16f{bottom:811.791000px;}
.y1a1{bottom:814.533000px;}
.y94{bottom:815.542500px;}
.y24{bottom:819.319500px;}
.y79{bottom:821.655000px;}
.y23{bottom:823.659000px;}
.y54{bottom:826.719000px;}
.y141{bottom:829.678500px;}
.y16e{bottom:831.289500px;}
.y1a0{bottom:833.683500px;}
.y22{bottom:835.459500px;}
.y93{bottom:836.434500px;}
.y78{bottom:847.029000px;}
.y53{bottom:847.611000px;}
.y16d{bottom:850.788000px;}
.y19f{bottom:852.834000px;}
.y21{bottom:855.937500px;}
.y92{bottom:857.325000px;}
.y20{bottom:867.738000px;}
.y52{bottom:868.503000px;}
.y16c{bottom:870.286500px;}
.y77{bottom:871.461000px;}
.y19e{bottom:871.984500px;}
.y91{bottom:878.217000px;}
.y1f{bottom:883.878000px;}
.y51{bottom:889.393500px;}
.y19d{bottom:891.135000px;}
.y90{bottom:899.109000px;}
.y1e{bottom:900.016500px;}
.y1d{bottom:904.357500px;}
.y16b{bottom:904.929000px;}
.y50{bottom:910.285500px;}
.y8f{bottom:924.483000px;}
.y16a{bottom:928.911000px;}
.y19c{bottom:929.436000px;}
.y4f{bottom:931.177500px;}
.y19b{bottom:948.586500px;}
.y1c{bottom:949.033500px;}
.y4e{bottom:952.068000px;}
.y169{bottom:967.735500px;}
.y19a{bottom:967.737000px;}
.y8e{bottom:968.973000px;}
.y1b{bottom:969.925500px;}
.y4d{bottom:972.960000px;}
.y199{bottom:986.887500px;}
.y8d{bottom:986.907000px;}
.y4c{bottom:993.852000px;}
.y168{bottom:996.201000px;}
.y8c{bottom:1004.839500px;}
.y198{bottom:1006.038000px;}
.y1a{bottom:1008.748500px;}
.y4b{bottom:1014.742500px;}
.y167{bottom:1015.699500px;}
.y8b{bottom:1022.772000px;}
.y197{bottom:1025.188500px;}
.y166{bottom:1035.198000px;}
.y4a{bottom:1035.634500px;}
.y19{bottom:1040.086500px;}
.y8a{bottom:1040.704500px;}
.y196{bottom:1044.339000px;}
.y49{bottom:1056.526500px;}
.y89{bottom:1058.637000px;}
.y195{bottom:1063.489500px;}
.y165{bottom:1063.663500px;}
.y18{bottom:1071.424500px;}
.y48{bottom:1077.417000px;}
.y194{bottom:1082.640000px;}
.y164{bottom:1083.162000px;}
.y88{bottom:1083.772500px;}
.y87{bottom:1095.708000px;}
.y47{bottom:1098.309000px;}
.y193{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.y163{bottom:1111.627500px;}
.y46{bottom:1119.201000px;}
.y192{bottom:1120.941000px;}
.y45{bottom:1140.091500px;}
.y86{bottom:1141.573500px;}
.y44{bottom:1200.196500px;}
.h6{height:32.565965px;}
.h13{height:37.551283px;}
.h2{height:37.993262px;}
.h9{height:41.723369px;}
.hd{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.875290px;}
.hb{height:48.848947px;}
.ha{height:51.861658px;}
.h8{height:54.276245px;}
.h5{height:54.541601px;}
.h4{height:77.792486px;}
.hf{height:79.079759px;}
.he{height:79.085759px;}
.h12{height:88.986245px;}
.h10{height:90.138245px;}
.h11{height:90.144245px;}
.hc{height:96.017759px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.xa6{left:85.323000px;}
.x5b{left:86.806500px;}
.x5c{left:88.192500px;}
.x5a{left:99.991500px;}
.x5d{left:109.704000px;}
.x54{left:124.827000px;}
.x59{left:126.949500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x97{left:254.133000px;}
.x9e{left:259.491000px;}
.x9a{left:264.073500px;}
.x4{left:269.764500px;}
.xa7{left:277.438500px;}
.xc{left:281.479500px;}
.xa3{left:284.184000px;}
.x50{left:285.763500px;}
.xa5{left:288.588000px;}
.x5e{left:291.036000px;}
.x78{left:293.029500px;}
.x5f{left:294.928500px;}
.x2b{left:300.456000px;}
.x27{left:302.323500px;}
.x55{left:305.277000px;}
.x2c{left:307.927500px;}
.x2d{left:311.739000px;}
.x30{left:315.096000px;}
.x28{left:317.268000px;}
.x29{left:321.078000px;}
.x24{left:322.476000px;}
.x2e{left:326.682000px;}
.x48{left:328.261500px;}
.x2f{left:330.493500px;}
.x99{left:334.891500px;}
.x2a{left:336.022500px;}
.x25{left:337.420500px;}
.x4b{left:339.432000px;}
.x37{left:340.761000px;}
.x4f{left:341.832000px;}
.x51{left:343.245000px;}
.x26{left:344.839500px;}
.x31{left:352.306500px;}
.x3e{left:353.767500px;}
.x4c{left:354.942000px;}
.x35{left:356.145000px;}
.x23{left:360.306000px;}
.x3f{left:362.724000px;}
.x47{left:369.948000px;}
.x36{left:371.089500px;}
.x6{left:375.144000px;}
.x40{left:376.362000px;}
.x1b{left:383.739000px;}
.x7{left:384.984000px;}
.x52{left:391.045500px;}
.x8{left:393.958500px;}
.x1c{left:398.682000px;}
.xf{left:404.721000px;}
.x53{left:405.988500px;}
.x9{left:407.617500px;}
.x6d{left:409.621500px;}
.x10{left:412.194000px;}
.x11{left:415.918500px;}
.x6e{left:418.477500px;}
.x46{left:422.302500px;}
.x12{left:423.390000px;}
.x6f{left:426.790500px;}
.x56{left:436.003500px;}
.x70{left:439.057500px;}
.x9f{left:443.445000px;}
.x32{left:446.208000px;}
.x60{left:452.524500px;}
.x61{left:454.810500px;}
.x64{left:456.379500px;}
.x63{left:459.996000px;}
.x33{left:461.152500px;}
.x34{left:464.962500px;}
.xd{left:468.001500px;}
.xe{left:475.474500px;}
.x1f{left:479.430000px;}
.x8b{left:485.148000px;}
.x20{left:494.374500px;}
.x21{left:498.186000px;}
.x8c{left:500.092500px;}
.x38{left:509.205000px;}
.x8e{left:510.909000px;}
.x22{left:513.129000px;}
.x4d{left:517.000500px;}
.x42{left:523.344000px;}
.x8f{left:525.852000px;}
.x4e{left:526.900500px;}
.x39{left:527.937000px;}
.x93{left:537.595500px;}
.x13{left:539.602500px;}
.x94{left:541.405500px;}
.x1d{left:542.541000px;}
.x14{left:547.075500px;}
.x83{left:552.538500px;}
.x15{left:554.689500px;}
.x95{left:556.350000px;}
.x1e{left:557.485500px;}
.xa{left:559.909500px;}
.x16{left:562.161000px;}
.x84{left:567.483000px;}
.xb{left:569.811000px;}
.x85{left:571.144500px;}
.x86{left:586.087500px;}
.x87{left:589.749000px;}
.x43{left:591.451500px;}
.x57{left:593.815500px;}
.x88{left:604.693500px;}
.x44{left:606.396000px;}
.x65{left:609.280500px;}
.x62{left:612.598500px;}
.x17{left:619.576500px;}
.x49{left:623.233500px;}
.x8d{left:627.016500px;}
.x18{left:634.519500px;}
.x4a{left:638.176500px;}
.x58{left:641.655000px;}
.xa1{left:643.960500px;}
.x7d{left:646.975500px;}
.xa2{left:653.860500px;}
.x6a{left:656.134500px;}
.x7b{left:658.132500px;}
.x6b{left:659.946000px;}
.x68{left:661.029000px;}
.x7c{left:668.032500px;}
.x9d{left:669.706500px;}
.x6c{left:674.889000px;}
.x66{left:677.193000px;}
.x71{left:678.958500px;}
.x77{left:684.078000px;}
.x67{left:692.137500px;}
.x72{left:693.903000px;}
.x73{left:697.564500px;}
.x90{left:707.452500px;}
.x74{left:712.507500px;}
.x75{left:716.169000px;}
.x80{left:721.624500px;}
.x91{left:726.079500px;}
.x76{left:731.113500px;}
.x96{left:735.631500px;}
.x81{left:738.795000px;}
.x92{left:741.024000px;}
.x89{left:746.991000px;}
.x98{left:749.881500px;}
.x82{left:751.143000px;}
.x9c{left:760.125000px;}
.x8a{left:765.625500px;}
.x3a{left:776.514000px;}
.xa0{left:779.139000px;}
.x41{left:786.264000px;}
.x69{left:788.761500px;}
.x3b{left:791.457000px;}
.x45{left:792.736500px;}
.x3c{left:795.268500px;}
.x79{left:803.314500px;}
.x3d{left:810.211500px;}
.x7a{left:813.214500px;}
.x19{left:817.890000px;}
.x9b{left:820.879500px;}
.x7e{left:822.015000px;}
.x7f{left:830.002500px;}
.x1a{left:832.833000px;}
.xa4{left:835.516500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:30.853333pt;}
.v5{vertical-align:31.882667pt;}
.v4{vertical-align:46.933333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000008pt;}
.ls2a{letter-spacing:0.000659pt;}
.ls1e{letter-spacing:0.000766pt;}
.ls19{letter-spacing:0.002148pt;}
.ls8{letter-spacing:0.002207pt;}
.ls27{letter-spacing:0.002525pt;}
.ls1d{letter-spacing:0.002639pt;}
.ls1f{letter-spacing:0.002825pt;}
.ls18{letter-spacing:0.003752pt;}
.ls28{letter-spacing:0.004267pt;}
.lsa{letter-spacing:0.659985pt;}
.ls12{letter-spacing:0.665318pt;}
.lsb{letter-spacing:1.992877pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.ls4{letter-spacing:10.626533pt;}
.ls20{letter-spacing:11.625067pt;}
.ls24{letter-spacing:11.867022pt;}
.lsf{letter-spacing:11.953929pt;}
.ls22{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.955337pt;}
.ls10{letter-spacing:11.956053pt;}
.ls23{letter-spacing:11.959467pt;}
.ls26{letter-spacing:12.001876pt;}
.ls2c{letter-spacing:12.031346pt;}
.ls2f{letter-spacing:12.072011pt;}
.ls2e{letter-spacing:12.098563pt;}
.ls25{letter-spacing:12.149375pt;}
.ls2b{letter-spacing:12.171784pt;}
.ls13{letter-spacing:12.964663pt;}
.ls29{letter-spacing:13.064408pt;}
.ls6{letter-spacing:13.230333pt;}
.ls1b{letter-spacing:13.262400pt;}
.ls1a{letter-spacing:13.265746pt;}
.ls14{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.283733pt;}
.ls15{letter-spacing:13.336601pt;}
.lsc{letter-spacing:13.948111pt;}
.ls2d{letter-spacing:14.261793pt;}
.ls21{letter-spacing:15.542839pt;}
.lsd{letter-spacing:19.872066pt;}
.ls11{letter-spacing:20.031468pt;}
.ls17{letter-spacing:21.519216pt;}
.ls16{letter-spacing:21.572350pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls7{letter-spacing:331.588693pt;}
.ws59{word-spacing:-13.283467pt;}
.ws5f{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6f{word-spacing:-2.975497pt;}
.ws2a{word-spacing:-2.709827pt;}
.ws30{word-spacing:-2.603559pt;}
.ws80{word-spacing:-2.497292pt;}
.ws9c{word-spacing:-2.391024pt;}
.ws1e{word-spacing:-2.284756pt;}
.ws8e{word-spacing:-2.231622pt;}
.ws55{word-spacing:-2.072221pt;}
.ws8b{word-spacing:-2.019087pt;}
.wsd{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws7b{word-spacing:-1.806551pt;}
.ws82{word-spacing:-1.753418pt;}
.ws2{word-spacing:-1.748099pt;}
.wse0{word-spacing:-1.673728pt;}
.ws1a{word-spacing:-1.647150pt;}
.ws42{word-spacing:-1.594016pt;}
.ws43{word-spacing:-1.487748pt;}
.ws60{word-spacing:-1.434614pt;}
.ws31{word-spacing:-1.381481pt;}
.wsa8{word-spacing:-1.338982pt;}
.wsc{word-spacing:-1.328347pt;}
.ws67{word-spacing:-1.275213pt;}
.ws39{word-spacing:-1.168945pt;}
.ws97{word-spacing:-1.009543pt;}
.ws64{word-spacing:-0.956410pt;}
.ws70{word-spacing:-0.797008pt;}
.wsa4{word-spacing:-0.765133pt;}
.ws96{word-spacing:-0.690740pt;}
.ws95{word-spacing:-0.637606pt;}
.ws3b{word-spacing:-0.584473pt;}
.ws7c{word-spacing:-0.573850pt;}
.ws1f{word-spacing:-0.531339pt;}
.ws77{word-spacing:-0.478205pt;}
.wsa1{word-spacing:-0.430387pt;}
.ws27{word-spacing:-0.425071pt;}
.wsa2{word-spacing:-0.382566pt;}
.ws18{word-spacing:-0.371937pt;}
.wsbc{word-spacing:-0.334746pt;}
.ws22{word-spacing:-0.318803pt;}
.ws29{word-spacing:-0.265669pt;}
.ws6c{word-spacing:-0.239104pt;}
.ws17{word-spacing:-0.212535pt;}
.ws91{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws7e{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.wsa6{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws7f{word-spacing:-0.047821pt;}
.wsb7{word-spacing:-0.009088pt;}
.wsba{word-spacing:-0.006775pt;}
.wsda{word-spacing:-0.006502pt;}
.wsc2{word-spacing:-0.005137pt;}
.ws1b{word-spacing:-0.005061pt;}
.wsb3{word-spacing:-0.003755pt;}
.ws23{word-spacing:-0.001460pt;}
.wscf{word-spacing:-0.001169pt;}
.wsc3{word-spacing:-0.000606pt;}
.ws7{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.000196pt;}
.wsbe{word-spacing:0.029893pt;}
.ws7d{word-spacing:0.047821pt;}
.ws15{word-spacing:0.053134pt;}
.wsd0{word-spacing:0.066065pt;}
.ws9{word-spacing:0.085014pt;}
.ws92{word-spacing:0.095642pt;}
.ws14{word-spacing:0.106268pt;}
.wse3{word-spacing:0.122796pt;}
.wsa{word-spacing:0.127522pt;}
.wsa5{word-spacing:0.143462pt;}
.ws12{word-spacing:0.159402pt;}
.ws5{word-spacing:0.191283pt;}
.wsf{word-spacing:0.212535pt;}
.ws6b{word-spacing:0.239104pt;}
.ws33{word-spacing:0.265669pt;}
.ws6{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.318803pt;}
.wsc9{word-spacing:0.331514pt;}
.wsc1{word-spacing:0.334746pt;}
.ws76{word-spacing:0.371937pt;}
.ws4{word-spacing:0.375335pt;}
.wsdf{word-spacing:0.382566pt;}
.wsc0{word-spacing:0.430387pt;}
.ws66{word-spacing:0.531339pt;}
.wse{word-spacing:0.584473pt;}
.ws57{word-spacing:0.637606pt;}
.wsd9{word-spacing:0.669491pt;}
.ws4e{word-spacing:0.690740pt;}
.ws79{word-spacing:0.743874pt;}
.ws6d{word-spacing:0.765133pt;}
.ws8d{word-spacing:0.797008pt;}
.wsc6{word-spacing:0.812954pt;}
.ws3a{word-spacing:0.850142pt;}
.ws5c{word-spacing:0.903276pt;}
.wsdb{word-spacing:0.908595pt;}
.ws5e{word-spacing:0.956410pt;}
.ws9b{word-spacing:0.956416pt;}
.wse4{word-spacing:1.052058pt;}
.ws47{word-spacing:1.062677pt;}
.wsc7{word-spacing:1.099878pt;}
.ws3f{word-spacing:1.115811pt;}
.wsb6{word-spacing:1.147699pt;}
.ws61{word-spacing:1.168945pt;}
.ws16{word-spacing:1.222079pt;}
.wsb8{word-spacing:1.243341pt;}
.wsd4{word-spacing:1.291162pt;}
.wsd5{word-spacing:1.338982pt;}
.ws56{word-spacing:1.381481pt;}
.wsbd{word-spacing:1.386803pt;}
.ws69{word-spacing:1.434614pt;}
.ws45{word-spacing:1.487748pt;}
.wse2{word-spacing:1.530266pt;}
.ws49{word-spacing:1.540882pt;}
.ws46{word-spacing:1.594016pt;}
.ws3d{word-spacing:1.647150pt;}
.ws72{word-spacing:1.700284pt;}
.wsb4{word-spacing:1.721549pt;}
.ws21{word-spacing:1.753418pt;}
.ws74{word-spacing:1.769370pt;}
.ws2c{word-spacing:1.806551pt;}
.wsd6{word-spacing:1.817190pt;}
.ws37{word-spacing:1.965953pt;}
.ws10{word-spacing:2.019087pt;}
.wsca{word-spacing:2.056294pt;}
.ws9d{word-spacing:2.072221pt;}
.wsbf{word-spacing:2.199757pt;}
.ws2d{word-spacing:2.231622pt;}
.wsb0{word-spacing:2.295398pt;}
.wsa7{word-spacing:2.375733pt;}
.wsd8{word-spacing:2.391040pt;}
.ws35{word-spacing:2.444158pt;}
.wsa3{word-spacing:2.486682pt;}
.ws4c{word-spacing:2.497292pt;}
.ws9e{word-spacing:2.550426pt;}
.ws19{word-spacing:2.551188pt;}
.wsae{word-spacing:2.630144pt;}
.ws54{word-spacing:2.656693pt;}
.wsb{word-spacing:2.711164pt;}
.ws20{word-spacing:2.816095pt;}
.wsab{word-spacing:2.821427pt;}
.wsaa{word-spacing:2.859179pt;}
.wsb2{word-spacing:2.861551pt;}
.wsb5{word-spacing:2.863633pt;}
.wsd7{word-spacing:2.863915pt;}
.wsc8{word-spacing:2.864947pt;}
.wsdc{word-spacing:2.865860pt;}
.wsaf{word-spacing:2.866074pt;}
.wsce{word-spacing:2.867558pt;}
.wsde{word-spacing:2.868326pt;}
.wse1{word-spacing:2.868378pt;}
.wsb1{word-spacing:2.869248pt;}
.wsd1{word-spacing:2.964890pt;}
.ws83{word-spacing:2.975497pt;}
.ws93{word-spacing:3.012710pt;}
.ws63{word-spacing:3.028630pt;}
.wsdd{word-spacing:3.060531pt;}
.ws3c{word-spacing:3.081764pt;}
.wscd{word-spacing:3.108352pt;}
.wsa9{word-spacing:3.156173pt;}
.ws26{word-spacing:3.188032pt;}
.ws94{word-spacing:3.241166pt;}
.ws28{word-spacing:3.294300pt;}
.ws2e{word-spacing:3.347434pt;}
.ws4b{word-spacing:3.400567pt;}
.wscb{word-spacing:3.443098pt;}
.ws4f{word-spacing:3.506835pt;}
.ws8a{word-spacing:3.559969pt;}
.wsad{word-spacing:3.586560pt;}
.ws81{word-spacing:3.613103pt;}
.ws9f{word-spacing:3.719371pt;}
.wsc4{word-spacing:3.777843pt;}
.ws88{word-spacing:3.825638pt;}
.ws1c{word-spacing:3.825664pt;}
.ws73{word-spacing:3.969126pt;}
.wsb9{word-spacing:4.016947pt;}
.ws3e{word-spacing:4.144442pt;}
.ws4d{word-spacing:4.250709pt;}
.ws71{word-spacing:4.303843pt;}
.ws36{word-spacing:4.410111pt;}
.ws75{word-spacing:4.463245pt;}
.ws98{word-spacing:4.516379pt;}
.ws5d{word-spacing:4.569513pt;}
.ws62{word-spacing:4.622646pt;}
.wse5{word-spacing:4.686438pt;}
.wsd3{word-spacing:4.734259pt;}
.wsa0{word-spacing:4.782048pt;}
.ws34{word-spacing:4.835182pt;}
.ws65{word-spacing:4.888316pt;}
.ws87{word-spacing:4.994583pt;}
.ws44{word-spacing:5.100851pt;}
.ws41{word-spacing:5.153985pt;}
.ws2b{word-spacing:5.313387pt;}
.ws89{word-spacing:5.366521pt;}
.ws32{word-spacing:5.738458pt;}
.ws85{word-spacing:5.791591pt;}
.ws78{word-spacing:5.844725pt;}
.ws48{word-spacing:5.950993pt;}
.ws38{word-spacing:6.004127pt;}
.ws53{word-spacing:6.057261pt;}
.ws4a{word-spacing:6.269796pt;}
.ws1d{word-spacing:6.376064pt;}
.ws7a{word-spacing:6.429198pt;}
.ws8c{word-spacing:6.535466pt;}
.ws68{word-spacing:6.588599pt;}
.ws9a{word-spacing:6.641733pt;}
.ws6e{word-spacing:6.748001pt;}
.wscc{word-spacing:6.790554pt;}
.ws84{word-spacing:6.801135pt;}
.ws99{word-spacing:6.854269pt;}
.ws40{word-spacing:6.960537pt;}
.ws86{word-spacing:7.173072pt;}
.ws6a{word-spacing:7.332474pt;}
.wsd2{word-spacing:8.559923pt;}
.wsac{word-spacing:11.763917pt;}
.ws90{word-spacing:13.336601pt;}
.wsc5{word-spacing:14.585344pt;}
.ws8f{word-spacing:18.171782pt;}
.ws1{word-spacing:19.715148pt;}
.ws58{word-spacing:302.265393pt;}
.ws5a{word-spacing:377.303587pt;}
.ws5b{word-spacing:457.863161pt;}
.ws51{word-spacing:625.385611pt;}
.ws50{word-spacing:631.283470pt;}
.ws52{word-spacing:631.389738pt;}
._33{margin-left:-21.184614pt;}
._35{margin-left:-17.934895pt;}
._16{margin-left:-6.684244pt;}
._1{margin-left:-5.467459pt;}
._2{margin-left:-4.165683pt;}
._3{margin-left:-2.752326pt;}
._5{margin-left:-1.338970pt;}
._27{width:0.982892pt;}
._7{width:2.660553pt;}
._32{width:5.982874pt;}
._2c{width:8.575814pt;}
._0{width:9.670336pt;}
._a{width:11.062467pt;}
._9{width:12.412102pt;}
._8{width:13.432253pt;}
._17{width:14.818944pt;}
._d{width:15.791381pt;}
._c{width:17.194103pt;}
._2b{width:18.171782pt;}
._4{width:19.343872pt;}
._11{width:20.414028pt;}
._e{width:21.742374pt;}
._b{width:23.065392pt;}
._13{width:24.282177pt;}
._26{width:25.344854pt;}
._14{width:26.992004pt;}
._6{width:30.127104pt;}
._15{width:31.837809pt;}
._2a{width:32.889863pt;}
._12{width:34.271344pt;}
._24{width:36.258543pt;}
._29{width:37.193707pt;}
._25{width:38.893990pt;}
._34{width:54.993920pt;}
._30{width:63.745126pt;}
._31{width:92.963635pt;}
._2e{width:108.983603pt;}
._2f{width:138.202112pt;}
._2d{width:150.061670pt;}
._23{width:317.249647pt;}
._1e{width:358.765305pt;}
._21{width:372.050638pt;}
._1f{width:462.955380pt;}
._22{width:476.238847pt;}
._20{width:502.858914pt;}
._19{width:516.939389pt;}
._18{width:600.536371pt;}
._1c{width:646.426622pt;}
._1b{width:649.030181pt;}
._1d{width:650.464796pt;}
._1a{width:651.952544pt;}
._f{width:1649.687733pt;}
._28{width:2217.751733pt;}
._10{width:2239.005067pt;}
.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;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:40.818667pt;}
.y111{bottom:88.640000pt;}
.y12c{bottom:88.918667pt;}
.y16{bottom:89.120000pt;}
.yd1{bottom:91.361333pt;}
.yb5{bottom:93.930667pt;}
.y140{bottom:95.745333pt;}
.yf9{bottom:96.145333pt;}
.y42{bottom:99.304000pt;}
.y76{bottom:103.473333pt;}
.yce{bottom:103.637333pt;}
.y15{bottom:105.020000pt;}
.y110{bottom:107.209333pt;}
.y12b{bottom:107.489333pt;}
.yd0{bottom:108.457333pt;}
.y1c2{bottom:111.210667pt;}
.y162{bottom:111.634667pt;}
.yb4{bottom:112.501333pt;}
.y13f{bottom:114.316000pt;}
.yf8{bottom:114.714667pt;}
.y41{bottom:117.874667pt;}
.y191{bottom:120.080000pt;}
.y14{bottom:120.920000pt;}
.y75{bottom:122.042667pt;}
.ycd{bottom:122.208000pt;}
.ycf{bottom:125.553333pt;}
.y10f{bottom:125.780000pt;}
.y12a{bottom:126.060000pt;}
.y85{bottom:128.224000pt;}
.y1c1{bottom:128.233333pt;}
.y161{bottom:128.966667pt;}
.y13e{bottom:132.886667pt;}
.yf7{bottom:133.285333pt;}
.y40{bottom:136.444000pt;}
.y13{bottom:136.821333pt;}
.y190{bottom:137.102667pt;}
.y74{bottom:140.613333pt;}
.ycc{bottom:140.777333pt;}
.yfb{bottom:142.209333pt;}
.y10e{bottom:144.350667pt;}
.y129{bottom:144.629333pt;}
.y1c0{bottom:145.256000pt;}
.y160{bottom:146.298667pt;}
.yb3{bottom:150.008000pt;}
.y13d{bottom:151.457333pt;}
.yf6{bottom:151.856000pt;}
.y12{bottom:152.721333pt;}
.y18f{bottom:154.125333pt;}
.y3f{bottom:155.014667pt;}
.y73{bottom:159.184000pt;}
.yfa{bottom:159.304000pt;}
.ycb{bottom:159.348000pt;}
.y1bf{bottom:162.278667pt;}
.y10d{bottom:162.920000pt;}
.y128{bottom:163.200000pt;}
.y15f{bottom:163.630667pt;}
.y11{bottom:168.621333pt;}
.yb2{bottom:169.813333pt;}
.y13c{bottom:170.026667pt;}
.yf5{bottom:170.426667pt;}
.y18e{bottom:171.148000pt;}
.y3e{bottom:173.585333pt;}
.y72{bottom:177.753333pt;}
.yca{bottom:177.918667pt;}
.y1be{bottom:179.301333pt;}
.y15e{bottom:180.962667pt;}
.y10c{bottom:181.490667pt;}
.y127{bottom:181.770667pt;}
.y10{bottom:184.521333pt;}
.yb0{bottom:185.753333pt;}
.y18d{bottom:188.170667pt;}
.y13b{bottom:188.597333pt;}
.yf4{bottom:188.996000pt;}
.y3d{bottom:192.154667pt;}
.y71{bottom:196.324000pt;}
.yc9{bottom:196.488000pt;}
.yfd{bottom:198.536000pt;}
.y10b{bottom:200.061333pt;}
.y126{bottom:200.340000pt;}
.yf{bottom:200.422667pt;}
.yb1{bottom:201.693333pt;}
.y18c{bottom:205.193333pt;}
.y15d{bottom:206.265333pt;}
.y13a{bottom:207.168000pt;}
.yf3{bottom:207.566667pt;}
.y1bd{bottom:213.346667pt;}
.y3c{bottom:214.710667pt;}
.y70{bottom:214.894667pt;}
.yc8{bottom:215.058667pt;}
.yfc{bottom:215.632000pt;}
.yaf{bottom:217.634667pt;}
.y10a{bottom:218.632000pt;}
.y125{bottom:218.910667pt;}
.y18b{bottom:222.216000pt;}
.y15c{bottom:223.597333pt;}
.ye{bottom:224.293333pt;}
.yde{bottom:225.429333pt;}
.y139{bottom:225.737333pt;}
.yf2{bottom:226.137333pt;}
.y1bc{bottom:230.369333pt;}
.y6f{bottom:233.464000pt;}
.yad{bottom:233.574667pt;}
.yc7{bottom:233.629333pt;}
.y109{bottom:237.201333pt;}
.y124{bottom:237.481333pt;}
.y18a{bottom:239.238667pt;}
.yd{bottom:240.193333pt;}
.y15b{bottom:240.929333pt;}
.ydd{bottom:244.000000pt;}
.y138{bottom:244.308000pt;}
.yf1{bottom:244.706667pt;}
.y1bb{bottom:247.392000pt;}
.yae{bottom:249.514667pt;}
.y6e{bottom:252.034667pt;}
.y108{bottom:255.772000pt;}
.y123{bottom:256.050667pt;}
.yc{bottom:256.093333pt;}
.yc6{bottom:256.184000pt;}
.y189{bottom:256.261333pt;}
.y15a{bottom:258.262667pt;}
.ydc{bottom:262.569333pt;}
.y137{bottom:262.878667pt;}
.y1ba{bottom:264.414667pt;}
.yac{bottom:265.454667pt;}
.yf0{bottom:267.262667pt;}
.y6d{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y188{bottom:273.284000pt;}
.y107{bottom:274.342667pt;}
.y122{bottom:274.621333pt;}
.y159{bottom:275.594667pt;}
.ydb{bottom:281.140000pt;}
.yab{bottom:281.394667pt;}
.y1b9{bottom:281.437333pt;}
.y136{bottom:281.448000pt;}
.y3b{bottom:285.121333pt;}
.yc5{bottom:287.600000pt;}
.ya{bottom:287.894667pt;}
.y6c{bottom:289.176000pt;}
.y187{bottom:290.306667pt;}
.y106{bottom:292.912000pt;}
.y158{bottom:292.926667pt;}
.y121{bottom:293.192000pt;}
.yaa{bottom:297.334667pt;}
.y1b8{bottom:298.460000pt;}
.yef{bottom:298.677333pt;}
.yda{bottom:299.710667pt;}
.y135{bottom:300.018667pt;}
.y3a{bottom:303.690667pt;}
.y9{bottom:303.794667pt;}
.yc4{bottom:306.170667pt;}
.y186{bottom:307.329333pt;}
.y6b{bottom:307.745333pt;}
.y157{bottom:310.258667pt;}
.y105{bottom:311.482667pt;}
.ya9{bottom:313.276000pt;}
.y1b7{bottom:315.482667pt;}
.y120{bottom:315.746667pt;}
.yee{bottom:317.248000pt;}
.yd9{bottom:318.281333pt;}
.y134{bottom:318.589333pt;}
.y8{bottom:319.696000pt;}
.y185{bottom:324.352000pt;}
.yc3{bottom:324.740000pt;}
.y6a{bottom:326.316000pt;}
.ya8{bottom:329.216000pt;}
.y104{bottom:330.053333pt;}
.y11f{bottom:331.222667pt;}
.y1b6{bottom:332.506667pt;}
.y7{bottom:335.596000pt;}
.yed{bottom:335.818667pt;}
.yd8{bottom:336.850667pt;}
.y133{bottom:337.158667pt;}
.y39{bottom:338.201333pt;}
.y156{bottom:339.546667pt;}
.y184{bottom:341.376000pt;}
.yc2{bottom:343.310667pt;}
.y69{bottom:344.886667pt;}
.ya7{bottom:345.156000pt;}
.y103{bottom:348.622667pt;}
.y1b5{bottom:349.529333pt;}
.y6{bottom:351.496000pt;}
.yec{bottom:354.388000pt;}
.yd7{bottom:355.421333pt;}
.y132{bottom:355.729333pt;}
.y38{bottom:356.772000pt;}
.y155{bottom:358.116000pt;}
.y183{bottom:358.398667pt;}
.yc1{bottom:361.881333pt;}
.y11e{bottom:362.637333pt;}
.y68{bottom:363.456000pt;}
.y1b4{bottom:366.552000pt;}
.y102{bottom:367.193333pt;}
.ya5{bottom:367.498667pt;}
.y5{bottom:372.710667pt;}
.yeb{bottom:372.958667pt;}
.yd6{bottom:373.992000pt;}
.y131{bottom:374.300000pt;}
.y37{bottom:375.342667pt;}
.y182{bottom:375.421333pt;}
.ya4{bottom:375.468000pt;}
.y154{bottom:376.686667pt;}
.yc0{bottom:380.450667pt;}
.y11d{bottom:381.208000pt;}
.y67{bottom:382.026667pt;}
.ya6{bottom:383.438667pt;}
.y1b3{bottom:383.574667pt;}
.y4{bottom:388.610667pt;}
.y101{bottom:389.749333pt;}
.yea{bottom:391.529333pt;}
.y181{bottom:392.444000pt;}
.yd5{bottom:392.561333pt;}
.y130{bottom:392.869333pt;}
.y36{bottom:393.912000pt;}
.y153{bottom:395.257333pt;}
.ybf{bottom:399.021333pt;}
.y11c{bottom:399.778667pt;}
.y66{bottom:400.597333pt;}
.y3{bottom:404.510667pt;}
.y100{bottom:405.224000pt;}
.y180{bottom:409.466667pt;}
.ye9{bottom:410.098667pt;}
.y35{bottom:412.482667pt;}
.y1c5{bottom:413.416000pt;}
.y152{bottom:413.826667pt;}
.yd4{bottom:415.117333pt;}
.ya3{bottom:415.130667pt;}
.ybe{bottom:417.592000pt;}
.y1b2{bottom:417.620000pt;}
.y11b{bottom:418.348000pt;}
.y65{bottom:419.166667pt;}
.y2{bottom:420.412000pt;}
.y12f{bottom:424.538667pt;}
.y17f{bottom:426.489333pt;}
.ye8{bottom:428.669333pt;}
.y1c4{bottom:430.438667pt;}
.y34{bottom:431.053333pt;}
.yff{bottom:431.260000pt;}
.y151{bottom:432.397333pt;}
.y1b1{bottom:434.642667pt;}
.ybd{bottom:436.161333pt;}
.y11a{bottom:436.918667pt;}
.y64{bottom:437.737333pt;}
.y1{bottom:441.625333pt;}
.y12e{bottom:441.634667pt;}
.y17e{bottom:443.512000pt;}
.yd3{bottom:443.690667pt;}
.ye7{bottom:447.240000pt;}
.y1c3{bottom:447.461333pt;}
.ya2{bottom:448.113333pt;}
.yfe{bottom:448.356000pt;}
.y33{bottom:449.622667pt;}
.y150{bottom:450.968000pt;}
.y1b0{bottom:451.665333pt;}
.ybc{bottom:454.732000pt;}
.y119{bottom:455.489333pt;}
.y63{bottom:456.308000pt;}
.y12d{bottom:458.730667pt;}
.y17d{bottom:460.534667pt;}
.yd2{bottom:460.786667pt;}
.ye6{bottom:465.810667pt;}
.ya1{bottom:466.682667pt;}
.y32{bottom:468.193333pt;}
.y1af{bottom:468.688000pt;}
.y14f{bottom:469.537333pt;}
.ybb{bottom:473.302667pt;}
.y118{bottom:474.058667pt;}
.y62{bottom:474.877333pt;}
.y17c{bottom:477.557333pt;}
.ye5{bottom:484.380000pt;}
.ya0{bottom:485.253333pt;}
.y1ae{bottom:485.710667pt;}
.y31{bottom:486.764000pt;}
.y14e{bottom:488.108000pt;}
.yba{bottom:491.873333pt;}
.y117{bottom:492.629333pt;}
.y61{bottom:493.448000pt;}
.y17b{bottom:494.580000pt;}
.y1ad{bottom:502.733333pt;}
.ye4{bottom:502.950667pt;}
.y9f{bottom:503.824000pt;}
.y30{bottom:505.333333pt;}
.y14d{bottom:506.678667pt;}
.yb9{bottom:510.442667pt;}
.y116{bottom:511.200000pt;}
.y17a{bottom:511.602667pt;}
.y60{bottom:512.018667pt;}
.y1ac{bottom:519.756000pt;}
.ye3{bottom:521.521333pt;}
.y9e{bottom:522.393333pt;}
.y2f{bottom:523.904000pt;}
.y14c{bottom:525.248000pt;}
.y84{bottom:526.086667pt;}
.y179{bottom:528.625333pt;}
.yb8{bottom:529.013333pt;}
.y5f{bottom:530.589333pt;}
.y1ab{bottom:536.778667pt;}
.y9d{bottom:540.964000pt;}
.y2e{bottom:542.474667pt;}
.y115{bottom:542.869333pt;}
.y14b{bottom:543.818667pt;}
.ye2{bottom:544.076000pt;}
.y83{bottom:544.657333pt;}
.y178{bottom:545.648000pt;}
.y5e{bottom:549.158667pt;}
.y1aa{bottom:553.801333pt;}
.y9c{bottom:559.534667pt;}
.y114{bottom:559.965333pt;}
.yb7{bottom:560.682667pt;}
.y2d{bottom:561.044000pt;}
.y14a{bottom:562.389333pt;}
.y177{bottom:562.670667pt;}
.y82{bottom:563.228000pt;}
.y5d{bottom:567.729333pt;}
.y1a9{bottom:570.824000pt;}
.ye1{bottom:572.650667pt;}
.y113{bottom:577.060000pt;}
.yb6{bottom:577.778667pt;}
.y9b{bottom:578.104000pt;}
.y2c{bottom:579.614667pt;}
.y176{bottom:579.693333pt;}
.y149{bottom:580.960000pt;}
.y81{bottom:581.797333pt;}
.y5c{bottom:586.300000pt;}
.y1a8{bottom:587.846667pt;}
.ye0{bottom:589.746667pt;}
.y112{bottom:594.156000pt;}
.y175{bottom:596.716000pt;}
.y2b{bottom:598.185333pt;}
.y148{bottom:599.529333pt;}
.y80{bottom:600.368000pt;}
.y9a{bottom:600.660000pt;}
.y5b{bottom:604.869333pt;}
.ydf{bottom:606.841333pt;}
.y174{bottom:613.738667pt;}
.y2a{bottom:616.754667pt;}
.y147{bottom:618.100000pt;}
.y7f{bottom:618.938667pt;}
.y1a7{bottom:621.892000pt;}
.y5a{bottom:623.440000pt;}
.y173{bottom:630.761333pt;}
.y99{bottom:632.074667pt;}
.y29{bottom:635.325333pt;}
.y146{bottom:636.670667pt;}
.y7e{bottom:637.508000pt;}
.y1a6{bottom:638.914667pt;}
.y59{bottom:642.010667pt;}
.y172{bottom:647.784000pt;}
.y98{bottom:650.645333pt;}
.y1a5{bottom:655.937333pt;}
.y7d{bottom:656.078667pt;}
.y145{bottom:659.225333pt;}
.y58{bottom:660.580000pt;}
.y171{bottom:668.792000pt;}
.y97{bottom:669.216000pt;}
.y28{bottom:670.898667pt;}
.y1a4{bottom:672.961333pt;}
.y7c{bottom:674.649333pt;}
.y144{bottom:677.796000pt;}
.y57{bottom:679.150667pt;}
.y27{bottom:685.245333pt;}
.y96{bottom:687.786667pt;}
.y1a3{bottom:689.984000pt;}
.y7b{bottom:693.218667pt;}
.y143{bottom:696.365333pt;}
.y56{bottom:697.721333pt;}
.y26{bottom:703.449333pt;}
.y170{bottom:704.260000pt;}
.y95{bottom:706.356000pt;}
.y1a2{bottom:707.006667pt;}
.y7a{bottom:711.789333pt;}
.y25{bottom:713.937333pt;}
.y142{bottom:714.936000pt;}
.y55{bottom:716.290667pt;}
.y16f{bottom:721.592000pt;}
.y1a1{bottom:724.029333pt;}
.y94{bottom:724.926667pt;}
.y24{bottom:728.284000pt;}
.y79{bottom:730.360000pt;}
.y23{bottom:732.141333pt;}
.y54{bottom:734.861333pt;}
.y141{bottom:737.492000pt;}
.y16e{bottom:738.924000pt;}
.y1a0{bottom:741.052000pt;}
.y22{bottom:742.630667pt;}
.y93{bottom:743.497333pt;}
.y78{bottom:752.914667pt;}
.y53{bottom:753.432000pt;}
.y16d{bottom:756.256000pt;}
.y19f{bottom:758.074667pt;}
.y21{bottom:760.833333pt;}
.y92{bottom:762.066667pt;}
.y20{bottom:771.322667pt;}
.y52{bottom:772.002667pt;}
.y16c{bottom:773.588000pt;}
.y77{bottom:774.632000pt;}
.y19e{bottom:775.097333pt;}
.y91{bottom:780.637333pt;}
.y1f{bottom:785.669333pt;}
.y51{bottom:790.572000pt;}
.y19d{bottom:792.120000pt;}
.y90{bottom:799.208000pt;}
.y1e{bottom:800.014667pt;}
.y1d{bottom:803.873333pt;}
.y16b{bottom:804.381333pt;}
.y50{bottom:809.142667pt;}
.y8f{bottom:821.762667pt;}
.y16a{bottom:825.698667pt;}
.y19c{bottom:826.165333pt;}
.y4f{bottom:827.713333pt;}
.y19b{bottom:843.188000pt;}
.y1c{bottom:843.585333pt;}
.y4e{bottom:846.282667pt;}
.y169{bottom:860.209333pt;}
.y19a{bottom:860.210667pt;}
.y8e{bottom:861.309333pt;}
.y1b{bottom:862.156000pt;}
.y4d{bottom:864.853333pt;}
.y199{bottom:877.233333pt;}
.y8d{bottom:877.250667pt;}
.y4c{bottom:883.424000pt;}
.y168{bottom:885.512000pt;}
.y8c{bottom:893.190667pt;}
.y198{bottom:894.256000pt;}
.y1a{bottom:896.665333pt;}
.y4b{bottom:901.993333pt;}
.y167{bottom:902.844000pt;}
.y8b{bottom:909.130667pt;}
.y197{bottom:911.278667pt;}
.y166{bottom:920.176000pt;}
.y4a{bottom:920.564000pt;}
.y19{bottom:924.521333pt;}
.y8a{bottom:925.070667pt;}
.y196{bottom:928.301333pt;}
.y49{bottom:939.134667pt;}
.y89{bottom:941.010667pt;}
.y195{bottom:945.324000pt;}
.y165{bottom:945.478667pt;}
.y18{bottom:952.377333pt;}
.y48{bottom:957.704000pt;}
.y194{bottom:962.346667pt;}
.y164{bottom:962.810667pt;}
.y88{bottom:963.353333pt;}
.y87{bottom:973.962667pt;}
.y47{bottom:976.274667pt;}
.y193{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.y163{bottom:988.113333pt;}
.y46{bottom:994.845333pt;}
.y192{bottom:996.392000pt;}
.y45{bottom:1013.414667pt;}
.y86{bottom:1014.732000pt;}
.y44{bottom:1066.841333pt;}
.h6{height:28.947524pt;}
.h13{height:33.378918pt;}
.h2{height:33.771789pt;}
.h9{height:37.087439pt;}
.hd{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:39.000258pt;}
.hb{height:43.421286pt;}
.ha{height:46.099251pt;}
.h8{height:48.245551pt;}
.h5{height:48.481423pt;}
.h4{height:69.148877pt;}
.hf{height:70.293119pt;}
.he{height:70.298452pt;}
.h12{height:79.098884pt;}
.h10{height:80.122884pt;}
.h11{height:80.128218pt;}
.hc{height:85.349119pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.xa6{left:75.842667pt;}
.x5b{left:77.161333pt;}
.x5c{left:78.393333pt;}
.x5a{left:88.881333pt;}
.x5d{left:97.514667pt;}
.x54{left:110.957333pt;}
.x59{left:112.844000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x97{left:225.896000pt;}
.x9e{left:230.658667pt;}
.x9a{left:234.732000pt;}
.x4{left:239.790667pt;}
.xa7{left:246.612000pt;}
.xc{left:250.204000pt;}
.xa3{left:252.608000pt;}
.x50{left:254.012000pt;}
.xa5{left:256.522667pt;}
.x5e{left:258.698667pt;}
.x78{left:260.470667pt;}
.x5f{left:262.158667pt;}
.x2b{left:267.072000pt;}
.x27{left:268.732000pt;}
.x55{left:271.357333pt;}
.x2c{left:273.713333pt;}
.x2d{left:277.101333pt;}
.x30{left:280.085333pt;}
.x28{left:282.016000pt;}
.x29{left:285.402667pt;}
.x24{left:286.645333pt;}
.x2e{left:290.384000pt;}
.x48{left:291.788000pt;}
.x2f{left:293.772000pt;}
.x99{left:297.681333pt;}
.x2a{left:298.686667pt;}
.x25{left:299.929333pt;}
.x4b{left:301.717333pt;}
.x37{left:302.898667pt;}
.x4f{left:303.850667pt;}
.x51{left:305.106667pt;}
.x26{left:306.524000pt;}
.x31{left:313.161333pt;}
.x3e{left:314.460000pt;}
.x4c{left:315.504000pt;}
.x35{left:316.573333pt;}
.x23{left:320.272000pt;}
.x3f{left:322.421333pt;}
.x47{left:328.842667pt;}
.x36{left:329.857333pt;}
.x6{left:333.461333pt;}
.x40{left:334.544000pt;}
.x1b{left:341.101333pt;}
.x7{left:342.208000pt;}
.x52{left:347.596000pt;}
.x8{left:350.185333pt;}
.x1c{left:354.384000pt;}
.xf{left:359.752000pt;}
.x53{left:360.878667pt;}
.x9{left:362.326667pt;}
.x6d{left:364.108000pt;}
.x10{left:366.394667pt;}
.x11{left:369.705333pt;}
.x6e{left:371.980000pt;}
.x46{left:375.380000pt;}
.x12{left:376.346667pt;}
.x6f{left:379.369333pt;}
.x56{left:387.558667pt;}
.x70{left:390.273333pt;}
.x9f{left:394.173333pt;}
.x32{left:396.629333pt;}
.x60{left:402.244000pt;}
.x61{left:404.276000pt;}
.x64{left:405.670667pt;}
.x63{left:408.885333pt;}
.x33{left:409.913333pt;}
.x34{left:413.300000pt;}
.xd{left:416.001333pt;}
.xe{left:422.644000pt;}
.x1f{left:426.160000pt;}
.x8b{left:431.242667pt;}
.x20{left:439.444000pt;}
.x21{left:442.832000pt;}
.x8c{left:444.526667pt;}
.x38{left:452.626667pt;}
.x8e{left:454.141333pt;}
.x22{left:456.114667pt;}
.x4d{left:459.556000pt;}
.x42{left:465.194667pt;}
.x8f{left:467.424000pt;}
.x4e{left:468.356000pt;}
.x39{left:469.277333pt;}
.x93{left:477.862667pt;}
.x13{left:479.646667pt;}
.x94{left:481.249333pt;}
.x1d{left:482.258667pt;}
.x14{left:486.289333pt;}
.x83{left:491.145333pt;}
.x15{left:493.057333pt;}
.x95{left:494.533333pt;}
.x1e{left:495.542667pt;}
.xa{left:497.697333pt;}
.x16{left:499.698667pt;}
.x84{left:504.429333pt;}
.xb{left:506.498667pt;}
.x85{left:507.684000pt;}
.x86{left:520.966667pt;}
.x87{left:524.221333pt;}
.x43{left:525.734667pt;}
.x57{left:527.836000pt;}
.x88{left:537.505333pt;}
.x44{left:539.018667pt;}
.x65{left:541.582667pt;}
.x62{left:544.532000pt;}
.x17{left:550.734667pt;}
.x49{left:553.985333pt;}
.x8d{left:557.348000pt;}
.x18{left:564.017333pt;}
.x4a{left:567.268000pt;}
.x58{left:570.360000pt;}
.xa1{left:572.409333pt;}
.x7d{left:575.089333pt;}
.xa2{left:581.209333pt;}
.x6a{left:583.230667pt;}
.x7b{left:585.006667pt;}
.x6b{left:586.618667pt;}
.x68{left:587.581333pt;}
.x7c{left:593.806667pt;}
.x9d{left:595.294667pt;}
.x6c{left:599.901333pt;}
.x66{left:601.949333pt;}
.x71{left:603.518667pt;}
.x77{left:608.069333pt;}
.x67{left:615.233333pt;}
.x72{left:616.802667pt;}
.x73{left:620.057333pt;}
.x90{left:628.846667pt;}
.x74{left:633.340000pt;}
.x75{left:636.594667pt;}
.x80{left:641.444000pt;}
.x91{left:645.404000pt;}
.x76{left:649.878667pt;}
.x96{left:653.894667pt;}
.x81{left:656.706667pt;}
.x92{left:658.688000pt;}
.x89{left:663.992000pt;}
.x98{left:666.561333pt;}
.x82{left:667.682667pt;}
.x9c{left:675.666667pt;}
.x8a{left:680.556000pt;}
.x3a{left:690.234667pt;}
.xa0{left:692.568000pt;}
.x41{left:698.901333pt;}
.x69{left:701.121333pt;}
.x3b{left:703.517333pt;}
.x45{left:704.654667pt;}
.x3c{left:706.905333pt;}
.x79{left:714.057333pt;}
.x3d{left:720.188000pt;}
.x7a{left:722.857333pt;}
.x19{left:727.013333pt;}
.x9b{left:729.670667pt;}
.x7e{left:730.680000pt;}
.x7f{left:737.780000pt;}
.x1a{left:740.296000pt;}
.xa4{left:742.681333pt;}
}




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