
    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_cf4aff4302d2a5b7b8f880b6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_9ca276a607aaa57c9c7e27bc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977500;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_665d0fa9b99d27b0e4f9739a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_2e65327aeec8818b22dc4758.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_a79a007dc6861eee41c7dde9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b9089fe805d0669567ec531a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_26c6e7eb30bbbe19b85bd0a4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8ad7182f1668bf2349b14cf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f4cbf58944e91641b547fe52.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977500;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:ffa;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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:ffb;src:url('chunks/assets/font_39faf48306a54584787c542c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.097000;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:ffc;src:url('chunks/assets/font_79610bfe44f5d3abba6bac9d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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:ffd;src:url('chunks/assets/font_79610bfe44f5d3abba6bac9d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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:ffe;src:url('chunks/assets/font_79610bfe44f5d3abba6bac9d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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:fff;src:url('chunks/assets/font_79610bfe44f5d3abba6bac9d.woff')format("woff");}.fff{font-family:fff;line-height:0.969000;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:ff10;src:url('chunks/assets/font_ea8384d799b32e0cc96e52e3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.097000;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:ff11;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.969000;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:ff12;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.969000;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:ff13;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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:ff14;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.969000;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:ff15;src:url('chunks/assets/font_8fec28072db38728168503d3.woff')format("woff");}.ff15{font-family:ff15;line-height:0.947000;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:ff16;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.969000;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:ff17;src:url('chunks/assets/font_8fec28072db38728168503d3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.947000;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:ff18;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff18{font-family:ff18;line-height:0.969000;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:ff19;src:url('chunks/assets/font_8ebe71668201e0317490320f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.969000;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:ff1a;src:url('chunks/assets/font_041f25fdba1f2b229878cf96.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.722656;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-19.980000px;}
.v6{vertical-align:-17.982000px;}
.v4{vertical-align:-10.875000px;}
.v8{vertical-align:-9.255600px;}
.v2{vertical-align:-5.334000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:17.982000px;}
.v5{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v9{vertical-align:36.000000px;}
.ls3e{letter-spacing:-6.144000px;}
.ls58{letter-spacing:-5.376000px;}
.ls3f{letter-spacing:-4.656000px;}
.ls47{letter-spacing:-4.428000px;}
.ls41{letter-spacing:-4.128000px;}
.ls59{letter-spacing:-4.074000px;}
.ls42{letter-spacing:-3.984000px;}
.ls5b{letter-spacing:-3.612000px;}
.ls5c{letter-spacing:-3.486000px;}
.ls48{letter-spacing:-2.628000px;}
.ls60{letter-spacing:-2.310000px;}
.ls38{letter-spacing:-2.208000px;}
.ls51{letter-spacing:-1.932000px;}
.ls29{letter-spacing:-1.566000px;}
.ls61{letter-spacing:-1.554000px;}
.ls37{letter-spacing:-1.440000px;}
.ls45{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.344000px;}
.ls4f{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-1.248000px;}
.ls15{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.170000px;}
.ls7{letter-spacing:-1.056000px;}
.ls50{letter-spacing:-1.050000px;}
.ls14{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-1.020000px;}
.ls46{letter-spacing:-1.008000px;}
.ls25{letter-spacing:-0.912000px;}
.ls5{letter-spacing:-0.816000px;}
.ls4e{letter-spacing:-0.798000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls4c{letter-spacing:-0.630000px;}
.ls3c{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.546000px;}
.ls19{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.507000px;}
.ls9{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.432000px;}
.ls40{letter-spacing:-0.336000px;}
.ls67{letter-spacing:-0.300000px;}
.ls5a{letter-spacing:-0.294000px;}
.ls18{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.192000px;}
.ls5d{letter-spacing:-0.168000px;}
.ls3b{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.135000px;}
.ls55{letter-spacing:-0.126000px;}
.ls22{letter-spacing:-0.120000px;}
.ls5f{letter-spacing:-0.096000px;}
.ls34{letter-spacing:-0.048000px;}
.ls4b{letter-spacing:-0.042000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000060px;}
.ls1d{letter-spacing:0.000240px;}
.ls1{letter-spacing:0.018978px;}
.ls3{letter-spacing:0.020400px;}
.ls2{letter-spacing:0.021000px;}
.ls53{letter-spacing:0.042000px;}
.lsf{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.096000px;}
.ls4a{letter-spacing:0.126000px;}
.ls27{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.192000px;}
.ls0{letter-spacing:0.198000px;}
.ls2c{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.288000px;}
.lse{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.384000px;}
.ls52{letter-spacing:0.420000px;}
.ls33{letter-spacing:0.432000px;}
.ls66{letter-spacing:0.450000px;}
.ls5e{letter-spacing:0.462000px;}
.ls39{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.528000px;}
.ls44{letter-spacing:0.540000px;}
.ls54{letter-spacing:0.546000px;}
.ls57{letter-spacing:0.588000px;}
.ls3a{letter-spacing:0.624000px;}
.ls4d{letter-spacing:0.630000px;}
.ls3d{letter-spacing:0.672000px;}
.ls36{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.042125px;}
.ls28{letter-spacing:1.392000px;}
.ls1b{letter-spacing:1.543800px;}
.ls13{letter-spacing:6.634200px;}
.ls68{letter-spacing:40.219800px;}
.ls21{letter-spacing:86.280000px;}
.ls1f{letter-spacing:93.840000px;}
.ls20{letter-spacing:101.346000px;}
.ls65{letter-spacing:192.960000px;}
.ls62{letter-spacing:203.674200px;}
.ls2d{letter-spacing:295.872000px;}
.ls2e{letter-spacing:296.688000px;}
.ls2f{letter-spacing:297.552000px;}
.ls1e{letter-spacing:312.300000px;}
.ls63{letter-spacing:380.391240px;}
.ls23{letter-spacing:386.547840px;}
.ls64{letter-spacing:393.351240px;}
.ls32{letter-spacing:510.960000px;}
.ls49{letter-spacing:601.342800px;}
.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;}
}
.wsa7{word-spacing:-521.856000px;}
.ws76{word-spacing:-312.300000px;}
.wsa4{word-spacing:-306.768000px;}
.wsb0{word-spacing:-297.552000px;}
.wsaf{word-spacing:-296.688000px;}
.ws77{word-spacing:-101.346000px;}
.ws6d{word-spacing:-17.040000px;}
.ws22{word-spacing:-16.302000px;}
.ws5e{word-spacing:-13.740000px;}
.ws70{word-spacing:-13.620000px;}
.ws7{word-spacing:-13.338000px;}
.ws145{word-spacing:-13.080000px;}
.ws93{word-spacing:-12.366000px;}
.ws90{word-spacing:-12.288000px;}
.ws89{word-spacing:-12.258000px;}
.ws4{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.856000px;}
.ws114{word-spacing:-11.718000px;}
.wsb7{word-spacing:-11.616000px;}
.wsbe{word-spacing:-11.568000px;}
.wsbb{word-spacing:-11.520000px;}
.wsba{word-spacing:-11.376000px;}
.ws59{word-spacing:-11.340000px;}
.wsa8{word-spacing:-11.328000px;}
.ws5d{word-spacing:-11.280000px;}
.ws5b{word-spacing:-11.232000px;}
.ws1{word-spacing:-11.214000px;}
.wsa3{word-spacing:-11.136000px;}
.wsb6{word-spacing:-11.088000px;}
.ws8f{word-spacing:-11.040000px;}
.wsa1{word-spacing:-10.992000px;}
.wsc4{word-spacing:-10.944000px;}
.ws6{word-spacing:-10.896000px;}
.wsc5{word-spacing:-10.848000px;}
.ws3{word-spacing:-10.800000px;}
.wsbc{word-spacing:-10.752000px;}
.wsa6{word-spacing:-10.704000px;}
.wsa5{word-spacing:-10.656000px;}
.wsc1{word-spacing:-10.560000px;}
.ws8c{word-spacing:-10.464000px;}
.wsb5{word-spacing:-10.416000px;}
.wsa2{word-spacing:-10.368000px;}
.ws8e{word-spacing:-10.320000px;}
.ws0{word-spacing:-10.273626px;}
.ws2{word-spacing:-10.176000px;}
.wsdb{word-spacing:-10.164000px;}
.wse5{word-spacing:-10.122000px;}
.wse2{word-spacing:-10.080000px;}
.ws8b{word-spacing:-9.984000px;}
.wse1{word-spacing:-9.954000px;}
.wsbd{word-spacing:-9.792000px;}
.ws5a{word-spacing:-9.696000px;}
.wsdf{word-spacing:-9.660000px;}
.ws5c{word-spacing:-9.648000px;}
.wsed{word-spacing:-9.576000px;}
.ws8a{word-spacing:-9.552000px;}
.wsdd{word-spacing:-9.534000px;}
.wsee{word-spacing:-9.492000px;}
.wse3{word-spacing:-9.408000px;}
.wsec{word-spacing:-9.366000px;}
.wse9{word-spacing:-9.240000px;}
.wsd8{word-spacing:-9.114000px;}
.wsd9{word-spacing:-9.072000px;}
.wse6{word-spacing:-9.030000px;}
.wsb8{word-spacing:-8.976000px;}
.wsdc{word-spacing:-8.736000px;}
.wsc6{word-spacing:-8.712000px;}
.wse4{word-spacing:-8.568000px;}
.wsda{word-spacing:-8.484000px;}
.wsb9{word-spacing:-8.208000px;}
.wsc7{word-spacing:-8.172000px;}
.ws71{word-spacing:-8.010420px;}
.wsf0{word-spacing:-7.980000px;}
.ws5f{word-spacing:-7.940460px;}
.wsde{word-spacing:-7.854000px;}
.wsca{word-spacing:-7.740000px;}
.wsef{word-spacing:-7.224000px;}
.wse0{word-spacing:-7.182000px;}
.ws103{word-spacing:-7.146414px;}
.wsc3{word-spacing:-6.912000px;}
.wsc8{word-spacing:-6.804000px;}
.wsc2{word-spacing:-6.288000px;}
.wsc0{word-spacing:-6.240000px;}
.wseb{word-spacing:-6.048000px;}
.wscb{word-spacing:-5.544000px;}
.wsea{word-spacing:-5.502000px;}
.wse8{word-spacing:-5.460000px;}
.wsbf{word-spacing:-4.272000px;}
.ws6e{word-spacing:-4.080000px;}
.wsc9{word-spacing:-3.744000px;}
.wse7{word-spacing:-3.738000px;}
.ws13b{word-spacing:-3.618000px;}
.ws158{word-spacing:-3.480000px;}
.ws4a{word-spacing:-3.300000px;}
.ws12a{word-spacing:-3.024000px;}
.ws57{word-spacing:-2.640000px;}
.ws41{word-spacing:-2.520000px;}
.ws13f{word-spacing:-2.484000px;}
.wsf8{word-spacing:-2.460000px;}
.ws13e{word-spacing:-2.430000px;}
.ws156{word-spacing:-2.400000px;}
.ws42{word-spacing:-2.280000px;}
.ws11d{word-spacing:-2.220000px;}
.ws46{word-spacing:-2.160000px;}
.ws23{word-spacing:-2.040000px;}
.ws7e{word-spacing:-1.980000px;}
.ws2a{word-spacing:-1.920000px;}
.ws11c{word-spacing:-1.860000px;}
.ws123{word-spacing:-1.782000px;}
.ws106{word-spacing:-1.680000px;}
.ws32{word-spacing:-1.620000px;}
.ws10a{word-spacing:-1.566000px;}
.ws3c{word-spacing:-1.500000px;}
.ws10b{word-spacing:-1.404000px;}
.wsac{word-spacing:-1.320000px;}
.wsad{word-spacing:-1.296000px;}
.ws7f{word-spacing:-1.200000px;}
.wsae{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.140000px;}
.ws129{word-spacing:-1.134000px;}
.ws1c{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.020000px;}
.ws119{word-spacing:-0.960000px;}
.ws36{word-spacing:-0.840000px;}
.ws3d{word-spacing:-0.780000px;}
.ws80{word-spacing:-0.720000px;}
.ws133{word-spacing:-0.702000px;}
.ws98{word-spacing:-0.660000px;}
.ws14a{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.633600px;}
.wsd0{word-spacing:-0.600000px;}
.ws13{word-spacing:-0.594000px;}
.ws4d{word-spacing:-0.540000px;}
.ws51{word-spacing:-0.480000px;}
.ws115{word-spacing:-0.450000px;}
.ws43{word-spacing:-0.420000px;}
.ws9f{word-spacing:-0.378000px;}
.ws64{word-spacing:-0.360000px;}
.ws56{word-spacing:-0.300000px;}
.wsb3{word-spacing:-0.288000px;}
.ws3b{word-spacing:-0.240000px;}
.ws52{word-spacing:-0.180000px;}
.ws9d{word-spacing:-0.162000px;}
.ws27{word-spacing:-0.120000px;}
.ws9e{word-spacing:-0.108000px;}
.ws31{word-spacing:-0.060000px;}
.ws1b{word-spacing:-0.054000px;}
.wsd4{word-spacing:-0.048000px;}
.wsfc{word-spacing:-0.042000px;}
.ws9{word-spacing:0.000000px;}
.wsfd{word-spacing:0.042000px;}
.wsd5{word-spacing:0.048000px;}
.ws130{word-spacing:0.054000px;}
.ws6f{word-spacing:0.060000px;}
.ws12{word-spacing:0.108000px;}
.wscc{word-spacing:0.135000px;}
.ws150{word-spacing:0.162000px;}
.ws97{word-spacing:0.180000px;}
.ws1f{word-spacing:0.216000px;}
.ws60{word-spacing:0.270000px;}
.ws61{word-spacing:0.288000px;}
.ws55{word-spacing:0.300000px;}
.ws2b{word-spacing:0.360000px;}
.ws128{word-spacing:0.378000px;}
.wsd3{word-spacing:0.420000px;}
.ws7d{word-spacing:0.480000px;}
.ws20{word-spacing:0.504000px;}
.ws68{word-spacing:0.540000px;}
.wsc{word-spacing:0.576000px;}
.ws6b{word-spacing:0.720000px;}
.ws63{word-spacing:0.780000px;}
.ws140{word-spacing:0.810000px;}
.ws12c{word-spacing:0.918000px;}
.ws54{word-spacing:0.960000px;}
.ws12b{word-spacing:0.972000px;}
.wsd6{word-spacing:1.008000px;}
.ws95{word-spacing:1.020000px;}
.ws33{word-spacing:1.080000px;}
.wsa9{word-spacing:1.140000px;}
.ws10f{word-spacing:1.188000px;}
.ws2c{word-spacing:1.200000px;}
.ws9a{word-spacing:1.242000px;}
.ws74{word-spacing:1.260000px;}
.ws147{word-spacing:1.296000px;}
.ws53{word-spacing:1.320000px;}
.ws99{word-spacing:1.350000px;}
.wscd{word-spacing:1.380000px;}
.ws1d{word-spacing:1.458000px;}
.wsa0{word-spacing:1.512000px;}
.wsf5{word-spacing:1.560000px;}
.ws108{word-spacing:1.680000px;}
.ws4c{word-spacing:1.740000px;}
.ws9c{word-spacing:1.782000px;}
.wsd1{word-spacing:1.860000px;}
.ws47{word-spacing:1.920000px;}
.ws4b{word-spacing:1.980000px;}
.ws17{word-spacing:1.998000px;}
.ws159{word-spacing:2.040000px;}
.wsd2{word-spacing:2.100000px;}
.ws86{word-spacing:2.160000px;}
.ws109{word-spacing:2.214000px;}
.ws81{word-spacing:2.220000px;}
.ws138{word-spacing:2.268000px;}
.ws28{word-spacing:2.280000px;}
.ws14{word-spacing:2.322000px;}
.wscf{word-spacing:2.340000px;}
.ws35{word-spacing:2.400000px;}
.ws11{word-spacing:2.430000px;}
.ws34{word-spacing:2.460000px;}
.ws132{word-spacing:2.484000px;}
.ws30{word-spacing:2.520000px;}
.ws94{word-spacing:2.580000px;}
.ws79{word-spacing:2.640000px;}
.ws9b{word-spacing:2.646000px;}
.wsab{word-spacing:2.700000px;}
.wsf3{word-spacing:2.760000px;}
.wsf4{word-spacing:2.820000px;}
.ws62{word-spacing:2.880000px;}
.ws73{word-spacing:2.940000px;}
.ws6c{word-spacing:3.000000px;}
.ws82{word-spacing:3.060000px;}
.ws14b{word-spacing:3.078000px;}
.ws107{word-spacing:3.120000px;}
.wsf{word-spacing:3.186000px;}
.ws84{word-spacing:3.240000px;}
.ws66{word-spacing:3.360000px;}
.wsd{word-spacing:3.408000px;}
.wsf2{word-spacing:3.420000px;}
.ws1a{word-spacing:3.456000px;}
.ws2f{word-spacing:3.480000px;}
.ws29{word-spacing:3.540000px;}
.wsfb{word-spacing:3.564000px;}
.ws18{word-spacing:3.618000px;}
.wsf9{word-spacing:3.720000px;}
.ws3a{word-spacing:3.780000px;}
.wsfa{word-spacing:3.888000px;}
.ws2e{word-spacing:3.900000px;}
.ws3e{word-spacing:3.960000px;}
.ws49{word-spacing:4.020000px;}
.wsd7{word-spacing:4.050000px;}
.ws7b{word-spacing:4.140000px;}
.ws10e{word-spacing:4.200000px;}
.ws25{word-spacing:4.260000px;}
.ws26{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.ws117{word-spacing:4.440000px;}
.ws12f{word-spacing:4.482000px;}
.ws112{word-spacing:4.500000px;}
.ws110{word-spacing:4.536000px;}
.ws69{word-spacing:4.560000px;}
.ws1e{word-spacing:4.590000px;}
.wsa{word-spacing:4.611600px;}
.ws118{word-spacing:4.680000px;}
.ws45{word-spacing:4.800000px;}
.ws3f{word-spacing:4.860000px;}
.ws154{word-spacing:5.040000px;}
.ws14f{word-spacing:5.076000px;}
.ws6a{word-spacing:5.100000px;}
.ws10{word-spacing:5.130000px;}
.ws75{word-spacing:5.280000px;}
.ws125{word-spacing:5.292000px;}
.ws135{word-spacing:5.346000px;}
.ws16{word-spacing:5.400000px;}
.ws136{word-spacing:5.454000px;}
.ws11a{word-spacing:5.460000px;}
.ws19{word-spacing:5.562000px;}
.ws152{word-spacing:5.580000px;}
.ws13a{word-spacing:5.616000px;}
.ws104{word-spacing:5.700000px;}
.ws134{word-spacing:5.724000px;}
.ws116{word-spacing:5.880000px;}
.wsf6{word-spacing:5.940000px;}
.ws50{word-spacing:6.000000px;}
.ws126{word-spacing:6.102000px;}
.ws105{word-spacing:6.120000px;}
.ws137{word-spacing:6.156000px;}
.ws40{word-spacing:6.240000px;}
.ws4f{word-spacing:6.300000px;}
.ws14e{word-spacing:6.318000px;}
.ws96{word-spacing:6.360000px;}
.ws44{word-spacing:6.480000px;}
.ws111{word-spacing:6.540000px;}
.ws67{word-spacing:6.600000px;}
.ws24{word-spacing:6.660000px;}
.ws48{word-spacing:6.720000px;}
.wsaa{word-spacing:6.840000px;}
.ws37{word-spacing:6.900000px;}
.ws139{word-spacing:6.912000px;}
.ws11b{word-spacing:6.960000px;}
.ws15{word-spacing:6.966000px;}
.ws85{word-spacing:7.020000px;}
.ws11e{word-spacing:7.128000px;}
.ws83{word-spacing:7.140000px;}
.wsb{word-spacing:7.257600px;}
.ws143{word-spacing:7.290000px;}
.ws4e{word-spacing:7.440000px;}
.ws141{word-spacing:7.668000px;}
.wsce{word-spacing:7.680000px;}
.wsb2{word-spacing:7.776000px;}
.ws39{word-spacing:7.860000px;}
.ws14c{word-spacing:7.992000px;}
.ws7c{word-spacing:8.040000px;}
.ws14d{word-spacing:8.100000px;}
.ws148{word-spacing:8.370000px;}
.wsb1{word-spacing:8.478000px;}
.ws7a{word-spacing:8.580000px;}
.ws151{word-spacing:8.700000px;}
.ws155{word-spacing:8.760000px;}
.ws120{word-spacing:8.802000px;}
.ws13d{word-spacing:8.856000px;}
.ws12d{word-spacing:9.396000px;}
.wsf7{word-spacing:9.660000px;}
.ws12e{word-spacing:9.882000px;}
.ws157{word-spacing:10.020000px;}
.ws78{word-spacing:10.500000px;}
.ws65{word-spacing:11.520000px;}
.ws142{word-spacing:12.690000px;}
.ws124{word-spacing:12.906000px;}
.wse{word-spacing:14.160000px;}
.ws127{word-spacing:14.310000px;}
.ws2d{word-spacing:14.460000px;}
.ws122{word-spacing:15.066000px;}
.wsf1{word-spacing:15.300000px;}
.ws13c{word-spacing:17.010000px;}
.ws11f{word-spacing:17.064000px;}
.ws146{word-spacing:17.820000px;}
.ws149{word-spacing:18.738000px;}
.ws153{word-spacing:18.840000px;}
.ws131{word-spacing:22.734000px;}
.ws121{word-spacing:23.112000px;}
.ws8d{word-spacing:82.320000px;}
.ws10c{word-spacing:159.888000px;}
.wsff{word-spacing:210.720000px;}
.ws10d{word-spacing:220.032000px;}
.ws100{word-spacing:255.984000px;}
.ws102{word-spacing:294.599400px;}
.ws101{word-spacing:307.559400px;}
.ws92{word-spacing:309.259800px;}
.ws91{word-spacing:328.375800px;}
.wsfe{word-spacing:1387.404900px;}
.ws88{word-spacing:1387.427700px;}
.ws58{word-spacing:1388.394900px;}
.wsb4{word-spacing:1388.934900px;}
.ws144{word-spacing:1390.734900px;}
.ws21{word-spacing:1394.447100px;}
.ws113{word-spacing:1396.337700px;}
._1e{margin-left:-510.720000px;}
._2a{margin-left:-58.415400px;}
._3{margin-left:-9.946716px;}
._28{margin-left:-8.262000px;}
._9{margin-left:-7.183800px;}
._e{margin-left:-6.049500px;}
._b{margin-left:-4.907760px;}
._8{margin-left:-3.573300px;}
._5{margin-left:-2.397300px;}
._0{margin-left:-1.115100px;}
._6{width:1.166700px;}
._a{width:2.245800px;}
._2{width:3.617160px;}
._1{width:4.634100px;}
._d{width:5.667300px;}
._c{width:6.995700px;}
._12{width:8.797200px;}
._14{width:10.489800px;}
._11{width:12.468000px;}
._10{width:13.697100px;}
._20{width:15.594000px;}
._7{width:16.944000px;}
._29{width:18.737400px;}
._4{width:22.320000px;}
._f{width:31.011600px;}
._18{width:80.880000px;}
._16{width:91.968000px;}
._17{width:94.512000px;}
._22{width:99.222000px;}
._1a{width:108.113700px;}
._15{width:126.912000px;}
._19{width:136.353600px;}
._25{width:172.464000px;}
._1f{width:203.520000px;}
._21{width:224.208000px;}
._24{width:341.483400px;}
._1d{width:346.789800px;}
._1c{width:350.227200px;}
._1b{width:376.147200px;}
._27{width:385.920000px;}
._23{width:392.227200px;}
._26{width:604.464000px;}
._13{width:711.946200px;}
.fc2{color:rgb(107,19,25);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:30.000000px;}
.fs11{font-size:31.482000px;}
.fs10{font-size:31.875000px;}
.fsb{font-size:34.980000px;}
.fs12{font-size:36.000000px;}
.fs1{font-size:37.800000px;}
.fs4{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.fs0{font-size:39.600000px;}
.fs5{font-size:42.000000px;}
.fsf{font-size:44.625000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fse{font-size:63.750000px;}
.fs3{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:0.308850px;}
.yc6{bottom:0.450600px;}
.ye1{bottom:3.354750px;}
.ye5{bottom:3.387150px;}
.yda{bottom:3.843300px;}
.y1b4{bottom:3.848100px;}
.y1a5{bottom:4.272600px;}
.yae{bottom:4.969200px;}
.yc9{bottom:9.964950px;}
.yc4{bottom:10.106700px;}
.yd8{bottom:13.499550px;}
.y12f{bottom:27.950100px;}
.y4{bottom:55.872300px;}
.y3{bottom:68.472300px;}
.y18e{bottom:78.528150px;}
.y137{bottom:78.980700px;}
.yc8{bottom:80.335500px;}
.y211{bottom:80.696700px;}
.y1bc{bottom:81.008550px;}
.y2{bottom:81.072300px;}
.y101{bottom:81.688800px;}
.y57{bottom:82.634400px;}
.y1f5{bottom:83.201250px;}
.y107{bottom:84.055800px;}
.y172{bottom:84.670800px;}
.y240{bottom:84.862800px;}
.yca{bottom:85.659900px;}
.y85{bottom:89.200500px;}
.yc7{bottom:90.327450px;}
.y18d{bottom:96.528150px;}
.y254{bottom:96.711600px;}
.y136{bottom:96.980700px;}
.y210{bottom:98.696700px;}
.y1bb{bottom:99.008550px;}
.y100{bottom:99.688800px;}
.y56{bottom:100.634400px;}
.y1f4{bottom:101.201250px;}
.y106{bottom:102.055800px;}
.y171{bottom:102.670800px;}
.yc3{bottom:102.835500px;}
.y23f{bottom:102.862800px;}
.y84{bottom:107.200500px;}
.yc5{bottom:108.301650px;}
.y26{bottom:110.882100px;}
.yc2{bottom:112.827450px;}
.y18c{bottom:114.528150px;}
.y253{bottom:114.711600px;}
.y135{bottom:114.980700px;}
.y20f{bottom:116.696700px;}
.y1ba{bottom:117.008550px;}
.yff{bottom:117.688800px;}
.y55{bottom:118.634400px;}
.y1f3{bottom:119.201250px;}
.y105{bottom:120.055800px;}
.y170{bottom:120.670800px;}
.y23e{bottom:120.862800px;}
.y83{bottom:125.200500px;}
.yc1{bottom:130.827450px;}
.y18b{bottom:132.528150px;}
.y252{bottom:132.711600px;}
.y20e{bottom:134.696700px;}
.y1b9{bottom:135.008550px;}
.yfe{bottom:135.688800px;}
.y54{bottom:136.634400px;}
.y1f2{bottom:137.201250px;}
.y104{bottom:138.055800px;}
.y23d{bottom:138.862800px;}
.y82{bottom:143.200500px;}
.y25{bottom:145.890000px;}
.yc0{bottom:148.827450px;}
.y13b{bottom:150.087150px;}
.y142{bottom:150.087300px;}
.y18a{bottom:150.528150px;}
.y251{bottom:150.711600px;}
.y20d{bottom:152.696700px;}
.y1b8{bottom:153.008550px;}
.yfd{bottom:153.688800px;}
.y53{bottom:154.634400px;}
.y1f1{bottom:155.201250px;}
.y103{bottom:156.055800px;}
.y23c{bottom:156.862800px;}
.y81{bottom:161.200500px;}
.y113{bottom:164.003850px;}
.ybf{bottom:166.827450px;}
.y24{bottom:168.141900px;}
.y189{bottom:168.528150px;}
.y141{bottom:169.594800px;}
.y20c{bottom:170.696700px;}
.y1b7{bottom:171.008550px;}
.yfc{bottom:171.688800px;}
.y163{bottom:171.997950px;}
.y52{bottom:172.634400px;}
.y1f0{bottom:173.201250px;}
.y102{bottom:174.055800px;}
.y23b{bottom:174.862800px;}
.y140{bottom:175.354800px;}
.y250{bottom:177.215550px;}
.y80{bottom:179.200500px;}
.y13f{bottom:181.114800px;}
.y162{bottom:183.265950px;}
.ybe{bottom:184.827450px;}
.y188{bottom:186.528150px;}
.y20b{bottom:188.696700px;}
.y1b6{bottom:189.008550px;}
.y145{bottom:189.627300px;}
.yfb{bottom:189.688800px;}
.y13a{bottom:189.843150px;}
.y51{bottom:190.634400px;}
.y1ef{bottom:191.201250px;}
.y23a{bottom:192.862800px;}
.y161{bottom:195.169950px;}
.y24f{bottom:195.215550px;}
.y7f{bottom:197.200500px;}
.y23{bottom:198.649800px;}
.ybd{bottom:202.827450px;}
.y187{bottom:204.528150px;}
.y20a{bottom:206.696700px;}
.y1b5{bottom:207.008550px;}
.y160{bottom:207.073950px;}
.yfa{bottom:207.688800px;}
.y122{bottom:208.344450px;}
.y50{bottom:208.634400px;}
.y1ee{bottom:209.201250px;}
.y239{bottom:210.862800px;}
.y24e{bottom:213.215550px;}
.y22{bottom:215.149800px;}
.y7e{bottom:215.200500px;}
.y148{bottom:216.207300px;}
.y13e{bottom:216.423150px;}
.y15f{bottom:219.193950px;}
.y186{bottom:222.528150px;}
.yad{bottom:224.016000px;}
.y209{bottom:224.696700px;}
.yf9{bottom:225.688800px;}
.y121{bottom:226.344450px;}
.y4f{bottom:226.634400px;}
.y238{bottom:228.862800px;}
.yaa{bottom:228.935250px;}
.y15e{bottom:230.677950px;}
.y24d{bottom:231.215550px;}
.y21{bottom:231.649800px;}
.yb5{bottom:232.065450px;}
.y7d{bottom:233.200500px;}
.ya6{bottom:233.586450px;}
.y185{bottom:240.528150px;}
.y1d9{bottom:240.751050px;}
.yab{bottom:241.640250px;}
.y15d{bottom:242.581950px;}
.y208{bottom:242.696700px;}
.y144{bottom:242.991300px;}
.y139{bottom:243.207150px;}
.yf8{bottom:243.688800px;}
.y1ed{bottom:244.209150px;}
.y4e{bottom:244.634400px;}
.y237{bottom:246.862800px;}
.yb4{bottom:247.671450px;}
.y20{bottom:248.149800px;}
.y7c{bottom:251.200500px;}
.y93{bottom:252.922500px;}
.y120{bottom:253.176150px;}
.y15c{bottom:254.065950px;}
.y24c{bottom:257.719500px;}
.ybb{bottom:258.375750px;}
.y184{bottom:258.528150px;}
.y1d8{bottom:258.751050px;}
.y207{bottom:260.696700px;}
.yf7{bottom:261.688800px;}
.y4d{bottom:262.634400px;}
.y1f{bottom:264.649800px;}
.y236{bottom:264.862800px;}
.yb3{bottom:264.915450px;}
.y15b{bottom:265.969950px;}
.y7b{bottom:269.200500px;}
.y147{bottom:269.355300px;}
.y13d{bottom:269.571150px;}
.y11f{bottom:274.896150px;}
.y24b{bottom:275.719500px;}
.y183{bottom:276.528150px;}
.y15a{bottom:277.657950px;}
.y206{bottom:278.696700px;}
.yf6{bottom:279.688800px;}
.y4c{bottom:280.634400px;}
.yba{bottom:280.875750px;}
.y16f{bottom:281.037150px;}
.y1e{bottom:281.149800px;}
.yb2{bottom:282.159450px;}
.y235{bottom:282.862800px;}
.y1d7{bottom:285.582750px;}
.y7a{bottom:287.200500px;}
.ya7{bottom:288.375750px;}
.y159{bottom:289.561950px;}
.ybc{bottom:293.010750px;}
.ya3{bottom:293.016450px;}
.y24a{bottom:293.719500px;}
.y182{bottom:294.528150px;}
.y143{bottom:296.139300px;}
.y138{bottom:296.355150px;}
.y11e{bottom:296.616000px;}
.y205{bottom:296.696700px;}
.y1d{bottom:297.649800px;}
.yf5{bottom:297.688800px;}
.y4b{bottom:298.634400px;}
.yb1{bottom:299.403450px;}
.y234{bottom:300.862800px;}
.y158{bottom:301.681950px;}
.yb9{bottom:303.375750px;}
.y79{bottom:305.200500px;}
.y1dd{bottom:306.319350px;}
.y1d6{bottom:307.302600px;}
.y249{bottom:311.719500px;}
.y181{bottom:312.528150px;}
.y1c{bottom:314.149800px;}
.y204{bottom:314.696700px;}
.y4a{bottom:316.634400px;}
.yb0{bottom:316.647450px;}
.y11d{bottom:318.335850px;}
.y233{bottom:318.862800px;}
.y14f{bottom:320.377950px;}
.ya9{bottom:321.230250px;}
.y146{bottom:322.719300px;}
.y13c{bottom:322.935150px;}
.y78{bottom:323.200500px;}
.y1dc{bottom:324.319350px;}
.ya5{bottom:325.881450px;}
.y1d5{bottom:329.022450px;}
.y180{bottom:330.528150px;}
.y1b{bottom:330.649800px;}
.yf4{bottom:332.696700px;}
.yaf{bottom:333.891450px;}
.yb8{bottom:333.934200px;}
.y49{bottom:334.634400px;}
.y232{bottom:336.862800px;}
.y1df{bottom:337.598700px;}
.y11c{bottom:340.055700px;}
.y77{bottom:341.200500px;}
.y1db{bottom:342.319350px;}
.ya8{bottom:346.031250px;}
.y248{bottom:346.727400px;}
.y1a{bottom:347.149800px;}
.y17f{bottom:348.528150px;}
.ya4{bottom:350.676450px;}
.y203{bottom:350.696700px;}
.y1d4{bottom:350.742450px;}
.yac{bottom:351.422700px;}
.yb6{bottom:351.459450px;}
.y48{bottom:352.634400px;}
.y231{bottom:354.862800px;}
.yb7{bottom:358.735200px;}
.y76{bottom:359.200500px;}
.y1da{bottom:360.319350px;}
.y11b{bottom:361.775550px;}
.y124{bottom:361.828200px;}
.y19{bottom:363.649800px;}
.y17e{bottom:366.528150px;}
.y202{bottom:368.696700px;}
.y47{bottom:370.634400px;}
.y1d3{bottom:372.462300px;}
.y230{bottom:372.862800px;}
.y75{bottom:377.200500px;}
.y119{bottom:379.775550px;}
.y123{bottom:379.828200px;}
.y18{bottom:380.149800px;}
.y16e{bottom:380.451150px;}
.yf3{bottom:382.260450px;}
.ya2{bottom:383.394300px;}
.y17d{bottom:384.528150px;}
.y201{bottom:386.696700px;}
.y46{bottom:388.634400px;}
.y22f{bottom:390.862800px;}
.y1de{bottom:393.307500px;}
.y1d2{bottom:394.182150px;}
.y74{bottom:395.200500px;}
.y247{bottom:396.291150px;}
.y17{bottom:396.649800px;}
.y11a{bottom:397.775550px;}
.y1e5{bottom:399.467700px;}
.yf2{bottom:400.260450px;}
.ya1{bottom:401.394300px;}
.y17c{bottom:402.528150px;}
.y1d1{bottom:403.182150px;}
.y12e{bottom:404.311500px;}
.y200{bottom:404.696700px;}
.y45{bottom:406.634400px;}
.y22e{bottom:408.862800px;}
.y16d{bottom:410.133150px;}
.y130{bottom:412.596600px;}
.y16{bottom:413.149800px;}
.y73{bottom:413.200500px;}
.y246{bottom:414.291150px;}
.y155{bottom:414.781950px;}
.y1e4{bottom:417.323700px;}
.y1ec{bottom:417.335700px;}
.yf1{bottom:418.260450px;}
.ya0{bottom:419.394300px;}
.y17b{bottom:420.528150px;}
.y1ff{bottom:422.696700px;}
.y44{bottom:424.634400px;}
.y16b{bottom:426.468150px;}
.y22d{bottom:426.862800px;}
.y118{bottom:428.421600px;}
.y15{bottom:429.649800px;}
.y1eb{bottom:429.875700px;}
.y72{bottom:431.200500px;}
.y12d{bottom:432.263100px;}
.y245{bottom:432.291150px;}
.yf0{bottom:436.260450px;}
.y154{bottom:437.317950px;}
.y9f{bottom:437.394300px;}
.y17a{bottom:438.528150px;}
.y1fe{bottom:440.696700px;}
.y43{bottom:442.634400px;}
.y1d0{bottom:442.828200px;}
.y22c{bottom:444.862800px;}
.y12c{bottom:444.911100px;}
.y16c{bottom:445.854150px;}
.y14{bottom:446.149800px;}
.y117{bottom:446.421600px;}
.y71{bottom:449.200500px;}
.y244{bottom:450.291150px;}
.yef{bottom:454.260450px;}
.y9e{bottom:455.394300px;}
.y179{bottom:456.528150px;}
.y1fd{bottom:458.696700px;}
.y153{bottom:459.421950px;}
.y42{bottom:460.634400px;}
.y1cf{bottom:460.828200px;}
.y16a{bottom:461.379150px;}
.y13{bottom:462.649800px;}
.y22b{bottom:462.862800px;}
.y1e2{bottom:463.673250px;}
.y70{bottom:467.200500px;}
.y243{bottom:468.291150px;}
.yee{bottom:472.260450px;}
.y9d{bottom:473.394300px;}
.y134{bottom:473.832600px;}
.y178{bottom:474.528150px;}
.y1fc{bottom:476.696700px;}
.y41{bottom:478.634400px;}
.y12{bottom:479.149800px;}
.y152{bottom:479.833950px;}
.y22a{bottom:480.862800px;}
.y10b{bottom:481.287900px;}
.y6f{bottom:485.200500px;}
.y242{bottom:486.291150px;}
.y168{bottom:486.678150px;}
.yed{bottom:490.260450px;}
.y177{bottom:492.528150px;}
.y11{bottom:495.649800px;}
.y1ea{bottom:496.415700px;}
.y40{bottom:496.634400px;}
.y229{bottom:498.862800px;}
.y10a{bottom:499.287900px;}
.y1bf{bottom:499.713000px;}
.y151{bottom:501.301950px;}
.y6e{bottom:503.200500px;}
.y12a{bottom:503.378100px;}
.y169{bottom:504.876150px;}
.yec{bottom:508.260450px;}
.y176{bottom:510.528150px;}
.y87{bottom:511.335150px;}
.y1fb{bottom:511.704600px;}
.y167{bottom:512.022150px;}
.y12b{bottom:513.714600px;}
.y3f{bottom:514.634400px;}
.y10{bottom:516.401700px;}
.y228{bottom:516.862800px;}
.y109{bottom:517.287900px;}
.y1be{bottom:517.713000px;}
.y6d{bottom:521.200500px;}
.y241{bottom:521.299050px;}
.y150{bottom:522.769950px;}
.yeb{bottom:526.260450px;}
.y166{bottom:527.412150px;}
.y175{bottom:528.528150px;}
.y86{bottom:529.335150px;}
.y1e9{bottom:530.219700px;}
.y3e{bottom:532.634400px;}
.y133{bottom:532.716600px;}
.y227{bottom:534.862800px;}
.y108{bottom:535.287900px;}
.y1bd{bottom:535.713000px;}
.y6c{bottom:539.200500px;}
.y165{bottom:543.999150px;}
.yea{bottom:544.260450px;}
.y14e{bottom:544.669950px;}
.y174{bottom:546.528150px;}
.y3d{bottom:550.634400px;}
.y226{bottom:552.862800px;}
.y92{bottom:557.007000px;}
.y1e3{bottom:557.311200px;}
.y157{bottom:559.681950px;}
.ye9{bottom:562.260450px;}
.y129{bottom:562.262100px;}
.y1e1{bottom:563.165250px;}
.y173{bottom:564.528150px;}
.y112{bottom:565.512000px;}
.y99{bottom:567.844050px;}
.yf{bottom:568.417650px;}
.y3c{bottom:568.634400px;}
.y1fa{bottom:569.772300px;}
.y1c7{bottom:570.606300px;}
.y225{bottom:570.862800px;}
.y156{bottom:571.681950px;}
.y6b{bottom:574.208400px;}
.y116{bottom:574.651350px;}
.ye8{bottom:580.260450px;}
.ye{bottom:583.417650px;}
.y3b{bottom:586.634400px;}
.y98{bottom:587.620050px;}
.y1f9{bottom:587.772300px;}
.y9c{bottom:588.256050px;}
.y224{bottom:588.862800px;}
.y132{bottom:591.600600px;}
.y1ce{bottom:591.642300px;}
.y1c6{bottom:591.654300px;}
.y115{bottom:592.399350px;}
.y1e0{bottom:596.969250px;}
.ye7{bottom:598.260450px;}
.yd{bottom:598.417650px;}
.y191{bottom:600.009300px;}
.y1cd{bottom:603.978300px;}
.y3a{bottom:604.634400px;}
.y1f8{bottom:605.772300px;}
.y114{bottom:606.535350px;}
.y223{bottom:606.862800px;}
.y9b{bottom:608.236050px;}
.y97{bottom:608.452050px;}
.ye4{bottom:612.009000px;}
.y164{bottom:613.713150px;}
.y190{bottom:618.009300px;}
.ye3{bottom:620.326800px;}
.ye6{bottom:620.512500px;}
.y128{bottom:621.158100px;}
.y39{bottom:622.634400px;}
.y6a{bottom:623.772150px;}
.y1f7{bottom:623.772300px;}
.y222{bottom:624.862800px;}
.yc{bottom:626.173500px;}
.y9a{bottom:629.068050px;}
.y88{bottom:629.072550px;}
.y1e8{bottom:630.563700px;}
.y1c4{bottom:634.392000px;}
.ye0{bottom:634.686000px;}
.y18f{bottom:636.009300px;}
.y38{bottom:640.634400px;}
.y69{bottom:641.772150px;}
.y1f6{bottom:641.772300px;}
.ydf{bottom:642.681450px;}
.ye2{bottom:642.764400px;}
.y221{bottom:642.862800px;}
.y131{bottom:650.700600px;}
.y111{bottom:656.271150px;}
.y37{bottom:658.634400px;}
.y68{bottom:659.772150px;}
.y14d{bottom:659.772300px;}
.yde{bottom:660.764400px;}
.y220{bottom:660.862800px;}
.y96{bottom:662.020050px;}
.y1e7{bottom:664.151700px;}
.y1cc{bottom:664.782300px;}
.y1a4{bottom:667.558500px;}
.yb{bottom:670.937250px;}
.y36{bottom:676.634400px;}
.y67{bottom:677.772150px;}
.y14c{bottom:677.772300px;}
.ydd{bottom:678.764400px;}
.y21f{bottom:678.862800px;}
.y127{bottom:680.258100px;}
.y1b3{bottom:682.022100px;}
.y1a3{bottom:682.447350px;}
.y95{bottom:682.552050px;}
.ya{bottom:688.937250px;}
.y1b2{bottom:692.648100px;}
.y1a2{bottom:693.073350px;}
.y94{bottom:694.552050px;}
.y35{bottom:694.634400px;}
.y1cb{bottom:694.758300px;}
.y66{bottom:695.772150px;}
.y14b{bottom:695.772300px;}
.ydc{bottom:696.764400px;}
.y21e{bottom:696.862800px;}
.y1e6{bottom:697.535700px;}
.y1b1{bottom:702.644100px;}
.y1a1{bottom:703.069350px;}
.y9{bottom:706.937250px;}
.y110{bottom:707.079150px;}
.y91{bottom:709.424550px;}
.y126{bottom:709.598100px;}
.y34{bottom:712.634400px;}
.y1b0{bottom:712.850100px;}
.y1a0{bottom:713.275350px;}
.y65{bottom:713.772150px;}
.y14a{bottom:713.772300px;}
.yd7{bottom:713.914500px;}
.y21d{bottom:714.862800px;}
.yd9{bottom:722.773350px;}
.y1af{bottom:722.846100px;}
.y19f{bottom:723.271350px;}
.y8{bottom:724.937250px;}
.y1c3{bottom:724.956000px;}
.ydb{bottom:727.414050px;}
.yd6{bottom:727.520250px;}
.y33{bottom:730.634400px;}
.y1c5{bottom:731.641800px;}
.y64{bottom:731.772150px;}
.y149{bottom:731.772300px;}
.y21c{bottom:732.862800px;}
.y1ae{bottom:733.262100px;}
.y19e{bottom:733.687350px;}
.y90{bottom:733.868550px;}
.y125{bottom:738.722100px;}
.y1ad{bottom:743.258100px;}
.y19d{bottom:743.683350px;}
.y32{bottom:748.634400px;}
.y63{bottom:749.772150px;}
.yd5{bottom:749.772300px;}
.y21b{bottom:750.862800px;}
.y7{bottom:751.441200px;}
.y1ac{bottom:753.464100px;}
.y19c{bottom:753.889350px;}
.y1c2{bottom:755.148000px;}
.y10f{bottom:757.467150px;}
.y8f{bottom:758.744550px;}
.y1ab{bottom:763.460100px;}
.y19b{bottom:763.885350px;}
.y31{bottom:766.634400px;}
.y62{bottom:767.772150px;}
.yd4{bottom:767.772300px;}
.y21a{bottom:768.862800px;}
.y1aa{bottom:773.666100px;}
.y19a{bottom:774.091350px;}
.y8e{bottom:782.984550px;}
.y1a9{bottom:784.082100px;}
.y199{bottom:784.507350px;}
.y30{bottom:784.634400px;}
.y1c1{bottom:785.124000px;}
.y61{bottom:785.772150px;}
.yd3{bottom:785.772300px;}
.y219{bottom:786.862800px;}
.y6{bottom:789.239850px;}
.y1a8{bottom:795.989100px;}
.y198{bottom:798.728250px;}
.y2f{bottom:802.634400px;}
.y60{bottom:803.772150px;}
.yd2{bottom:803.772300px;}
.y218{bottom:804.862800px;}
.y10e{bottom:808.071150px;}
.y8d{bottom:808.076550px;}
.y197{bottom:811.820250px;}
.y5{bottom:814.439700px;}
.y1ca{bottom:815.730300px;}
.y2e{bottom:820.634400px;}
.y5f{bottom:821.772150px;}
.yd1{bottom:821.772300px;}
.y217{bottom:822.862800px;}
.y196{bottom:825.428250px;}
.y8c{bottom:832.952550px;}
.y1a7{bottom:834.013950px;}
.y195{bottom:838.604250px;}
.y2d{bottom:838.634400px;}
.y5e{bottom:839.772150px;}
.yd0{bottom:839.772300px;}
.y216{bottom:840.862800px;}
.y1c9{bottom:845.706300px;}
.y194{bottom:852.044250px;}
.y2c{bottom:856.634400px;}
.y5d{bottom:857.772150px;}
.ycf{bottom:857.772300px;}
.y8b{bottom:858.044550px;}
.y10d{bottom:858.675150px;}
.y215{bottom:858.862800px;}
.y193{bottom:865.400250px;}
.y1a6{bottom:865.693950px;}
.y2b{bottom:874.634400px;}
.y5c{bottom:875.772150px;}
.yce{bottom:875.772300px;}
.y1c8{bottom:875.898300px;}
.y214{bottom:876.862800px;}
.y192{bottom:878.492250px;}
.y8a{bottom:882.704550px;}
.y5b{bottom:893.772150px;}
.ycd{bottom:893.772300px;}
.y213{bottom:894.862800px;}
.y1c0{bottom:906.300000px;}
.y89{bottom:907.580550px;}
.y10c{bottom:909.063150px;}
.y2a{bottom:909.642300px;}
.y5a{bottom:911.772150px;}
.ycc{bottom:911.772300px;}
.y212{bottom:912.862800px;}
.y1{bottom:915.399750px;}
.y28{bottom:943.435350px;}
.y27{bottom:960.287250px;}
.y59{bottom:964.299450px;}
.y29{bottom:965.632950px;}
.y58{bottom:965.770050px;}
.h25{height:25.632000px;}
.h1a{height:25.995000px;}
.h1c{height:27.442500px;}
.h18{height:27.966000px;}
.h17{height:28.107000px;}
.h2{height:29.007000px;}
.h3{height:29.106000px;}
.h27{height:29.526000px;}
.h13{height:29.904000px;}
.hd{height:30.030000px;}
.h19{height:31.501500px;}
.h1d{height:31.773000px;}
.hc{height:32.340000px;}
.h24{height:33.744000px;}
.hb{height:33.947754px;}
.h6{height:34.176000px;}
.h8{height:34.368000px;}
.h10{height:34.650000px;}
.h7{height:35.160000px;}
.h20{height:38.124000px;}
.ha{height:38.664000px;}
.h22{height:38.880000px;}
.h9{height:39.555000px;}
.h21{height:40.523112px;}
.h12{height:42.720000px;}
.hf{height:42.960000px;}
.h2a{height:43.359375px;}
.h1e{height:45.025680px;}
.h1b{height:45.390000px;}
.he{height:48.345000px;}
.h5{height:51.606060px;}
.h14{height:55.200000px;}
.h4{height:61.530000px;}
.h15{height:66.240000px;}
.h28{height:74.124000px;}
.h16{height:147.000000px;}
.h26{height:255.118500px;}
.h29{height:348.660000px;}
.h23{height:348.661500px;}
.h1f{height:357.165000px;}
.h11{height:365.670000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:18.252000px;}
.w5{width:19.357500px;}
.w8{width:20.013000px;}
.w7{width:21.075000px;}
.w3{width:79.500000px;}
.w6{width:139.500000px;}
.w2{width:544.251000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3e{left:3.469050px;}
.x12{left:12.125400px;}
.x3a{left:13.774200px;}
.x40{left:16.969050px;}
.x83{left:23.558700px;}
.x35{left:36.891000px;}
.x37{left:63.656550px;}
.x2{left:78.661350px;}
.x44{left:79.763100px;}
.x4e{left:84.614250px;}
.x84{left:89.860200px;}
.x3{left:91.417350px;}
.x80{left:93.763350px;}
.xd{left:95.669250px;}
.x7b{left:97.582650px;}
.x46{left:98.674050px;}
.x45{left:99.737100px;}
.xe{left:102.333300px;}
.x42{left:104.484750px;}
.x47{left:106.220100px;}
.x11{left:107.749350px;}
.xf{left:112.677150px;}
.x4f{left:115.613850px;}
.x82{left:116.742300px;}
.x3b{left:120.057000px;}
.x50{left:121.373850px;}
.x48{left:123.499950px;}
.xa{left:124.846650px;}
.x4d{left:127.667550px;}
.x13{left:129.472350px;}
.x3c{left:130.781100px;}
.x10{left:132.661350px;}
.x51{left:134.033850px;}
.x49{left:136.579950px;}
.x3d{left:139.414050px;}
.x52{left:146.568300px;}
.x4{left:149.928600px;}
.x70{left:158.384400px;}
.x53{left:160.200300px;}
.x14{left:170.512350px;}
.x54{left:173.592300px;}
.x6f{left:174.968400px;}
.x81{left:179.883900px;}
.x55{left:186.564300px;}
.x15{left:190.492350px;}
.x5{left:197.372550px;}
.x56{left:199.644300px;}
.x16{left:211.756350px;}
.x57{left:212.820300px;}
.x4b{left:215.304750px;}
.x58{left:225.996300px;}
.x17{left:231.736350px;}
.x59{left:238.968300px;}
.x7a{left:250.580850px;}
.x18{left:252.568350px;}
.x7c{left:253.630350px;}
.x5e{left:258.520350px;}
.x5a{left:265.440300px;}
.x71{left:268.895850px;}
.x19{left:272.764350px;}
.x5b{left:278.724300px;}
.x6{left:281.622900px;}
.x5c{left:291.900300px;}
.x1a{left:292.960350px;}
.x3f{left:294.537300px;}
.x1{left:303.902400px;}
.x5d{left:305.184300px;}
.x34{left:311.037000px;}
.x1b{left:313.156350px;}
.x2c{left:314.506050px;}
.x4c{left:317.974950px;}
.x79{left:323.147850px;}
.x2e{left:324.537300px;}
.x7{left:329.558550px;}
.x1c{left:331.228350px;}
.x4a{left:333.535950px;}
.x32{left:334.662300px;}
.x43{left:335.740500px;}
.x33{left:347.928000px;}
.x76{left:350.849850px;}
.x1d{left:351.856350px;}
.x5f{left:352.888350px;}
.x2d{left:355.561050px;}
.x2a{left:358.348350px;}
.x7d{left:359.929350px;}
.x30{left:363.019800px;}
.x31{left:364.101300px;}
.x2f{left:365.550300px;}
.x73{left:366.959850px;}
.x1e{left:372.052350px;}
.x36{left:374.694000px;}
.x41{left:382.240500px;}
.x2b{left:383.956350px;}
.x1f{left:392.464350px;}
.x60{left:395.756850px;}
.x74{left:401.159850px;}
.x72{left:402.752850px;}
.x61{left:407.660850px;}
.x20{left:412.876350px;}
.xb{left:414.984600px;}
.x78{left:416.045850px;}
.x62{left:419.456850px;}
.x8{left:427.908000px;}
.x63{left:431.792850px;}
.x21{left:433.492350px;}
.x7f{left:435.613350px;}
.x64{left:444.128850px;}
.x77{left:447.563850px;}
.x75{left:450.497850px;}
.x22{left:453.688350px;}
.x65{left:456.248850px;}
.xc{left:465.977550px;}
.x66{left:468.152850px;}
.x23{left:474.100350px;}
.x9{left:479.671350px;}
.x67{left:492.716850px;}
.x24{left:494.296350px;}
.x6a{left:504.308850px;}
.x7e{left:514.274850px;}
.x25{left:515.344350px;}
.x68{left:529.076850px;}
.x26{left:534.904350px;}
.x69{left:540.452850px;}
.x6b{left:553.100850px;}
.x27{left:555.736350px;}
.x6c{left:565.112850px;}
.x28{left:576.352350px;}
.x38{left:577.596000px;}
.x39{left:588.557700px;}
.x29{left:596.764350px;}
.x6d{left:601.472850px;}
.x6e{left:613.592850px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v6{vertical-align:-15.984000pt;}
.v4{vertical-align:-9.666667pt;}
.v8{vertical-align:-8.227200pt;}
.v2{vertical-align:-4.741333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.984000pt;}
.v5{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v9{vertical-align:32.000000pt;}
.ls3e{letter-spacing:-5.461333pt;}
.ls58{letter-spacing:-4.778667pt;}
.ls3f{letter-spacing:-4.138667pt;}
.ls47{letter-spacing:-3.936000pt;}
.ls41{letter-spacing:-3.669333pt;}
.ls59{letter-spacing:-3.621333pt;}
.ls42{letter-spacing:-3.541333pt;}
.ls5b{letter-spacing:-3.210667pt;}
.ls5c{letter-spacing:-3.098667pt;}
.ls48{letter-spacing:-2.336000pt;}
.ls60{letter-spacing:-2.053333pt;}
.ls38{letter-spacing:-1.962667pt;}
.ls51{letter-spacing:-1.717333pt;}
.ls29{letter-spacing:-1.392000pt;}
.ls61{letter-spacing:-1.381333pt;}
.ls37{letter-spacing:-1.280000pt;}
.ls45{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-1.194667pt;}
.ls4f{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-1.109333pt;}
.ls15{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-1.040000pt;}
.ls7{letter-spacing:-0.938667pt;}
.ls50{letter-spacing:-0.933333pt;}
.ls14{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.906667pt;}
.ls46{letter-spacing:-0.896000pt;}
.ls25{letter-spacing:-0.810667pt;}
.ls5{letter-spacing:-0.725333pt;}
.ls4e{letter-spacing:-0.709333pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls4c{letter-spacing:-0.560000pt;}
.ls3c{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.485333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.450667pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls40{letter-spacing:-0.298667pt;}
.ls67{letter-spacing:-0.266667pt;}
.ls5a{letter-spacing:-0.261333pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.170667pt;}
.ls5d{letter-spacing:-0.149333pt;}
.ls3b{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.120000pt;}
.ls55{letter-spacing:-0.112000pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls5f{letter-spacing:-0.085333pt;}
.ls34{letter-spacing:-0.042667pt;}
.ls4b{letter-spacing:-0.037333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000053pt;}
.ls1d{letter-spacing:0.000213pt;}
.ls1{letter-spacing:0.016869pt;}
.ls3{letter-spacing:0.018133pt;}
.ls2{letter-spacing:0.018667pt;}
.ls53{letter-spacing:0.037333pt;}
.lsf{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.085333pt;}
.ls4a{letter-spacing:0.112000pt;}
.ls27{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.170667pt;}
.ls0{letter-spacing:0.176000pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.341333pt;}
.ls52{letter-spacing:0.373333pt;}
.ls33{letter-spacing:0.384000pt;}
.ls66{letter-spacing:0.400000pt;}
.ls5e{letter-spacing:0.410667pt;}
.ls39{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.469333pt;}
.ls44{letter-spacing:0.480000pt;}
.ls54{letter-spacing:0.485333pt;}
.ls57{letter-spacing:0.522667pt;}
.ls3a{letter-spacing:0.554667pt;}
.ls4d{letter-spacing:0.560000pt;}
.ls3d{letter-spacing:0.597333pt;}
.ls36{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.926333pt;}
.ls28{letter-spacing:1.237333pt;}
.ls1b{letter-spacing:1.372267pt;}
.ls13{letter-spacing:5.897067pt;}
.ls68{letter-spacing:35.750933pt;}
.ls21{letter-spacing:76.693333pt;}
.ls1f{letter-spacing:83.413333pt;}
.ls20{letter-spacing:90.085333pt;}
.ls65{letter-spacing:171.520000pt;}
.ls62{letter-spacing:181.043733pt;}
.ls2d{letter-spacing:262.997333pt;}
.ls2e{letter-spacing:263.722667pt;}
.ls2f{letter-spacing:264.490667pt;}
.ls1e{letter-spacing:277.600000pt;}
.ls63{letter-spacing:338.125547pt;}
.ls23{letter-spacing:343.598080pt;}
.ls64{letter-spacing:349.645547pt;}
.ls32{letter-spacing:454.186667pt;}
.ls49{letter-spacing:534.526933pt;}
.wsa7{word-spacing:-463.872000pt;}
.ws76{word-spacing:-277.600000pt;}
.wsa4{word-spacing:-272.682667pt;}
.wsb0{word-spacing:-264.490667pt;}
.wsaf{word-spacing:-263.722667pt;}
.ws77{word-spacing:-90.085333pt;}
.ws6d{word-spacing:-15.146667pt;}
.ws22{word-spacing:-14.490667pt;}
.ws5e{word-spacing:-12.213333pt;}
.ws70{word-spacing:-12.106667pt;}
.ws7{word-spacing:-11.856000pt;}
.ws145{word-spacing:-11.626667pt;}
.ws93{word-spacing:-10.992000pt;}
.ws90{word-spacing:-10.922667pt;}
.ws89{word-spacing:-10.896000pt;}
.ws4{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.538667pt;}
.ws114{word-spacing:-10.416000pt;}
.wsb7{word-spacing:-10.325333pt;}
.wsbe{word-spacing:-10.282667pt;}
.wsbb{word-spacing:-10.240000pt;}
.wsba{word-spacing:-10.112000pt;}
.ws59{word-spacing:-10.080000pt;}
.wsa8{word-spacing:-10.069333pt;}
.ws5d{word-spacing:-10.026667pt;}
.ws5b{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.968000pt;}
.wsa3{word-spacing:-9.898667pt;}
.wsb6{word-spacing:-9.856000pt;}
.ws8f{word-spacing:-9.813333pt;}
.wsa1{word-spacing:-9.770667pt;}
.wsc4{word-spacing:-9.728000pt;}
.ws6{word-spacing:-9.685333pt;}
.wsc5{word-spacing:-9.642667pt;}
.ws3{word-spacing:-9.600000pt;}
.wsbc{word-spacing:-9.557333pt;}
.wsa6{word-spacing:-9.514667pt;}
.wsa5{word-spacing:-9.472000pt;}
.wsc1{word-spacing:-9.386667pt;}
.ws8c{word-spacing:-9.301333pt;}
.wsb5{word-spacing:-9.258667pt;}
.wsa2{word-spacing:-9.216000pt;}
.ws8e{word-spacing:-9.173333pt;}
.ws0{word-spacing:-9.132112pt;}
.ws2{word-spacing:-9.045333pt;}
.wsdb{word-spacing:-9.034667pt;}
.wse5{word-spacing:-8.997333pt;}
.wse2{word-spacing:-8.960000pt;}
.ws8b{word-spacing:-8.874667pt;}
.wse1{word-spacing:-8.848000pt;}
.wsbd{word-spacing:-8.704000pt;}
.ws5a{word-spacing:-8.618667pt;}
.wsdf{word-spacing:-8.586667pt;}
.ws5c{word-spacing:-8.576000pt;}
.wsed{word-spacing:-8.512000pt;}
.ws8a{word-spacing:-8.490667pt;}
.wsdd{word-spacing:-8.474667pt;}
.wsee{word-spacing:-8.437333pt;}
.wse3{word-spacing:-8.362667pt;}
.wsec{word-spacing:-8.325333pt;}
.wse9{word-spacing:-8.213333pt;}
.wsd8{word-spacing:-8.101333pt;}
.wsd9{word-spacing:-8.064000pt;}
.wse6{word-spacing:-8.026667pt;}
.wsb8{word-spacing:-7.978667pt;}
.wsdc{word-spacing:-7.765333pt;}
.wsc6{word-spacing:-7.744000pt;}
.wse4{word-spacing:-7.616000pt;}
.wsda{word-spacing:-7.541333pt;}
.wsb9{word-spacing:-7.296000pt;}
.wsc7{word-spacing:-7.264000pt;}
.ws71{word-spacing:-7.120373pt;}
.wsf0{word-spacing:-7.093333pt;}
.ws5f{word-spacing:-7.058187pt;}
.wsde{word-spacing:-6.981333pt;}
.wsca{word-spacing:-6.880000pt;}
.wsef{word-spacing:-6.421333pt;}
.wse0{word-spacing:-6.384000pt;}
.ws103{word-spacing:-6.352368pt;}
.wsc3{word-spacing:-6.144000pt;}
.wsc8{word-spacing:-6.048000pt;}
.wsc2{word-spacing:-5.589333pt;}
.wsc0{word-spacing:-5.546667pt;}
.wseb{word-spacing:-5.376000pt;}
.wscb{word-spacing:-4.928000pt;}
.wsea{word-spacing:-4.890667pt;}
.wse8{word-spacing:-4.853333pt;}
.wsbf{word-spacing:-3.797333pt;}
.ws6e{word-spacing:-3.626667pt;}
.wsc9{word-spacing:-3.328000pt;}
.wse7{word-spacing:-3.322667pt;}
.ws13b{word-spacing:-3.216000pt;}
.ws158{word-spacing:-3.093333pt;}
.ws4a{word-spacing:-2.933333pt;}
.ws12a{word-spacing:-2.688000pt;}
.ws57{word-spacing:-2.346667pt;}
.ws41{word-spacing:-2.240000pt;}
.ws13f{word-spacing:-2.208000pt;}
.wsf8{word-spacing:-2.186667pt;}
.ws13e{word-spacing:-2.160000pt;}
.ws156{word-spacing:-2.133333pt;}
.ws42{word-spacing:-2.026667pt;}
.ws11d{word-spacing:-1.973333pt;}
.ws46{word-spacing:-1.920000pt;}
.ws23{word-spacing:-1.813333pt;}
.ws7e{word-spacing:-1.760000pt;}
.ws2a{word-spacing:-1.706667pt;}
.ws11c{word-spacing:-1.653333pt;}
.ws123{word-spacing:-1.584000pt;}
.ws106{word-spacing:-1.493333pt;}
.ws32{word-spacing:-1.440000pt;}
.ws10a{word-spacing:-1.392000pt;}
.ws3c{word-spacing:-1.333333pt;}
.ws10b{word-spacing:-1.248000pt;}
.wsac{word-spacing:-1.173333pt;}
.wsad{word-spacing:-1.152000pt;}
.ws7f{word-spacing:-1.066667pt;}
.wsae{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.013333pt;}
.ws129{word-spacing:-1.008000pt;}
.ws1c{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.906667pt;}
.ws119{word-spacing:-0.853333pt;}
.ws36{word-spacing:-0.746667pt;}
.ws3d{word-spacing:-0.693333pt;}
.ws80{word-spacing:-0.640000pt;}
.ws133{word-spacing:-0.624000pt;}
.ws98{word-spacing:-0.586667pt;}
.ws14a{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.563200pt;}
.wsd0{word-spacing:-0.533333pt;}
.ws13{word-spacing:-0.528000pt;}
.ws4d{word-spacing:-0.480000pt;}
.ws51{word-spacing:-0.426667pt;}
.ws115{word-spacing:-0.400000pt;}
.ws43{word-spacing:-0.373333pt;}
.ws9f{word-spacing:-0.336000pt;}
.ws64{word-spacing:-0.320000pt;}
.ws56{word-spacing:-0.266667pt;}
.wsb3{word-spacing:-0.256000pt;}
.ws3b{word-spacing:-0.213333pt;}
.ws52{word-spacing:-0.160000pt;}
.ws9d{word-spacing:-0.144000pt;}
.ws27{word-spacing:-0.106667pt;}
.ws9e{word-spacing:-0.096000pt;}
.ws31{word-spacing:-0.053333pt;}
.ws1b{word-spacing:-0.048000pt;}
.wsd4{word-spacing:-0.042667pt;}
.wsfc{word-spacing:-0.037333pt;}
.ws9{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.037333pt;}
.wsd5{word-spacing:0.042667pt;}
.ws130{word-spacing:0.048000pt;}
.ws6f{word-spacing:0.053333pt;}
.ws12{word-spacing:0.096000pt;}
.wscc{word-spacing:0.120000pt;}
.ws150{word-spacing:0.144000pt;}
.ws97{word-spacing:0.160000pt;}
.ws1f{word-spacing:0.192000pt;}
.ws60{word-spacing:0.240000pt;}
.ws61{word-spacing:0.256000pt;}
.ws55{word-spacing:0.266667pt;}
.ws2b{word-spacing:0.320000pt;}
.ws128{word-spacing:0.336000pt;}
.wsd3{word-spacing:0.373333pt;}
.ws7d{word-spacing:0.426667pt;}
.ws20{word-spacing:0.448000pt;}
.ws68{word-spacing:0.480000pt;}
.wsc{word-spacing:0.512000pt;}
.ws6b{word-spacing:0.640000pt;}
.ws63{word-spacing:0.693333pt;}
.ws140{word-spacing:0.720000pt;}
.ws12c{word-spacing:0.816000pt;}
.ws54{word-spacing:0.853333pt;}
.ws12b{word-spacing:0.864000pt;}
.wsd6{word-spacing:0.896000pt;}
.ws95{word-spacing:0.906667pt;}
.ws33{word-spacing:0.960000pt;}
.wsa9{word-spacing:1.013333pt;}
.ws10f{word-spacing:1.056000pt;}
.ws2c{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.104000pt;}
.ws74{word-spacing:1.120000pt;}
.ws147{word-spacing:1.152000pt;}
.ws53{word-spacing:1.173333pt;}
.ws99{word-spacing:1.200000pt;}
.wscd{word-spacing:1.226667pt;}
.ws1d{word-spacing:1.296000pt;}
.wsa0{word-spacing:1.344000pt;}
.wsf5{word-spacing:1.386667pt;}
.ws108{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.546667pt;}
.ws9c{word-spacing:1.584000pt;}
.wsd1{word-spacing:1.653333pt;}
.ws47{word-spacing:1.706667pt;}
.ws4b{word-spacing:1.760000pt;}
.ws17{word-spacing:1.776000pt;}
.ws159{word-spacing:1.813333pt;}
.wsd2{word-spacing:1.866667pt;}
.ws86{word-spacing:1.920000pt;}
.ws109{word-spacing:1.968000pt;}
.ws81{word-spacing:1.973333pt;}
.ws138{word-spacing:2.016000pt;}
.ws28{word-spacing:2.026667pt;}
.ws14{word-spacing:2.064000pt;}
.wscf{word-spacing:2.080000pt;}
.ws35{word-spacing:2.133333pt;}
.ws11{word-spacing:2.160000pt;}
.ws34{word-spacing:2.186667pt;}
.ws132{word-spacing:2.208000pt;}
.ws30{word-spacing:2.240000pt;}
.ws94{word-spacing:2.293333pt;}
.ws79{word-spacing:2.346667pt;}
.ws9b{word-spacing:2.352000pt;}
.wsab{word-spacing:2.400000pt;}
.wsf3{word-spacing:2.453333pt;}
.wsf4{word-spacing:2.506667pt;}
.ws62{word-spacing:2.560000pt;}
.ws73{word-spacing:2.613333pt;}
.ws6c{word-spacing:2.666667pt;}
.ws82{word-spacing:2.720000pt;}
.ws14b{word-spacing:2.736000pt;}
.ws107{word-spacing:2.773333pt;}
.wsf{word-spacing:2.832000pt;}
.ws84{word-spacing:2.880000pt;}
.ws66{word-spacing:2.986667pt;}
.wsd{word-spacing:3.029333pt;}
.wsf2{word-spacing:3.040000pt;}
.ws1a{word-spacing:3.072000pt;}
.ws2f{word-spacing:3.093333pt;}
.ws29{word-spacing:3.146667pt;}
.wsfb{word-spacing:3.168000pt;}
.ws18{word-spacing:3.216000pt;}
.wsf9{word-spacing:3.306667pt;}
.ws3a{word-spacing:3.360000pt;}
.wsfa{word-spacing:3.456000pt;}
.ws2e{word-spacing:3.466667pt;}
.ws3e{word-spacing:3.520000pt;}
.ws49{word-spacing:3.573333pt;}
.wsd7{word-spacing:3.600000pt;}
.ws7b{word-spacing:3.680000pt;}
.ws10e{word-spacing:3.733333pt;}
.ws25{word-spacing:3.786667pt;}
.ws26{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.ws117{word-spacing:3.946667pt;}
.ws12f{word-spacing:3.984000pt;}
.ws112{word-spacing:4.000000pt;}
.ws110{word-spacing:4.032000pt;}
.ws69{word-spacing:4.053333pt;}
.ws1e{word-spacing:4.080000pt;}
.wsa{word-spacing:4.099200pt;}
.ws118{word-spacing:4.160000pt;}
.ws45{word-spacing:4.266667pt;}
.ws3f{word-spacing:4.320000pt;}
.ws154{word-spacing:4.480000pt;}
.ws14f{word-spacing:4.512000pt;}
.ws6a{word-spacing:4.533333pt;}
.ws10{word-spacing:4.560000pt;}
.ws75{word-spacing:4.693333pt;}
.ws125{word-spacing:4.704000pt;}
.ws135{word-spacing:4.752000pt;}
.ws16{word-spacing:4.800000pt;}
.ws136{word-spacing:4.848000pt;}
.ws11a{word-spacing:4.853333pt;}
.ws19{word-spacing:4.944000pt;}
.ws152{word-spacing:4.960000pt;}
.ws13a{word-spacing:4.992000pt;}
.ws104{word-spacing:5.066667pt;}
.ws134{word-spacing:5.088000pt;}
.ws116{word-spacing:5.226667pt;}
.wsf6{word-spacing:5.280000pt;}
.ws50{word-spacing:5.333333pt;}
.ws126{word-spacing:5.424000pt;}
.ws105{word-spacing:5.440000pt;}
.ws137{word-spacing:5.472000pt;}
.ws40{word-spacing:5.546667pt;}
.ws4f{word-spacing:5.600000pt;}
.ws14e{word-spacing:5.616000pt;}
.ws96{word-spacing:5.653333pt;}
.ws44{word-spacing:5.760000pt;}
.ws111{word-spacing:5.813333pt;}
.ws67{word-spacing:5.866667pt;}
.ws24{word-spacing:5.920000pt;}
.ws48{word-spacing:5.973333pt;}
.wsaa{word-spacing:6.080000pt;}
.ws37{word-spacing:6.133333pt;}
.ws139{word-spacing:6.144000pt;}
.ws11b{word-spacing:6.186667pt;}
.ws15{word-spacing:6.192000pt;}
.ws85{word-spacing:6.240000pt;}
.ws11e{word-spacing:6.336000pt;}
.ws83{word-spacing:6.346667pt;}
.wsb{word-spacing:6.451200pt;}
.ws143{word-spacing:6.480000pt;}
.ws4e{word-spacing:6.613333pt;}
.ws141{word-spacing:6.816000pt;}
.wsce{word-spacing:6.826667pt;}
.wsb2{word-spacing:6.912000pt;}
.ws39{word-spacing:6.986667pt;}
.ws14c{word-spacing:7.104000pt;}
.ws7c{word-spacing:7.146667pt;}
.ws14d{word-spacing:7.200000pt;}
.ws148{word-spacing:7.440000pt;}
.wsb1{word-spacing:7.536000pt;}
.ws7a{word-spacing:7.626667pt;}
.ws151{word-spacing:7.733333pt;}
.ws155{word-spacing:7.786667pt;}
.ws120{word-spacing:7.824000pt;}
.ws13d{word-spacing:7.872000pt;}
.ws12d{word-spacing:8.352000pt;}
.wsf7{word-spacing:8.586667pt;}
.ws12e{word-spacing:8.784000pt;}
.ws157{word-spacing:8.906667pt;}
.ws78{word-spacing:9.333333pt;}
.ws65{word-spacing:10.240000pt;}
.ws142{word-spacing:11.280000pt;}
.ws124{word-spacing:11.472000pt;}
.wse{word-spacing:12.586667pt;}
.ws127{word-spacing:12.720000pt;}
.ws2d{word-spacing:12.853333pt;}
.ws122{word-spacing:13.392000pt;}
.wsf1{word-spacing:13.600000pt;}
.ws13c{word-spacing:15.120000pt;}
.ws11f{word-spacing:15.168000pt;}
.ws146{word-spacing:15.840000pt;}
.ws149{word-spacing:16.656000pt;}
.ws153{word-spacing:16.746667pt;}
.ws131{word-spacing:20.208000pt;}
.ws121{word-spacing:20.544000pt;}
.ws8d{word-spacing:73.173333pt;}
.ws10c{word-spacing:142.122667pt;}
.wsff{word-spacing:187.306667pt;}
.ws10d{word-spacing:195.584000pt;}
.ws100{word-spacing:227.541333pt;}
.ws102{word-spacing:261.866133pt;}
.ws101{word-spacing:273.386133pt;}
.ws92{word-spacing:274.897600pt;}
.ws91{word-spacing:291.889600pt;}
.wsfe{word-spacing:1233.248800pt;}
.ws88{word-spacing:1233.269067pt;}
.ws58{word-spacing:1234.128800pt;}
.wsb4{word-spacing:1234.608800pt;}
.ws144{word-spacing:1236.208800pt;}
.ws21{word-spacing:1239.508533pt;}
.ws113{word-spacing:1241.189067pt;}
._1e{margin-left:-453.973333pt;}
._2a{margin-left:-51.924800pt;}
._3{margin-left:-8.841525pt;}
._28{margin-left:-7.344000pt;}
._9{margin-left:-6.385600pt;}
._e{margin-left:-5.377333pt;}
._b{margin-left:-4.362453pt;}
._8{margin-left:-3.176267pt;}
._5{margin-left:-2.130933pt;}
._0{margin-left:-0.991200pt;}
._6{width:1.037067pt;}
._a{width:1.996267pt;}
._2{width:3.215253pt;}
._1{width:4.119200pt;}
._d{width:5.037600pt;}
._c{width:6.218400pt;}
._12{width:7.819733pt;}
._14{width:9.324267pt;}
._11{width:11.082667pt;}
._10{width:12.175200pt;}
._20{width:13.861333pt;}
._7{width:15.061333pt;}
._29{width:16.655467pt;}
._4{width:19.840000pt;}
._f{width:27.565867pt;}
._18{width:71.893333pt;}
._16{width:81.749333pt;}
._17{width:84.010667pt;}
._22{width:88.197333pt;}
._1a{width:96.101067pt;}
._15{width:112.810667pt;}
._19{width:121.203200pt;}
._25{width:153.301333pt;}
._1f{width:180.906667pt;}
._21{width:199.296000pt;}
._24{width:303.540800pt;}
._1d{width:308.257600pt;}
._1c{width:311.313067pt;}
._1b{width:334.353067pt;}
._27{width:343.040000pt;}
._23{width:348.646400pt;}
._26{width:537.301333pt;}
._13{width:632.841067pt;}
.fsd{font-size:26.666667pt;}
.fs11{font-size:27.984000pt;}
.fs10{font-size:28.333333pt;}
.fsb{font-size:31.093333pt;}
.fs12{font-size:32.000000pt;}
.fs1{font-size:33.600000pt;}
.fs4{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.fs0{font-size:35.200000pt;}
.fs5{font-size:37.333333pt;}
.fsf{font-size:39.666667pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fse{font-size:56.666667pt;}
.fs3{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:0.274533pt;}
.yc6{bottom:0.400533pt;}
.ye1{bottom:2.982000pt;}
.ye5{bottom:3.010800pt;}
.yda{bottom:3.416267pt;}
.y1b4{bottom:3.420533pt;}
.y1a5{bottom:3.797867pt;}
.yae{bottom:4.417067pt;}
.yc9{bottom:8.857733pt;}
.yc4{bottom:8.983733pt;}
.yd8{bottom:11.999600pt;}
.y12f{bottom:24.844533pt;}
.y4{bottom:49.664267pt;}
.y3{bottom:60.864267pt;}
.y18e{bottom:69.802800pt;}
.y137{bottom:70.205067pt;}
.yc8{bottom:71.409333pt;}
.y211{bottom:71.730400pt;}
.y1bc{bottom:72.007600pt;}
.y2{bottom:72.064267pt;}
.y101{bottom:72.612267pt;}
.y57{bottom:73.452800pt;}
.y1f5{bottom:73.956667pt;}
.y107{bottom:74.716267pt;}
.y172{bottom:75.262933pt;}
.y240{bottom:75.433600pt;}
.yca{bottom:76.142133pt;}
.y85{bottom:79.289333pt;}
.yc7{bottom:80.291067pt;}
.y18d{bottom:85.802800pt;}
.y254{bottom:85.965867pt;}
.y136{bottom:86.205067pt;}
.y210{bottom:87.730400pt;}
.y1bb{bottom:88.007600pt;}
.y100{bottom:88.612267pt;}
.y56{bottom:89.452800pt;}
.y1f4{bottom:89.956667pt;}
.y106{bottom:90.716267pt;}
.y171{bottom:91.262933pt;}
.yc3{bottom:91.409333pt;}
.y23f{bottom:91.433600pt;}
.y84{bottom:95.289333pt;}
.yc5{bottom:96.268133pt;}
.y26{bottom:98.561867pt;}
.yc2{bottom:100.291067pt;}
.y18c{bottom:101.802800pt;}
.y253{bottom:101.965867pt;}
.y135{bottom:102.205067pt;}
.y20f{bottom:103.730400pt;}
.y1ba{bottom:104.007600pt;}
.yff{bottom:104.612267pt;}
.y55{bottom:105.452800pt;}
.y1f3{bottom:105.956667pt;}
.y105{bottom:106.716267pt;}
.y170{bottom:107.262933pt;}
.y23e{bottom:107.433600pt;}
.y83{bottom:111.289333pt;}
.yc1{bottom:116.291067pt;}
.y18b{bottom:117.802800pt;}
.y252{bottom:117.965867pt;}
.y20e{bottom:119.730400pt;}
.y1b9{bottom:120.007600pt;}
.yfe{bottom:120.612267pt;}
.y54{bottom:121.452800pt;}
.y1f2{bottom:121.956667pt;}
.y104{bottom:122.716267pt;}
.y23d{bottom:123.433600pt;}
.y82{bottom:127.289333pt;}
.y25{bottom:129.680000pt;}
.yc0{bottom:132.291067pt;}
.y13b{bottom:133.410800pt;}
.y142{bottom:133.410933pt;}
.y18a{bottom:133.802800pt;}
.y251{bottom:133.965867pt;}
.y20d{bottom:135.730400pt;}
.y1b8{bottom:136.007600pt;}
.yfd{bottom:136.612267pt;}
.y53{bottom:137.452800pt;}
.y1f1{bottom:137.956667pt;}
.y103{bottom:138.716267pt;}
.y23c{bottom:139.433600pt;}
.y81{bottom:143.289333pt;}
.y113{bottom:145.781200pt;}
.ybf{bottom:148.291067pt;}
.y24{bottom:149.459467pt;}
.y189{bottom:149.802800pt;}
.y141{bottom:150.750933pt;}
.y20c{bottom:151.730400pt;}
.y1b7{bottom:152.007600pt;}
.yfc{bottom:152.612267pt;}
.y163{bottom:152.887067pt;}
.y52{bottom:153.452800pt;}
.y1f0{bottom:153.956667pt;}
.y102{bottom:154.716267pt;}
.y23b{bottom:155.433600pt;}
.y140{bottom:155.870933pt;}
.y250{bottom:157.524933pt;}
.y80{bottom:159.289333pt;}
.y13f{bottom:160.990933pt;}
.y162{bottom:162.903067pt;}
.ybe{bottom:164.291067pt;}
.y188{bottom:165.802800pt;}
.y20b{bottom:167.730400pt;}
.y1b6{bottom:168.007600pt;}
.y145{bottom:168.557600pt;}
.yfb{bottom:168.612267pt;}
.y13a{bottom:168.749467pt;}
.y51{bottom:169.452800pt;}
.y1ef{bottom:169.956667pt;}
.y23a{bottom:171.433600pt;}
.y161{bottom:173.484400pt;}
.y24f{bottom:173.524933pt;}
.y7f{bottom:175.289333pt;}
.y23{bottom:176.577600pt;}
.ybd{bottom:180.291067pt;}
.y187{bottom:181.802800pt;}
.y20a{bottom:183.730400pt;}
.y1b5{bottom:184.007600pt;}
.y160{bottom:184.065733pt;}
.yfa{bottom:184.612267pt;}
.y122{bottom:185.195067pt;}
.y50{bottom:185.452800pt;}
.y1ee{bottom:185.956667pt;}
.y239{bottom:187.433600pt;}
.y24e{bottom:189.524933pt;}
.y22{bottom:191.244267pt;}
.y7e{bottom:191.289333pt;}
.y148{bottom:192.184267pt;}
.y13e{bottom:192.376133pt;}
.y15f{bottom:194.839067pt;}
.y186{bottom:197.802800pt;}
.yad{bottom:199.125333pt;}
.y209{bottom:199.730400pt;}
.yf9{bottom:200.612267pt;}
.y121{bottom:201.195067pt;}
.y4f{bottom:201.452800pt;}
.y238{bottom:203.433600pt;}
.yaa{bottom:203.498000pt;}
.y15e{bottom:205.047067pt;}
.y24d{bottom:205.524933pt;}
.y21{bottom:205.910933pt;}
.yb5{bottom:206.280400pt;}
.y7d{bottom:207.289333pt;}
.ya6{bottom:207.632400pt;}
.y185{bottom:213.802800pt;}
.y1d9{bottom:214.000933pt;}
.yab{bottom:214.791333pt;}
.y15d{bottom:215.628400pt;}
.y208{bottom:215.730400pt;}
.y144{bottom:215.992267pt;}
.y139{bottom:216.184133pt;}
.yf8{bottom:216.612267pt;}
.y1ed{bottom:217.074800pt;}
.y4e{bottom:217.452800pt;}
.y237{bottom:219.433600pt;}
.yb4{bottom:220.152400pt;}
.y20{bottom:220.577600pt;}
.y7c{bottom:223.289333pt;}
.y93{bottom:224.820000pt;}
.y120{bottom:225.045467pt;}
.y15c{bottom:225.836400pt;}
.y24c{bottom:229.084000pt;}
.ybb{bottom:229.667333pt;}
.y184{bottom:229.802800pt;}
.y1d8{bottom:230.000933pt;}
.y207{bottom:231.730400pt;}
.yf7{bottom:232.612267pt;}
.y4d{bottom:233.452800pt;}
.y1f{bottom:235.244267pt;}
.y236{bottom:235.433600pt;}
.yb3{bottom:235.480400pt;}
.y15b{bottom:236.417733pt;}
.y7b{bottom:239.289333pt;}
.y147{bottom:239.426933pt;}
.y13d{bottom:239.618800pt;}
.y11f{bottom:244.352133pt;}
.y24b{bottom:245.084000pt;}
.y183{bottom:245.802800pt;}
.y15a{bottom:246.807067pt;}
.y206{bottom:247.730400pt;}
.yf6{bottom:248.612267pt;}
.y4c{bottom:249.452800pt;}
.yba{bottom:249.667333pt;}
.y16f{bottom:249.810800pt;}
.y1e{bottom:249.910933pt;}
.yb2{bottom:250.808400pt;}
.y235{bottom:251.433600pt;}
.y1d7{bottom:253.851333pt;}
.y7a{bottom:255.289333pt;}
.ya7{bottom:256.334000pt;}
.y159{bottom:257.388400pt;}
.ybc{bottom:260.454000pt;}
.ya3{bottom:260.459067pt;}
.y24a{bottom:261.084000pt;}
.y182{bottom:261.802800pt;}
.y143{bottom:263.234933pt;}
.y138{bottom:263.426800pt;}
.y11e{bottom:263.658667pt;}
.y205{bottom:263.730400pt;}
.y1d{bottom:264.577600pt;}
.yf5{bottom:264.612267pt;}
.y4b{bottom:265.452800pt;}
.yb1{bottom:266.136400pt;}
.y234{bottom:267.433600pt;}
.y158{bottom:268.161733pt;}
.yb9{bottom:269.667333pt;}
.y79{bottom:271.289333pt;}
.y1dd{bottom:272.283867pt;}
.y1d6{bottom:273.157867pt;}
.y249{bottom:277.084000pt;}
.y181{bottom:277.802800pt;}
.y1c{bottom:279.244267pt;}
.y204{bottom:279.730400pt;}
.y4a{bottom:281.452800pt;}
.yb0{bottom:281.464400pt;}
.y11d{bottom:282.965200pt;}
.y233{bottom:283.433600pt;}
.y14f{bottom:284.780400pt;}
.ya9{bottom:285.538000pt;}
.y146{bottom:286.861600pt;}
.y13c{bottom:287.053467pt;}
.y78{bottom:287.289333pt;}
.y1dc{bottom:288.283867pt;}
.ya5{bottom:289.672400pt;}
.y1d5{bottom:292.464400pt;}
.y180{bottom:293.802800pt;}
.y1b{bottom:293.910933pt;}
.yf4{bottom:295.730400pt;}
.yaf{bottom:296.792400pt;}
.yb8{bottom:296.830400pt;}
.y49{bottom:297.452800pt;}
.y232{bottom:299.433600pt;}
.y1df{bottom:300.087733pt;}
.y11c{bottom:302.271733pt;}
.y77{bottom:303.289333pt;}
.y1db{bottom:304.283867pt;}
.ya8{bottom:307.583333pt;}
.y248{bottom:308.202133pt;}
.y1a{bottom:308.577600pt;}
.y17f{bottom:309.802800pt;}
.ya4{bottom:311.712400pt;}
.y203{bottom:311.730400pt;}
.y1d4{bottom:311.771067pt;}
.yac{bottom:312.375733pt;}
.yb6{bottom:312.408400pt;}
.y48{bottom:313.452800pt;}
.y231{bottom:315.433600pt;}
.yb7{bottom:318.875733pt;}
.y76{bottom:319.289333pt;}
.y1da{bottom:320.283867pt;}
.y11b{bottom:321.578267pt;}
.y124{bottom:321.625067pt;}
.y19{bottom:323.244267pt;}
.y17e{bottom:325.802800pt;}
.y202{bottom:327.730400pt;}
.y47{bottom:329.452800pt;}
.y1d3{bottom:331.077600pt;}
.y230{bottom:331.433600pt;}
.y75{bottom:335.289333pt;}
.y119{bottom:337.578267pt;}
.y123{bottom:337.625067pt;}
.y18{bottom:337.910933pt;}
.y16e{bottom:338.178800pt;}
.yf3{bottom:339.787067pt;}
.ya2{bottom:340.794933pt;}
.y17d{bottom:341.802800pt;}
.y201{bottom:343.730400pt;}
.y46{bottom:345.452800pt;}
.y22f{bottom:347.433600pt;}
.y1de{bottom:349.606667pt;}
.y1d2{bottom:350.384133pt;}
.y74{bottom:351.289333pt;}
.y247{bottom:352.258800pt;}
.y17{bottom:352.577600pt;}
.y11a{bottom:353.578267pt;}
.y1e5{bottom:355.082400pt;}
.yf2{bottom:355.787067pt;}
.ya1{bottom:356.794933pt;}
.y17c{bottom:357.802800pt;}
.y1d1{bottom:358.384133pt;}
.y12e{bottom:359.388000pt;}
.y200{bottom:359.730400pt;}
.y45{bottom:361.452800pt;}
.y22e{bottom:363.433600pt;}
.y16d{bottom:364.562800pt;}
.y130{bottom:366.752533pt;}
.y16{bottom:367.244267pt;}
.y73{bottom:367.289333pt;}
.y246{bottom:368.258800pt;}
.y155{bottom:368.695067pt;}
.y1e4{bottom:370.954400pt;}
.y1ec{bottom:370.965067pt;}
.yf1{bottom:371.787067pt;}
.ya0{bottom:372.794933pt;}
.y17b{bottom:373.802800pt;}
.y1ff{bottom:375.730400pt;}
.y44{bottom:377.452800pt;}
.y16b{bottom:379.082800pt;}
.y22d{bottom:379.433600pt;}
.y118{bottom:380.819200pt;}
.y15{bottom:381.910933pt;}
.y1eb{bottom:382.111733pt;}
.y72{bottom:383.289333pt;}
.y12d{bottom:384.233867pt;}
.y245{bottom:384.258800pt;}
.yf0{bottom:387.787067pt;}
.y154{bottom:388.727067pt;}
.y9f{bottom:388.794933pt;}
.y17a{bottom:389.802800pt;}
.y1fe{bottom:391.730400pt;}
.y43{bottom:393.452800pt;}
.y1d0{bottom:393.625067pt;}
.y22c{bottom:395.433600pt;}
.y12c{bottom:395.476533pt;}
.y16c{bottom:396.314800pt;}
.y14{bottom:396.577600pt;}
.y117{bottom:396.819200pt;}
.y71{bottom:399.289333pt;}
.y244{bottom:400.258800pt;}
.yef{bottom:403.787067pt;}
.y9e{bottom:404.794933pt;}
.y179{bottom:405.802800pt;}
.y1fd{bottom:407.730400pt;}
.y153{bottom:408.375067pt;}
.y42{bottom:409.452800pt;}
.y1cf{bottom:409.625067pt;}
.y16a{bottom:410.114800pt;}
.y13{bottom:411.244267pt;}
.y22b{bottom:411.433600pt;}
.y1e2{bottom:412.154000pt;}
.y70{bottom:415.289333pt;}
.y243{bottom:416.258800pt;}
.yee{bottom:419.787067pt;}
.y9d{bottom:420.794933pt;}
.y134{bottom:421.184533pt;}
.y178{bottom:421.802800pt;}
.y1fc{bottom:423.730400pt;}
.y41{bottom:425.452800pt;}
.y12{bottom:425.910933pt;}
.y152{bottom:426.519067pt;}
.y22a{bottom:427.433600pt;}
.y10b{bottom:427.811467pt;}
.y6f{bottom:431.289333pt;}
.y242{bottom:432.258800pt;}
.y168{bottom:432.602800pt;}
.yed{bottom:435.787067pt;}
.y177{bottom:437.802800pt;}
.y11{bottom:440.577600pt;}
.y1ea{bottom:441.258400pt;}
.y40{bottom:441.452800pt;}
.y229{bottom:443.433600pt;}
.y10a{bottom:443.811467pt;}
.y1bf{bottom:444.189333pt;}
.y151{bottom:445.601733pt;}
.y6e{bottom:447.289333pt;}
.y12a{bottom:447.447200pt;}
.y169{bottom:448.778800pt;}
.yec{bottom:451.787067pt;}
.y176{bottom:453.802800pt;}
.y87{bottom:454.520133pt;}
.y1fb{bottom:454.848533pt;}
.y167{bottom:455.130800pt;}
.y12b{bottom:456.635200pt;}
.y3f{bottom:457.452800pt;}
.y10{bottom:459.023733pt;}
.y228{bottom:459.433600pt;}
.y109{bottom:459.811467pt;}
.y1be{bottom:460.189333pt;}
.y6d{bottom:463.289333pt;}
.y241{bottom:463.376933pt;}
.y150{bottom:464.684400pt;}
.yeb{bottom:467.787067pt;}
.y166{bottom:468.810800pt;}
.y175{bottom:469.802800pt;}
.y86{bottom:470.520133pt;}
.y1e9{bottom:471.306400pt;}
.y3e{bottom:473.452800pt;}
.y133{bottom:473.525867pt;}
.y227{bottom:475.433600pt;}
.y108{bottom:475.811467pt;}
.y1bd{bottom:476.189333pt;}
.y6c{bottom:479.289333pt;}
.y165{bottom:483.554800pt;}
.yea{bottom:483.787067pt;}
.y14e{bottom:484.151067pt;}
.y174{bottom:485.802800pt;}
.y3d{bottom:489.452800pt;}
.y226{bottom:491.433600pt;}
.y92{bottom:495.117333pt;}
.y1e3{bottom:495.387733pt;}
.y157{bottom:497.495067pt;}
.ye9{bottom:499.787067pt;}
.y129{bottom:499.788533pt;}
.y1e1{bottom:500.591333pt;}
.y173{bottom:501.802800pt;}
.y112{bottom:502.677333pt;}
.y99{bottom:504.750267pt;}
.yf{bottom:505.260133pt;}
.y3c{bottom:505.452800pt;}
.y1fa{bottom:506.464267pt;}
.y1c7{bottom:507.205600pt;}
.y225{bottom:507.433600pt;}
.y156{bottom:508.161733pt;}
.y6b{bottom:510.407467pt;}
.y116{bottom:510.801200pt;}
.ye8{bottom:515.787067pt;}
.ye{bottom:518.593467pt;}
.y3b{bottom:521.452800pt;}
.y98{bottom:522.328933pt;}
.y1f9{bottom:522.464267pt;}
.y9c{bottom:522.894267pt;}
.y224{bottom:523.433600pt;}
.y132{bottom:525.867200pt;}
.y1ce{bottom:525.904267pt;}
.y1c6{bottom:525.914933pt;}
.y115{bottom:526.577200pt;}
.y1e0{bottom:530.639333pt;}
.ye7{bottom:531.787067pt;}
.yd{bottom:531.926800pt;}
.y191{bottom:533.341600pt;}
.y1cd{bottom:536.869600pt;}
.y3a{bottom:537.452800pt;}
.y1f8{bottom:538.464267pt;}
.y114{bottom:539.142533pt;}
.y223{bottom:539.433600pt;}
.y9b{bottom:540.654267pt;}
.y97{bottom:540.846267pt;}
.ye4{bottom:544.008000pt;}
.y164{bottom:545.522800pt;}
.y190{bottom:549.341600pt;}
.ye3{bottom:551.401600pt;}
.ye6{bottom:551.566667pt;}
.y128{bottom:552.140533pt;}
.y39{bottom:553.452800pt;}
.y6a{bottom:554.464133pt;}
.y1f7{bottom:554.464267pt;}
.y222{bottom:555.433600pt;}
.yc{bottom:556.598667pt;}
.y9a{bottom:559.171600pt;}
.y88{bottom:559.175600pt;}
.y1e8{bottom:560.501067pt;}
.y1c4{bottom:563.904000pt;}
.ye0{bottom:564.165333pt;}
.y18f{bottom:565.341600pt;}
.y38{bottom:569.452800pt;}
.y69{bottom:570.464133pt;}
.y1f6{bottom:570.464267pt;}
.ydf{bottom:571.272400pt;}
.ye2{bottom:571.346133pt;}
.y221{bottom:571.433600pt;}
.y131{bottom:578.400533pt;}
.y111{bottom:583.352133pt;}
.y37{bottom:585.452800pt;}
.y68{bottom:586.464133pt;}
.y14d{bottom:586.464267pt;}
.yde{bottom:587.346133pt;}
.y220{bottom:587.433600pt;}
.y96{bottom:588.462267pt;}
.y1e7{bottom:590.357067pt;}
.y1cc{bottom:590.917600pt;}
.y1a4{bottom:593.385333pt;}
.yb{bottom:596.388667pt;}
.y36{bottom:601.452800pt;}
.y67{bottom:602.464133pt;}
.y14c{bottom:602.464267pt;}
.ydd{bottom:603.346133pt;}
.y21f{bottom:603.433600pt;}
.y127{bottom:604.673867pt;}
.y1b3{bottom:606.241867pt;}
.y1a3{bottom:606.619867pt;}
.y95{bottom:606.712933pt;}
.ya{bottom:612.388667pt;}
.y1b2{bottom:615.687200pt;}
.y1a2{bottom:616.065200pt;}
.y94{bottom:617.379600pt;}
.y35{bottom:617.452800pt;}
.y1cb{bottom:617.562933pt;}
.y66{bottom:618.464133pt;}
.y14b{bottom:618.464267pt;}
.ydc{bottom:619.346133pt;}
.y21e{bottom:619.433600pt;}
.y1e6{bottom:620.031733pt;}
.y1b1{bottom:624.572533pt;}
.y1a1{bottom:624.950533pt;}
.y9{bottom:628.388667pt;}
.y110{bottom:628.514800pt;}
.y91{bottom:630.599600pt;}
.y126{bottom:630.753867pt;}
.y34{bottom:633.452800pt;}
.y1b0{bottom:633.644533pt;}
.y1a0{bottom:634.022533pt;}
.y65{bottom:634.464133pt;}
.y14a{bottom:634.464267pt;}
.yd7{bottom:634.590667pt;}
.y21d{bottom:635.433600pt;}
.yd9{bottom:642.465200pt;}
.y1af{bottom:642.529867pt;}
.y19f{bottom:642.907867pt;}
.y8{bottom:644.388667pt;}
.y1c3{bottom:644.405333pt;}
.ydb{bottom:646.590267pt;}
.yd6{bottom:646.684667pt;}
.y33{bottom:649.452800pt;}
.y1c5{bottom:650.348267pt;}
.y64{bottom:650.464133pt;}
.y149{bottom:650.464267pt;}
.y21c{bottom:651.433600pt;}
.y1ae{bottom:651.788533pt;}
.y19e{bottom:652.166533pt;}
.y90{bottom:652.327600pt;}
.y125{bottom:656.641867pt;}
.y1ad{bottom:660.673867pt;}
.y19d{bottom:661.051867pt;}
.y32{bottom:665.452800pt;}
.y63{bottom:666.464133pt;}
.yd5{bottom:666.464267pt;}
.y21b{bottom:667.433600pt;}
.y7{bottom:667.947733pt;}
.y1ac{bottom:669.745867pt;}
.y19c{bottom:670.123867pt;}
.y1c2{bottom:671.242667pt;}
.y10f{bottom:673.304133pt;}
.y8f{bottom:674.439600pt;}
.y1ab{bottom:678.631200pt;}
.y19b{bottom:679.009200pt;}
.y31{bottom:681.452800pt;}
.y62{bottom:682.464133pt;}
.yd4{bottom:682.464267pt;}
.y21a{bottom:683.433600pt;}
.y1aa{bottom:687.703200pt;}
.y19a{bottom:688.081200pt;}
.y8e{bottom:695.986267pt;}
.y1a9{bottom:696.961867pt;}
.y199{bottom:697.339867pt;}
.y30{bottom:697.452800pt;}
.y1c1{bottom:697.888000pt;}
.y61{bottom:698.464133pt;}
.yd3{bottom:698.464267pt;}
.y219{bottom:699.433600pt;}
.y6{bottom:701.546533pt;}
.y1a8{bottom:707.545867pt;}
.y198{bottom:709.980667pt;}
.y2f{bottom:713.452800pt;}
.y60{bottom:714.464133pt;}
.yd2{bottom:714.464267pt;}
.y218{bottom:715.433600pt;}
.y10e{bottom:718.285467pt;}
.y8d{bottom:718.290267pt;}
.y197{bottom:721.618000pt;}
.y5{bottom:723.946400pt;}
.y1ca{bottom:725.093600pt;}
.y2e{bottom:729.452800pt;}
.y5f{bottom:730.464133pt;}
.yd1{bottom:730.464267pt;}
.y217{bottom:731.433600pt;}
.y196{bottom:733.714000pt;}
.y8c{bottom:740.402267pt;}
.y1a7{bottom:741.345733pt;}
.y195{bottom:745.426000pt;}
.y2d{bottom:745.452800pt;}
.y5e{bottom:746.464133pt;}
.yd0{bottom:746.464267pt;}
.y216{bottom:747.433600pt;}
.y1c9{bottom:751.738933pt;}
.y194{bottom:757.372667pt;}
.y2c{bottom:761.452800pt;}
.y5d{bottom:762.464133pt;}
.ycf{bottom:762.464267pt;}
.y8b{bottom:762.706267pt;}
.y10d{bottom:763.266800pt;}
.y215{bottom:763.433600pt;}
.y193{bottom:769.244667pt;}
.y1a6{bottom:769.505733pt;}
.y2b{bottom:777.452800pt;}
.y5c{bottom:778.464133pt;}
.yce{bottom:778.464267pt;}
.y1c8{bottom:778.576267pt;}
.y214{bottom:779.433600pt;}
.y192{bottom:780.882000pt;}
.y8a{bottom:784.626267pt;}
.y5b{bottom:794.464133pt;}
.ycd{bottom:794.464267pt;}
.y213{bottom:795.433600pt;}
.y1c0{bottom:805.600000pt;}
.y89{bottom:806.738267pt;}
.y10c{bottom:808.056133pt;}
.y2a{bottom:808.570933pt;}
.y5a{bottom:810.464133pt;}
.ycc{bottom:810.464267pt;}
.y212{bottom:811.433600pt;}
.y1{bottom:813.688667pt;}
.y28{bottom:838.609200pt;}
.y27{bottom:853.588667pt;}
.y59{bottom:857.155067pt;}
.y29{bottom:858.340400pt;}
.y58{bottom:858.462267pt;}
.h25{height:22.784000pt;}
.h1a{height:23.106667pt;}
.h1c{height:24.393333pt;}
.h18{height:24.858667pt;}
.h17{height:24.984000pt;}
.h2{height:25.784000pt;}
.h3{height:25.872000pt;}
.h27{height:26.245333pt;}
.h13{height:26.581333pt;}
.hd{height:26.693333pt;}
.h19{height:28.001333pt;}
.h1d{height:28.242667pt;}
.hc{height:28.746667pt;}
.h24{height:29.994667pt;}
.hb{height:30.175781pt;}
.h6{height:30.378667pt;}
.h8{height:30.549333pt;}
.h10{height:30.800000pt;}
.h7{height:31.253333pt;}
.h20{height:33.888000pt;}
.ha{height:34.368000pt;}
.h22{height:34.560000pt;}
.h9{height:35.160000pt;}
.h21{height:36.020544pt;}
.h12{height:37.973333pt;}
.hf{height:38.186667pt;}
.h2a{height:38.541667pt;}
.h1e{height:40.022827pt;}
.h1b{height:40.346667pt;}
.he{height:42.973333pt;}
.h5{height:45.872053pt;}
.h14{height:49.066667pt;}
.h4{height:54.693333pt;}
.h15{height:58.880000pt;}
.h28{height:65.888000pt;}
.h16{height:130.666667pt;}
.h26{height:226.772000pt;}
.h29{height:309.920000pt;}
.h23{height:309.921333pt;}
.h1f{height:317.480000pt;}
.h11{height:325.040000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:16.224000pt;}
.w5{width:17.206667pt;}
.w8{width:17.789333pt;}
.w7{width:18.733333pt;}
.w3{width:70.666667pt;}
.w6{width:124.000000pt;}
.w2{width:483.778667pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3e{left:3.083600pt;}
.x12{left:10.778133pt;}
.x3a{left:12.243733pt;}
.x40{left:15.083600pt;}
.x83{left:20.941067pt;}
.x35{left:32.792000pt;}
.x37{left:56.583600pt;}
.x2{left:69.921200pt;}
.x44{left:70.900533pt;}
.x4e{left:75.212667pt;}
.x84{left:79.875733pt;}
.x3{left:81.259867pt;}
.x80{left:83.345200pt;}
.xd{left:85.039333pt;}
.x7b{left:86.740133pt;}
.x46{left:87.710267pt;}
.x45{left:88.655200pt;}
.xe{left:90.962933pt;}
.x42{left:92.875333pt;}
.x47{left:94.417867pt;}
.x11{left:95.777200pt;}
.xf{left:100.157467pt;}
.x4f{left:102.767867pt;}
.x82{left:103.770933pt;}
.x3b{left:106.717333pt;}
.x50{left:107.887867pt;}
.x48{left:109.777733pt;}
.xa{left:110.974800pt;}
.x4d{left:113.482267pt;}
.x13{left:115.086533pt;}
.x3c{left:116.249867pt;}
.x10{left:117.921200pt;}
.x51{left:119.141200pt;}
.x49{left:121.404400pt;}
.x3d{left:123.923600pt;}
.x52{left:130.282933pt;}
.x4{left:133.269867pt;}
.x70{left:140.786133pt;}
.x53{left:142.400267pt;}
.x14{left:151.566533pt;}
.x54{left:154.304267pt;}
.x6f{left:155.527467pt;}
.x81{left:159.896800pt;}
.x55{left:165.834933pt;}
.x15{left:169.326533pt;}
.x5{left:175.442267pt;}
.x56{left:177.461600pt;}
.x16{left:188.227867pt;}
.x57{left:189.173600pt;}
.x4b{left:191.382000pt;}
.x58{left:200.885600pt;}
.x17{left:205.987867pt;}
.x59{left:212.416267pt;}
.x7a{left:222.738533pt;}
.x18{left:224.505200pt;}
.x7c{left:225.449200pt;}
.x5e{left:229.795867pt;}
.x5a{left:235.946933pt;}
.x71{left:239.018533pt;}
.x19{left:242.457200pt;}
.x5b{left:247.754933pt;}
.x6{left:250.331467pt;}
.x5c{left:259.466933pt;}
.x1a{left:260.409200pt;}
.x3f{left:261.810933pt;}
.x1{left:270.135467pt;}
.x5d{left:271.274933pt;}
.x34{left:276.477333pt;}
.x1b{left:278.361200pt;}
.x2c{left:279.560933pt;}
.x4c{left:282.644400pt;}
.x79{left:287.242533pt;}
.x2e{left:288.477600pt;}
.x7{left:292.940933pt;}
.x1c{left:294.425200pt;}
.x4a{left:296.476400pt;}
.x32{left:297.477600pt;}
.x43{left:298.436000pt;}
.x33{left:309.269333pt;}
.x76{left:311.866533pt;}
.x1d{left:312.761200pt;}
.x5f{left:313.678533pt;}
.x2d{left:316.054267pt;}
.x2a{left:318.531867pt;}
.x7d{left:319.937200pt;}
.x30{left:322.684267pt;}
.x31{left:323.645600pt;}
.x2f{left:324.933600pt;}
.x73{left:326.186533pt;}
.x1e{left:330.713200pt;}
.x36{left:333.061333pt;}
.x41{left:339.769333pt;}
.x2b{left:341.294533pt;}
.x1f{left:348.857200pt;}
.x60{left:351.783867pt;}
.x74{left:356.586533pt;}
.x72{left:358.002533pt;}
.x61{left:362.365200pt;}
.x20{left:367.001200pt;}
.xb{left:368.875200pt;}
.x78{left:369.818533pt;}
.x62{left:372.850533pt;}
.x8{left:380.362667pt;}
.x63{left:383.815867pt;}
.x21{left:385.326533pt;}
.x7f{left:387.211867pt;}
.x64{left:394.781200pt;}
.x77{left:397.834533pt;}
.x75{left:400.442533pt;}
.x22{left:403.278533pt;}
.x65{left:405.554533pt;}
.xc{left:414.202267pt;}
.x66{left:416.135867pt;}
.x23{left:421.422533pt;}
.x9{left:426.374533pt;}
.x67{left:437.970533pt;}
.x24{left:439.374533pt;}
.x6a{left:448.274533pt;}
.x7e{left:457.133200pt;}
.x25{left:458.083867pt;}
.x68{left:470.290533pt;}
.x26{left:475.470533pt;}
.x69{left:480.402533pt;}
.x6b{left:491.645200pt;}
.x27{left:493.987867pt;}
.x6c{left:502.322533pt;}
.x28{left:512.313200pt;}
.x38{left:513.418667pt;}
.x39{left:523.162400pt;}
.x29{left:530.457200pt;}
.x6d{left:534.642533pt;}
.x6e{left:545.415867pt;}
}




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