
    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_8b1e40a0779903ac9c048c4a.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_21d213c909476aa075ca09b6.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_f628202454c2fd8d4db420bd.woff')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_af7cb6f8db70080072041783.woff')format("woff");}.ff4{font-family:ff4;line-height:0.731000;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_1d782ad6caaf268b97349b98.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c1217012e62659904378a02b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.803000;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_fccf2cd1638f21c4d822c7c6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740000;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;}
.m11{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);}
.m13{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);}
.m10{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);}
.m15{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);}
.m27{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);}
.m1a{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);}
.m19{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);}
.mc{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);}
.m23{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);}
.m20{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);}
.m6{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);}
.m14{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m22{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);}
.m1d{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);}
.m2{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);}
.md{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);}
.m1{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m21{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);}
.m7{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);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m17{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);}
.m16{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);}
.m24{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);}
.m18{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);}
.m3{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);}
.mb{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);}
.mf{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);}
.m25{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);}
.m4{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);}
.ma{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);}
.m26{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);}
.m29{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);}
.m1c{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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.364000px;}
.v4{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:28.392000px;}
.v5{vertical-align:35.868000px;}
.v7{vertical-align:56.784000px;}
.lsb{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.000292px;}
.ls1{letter-spacing:0.000600px;}
.ls26{letter-spacing:0.000608px;}
.ls38{letter-spacing:0.000800px;}
.ls3a{letter-spacing:0.001102px;}
.ls42{letter-spacing:0.001155px;}
.ls5{letter-spacing:0.001613px;}
.ls6{letter-spacing:0.001933px;}
.ls3e{letter-spacing:0.004800px;}
.lsd{letter-spacing:0.717483px;}
.lsc{letter-spacing:0.746725px;}
.ls2{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls2f{letter-spacing:3.507900px;}
.ls0{letter-spacing:8.367300px;}
.lsa{letter-spacing:11.954850px;}
.ls29{letter-spacing:11.955746px;}
.ls2a{letter-spacing:12.524693px;}
.ls28{letter-spacing:12.530693px;}
.ls31{letter-spacing:13.117623px;}
.ls32{letter-spacing:13.269057px;}
.ls37{letter-spacing:13.406687px;}
.ls30{letter-spacing:13.448400px;}
.ls35{letter-spacing:13.454400px;}
.ls49{letter-spacing:13.458563px;}
.ls47{letter-spacing:13.486956px;}
.ls48{letter-spacing:13.532291px;}
.ls39{letter-spacing:13.568472px;}
.ls46{letter-spacing:13.595809px;}
.ls43{letter-spacing:13.601863px;}
.ls36{letter-spacing:13.651112px;}
.ls3c{letter-spacing:13.711821px;}
.ls3b{letter-spacing:14.179812px;}
.ls2d{letter-spacing:14.739419px;}
.ls2e{letter-spacing:14.741374px;}
.ls9{letter-spacing:14.834034px;}
.lsf{letter-spacing:14.841918px;}
.lse{letter-spacing:14.926605px;}
.ls1b{letter-spacing:14.943292px;}
.ls1a{letter-spacing:14.944200px;}
.ls11{letter-spacing:14.944766px;}
.ls19{letter-spacing:14.955258px;}
.ls18{letter-spacing:14.968156px;}
.ls44{letter-spacing:14.973929px;}
.ls1c{letter-spacing:14.980200px;}
.ls13{letter-spacing:15.017525px;}
.ls25{letter-spacing:15.137585px;}
.ls24{letter-spacing:15.139500px;}
.ls23{letter-spacing:15.203219px;}
.ls22{letter-spacing:15.206425px;}
.ls1d{letter-spacing:15.231223px;}
.ls21{letter-spacing:15.295873px;}
.ls12{letter-spacing:15.321909px;}
.ls7{letter-spacing:15.388200px;}
.ls15{letter-spacing:15.553002px;}
.ls17{letter-spacing:15.663483px;}
.ls20{letter-spacing:15.687986px;}
.ls45{letter-spacing:16.244518px;}
.ls1e{letter-spacing:16.454909px;}
.ls33{letter-spacing:17.385694px;}
.ls3f{letter-spacing:17.597459px;}
.ls10{letter-spacing:17.605943px;}
.ls2b{letter-spacing:18.218082px;}
.ls1f{letter-spacing:18.371024px;}
.ls34{letter-spacing:18.650400px;}
.ls14{letter-spacing:19.211825px;}
.ls2c{letter-spacing:19.382818px;}
.ls41{letter-spacing:20.483153px;}
.ls40{letter-spacing:20.484897px;}
.ls27{letter-spacing:21.735729px;}
.ls4{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls16{letter-spacing:390.010766px;}
.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;}
}
.ws7{word-spacing:-14.943900px;}
.wsa4{word-spacing:-13.449600px;}
.wsc{word-spacing:-11.955150px;}
.wsa{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws97{word-spacing:-4.124516px;}
.ws4d{word-spacing:-2.689902px;}
.ws31{word-spacing:-2.630126px;}
.ws91{word-spacing:-2.391024px;}
.ws95{word-spacing:-2.331248px;}
.ws8d{word-spacing:-2.271473px;}
.ws4e{word-spacing:-2.211697px;}
.ws4a{word-spacing:-2.151922px;}
.ws0{word-spacing:-2.092140px;}
.ws9c{word-spacing:-1.912819px;}
.ws68{word-spacing:-1.733492px;}
.ws83{word-spacing:-1.673717px;}
.wsac{word-spacing:-1.613952px;}
.ws6f{word-spacing:-1.554166px;}
.ws53{word-spacing:-1.494390px;}
.ws54{word-spacing:-1.434614px;}
.ws10d{word-spacing:-1.398758px;}
.ws9e{word-spacing:-1.374839px;}
.wsaa{word-spacing:-1.344960px;}
.wsa9{word-spacing:-1.291162px;}
.ws69{word-spacing:-1.255288px;}
.ws37{word-spacing:-1.195512px;}
.ws6b{word-spacing:-1.135736px;}
.ws10f{word-spacing:-1.129766px;}
.wsa2{word-spacing:-1.075961px;}
.ws113{word-spacing:-1.022170px;}
.wsde{word-spacing:-0.968371px;}
.ws80{word-spacing:-0.896634px;}
.ws28{word-spacing:-0.777083px;}
.ws96{word-spacing:-0.657532px;}
.ws10b{word-spacing:-0.591782px;}
.ws46{word-spacing:-0.418429px;}
.ws109{word-spacing:-0.376589px;}
.ws26{word-spacing:-0.358654px;}
.wsb4{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.wsad{word-spacing:-0.268992px;}
.ws23{word-spacing:-0.239102px;}
.ws82{word-spacing:-0.229475px;}
.wsaf{word-spacing:-0.215194px;}
.ws11{word-spacing:-0.179327px;}
.wsb8{word-spacing:-0.161395px;}
.ws10{word-spacing:-0.119551px;}
.wsbe{word-spacing:-0.107597px;}
.ws8{word-spacing:-0.059776px;}
.wsa7{word-spacing:-0.053798px;}
.wsd{word-spacing:-0.047821px;}
.ws116{word-spacing:-0.028090px;}
.ws9{word-spacing:-0.004357px;}
.ws6a{word-spacing:-0.000814px;}
.ws6{word-spacing:0.000000px;}
.ws75{word-spacing:0.047821px;}
.wsa6{word-spacing:0.053798px;}
.ws19{word-spacing:0.059776px;}
.wsd8{word-spacing:0.107597px;}
.ws1a{word-spacing:0.119551px;}
.wsab{word-spacing:0.161395px;}
.wsf{word-spacing:0.179327px;}
.wsc7{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wse5{word-spacing:0.268992px;}
.ws67{word-spacing:0.286924px;}
.ws34{word-spacing:0.298878px;}
.wsd6{word-spacing:0.322790px;}
.ws35{word-spacing:0.358654px;}
.wse0{word-spacing:0.376589px;}
.ws2b{word-spacing:0.418429px;}
.ws2{word-spacing:0.419562px;}
.ws5{word-spacing:0.422252px;}
.ws30{word-spacing:0.478205px;}
.ws118{word-spacing:0.484186px;}
.wsd4{word-spacing:0.537984px;}
.ws72{word-spacing:0.580490px;}
.ws7b{word-spacing:0.583340px;}
.ws7d{word-spacing:0.583640px;}
.ws79{word-spacing:0.586490px;}
.ws73{word-spacing:0.588908px;}
.ws7a{word-spacing:0.592058px;}
.ws70{word-spacing:0.597004px;}
.ws3d{word-spacing:0.597756px;}
.ws71{word-spacing:0.599100px;}
.ws7c{word-spacing:0.615215px;}
.ws78{word-spacing:0.616554px;}
.ws77{word-spacing:0.618365px;}
.ws8a{word-spacing:0.657532px;}
.wsc3{word-spacing:0.699379px;}
.ws89{word-spacing:0.717307px;}
.ws5e{word-spacing:0.750008px;}
.ws65{word-spacing:0.751752px;}
.wsdc{word-spacing:0.753178px;}
.ws17{word-spacing:0.777083px;}
.ws49{word-spacing:0.836858px;}
.wsfd{word-spacing:0.860774px;}
.ws33{word-spacing:0.956410px;}
.wsc5{word-spacing:0.968371px;}
.ws45{word-spacing:1.016185px;}
.ws88{word-spacing:1.075961px;}
.ws7e{word-spacing:1.135736px;}
.wsfb{word-spacing:1.183565px;}
.ws13{word-spacing:1.195512px;}
.ws36{word-spacing:1.255288px;}
.ws41{word-spacing:1.315063px;}
.ws93{word-spacing:1.434614px;}
.ws24{word-spacing:1.494390px;}
.ws104{word-spacing:1.560154px;}
.ws114{word-spacing:1.613952px;}
.ws16{word-spacing:1.733492px;}
.wsed{word-spacing:1.829146px;}
.wsd7{word-spacing:1.936742px;}
.ws40{word-spacing:2.032370px;}
.ws9d{word-spacing:2.092146px;}
.ws102{word-spacing:2.151936px;}
.wscc{word-spacing:2.313331px;}
.ws1d{word-spacing:2.391024px;}
.ws51{word-spacing:2.450800px;}
.ws117{word-spacing:2.474726px;}
.ws92{word-spacing:2.510575px;}
.ws3f{word-spacing:2.570351px;}
.ws55{word-spacing:2.630126px;}
.wsf1{word-spacing:2.636122px;}
.ws56{word-spacing:2.689902px;}
.wsef{word-spacing:2.797517px;}
.ws39{word-spacing:2.809453px;}
.ws4b{word-spacing:2.869229px;}
.ws107{word-spacing:2.905114px;}
.ws48{word-spacing:2.929004px;}
.ws52{word-spacing:2.988780px;}
.ws94{word-spacing:3.048556px;}
.wsbb{word-spacing:3.066509px;}
.wsae{word-spacing:3.158789px;}
.ws42{word-spacing:3.168107px;}
.wsce{word-spacing:3.217114px;}
.ws105{word-spacing:3.218851px;}
.wsfe{word-spacing:3.221366px;}
.wsf2{word-spacing:3.221587px;}
.wsf3{word-spacing:3.222758px;}
.wsda{word-spacing:3.222922px;}
.wscd{word-spacing:3.224122px;}
.wsa8{word-spacing:3.224822px;}
.ws101{word-spacing:3.226502px;}
.ws2c{word-spacing:3.227882px;}
.wse4{word-spacing:3.227904px;}
.wsd2{word-spacing:3.281702px;}
.ws81{word-spacing:3.287658px;}
.ws8e{word-spacing:3.347434px;}
.ws6c{word-spacing:3.407209px;}
.ws11a{word-spacing:3.496896px;}
.wsa1{word-spacing:3.526760px;}
.ws4c{word-spacing:3.586536px;}
.ws1f{word-spacing:3.608883px;}
.ws1e{word-spacing:3.706087px;}
.ws7f{word-spacing:3.765863px;}
.ws8f{word-spacing:3.825638px;}
.wse{word-spacing:3.841257px;}
.wsbd{word-spacing:3.927283px;}
.ws38{word-spacing:3.945190px;}
.wsa0{word-spacing:4.004965px;}
.wsb1{word-spacing:4.088678px;}
.ws18{word-spacing:4.124516px;}
.ws4f{word-spacing:4.184292px;}
.ws5b{word-spacing:4.244068px;}
.ws5c{word-spacing:4.303843px;}
.ws21{word-spacing:4.303872px;}
.ws15{word-spacing:4.363619px;}
.ws115{word-spacing:4.411469px;}
.ws2d{word-spacing:4.423394px;}
.ws85{word-spacing:4.483170px;}
.ws111{word-spacing:4.519066px;}
.ws90{word-spacing:4.542946px;}
.ws14{word-spacing:4.602721px;}
.ws1c{word-spacing:4.662497px;}
.ws8c{word-spacing:4.782048px;}
.wsba{word-spacing:4.895654px;}
.ws84{word-spacing:5.021150px;}
.ws47{word-spacing:5.200477px;}
.wsb3{word-spacing:5.218445px;}
.ws98{word-spacing:5.260253px;}
.ws3c{word-spacing:5.439580px;}
.ws12{word-spacing:5.559131px;}
.ws2a{word-spacing:5.678682px;}
.ws2e{word-spacing:5.798233px;}
.ws3e{word-spacing:5.977560px;}
.ws9a{word-spacing:6.216662px;}
.ws44{word-spacing:6.336214px;}
.ws6d{word-spacing:6.814418px;}
.wse2{word-spacing:6.832397px;}
.ws43{word-spacing:6.933970px;}
.ws8b{word-spacing:7.113296px;}
.ws50{word-spacing:7.173072px;}
.ws5a{word-spacing:7.531726px;}
.wsa5{word-spacing:7.531776px;}
.ws59{word-spacing:7.830604px;}
.ws9f{word-spacing:7.950155px;}
.ws3a{word-spacing:8.189257px;}
.ws87{word-spacing:8.249033px;}
.ws9b{word-spacing:8.308808px;}
.ws3{word-spacing:8.322734px;}
.ws6e{word-spacing:8.488135px;}
.wsf8{word-spacing:8.876736px;}
.ws32{word-spacing:9.444545px;}
.ws99{word-spacing:9.683647px;}
.ws29{word-spacing:10.341179px;}
.wsc8{word-spacing:10.921075px;}
.ws20{word-spacing:11.904449px;}
.wsff{word-spacing:12.427430px;}
.wsb5{word-spacing:13.019213px;}
.wsf6{word-spacing:13.073011px;}
.wsb6{word-spacing:13.126810px;}
.wsb9{word-spacing:13.180608px;}
.wsd3{word-spacing:13.342003px;}
.ws100{word-spacing:13.384963px;}
.wscb{word-spacing:13.385885px;}
.wse9{word-spacing:13.386682px;}
.wsc4{word-spacing:13.386730px;}
.wsdf{word-spacing:13.387824px;}
.ws106{word-spacing:13.388918px;}
.wsc1{word-spacing:13.388938px;}
.wsf9{word-spacing:13.389475px;}
.wsdb{word-spacing:13.389936px;}
.ws10a{word-spacing:13.390358px;}
.wsf0{word-spacing:13.391626px;}
.ws110{word-spacing:13.392163px;}
.wsea{word-spacing:13.392336px;}
.wse1{word-spacing:13.392365px;}
.wsb0{word-spacing:13.393498px;}
.ws108{word-spacing:13.394275px;}
.wsc2{word-spacing:13.395802px;}
.ws10e{word-spacing:13.429595px;}
.wse7{word-spacing:13.449600px;}
.ws112{word-spacing:13.471439px;}
.wsd9{word-spacing:13.503398px;}
.wsfa{word-spacing:13.557197px;}
.wsc6{word-spacing:13.560648px;}
.wse8{word-spacing:13.610995px;}
.wse6{word-spacing:13.623155px;}
.wsd5{word-spacing:13.718592px;}
.wsfc{word-spacing:14.579366px;}
.ws3b{word-spacing:14.884124px;}
.ws58{word-spacing:15.720983px;}
.wsbc{word-spacing:16.462310px;}
.wsee{word-spacing:16.516109px;}
.wscf{word-spacing:16.569907px;}
.wsf7{word-spacing:16.615958px;}
.wsb7{word-spacing:16.616342px;}
.wsf5{word-spacing:16.616544px;}
.wsf4{word-spacing:16.617274px;}
.wseb{word-spacing:16.618099px;}
.wsc9{word-spacing:16.618704px;}
.wsdd{word-spacing:16.619194px;}
.ws119{word-spacing:16.620048px;}
.ws10c{word-spacing:16.620134px;}
.wsd0{word-spacing:16.622381px;}
.wsbf{word-spacing:16.622918px;}
.wsca{word-spacing:16.623706px;}
.wsec{word-spacing:16.677504px;}
.wsd1{word-spacing:16.838899px;}
.wsc0{word-spacing:17.484480px;}
.wsb2{word-spacing:17.538278px;}
.ws86{word-spacing:17.633802px;}
.ws22{word-spacing:18.470660px;}
.wse3{word-spacing:18.664469px;}
.wsa3{word-spacing:20.819981px;}
.ws2f{word-spacing:21.459440px;}
.ws1{word-spacing:22.179541px;}
.ws103{word-spacing:23.617498px;}
.wsb{word-spacing:40.042186px;}
.ws25{word-spacing:54.814225px;}
.ws5f{word-spacing:168.434134px;}
.ws61{word-spacing:192.465000px;}
.ws74{word-spacing:203.524474px;}
.ws62{word-spacing:222.351000px;}
.ws63{word-spacing:282.124800px;}
.ws60{word-spacing:297.076800px;}
.ws66{word-spacing:341.902800px;}
.ws5d{word-spacing:348.612210px;}
.ws64{word-spacing:441.562836px;}
.ws57{word-spacing:905.586210px;}
.ws76{word-spacing:1031.585983px;}
._41{margin-left:-20.915453px;}
._3{margin-left:-9.683712px;}
._7{margin-left:-7.029628px;}
._9{margin-left:-5.308087px;}
._1{margin-left:-3.849538px;}
._3e{margin-left:-2.657052px;}
._2{margin-left:-1.506341px;}
._5{width:3.000586px;}
._19{width:4.303843px;}
._0{width:10.879128px;}
._3f{width:12.624662px;}
._8{width:13.959304px;}
._40{width:14.982976px;}
._1a{width:16.008064px;}
._3a{width:17.024104px;}
._e{width:18.123958px;}
._a{width:19.199918px;}
._10{width:20.204153px;}
._d{width:21.471391px;}
._17{width:22.475626px;}
._13{width:23.611362px;}
._f{width:24.639498px;}
._14{width:26.002386px;}
._28{width:27.030522px;}
._c{width:28.034756px;}
._37{width:29.660648px;}
._16{width:31.752794px;}
._4{width:33.355008px;}
._b{width:35.148053px;}
._15{width:36.534842px;}
._18{width:38.567213px;}
._29{width:39.702949px;}
._1f{width:42.428734px;}
._38{width:43.815515px;}
._6{width:54.385123px;}
._3b{width:58.490203px;}
._3d{width:61.868160px;}
._3c{width:88.767360px;}
._32{width:122.898942px;}
._30{width:133.993321px;}
._35{width:172.967110px;}
._33{width:184.922260px;}
._36{width:196.016639px;}
._2d{width:204.672168px;}
._2b{width:208.832560px;}
._2c{width:215.479624px;}
._2a{width:243.788544px;}
._26{width:280.168237px;}
._23{width:348.491748px;}
._25{width:363.435648px;}
._21{width:378.379548px;}
._27{width:393.801653px;}
._2f{width:404.658019px;}
._24{width:419.505161px;}
._22{width:434.389285px;}
._1d{width:475.574674px;}
._20{width:477.846146px;}
._1b{width:490.518574px;}
._34{width:491.882692px;}
._1e{width:505.892854px;}
._1c{width:520.406374px;}
._31{width:527.748142px;}
._2e{width:635.152334px;}
._11{width:1722.189600px;}
._39{width:2522.511600px;}
._12{width:2546.421600px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs6{font-size:37.371600px;}
.fs0{font-size:41.842800px;}
.fsb{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs8{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3f{bottom:45.921000px;}
.y9f{bottom:99.864000px;}
.y16{bottom:100.260000px;}
.y194{bottom:104.695500px;}
.y1f9{bottom:105.961500px;}
.y1c7{bottom:110.616000px;}
.y162{bottom:116.407500px;}
.y15{bottom:118.147500px;}
.y17b{bottom:120.322500px;}
.yfd{bottom:120.573000px;}
.y9e{bottom:120.754500px;}
.y193{bottom:124.195500px;}
.y1f8{bottom:125.112000px;}
.y71{bottom:129.274500px;}
.y1c6{bottom:129.766500px;}
.yfc{bottom:134.770500px;}
.y14{bottom:136.035000px;}
.y157{bottom:136.705500px;}
.y161{bottom:137.298000px;}
.y17a{bottom:141.213000px;}
.y9d{bottom:141.646500px;}
.y119{bottom:141.973500px;}
.y192{bottom:143.694000px;}
.y1f7{bottom:144.262500px;}
.y1c5{bottom:148.917000px;}
.y70{bottom:150.166500px;}
.y13{bottom:153.924000px;}
.yfb{bottom:154.062000px;}
.y118{bottom:156.169500px;}
.y156{bottom:157.597500px;}
.y160{bottom:158.190000px;}
.y179{bottom:162.105000px;}
.y9c{bottom:162.538500px;}
.y1f6{bottom:163.413000px;}
.y1c4{bottom:168.067500px;}
.y117{bottom:170.367000px;}
.y6f{bottom:171.058500px;}
.y12{bottom:171.811500px;}
.yfa{bottom:171.994500px;}
.y191{bottom:172.158000px;}
.y155{bottom:178.489500px;}
.y15f{bottom:179.082000px;}
.yca{bottom:179.514000px;}
.y1f5{bottom:182.563500px;}
.y178{bottom:182.997000px;}
.y9b{bottom:183.429000px;}
.y1c3{bottom:187.218000px;}
.y11{bottom:189.699000px;}
.yf9{bottom:189.928500px;}
.y116{bottom:191.766000px;}
.y6e{bottom:191.949000px;}
.yf8{bottom:198.894000px;}
.y154{bottom:199.381500px;}
.y15e{bottom:199.972500px;}
.yc9{bottom:200.406000px;}
.y190{bottom:200.623500px;}
.y1f4{bottom:201.714000px;}
.y177{bottom:203.887500px;}
.y9a{bottom:204.321000px;}
.y115{bottom:205.962000px;}
.y1c2{bottom:206.368500px;}
.y10{bottom:207.586500px;}
.y3e{bottom:211.551000px;}
.y6d{bottom:212.841000px;}
.y18f{bottom:220.122000px;}
.y153{bottom:220.272000px;}
.y15d{bottom:220.864500px;}
.yc8{bottom:221.298000px;}
.y176{bottom:224.779500px;}
.y99{bottom:225.213000px;}
.yf{bottom:225.475500px;}
.y1c1{bottom:225.519000px;}
.yf7{bottom:225.793500px;}
.y114{bottom:227.361000px;}
.y6c{bottom:233.733000px;}
.yf6{bottom:234.759000px;}
.y18e{bottom:239.622000px;}
.y1f3{bottom:240.015000px;}
.y152{bottom:241.164000px;}
.y113{bottom:241.558500px;}
.y15c{bottom:241.756500px;}
.yc7{bottom:242.190000px;}
.y1c0{bottom:244.669500px;}
.y175{bottom:245.671500px;}
.y98{bottom:246.105000px;}
.y10f{bottom:248.712000px;}
.y3d{bottom:250.375500px;}
.y112{bottom:250.614000px;}
.ye{bottom:252.330000px;}
.y6b{bottom:254.625000px;}
.y18d{bottom:259.120500px;}
.y1f2{bottom:259.165500px;}
.yf5{bottom:261.658500px;}
.y151{bottom:262.056000px;}
.y15b{bottom:262.647000px;}
.y111{bottom:262.957500px;}
.yc6{bottom:263.080500px;}
.y1bf{bottom:263.820000px;}
.y174{bottom:266.563500px;}
.y97{bottom:266.995500px;}
.yd{bottom:270.217500px;}
.yf4{bottom:270.625500px;}
.y3c{bottom:271.267500px;}
.y6a{bottom:275.515500px;}
.y110{bottom:277.153500px;}
.y1f1{bottom:278.316000px;}
.y150{bottom:282.946500px;}
.y1be{bottom:282.970500px;}
.y15a{bottom:283.539000px;}
.yc5{bottom:283.972500px;}
.y173{bottom:287.454000px;}
.y18c{bottom:287.584500px;}
.y96{bottom:287.887500px;}
.yc{bottom:288.105000px;}
.y3b{bottom:292.158000px;}
.y69{bottom:296.407500px;}
.y1f0{bottom:297.466500px;}
.yf3{bottom:297.525000px;}
.y1bd{bottom:302.122500px;}
.y14f{bottom:303.838500px;}
.y159{bottom:304.431000px;}
.yc4{bottom:304.864500px;}
.yb{bottom:305.994000px;}
.yf2{bottom:306.490500px;}
.y18b{bottom:307.606500px;}
.y172{bottom:308.346000px;}
.y95{bottom:308.779500px;}
.y10e{bottom:310.192500px;}
.y3a{bottom:313.050000px;}
.y1ef{bottom:316.617000px;}
.y68{bottom:317.299500px;}
.y1bc{bottom:321.273000px;}
.ya{bottom:323.881500px;}
.y14e{bottom:324.730500px;}
.y158{bottom:325.323000px;}
.y18a{bottom:327.627000px;}
.y171{bottom:329.238000px;}
.y94{bottom:329.670000px;}
.yc3{bottom:330.238500px;}
.yf1{bottom:333.390000px;}
.y39{bottom:333.942000px;}
.y1ee{bottom:335.767500px;}
.y67{bottom:338.190000px;}
.y1bb{bottom:340.423500px;}
.y9{bottom:341.769000px;}
.yf0{bottom:342.355500px;}
.y14d{bottom:345.621000px;}
.y10d{bottom:346.213500px;}
.y170{bottom:350.128500px;}
.y93{bottom:350.562000px;}
.y38{bottom:354.832500px;}
.y1ed{bottom:354.918000px;}
.y66{bottom:359.082000px;}
.y1ba{bottom:359.574000px;}
.y8{bottom:359.658000px;}
.y189{bottom:365.581500px;}
.y14c{bottom:366.513000px;}
.y10c{bottom:367.105500px;}
.yc2{bottom:369.063000px;}
.y16f{bottom:371.020500px;}
.y92{bottom:371.454000px;}
.y1ec{bottom:374.070000px;}
.y37{bottom:375.724500px;}
.yef{bottom:376.458000px;}
.y7{bottom:377.545500px;}
.y1b9{bottom:378.724500px;}
.y65{bottom:379.974000px;}
.yee{bottom:385.423500px;}
.y188{bottom:386.472000px;}
.y14b{bottom:387.405000px;}
.y10b{bottom:387.997500px;}
.y1fc{bottom:388.489500px;}
.yc1{bottom:389.955000px;}
.y91{bottom:392.344500px;}
.y1eb{bottom:393.220500px;}
.y6{bottom:395.433000px;}
.y16e{bottom:396.394500px;}
.y36{bottom:396.616500px;}
.y1b8{bottom:397.875000px;}
.y64{bottom:400.864500px;}
.y187{bottom:407.364000px;}
.y1fb{bottom:407.640000px;}
.y14a{bottom:408.295500px;}
.y10a{bottom:408.888000px;}
.yc0{bottom:410.845500px;}
.y1ea{bottom:412.371000px;}
.y1b7{bottom:417.025500px;}
.y35{bottom:417.508500px;}
.y90{bottom:417.720000px;}
.y5{bottom:419.299500px;}
.y63{bottom:421.756500px;}
.y1fa{bottom:426.790500px;}
.yed{bottom:427.056000px;}
.y186{bottom:428.256000px;}
.y149{bottom:429.187500px;}
.y109{bottom:429.780000px;}
.y1e9{bottom:431.521500px;}
.ybf{bottom:431.737500px;}
.y1b6{bottom:436.176000px;}
.y4{bottom:437.187000px;}
.y34{bottom:438.399000px;}
.y62{bottom:442.648500px;}
.y185{bottom:449.146500px;}
.y148{bottom:450.079500px;}
.y108{bottom:450.672000px;}
.ybe{bottom:452.629500px;}
.y8f{bottom:453.061500px;}
.y3{bottom:455.074500px;}
.y1b5{bottom:455.326500px;}
.y33{bottom:459.291000px;}
.y61{bottom:463.539000px;}
.yec{bottom:464.160000px;}
.y1e8{bottom:469.822500px;}
.y184{bottom:470.038500px;}
.y147{bottom:470.970000px;}
.y107{bottom:471.562500px;}
.y2{bottom:472.963500px;}
.ybd{bottom:473.520000px;}
.y8e{bottom:473.953500px;}
.y1b4{bottom:474.477000px;}
.y32{bottom:480.183000px;}
.y60{bottom:484.431000px;}
.yeb{bottom:485.052000px;}
.y1e7{bottom:488.973000px;}
.y183{bottom:490.930500px;}
.y146{bottom:491.862000px;}
.y106{bottom:492.454500px;}
.y1b3{bottom:493.627500px;}
.ybc{bottom:494.412000px;}
.y8d{bottom:494.845500px;}
.y1{bottom:496.828500px;}
.y31{bottom:501.073500px;}
.y5f{bottom:505.323000px;}
.yea{bottom:505.944000px;}
.y1e6{bottom:508.123500px;}
.y182{bottom:511.822500px;}
.y1b2{bottom:512.778000px;}
.y105{bottom:513.346500px;}
.ybb{bottom:515.304000px;}
.y8c{bottom:515.737500px;}
.y145{bottom:517.237500px;}
.y30{bottom:521.965500px;}
.y5e{bottom:526.215000px;}
.ye9{bottom:526.834500px;}
.y1e5{bottom:527.274000px;}
.y1b1{bottom:531.928500px;}
.y181{bottom:532.713000px;}
.y104{bottom:534.237000px;}
.yba{bottom:536.194500px;}
.y8b{bottom:536.628000px;}
.y144{bottom:541.669500px;}
.y2f{bottom:542.857500px;}
.y1e4{bottom:546.424500px;}
.y5d{bottom:547.105500px;}
.ye8{bottom:547.726500px;}
.y1b0{bottom:551.079000px;}
.y180{bottom:553.605000px;}
.y103{bottom:555.129000px;}
.yb9{bottom:557.086500px;}
.y8a{bottom:557.520000px;}
.y2e{bottom:563.748000px;}
.y1e3{bottom:565.575000px;}
.y5c{bottom:567.997500px;}
.ye7{bottom:568.618500px;}
.y1af{bottom:570.229500px;}
.y17f{bottom:574.497000px;}
.y102{bottom:576.021000px;}
.yb8{bottom:577.978500px;}
.y89{bottom:578.412000px;}
.y143{bottom:582.453000px;}
.y2d{bottom:584.640000px;}
.y1e2{bottom:584.725500px;}
.y5b{bottom:588.889500px;}
.y1ae{bottom:589.380000px;}
.ye6{bottom:589.509000px;}
.y17e{bottom:595.387500px;}
.y101{bottom:596.913000px;}
.yb7{bottom:598.870500px;}
.y88{bottom:599.302500px;}
.y142{bottom:603.613500px;}
.y1e1{bottom:603.876000px;}
.y2c{bottom:605.532000px;}
.y1ad{bottom:608.530500px;}
.y5a{bottom:609.780000px;}
.ye5{bottom:610.401000px;}
.y17d{bottom:616.279500px;}
.y140{bottom:616.785000px;}
.y100{bottom:617.803500px;}
.y141{bottom:617.811000px;}
.yb6{bottom:619.761000px;}
.y87{bottom:620.194500px;}
.y1e0{bottom:623.026500px;}
.y2b{bottom:626.422500px;}
.y1ac{bottom:627.681000px;}
.y59{bottom:630.672000px;}
.ye4{bottom:631.293000px;}
.y13f{bottom:632.007000px;}
.yff{bottom:638.695500px;}
.y16d{bottom:640.653000px;}
.y86{bottom:641.086500px;}
.y17c{bottom:641.653500px;}
.y1df{bottom:642.177000px;}
.yb5{bottom:645.136500px;}
.y1ab{bottom:646.831500px;}
.y2a{bottom:647.314500px;}
.y58{bottom:651.564000px;}
.y13e{bottom:653.406000px;}
.yfe{bottom:659.587500px;}
.y1de{bottom:661.327500px;}
.y16c{bottom:661.545000px;}
.y85{bottom:661.977000px;}
.y1aa{bottom:665.982000px;}
.y13c{bottom:666.577500px;}
.y13d{bottom:667.603500px;}
.y29{bottom:668.206500px;}
.y57{bottom:672.454500px;}
.ye3{bottom:673.488000px;}
.yb4{bottom:680.478000px;}
.y13b{bottom:681.799500px;}
.y16b{bottom:682.435500px;}
.y84{bottom:682.869000px;}
.y1a9{bottom:685.134000px;}
.y28{bottom:689.098500px;}
.ye2{bottom:692.779500px;}
.y56{bottom:693.346500px;}
.y1dd{bottom:699.628500px;}
.yb3{bottom:701.370000px;}
.y13a{bottom:703.198500px;}
.y16a{bottom:703.327500px;}
.y83{bottom:703.761000px;}
.y1a8{bottom:704.284500px;}
.y27{bottom:709.989000px;}
.ye1{bottom:710.713500px;}
.y55{bottom:714.238500px;}
.y138{bottom:716.370000px;}
.y139{bottom:717.396000px;}
.y1dc{bottom:718.779000px;}
.yb2{bottom:722.262000px;}
.y1a7{bottom:723.435000px;}
.y169{bottom:724.219500px;}
.y82{bottom:724.651500px;}
.ye0{bottom:728.646000px;}
.y26{bottom:730.881000px;}
.y137{bottom:731.592000px;}
.y54{bottom:735.129000px;}
.y1db{bottom:737.929500px;}
.y1a6{bottom:742.585500px;}
.yb1{bottom:743.152500px;}
.y168{bottom:745.110000px;}
.y81{bottom:745.543500px;}
.ydf{bottom:746.578500px;}
.y135{bottom:752.991000px;}
.y53{bottom:756.021000px;}
.y1da{bottom:757.081500px;}
.y1a5{bottom:761.736000px;}
.yb0{bottom:764.044500px;}
.yde{bottom:764.511000px;}
.y167{bottom:766.002000px;}
.y80{bottom:766.435500px;}
.y134{bottom:767.188500px;}
.y25{bottom:770.901000px;}
.y136{bottom:774.286500px;}
.y1d9{bottom:776.232000px;}
.y52{bottom:776.913000px;}
.y1a4{bottom:780.886500px;}
.y133{bottom:781.384500px;}
.ydd{bottom:782.443500px;}
.yaf{bottom:784.936500px;}
.y166{bottom:786.894000px;}
.y24{bottom:787.039500px;}
.y7f{bottom:787.327500px;}
.y1d8{bottom:795.382500px;}
.y132{bottom:795.582000px;}
.y51{bottom:797.805000px;}
.y1a3{bottom:800.037000px;}
.ydc{bottom:800.376000px;}
.yae{bottom:805.827000px;}
.y23{bottom:807.519000px;}
.y165{bottom:807.784500px;}
.y7e{bottom:808.218000px;}
.y1d7{bottom:814.533000px;}
.y130{bottom:816.981000px;}
.ydb{bottom:818.310000px;}
.y50{bottom:818.695500px;}
.y1a2{bottom:819.187500px;}
.y22{bottom:819.319500px;}
.yad{bottom:826.719000px;}
.y164{bottom:828.676500px;}
.y7d{bottom:829.110000px;}
.y12f{bottom:831.177000px;}
.y1d6{bottom:833.683500px;}
.yda{bottom:836.242500px;}
.y131{bottom:838.276500px;}
.y1a1{bottom:838.338000px;}
.y4f{bottom:839.587500px;}
.y21{bottom:839.799000px;}
.y12e{bottom:845.374500px;}
.yac{bottom:847.611000px;}
.y20{bottom:851.598000px;}
.y1d5{bottom:852.834000px;}
.y163{bottom:854.052000px;}
.yd9{bottom:854.175000px;}
.y7c{bottom:854.484000px;}
.y1a0{bottom:857.488500px;}
.y12d{bottom:859.570500px;}
.y4e{bottom:860.479500px;}
.yab{bottom:868.503000px;}
.y1d4{bottom:871.984500px;}
.y1f{bottom:872.077500px;}
.y19f{bottom:876.639000px;}
.yd8{bottom:879.310500px;}
.y12b{bottom:880.969500px;}
.y4d{bottom:881.370000px;}
.y1e{bottom:883.878000px;}
.yaa{bottom:889.393500px;}
.y7b{bottom:889.827000px;}
.y1d3{bottom:891.135000px;}
.y12a{bottom:895.167000px;}
.y19e{bottom:895.789500px;}
.yd7{bottom:897.243000px;}
.y4c{bottom:902.262000px;}
.y12c{bottom:902.265000px;}
.y1d{bottom:904.357500px;}
.y129{bottom:909.363000px;}
.ya9{bottom:910.285500px;}
.y7a{bottom:910.719000px;}
.y19d{bottom:914.940000px;}
.yd6{bottom:915.175500px;}
.y4b{bottom:923.154000px;}
.y128{bottom:923.560500px;}
.y1d2{bottom:929.436000px;}
.ya8{bottom:931.177500px;}
.yd5{bottom:933.108000px;}
.y19c{bottom:934.090500px;}
.y79{bottom:936.093000px;}
.y4a{bottom:944.044500px;}
.y126{bottom:944.959500px;}
.y1d1{bottom:948.586500px;}
.y1c{bottom:949.033500px;}
.yd4{bottom:951.040500px;}
.ya7{bottom:952.068000px;}
.y19b{bottom:953.241000px;}
.y125{bottom:959.155500px;}
.y49{bottom:964.936500px;}
.y127{bottom:966.255000px;}
.y1d0{bottom:967.737000px;}
.yd3{bottom:968.973000px;}
.y1b{bottom:969.925500px;}
.ya6{bottom:972.960000px;}
.y124{bottom:973.353000px;}
.y78{bottom:974.917500px;}
.y19a{bottom:976.875000px;}
.y48{bottom:985.828500px;}
.y1cf{bottom:986.887500px;}
.yd2{bottom:986.907000px;}
.y123{bottom:987.550500px;}
.ya5{bottom:993.852000px;}
.y77{bottom:995.809500px;}
.yd1{bottom:1004.839500px;}
.y1ce{bottom:1006.038000px;}
.y47{bottom:1006.719000px;}
.y1a{bottom:1008.748500px;}
.y122{bottom:1008.949500px;}
.ya4{bottom:1014.742500px;}
.y199{bottom:1015.699500px;}
.y76{bottom:1016.700000px;}
.yd0{bottom:1022.772000px;}
.y121{bottom:1023.145500px;}
.y1cd{bottom:1025.188500px;}
.y46{bottom:1027.611000px;}
.ya3{bottom:1035.634500px;}
.y120{bottom:1037.343000px;}
.y75{bottom:1037.592000px;}
.y19{bottom:1040.086500px;}
.y198{bottom:1044.165000px;}
.y1cc{bottom:1044.339000px;}
.ycf{bottom:1047.907500px;}
.y45{bottom:1048.503000px;}
.ya2{bottom:1056.526500px;}
.y74{bottom:1058.484000px;}
.y11f{bottom:1058.742000px;}
.y1cb{bottom:1063.489500px;}
.y197{bottom:1063.663500px;}
.yce{bottom:1065.840000px;}
.y44{bottom:1069.393500px;}
.y18{bottom:1071.424500px;}
.y11e{bottom:1072.938000px;}
.ya1{bottom:1077.417000px;}
.y11a{bottom:1080.093000px;}
.y11d{bottom:1081.993500px;}
.y1ca{bottom:1082.640000px;}
.ycd{bottom:1083.772500px;}
.y73{bottom:1083.858000px;}
.y43{bottom:1090.285500px;}
.y196{bottom:1092.129000px;}
.y11c{bottom:1094.337000px;}
.ya0{bottom:1098.309000px;}
.y1c9{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.y11b{bottom:1108.534500px;}
.ycc{bottom:1108.908000px;}
.y195{bottom:1111.627500px;}
.y42{bottom:1115.661000px;}
.y72{bottom:1119.201000px;}
.y1c8{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.ycb{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.h13{height:22.427861px;}
.h6{height:32.565965px;}
.h12{height:34.574294px;}
.h2{height:37.993262px;}
.h16{height:39.434227px;}
.ha{height:41.482876px;}
.hd{height:43.217759px;}
.h7{height:43.421105px;}
.h8{height:43.660208px;}
.h3{height:43.815515px;}
.hc{height:48.848947px;}
.h17{height:49.117939px;}
.hb{height:51.861658px;}
.h9{height:54.276245px;}
.h5{height:54.541601px;}
.h14{height:71.813105px;}
.h4{height:77.792486px;}
.he{height:79.085759px;}
.h10{height:90.138245px;}
.hf{height:90.144245px;}
.h15{height:100.205105px;}
.h11{height:126.006245px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:52.444500px;}
.x1{left:53.574000px;}
.x6c{left:62.541000px;}
.x92{left:85.848000px;}
.x62{left:133.008000px;}
.x6f{left:225.592500px;}
.x70{left:243.895500px;}
.x37{left:247.348500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x3d{left:258.556500px;}
.x4{left:269.914500px;}
.x4a{left:273.730500px;}
.x4e{left:276.369000px;}
.xe{left:281.479500px;}
.x2c{left:283.647000px;}
.x6d{left:287.656500px;}
.x84{left:289.515000px;}
.x4b{left:290.920500px;}
.x34{left:291.954000px;}
.x66{left:293.478000px;}
.x1c{left:296.695500px;}
.x2d{left:298.591500px;}
.x77{left:301.842000px;}
.x44{left:303.388500px;}
.x85{left:304.459500px;}
.x18{left:306.103500px;}
.x1d{left:311.640000px;}
.x19{left:313.575000px;}
.x1e{left:315.450000px;}
.x78{left:320.529000px;}
.x53{left:325.365000px;}
.x1f{left:330.394500px;}
.x8d{left:335.787000px;}
.x63{left:340.705500px;}
.x54{left:342.082500px;}
.x5e{left:343.528500px;}
.x88{left:347.857500px;}
.x3c{left:350.035500px;}
.x8e{left:358.308000px;}
.x90{left:359.562000px;}
.x48{left:360.981000px;}
.x89{left:362.802000px;}
.x46{left:368.452500px;}
.x67{left:374.100000px;}
.x91{left:378.316500px;}
.x8a{left:392.413500px;}
.x68{left:394.519500px;}
.x45{left:395.748000px;}
.x8b{left:407.358000px;}
.x47{left:409.623000px;}
.x8{left:413.140500px;}
.x8c{left:414.681000px;}
.x49{left:422.139000px;}
.x7b{left:423.934500px;}
.x86{left:425.598000px;}
.x26{left:427.968000px;}
.x9{left:430.300500px;}
.x7c{left:438.879000px;}
.x71{left:441.145500px;}
.x42{left:444.232500px;}
.x43{left:445.743000px;}
.x72{left:453.436500px;}
.x40{left:459.012000px;}
.x75{left:460.258500px;}
.x5f{left:461.461500px;}
.x6{left:463.566000px;}
.x7f{left:469.396500px;}
.x41{left:472.371000px;}
.x3f{left:473.955000px;}
.x7{left:475.857000px;}
.x76{left:478.947000px;}
.x80{left:484.339500px;}
.x24{left:487.618500px;}
.x3e{left:488.899500px;}
.x87{left:490.252500px;}
.x55{left:494.827500px;}
.x6e{left:497.379000px;}
.x4c{left:501.454500px;}
.x25{left:502.563000px;}
.x64{left:507.505500px;}
.x56{left:511.545000px;}
.x4d{left:513.745500px;}
.x5b{left:522.997500px;}
.x30{left:526.350000px;}
.x27{left:534.867000px;}
.x31{left:541.294500px;}
.x32{left:544.954500px;}
.x28{left:549.811500px;}
.x33{left:559.899000px;}
.xc{left:562.731000px;}
.x13{left:565.534500px;}
.x74{left:567.322500px;}
.x69{left:571.806000px;}
.x14{left:573.007500px;}
.x11{left:575.289000px;}
.x15{left:576.754500px;}
.xd{left:578.734500px;}
.x12{left:582.760500px;}
.xf{left:584.422500px;}
.x52{left:588.801000px;}
.x10{left:591.895500px;}
.x8f{left:596.952000px;}
.x79{left:599.269500px;}
.x7a{left:603.079500px;}
.x60{left:606.099000px;}
.x65{left:618.327000px;}
.x61{left:622.143000px;}
.x38{left:636.544500px;}
.x39{left:648.837000px;}
.x6a{left:661.890000px;}
.x7e{left:668.233500px;}
.x6b{left:682.309500px;}
.xa{left:686.595000px;}
.x20{left:687.606000px;}
.xb{left:698.886000px;}
.x21{left:702.549000px;}
.x22{left:706.218000px;}
.x73{left:720.006000px;}
.x23{left:721.162500px;}
.x81{left:728.737500px;}
.x57{left:735.060000px;}
.x83{left:736.609500px;}
.x7d{left:738.021000px;}
.x82{left:743.680500px;}
.x4f{left:745.321500px;}
.x58{left:751.105500px;}
.x51{left:752.376000px;}
.x50{left:756.111000px;}
.x1a{left:761.839500px;}
.x3a{left:764.151000px;}
.x59{left:767.451000px;}
.x1b{left:769.311000px;}
.x2e{left:777.549000px;}
.x5a{left:779.742000px;}
.x3b{left:780.931500px;}
.x5c{left:789.940500px;}
.x2f{left:792.493500px;}
.x35{left:795.439500px;}
.x29{left:799.441500px;}
.x5d{left:802.231500px;}
.x36{left:810.384000px;}
.x2a{left:814.384500px;}
.x2b{left:818.046000px;}
.x16{left:825.519000px;}
.x17{left:832.990500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v4{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:25.237333pt;}
.v5{vertical-align:31.882667pt;}
.v7{vertical-align:50.474667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.000260pt;}
.ls1{letter-spacing:0.000533pt;}
.ls26{letter-spacing:0.000540pt;}
.ls38{letter-spacing:0.000711pt;}
.ls3a{letter-spacing:0.000980pt;}
.ls42{letter-spacing:0.001026pt;}
.ls5{letter-spacing:0.001434pt;}
.ls6{letter-spacing:0.001718pt;}
.ls3e{letter-spacing:0.004267pt;}
.lsd{letter-spacing:0.637762pt;}
.lsc{letter-spacing:0.663756pt;}
.ls2{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls2f{letter-spacing:3.118133pt;}
.ls0{letter-spacing:7.437600pt;}
.lsa{letter-spacing:10.626533pt;}
.ls29{letter-spacing:10.627330pt;}
.ls2a{letter-spacing:11.133060pt;}
.ls28{letter-spacing:11.138393pt;}
.ls31{letter-spacing:11.660109pt;}
.ls32{letter-spacing:11.794718pt;}
.ls37{letter-spacing:11.917055pt;}
.ls30{letter-spacing:11.954133pt;}
.ls35{letter-spacing:11.959467pt;}
.ls49{letter-spacing:11.963167pt;}
.ls47{letter-spacing:11.988405pt;}
.ls48{letter-spacing:12.028703pt;}
.ls39{letter-spacing:12.060864pt;}
.ls46{letter-spacing:12.085163pt;}
.ls43{letter-spacing:12.090545pt;}
.ls36{letter-spacing:12.134322pt;}
.ls3c{letter-spacing:12.188286pt;}
.ls3b{letter-spacing:12.604277pt;}
.ls2d{letter-spacing:13.101706pt;}
.ls2e{letter-spacing:13.103444pt;}
.ls9{letter-spacing:13.185808pt;}
.lsf{letter-spacing:13.192816pt;}
.lse{letter-spacing:13.268093pt;}
.ls1b{letter-spacing:13.282926pt;}
.ls1a{letter-spacing:13.283733pt;}
.ls11{letter-spacing:13.284237pt;}
.ls19{letter-spacing:13.293563pt;}
.ls18{letter-spacing:13.305028pt;}
.ls44{letter-spacing:13.310159pt;}
.ls1c{letter-spacing:13.315733pt;}
.ls13{letter-spacing:13.348911pt;}
.ls25{letter-spacing:13.455631pt;}
.ls24{letter-spacing:13.457334pt;}
.ls23{letter-spacing:13.513972pt;}
.ls22{letter-spacing:13.516822pt;}
.ls1d{letter-spacing:13.538865pt;}
.ls21{letter-spacing:13.596332pt;}
.ls12{letter-spacing:13.619475pt;}
.ls7{letter-spacing:13.678400pt;}
.ls15{letter-spacing:13.824890pt;}
.ls17{letter-spacing:13.923096pt;}
.ls20{letter-spacing:13.944877pt;}
.ls45{letter-spacing:14.439571pt;}
.ls1e{letter-spacing:14.626586pt;}
.ls33{letter-spacing:15.453950pt;}
.ls3f{letter-spacing:15.642186pt;}
.ls10{letter-spacing:15.649727pt;}
.ls2b{letter-spacing:16.193851pt;}
.ls1f{letter-spacing:16.329799pt;}
.ls34{letter-spacing:16.578133pt;}
.ls14{letter-spacing:17.077178pt;}
.ls2c{letter-spacing:17.229172pt;}
.ls41{letter-spacing:18.207247pt;}
.ls40{letter-spacing:18.208797pt;}
.ls27{letter-spacing:19.320648pt;}
.ls4{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls16{letter-spacing:346.676237pt;}
.ws7{word-spacing:-13.283467pt;}
.wsa4{word-spacing:-11.955200pt;}
.wsc{word-spacing:-10.626800pt;}
.wsa{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws97{word-spacing:-3.666237pt;}
.ws4d{word-spacing:-2.391024pt;}
.ws31{word-spacing:-2.337890pt;}
.ws91{word-spacing:-2.125355pt;}
.ws95{word-spacing:-2.072221pt;}
.ws8d{word-spacing:-2.019087pt;}
.ws4e{word-spacing:-1.965953pt;}
.ws4a{word-spacing:-1.912819pt;}
.ws0{word-spacing:-1.859680pt;}
.ws9c{word-spacing:-1.700284pt;}
.ws68{word-spacing:-1.540882pt;}
.ws83{word-spacing:-1.487748pt;}
.wsac{word-spacing:-1.434624pt;}
.ws6f{word-spacing:-1.381481pt;}
.ws53{word-spacing:-1.328347pt;}
.ws54{word-spacing:-1.275213pt;}
.ws10d{word-spacing:-1.243341pt;}
.ws9e{word-spacing:-1.222079pt;}
.wsaa{word-spacing:-1.195520pt;}
.wsa9{word-spacing:-1.147699pt;}
.ws69{word-spacing:-1.115811pt;}
.ws37{word-spacing:-1.062677pt;}
.ws6b{word-spacing:-1.009543pt;}
.ws10f{word-spacing:-1.004237pt;}
.wsa2{word-spacing:-0.956410pt;}
.ws113{word-spacing:-0.908595pt;}
.wsde{word-spacing:-0.860774pt;}
.ws80{word-spacing:-0.797008pt;}
.ws28{word-spacing:-0.690740pt;}
.ws96{word-spacing:-0.584473pt;}
.ws10b{word-spacing:-0.526029pt;}
.ws46{word-spacing:-0.371937pt;}
.ws109{word-spacing:-0.334746pt;}
.ws26{word-spacing:-0.318803pt;}
.wsb4{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.wsad{word-spacing:-0.239104pt;}
.ws23{word-spacing:-0.212535pt;}
.ws82{word-spacing:-0.203978pt;}
.wsaf{word-spacing:-0.191283pt;}
.ws11{word-spacing:-0.159402pt;}
.wsb8{word-spacing:-0.143462pt;}
.ws10{word-spacing:-0.106268pt;}
.wsbe{word-spacing:-0.095642pt;}
.ws8{word-spacing:-0.053134pt;}
.wsa7{word-spacing:-0.047821pt;}
.wsd{word-spacing:-0.042507pt;}
.ws116{word-spacing:-0.024969pt;}
.ws9{word-spacing:-0.003873pt;}
.ws6a{word-spacing:-0.000723pt;}
.ws6{word-spacing:0.000000pt;}
.ws75{word-spacing:0.042507pt;}
.wsa6{word-spacing:0.047821pt;}
.ws19{word-spacing:0.053134pt;}
.wsd8{word-spacing:0.095642pt;}
.ws1a{word-spacing:0.106268pt;}
.wsab{word-spacing:0.143462pt;}
.wsf{word-spacing:0.159402pt;}
.wsc7{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wse5{word-spacing:0.239104pt;}
.ws67{word-spacing:0.255043pt;}
.ws34{word-spacing:0.265669pt;}
.wsd6{word-spacing:0.286925pt;}
.ws35{word-spacing:0.318803pt;}
.wse0{word-spacing:0.334746pt;}
.ws2b{word-spacing:0.371937pt;}
.ws2{word-spacing:0.372944pt;}
.ws5{word-spacing:0.375335pt;}
.ws30{word-spacing:0.425071pt;}
.ws118{word-spacing:0.430387pt;}
.wsd4{word-spacing:0.478208pt;}
.ws72{word-spacing:0.515991pt;}
.ws7b{word-spacing:0.518524pt;}
.ws7d{word-spacing:0.518791pt;}
.ws79{word-spacing:0.521324pt;}
.ws73{word-spacing:0.523474pt;}
.ws7a{word-spacing:0.526274pt;}
.ws70{word-spacing:0.530670pt;}
.ws3d{word-spacing:0.531339pt;}
.ws71{word-spacing:0.532533pt;}
.ws7c{word-spacing:0.546858pt;}
.ws78{word-spacing:0.548048pt;}
.ws77{word-spacing:0.549658pt;}
.ws8a{word-spacing:0.584473pt;}
.wsc3{word-spacing:0.621670pt;}
.ws89{word-spacing:0.637606pt;}
.ws5e{word-spacing:0.666674pt;}
.ws65{word-spacing:0.668224pt;}
.wsdc{word-spacing:0.669491pt;}
.ws17{word-spacing:0.690740pt;}
.ws49{word-spacing:0.743874pt;}
.wsfd{word-spacing:0.765133pt;}
.ws33{word-spacing:0.850142pt;}
.wsc5{word-spacing:0.860774pt;}
.ws45{word-spacing:0.903276pt;}
.ws88{word-spacing:0.956410pt;}
.ws7e{word-spacing:1.009543pt;}
.wsfb{word-spacing:1.052058pt;}
.ws13{word-spacing:1.062677pt;}
.ws36{word-spacing:1.115811pt;}
.ws41{word-spacing:1.168945pt;}
.ws93{word-spacing:1.275213pt;}
.ws24{word-spacing:1.328347pt;}
.ws104{word-spacing:1.386803pt;}
.ws114{word-spacing:1.434624pt;}
.ws16{word-spacing:1.540882pt;}
.wsed{word-spacing:1.625907pt;}
.wsd7{word-spacing:1.721549pt;}
.ws40{word-spacing:1.806551pt;}
.ws9d{word-spacing:1.859685pt;}
.ws102{word-spacing:1.912832pt;}
.wscc{word-spacing:2.056294pt;}
.ws1d{word-spacing:2.125355pt;}
.ws51{word-spacing:2.178489pt;}
.ws117{word-spacing:2.199757pt;}
.ws92{word-spacing:2.231622pt;}
.ws3f{word-spacing:2.284756pt;}
.ws55{word-spacing:2.337890pt;}
.wsf1{word-spacing:2.343219pt;}
.ws56{word-spacing:2.391024pt;}
.wsef{word-spacing:2.486682pt;}
.ws39{word-spacing:2.497292pt;}
.ws4b{word-spacing:2.550426pt;}
.ws107{word-spacing:2.582323pt;}
.ws48{word-spacing:2.603559pt;}
.ws52{word-spacing:2.656693pt;}
.ws94{word-spacing:2.709827pt;}
.wsbb{word-spacing:2.725786pt;}
.wsae{word-spacing:2.807813pt;}
.ws42{word-spacing:2.816095pt;}
.wsce{word-spacing:2.859657pt;}
.ws105{word-spacing:2.861201pt;}
.wsfe{word-spacing:2.863437pt;}
.wsf2{word-spacing:2.863633pt;}
.wsf3{word-spacing:2.864674pt;}
.wsda{word-spacing:2.864819pt;}
.wscd{word-spacing:2.865886pt;}
.wsa8{word-spacing:2.866509pt;}
.ws101{word-spacing:2.868002pt;}
.ws2c{word-spacing:2.869229pt;}
.wse4{word-spacing:2.869248pt;}
.wsd2{word-spacing:2.917069pt;}
.ws81{word-spacing:2.922363pt;}
.ws8e{word-spacing:2.975497pt;}
.ws6c{word-spacing:3.028630pt;}
.ws11a{word-spacing:3.108352pt;}
.wsa1{word-spacing:3.134898pt;}
.ws4c{word-spacing:3.188032pt;}
.ws1f{word-spacing:3.207896pt;}
.ws1e{word-spacing:3.294300pt;}
.ws7f{word-spacing:3.347434pt;}
.ws8f{word-spacing:3.400567pt;}
.wse{word-spacing:3.414451pt;}
.wsbd{word-spacing:3.490918pt;}
.ws38{word-spacing:3.506835pt;}
.wsa0{word-spacing:3.559969pt;}
.wsb1{word-spacing:3.634381pt;}
.ws18{word-spacing:3.666237pt;}
.ws4f{word-spacing:3.719371pt;}
.ws5b{word-spacing:3.772505pt;}
.ws5c{word-spacing:3.825638pt;}
.ws21{word-spacing:3.825664pt;}
.ws15{word-spacing:3.878772pt;}
.ws115{word-spacing:3.921306pt;}
.ws2d{word-spacing:3.931906pt;}
.ws85{word-spacing:3.985040pt;}
.ws111{word-spacing:4.016947pt;}
.ws90{word-spacing:4.038174pt;}
.ws14{word-spacing:4.091308pt;}
.ws1c{word-spacing:4.144442pt;}
.ws8c{word-spacing:4.250709pt;}
.wsba{word-spacing:4.351693pt;}
.ws84{word-spacing:4.463245pt;}
.ws47{word-spacing:4.622646pt;}
.wsb3{word-spacing:4.638618pt;}
.ws98{word-spacing:4.675780pt;}
.ws3c{word-spacing:4.835182pt;}
.ws12{word-spacing:4.941450pt;}
.ws2a{word-spacing:5.047717pt;}
.ws2e{word-spacing:5.153985pt;}
.ws3e{word-spacing:5.313387pt;}
.ws9a{word-spacing:5.525922pt;}
.ws44{word-spacing:5.632190pt;}
.ws6d{word-spacing:6.057261pt;}
.wse2{word-spacing:6.073242pt;}
.ws43{word-spacing:6.163529pt;}
.ws8b{word-spacing:6.322930pt;}
.ws50{word-spacing:6.376064pt;}
.ws5a{word-spacing:6.694867pt;}
.wsa5{word-spacing:6.694912pt;}
.ws59{word-spacing:6.960537pt;}
.ws9f{word-spacing:7.066804pt;}
.ws3a{word-spacing:7.279340pt;}
.ws87{word-spacing:7.332474pt;}
.ws9b{word-spacing:7.385607pt;}
.ws3{word-spacing:7.397986pt;}
.ws6e{word-spacing:7.545009pt;}
.wsf8{word-spacing:7.890432pt;}
.ws32{word-spacing:8.395151pt;}
.ws99{word-spacing:8.607686pt;}
.ws29{word-spacing:9.192159pt;}
.wsc8{word-spacing:9.707622pt;}
.ws20{word-spacing:10.581732pt;}
.wsff{word-spacing:11.046605pt;}
.wsb5{word-spacing:11.572634pt;}
.wsf6{word-spacing:11.620454pt;}
.wsb6{word-spacing:11.668275pt;}
.wsb9{word-spacing:11.716096pt;}
.wsd3{word-spacing:11.859558pt;}
.ws100{word-spacing:11.897745pt;}
.wscb{word-spacing:11.898564pt;}
.wse9{word-spacing:11.899273pt;}
.wsc4{word-spacing:11.899315pt;}
.wsdf{word-spacing:11.900288pt;}
.ws106{word-spacing:11.901261pt;}
.wsc1{word-spacing:11.901278pt;}
.wsf9{word-spacing:11.901756pt;}
.wsdb{word-spacing:11.902165pt;}
.ws10a{word-spacing:11.902541pt;}
.wsf0{word-spacing:11.903667pt;}
.ws110{word-spacing:11.904145pt;}
.wsea{word-spacing:11.904299pt;}
.wse1{word-spacing:11.904324pt;}
.wsb0{word-spacing:11.905331pt;}
.ws108{word-spacing:11.906022pt;}
.wsc2{word-spacing:11.907379pt;}
.ws10e{word-spacing:11.937417pt;}
.wse7{word-spacing:11.955200pt;}
.ws112{word-spacing:11.974612pt;}
.wsd9{word-spacing:12.003021pt;}
.wsfa{word-spacing:12.050842pt;}
.wsc6{word-spacing:12.053909pt;}
.wse8{word-spacing:12.098662pt;}
.wse6{word-spacing:12.109471pt;}
.wsd5{word-spacing:12.194304pt;}
.wsfc{word-spacing:12.959437pt;}
.ws3b{word-spacing:13.230333pt;}
.ws58{word-spacing:13.974207pt;}
.wsbc{word-spacing:14.633165pt;}
.wsee{word-spacing:14.680986pt;}
.wscf{word-spacing:14.728806pt;}
.wsf7{word-spacing:14.769741pt;}
.wsb7{word-spacing:14.770082pt;}
.wsf5{word-spacing:14.770261pt;}
.wsf4{word-spacing:14.770910pt;}
.wseb{word-spacing:14.771644pt;}
.wsc9{word-spacing:14.772181pt;}
.wsdd{word-spacing:14.772617pt;}
.ws119{word-spacing:14.773376pt;}
.ws10c{word-spacing:14.773453pt;}
.wsd0{word-spacing:14.775450pt;}
.wsbf{word-spacing:14.775927pt;}
.wsca{word-spacing:14.776627pt;}
.wsec{word-spacing:14.824448pt;}
.wsd1{word-spacing:14.967910pt;}
.wsc0{word-spacing:15.541760pt;}
.wsb2{word-spacing:15.589581pt;}
.ws86{word-spacing:15.674491pt;}
.ws22{word-spacing:16.418365pt;}
.wse3{word-spacing:16.590639pt;}
.wsa3{word-spacing:18.506650pt;}
.ws2f{word-spacing:19.075058pt;}
.ws1{word-spacing:19.715148pt;}
.ws103{word-spacing:20.993331pt;}
.wsb{word-spacing:35.593054pt;}
.ws25{word-spacing:48.723756pt;}
.ws5f{word-spacing:149.719230pt;}
.ws61{word-spacing:171.080000pt;}
.ws74{word-spacing:180.910643pt;}
.ws62{word-spacing:197.645333pt;}
.ws63{word-spacing:250.777600pt;}
.ws60{word-spacing:264.068267pt;}
.ws66{word-spacing:303.913600pt;}
.ws5d{word-spacing:309.877520pt;}
.ws64{word-spacing:392.500299pt;}
.ws57{word-spacing:804.965520pt;}
.ws76{word-spacing:916.965318pt;}
._41{margin-left:-18.591514pt;}
._3{margin-left:-8.607744pt;}
._7{margin-left:-6.248558pt;}
._9{margin-left:-4.718299pt;}
._1{margin-left:-3.421811pt;}
._3e{margin-left:-2.361824pt;}
._2{margin-left:-1.338970pt;}
._5{width:2.667187pt;}
._19{width:3.825638pt;}
._0{width:9.670336pt;}
._3f{width:11.221922pt;}
._8{width:12.408270pt;}
._40{width:13.318201pt;}
._1a{width:14.229390pt;}
._3a{width:15.132537pt;}
._e{width:16.110185pt;}
._a{width:17.066594pt;}
._10{width:17.959247pt;}
._d{width:19.085681pt;}
._17{width:19.978334pt;}
._13{width:20.987877pt;}
._f{width:21.901776pt;}
._14{width:23.113232pt;}
._28{width:24.027131pt;}
._c{width:24.919783pt;}
._37{width:26.365021pt;}
._16{width:28.224706pt;}
._4{width:29.648896pt;}
._b{width:31.242714pt;}
._15{width:32.475415pt;}
._18{width:34.281967pt;}
._29{width:35.291510pt;}
._1f{width:37.714430pt;}
._38{width:38.947124pt;}
._6{width:48.342332pt;}
._3b{width:51.991292pt;}
._3d{width:54.993920pt;}
._3c{width:78.904320pt;}
._32{width:109.243504pt;}
._30{width:119.105174pt;}
._35{width:153.748542pt;}
._33{width:164.375342pt;}
._36{width:174.237013pt;}
._2d{width:181.930816pt;}
._2b{width:185.628942pt;}
._2c{width:191.537443pt;}
._2a{width:216.700928pt;}
._26{width:249.038433pt;}
._23{width:309.770443pt;}
._25{width:323.053909pt;}
._21{width:336.337376pt;}
._27{width:350.045914pt;}
._2f{width:359.696017pt;}
._24{width:372.893476pt;}
._22{width:386.123809pt;}
._1d{width:422.733043pt;}
._20{width:424.752130pt;}
._1b{width:436.016510pt;}
._34{width:437.229059pt;}
._1e{width:449.682537pt;}
._1c{width:462.583443pt;}
._31{width:469.109459pt;}
._2e{width:564.579853pt;}
._11{width:1530.835200pt;}
._39{width:2242.232533pt;}
._12{width:2263.485867pt;}
.fs4{font-size:31.880533pt;}
.fs6{font-size:33.219200pt;}
.fs0{font-size:37.193600pt;}
.fsb{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs8{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:40.818667pt;}
.y9f{bottom:88.768000pt;}
.y16{bottom:89.120000pt;}
.y194{bottom:93.062667pt;}
.y1f9{bottom:94.188000pt;}
.y1c7{bottom:98.325333pt;}
.y162{bottom:103.473333pt;}
.y15{bottom:105.020000pt;}
.y17b{bottom:106.953333pt;}
.yfd{bottom:107.176000pt;}
.y9e{bottom:107.337333pt;}
.y193{bottom:110.396000pt;}
.y1f8{bottom:111.210667pt;}
.y71{bottom:114.910667pt;}
.y1c6{bottom:115.348000pt;}
.yfc{bottom:119.796000pt;}
.y14{bottom:120.920000pt;}
.y157{bottom:121.516000pt;}
.y161{bottom:122.042667pt;}
.y17a{bottom:125.522667pt;}
.y9d{bottom:125.908000pt;}
.y119{bottom:126.198667pt;}
.y192{bottom:127.728000pt;}
.y1f7{bottom:128.233333pt;}
.y1c5{bottom:132.370667pt;}
.y70{bottom:133.481333pt;}
.y13{bottom:136.821333pt;}
.yfb{bottom:136.944000pt;}
.y118{bottom:138.817333pt;}
.y156{bottom:140.086667pt;}
.y160{bottom:140.613333pt;}
.y179{bottom:144.093333pt;}
.y9c{bottom:144.478667pt;}
.y1f6{bottom:145.256000pt;}
.y1c4{bottom:149.393333pt;}
.y117{bottom:151.437333pt;}
.y6f{bottom:152.052000pt;}
.y12{bottom:152.721333pt;}
.yfa{bottom:152.884000pt;}
.y191{bottom:153.029333pt;}
.y155{bottom:158.657333pt;}
.y15f{bottom:159.184000pt;}
.yca{bottom:159.568000pt;}
.y1f5{bottom:162.278667pt;}
.y178{bottom:162.664000pt;}
.y9b{bottom:163.048000pt;}
.y1c3{bottom:166.416000pt;}
.y11{bottom:168.621333pt;}
.yf9{bottom:168.825333pt;}
.y116{bottom:170.458667pt;}
.y6e{bottom:170.621333pt;}
.yf8{bottom:176.794667pt;}
.y154{bottom:177.228000pt;}
.y15e{bottom:177.753333pt;}
.yc9{bottom:178.138667pt;}
.y190{bottom:178.332000pt;}
.y1f4{bottom:179.301333pt;}
.y177{bottom:181.233333pt;}
.y9a{bottom:181.618667pt;}
.y115{bottom:183.077333pt;}
.y1c2{bottom:183.438667pt;}
.y10{bottom:184.521333pt;}
.y3e{bottom:188.045333pt;}
.y6d{bottom:189.192000pt;}
.y18f{bottom:195.664000pt;}
.y153{bottom:195.797333pt;}
.y15d{bottom:196.324000pt;}
.yc8{bottom:196.709333pt;}
.y176{bottom:199.804000pt;}
.y99{bottom:200.189333pt;}
.yf{bottom:200.422667pt;}
.y1c1{bottom:200.461333pt;}
.yf7{bottom:200.705333pt;}
.y114{bottom:202.098667pt;}
.y6c{bottom:207.762667pt;}
.yf6{bottom:208.674667pt;}
.y18e{bottom:212.997333pt;}
.y1f3{bottom:213.346667pt;}
.y152{bottom:214.368000pt;}
.y113{bottom:214.718667pt;}
.y15c{bottom:214.894667pt;}
.yc7{bottom:215.280000pt;}
.y1c0{bottom:217.484000pt;}
.y175{bottom:218.374667pt;}
.y98{bottom:218.760000pt;}
.y10f{bottom:221.077333pt;}
.y3d{bottom:222.556000pt;}
.y112{bottom:222.768000pt;}
.ye{bottom:224.293333pt;}
.y6b{bottom:226.333333pt;}
.y18d{bottom:230.329333pt;}
.y1f2{bottom:230.369333pt;}
.yf5{bottom:232.585333pt;}
.y151{bottom:232.938667pt;}
.y15b{bottom:233.464000pt;}
.y111{bottom:233.740000pt;}
.yc6{bottom:233.849333pt;}
.y1bf{bottom:234.506667pt;}
.y174{bottom:236.945333pt;}
.y97{bottom:237.329333pt;}
.yd{bottom:240.193333pt;}
.yf4{bottom:240.556000pt;}
.y3c{bottom:241.126667pt;}
.y6a{bottom:244.902667pt;}
.y110{bottom:246.358667pt;}
.y1f1{bottom:247.392000pt;}
.y150{bottom:251.508000pt;}
.y1be{bottom:251.529333pt;}
.y15a{bottom:252.034667pt;}
.yc5{bottom:252.420000pt;}
.y173{bottom:255.514667pt;}
.y18c{bottom:255.630667pt;}
.y96{bottom:255.900000pt;}
.yc{bottom:256.093333pt;}
.y3b{bottom:259.696000pt;}
.y69{bottom:263.473333pt;}
.y1f0{bottom:264.414667pt;}
.yf3{bottom:264.466667pt;}
.y1bd{bottom:268.553333pt;}
.y14f{bottom:270.078667pt;}
.y159{bottom:270.605333pt;}
.yc4{bottom:270.990667pt;}
.yb{bottom:271.994667pt;}
.yf2{bottom:272.436000pt;}
.y18b{bottom:273.428000pt;}
.y172{bottom:274.085333pt;}
.y95{bottom:274.470667pt;}
.y10e{bottom:275.726667pt;}
.y3a{bottom:278.266667pt;}
.y1ef{bottom:281.437333pt;}
.y68{bottom:282.044000pt;}
.y1bc{bottom:285.576000pt;}
.ya{bottom:287.894667pt;}
.y14e{bottom:288.649333pt;}
.y158{bottom:289.176000pt;}
.y18a{bottom:291.224000pt;}
.y171{bottom:292.656000pt;}
.y94{bottom:293.040000pt;}
.yc3{bottom:293.545333pt;}
.yf1{bottom:296.346667pt;}
.y39{bottom:296.837333pt;}
.y1ee{bottom:298.460000pt;}
.y67{bottom:300.613333pt;}
.y1bb{bottom:302.598667pt;}
.y9{bottom:303.794667pt;}
.yf0{bottom:304.316000pt;}
.y14d{bottom:307.218667pt;}
.y10d{bottom:307.745333pt;}
.y170{bottom:311.225333pt;}
.y93{bottom:311.610667pt;}
.y38{bottom:315.406667pt;}
.y1ed{bottom:315.482667pt;}
.y66{bottom:319.184000pt;}
.y1ba{bottom:319.621333pt;}
.y8{bottom:319.696000pt;}
.y189{bottom:324.961333pt;}
.y14c{bottom:325.789333pt;}
.y10c{bottom:326.316000pt;}
.yc2{bottom:328.056000pt;}
.y16f{bottom:329.796000pt;}
.y92{bottom:330.181333pt;}
.y1ec{bottom:332.506667pt;}
.y37{bottom:333.977333pt;}
.yef{bottom:334.629333pt;}
.y7{bottom:335.596000pt;}
.y1b9{bottom:336.644000pt;}
.y65{bottom:337.754667pt;}
.yee{bottom:342.598667pt;}
.y188{bottom:343.530667pt;}
.y14b{bottom:344.360000pt;}
.y10b{bottom:344.886667pt;}
.y1fc{bottom:345.324000pt;}
.yc1{bottom:346.626667pt;}
.y91{bottom:348.750667pt;}
.y1eb{bottom:349.529333pt;}
.y6{bottom:351.496000pt;}
.y16e{bottom:352.350667pt;}
.y36{bottom:352.548000pt;}
.y1b8{bottom:353.666667pt;}
.y64{bottom:356.324000pt;}
.y187{bottom:362.101333pt;}
.y1fb{bottom:362.346667pt;}
.y14a{bottom:362.929333pt;}
.y10a{bottom:363.456000pt;}
.yc0{bottom:365.196000pt;}
.y1ea{bottom:366.552000pt;}
.y1b7{bottom:370.689333pt;}
.y35{bottom:371.118667pt;}
.y90{bottom:371.306667pt;}
.y5{bottom:372.710667pt;}
.y63{bottom:374.894667pt;}
.y1fa{bottom:379.369333pt;}
.yed{bottom:379.605333pt;}
.y186{bottom:380.672000pt;}
.y149{bottom:381.500000pt;}
.y109{bottom:382.026667pt;}
.y1e9{bottom:383.574667pt;}
.ybf{bottom:383.766667pt;}
.y1b6{bottom:387.712000pt;}
.y4{bottom:388.610667pt;}
.y34{bottom:389.688000pt;}
.y62{bottom:393.465333pt;}
.y185{bottom:399.241333pt;}
.y148{bottom:400.070667pt;}
.y108{bottom:400.597333pt;}
.ybe{bottom:402.337333pt;}
.y8f{bottom:402.721333pt;}
.y3{bottom:404.510667pt;}
.y1b5{bottom:404.734667pt;}
.y33{bottom:408.258667pt;}
.y61{bottom:412.034667pt;}
.yec{bottom:412.586667pt;}
.y1e8{bottom:417.620000pt;}
.y184{bottom:417.812000pt;}
.y147{bottom:418.640000pt;}
.y107{bottom:419.166667pt;}
.y2{bottom:420.412000pt;}
.ybd{bottom:420.906667pt;}
.y8e{bottom:421.292000pt;}
.y1b4{bottom:421.757333pt;}
.y32{bottom:426.829333pt;}
.y60{bottom:430.605333pt;}
.yeb{bottom:431.157333pt;}
.y1e7{bottom:434.642667pt;}
.y183{bottom:436.382667pt;}
.y146{bottom:437.210667pt;}
.y106{bottom:437.737333pt;}
.y1b3{bottom:438.780000pt;}
.ybc{bottom:439.477333pt;}
.y8d{bottom:439.862667pt;}
.y1{bottom:441.625333pt;}
.y31{bottom:445.398667pt;}
.y5f{bottom:449.176000pt;}
.yea{bottom:449.728000pt;}
.y1e6{bottom:451.665333pt;}
.y182{bottom:454.953333pt;}
.y1b2{bottom:455.802667pt;}
.y105{bottom:456.308000pt;}
.ybb{bottom:458.048000pt;}
.y8c{bottom:458.433333pt;}
.y145{bottom:459.766667pt;}
.y30{bottom:463.969333pt;}
.y5e{bottom:467.746667pt;}
.ye9{bottom:468.297333pt;}
.y1e5{bottom:468.688000pt;}
.y1b1{bottom:472.825333pt;}
.y181{bottom:473.522667pt;}
.y104{bottom:474.877333pt;}
.yba{bottom:476.617333pt;}
.y8b{bottom:477.002667pt;}
.y144{bottom:481.484000pt;}
.y2f{bottom:482.540000pt;}
.y1e4{bottom:485.710667pt;}
.y5d{bottom:486.316000pt;}
.ye8{bottom:486.868000pt;}
.y1b0{bottom:489.848000pt;}
.y180{bottom:492.093333pt;}
.y103{bottom:493.448000pt;}
.yb9{bottom:495.188000pt;}
.y8a{bottom:495.573333pt;}
.y2e{bottom:501.109333pt;}
.y1e3{bottom:502.733333pt;}
.y5c{bottom:504.886667pt;}
.ye7{bottom:505.438667pt;}
.y1af{bottom:506.870667pt;}
.y17f{bottom:510.664000pt;}
.y102{bottom:512.018667pt;}
.yb8{bottom:513.758667pt;}
.y89{bottom:514.144000pt;}
.y143{bottom:517.736000pt;}
.y2d{bottom:519.680000pt;}
.y1e2{bottom:519.756000pt;}
.y5b{bottom:523.457333pt;}
.y1ae{bottom:523.893333pt;}
.ye6{bottom:524.008000pt;}
.y17e{bottom:529.233333pt;}
.y101{bottom:530.589333pt;}
.yb7{bottom:532.329333pt;}
.y88{bottom:532.713333pt;}
.y142{bottom:536.545333pt;}
.y1e1{bottom:536.778667pt;}
.y2c{bottom:538.250667pt;}
.y1ad{bottom:540.916000pt;}
.y5a{bottom:542.026667pt;}
.ye5{bottom:542.578667pt;}
.y17d{bottom:547.804000pt;}
.y140{bottom:548.253333pt;}
.y100{bottom:549.158667pt;}
.y141{bottom:549.165333pt;}
.yb6{bottom:550.898667pt;}
.y87{bottom:551.284000pt;}
.y1e0{bottom:553.801333pt;}
.y2b{bottom:556.820000pt;}
.y1ac{bottom:557.938667pt;}
.y59{bottom:560.597333pt;}
.ye4{bottom:561.149333pt;}
.y13f{bottom:561.784000pt;}
.yff{bottom:567.729333pt;}
.y16d{bottom:569.469333pt;}
.y86{bottom:569.854667pt;}
.y17c{bottom:570.358667pt;}
.y1df{bottom:570.824000pt;}
.yb5{bottom:573.454667pt;}
.y1ab{bottom:574.961333pt;}
.y2a{bottom:575.390667pt;}
.y58{bottom:579.168000pt;}
.y13e{bottom:580.805333pt;}
.yfe{bottom:586.300000pt;}
.y1de{bottom:587.846667pt;}
.y16c{bottom:588.040000pt;}
.y85{bottom:588.424000pt;}
.y1aa{bottom:591.984000pt;}
.y13c{bottom:592.513333pt;}
.y13d{bottom:593.425333pt;}
.y29{bottom:593.961333pt;}
.y57{bottom:597.737333pt;}
.ye3{bottom:598.656000pt;}
.yb4{bottom:604.869333pt;}
.y13b{bottom:606.044000pt;}
.y16b{bottom:606.609333pt;}
.y84{bottom:606.994667pt;}
.y1a9{bottom:609.008000pt;}
.y28{bottom:612.532000pt;}
.ye2{bottom:615.804000pt;}
.y56{bottom:616.308000pt;}
.y1dd{bottom:621.892000pt;}
.yb3{bottom:623.440000pt;}
.y13a{bottom:625.065333pt;}
.y16a{bottom:625.180000pt;}
.y83{bottom:625.565333pt;}
.y1a8{bottom:626.030667pt;}
.y27{bottom:631.101333pt;}
.ye1{bottom:631.745333pt;}
.y55{bottom:634.878667pt;}
.y138{bottom:636.773333pt;}
.y139{bottom:637.685333pt;}
.y1dc{bottom:638.914667pt;}
.yb2{bottom:642.010667pt;}
.y1a7{bottom:643.053333pt;}
.y169{bottom:643.750667pt;}
.y82{bottom:644.134667pt;}
.ye0{bottom:647.685333pt;}
.y26{bottom:649.672000pt;}
.y137{bottom:650.304000pt;}
.y54{bottom:653.448000pt;}
.y1db{bottom:655.937333pt;}
.y1a6{bottom:660.076000pt;}
.yb1{bottom:660.580000pt;}
.y168{bottom:662.320000pt;}
.y81{bottom:662.705333pt;}
.ydf{bottom:663.625333pt;}
.y135{bottom:669.325333pt;}
.y53{bottom:672.018667pt;}
.y1da{bottom:672.961333pt;}
.y1a5{bottom:677.098667pt;}
.yb0{bottom:679.150667pt;}
.yde{bottom:679.565333pt;}
.y167{bottom:680.890667pt;}
.y80{bottom:681.276000pt;}
.y134{bottom:681.945333pt;}
.y25{bottom:685.245333pt;}
.y136{bottom:688.254667pt;}
.y1d9{bottom:689.984000pt;}
.y52{bottom:690.589333pt;}
.y1a4{bottom:694.121333pt;}
.y133{bottom:694.564000pt;}
.ydd{bottom:695.505333pt;}
.yaf{bottom:697.721333pt;}
.y166{bottom:699.461333pt;}
.y24{bottom:699.590667pt;}
.y7f{bottom:699.846667pt;}
.y1d8{bottom:707.006667pt;}
.y132{bottom:707.184000pt;}
.y51{bottom:709.160000pt;}
.y1a3{bottom:711.144000pt;}
.ydc{bottom:711.445333pt;}
.yae{bottom:716.290667pt;}
.y23{bottom:717.794667pt;}
.y165{bottom:718.030667pt;}
.y7e{bottom:718.416000pt;}
.y1d7{bottom:724.029333pt;}
.y130{bottom:726.205333pt;}
.ydb{bottom:727.386667pt;}
.y50{bottom:727.729333pt;}
.y1a2{bottom:728.166667pt;}
.y22{bottom:728.284000pt;}
.yad{bottom:734.861333pt;}
.y164{bottom:736.601333pt;}
.y7d{bottom:736.986667pt;}
.y12f{bottom:738.824000pt;}
.y1d6{bottom:741.052000pt;}
.yda{bottom:743.326667pt;}
.y131{bottom:745.134667pt;}
.y1a1{bottom:745.189333pt;}
.y4f{bottom:746.300000pt;}
.y21{bottom:746.488000pt;}
.y12e{bottom:751.444000pt;}
.yac{bottom:753.432000pt;}
.y20{bottom:756.976000pt;}
.y1d5{bottom:758.074667pt;}
.y163{bottom:759.157333pt;}
.yd9{bottom:759.266667pt;}
.y7c{bottom:759.541333pt;}
.y1a0{bottom:762.212000pt;}
.y12d{bottom:764.062667pt;}
.y4e{bottom:764.870667pt;}
.yab{bottom:772.002667pt;}
.y1d4{bottom:775.097333pt;}
.y1f{bottom:775.180000pt;}
.y19f{bottom:779.234667pt;}
.yd8{bottom:781.609333pt;}
.y12b{bottom:783.084000pt;}
.y4d{bottom:783.440000pt;}
.y1e{bottom:785.669333pt;}
.yaa{bottom:790.572000pt;}
.y7b{bottom:790.957333pt;}
.y1d3{bottom:792.120000pt;}
.y12a{bottom:795.704000pt;}
.y19e{bottom:796.257333pt;}
.yd7{bottom:797.549333pt;}
.y4c{bottom:802.010667pt;}
.y12c{bottom:802.013333pt;}
.y1d{bottom:803.873333pt;}
.y129{bottom:808.322667pt;}
.ya9{bottom:809.142667pt;}
.y7a{bottom:809.528000pt;}
.y19d{bottom:813.280000pt;}
.yd6{bottom:813.489333pt;}
.y4b{bottom:820.581333pt;}
.y128{bottom:820.942667pt;}
.y1d2{bottom:826.165333pt;}
.ya8{bottom:827.713333pt;}
.yd5{bottom:829.429333pt;}
.y19c{bottom:830.302667pt;}
.y79{bottom:832.082667pt;}
.y4a{bottom:839.150667pt;}
.y126{bottom:839.964000pt;}
.y1d1{bottom:843.188000pt;}
.y1c{bottom:843.585333pt;}
.yd4{bottom:845.369333pt;}
.ya7{bottom:846.282667pt;}
.y19b{bottom:847.325333pt;}
.y125{bottom:852.582667pt;}
.y49{bottom:857.721333pt;}
.y127{bottom:858.893333pt;}
.y1d0{bottom:860.210667pt;}
.yd3{bottom:861.309333pt;}
.y1b{bottom:862.156000pt;}
.ya6{bottom:864.853333pt;}
.y124{bottom:865.202667pt;}
.y78{bottom:866.593333pt;}
.y19a{bottom:868.333333pt;}
.y48{bottom:876.292000pt;}
.y1cf{bottom:877.233333pt;}
.yd2{bottom:877.250667pt;}
.y123{bottom:877.822667pt;}
.ya5{bottom:883.424000pt;}
.y77{bottom:885.164000pt;}
.yd1{bottom:893.190667pt;}
.y1ce{bottom:894.256000pt;}
.y47{bottom:894.861333pt;}
.y1a{bottom:896.665333pt;}
.y122{bottom:896.844000pt;}
.ya4{bottom:901.993333pt;}
.y199{bottom:902.844000pt;}
.y76{bottom:903.733333pt;}
.yd0{bottom:909.130667pt;}
.y121{bottom:909.462667pt;}
.y1cd{bottom:911.278667pt;}
.y46{bottom:913.432000pt;}
.ya3{bottom:920.564000pt;}
.y120{bottom:922.082667pt;}
.y75{bottom:922.304000pt;}
.y19{bottom:924.521333pt;}
.y198{bottom:928.146667pt;}
.y1cc{bottom:928.301333pt;}
.ycf{bottom:931.473333pt;}
.y45{bottom:932.002667pt;}
.ya2{bottom:939.134667pt;}
.y74{bottom:940.874667pt;}
.y11f{bottom:941.104000pt;}
.y1cb{bottom:945.324000pt;}
.y197{bottom:945.478667pt;}
.yce{bottom:947.413333pt;}
.y44{bottom:950.572000pt;}
.y18{bottom:952.377333pt;}
.y11e{bottom:953.722667pt;}
.ya1{bottom:957.704000pt;}
.y11a{bottom:960.082667pt;}
.y11d{bottom:961.772000pt;}
.y1ca{bottom:962.346667pt;}
.ycd{bottom:963.353333pt;}
.y73{bottom:963.429333pt;}
.y43{bottom:969.142667pt;}
.y196{bottom:970.781333pt;}
.y11c{bottom:972.744000pt;}
.ya0{bottom:976.274667pt;}
.y1c9{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.y11b{bottom:985.364000pt;}
.ycc{bottom:985.696000pt;}
.y195{bottom:988.113333pt;}
.y42{bottom:991.698667pt;}
.y72{bottom:994.845333pt;}
.y1c8{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.ycb{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.h13{height:19.935877pt;}
.h6{height:28.947524pt;}
.h12{height:30.732706pt;}
.h2{height:33.771789pt;}
.h16{height:35.052646pt;}
.ha{height:36.873667pt;}
.hd{height:38.415786pt;}
.h7{height:38.596538pt;}
.h8{height:38.809074pt;}
.h3{height:38.947124pt;}
.hc{height:43.421286pt;}
.h17{height:43.660390pt;}
.hb{height:46.099251pt;}
.h9{height:48.245551pt;}
.h5{height:48.481423pt;}
.h14{height:63.833871pt;}
.h4{height:69.148877pt;}
.he{height:70.298452pt;}
.h10{height:80.122884pt;}
.hf{height:80.128218pt;}
.h15{height:89.071204pt;}
.h11{height:112.005551pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:46.617333pt;}
.x1{left:47.621333pt;}
.x6c{left:55.592000pt;}
.x92{left:76.309333pt;}
.x62{left:118.229333pt;}
.x6f{left:200.526667pt;}
.x70{left:216.796000pt;}
.x37{left:219.865333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x3d{left:229.828000pt;}
.x4{left:239.924000pt;}
.x4a{left:243.316000pt;}
.x4e{left:245.661333pt;}
.xe{left:250.204000pt;}
.x2c{left:252.130667pt;}
.x6d{left:255.694667pt;}
.x84{left:257.346667pt;}
.x4b{left:258.596000pt;}
.x34{left:259.514667pt;}
.x66{left:260.869333pt;}
.x1c{left:263.729333pt;}
.x2d{left:265.414667pt;}
.x77{left:268.304000pt;}
.x44{left:269.678667pt;}
.x85{left:270.630667pt;}
.x18{left:272.092000pt;}
.x1d{left:277.013333pt;}
.x19{left:278.733333pt;}
.x1e{left:280.400000pt;}
.x78{left:284.914667pt;}
.x53{left:289.213333pt;}
.x1f{left:293.684000pt;}
.x8d{left:298.477333pt;}
.x63{left:302.849333pt;}
.x54{left:304.073333pt;}
.x5e{left:305.358667pt;}
.x88{left:309.206667pt;}
.x3c{left:311.142667pt;}
.x8e{left:318.496000pt;}
.x90{left:319.610667pt;}
.x48{left:320.872000pt;}
.x89{left:322.490667pt;}
.x46{left:327.513333pt;}
.x67{left:332.533333pt;}
.x91{left:336.281333pt;}
.x8a{left:348.812000pt;}
.x68{left:350.684000pt;}
.x45{left:351.776000pt;}
.x8b{left:362.096000pt;}
.x47{left:364.109333pt;}
.x8{left:367.236000pt;}
.x8c{left:368.605333pt;}
.x49{left:375.234667pt;}
.x7b{left:376.830667pt;}
.x86{left:378.309333pt;}
.x26{left:380.416000pt;}
.x9{left:382.489333pt;}
.x7c{left:390.114667pt;}
.x71{left:392.129333pt;}
.x42{left:394.873333pt;}
.x43{left:396.216000pt;}
.x72{left:403.054667pt;}
.x40{left:408.010667pt;}
.x75{left:409.118667pt;}
.x5f{left:410.188000pt;}
.x6{left:412.058667pt;}
.x7f{left:417.241333pt;}
.x41{left:419.885333pt;}
.x3f{left:421.293333pt;}
.x7{left:422.984000pt;}
.x76{left:425.730667pt;}
.x80{left:430.524000pt;}
.x24{left:433.438667pt;}
.x3e{left:434.577333pt;}
.x87{left:435.780000pt;}
.x55{left:439.846667pt;}
.x6e{left:442.114667pt;}
.x4c{left:445.737333pt;}
.x25{left:446.722667pt;}
.x64{left:451.116000pt;}
.x56{left:454.706667pt;}
.x4d{left:456.662667pt;}
.x5b{left:464.886667pt;}
.x30{left:467.866667pt;}
.x27{left:475.437333pt;}
.x31{left:481.150667pt;}
.x32{left:484.404000pt;}
.x28{left:488.721333pt;}
.x33{left:497.688000pt;}
.xc{left:500.205333pt;}
.x13{left:502.697333pt;}
.x74{left:504.286667pt;}
.x69{left:508.272000pt;}
.x14{left:509.340000pt;}
.x11{left:511.368000pt;}
.x15{left:512.670667pt;}
.xd{left:514.430667pt;}
.x12{left:518.009333pt;}
.xf{left:519.486667pt;}
.x52{left:523.378667pt;}
.x10{left:526.129333pt;}
.x8f{left:530.624000pt;}
.x79{left:532.684000pt;}
.x7a{left:536.070667pt;}
.x60{left:538.754667pt;}
.x65{left:549.624000pt;}
.x61{left:553.016000pt;}
.x38{left:565.817333pt;}
.x39{left:576.744000pt;}
.x6a{left:588.346667pt;}
.x7e{left:593.985333pt;}
.x6b{left:606.497333pt;}
.xa{left:610.306667pt;}
.x20{left:611.205333pt;}
.xb{left:621.232000pt;}
.x21{left:624.488000pt;}
.x22{left:627.749333pt;}
.x73{left:640.005333pt;}
.x23{left:641.033333pt;}
.x81{left:647.766667pt;}
.x57{left:653.386667pt;}
.x83{left:654.764000pt;}
.x7d{left:656.018667pt;}
.x82{left:661.049333pt;}
.x4f{left:662.508000pt;}
.x58{left:667.649333pt;}
.x51{left:668.778667pt;}
.x50{left:672.098667pt;}
.x1a{left:677.190667pt;}
.x3a{left:679.245333pt;}
.x59{left:682.178667pt;}
.x1b{left:683.832000pt;}
.x2e{left:691.154667pt;}
.x5a{left:693.104000pt;}
.x3b{left:694.161333pt;}
.x5c{left:702.169333pt;}
.x2f{left:704.438667pt;}
.x35{left:707.057333pt;}
.x29{left:710.614667pt;}
.x5d{left:713.094667pt;}
.x36{left:720.341333pt;}
.x2a{left:723.897333pt;}
.x2b{left:727.152000pt;}
.x16{left:733.794667pt;}
.x17{left:740.436000pt;}
}




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