
    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_1b34638be0d5f5e74d1423b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_818c204a9a118d50f5692251.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_f3d3a00c60241f74c42b7f07.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914000;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_cf3f85342a2ff44a059b64c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901855;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_51f08619ffb65db6313892dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_577e923564700ae77acfb697.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_742db01c8c740cf1ec5d46cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985267;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_61df3a410f523e478204dd01.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986305;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_c728ac2a0ce19a734f4eded5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064000;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_0c46d304849db8bc3f75b928.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_47489c8380d3eb56dff20a07.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.724000;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_e76a60fd6313389556f79f44.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002190;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_a3f4516d8bb05affa41ce4bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986667;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_f025d012ff1bb781ecc96c63.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.724000;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_73f583fc00a2974b387a7c3b.woff2')format("woff");}.fff{font-family:fff;line-height:1.104027;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_670f29b70d0b8ab585a9b070.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.929000;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_0c4b3c65017bff7f31ab4c81.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.985267;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_ce0a2f8f9bccca1f15bd79ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.700000;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_e77e506ba6b635c88bce15ee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.694000;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_0a4a749c85ca0d70c1206225.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;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;}
.m3{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);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-19.800000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.300000px;}
.v2{vertical-align:17.100000px;}
.ls5d{letter-spacing:-13.464000px;}
.lsc{letter-spacing:-13.117500px;}
.lsb{letter-spacing:-12.870000px;}
.ls61{letter-spacing:-10.404000px;}
.ls6e{letter-spacing:-10.136250px;}
.ls62{letter-spacing:-10.021500px;}
.ls60{letter-spacing:-9.447750px;}
.ls17{letter-spacing:-9.180000px;}
.ls16{letter-spacing:-8.943750px;}
.ls1f{letter-spacing:-8.842500px;}
.ls22{letter-spacing:-8.775000px;}
.ls6f{letter-spacing:-8.721000px;}
.ls5f{letter-spacing:-8.032500px;}
.ls21{letter-spacing:-7.695000px;}
.ls70{letter-spacing:-7.573500px;}
.ls5e{letter-spacing:-7.344000px;}
.ls20{letter-spacing:-6.885000px;}
.ls1e{letter-spacing:-6.480000px;}
.lsa{letter-spacing:-3.168000px;}
.ls24{letter-spacing:-0.855000px;}
.ls32{letter-spacing:-0.570000px;}
.ls5a{letter-spacing:-0.399000px;}
.ls5b{letter-spacing:-0.370500px;}
.ls18{letter-spacing:-0.285000px;}
.ls23{letter-spacing:-0.228000px;}
.ls59{letter-spacing:-0.185250px;}
.ls50{letter-spacing:-0.171000px;}
.ls31{letter-spacing:-0.114000px;}
.ls51{letter-spacing:-0.111150px;}
.ls9{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.001200px;}
.ls3b{letter-spacing:0.001800px;}
.ls6c{letter-spacing:0.027000px;}
.ls6d{letter-spacing:0.038250px;}
.ls49{letter-spacing:0.051000px;}
.lse{letter-spacing:0.057000px;}
.ls38{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.114000px;}
.ls33{letter-spacing:0.114300px;}
.ls52{letter-spacing:0.117000px;}
.ls4f{letter-spacing:0.135000px;}
.ls2c{letter-spacing:0.145500px;}
.ls54{letter-spacing:0.153000px;}
.ls10{letter-spacing:0.171000px;}
.ls34{letter-spacing:0.180000px;}
.ls76{letter-spacing:0.191250px;}
.ls75{letter-spacing:0.196800px;}
.ls47{letter-spacing:0.204000px;}
.ls4b{letter-spacing:0.222300px;}
.ls3{letter-spacing:0.225000px;}
.ls1a{letter-spacing:0.228000px;}
.ls46{letter-spacing:0.255000px;}
.ls35{letter-spacing:0.285000px;}
.ls71{letter-spacing:0.295200px;}
.ls77{letter-spacing:0.300000px;}
.ls53{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.315000px;}
.ls2d{letter-spacing:0.333900px;}
.ls2{letter-spacing:0.336000px;}
.ls13{letter-spacing:0.342000px;}
.ls1b{letter-spacing:0.357000px;}
.ls6{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.370500px;}
.ls68{letter-spacing:0.372600px;}
.ls69{letter-spacing:0.382500px;}
.ls11{letter-spacing:0.399000px;}
.ls8{letter-spacing:0.405000px;}
.ls4d{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.450000px;}
.ls36{letter-spacing:0.456000px;}
.ls4e{letter-spacing:0.459000px;}
.ls6a{letter-spacing:0.480000px;}
.ls5c{letter-spacing:0.510000px;}
.ls12{letter-spacing:0.513000px;}
.ls3e{letter-spacing:0.525000px;}
.ls42{letter-spacing:0.525600px;}
.ls15{letter-spacing:0.570000px;}
.ls6b{letter-spacing:0.608400px;}
.ls48{letter-spacing:0.612000px;}
.ls27{letter-spacing:0.627000px;}
.ls1c{letter-spacing:0.663000px;}
.ls26{letter-spacing:0.684000px;}
.ls4c{letter-spacing:0.741000px;}
.ls14{letter-spacing:0.798000px;}
.ls7{letter-spacing:0.810000px;}
.ls58{letter-spacing:0.816000px;}
.ls2a{letter-spacing:0.855000px;}
.ls1d{letter-spacing:0.867000px;}
.ls2e{letter-spacing:0.912000px;}
.ls67{letter-spacing:0.956250px;}
.ls66{letter-spacing:0.964200px;}
.ls30{letter-spacing:0.969000px;}
.ls74{letter-spacing:1.020000px;}
.ls72{letter-spacing:1.028400px;}
.ls73{letter-spacing:1.032750px;}
.ls29{letter-spacing:1.083000px;}
.ls2b{letter-spacing:1.140000px;}
.ls57{letter-spacing:1.197000px;}
.ls40{letter-spacing:1.254000px;}
.ls2f{letter-spacing:1.311000px;}
.ls37{letter-spacing:1.425000px;}
.ls65{letter-spacing:1.428000px;}
.ls56{letter-spacing:1.539000px;}
.ls41{letter-spacing:1.596000px;}
.ls25{letter-spacing:1.710000px;}
.ls28{letter-spacing:1.824000px;}
.ls3f{letter-spacing:1.915800px;}
.ls55{letter-spacing:2.280000px;}
.ls43{letter-spacing:2.329200px;}
.ls3c{letter-spacing:2.562600px;}
.ls4a{letter-spacing:2.615400px;}
.ls39{letter-spacing:3.567000px;}
.ls3a{letter-spacing:3.567600px;}
.ls45{letter-spacing:5.566200px;}
.ls63{letter-spacing:6.018000px;}
.ls64{letter-spacing:7.191000px;}
.ls1{letter-spacing:9.990000px;}
.ls0{letter-spacing:10.656000px;}
.ls19{letter-spacing:1276.638000px;}
.lsd{letter-spacing:1505.111400px;}
.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;}
}
.ws47{word-spacing:-57.000000px;}
.ws4b{word-spacing:-45.000000px;}
.ws0{word-spacing:-32.832000px;}
.ws32{word-spacing:-28.101000px;}
.ws12{word-spacing:-27.780000px;}
.ws48{word-spacing:-27.645000px;}
.ws49{word-spacing:-27.531000px;}
.ws5d{word-spacing:-27.303000px;}
.ws37{word-spacing:-27.246000px;}
.ws1e{word-spacing:-27.189000px;}
.ws4e{word-spacing:-27.132000px;}
.ws3f{word-spacing:-27.075000px;}
.ws36{word-spacing:-27.018000px;}
.ws33{word-spacing:-26.961000px;}
.ws1a{word-spacing:-26.904000px;}
.ws40{word-spacing:-26.847000px;}
.ws45{word-spacing:-26.790000px;}
.ws1c{word-spacing:-26.733000px;}
.ws42{word-spacing:-26.676000px;}
.ws29{word-spacing:-26.619000px;}
.ws19{word-spacing:-26.562000px;}
.ws18{word-spacing:-26.505000px;}
.ws15{word-spacing:-26.448000px;}
.ws14{word-spacing:-26.391000px;}
.ws57{word-spacing:-26.277000px;}
.ws50{word-spacing:-26.220000px;}
.ws28{word-spacing:-26.163000px;}
.ws1f{word-spacing:-26.106000px;}
.ws3c{word-spacing:-25.821000px;}
.ws2a{word-spacing:-25.536000px;}
.ws70{word-spacing:-24.633000px;}
.ws5b{word-spacing:-24.582000px;}
.ws59{word-spacing:-24.429000px;}
.ws64{word-spacing:-24.225000px;}
.ws5c{word-spacing:-24.123000px;}
.ws4f{word-spacing:-24.072000px;}
.ws2b{word-spacing:-23.970000px;}
.ws56{word-spacing:-23.919000px;}
.ws72{word-spacing:-23.817000px;}
.ws55{word-spacing:-23.766000px;}
.ws4c{word-spacing:-23.664000px;}
.ws2e{word-spacing:-23.613000px;}
.wsc{word-spacing:-21.645000px;}
.wsb{word-spacing:-21.285000px;}
.wsd{word-spacing:-21.240000px;}
.wsa{word-spacing:-21.060000px;}
.ws44{word-spacing:-21.015000px;}
.ws54{word-spacing:-20.970000px;}
.ws31{word-spacing:-20.835000px;}
.ws6{word-spacing:-19.446000px;}
.ws58{word-spacing:-19.095000px;}
.ws3{word-spacing:-18.942000px;}
.ws4a{word-spacing:-17.524650px;}
.ws5a{word-spacing:-17.442000px;}
.ws4d{word-spacing:-17.376450px;}
.ws3d{word-spacing:-17.271000px;}
.ws16{word-spacing:-17.154150px;}
.ws35{word-spacing:-17.043000px;}
.ws34{word-spacing:-16.929000px;}
.ws3b{word-spacing:-16.872000px;}
.ws43{word-spacing:-16.815000px;}
.ws46{word-spacing:-16.758000px;}
.ws1d{word-spacing:-16.701000px;}
.ws41{word-spacing:-16.416000px;}
.ws1b{word-spacing:-16.359000px;}
.ws66{word-spacing:-15.606000px;}
.ws2d{word-spacing:-15.504000px;}
.ws67{word-spacing:-15.351000px;}
.ws2c{word-spacing:-14.637000px;}
.ws51{word-spacing:-13.659750px;}
.ws20{word-spacing:-13.542750px;}
.ws9{word-spacing:-13.230000px;}
.ws3a{word-spacing:-13.140000px;}
.ws53{word-spacing:-13.050000px;}
.wsf{word-spacing:-12.915000px;}
.ws2{word-spacing:-12.312300px;}
.ws7{word-spacing:-12.054000px;}
.ws6f{word-spacing:-12.010500px;}
.ws65{word-spacing:-11.934000px;}
.ws27{word-spacing:-11.676000px;}
.ws6c{word-spacing:-11.589750px;}
.ws39{word-spacing:-11.475000px;}
.ws3e{word-spacing:-11.430000px;}
.ws6a{word-spacing:-11.360250px;}
.ws52{word-spacing:-11.340000px;}
.ws6e{word-spacing:-11.283750px;}
.ws21{word-spacing:-11.250000px;}
.ws71{word-spacing:-11.169000px;}
.ws6d{word-spacing:-11.016000px;}
.ws17{word-spacing:-10.633350px;}
.ws8{word-spacing:-10.504737px;}
.ws2f{word-spacing:-9.514050px;}
.ws1{word-spacing:-9.324000px;}
.ws30{word-spacing:-8.394750px;}
.ws13{word-spacing:-0.042000px;}
.wse{word-spacing:0.000000px;}
.ws22{word-spacing:3.273750px;}
.ws5f{word-spacing:3.710250px;}
.ws24{word-spacing:4.083750px;}
.ws6b{word-spacing:4.628250px;}
.ws60{word-spacing:5.087250px;}
.ws25{word-spacing:5.703750px;}
.ws69{word-spacing:6.464250px;}
.ws26{word-spacing:7.863750px;}
.ws61{word-spacing:7.917750px;}
.ws23{word-spacing:7.998750px;}
.ws10{word-spacing:8.201250px;}
.ws11{word-spacing:8.673750px;}
.ws63{word-spacing:9.064800px;}
.ws68{word-spacing:9.294750px;}
.ws62{word-spacing:9.830250px;}
.ws4{word-spacing:11.533500px;}
.ws5{word-spacing:12.028500px;}
.ws5e{word-spacing:15.950250px;}
.ws38{word-spacing:18.696000px;}
._e{margin-left:-285.580500px;}
._c{margin-left:-12.915000px;}
._6{margin-left:-11.676000px;}
._1{margin-left:-10.662600px;}
._f{margin-left:-7.203150px;}
._d{margin-left:-6.045750px;}
._8{margin-left:-1.100842px;}
._2{width:1.584000px;}
._4{width:3.449400px;}
._5{width:4.695600px;}
._a{width:6.048000px;}
._7{width:7.765263px;}
._9{width:8.982316px;}
._b{width:10.532432px;}
._3{width:11.675400px;}
._0{width:13.344000px;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.250000px;}
.fsf{font-size:33.150000px;}
.fsa{font-size:33.750000px;}
.fsc{font-size:37.050000px;}
.fs10{font-size:38.250000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:42.900000px;}
.fs4{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:49.500000px;}
.fse{font-size:51.000000px;}
.fsb{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:72.281550px;}
.y1{bottom:72.281850px;}
.y30{bottom:72.284550px;}
.y26f{bottom:72.287550px;}
.yb{bottom:110.549250px;}
.yc7{bottom:110.549400px;}
.y23f{bottom:110.552100px;}
.y82{bottom:110.552250px;}
.y296{bottom:110.555100px;}
.y123{bottom:110.887800px;}
.y2c1{bottom:110.959350px;}
.y2f2{bottom:111.316350px;}
.y59{bottom:113.927100px;}
.y196{bottom:113.927250px;}
.ya{bottom:122.549250px;}
.ya8{bottom:124.941750px;}
.yc6{bottom:124.941900px;}
.y23e{bottom:124.944600px;}
.y81{bottom:124.944750px;}
.y2c0{bottom:126.879450px;}
.y2f1{bottom:127.236600px;}
.y1b6{bottom:128.316750px;}
.ydc{bottom:128.316900px;}
.y174{bottom:128.319750px;}
.y295{bottom:128.322600px;}
.y101{bottom:128.400150px;}
.y122{bottom:128.484300px;}
.y9{bottom:138.801300px;}
.ya7{bottom:139.334250px;}
.yc5{bottom:139.334400px;}
.y23d{bottom:139.337100px;}
.y80{bottom:139.337250px;}
.y130{bottom:142.709250px;}
.y14a{bottom:142.712250px;}
.y2bf{bottom:142.799850px;}
.y2f0{bottom:143.156850px;}
.y121{bottom:146.080800px;}
.y100{bottom:146.250900px;}
.y12f{bottom:153.726750px;}
.y7f{bottom:153.729750px;}
.y8{bottom:155.053200px;}
.ya6{bottom:157.101750px;}
.yc4{bottom:157.101900px;}
.y23c{bottom:157.104600px;}
.y2be{bottom:158.720100px;}
.y2ef{bottom:159.077100px;}
.y58{bottom:160.660650px;}
.y195{bottom:161.786250px;}
.y120{bottom:163.677300px;}
.yff{bottom:164.101650px;}
.y205{bottom:168.119250px;}
.y1d4{bottom:168.119400px;}
.y23b{bottom:168.122100px;}
.y149{bottom:168.122250px;}
.y12e{bottom:171.494250px;}
.y7e{bottom:171.497250px;}
.y7{bottom:172.612200px;}
.y2bd{bottom:174.640200px;}
.y2ee{bottom:174.997350px;}
.y21b{bottom:176.514000px;}
.y57{bottom:178.257150px;}
.y194{bottom:179.382750px;}
.y11f{bottom:181.273800px;}
.y12d{bottom:182.511750px;}
.y1d3{bottom:182.511900px;}
.y23a{bottom:182.514600px;}
.y148{bottom:182.514750px;}
.y6{bottom:183.793200px;}
.y165{bottom:185.889750px;}
.ydb{bottom:188.180850px;}
.y294{bottom:188.181150px;}
.y2bc{bottom:190.560600px;}
.yfe{bottom:190.749750px;}
.y2ed{bottom:190.917600px;}
.y21a{bottom:194.110500px;}
.y1e3{bottom:194.147850px;}
.y56{bottom:195.853650px;}
.y12c{bottom:196.904250px;}
.y239{bottom:196.907100px;}
.y147{bottom:196.907250px;}
.y193{bottom:196.979250px;}
.y11e{bottom:198.870150px;}
.y5{bottom:199.226100px;}
.y204{bottom:200.279250px;}
.y1d2{bottom:200.279400px;}
.yda{bottom:205.777350px;}
.y293{bottom:205.777650px;}
.y2bb{bottom:206.480850px;}
.y2ec{bottom:206.837850px;}
.yfd{bottom:208.600500px;}
.y1e2{bottom:210.134850px;}
.y4{bottom:210.407250px;}
.y1b5{bottom:211.296750px;}
.y238{bottom:211.299600px;}
.y146{bottom:211.299750px;}
.y219{bottom:211.707000px;}
.y55{bottom:213.450150px;}
.yc3{bottom:214.574700px;}
.y192{bottom:214.575750px;}
.y12b{bottom:214.671750px;}
.ya5{bottom:216.466650px;}
.y2ba{bottom:222.400950px;}
.y2eb{bottom:222.758100px;}
.y173{bottom:223.369350px;}
.yd9{bottom:223.373850px;}
.y292{bottom:223.374000px;}
.y26d{bottom:225.689250px;}
.y1e1{bottom:226.121850px;}
.yfc{bottom:226.451400px;}
.y1b4{bottom:229.064250px;}
.y237{bottom:229.067100px;}
.y145{bottom:229.067250px;}
.y218{bottom:229.303500px;}
.y54{bottom:231.046650px;}
.y164{bottom:232.166700px;}
.y250{bottom:232.167450px;}
.yc2{bottom:232.171200px;}
.y191{bottom:232.172250px;}
.ya4{bottom:234.063150px;}
.y7d{bottom:234.635700px;}
.y2b9{bottom:238.321350px;}
.y2ea{bottom:238.678350px;}
.y26c{bottom:240.081750px;}
.y172{bottom:240.965850px;}
.y291{bottom:240.970500px;}
.y1e0{bottom:242.108850px;}
.yfb{bottom:244.302150px;}
.y2c{bottom:244.486200px;}
.y217{bottom:246.900000px;}
.y53{bottom:248.643000px;}
.y1d1{bottom:249.014100px;}
.y163{bottom:249.763200px;}
.y24f{bottom:249.763950px;}
.yc1{bottom:249.767700px;}
.y190{bottom:249.768750px;}
.y7c{bottom:250.622700px;}
.ya3{bottom:251.659650px;}
.y203{bottom:252.425100px;}
.y2b8{bottom:254.241600px;}
.y236{bottom:254.477100px;}
.y2e9{bottom:254.598600px;}
.y26b{bottom:257.849250px;}
.y1df{bottom:258.095850px;}
.y171{bottom:258.562350px;}
.y290{bottom:258.567000px;}
.y2b{bottom:258.878700px;}
.yfa{bottom:262.152900px;}
.y216{bottom:264.496350px;}
.y7b{bottom:266.609700px;}
.y1d0{bottom:266.610600px;}
.y162{bottom:267.359700px;}
.y24e{bottom:267.360450px;}
.yc0{bottom:267.364200px;}
.y18f{bottom:267.365100px;}
.ya2{bottom:269.256150px;}
.y202{bottom:270.021600px;}
.y2b7{bottom:270.161700px;}
.y2e8{bottom:270.518850px;}
.y52{bottom:271.341900px;}
.y2a{bottom:273.271200px;}
.y1de{bottom:274.082850px;}
.y235{bottom:275.672700px;}
.y170{bottom:276.158850px;}
.y28f{bottom:276.163500px;}
.yf9{bottom:280.003650px;}
.y215{bottom:282.092850px;}
.y7a{bottom:282.596700px;}
.y11d{bottom:283.581000px;}
.y161{bottom:284.956200px;}
.y24d{bottom:284.956950px;}
.yd8{bottom:284.960550px;}
.ybf{bottom:284.960700px;}
.y18e{bottom:284.961600px;}
.y1b3{bottom:285.814650px;}
.y2b6{bottom:286.082100px;}
.y2e7{bottom:286.439100px;}
.y201{bottom:287.618100px;}
.y29{bottom:287.663700px;}
.y51{bottom:288.938400px;}
.y144{bottom:289.040250px;}
.y234{bottom:290.065200px;}
.y1dd{bottom:290.069850px;}
.y1cf{bottom:293.004450px;}
.y16f{bottom:293.755350px;}
.y28e{bottom:293.760000px;}
.yf8{bottom:297.854400px;}
.y79{bottom:298.583700px;}
.y214{bottom:299.689350px;}
.y2b5{bottom:302.002350px;}
.y28{bottom:302.056200px;}
.y2e6{bottom:302.359350px;}
.y160{bottom:302.552700px;}
.y24c{bottom:302.553300px;}
.yd7{bottom:302.557050px;}
.y18d{bottom:302.558100px;}
.y1b2{bottom:303.411150px;}
.ya1{bottom:304.447200px;}
.y233{bottom:304.457700px;}
.y200{bottom:305.214600px;}
.y1dc{bottom:306.056850px;}
.y50{bottom:306.534900px;}
.y143{bottom:306.636600px;}
.y1ce{bottom:310.600800px;}
.y16e{bottom:311.351850px;}
.y28d{bottom:311.356500px;}
.y78{bottom:314.570700px;}
.yf7{bottom:315.705300px;}
.y26a{bottom:316.288800px;}
.y27{bottom:316.448700px;}
.y213{bottom:317.285850px;}
.y2b4{bottom:317.922600px;}
.y2e5{bottom:318.279600px;}
.y232{bottom:318.850200px;}
.y15f{bottom:320.149050px;}
.y24b{bottom:320.149800px;}
.ybe{bottom:320.151750px;}
.yd6{bottom:320.153550px;}
.y18c{bottom:320.154600px;}
.y1b1{bottom:321.007650px;}
.ya0{bottom:322.043700px;}
.y1ff{bottom:322.811100px;}
.y4f{bottom:324.131400px;}
.y142{bottom:324.233100px;}
.y1cd{bottom:328.197300px;}
.y16d{bottom:328.948200px;}
.y28c{bottom:328.953000px;}
.y77{bottom:330.557700px;}
.y26{bottom:330.841200px;}
.yf6{bottom:333.556050px;}
.y2b3{bottom:333.842850px;}
.y269{bottom:333.885300px;}
.y2e4{bottom:334.199850px;}
.y212{bottom:334.882350px;}
.y231{bottom:336.617700px;}
.y11c{bottom:337.744500px;}
.y15e{bottom:337.745550px;}
.y24a{bottom:337.746300px;}
.y18b{bottom:337.751100px;}
.y1b0{bottom:338.604000px;}
.y1db{bottom:339.638400px;}
.y9f{bottom:339.640200px;}
.y4e{bottom:341.727750px;}
.y141{bottom:341.829600px;}
.y25{bottom:345.233700px;}
.y1cc{bottom:345.793800px;}
.y16c{bottom:346.544700px;}
.y28b{bottom:346.549500px;}
.y2b2{bottom:349.763100px;}
.y2e3{bottom:350.120100px;}
.y268{bottom:351.481800px;}
.y211{bottom:352.478850px;}
.y11b{bottom:355.341000px;}
.y15d{bottom:355.342050px;}
.y249{bottom:355.342800px;}
.ybd{bottom:355.342950px;}
.yd5{bottom:355.344750px;}
.y18a{bottom:355.347600px;}
.y1af{bottom:356.200500px;}
.y1da{bottom:357.234900px;}
.y9e{bottom:357.236700px;}
.y1fe{bottom:358.002150px;}
.y4d{bottom:359.324250px;}
.y140{bottom:359.426100px;}
.y24{bottom:359.626200px;}
.yf5{bottom:360.204150px;}
.y1cb{bottom:363.390300px;}
.y76{bottom:364.139400px;}
.y28a{bottom:364.145850px;}
.y2b1{bottom:365.683200px;}
.y2e2{bottom:366.040350px;}
.y11a{bottom:372.937350px;}
.y15c{bottom:372.938550px;}
.y248{bottom:372.939300px;}
.ybc{bottom:372.939450px;}
.y23{bottom:374.018700px;}
.y1d9{bottom:374.831400px;}
.y4c{bottom:376.920750px;}
.y13f{bottom:377.022600px;}
.yf4{bottom:378.054900px;}
.y210{bottom:378.872700px;}
.y1ca{bottom:380.986800px;}
.y2b0{bottom:381.603600px;}
.y75{bottom:381.735900px;}
.y189{bottom:381.741450px;}
.y289{bottom:381.742350px;}
.y2e1{bottom:381.960600px;}
.y1ae{bottom:382.594350px;}
.y267{bottom:386.672850px;}
.y230{bottom:389.894250px;}
.y119{bottom:390.533850px;}
.y15b{bottom:390.535050px;}
.ybb{bottom:390.535800px;}
.y9d{bottom:392.427900px;}
.y4b{bottom:394.517250px;}
.y13e{bottom:394.619100px;}
.yf3{bottom:395.905650px;}
.y20f{bottom:396.469050px;}
.y2af{bottom:397.523850px;}
.y2e0{bottom:397.880850px;}
.y1c9{bottom:398.583300px;}
.y74{bottom:399.332400px;}
.y188{bottom:399.337950px;}
.y288{bottom:399.338850px;}
.y1ad{bottom:400.190850px;}
.y266{bottom:402.659850px;}
.y22f{bottom:405.881250px;}
.y118{bottom:408.130350px;}
.y15a{bottom:408.131550px;}
.yba{bottom:408.132300px;}
.y9c{bottom:410.024400px;}
.y1fd{bottom:410.787900px;}
.y4a{bottom:412.113750px;}
.y2ae{bottom:413.444100px;}
.yf2{bottom:413.756400px;}
.y2df{bottom:413.801100px;}
.y20e{bottom:414.065550px;}
.y1c8{bottom:416.179800px;}
.y187{bottom:416.934300px;}
.y1ac{bottom:417.787350px;}
.y265{bottom:418.646850px;}
.y22e{bottom:421.868250px;}
.y1d8{bottom:424.349250px;}
.y22{bottom:425.246550px;}
.y73{bottom:425.726100px;}
.y117{bottom:425.726850px;}
.y159{bottom:425.728050px;}
.yb9{bottom:425.728800px;}
.y287{bottom:425.732700px;}
.y9b{bottom:427.620900px;}
.y1fc{bottom:428.384400px;}
.y2ad{bottom:429.364350px;}
.y49{bottom:429.710250px;}
.y2de{bottom:429.721350px;}
.y13d{bottom:429.810150px;}
.yf1{bottom:431.607150px;}
.y20d{bottom:431.662050px;}
.y186{bottom:434.530800px;}
.y264{bottom:434.633850px;}
.y1ab{bottom:435.383850px;}
.y22d{bottom:437.855250px;}
.y21{bottom:438.040050px;}
.y1c7{bottom:442.573500px;}
.y72{bottom:443.322600px;}
.y116{bottom:443.323350px;}
.y158{bottom:443.324550px;}
.y247{bottom:443.325150px;}
.yb8{bottom:443.325300px;}
.y286{bottom:443.329200px;}
.y2ac{bottom:445.284600px;}
.y2dd{bottom:445.641600px;}
.y13c{bottom:445.797150px;}
.y1fb{bottom:445.980900px;}
.y48{bottom:447.306750px;}
.y20c{bottom:449.258550px;}
.yf0{bottom:449.457900px;}
.y263{bottom:450.620850px;}
.y16b{bottom:452.121750px;}
.y185{bottom:452.127300px;}
.y1aa{bottom:452.980200px;}
.y22c{bottom:453.842250px;}
.y20{bottom:458.827200px;}
.y9a{bottom:459.542250px;}
.y1c6{bottom:460.170000px;}
.y71{bottom:460.919100px;}
.y115{bottom:460.919850px;}
.y157{bottom:460.920900px;}
.y246{bottom:460.921650px;}
.yb7{bottom:460.921800px;}
.y285{bottom:460.925700px;}
.y2ab{bottom:461.204700px;}
.y2dc{bottom:461.561850px;}
.y13b{bottom:461.784150px;}
.y1fa{bottom:463.577400px;}
.y47{bottom:464.903250px;}
.y262{bottom:466.607850px;}
.y20b{bottom:466.855050px;}
.yef{bottom:467.308800px;}
.y16a{bottom:469.718250px;}
.y22b{bottom:469.829250px;}
.y1a9{bottom:470.576700px;}
.y1f{bottom:471.620700px;}
.y2aa{bottom:477.124950px;}
.y2db{bottom:477.482100px;}
.y1c5{bottom:477.766500px;}
.y13a{bottom:477.771150px;}
.y1d7{bottom:478.512750px;}
.y70{bottom:478.515600px;}
.y114{bottom:478.516350px;}
.y245{bottom:478.518150px;}
.yb6{bottom:478.518300px;}
.y184{bottom:478.521150px;}
.y284{bottom:478.522050px;}
.y1f9{bottom:481.173900px;}
.y46{bottom:482.499600px;}
.y261{bottom:482.594850px;}
.y1e{bottom:484.414200px;}
.y20a{bottom:484.451550px;}
.yee{bottom:485.159550px;}
.y156{bottom:487.314750px;}
.y1a8{bottom:488.173200px;}
.y2a9{bottom:493.045350px;}
.y2da{bottom:493.402350px;}
.y139{bottom:493.758150px;}
.y1c4{bottom:495.363000px;}
.y1d6{bottom:496.109100px;}
.y6f{bottom:496.112100px;}
.y113{bottom:496.112850px;}
.y244{bottom:496.114650px;}
.yd4{bottom:496.114800px;}
.y183{bottom:496.117650px;}
.y283{bottom:496.118550px;}
.y1d{bottom:497.207700px;}
.y260{bottom:498.581850px;}
.y1f8{bottom:498.770400px;}
.y45{bottom:500.096100px;}
.y209{bottom:502.048050px;}
.yed{bottom:503.010300px;}
.y22a{bottom:503.410950px;}
.y12a{bottom:504.908250px;}
.y155{bottom:504.911250px;}
.y1a7{bottom:505.769700px;}
.y2a8{bottom:508.965600px;}
.y2d9{bottom:509.322600px;}
.y138{bottom:509.745150px;}
.y1c{bottom:510.001200px;}
.y1c3{bottom:512.959500px;}
.y99{bottom:513.705600px;}
.y6e{bottom:513.708600px;}
.y112{bottom:513.709200px;}
.yb5{bottom:513.709350px;}
.yd3{bottom:513.711300px;}
.y182{bottom:513.714000px;}
.y282{bottom:513.715050px;}
.y25f{bottom:514.568850px;}
.y1f7{bottom:516.366900px;}
.y44{bottom:517.692600px;}
.y208{bottom:519.644550px;}
.yec{bottom:520.861050px;}
.y229{bottom:521.007450px;}
.y129{bottom:522.504750px;}
.y154{bottom:522.507750px;}
.y243{bottom:522.508500px;}
.y1b{bottom:522.794700px;}
.y1a6{bottom:523.366200px;}
.y2a7{bottom:524.885850px;}
.y2d8{bottom:525.242850px;}
.y137{bottom:525.732150px;}
.y1c2{bottom:530.556000px;}
.y98{bottom:531.302100px;}
.y6d{bottom:531.305100px;}
.y111{bottom:531.305700px;}
.yd2{bottom:531.307650px;}
.y181{bottom:531.310500px;}
.y281{bottom:531.311550px;}
.y1f6{bottom:533.963400px;}
.y43{bottom:535.289100px;}
.y1a{bottom:535.588200px;}
.y207{bottom:537.240900px;}
.y228{bottom:538.603800px;}
.yeb{bottom:538.711800px;}
.y128{bottom:540.101250px;}
.y153{bottom:540.104250px;}
.y242{bottom:540.105000px;}
.y2a6{bottom:540.806100px;}
.y1a5{bottom:540.962700px;}
.y2d7{bottom:541.163100px;}
.y136{bottom:541.719150px;}
.y25e{bottom:548.150550px;}
.y1c1{bottom:548.152500px;}
.y97{bottom:548.898600px;}
.y6c{bottom:548.901600px;}
.y110{bottom:548.902200px;}
.y180{bottom:548.907000px;}
.y280{bottom:548.908050px;}
.y1f5{bottom:551.559750px;}
.y42{bottom:552.885600px;}
.y206{bottom:554.837400px;}
.y227{bottom:556.200300px;}
.yea{bottom:556.562550px;}
.y2a5{bottom:556.726200px;}
.y2d6{bottom:557.083350px;}
.y127{bottom:557.697750px;}
.y169{bottom:557.700600px;}
.yd1{bottom:557.701500px;}
.y1a4{bottom:558.559200px;}
.y19{bottom:564.369150px;}
.y25d{bottom:565.747050px;}
.y96{bottom:566.495100px;}
.yb4{bottom:566.495250px;}
.y6b{bottom:566.497950px;}
.y10f{bottom:566.498700px;}
.y17f{bottom:566.503500px;}
.y27f{bottom:566.504550px;}
.y1f4{bottom:569.156250px;}
.y2d5{bottom:573.003600px;}
.y226{bottom:573.796800px;}
.ye9{bottom:574.413450px;}
.y1c0{bottom:574.546200px;}
.y126{bottom:575.294250px;}
.y168{bottom:575.297100px;}
.yd0{bottom:575.298000px;}
.y135{bottom:575.300850px;}
.y41{bottom:575.584500px;}
.y18{bottom:577.162650px;}
.y25c{bottom:583.343550px;}
.y95{bottom:584.091600px;}
.y6a{bottom:584.094450px;}
.y10e{bottom:584.095200px;}
.y17e{bottom:584.100000px;}
.y1a3{bottom:584.952900px;}
.y2d4{bottom:588.923850px;}
.y2a4{bottom:590.241150px;}
.y225{bottom:591.393300px;}
.y1bf{bottom:592.142700px;}
.y167{bottom:592.893600px;}
.y241{bottom:592.894350px;}
.ycf{bottom:592.894500px;}
.y134{bottom:592.897350px;}
.y27e{bottom:592.898400px;}
.y40{bottom:593.180850px;}
.y1f3{bottom:595.550100px;}
.y17{bottom:597.949800px;}
.y25b{bottom:600.939900px;}
.y94{bottom:601.688100px;}
.y69{bottom:601.690950px;}
.y10d{bottom:601.691700px;}
.y17d{bottom:601.696500px;}
.y1a2{bottom:602.549400px;}
.y2d3{bottom:604.844100px;}
.y1be{bottom:609.739200px;}
.y166{bottom:610.490100px;}
.y240{bottom:610.490850px;}
.yce{bottom:610.491000px;}
.y133{bottom:610.493700px;}
.y27d{bottom:610.494900px;}
.y16{bottom:610.743300px;}
.y3f{bottom:610.777350px;}
.ye8{bottom:611.984850px;}
.y1f2{bottom:613.146600px;}
.y25a{bottom:618.536400px;}
.y93{bottom:619.284600px;}
.y68{bottom:619.287450px;}
.y10c{bottom:619.288200px;}
.y17c{bottom:619.293000px;}
.y1a1{bottom:620.145900px;}
.y2d2{bottom:620.764350px;}
.y15{bottom:623.536800px;}
.y224{bottom:626.584500px;}
.y1bd{bottom:627.335700px;}
.ycd{bottom:628.087350px;}
.y132{bottom:628.090350px;}
.y27c{bottom:628.091250px;}
.y3e{bottom:628.373850px;}
.y1f1{bottom:630.743100px;}
.y259{bottom:636.132900px;}
.y14{bottom:636.330300px;}
.y2d1{bottom:636.684600px;}
.y92{bottom:636.880950px;}
.yb3{bottom:636.881100px;}
.y152{bottom:636.883950px;}
.y1a0{bottom:637.742400px;}
.y67{bottom:645.681300px;}
.y10b{bottom:645.681900px;}
.ycc{bottom:645.683850px;}
.y17b{bottom:645.686700px;}
.y27b{bottom:645.687750px;}
.y3d{bottom:645.970350px;}
.y2a3{bottom:647.380950px;}
.y1f0{bottom:648.339600px;}
.y13{bottom:649.123800px;}
.y223{bottom:650.565150px;}
.y2d0{bottom:652.604850px;}
.y258{bottom:653.729400px;}
.y91{bottom:654.477450px;}
.yb2{bottom:654.477600px;}
.y151{bottom:654.480450px;}
.y19f{bottom:655.338900px;}
.y12{bottom:661.917300px;}
.y1bc{bottom:662.526750px;}
.y66{bottom:663.277800px;}
.y10a{bottom:663.278400px;}
.y131{bottom:663.281400px;}
.y17a{bottom:663.283200px;}
.y27a{bottom:663.284250px;}
.y3c{bottom:663.566850px;}
.y2a2{bottom:664.977450px;}
.y1ef{bottom:665.936100px;}
.y2cf{bottom:668.525100px;}
.ye7{bottom:669.276900px;}
.y257{bottom:671.325900px;}
.y90{bottom:672.073950px;}
.yb1{bottom:672.074100px;}
.y150{bottom:672.076950px;}
.ycb{bottom:672.077700px;}
.y19e{bottom:672.935400px;}
.y222{bottom:674.545800px;}
.y11{bottom:674.710800px;}
.y1bb{bottom:678.513750px;}
.y65{bottom:680.874150px;}
.y109{bottom:680.874900px;}
.y179{bottom:680.879700px;}
.y279{bottom:680.880750px;}
.y3b{bottom:681.163350px;}
.y2a1{bottom:682.573950px;}
.y1ee{bottom:683.532600px;}
.y2ce{bottom:684.445350px;}
.ye6{bottom:687.127650px;}
.y256{bottom:688.922400px;}
.y125{bottom:689.670450px;}
.yb0{bottom:689.670600px;}
.y14f{bottom:689.673450px;}
.yca{bottom:689.674200px;}
.y19d{bottom:690.531900px;}
.y221{bottom:690.532800px;}
.y1ba{bottom:694.500750px;}
.y8f{bottom:698.467800px;}
.y64{bottom:698.470650px;}
.y108{bottom:698.471400px;}
.y178{bottom:698.476200px;}
.y278{bottom:698.477250px;}
.y3a{bottom:698.759850px;}
.y2a0{bottom:700.170450px;}
.y2cd{bottom:700.365600px;}
.y1ed{bottom:701.128950px;}
.ye5{bottom:704.978400px;}
.y220{bottom:706.519800px;}
.y124{bottom:707.266950px;}
.yaf{bottom:707.267100px;}
.y14e{bottom:707.269800px;}
.yc9{bottom:707.270700px;}
.y1b9{bottom:710.487750px;}
.y8e{bottom:716.064300px;}
.y63{bottom:716.067150px;}
.y107{bottom:716.067900px;}
.y177{bottom:716.072700px;}
.y277{bottom:716.073750px;}
.y2cc{bottom:716.285850px;}
.y39{bottom:716.356350px;}
.y29f{bottom:717.766950px;}
.y1ec{bottom:718.725450px;}
.y21f{bottom:722.506800px;}
.ye4{bottom:722.829150px;}
.y255{bottom:724.113450px;}
.yae{bottom:724.863450px;}
.y14d{bottom:724.866300px;}
.y19c{bottom:725.722950px;}
.y1b8{bottom:726.474750px;}
.y2cb{bottom:732.206100px;}
.y8d{bottom:733.660800px;}
.y62{bottom:733.663650px;}
.y106{bottom:733.664400px;}
.y176{bottom:733.669200px;}
.y29e{bottom:735.363300px;}
.y1eb{bottom:736.321950px;}
.y21e{bottom:738.493800px;}
.y38{bottom:739.055100px;}
.y254{bottom:740.100450px;}
.ye3{bottom:740.679900px;}
.y19b{bottom:741.709950px;}
.yad{bottom:742.459950px;}
.yc8{bottom:742.461750px;}
.y14c{bottom:742.462800px;}
.y10{bottom:745.059000px;}
.y2ca{bottom:748.126350px;}
.y8c{bottom:751.257150px;}
.y61{bottom:751.260150px;}
.y105{bottom:751.260750px;}
.y276{bottom:751.264800px;}
.y29d{bottom:752.959800px;}
.y1ea{bottom:753.918450px;}
.y21d{bottom:754.480800px;}
.y253{bottom:756.087450px;}
.y37{bottom:756.651600px;}
.y19a{bottom:757.696950px;}
.ye2{bottom:758.530650px;}
.yac{bottom:760.056450px;}
.y14b{bottom:760.059300px;}
.y2c9{bottom:764.046600px;}
.y8b{bottom:768.853800px;}
.y60{bottom:768.856650px;}
.y104{bottom:768.857250px;}
.y175{bottom:768.860250px;}
.y275{bottom:768.861300px;}
.y21c{bottom:770.467950px;}
.y29c{bottom:770.556300px;}
.y1e9{bottom:771.514950px;}
.y252{bottom:772.074450px;}
.y199{bottom:773.683950px;}
.yf{bottom:773.983500px;}
.y36{bottom:774.248100px;}
.ye1{bottom:776.381400px;}
.y1d5{bottom:777.652800px;}
.yab{bottom:777.652950px;}
.y2c8{bottom:779.966850px;}
.y8a{bottom:786.450150px;}
.y5f{bottom:786.453150px;}
.y103{bottom:786.453900px;}
.y274{bottom:786.457800px;}
.y251{bottom:788.061450px;}
.y29b{bottom:788.152800px;}
.y1e8{bottom:789.111450px;}
.y198{bottom:789.670950px;}
.y35{bottom:791.844600px;}
.ye0{bottom:794.232300px;}
.yaa{bottom:795.249450px;}
.y2c7{bottom:795.887100px;}
.y89{bottom:804.046650px;}
.y5e{bottom:804.049650px;}
.y273{bottom:804.054450px;}
.y197{bottom:805.657950px;}
.y29a{bottom:805.749150px;}
.ye{bottom:805.814850px;}
.y1e7{bottom:806.707800px;}
.y34{bottom:809.441100px;}
.y2c6{bottom:811.807350px;}
.ydf{bottom:812.083050px;}
.ya9{bottom:812.845800px;}
.y88{bottom:821.643150px;}
.y102{bottom:821.644950px;}
.y5d{bottom:821.646000px;}
.y299{bottom:823.345650px;}
.y1e6{bottom:824.304450px;}
.y33{bottom:827.037450px;}
.y2c5{bottom:827.727600px;}
.y1b7{bottom:830.442300px;}
.yde{bottom:838.731150px;}
.y87{bottom:839.239650px;}
.y5c{bottom:839.242650px;}
.y272{bottom:839.245500px;}
.y298{bottom:840.942150px;}
.y2c4{bottom:843.647850px;}
.y32{bottom:844.634100px;}
.yd{bottom:845.909550px;}
.ydd{bottom:856.581900px;}
.y86{bottom:856.836150px;}
.y5b{bottom:856.839000px;}
.y271{bottom:856.842000px;}
.y1e5{bottom:859.495500px;}
.y2c3{bottom:859.568100px;}
.y31{bottom:872.860500px;}
.y297{bottom:872.863350px;}
.yc{bottom:872.909550px;}
.y85{bottom:874.432650px;}
.y5a{bottom:874.435500px;}
.y270{bottom:874.438500px;}
.y1e4{bottom:875.482500px;}
.y2c2{bottom:875.488350px;}
.y2{bottom:911.861400px;}
.y83{bottom:914.406750px;}
.y2f{bottom:914.409600px;}
.y26e{bottom:914.412600px;}
.y3{bottom:944.572950px;}
.y2e{bottom:949.384950px;}
.y2d{bottom:962.884950px;}
.h19{height:21.547500px;}
.h14{height:21.820500px;}
.hc{height:30.940000px;}
.h5{height:31.206000px;}
.hb{height:31.332000px;}
.h6{height:32.490000px;}
.hd{height:33.150000px;}
.he{height:33.570000px;}
.ha{height:35.280000px;}
.h3{height:35.328000px;}
.h17{height:37.570000px;}
.h9{height:37.884000px;}
.h16{height:38.046000px;}
.h1e{height:39.720500px;}
.h1d{height:40.029300px;}
.h18{height:40.029900px;}
.hf{height:41.670000px;}
.h1a{height:41.910200px;}
.h13{height:41.990000px;}
.h11{height:42.522000px;}
.h1b{height:44.393500px;}
.h12{height:44.739300px;}
.h2{height:44.760000px;}
.h15{height:46.200000px;}
.h1f{height:47.226000px;}
.h10{height:48.527600px;}
.h1c{height:50.765625px;}
.h8{height:53.006400px;}
.h7{height:66.174000px;}
.h4{height:99.984375px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:106.299150px;}
.x9{left:118.713600px;}
.xa{left:120.346200px;}
.xf{left:127.559100px;}
.x5{left:131.811000px;}
.xd{left:145.011450px;}
.x6{left:166.455450px;}
.x10{left:170.134950px;}
.x7{left:172.080450px;}
.x8{left:177.201150px;}
.xc{left:271.407000px;}
.xb{left:304.962600px;}
.xe{left:328.419750px;}
.x2{left:445.299000px;}
.x3{left:525.935250px;}
.x1{left:599.315400px;}
@media print{
.v1{vertical-align:-17.600000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.600000pt;}
.v2{vertical-align:15.200000pt;}
.ls5d{letter-spacing:-11.968000pt;}
.lsc{letter-spacing:-11.660000pt;}
.lsb{letter-spacing:-11.440000pt;}
.ls61{letter-spacing:-9.248000pt;}
.ls6e{letter-spacing:-9.010000pt;}
.ls62{letter-spacing:-8.908000pt;}
.ls60{letter-spacing:-8.398000pt;}
.ls17{letter-spacing:-8.160000pt;}
.ls16{letter-spacing:-7.950000pt;}
.ls1f{letter-spacing:-7.860000pt;}
.ls22{letter-spacing:-7.800000pt;}
.ls6f{letter-spacing:-7.752000pt;}
.ls5f{letter-spacing:-7.140000pt;}
.ls21{letter-spacing:-6.840000pt;}
.ls70{letter-spacing:-6.732000pt;}
.ls5e{letter-spacing:-6.528000pt;}
.ls20{letter-spacing:-6.120000pt;}
.ls1e{letter-spacing:-5.760000pt;}
.lsa{letter-spacing:-2.816000pt;}
.ls24{letter-spacing:-0.760000pt;}
.ls32{letter-spacing:-0.506667pt;}
.ls5a{letter-spacing:-0.354667pt;}
.ls5b{letter-spacing:-0.329333pt;}
.ls18{letter-spacing:-0.253333pt;}
.ls23{letter-spacing:-0.202667pt;}
.ls59{letter-spacing:-0.164667pt;}
.ls50{letter-spacing:-0.152000pt;}
.ls31{letter-spacing:-0.101333pt;}
.ls51{letter-spacing:-0.098800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.001067pt;}
.ls3b{letter-spacing:0.001600pt;}
.ls6c{letter-spacing:0.024000pt;}
.ls6d{letter-spacing:0.034000pt;}
.ls49{letter-spacing:0.045333pt;}
.lse{letter-spacing:0.050667pt;}
.ls38{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.101333pt;}
.ls33{letter-spacing:0.101600pt;}
.ls52{letter-spacing:0.104000pt;}
.ls4f{letter-spacing:0.120000pt;}
.ls2c{letter-spacing:0.129333pt;}
.ls54{letter-spacing:0.136000pt;}
.ls10{letter-spacing:0.152000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls76{letter-spacing:0.170000pt;}
.ls75{letter-spacing:0.174933pt;}
.ls47{letter-spacing:0.181333pt;}
.ls4b{letter-spacing:0.197600pt;}
.ls3{letter-spacing:0.200000pt;}
.ls1a{letter-spacing:0.202667pt;}
.ls46{letter-spacing:0.226667pt;}
.ls35{letter-spacing:0.253333pt;}
.ls71{letter-spacing:0.262400pt;}
.ls77{letter-spacing:0.266667pt;}
.ls53{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.280000pt;}
.ls2d{letter-spacing:0.296800pt;}
.ls2{letter-spacing:0.298667pt;}
.ls13{letter-spacing:0.304000pt;}
.ls1b{letter-spacing:0.317333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.329333pt;}
.ls68{letter-spacing:0.331200pt;}
.ls69{letter-spacing:0.340000pt;}
.ls11{letter-spacing:0.354667pt;}
.ls8{letter-spacing:0.360000pt;}
.ls4d{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.400000pt;}
.ls36{letter-spacing:0.405333pt;}
.ls4e{letter-spacing:0.408000pt;}
.ls6a{letter-spacing:0.426667pt;}
.ls5c{letter-spacing:0.453333pt;}
.ls12{letter-spacing:0.456000pt;}
.ls3e{letter-spacing:0.466667pt;}
.ls42{letter-spacing:0.467200pt;}
.ls15{letter-spacing:0.506667pt;}
.ls6b{letter-spacing:0.540800pt;}
.ls48{letter-spacing:0.544000pt;}
.ls27{letter-spacing:0.557333pt;}
.ls1c{letter-spacing:0.589333pt;}
.ls26{letter-spacing:0.608000pt;}
.ls4c{letter-spacing:0.658667pt;}
.ls14{letter-spacing:0.709333pt;}
.ls7{letter-spacing:0.720000pt;}
.ls58{letter-spacing:0.725333pt;}
.ls2a{letter-spacing:0.760000pt;}
.ls1d{letter-spacing:0.770667pt;}
.ls2e{letter-spacing:0.810667pt;}
.ls67{letter-spacing:0.850000pt;}
.ls66{letter-spacing:0.857067pt;}
.ls30{letter-spacing:0.861333pt;}
.ls74{letter-spacing:0.906667pt;}
.ls72{letter-spacing:0.914133pt;}
.ls73{letter-spacing:0.918000pt;}
.ls29{letter-spacing:0.962667pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls57{letter-spacing:1.064000pt;}
.ls40{letter-spacing:1.114667pt;}
.ls2f{letter-spacing:1.165333pt;}
.ls37{letter-spacing:1.266667pt;}
.ls65{letter-spacing:1.269333pt;}
.ls56{letter-spacing:1.368000pt;}
.ls41{letter-spacing:1.418667pt;}
.ls25{letter-spacing:1.520000pt;}
.ls28{letter-spacing:1.621333pt;}
.ls3f{letter-spacing:1.702933pt;}
.ls55{letter-spacing:2.026667pt;}
.ls43{letter-spacing:2.070400pt;}
.ls3c{letter-spacing:2.277867pt;}
.ls4a{letter-spacing:2.324800pt;}
.ls39{letter-spacing:3.170667pt;}
.ls3a{letter-spacing:3.171200pt;}
.ls45{letter-spacing:4.947733pt;}
.ls63{letter-spacing:5.349333pt;}
.ls64{letter-spacing:6.392000pt;}
.ls1{letter-spacing:8.880000pt;}
.ls0{letter-spacing:9.472000pt;}
.ls19{letter-spacing:1134.789333pt;}
.lsd{letter-spacing:1337.876800pt;}
.ws47{word-spacing:-50.666667pt;}
.ws4b{word-spacing:-40.000000pt;}
.ws0{word-spacing:-29.184000pt;}
.ws32{word-spacing:-24.978667pt;}
.ws12{word-spacing:-24.693333pt;}
.ws48{word-spacing:-24.573333pt;}
.ws49{word-spacing:-24.472000pt;}
.ws5d{word-spacing:-24.269333pt;}
.ws37{word-spacing:-24.218667pt;}
.ws1e{word-spacing:-24.168000pt;}
.ws4e{word-spacing:-24.117333pt;}
.ws3f{word-spacing:-24.066667pt;}
.ws36{word-spacing:-24.016000pt;}
.ws33{word-spacing:-23.965333pt;}
.ws1a{word-spacing:-23.914667pt;}
.ws40{word-spacing:-23.864000pt;}
.ws45{word-spacing:-23.813333pt;}
.ws1c{word-spacing:-23.762667pt;}
.ws42{word-spacing:-23.712000pt;}
.ws29{word-spacing:-23.661333pt;}
.ws19{word-spacing:-23.610667pt;}
.ws18{word-spacing:-23.560000pt;}
.ws15{word-spacing:-23.509333pt;}
.ws14{word-spacing:-23.458667pt;}
.ws57{word-spacing:-23.357333pt;}
.ws50{word-spacing:-23.306667pt;}
.ws28{word-spacing:-23.256000pt;}
.ws1f{word-spacing:-23.205333pt;}
.ws3c{word-spacing:-22.952000pt;}
.ws2a{word-spacing:-22.698667pt;}
.ws70{word-spacing:-21.896000pt;}
.ws5b{word-spacing:-21.850667pt;}
.ws59{word-spacing:-21.714667pt;}
.ws64{word-spacing:-21.533333pt;}
.ws5c{word-spacing:-21.442667pt;}
.ws4f{word-spacing:-21.397333pt;}
.ws2b{word-spacing:-21.306667pt;}
.ws56{word-spacing:-21.261333pt;}
.ws72{word-spacing:-21.170667pt;}
.ws55{word-spacing:-21.125333pt;}
.ws4c{word-spacing:-21.034667pt;}
.ws2e{word-spacing:-20.989333pt;}
.wsc{word-spacing:-19.240000pt;}
.wsb{word-spacing:-18.920000pt;}
.wsd{word-spacing:-18.880000pt;}
.wsa{word-spacing:-18.720000pt;}
.ws44{word-spacing:-18.680000pt;}
.ws54{word-spacing:-18.640000pt;}
.ws31{word-spacing:-18.520000pt;}
.ws6{word-spacing:-17.285333pt;}
.ws58{word-spacing:-16.973333pt;}
.ws3{word-spacing:-16.837333pt;}
.ws4a{word-spacing:-15.577467pt;}
.ws5a{word-spacing:-15.504000pt;}
.ws4d{word-spacing:-15.445733pt;}
.ws3d{word-spacing:-15.352000pt;}
.ws16{word-spacing:-15.248133pt;}
.ws35{word-spacing:-15.149333pt;}
.ws34{word-spacing:-15.048000pt;}
.ws3b{word-spacing:-14.997333pt;}
.ws43{word-spacing:-14.946667pt;}
.ws46{word-spacing:-14.896000pt;}
.ws1d{word-spacing:-14.845333pt;}
.ws41{word-spacing:-14.592000pt;}
.ws1b{word-spacing:-14.541333pt;}
.ws66{word-spacing:-13.872000pt;}
.ws2d{word-spacing:-13.781333pt;}
.ws67{word-spacing:-13.645333pt;}
.ws2c{word-spacing:-13.010667pt;}
.ws51{word-spacing:-12.142000pt;}
.ws20{word-spacing:-12.038000pt;}
.ws9{word-spacing:-11.760000pt;}
.ws3a{word-spacing:-11.680000pt;}
.ws53{word-spacing:-11.600000pt;}
.wsf{word-spacing:-11.480000pt;}
.ws2{word-spacing:-10.944267pt;}
.ws7{word-spacing:-10.714667pt;}
.ws6f{word-spacing:-10.676000pt;}
.ws65{word-spacing:-10.608000pt;}
.ws27{word-spacing:-10.378667pt;}
.ws6c{word-spacing:-10.302000pt;}
.ws39{word-spacing:-10.200000pt;}
.ws3e{word-spacing:-10.160000pt;}
.ws6a{word-spacing:-10.098000pt;}
.ws52{word-spacing:-10.080000pt;}
.ws6e{word-spacing:-10.030000pt;}
.ws21{word-spacing:-10.000000pt;}
.ws71{word-spacing:-9.928000pt;}
.ws6d{word-spacing:-9.792000pt;}
.ws17{word-spacing:-9.451867pt;}
.ws8{word-spacing:-9.337544pt;}
.ws2f{word-spacing:-8.456933pt;}
.ws1{word-spacing:-8.288000pt;}
.ws30{word-spacing:-7.462000pt;}
.ws13{word-spacing:-0.037333pt;}
.wse{word-spacing:0.000000pt;}
.ws22{word-spacing:2.910000pt;}
.ws5f{word-spacing:3.298000pt;}
.ws24{word-spacing:3.630000pt;}
.ws6b{word-spacing:4.114000pt;}
.ws60{word-spacing:4.522000pt;}
.ws25{word-spacing:5.070000pt;}
.ws69{word-spacing:5.746000pt;}
.ws26{word-spacing:6.990000pt;}
.ws61{word-spacing:7.038000pt;}
.ws23{word-spacing:7.110000pt;}
.ws10{word-spacing:7.290000pt;}
.ws11{word-spacing:7.710000pt;}
.ws63{word-spacing:8.057600pt;}
.ws68{word-spacing:8.262000pt;}
.ws62{word-spacing:8.738000pt;}
.ws4{word-spacing:10.252000pt;}
.ws5{word-spacing:10.692000pt;}
.ws5e{word-spacing:14.178000pt;}
.ws38{word-spacing:16.618667pt;}
._e{margin-left:-253.849333pt;}
._c{margin-left:-11.480000pt;}
._6{margin-left:-10.378667pt;}
._1{margin-left:-9.477867pt;}
._f{margin-left:-6.402800pt;}
._d{margin-left:-5.374000pt;}
._8{margin-left:-0.978526pt;}
._2{width:1.408000pt;}
._4{width:3.066133pt;}
._5{width:4.173867pt;}
._a{width:5.376000pt;}
._7{width:6.902456pt;}
._9{width:7.984281pt;}
._b{width:9.362161pt;}
._3{width:10.378133pt;}
._0{width:11.861333pt;}
.fsd{font-size:26.000000pt;}
.fsf{font-size:29.466667pt;}
.fsa{font-size:30.000000pt;}
.fsc{font-size:32.933333pt;}
.fs10{font-size:34.000000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:38.133333pt;}
.fs4{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:44.000000pt;}
.fse{font-size:45.333333pt;}
.fsb{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:64.250267pt;}
.y1{bottom:64.250533pt;}
.y30{bottom:64.252933pt;}
.y26f{bottom:64.255600pt;}
.yb{bottom:98.266000pt;}
.yc7{bottom:98.266133pt;}
.y23f{bottom:98.268533pt;}
.y82{bottom:98.268667pt;}
.y296{bottom:98.271200pt;}
.y123{bottom:98.566933pt;}
.y2c1{bottom:98.630533pt;}
.y2f2{bottom:98.947867pt;}
.y59{bottom:101.268533pt;}
.y196{bottom:101.268667pt;}
.ya{bottom:108.932667pt;}
.ya8{bottom:111.059333pt;}
.yc6{bottom:111.059467pt;}
.y23e{bottom:111.061867pt;}
.y81{bottom:111.062000pt;}
.y2c0{bottom:112.781733pt;}
.y2f1{bottom:113.099200pt;}
.y1b6{bottom:114.059333pt;}
.ydc{bottom:114.059467pt;}
.y174{bottom:114.062000pt;}
.y295{bottom:114.064533pt;}
.y101{bottom:114.133467pt;}
.y122{bottom:114.208267pt;}
.y9{bottom:123.378933pt;}
.ya7{bottom:123.852667pt;}
.yc5{bottom:123.852800pt;}
.y23d{bottom:123.855200pt;}
.y80{bottom:123.855333pt;}
.y130{bottom:126.852667pt;}
.y14a{bottom:126.855333pt;}
.y2bf{bottom:126.933200pt;}
.y2f0{bottom:127.250533pt;}
.y121{bottom:129.849600pt;}
.y100{bottom:130.000800pt;}
.y12f{bottom:136.646000pt;}
.y7f{bottom:136.648667pt;}
.y8{bottom:137.825067pt;}
.ya6{bottom:139.646000pt;}
.yc4{bottom:139.646133pt;}
.y23c{bottom:139.648533pt;}
.y2be{bottom:141.084533pt;}
.y2ef{bottom:141.401867pt;}
.y58{bottom:142.809467pt;}
.y195{bottom:143.810000pt;}
.y120{bottom:145.490933pt;}
.yff{bottom:145.868133pt;}
.y205{bottom:149.439333pt;}
.y1d4{bottom:149.439467pt;}
.y23b{bottom:149.441867pt;}
.y149{bottom:149.442000pt;}
.y12e{bottom:152.439333pt;}
.y7e{bottom:152.442000pt;}
.y7{bottom:153.433067pt;}
.y2bd{bottom:155.235733pt;}
.y2ee{bottom:155.553200pt;}
.y21b{bottom:156.901333pt;}
.y57{bottom:158.450800pt;}
.y194{bottom:159.451333pt;}
.y11f{bottom:161.132267pt;}
.y12d{bottom:162.232667pt;}
.y1d3{bottom:162.232800pt;}
.y23a{bottom:162.235200pt;}
.y148{bottom:162.235333pt;}
.y6{bottom:163.371733pt;}
.y165{bottom:165.235333pt;}
.ydb{bottom:167.271867pt;}
.y294{bottom:167.272133pt;}
.y2bc{bottom:169.387200pt;}
.yfe{bottom:169.555333pt;}
.y2ed{bottom:169.704533pt;}
.y21a{bottom:172.542667pt;}
.y1e3{bottom:172.575867pt;}
.y56{bottom:174.092133pt;}
.y12c{bottom:175.026000pt;}
.y239{bottom:175.028533pt;}
.y147{bottom:175.028667pt;}
.y193{bottom:175.092667pt;}
.y11e{bottom:176.773467pt;}
.y5{bottom:177.089867pt;}
.y204{bottom:178.026000pt;}
.y1d2{bottom:178.026133pt;}
.yda{bottom:182.913200pt;}
.y293{bottom:182.913467pt;}
.y2bb{bottom:183.538533pt;}
.y2ec{bottom:183.855867pt;}
.yfd{bottom:185.422667pt;}
.y1e2{bottom:186.786533pt;}
.y4{bottom:187.028667pt;}
.y1b5{bottom:187.819333pt;}
.y238{bottom:187.821867pt;}
.y146{bottom:187.822000pt;}
.y219{bottom:188.184000pt;}
.y55{bottom:189.733467pt;}
.yc3{bottom:190.733067pt;}
.y192{bottom:190.734000pt;}
.y12b{bottom:190.819333pt;}
.ya5{bottom:192.414800pt;}
.y2ba{bottom:197.689733pt;}
.y2eb{bottom:198.007200pt;}
.y173{bottom:198.550533pt;}
.yd9{bottom:198.554533pt;}
.y292{bottom:198.554667pt;}
.y26d{bottom:200.612667pt;}
.y1e1{bottom:200.997200pt;}
.yfc{bottom:201.290133pt;}
.y1b4{bottom:203.612667pt;}
.y237{bottom:203.615200pt;}
.y145{bottom:203.615333pt;}
.y218{bottom:203.825333pt;}
.y54{bottom:205.374800pt;}
.y164{bottom:206.370400pt;}
.y250{bottom:206.371067pt;}
.yc2{bottom:206.374400pt;}
.y191{bottom:206.375333pt;}
.ya4{bottom:208.056133pt;}
.y7d{bottom:208.565067pt;}
.y2b9{bottom:211.841200pt;}
.y2ea{bottom:212.158533pt;}
.y26c{bottom:213.406000pt;}
.y172{bottom:214.191867pt;}
.y291{bottom:214.196000pt;}
.y1e0{bottom:215.207867pt;}
.yfb{bottom:217.157467pt;}
.y2c{bottom:217.321067pt;}
.y217{bottom:219.466667pt;}
.y53{bottom:221.016000pt;}
.y1d1{bottom:221.345867pt;}
.y163{bottom:222.011733pt;}
.y24f{bottom:222.012400pt;}
.yc1{bottom:222.015733pt;}
.y190{bottom:222.016667pt;}
.y7c{bottom:222.775733pt;}
.ya3{bottom:223.697467pt;}
.y203{bottom:224.377867pt;}
.y2b8{bottom:225.992533pt;}
.y236{bottom:226.201867pt;}
.y2e9{bottom:226.309867pt;}
.y26b{bottom:229.199333pt;}
.y1df{bottom:229.418533pt;}
.y171{bottom:229.833200pt;}
.y290{bottom:229.837333pt;}
.y2b{bottom:230.114400pt;}
.yfa{bottom:233.024800pt;}
.y216{bottom:235.107867pt;}
.y7b{bottom:236.986400pt;}
.y1d0{bottom:236.987200pt;}
.y162{bottom:237.653067pt;}
.y24e{bottom:237.653733pt;}
.yc0{bottom:237.657067pt;}
.y18f{bottom:237.657867pt;}
.ya2{bottom:239.338800pt;}
.y202{bottom:240.019200pt;}
.y2b7{bottom:240.143733pt;}
.y2e8{bottom:240.461200pt;}
.y52{bottom:241.192800pt;}
.y2a{bottom:242.907733pt;}
.y1de{bottom:243.629200pt;}
.y235{bottom:245.042400pt;}
.y170{bottom:245.474533pt;}
.y28f{bottom:245.478667pt;}
.yf9{bottom:248.892133pt;}
.y215{bottom:250.749200pt;}
.y7a{bottom:251.197067pt;}
.y11d{bottom:252.072000pt;}
.y161{bottom:253.294400pt;}
.y24d{bottom:253.295067pt;}
.yd8{bottom:253.298267pt;}
.ybf{bottom:253.298400pt;}
.y18e{bottom:253.299200pt;}
.y1b3{bottom:254.057467pt;}
.y2b6{bottom:254.295200pt;}
.y2e7{bottom:254.612533pt;}
.y201{bottom:255.660533pt;}
.y29{bottom:255.701067pt;}
.y51{bottom:256.834133pt;}
.y144{bottom:256.924667pt;}
.y234{bottom:257.835733pt;}
.y1dd{bottom:257.839867pt;}
.y1cf{bottom:260.448400pt;}
.y16f{bottom:261.115867pt;}
.y28e{bottom:261.120000pt;}
.yf8{bottom:264.759467pt;}
.y79{bottom:265.407733pt;}
.y214{bottom:266.390533pt;}
.y2b5{bottom:268.446533pt;}
.y28{bottom:268.494400pt;}
.y2e6{bottom:268.763867pt;}
.y160{bottom:268.935733pt;}
.y24c{bottom:268.936267pt;}
.yd7{bottom:268.939600pt;}
.y18d{bottom:268.940533pt;}
.y1b2{bottom:269.698800pt;}
.ya1{bottom:270.619733pt;}
.y233{bottom:270.629067pt;}
.y200{bottom:271.301867pt;}
.y1dc{bottom:272.050533pt;}
.y50{bottom:272.475467pt;}
.y143{bottom:272.565867pt;}
.y1ce{bottom:276.089600pt;}
.y16e{bottom:276.757200pt;}
.y28d{bottom:276.761333pt;}
.y78{bottom:279.618400pt;}
.yf7{bottom:280.626933pt;}
.y26a{bottom:281.145600pt;}
.y27{bottom:281.287733pt;}
.y213{bottom:282.031867pt;}
.y2b4{bottom:282.597867pt;}
.y2e5{bottom:282.915200pt;}
.y232{bottom:283.422400pt;}
.y15f{bottom:284.576933pt;}
.y24b{bottom:284.577600pt;}
.ybe{bottom:284.579333pt;}
.yd6{bottom:284.580933pt;}
.y18c{bottom:284.581867pt;}
.y1b1{bottom:285.340133pt;}
.ya0{bottom:286.261067pt;}
.y1ff{bottom:286.943200pt;}
.y4f{bottom:288.116800pt;}
.y142{bottom:288.207200pt;}
.y1cd{bottom:291.730933pt;}
.y16d{bottom:292.398400pt;}
.y28c{bottom:292.402667pt;}
.y77{bottom:293.829067pt;}
.y26{bottom:294.081067pt;}
.yf6{bottom:296.494267pt;}
.y2b3{bottom:296.749200pt;}
.y269{bottom:296.786933pt;}
.y2e4{bottom:297.066533pt;}
.y212{bottom:297.673200pt;}
.y231{bottom:299.215733pt;}
.y11c{bottom:300.217333pt;}
.y15e{bottom:300.218267pt;}
.y24a{bottom:300.218933pt;}
.y18b{bottom:300.223200pt;}
.y1b0{bottom:300.981333pt;}
.y1db{bottom:301.900800pt;}
.y9f{bottom:301.902400pt;}
.y4e{bottom:303.758000pt;}
.y141{bottom:303.848533pt;}
.y25{bottom:306.874400pt;}
.y1cc{bottom:307.372267pt;}
.y16c{bottom:308.039733pt;}
.y28b{bottom:308.044000pt;}
.y2b2{bottom:310.900533pt;}
.y2e3{bottom:311.217867pt;}
.y268{bottom:312.428267pt;}
.y211{bottom:313.314533pt;}
.y11b{bottom:315.858667pt;}
.y15d{bottom:315.859600pt;}
.y249{bottom:315.860267pt;}
.ybd{bottom:315.860400pt;}
.yd5{bottom:315.862000pt;}
.y18a{bottom:315.864533pt;}
.y1af{bottom:316.622667pt;}
.y1da{bottom:317.542133pt;}
.y9e{bottom:317.543733pt;}
.y1fe{bottom:318.224133pt;}
.y4d{bottom:319.399333pt;}
.y140{bottom:319.489867pt;}
.y24{bottom:319.667733pt;}
.yf5{bottom:320.181467pt;}
.y1cb{bottom:323.013600pt;}
.y76{bottom:323.679467pt;}
.y28a{bottom:323.685200pt;}
.y2b1{bottom:325.051733pt;}
.y2e2{bottom:325.369200pt;}
.y11a{bottom:331.499867pt;}
.y15c{bottom:331.500933pt;}
.y248{bottom:331.501600pt;}
.ybc{bottom:331.501733pt;}
.y23{bottom:332.461067pt;}
.y1d9{bottom:333.183467pt;}
.y4c{bottom:335.040667pt;}
.y13f{bottom:335.131200pt;}
.yf4{bottom:336.048800pt;}
.y210{bottom:336.775733pt;}
.y1ca{bottom:338.654933pt;}
.y2b0{bottom:339.203200pt;}
.y75{bottom:339.320800pt;}
.y189{bottom:339.325733pt;}
.y289{bottom:339.326533pt;}
.y2e1{bottom:339.520533pt;}
.y1ae{bottom:340.083867pt;}
.y267{bottom:343.709200pt;}
.y230{bottom:346.572667pt;}
.y119{bottom:347.141200pt;}
.y15b{bottom:347.142267pt;}
.ybb{bottom:347.142933pt;}
.y9d{bottom:348.824800pt;}
.y4b{bottom:350.682000pt;}
.y13e{bottom:350.772533pt;}
.yf3{bottom:351.916133pt;}
.y20f{bottom:352.416933pt;}
.y2af{bottom:353.354533pt;}
.y2e0{bottom:353.671867pt;}
.y1c9{bottom:354.296267pt;}
.y74{bottom:354.962133pt;}
.y188{bottom:354.967067pt;}
.y288{bottom:354.967867pt;}
.y1ad{bottom:355.725200pt;}
.y266{bottom:357.919867pt;}
.y22f{bottom:360.783333pt;}
.y118{bottom:362.782533pt;}
.y15a{bottom:362.783600pt;}
.yba{bottom:362.784267pt;}
.y9c{bottom:364.466133pt;}
.y1fd{bottom:365.144800pt;}
.y4a{bottom:366.323333pt;}
.y2ae{bottom:367.505867pt;}
.yf2{bottom:367.783467pt;}
.y2df{bottom:367.823200pt;}
.y20e{bottom:368.058267pt;}
.y1c8{bottom:369.937600pt;}
.y187{bottom:370.608267pt;}
.y1ac{bottom:371.366533pt;}
.y265{bottom:372.130533pt;}
.y22e{bottom:374.994000pt;}
.y1d8{bottom:377.199333pt;}
.y22{bottom:377.996933pt;}
.y73{bottom:378.423200pt;}
.y117{bottom:378.423867pt;}
.y159{bottom:378.424933pt;}
.yb9{bottom:378.425600pt;}
.y287{bottom:378.429067pt;}
.y9b{bottom:380.107467pt;}
.y1fc{bottom:380.786133pt;}
.y2ad{bottom:381.657200pt;}
.y49{bottom:381.964667pt;}
.y2de{bottom:381.974533pt;}
.y13d{bottom:382.053467pt;}
.yf1{bottom:383.650800pt;}
.y20d{bottom:383.699600pt;}
.y186{bottom:386.249600pt;}
.y264{bottom:386.341200pt;}
.y1ab{bottom:387.007867pt;}
.y22d{bottom:389.204667pt;}
.y21{bottom:389.368933pt;}
.y1c7{bottom:393.398667pt;}
.y72{bottom:394.064533pt;}
.y116{bottom:394.065200pt;}
.y158{bottom:394.066267pt;}
.y247{bottom:394.066800pt;}
.yb8{bottom:394.066933pt;}
.y286{bottom:394.070400pt;}
.y2ac{bottom:395.808533pt;}
.y2dd{bottom:396.125867pt;}
.y13c{bottom:396.264133pt;}
.y1fb{bottom:396.427467pt;}
.y48{bottom:397.606000pt;}
.y20c{bottom:399.340933pt;}
.yf0{bottom:399.518133pt;}
.y263{bottom:400.551867pt;}
.y16b{bottom:401.886000pt;}
.y185{bottom:401.890933pt;}
.y1aa{bottom:402.649067pt;}
.y22c{bottom:403.415333pt;}
.y20{bottom:407.846400pt;}
.y9a{bottom:408.482000pt;}
.y1c6{bottom:409.040000pt;}
.y71{bottom:409.705867pt;}
.y115{bottom:409.706533pt;}
.y157{bottom:409.707467pt;}
.y246{bottom:409.708133pt;}
.yb7{bottom:409.708267pt;}
.y285{bottom:409.711733pt;}
.y2ab{bottom:409.959733pt;}
.y2dc{bottom:410.277200pt;}
.y13b{bottom:410.474800pt;}
.y1fa{bottom:412.068800pt;}
.y47{bottom:413.247333pt;}
.y262{bottom:414.762533pt;}
.y20b{bottom:414.982267pt;}
.yef{bottom:415.385600pt;}
.y16a{bottom:417.527333pt;}
.y22b{bottom:417.626000pt;}
.y1a9{bottom:418.290400pt;}
.y1f{bottom:419.218400pt;}
.y2aa{bottom:424.111067pt;}
.y2db{bottom:424.428533pt;}
.y1c5{bottom:424.681333pt;}
.y13a{bottom:424.685467pt;}
.y1d7{bottom:425.344667pt;}
.y70{bottom:425.347200pt;}
.y114{bottom:425.347867pt;}
.y245{bottom:425.349467pt;}
.yb6{bottom:425.349600pt;}
.y184{bottom:425.352133pt;}
.y284{bottom:425.352933pt;}
.y1f9{bottom:427.710133pt;}
.y46{bottom:428.888533pt;}
.y261{bottom:428.973200pt;}
.y1e{bottom:430.590400pt;}
.y20a{bottom:430.623600pt;}
.yee{bottom:431.252933pt;}
.y156{bottom:433.168667pt;}
.y1a8{bottom:433.931733pt;}
.y2a9{bottom:438.262533pt;}
.y2da{bottom:438.579867pt;}
.y139{bottom:438.896133pt;}
.y1c4{bottom:440.322667pt;}
.y1d6{bottom:440.985867pt;}
.y6f{bottom:440.988533pt;}
.y113{bottom:440.989200pt;}
.y244{bottom:440.990800pt;}
.yd4{bottom:440.990933pt;}
.y183{bottom:440.993467pt;}
.y283{bottom:440.994267pt;}
.y1d{bottom:441.962400pt;}
.y260{bottom:443.183867pt;}
.y1f8{bottom:443.351467pt;}
.y45{bottom:444.529867pt;}
.y209{bottom:446.264933pt;}
.yed{bottom:447.120267pt;}
.y22a{bottom:447.476400pt;}
.y12a{bottom:448.807333pt;}
.y155{bottom:448.810000pt;}
.y1a7{bottom:449.573067pt;}
.y2a8{bottom:452.413867pt;}
.y2d9{bottom:452.731200pt;}
.y138{bottom:453.106800pt;}
.y1c{bottom:453.334400pt;}
.y1c3{bottom:455.964000pt;}
.y99{bottom:456.627200pt;}
.y6e{bottom:456.629867pt;}
.y112{bottom:456.630400pt;}
.yb5{bottom:456.630533pt;}
.yd3{bottom:456.632267pt;}
.y182{bottom:456.634667pt;}
.y282{bottom:456.635600pt;}
.y25f{bottom:457.394533pt;}
.y1f7{bottom:458.992800pt;}
.y44{bottom:460.171200pt;}
.y208{bottom:461.906267pt;}
.yec{bottom:462.987600pt;}
.y229{bottom:463.117733pt;}
.y129{bottom:464.448667pt;}
.y154{bottom:464.451333pt;}
.y243{bottom:464.452000pt;}
.y1b{bottom:464.706400pt;}
.y1a6{bottom:465.214400pt;}
.y2a7{bottom:466.565200pt;}
.y2d8{bottom:466.882533pt;}
.y137{bottom:467.317467pt;}
.y1c2{bottom:471.605333pt;}
.y98{bottom:472.268533pt;}
.y6d{bottom:472.271200pt;}
.y111{bottom:472.271733pt;}
.yd2{bottom:472.273467pt;}
.y181{bottom:472.276000pt;}
.y281{bottom:472.276933pt;}
.y1f6{bottom:474.634133pt;}
.y43{bottom:475.812533pt;}
.y1a{bottom:476.078400pt;}
.y207{bottom:477.547467pt;}
.y228{bottom:478.758933pt;}
.yeb{bottom:478.854933pt;}
.y128{bottom:480.090000pt;}
.y153{bottom:480.092667pt;}
.y242{bottom:480.093333pt;}
.y2a6{bottom:480.716533pt;}
.y1a5{bottom:480.855733pt;}
.y2d7{bottom:481.033867pt;}
.y136{bottom:481.528133pt;}
.y25e{bottom:487.244933pt;}
.y1c1{bottom:487.246667pt;}
.y97{bottom:487.909867pt;}
.y6c{bottom:487.912533pt;}
.y110{bottom:487.913067pt;}
.y180{bottom:487.917333pt;}
.y280{bottom:487.918267pt;}
.y1f5{bottom:490.275333pt;}
.y42{bottom:491.453867pt;}
.y206{bottom:493.188800pt;}
.y227{bottom:494.400267pt;}
.yea{bottom:494.722267pt;}
.y2a5{bottom:494.867733pt;}
.y2d6{bottom:495.185200pt;}
.y127{bottom:495.731333pt;}
.y169{bottom:495.733867pt;}
.yd1{bottom:495.734667pt;}
.y1a4{bottom:496.497067pt;}
.y19{bottom:501.661467pt;}
.y25d{bottom:502.886267pt;}
.y96{bottom:503.551200pt;}
.yb4{bottom:503.551333pt;}
.y6b{bottom:503.553733pt;}
.y10f{bottom:503.554400pt;}
.y17f{bottom:503.558667pt;}
.y27f{bottom:503.559600pt;}
.y1f4{bottom:505.916667pt;}
.y2d5{bottom:509.336533pt;}
.y226{bottom:510.041600pt;}
.ye9{bottom:510.589733pt;}
.y1c0{bottom:510.707733pt;}
.y126{bottom:511.372667pt;}
.y168{bottom:511.375200pt;}
.yd0{bottom:511.376000pt;}
.y135{bottom:511.378533pt;}
.y41{bottom:511.630667pt;}
.y18{bottom:513.033467pt;}
.y25c{bottom:518.527600pt;}
.y95{bottom:519.192533pt;}
.y6a{bottom:519.195067pt;}
.y10e{bottom:519.195733pt;}
.y17e{bottom:519.200000pt;}
.y1a3{bottom:519.958133pt;}
.y2d4{bottom:523.487867pt;}
.y2a4{bottom:524.658800pt;}
.y225{bottom:525.682933pt;}
.y1bf{bottom:526.349067pt;}
.y167{bottom:527.016533pt;}
.y241{bottom:527.017200pt;}
.ycf{bottom:527.017333pt;}
.y134{bottom:527.019867pt;}
.y27e{bottom:527.020800pt;}
.y40{bottom:527.271867pt;}
.y1f3{bottom:529.377867pt;}
.y17{bottom:531.510933pt;}
.y25b{bottom:534.168800pt;}
.y94{bottom:534.833867pt;}
.y69{bottom:534.836400pt;}
.y10d{bottom:534.837067pt;}
.y17d{bottom:534.841333pt;}
.y1a2{bottom:535.599467pt;}
.y2d3{bottom:537.639200pt;}
.y1be{bottom:541.990400pt;}
.y166{bottom:542.657867pt;}
.y240{bottom:542.658533pt;}
.yce{bottom:542.658667pt;}
.y133{bottom:542.661067pt;}
.y27d{bottom:542.662133pt;}
.y16{bottom:542.882933pt;}
.y3f{bottom:542.913200pt;}
.ye8{bottom:543.986533pt;}
.y1f2{bottom:545.019200pt;}
.y25a{bottom:549.810133pt;}
.y93{bottom:550.475200pt;}
.y68{bottom:550.477733pt;}
.y10c{bottom:550.478400pt;}
.y17c{bottom:550.482667pt;}
.y1a1{bottom:551.240800pt;}
.y2d2{bottom:551.790533pt;}
.y15{bottom:554.254933pt;}
.y224{bottom:556.964000pt;}
.y1bd{bottom:557.631733pt;}
.ycd{bottom:558.299867pt;}
.y132{bottom:558.302533pt;}
.y27c{bottom:558.303333pt;}
.y3e{bottom:558.554533pt;}
.y1f1{bottom:560.660533pt;}
.y259{bottom:565.451467pt;}
.y14{bottom:565.626933pt;}
.y2d1{bottom:565.941867pt;}
.y92{bottom:566.116400pt;}
.yb3{bottom:566.116533pt;}
.y152{bottom:566.119067pt;}
.y1a0{bottom:566.882133pt;}
.y67{bottom:573.938933pt;}
.y10b{bottom:573.939467pt;}
.ycc{bottom:573.941200pt;}
.y17b{bottom:573.943733pt;}
.y27b{bottom:573.944667pt;}
.y3d{bottom:574.195867pt;}
.y2a3{bottom:575.449733pt;}
.y1f0{bottom:576.301867pt;}
.y13{bottom:576.998933pt;}
.y223{bottom:578.280133pt;}
.y2d0{bottom:580.093200pt;}
.y258{bottom:581.092800pt;}
.y91{bottom:581.757733pt;}
.yb2{bottom:581.757867pt;}
.y151{bottom:581.760400pt;}
.y19f{bottom:582.523467pt;}
.y12{bottom:588.370933pt;}
.y1bc{bottom:588.912667pt;}
.y66{bottom:589.580267pt;}
.y10a{bottom:589.580800pt;}
.y131{bottom:589.583467pt;}
.y17a{bottom:589.585067pt;}
.y27a{bottom:589.586000pt;}
.y3c{bottom:589.837200pt;}
.y2a2{bottom:591.091067pt;}
.y1ef{bottom:591.943200pt;}
.y2cf{bottom:594.244533pt;}
.ye7{bottom:594.912800pt;}
.y257{bottom:596.734133pt;}
.y90{bottom:597.399067pt;}
.yb1{bottom:597.399200pt;}
.y150{bottom:597.401733pt;}
.ycb{bottom:597.402400pt;}
.y19e{bottom:598.164800pt;}
.y222{bottom:599.596267pt;}
.y11{bottom:599.742933pt;}
.y1bb{bottom:603.123333pt;}
.y65{bottom:605.221467pt;}
.y109{bottom:605.222133pt;}
.y179{bottom:605.226400pt;}
.y279{bottom:605.227333pt;}
.y3b{bottom:605.478533pt;}
.y2a1{bottom:606.732400pt;}
.y1ee{bottom:607.584533pt;}
.y2ce{bottom:608.395867pt;}
.ye6{bottom:610.780133pt;}
.y256{bottom:612.375467pt;}
.y125{bottom:613.040400pt;}
.yb0{bottom:613.040533pt;}
.y14f{bottom:613.043067pt;}
.yca{bottom:613.043733pt;}
.y19d{bottom:613.806133pt;}
.y221{bottom:613.806933pt;}
.y1ba{bottom:617.334000pt;}
.y8f{bottom:620.860267pt;}
.y64{bottom:620.862800pt;}
.y108{bottom:620.863467pt;}
.y178{bottom:620.867733pt;}
.y278{bottom:620.868667pt;}
.y3a{bottom:621.119867pt;}
.y2a0{bottom:622.373733pt;}
.y2cd{bottom:622.547200pt;}
.y1ed{bottom:623.225733pt;}
.ye5{bottom:626.647467pt;}
.y220{bottom:628.017600pt;}
.y124{bottom:628.681733pt;}
.yaf{bottom:628.681867pt;}
.y14e{bottom:628.684267pt;}
.yc9{bottom:628.685067pt;}
.y1b9{bottom:631.544667pt;}
.y8e{bottom:636.501600pt;}
.y63{bottom:636.504133pt;}
.y107{bottom:636.504800pt;}
.y177{bottom:636.509067pt;}
.y277{bottom:636.510000pt;}
.y2cc{bottom:636.698533pt;}
.y39{bottom:636.761200pt;}
.y29f{bottom:638.015067pt;}
.y1ec{bottom:638.867067pt;}
.y21f{bottom:642.228267pt;}
.ye4{bottom:642.514800pt;}
.y255{bottom:643.656400pt;}
.yae{bottom:644.323067pt;}
.y14d{bottom:644.325600pt;}
.y19c{bottom:645.087067pt;}
.y1b8{bottom:645.755333pt;}
.y2cb{bottom:650.849867pt;}
.y8d{bottom:652.142933pt;}
.y62{bottom:652.145467pt;}
.y106{bottom:652.146133pt;}
.y176{bottom:652.150400pt;}
.y29e{bottom:653.656267pt;}
.y1eb{bottom:654.508400pt;}
.y21e{bottom:656.438933pt;}
.y38{bottom:656.937867pt;}
.y254{bottom:657.867067pt;}
.ye3{bottom:658.382133pt;}
.y19b{bottom:659.297733pt;}
.yad{bottom:659.964400pt;}
.yc8{bottom:659.966000pt;}
.y14c{bottom:659.966933pt;}
.y10{bottom:662.274667pt;}
.y2ca{bottom:665.001200pt;}
.y8c{bottom:667.784133pt;}
.y61{bottom:667.786800pt;}
.y105{bottom:667.787333pt;}
.y276{bottom:667.790933pt;}
.y29d{bottom:669.297600pt;}
.y1ea{bottom:670.149733pt;}
.y21d{bottom:670.649600pt;}
.y253{bottom:672.077733pt;}
.y37{bottom:672.579200pt;}
.y19a{bottom:673.508400pt;}
.ye2{bottom:674.249467pt;}
.yac{bottom:675.605733pt;}
.y14b{bottom:675.608267pt;}
.y2c9{bottom:679.152533pt;}
.y8b{bottom:683.425600pt;}
.y60{bottom:683.428133pt;}
.y104{bottom:683.428667pt;}
.y175{bottom:683.431333pt;}
.y275{bottom:683.432267pt;}
.y21c{bottom:684.860400pt;}
.y29c{bottom:684.938933pt;}
.y1e9{bottom:685.791067pt;}
.y252{bottom:686.288400pt;}
.y199{bottom:687.719067pt;}
.yf{bottom:687.985333pt;}
.y36{bottom:688.220533pt;}
.ye1{bottom:690.116800pt;}
.y1d5{bottom:691.246933pt;}
.yab{bottom:691.247067pt;}
.y2c8{bottom:693.303867pt;}
.y8a{bottom:699.066800pt;}
.y5f{bottom:699.069467pt;}
.y103{bottom:699.070133pt;}
.y274{bottom:699.073600pt;}
.y251{bottom:700.499067pt;}
.y29b{bottom:700.580267pt;}
.y1e8{bottom:701.432400pt;}
.y198{bottom:701.929733pt;}
.y35{bottom:703.861867pt;}
.ye0{bottom:705.984267pt;}
.yaa{bottom:706.888400pt;}
.y2c7{bottom:707.455200pt;}
.y89{bottom:714.708133pt;}
.y5e{bottom:714.710800pt;}
.y273{bottom:714.715067pt;}
.y197{bottom:716.140400pt;}
.y29a{bottom:716.221467pt;}
.ye{bottom:716.279867pt;}
.y1e7{bottom:717.073600pt;}
.y34{bottom:719.503200pt;}
.y2c6{bottom:721.606533pt;}
.ydf{bottom:721.851600pt;}
.ya9{bottom:722.529600pt;}
.y88{bottom:730.349467pt;}
.y102{bottom:730.351067pt;}
.y5d{bottom:730.352000pt;}
.y299{bottom:731.862800pt;}
.y1e6{bottom:732.715067pt;}
.y33{bottom:735.144400pt;}
.y2c5{bottom:735.757867pt;}
.y1b7{bottom:738.170933pt;}
.yde{bottom:745.538800pt;}
.y87{bottom:745.990800pt;}
.y5c{bottom:745.993467pt;}
.y272{bottom:745.996000pt;}
.y298{bottom:747.504133pt;}
.y2c4{bottom:749.909200pt;}
.y32{bottom:750.785867pt;}
.yd{bottom:751.919600pt;}
.ydd{bottom:761.406133pt;}
.y86{bottom:761.632133pt;}
.y5b{bottom:761.634667pt;}
.y271{bottom:761.637333pt;}
.y1e5{bottom:763.996000pt;}
.y2c3{bottom:764.060533pt;}
.y31{bottom:775.876000pt;}
.y297{bottom:775.878533pt;}
.yc{bottom:775.919600pt;}
.y85{bottom:777.273467pt;}
.y5a{bottom:777.276000pt;}
.y270{bottom:777.278667pt;}
.y1e4{bottom:778.206667pt;}
.y2c2{bottom:778.211867pt;}
.y2{bottom:810.543467pt;}
.y83{bottom:812.806000pt;}
.y2f{bottom:812.808533pt;}
.y26e{bottom:812.811200pt;}
.y3{bottom:839.620400pt;}
.y2e{bottom:843.897733pt;}
.y2d{bottom:855.897733pt;}
.h19{height:19.153333pt;}
.h14{height:19.396000pt;}
.hc{height:27.502222pt;}
.h5{height:27.738667pt;}
.hb{height:27.850667pt;}
.h6{height:28.880000pt;}
.hd{height:29.466667pt;}
.he{height:29.840000pt;}
.ha{height:31.360000pt;}
.h3{height:31.402667pt;}
.h17{height:33.395556pt;}
.h9{height:33.674667pt;}
.h16{height:33.818667pt;}
.h1e{height:35.307111pt;}
.h1d{height:35.581600pt;}
.h18{height:35.582133pt;}
.hf{height:37.040000pt;}
.h1a{height:37.253511pt;}
.h13{height:37.324444pt;}
.h11{height:37.797333pt;}
.h1b{height:39.460889pt;}
.h12{height:39.768267pt;}
.h2{height:39.786667pt;}
.h15{height:41.066667pt;}
.h1f{height:41.978667pt;}
.h10{height:43.135644pt;}
.h1c{height:45.125000pt;}
.h8{height:47.116800pt;}
.h7{height:58.821333pt;}
.h4{height:88.875000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:94.488133pt;}
.x9{left:105.523200pt;}
.xa{left:106.974400pt;}
.xf{left:113.385867pt;}
.x5{left:117.165333pt;}
.xd{left:128.899067pt;}
.x6{left:147.960400pt;}
.x10{left:151.231067pt;}
.x7{left:152.960400pt;}
.x8{left:157.512133pt;}
.xc{left:241.250667pt;}
.xb{left:271.077867pt;}
.xe{left:291.928667pt;}
.x2{left:395.821333pt;}
.x3{left:467.498000pt;}
.x1{left:532.724800pt;}
}




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