
    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_9453279c0dfa75fe47da70c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4d51af2079321e7cb132c9f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936035;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_60e73a6c5413f08dae6cd9fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906250;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_ed9ac45ef333dbde7254dfa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_7289fc4f42a4506b0be381fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_1402d264986ed27916a4fa6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.991211;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_4ce451f5d1fa1c322a257575.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.884766;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_104fd6953938bd20cd59ae46.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_8dc2586ff693f3faf9b790cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.585840;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_48de702223ed54074eda2ca4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911621;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_3b2985f400ac21b3b8f37909.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712402;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_ccd9793ed7be7ba3f3a712c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887971;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_85313bb7e07c3fb6d7c19c24.woff2')format("woff");}.fff{font-family:fff;line-height:0.908691;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_d232fc492d42dc1c11e29f95.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.897461;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_bc584e7eeb2f8f7c38206df7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.906250;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_3ff8d02bfa3cf15243afeb16.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909668;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_5e9f908deb0e189bfb09c497.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911621;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_0876af5378ea2e2f6901bcdb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.909668;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_53c4d2cc5b3b4ca97ece09f2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.984863;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_8f4a2a93183af05180d19445.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.984863;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_5cad969a336f11af387f8686.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909668;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_b1e302b4c85af3856d3da884.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.720000;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_1d606da8530d2605f35b5128.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.044922;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_12ae0071d0264f8d25710af9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.908691;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;}
.m7{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v4{vertical-align:28.799820px;}
.v2{vertical-align:30.240000px;}
.v3{vertical-align:41.037948px;}
.ls43{letter-spacing:-4.789296px;}
.ls48{letter-spacing:-4.425264px;}
.ls18{letter-spacing:-4.355208px;}
.ls77{letter-spacing:-4.329864px;}
.ls6f{letter-spacing:-4.319640px;}
.ls9{letter-spacing:-4.260600px;}
.ls46{letter-spacing:-4.055544px;}
.ls75{letter-spacing:-3.966912px;}
.ls73{letter-spacing:-3.961800px;}
.ls1{letter-spacing:-3.960000px;}
.ls42{letter-spacing:-3.685824px;}
.ls74{letter-spacing:-3.603960px;}
.ls72{letter-spacing:-3.598848px;}
.ls2{letter-spacing:-3.595500px;}
.ls2f{letter-spacing:-3.321792px;}
.ls22{letter-spacing:-3.316104px;}
.ls1a{letter-spacing:-3.297996px;}
.lsd{letter-spacing:-3.246120px;}
.ls26{letter-spacing:-2.952072px;}
.ls21{letter-spacing:-2.946384px;}
.ls1c{letter-spacing:-2.931552px;}
.ls3{letter-spacing:-2.884500px;}
.ls68{letter-spacing:-2.883168px;}
.ls69{letter-spacing:-2.878056px;}
.ls3a{letter-spacing:-2.815560px;}
.ls39{letter-spacing:-2.798496px;}
.ls2d{letter-spacing:-2.718864px;}
.ls23{letter-spacing:-2.582352px;}
.ls24{letter-spacing:-2.576664px;}
.ls25{letter-spacing:-2.565288px;}
.ls19{letter-spacing:-2.565108px;}
.ls6c{letter-spacing:-2.525328px;}
.ls6d{letter-spacing:-2.520216px;}
.ls6{letter-spacing:-2.519100px;}
.ls3b{letter-spacing:-2.518488px;}
.ls56{letter-spacing:-2.513700px;}
.ls32{letter-spacing:-2.221632px;}
.ls36{letter-spacing:-2.218320px;}
.ls2b{letter-spacing:-2.212632px;}
.ls5d{letter-spacing:-2.206944px;}
.ls79{letter-spacing:-2.167488px;}
.ls66{letter-spacing:-2.162376px;}
.ls1e{letter-spacing:-1.848600px;}
.ls2a{letter-spacing:-1.842912px;}
.ls2e{letter-spacing:-1.837224px;}
.ls1b{letter-spacing:-1.832220px;}
.ls76{letter-spacing:-1.814760px;}
.ls17{letter-spacing:-1.804536px;}
.ls67{letter-spacing:-1.799424px;}
.lsa{letter-spacing:-1.790208px;}
.ls34{letter-spacing:-1.706400px;}
.ls15{letter-spacing:-1.692072px;}
.ls33{letter-spacing:-1.660896px;}
.ls14{letter-spacing:-1.640952px;}
.ls7d{letter-spacing:-1.630728px;}
.ls62{letter-spacing:-1.626768px;}
.ls16{letter-spacing:-1.610280px;}
.ls63{letter-spacing:-1.581264px;}
.ls37{letter-spacing:-1.478880px;}
.ls44{letter-spacing:-1.473192px;}
.ls7a{letter-spacing:-1.451808px;}
.ls11{letter-spacing:-1.446696px;}
.ls60{letter-spacing:-1.445976px;}
.lse{letter-spacing:-1.441584px;}
.ls54{letter-spacing:-1.441188px;}
.ls7c{letter-spacing:-1.436472px;}
.lsb{letter-spacing:-1.435500px;}
.ls41{letter-spacing:-1.393560px;}
.ls40{letter-spacing:-1.348056px;}
.ls3f{letter-spacing:-1.308240px;}
.ls2c{letter-spacing:-1.114848px;}
.ls29{letter-spacing:-1.109160px;}
.ls4a{letter-spacing:-1.103472px;}
.lsf{letter-spacing:-1.093968px;}
.ls52{letter-spacing:-1.086876px;}
.ls6e{letter-spacing:-1.083744px;}
.ls31{letter-spacing:-1.078632px;}
.ls7b{letter-spacing:-1.073520px;}
.ls6a{letter-spacing:-0.991728px;}
.ls6b{letter-spacing:-0.889488px;}
.ls27{letter-spacing:-0.745128px;}
.ls28{letter-spacing:-0.739440px;}
.ls47{letter-spacing:-0.733752px;}
.ls12{letter-spacing:-0.731016px;}
.ls53{letter-spacing:-0.727776px;}
.ls10{letter-spacing:-0.725904px;}
.ls7{letter-spacing:-0.719316px;}
.ls5e{letter-spacing:-0.648432px;}
.ls5f{letter-spacing:-0.574488px;}
.ls4f{letter-spacing:-0.557424px;}
.ls3d{letter-spacing:-0.551736px;}
.ls4e{letter-spacing:-0.546048px;}
.ls61{letter-spacing:-0.534672px;}
.ls3e{letter-spacing:-0.528984px;}
.ls4d{letter-spacing:-0.494856px;}
.ls35{letter-spacing:-0.375408px;}
.ls20{letter-spacing:-0.369720px;}
.ls7e{letter-spacing:-0.368064px;}
.ls5{letter-spacing:-0.358020px;}
.ls38{letter-spacing:-0.093600px;}
.ls59{letter-spacing:-0.079200px;}
.ls1d{letter-spacing:-0.072000px;}
.ls65{letter-spacing:-0.064800px;}
.ls45{letter-spacing:-0.043200px;}
.ls50{letter-spacing:-0.036000px;}
.ls64{letter-spacing:-0.028800px;}
.ls58{letter-spacing:-0.021600px;}
.ls49{letter-spacing:-0.014400px;}
.ls30{letter-spacing:-0.011376px;}
.ls13{letter-spacing:-0.010224px;}
.ls51{letter-spacing:-0.009576px;}
.ls1f{letter-spacing:-0.005688px;}
.ls3c{letter-spacing:-0.004788px;}
.ls4{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.004788px;}
.ls57{letter-spacing:0.007200px;}
.ls5c{letter-spacing:0.009576px;}
.ls5a{letter-spacing:0.021600px;}
.ls5b{letter-spacing:0.363888px;}
.ls70{letter-spacing:6.487128px;}
.ls78{letter-spacing:7.202808px;}
.lsc{letter-spacing:9.499392px;}
.ls71{letter-spacing:19.803888px;}
.ls8{letter-spacing:26.260200px;}
.ls4b{letter-spacing:192.262140px;}
.ls55{letter-spacing:192.965976px;}
.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;}
}
.ws9{word-spacing:-30.771900px;}
.ws47{word-spacing:-17.935200px;}
.ws27{word-spacing:-14.328072px;}
.ws1{word-spacing:-14.025960px;}
.ws5{word-spacing:-12.933360px;}
.ws53{word-spacing:-12.565296px;}
.ws51{word-spacing:-12.207456px;}
.ws48{word-spacing:-12.202344px;}
.ws4a{word-spacing:-12.043872px;}
.ws49{word-spacing:-11.941632px;}
.ws31{word-spacing:-11.879028px;}
.ws2e{word-spacing:-11.874240px;}
.ws4b{word-spacing:-11.854728px;}
.ws4d{word-spacing:-11.849616px;}
.ws52{word-spacing:-11.839392px;}
.ws4c{word-spacing:-11.491776px;}
.ws4{word-spacing:-11.486664px;}
.ws2{word-spacing:-10.441548px;}
.ws3{word-spacing:-9.687240px;}
.ws6{word-spacing:-8.824140px;}
.ws54{word-spacing:-1.794312px;}
.ws13{word-spacing:-1.465776px;}
.ws55{word-spacing:-1.431360px;}
.ws50{word-spacing:-1.078632px;}
.wsd{word-spacing:-0.715680px;}
.ws7{word-spacing:-0.711000px;}
.ws10{word-spacing:-0.710568px;}
.wsc{word-spacing:-0.705456px;}
.ws57{word-spacing:-0.368064px;}
.ws8{word-spacing:-0.366444px;}
.ws25{word-spacing:-0.358344px;}
.ws12{word-spacing:-0.357840px;}
.wsf{word-spacing:-0.352728px;}
.ws14{word-spacing:-0.352656px;}
.ws1b{word-spacing:-0.346968px;}
.ws56{word-spacing:-0.342504px;}
.ws4e{word-spacing:-0.244584px;}
.ws11{word-spacing:-0.189144px;}
.ws58{word-spacing:-0.168696px;}
.ws22{word-spacing:-0.153576px;}
.ws1e{word-spacing:-0.119448px;}
.wsa{word-spacing:-0.072900px;}
.ws2d{word-spacing:-0.047880px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.005112px;}
.ws1a{word-spacing:0.011376px;}
.ws28{word-spacing:0.014400px;}
.ws15{word-spacing:0.017064px;}
.ws23{word-spacing:0.022752px;}
.ws33{word-spacing:0.036000px;}
.ws42{word-spacing:0.079200px;}
.ws1d{word-spacing:0.159264px;}
.ws36{word-spacing:0.359100px;}
.wse{word-spacing:0.368064px;}
.ws18{word-spacing:0.369720px;}
.ws45{word-spacing:0.375408px;}
.ws1c{word-spacing:0.381096px;}
.ws21{word-spacing:0.386784px;}
.ws19{word-spacing:0.392472px;}
.ws46{word-spacing:0.557424px;}
.ws2a{word-spacing:0.750816px;}
.ws1f{word-spacing:0.756504px;}
.ws29{word-spacing:0.762192px;}
.ws16{word-spacing:1.120536px;}
.ws4f{word-spacing:1.484568px;}
.ws24{word-spacing:1.490256px;}
.ws26{word-spacing:1.854288px;}
.ws34{word-spacing:2.224008px;}
.ws20{word-spacing:2.229696px;}
.ws17{word-spacing:2.588040px;}
.ws44{word-spacing:39.247236px;}
.ws38{word-spacing:69.129144px;}
.ws43{word-spacing:71.293320px;}
.ws37{word-spacing:75.612096px;}
.ws2f{word-spacing:82.085472px;}
.ws39{word-spacing:100.796976px;}
.ws30{word-spacing:171.352944px;}
.ws32{word-spacing:202.680828px;}
.ws3b{word-spacing:250.905564px;}
.ws41{word-spacing:264.240144px;}
.ws3d{word-spacing:272.513808px;}
.ws3f{word-spacing:277.158168px;}
.ws40{word-spacing:289.448964px;}
.ws3e{word-spacing:295.927128px;}
.ws3c{word-spacing:299.163816px;}
.ws3a{word-spacing:344.884428px;}
.ws2c{word-spacing:520.934400px;}
.ws35{word-spacing:617.762124px;}
.ws2b{word-spacing:1308.598704px;}
._26{margin-left:-617.716008px;}
._25{margin-left:-609.095844px;}
._b{margin-left:-32.359500px;}
._a{margin-left:-30.601800px;}
._e{margin-left:-29.062800px;}
._c{margin-left:-26.973000px;}
._57{margin-left:-22.635936px;}
._55{margin-left:-21.598200px;}
._56{margin-left:-20.182176px;}
._58{margin-left:-19.042200px;}
._11{margin-left:-12.774384px;}
._59{margin-left:-9.360072px;}
._53{margin-left:-8.281440px;}
._54{margin-left:-7.213032px;}
._14{margin-left:-4.769424px;}
._7{margin-left:-2.781000px;}
._2{margin-left:-1.453500px;}
._0{width:1.417500px;}
._4{width:2.920500px;}
._19{width:4.281876px;}
._13{width:5.918364px;}
._9{width:7.210944px;}
._3{width:8.284500px;}
._1{width:9.774000px;}
._8{width:11.153376px;}
._6{width:12.199500px;}
._12{width:13.514544px;}
._2c{width:14.672340px;}
._15{width:15.726636px;}
._10{width:16.873632px;}
._18{width:18.053712px;}
._16{width:19.140120px;}
._17{width:20.206836px;}
._1a{width:21.711096px;}
._5{width:23.089500px;}
._1b{width:24.218640px;}
._f{width:25.469100px;}
._1d{width:26.892864px;}
._1c{width:28.701648px;}
._d{width:30.771900px;}
._4a{width:35.714952px;}
._1e{width:36.795672px;}
._4f{width:40.721940px;}
._5a{width:49.069008px;}
._50{width:50.388912px;}
._4d{width:55.079100px;}
._4e{width:60.113340px;}
._51{width:66.232404px;}
._52{width:78.475320px;}
._3b{width:91.785960px;}
._3a{width:101.146500px;}
._2f{width:104.727672px;}
._37{width:109.496520px;}
._36{width:117.018720px;}
._31{width:134.973720px;}
._42{width:136.735452px;}
._30{width:139.704264px;}
._3d{width:141.863652px;}
._4c{width:145.066824px;}
._4b{width:152.052012px;}
._35{width:154.432152px;}
._3f{width:163.811844px;}
._3c{width:164.884356px;}
._3e{width:168.829668px;}
._38{width:186.138288px;}
._39{width:202.321728px;}
._34{width:209.163780px;}
._2e{width:221.756220px;}
._32{width:227.161872px;}
._48{width:266.021280px;}
._44{width:273.610260px;}
._40{width:285.139764px;}
._49{width:291.957876px;}
._33{width:293.762952px;}
._46{width:307.413540px;}
._41{width:312.124932px;}
._2d{width:316.798020px;}
._43{width:319.704336px;}
._47{width:327.954060px;}
._45{width:353.512404px;}
._29{width:477.023652px;}
._2b{width:504.717444px;}
._2a{width:541.072728px;}
._28{width:545.041980px;}
._27{width:579.606552px;}
._24{width:617.837976px;}
._23{width:836.324496px;}
._22{width:984.264372px;}
._1f{width:1013.446980px;}
._20{width:1072.875636px;}
._21{width:1246.770756px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:4.680000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:42.120000px;}
.fsa{font-size:44.280000px;}
.fs5{font-size:45.000000px;}
.fsb{font-size:47.880000px;}
.fsc{font-size:51.120000px;}
.fsd{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.519850px;}
.y31{bottom:2.699850px;}
.y34{bottom:3.239850px;}
.y2c{bottom:5.399850px;}
.y5a{bottom:66.167850px;}
.y5{bottom:66.525004px;}
.y5c{bottom:73.817448px;}
.y58{bottom:74.178000px;}
.y57{bottom:76.697355px;}
.y56{bottom:87.137850px;}
.y4{bottom:97.125005px;}
.y24{bottom:116.387850px;}
.y26f{bottom:118.002990px;}
.y7c{bottom:118.364610px;}
.y1b7{bottom:118.907526px;}
.y1df{bottom:120.797283px;}
.y1b2{bottom:120.798390px;}
.yd9{bottom:122.775042px;}
.y14f{bottom:124.028940px;}
.y224{bottom:124.031136px;}
.y106{bottom:124.033206px;}
.y1f8{bottom:124.305582px;}
.y18d{bottom:124.307094px;}
.y166{bottom:124.576122px;}
.y1ca{bottom:127.007526px;}
.y23{bottom:131.597850px;}
.y26e{bottom:132.673152px;}
.y122{bottom:133.575690px;}
.y1b1{bottom:135.198300px;}
.y9d{bottom:135.640488px;}
.y7b{bottom:138.434718px;}
.y1b6{bottom:138.977634px;}
.y21{bottom:139.264499px;}
.y1de{bottom:141.317454px;}
.yd8{bottom:142.845150px;}
.y14e{bottom:144.099048px;}
.y223{bottom:144.101244px;}
.y105{bottom:144.103314px;}
.y1f7{bottom:144.375690px;}
.y18c{bottom:144.377202px;}
.y165{bottom:144.646230px;}
.y1c9{bottom:147.077634px;}
.y22{bottom:149.687850px;}
.y26d{bottom:151.843152px;}
.y121{bottom:153.645798px;}
.y9c{bottom:155.710596px;}
.y1b0{bottom:155.718471px;}
.y7a{bottom:158.504826px;}
.y1b5{bottom:159.047742px;}
.y1dd{bottom:161.747850px;}
.yd7{bottom:162.915258px;}
.y14d{bottom:164.169156px;}
.y222{bottom:164.171352px;}
.y104{bottom:164.173422px;}
.y1f6{bottom:164.445798px;}
.y18b{bottom:164.447310px;}
.y164{bottom:164.716338px;}
.y26c{bottom:166.513314px;}
.y1c8{bottom:167.147742px;}
.y1af{bottom:170.118381px;}
.y120{bottom:173.715906px;}
.y9b{bottom:175.780704px;}
.y79{bottom:178.574934px;}
.y1b4{bottom:179.117850px;}
.y26b{bottom:181.183476px;}
.yd6{bottom:182.985366px;}
.y14c{bottom:184.239264px;}
.y221{bottom:184.241460px;}
.y103{bottom:184.243530px;}
.y1f5{bottom:184.515906px;}
.y18a{bottom:184.517418px;}
.y163{bottom:184.786446px;}
.y1c7{bottom:187.217850px;}
.y1e1{bottom:187.667940px;}
.y1ae{bottom:190.548777px;}
.y11f{bottom:193.786014px;}
.y9a{bottom:195.850812px;}
.y18{bottom:196.933500px;}
.y78{bottom:198.645042px;}
.y26a{bottom:200.353476px;}
.y1e0{bottom:202.067850px;}
.yd5{bottom:203.055474px;}
.y14b{bottom:204.309372px;}
.y220{bottom:204.311568px;}
.y102{bottom:204.313638px;}
.y1f4{bottom:204.586014px;}
.y189{bottom:204.587526px;}
.y162{bottom:204.856554px;}
.y244{bottom:204.856878px;}
.y1ad{bottom:204.948687px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y11e{bottom:213.856122px;}
.y269{bottom:215.023638px;}
.y99{bottom:215.920920px;}
.y77{bottom:218.715150px;}
.y55{bottom:220.338534px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ybd{bottom:222.855258px;}
.yd4{bottom:223.125582px;}
.y14a{bottom:224.379480px;}
.y21f{bottom:224.381676px;}
.y101{bottom:224.383746px;}
.y1f3{bottom:224.656122px;}
.y188{bottom:224.657634px;}
.y161{bottom:224.926662px;}
.y243{bottom:224.926986px;}
.y1ac{bottom:225.468858px;}
.y1d1{bottom:228.257850px;}
.y11d{bottom:233.926230px;}
.y268{bottom:234.193638px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y54{bottom:235.638750px;}
.y1ab{bottom:235.728345px;}
.y98{bottom:235.991028px;}
.y76{bottom:238.785258px;}
.ybc{bottom:242.925366px;}
.yd3{bottom:243.195690px;}
.y1c6{bottom:243.917850px;}
.y149{bottom:244.449588px;}
.y21e{bottom:244.451784px;}
.y100{bottom:244.453854px;}
.y1f2{bottom:244.726230px;}
.y187{bottom:244.727742px;}
.y160{bottom:244.996770px;}
.y242{bottom:244.997094px;}
.y267{bottom:248.863800px;}
.y53{bottom:250.938966px;}
.y11c{bottom:253.996338px;}
.y97{bottom:256.061136px;}
.y75{bottom:258.855366px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ybb{bottom:262.995474px;}
.yd2{bottom:263.265798px;}
.y266{bottom:263.533962px;}
.y1c5{bottom:263.717850px;}
.y148{bottom:264.519696px;}
.y21d{bottom:264.521892px;}
.yff{bottom:264.523962px;}
.y1f1{bottom:264.796338px;}
.y186{bottom:264.797850px;}
.y15f{bottom:265.066878px;}
.y241{bottom:265.067202px;}
.y52{bottom:266.148444px;}
.y1b3{bottom:271.907850px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y11b{bottom:274.066446px;}
.y96{bottom:276.131244px;}
.y74{bottom:278.925474px;}
.y51{bottom:281.448660px;}
.y265{bottom:282.703962px;}
.yba{bottom:283.065582px;}
.yd1{bottom:283.335906px;}
.y1c4{bottom:283.517850px;}
.y147{bottom:284.589804px;}
.y21c{bottom:284.592000px;}
.yfe{bottom:284.594070px;}
.y1f0{bottom:284.866446px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y15e{bottom:285.136986px;}
.y240{bottom:285.137310px;}
.y11a{bottom:294.136554px;}
.y95{bottom:296.201352px;}
.y50{bottom:296.748876px;}
.y264{bottom:297.374124px;}
.y73{bottom:298.995582px;}
.yb9{bottom:303.135690px;}
.yd0{bottom:303.406014px;}
.y146{bottom:304.659912px;}
.y21b{bottom:304.662108px;}
.yfd{bottom:304.664178px;}
.y1ef{bottom:304.936554px;}
.y15d{bottom:305.207094px;}
.y23f{bottom:305.207418px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y4f{bottom:311.958354px;}
.y263{bottom:312.044286px;}
.y119{bottom:314.206662px;}
.y94{bottom:316.271460px;}
.y1a9{bottom:316.368084px;}
.y72{bottom:319.065690px;}
.y185{bottom:321.587850px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yb8{bottom:323.205798px;}
.ycf{bottom:323.476122px;}
.y145{bottom:324.730020px;}
.y21a{bottom:324.732216px;}
.yfc{bottom:324.734286px;}
.y1ee{bottom:325.006662px;}
.y15c{bottom:325.277202px;}
.y23e{bottom:325.277526px;}
.y262{bottom:326.714448px;}
.y4e{bottom:327.258570px;}
.y118{bottom:334.276770px;}
.y93{bottom:336.341568px;}
.y1a8{bottom:336.888255px;}
.y71{bottom:339.135798px;}
.y4d{bottom:342.558786px;}
.yb7{bottom:343.275906px;}
.yce{bottom:343.546230px;}
.y144{bottom:344.800128px;}
.y219{bottom:344.802324px;}
.yfb{bottom:344.804394px;}
.y1ed{bottom:345.076770px;}
.y15b{bottom:345.347310px;}
.y23d{bottom:345.347634px;}
.y261{bottom:345.884448px;}
.yf{bottom:348.133500px;}
.y117{bottom:354.346878px;}
.y92{bottom:356.411676px;}
.y4c{bottom:357.768264px;}
.y70{bottom:359.205906px;}
.y260{bottom:360.554610px;}
.y1aa{bottom:362.807850px;}
.yb6{bottom:363.346014px;}
.ycd{bottom:363.616338px;}
.y143{bottom:364.870236px;}
.y218{bottom:364.872432px;}
.yfa{bottom:364.874502px;}
.y1ec{bottom:365.146878px;}
.y15a{bottom:365.417418px;}
.y23c{bottom:365.417742px;}
.y1c3{bottom:367.036572px;}
.y4b{bottom:373.068480px;}
.y116{bottom:374.416986px;}
.y91{bottom:376.481784px;}
.y6f{bottom:379.276014px;}
.y25f{bottom:379.724610px;}
.yb5{bottom:383.416122px;}
.ycc{bottom:383.686446px;}
.y142{bottom:384.940344px;}
.y217{bottom:384.942540px;}
.yf9{bottom:384.944610px;}
.y1eb{bottom:385.216986px;}
.y159{bottom:385.487526px;}
.y23b{bottom:385.487850px;}
.ye{bottom:386.785499px;}
.y1c2{bottom:387.106680px;}
.y4a{bottom:388.368696px;}
.y25e{bottom:394.394772px;}
.y115{bottom:394.487094px;}
.y90{bottom:396.551892px;}
.y6e{bottom:399.346122px;}
.yb4{bottom:403.486230px;}
.y49{bottom:403.578174px;}
.ycb{bottom:403.756554px;}
.y141{bottom:405.010452px;}
.y216{bottom:405.012648px;}
.y184{bottom:405.013008px;}
.yf8{bottom:405.014718px;}
.y1ea{bottom:405.287094px;}
.y158{bottom:405.557634px;}
.y1a6{bottom:406.006464px;}
.y1c1{bottom:407.176788px;}
.yd{bottom:408.044999px;}
.y25d{bottom:409.064934px;}
.y114{bottom:414.557202px;}
.y8f{bottom:416.622000px;}
.y48{bottom:418.878390px;}
.y6d{bottom:419.416230px;}
.y1a5{bottom:420.406374px;}
.yb3{bottom:423.556338px;}
.yca{bottom:423.826662px;}
.y140{bottom:425.080560px;}
.y215{bottom:425.082756px;}
.y183{bottom:425.083116px;}
.yf7{bottom:425.084826px;}
.y1e9{bottom:425.357202px;}
.y157{bottom:425.627742px;}
.y1c0{bottom:427.246896px;}
.y25c{bottom:428.234934px;}
.y47{bottom:434.178606px;}
.y113{bottom:434.627310px;}
.y8e{bottom:436.692108px;}
.y6c{bottom:439.486338px;}
.y1a4{bottom:440.836770px;}
.y23a{bottom:442.277850px;}
.y25b{bottom:442.905096px;}
.yb2{bottom:443.626446px;}
.yc9{bottom:443.896770px;}
.y13f{bottom:445.150668px;}
.y214{bottom:445.152864px;}
.y182{bottom:445.153224px;}
.yf6{bottom:445.154934px;}
.y1e8{bottom:445.427310px;}
.y156{bottom:445.697850px;}
.y1bf{bottom:447.317004px;}
.y46{bottom:449.388084px;}
.y112{bottom:454.697418px;}
.y8d{bottom:456.762216px;}
.y25a{bottom:457.575258px;}
.y6b{bottom:459.556446px;}
.y1a3{bottom:461.356941px;}
.yb1{bottom:463.696554px;}
.yc8{bottom:463.966878px;}
.y45{bottom:464.688300px;}
.y13e{bottom:465.220776px;}
.y213{bottom:465.222972px;}
.y181{bottom:465.223332px;}
.yf5{bottom:465.225042px;}
.y1e7{bottom:465.497418px;}
.y1be{bottom:467.387112px;}
.y111{bottom:474.767526px;}
.y259{bottom:476.745258px;}
.y8c{bottom:476.832324px;}
.y6a{bottom:479.626554px;}
.y44{bottom:479.988516px;}
.y1a2{bottom:481.877112px;}
.yb0{bottom:483.766662px;}
.yc7{bottom:484.036986px;}
.y13d{bottom:485.290884px;}
.y212{bottom:485.293080px;}
.y180{bottom:485.293440px;}
.yf4{bottom:485.295150px;}
.y1e6{bottom:485.567526px;}
.y1bd{bottom:487.457220px;}
.y258{bottom:491.415420px;}
.y110{bottom:494.837634px;}
.y43{bottom:495.197994px;}
.y8b{bottom:496.902432px;}
.y69{bottom:499.696662px;}
.y1a1{bottom:502.307508px;}
.y155{bottom:502.487850px;}
.yc{bottom:502.864502px;}
.yaf{bottom:503.836770px;}
.yc6{bottom:504.107094px;}
.y13c{bottom:505.360992px;}
.y211{bottom:505.363188px;}
.y17f{bottom:505.363548px;}
.yf3{bottom:505.365258px;}
.y1e5{bottom:505.637634px;}
.y257{bottom:506.085582px;}
.y1bc{bottom:507.527328px;}
.y42{bottom:510.498210px;}
.y10f{bottom:514.907742px;}
.y8a{bottom:516.972540px;}
.y68{bottom:519.766770px;}
.y256{bottom:520.755744px;}
.yb{bottom:520.864502px;}
.y1a0{bottom:522.827679px;}
.yae{bottom:523.906878px;}
.yc5{bottom:524.177202px;}
.y13b{bottom:525.431100px;}
.y210{bottom:525.433296px;}
.y17e{bottom:525.433656px;}
.yf2{bottom:525.435366px;}
.y239{bottom:525.705690px;}
.y1e4{bottom:525.707742px;}
.y41{bottom:525.798426px;}
.y1bb{bottom:527.597436px;}
.y2ab{bottom:531.370302px;}
.y28d{bottom:531.374136px;}
.y10e{bottom:534.977850px;}
.y89{bottom:537.042648px;}
.ya{bottom:538.864499px;}
.y67{bottom:539.836878px;}
.y255{bottom:539.925744px;}
.y40{bottom:541.007904px;}
.y19f{bottom:543.347850px;}
.yad{bottom:543.976986px;}
.yc4{bottom:544.247310px;}
.y13a{bottom:545.501208px;}
.y20f{bottom:545.503404px;}
.y17d{bottom:545.503764px;}
.yf1{bottom:545.505474px;}
.y238{bottom:545.775798px;}
.y1e3{bottom:545.777850px;}
.y2aa{bottom:546.040464px;}
.y28c{bottom:546.044298px;}
.y1ba{bottom:547.667544px;}
.y254{bottom:554.595906px;}
.y3f{bottom:556.308120px;}
.y9{bottom:556.864499px;}
.y88{bottom:557.112756px;}
.y66{bottom:559.906986px;}
.y28b{bottom:560.714460px;}
.yac{bottom:564.047094px;}
.yc3{bottom:564.317418px;}
.y2a9{bottom:565.210464px;}
.y139{bottom:565.571316px;}
.y20e{bottom:565.573512px;}
.y17c{bottom:565.573872px;}
.yf0{bottom:565.575582px;}
.y237{bottom:565.845906px;}
.y1dc{bottom:566.207850px;}
.y1b9{bottom:567.737652px;}
.y253{bottom:569.266068px;}
.y1a7{bottom:569.267850px;}
.y3e{bottom:571.608336px;}
.y28a{bottom:575.384622px;}
.y87{bottom:577.182864px;}
.y2a8{bottom:579.880626px;}
.y65{bottom:579.977094px;}
.y252{bottom:583.936230px;}
.yab{bottom:584.117202px;}
.yc2{bottom:584.387526px;}
.y138{bottom:585.641424px;}
.y20d{bottom:585.643620px;}
.y17b{bottom:585.643980px;}
.yef{bottom:585.645690px;}
.y236{bottom:585.916014px;}
.y154{bottom:585.917526px;}
.y3d{bottom:586.817814px;}
.y1b8{bottom:587.807760px;}
.y10d{bottom:591.677850px;}
.y2a7{bottom:594.550788px;}
.y289{bottom:594.554622px;}
.y86{bottom:597.252972px;}
.y251{bottom:598.606392px;}
.y64{bottom:600.047202px;}
.y3c{bottom:602.118030px;}
.y1e2{bottom:602.567850px;}
.yaa{bottom:604.187310px;}
.yc1{bottom:604.457634px;}
.y137{bottom:605.711532px;}
.y20c{bottom:605.713728px;}
.y17a{bottom:605.714088px;}
.yee{bottom:605.715798px;}
.y235{bottom:605.986122px;}
.y153{bottom:605.987634px;}
.y288{bottom:609.224784px;}
.y10c{bottom:611.477850px;}
.y250{bottom:613.276554px;}
.y2a6{bottom:613.720788px;}
.y85{bottom:617.323080px;}
.y3b{bottom:617.418246px;}
.y63{bottom:620.117310px;}
.y287{bottom:623.894946px;}
.ya9{bottom:624.257418px;}
.yc0{bottom:624.527742px;}
.y136{bottom:625.781640px;}
.y20b{bottom:625.783836px;}
.y179{bottom:625.784196px;}
.yed{bottom:625.785906px;}
.y234{bottom:626.056230px;}
.y152{bottom:626.057742px;}
.y19e{bottom:626.326338px;}
.y2a5{bottom:628.390950px;}
.y24f{bottom:632.446554px;}
.y3a{bottom:632.627724px;}
.y84{bottom:637.393188px;}
.y62{bottom:640.187418px;}
.y2a4{bottom:643.061112px;}
.y286{bottom:643.064946px;}
.ya8{bottom:644.327526px;}
.ybf{bottom:644.597850px;}
.y8{bottom:645.510000px;}
.y135{bottom:645.851748px;}
.y20a{bottom:645.853944px;}
.y178{bottom:645.854304px;}
.yec{bottom:645.856014px;}
.y233{bottom:646.126338px;}
.y151{bottom:646.127850px;}
.y19d{bottom:646.396446px;}
.y24e{bottom:647.116716px;}
.y39{bottom:647.927940px;}
.y1cf{bottom:648.466716px;}
.y83{bottom:657.463296px;}
.y2a3{bottom:657.731274px;}
.y285{bottom:657.735108px;}
.y61{bottom:660.257526px;}
.y24d{bottom:661.786878px;}
.y38{bottom:663.228156px;}
.ya7{bottom:664.397634px;}
.y134{bottom:665.921856px;}
.y209{bottom:665.924052px;}
.y177{bottom:665.924412px;}
.yeb{bottom:665.926122px;}
.y232{bottom:666.196446px;}
.y19c{bottom:666.466554px;}
.y7{bottom:666.771000px;}
.y1ce{bottom:668.897112px;}
.y284{bottom:672.405270px;}
.y24c{bottom:676.457040px;}
.y2a2{bottom:676.901274px;}
.y82{bottom:677.533404px;}
.y37{bottom:678.437634px;}
.y60{bottom:680.327634px;}
.ya6{bottom:684.467742px;}
.y133{bottom:685.991964px;}
.y208{bottom:685.994160px;}
.y176{bottom:685.994520px;}
.yea{bottom:685.996230px;}
.y231{bottom:686.266554px;}
.y19b{bottom:686.536662px;}
.y283{bottom:687.075432px;}
.y1cd{bottom:689.417283px;}
.y24b{bottom:691.127202px;}
.y2a1{bottom:691.571436px;}
.y36{bottom:693.737850px;}
.y10b{bottom:694.993224px;}
.y81{bottom:697.603512px;}
.y5f{bottom:700.397742px;}
.ybe{bottom:701.387850px;}
.y150{bottom:702.917850px;}
.ya5{bottom:704.537850px;}
.y132{bottom:706.062072px;}
.y207{bottom:706.064268px;}
.y175{bottom:706.064628px;}
.ye9{bottom:706.066338px;}
.y2a0{bottom:706.241598px;}
.y282{bottom:706.245432px;}
.y230{bottom:706.336662px;}
.y19a{bottom:706.606770px;}
.y1cc{bottom:709.937454px;}
.y24a{bottom:710.297202px;}
.y10a{bottom:715.063332px;}
.y80{bottom:717.673620px;}
.y33{bottom:718.038000px;}
.y5e{bottom:720.467850px;}
.y29f{bottom:720.911760px;}
.y281{bottom:720.915594px;}
.y35{bottom:721.277850px;}
.y249{bottom:724.967364px;}
.y131{bottom:726.132180px;}
.y206{bottom:726.134376px;}
.y174{bottom:726.134736px;}
.ye8{bottom:726.136446px;}
.y6{bottom:726.298500px;}
.y22f{bottom:726.406770px;}
.y199{bottom:726.676878px;}
.y1cb{bottom:730.367850px;}
.y109{bottom:735.133440px;}
.y280{bottom:735.585756px;}
.y7f{bottom:737.743728px;}
.y248{bottom:739.637526px;}
.y29e{bottom:740.081760px;}
.y130{bottom:746.202288px;}
.y205{bottom:746.204484px;}
.y173{bottom:746.204844px;}
.ye7{bottom:746.206554px;}
.y22e{bottom:746.476878px;}
.y198{bottom:746.746986px;}
.y27f{bottom:750.255918px;}
.y3{bottom:752.599495px;}
.y247{bottom:754.307688px;}
.y29d{bottom:754.751922px;}
.y108{bottom:755.203548px;}
.y1d0{bottom:756.377850px;}
.y7e{bottom:757.813836px;}
.yda{bottom:762.137850px;}
.y27e{bottom:764.926080px;}
.y12f{bottom:766.272396px;}
.y204{bottom:766.274592px;}
.y172{bottom:766.274952px;}
.ye6{bottom:766.276662px;}
.y22d{bottom:766.546986px;}
.y197{bottom:766.817094px;}
.y30{bottom:768.708000px;}
.y246{bottom:768.977850px;}
.y29c{bottom:769.422084px;}
.y32{bottom:771.407850px;}
.y5d{bottom:774.647850px;}
.y107{bottom:775.273656px;}
.y7d{bottom:777.883944px;}
.y29b{bottom:784.092246px;}
.y27d{bottom:784.096080px;}
.y12e{bottom:786.342504px;}
.y203{bottom:786.344700px;}
.y171{bottom:786.345060px;}
.ye5{bottom:786.346770px;}
.y22c{bottom:786.617094px;}
.y196{bottom:786.887202px;}
.y27c{bottom:798.766242px;}
.y1da{bottom:800.295771px;}
.y2f{bottom:801.377850px;}
.y29a{bottom:803.262246px;}
.y12d{bottom:806.412612px;}
.y202{bottom:806.414808px;}
.y170{bottom:806.415168px;}
.ye4{bottom:806.416878px;}
.y22b{bottom:806.687202px;}
.y195{bottom:806.957310px;}
.y1d9{bottom:810.556455px;}
.y27b{bottom:813.436404px;}
.y299{bottom:817.932408px;}
.y245{bottom:823.607850px;}
.y123{bottom:824.417850px;}
.y12c{bottom:826.482720px;}
.y201{bottom:826.484916px;}
.y16f{bottom:826.485276px;}
.ye3{bottom:826.486986px;}
.y22a{bottom:826.757310px;}
.y194{bottom:827.027418px;}
.y27a{bottom:828.106566px;}
.y298{bottom:832.602570px;}
.y2e{bottom:840.076950px;}
.y1d8{bottom:841.336113px;}
.y12b{bottom:846.552828px;}
.y200{bottom:846.555024px;}
.y16e{bottom:846.555384px;}
.ye2{bottom:846.557094px;}
.y229{bottom:846.827418px;}
.y193{bottom:847.097526px;}
.y279{bottom:847.276566px;}
.y1d7{bottom:851.596797px;}
.y297{bottom:851.772570px;}
.y2b{bottom:855.648000px;}
.y2d{bottom:861.047850px;}
.y278{bottom:861.946728px;}
.ya4{bottom:864.018318px;}
.y296{bottom:866.442732px;}
.y12a{bottom:866.622936px;}
.y1ff{bottom:866.625132px;}
.y16d{bottom:866.625492px;}
.ye1{bottom:866.627202px;}
.y228{bottom:866.897526px;}
.y192{bottom:867.167634px;}
.y277{bottom:876.616890px;}
.ya3{bottom:879.047850px;}
.y2{bottom:879.369000px;}
.y295{bottom:881.112894px;}
.y1d6{bottom:882.286680px;}
.y129{bottom:886.693044px;}
.y1fe{bottom:886.695240px;}
.y16c{bottom:886.695600px;}
.ye0{bottom:886.697310px;}
.y227{bottom:886.967634px;}
.y191{bottom:887.237742px;}
.y1d5{bottom:892.547364px;}
.y294{bottom:895.783056px;}
.y276{bottom:895.786890px;}
.y128{bottom:906.763152px;}
.y1fd{bottom:906.765348px;}
.y16b{bottom:906.765708px;}
.ydf{bottom:906.767418px;}
.y226{bottom:907.037742px;}
.y190{bottom:907.307850px;}
.y293{bottom:910.453218px;}
.y275{bottom:910.457052px;}
.y1d4{bottom:923.237247px;}
.y292{bottom:925.123380px;}
.y274{bottom:925.127214px;}
.ya2{bottom:925.127574px;}
.y2a{bottom:926.567652px;}
.y127{bottom:926.833260px;}
.y1fc{bottom:926.835456px;}
.y16a{bottom:926.835816px;}
.yde{bottom:926.837526px;}
.y225{bottom:927.107850px;}
.y1d3{bottom:933.497931px;}
.y29{bottom:939.167850px;}
.y273{bottom:939.797376px;}
.ya1{bottom:940.427790px;}
.y291{bottom:944.293380px;}
.y126{bottom:946.903368px;}
.y1fb{bottom:946.905564px;}
.y169{bottom:946.905924px;}
.ydd{bottom:946.907634px;}
.ya0{bottom:955.728006px;}
.y290{bottom:958.963542px;}
.y272{bottom:958.967376px;}
.y28{bottom:963.287850px;}
.y18f{bottom:964.097850px;}
.y1d2{bottom:964.277589px;}
.y1{bottom:966.726000px;}
.y125{bottom:966.973476px;}
.y1fa{bottom:966.975672px;}
.y168{bottom:966.976032px;}
.ydc{bottom:966.977742px;}
.y9f{bottom:970.937484px;}
.y28f{bottom:973.633704px;}
.y271{bottom:973.637538px;}
.y18e{bottom:983.897850px;}
.y9e{bottom:986.237700px;}
.y124{bottom:987.043584px;}
.y1f9{bottom:987.045780px;}
.y167{bottom:987.046140px;}
.ydb{bottom:987.047850px;}
.y28e{bottom:988.303866px;}
.y270{bottom:988.307700px;}
.y1db{bottom:990.197700px;}
.y27{bottom:1000.637304px;}
.y26{bottom:1013.237502px;}
.y25{bottom:1025.837700px;}
.y5b{bottom:1032.767700px;}
.h13{height:11.880000px;}
.hf{height:12.780000px;}
.h10{height:14.670000px;}
.hd{height:24.660000px;}
.ha{height:29.163164px;}
.h9{height:31.311035px;}
.h7{height:32.130000px;}
.h11{height:33.244805px;}
.h16{height:33.478594px;}
.hb{height:33.852305px;}
.h18{height:34.473600px;}
.h17{height:35.278770px;}
.h12{height:35.644219px;}
.h15{height:39.604922px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h14{height:50.027344px;}
.h2{height:55.080000px;}
.hc{height:59.761230px;}
.he{height:60.487910px;}
.h1a{height:62.278414px;}
.h1b{height:74.157442px;}
.h19{height:74.516542px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:12.420000px;}
.w7{width:41.760000px;}
.w5{width:43.740000px;}
.w4{width:113.490000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:39.870000px;}
.x5{left:89.280000px;}
.x1a{left:90.720000px;}
.x16{left:93.870180px;}
.xb{left:96.120000px;}
.x1d{left:98.190477px;}
.x6{left:99.810266px;}
.x1{left:102.045000px;}
.xd{left:103.950000px;}
.x2{left:106.297500px;}
.x1e{left:120.419964px;}
.x1b{left:121.500855px;}
.x28{left:128.071179px;}
.xc{left:132.300000px;}
.x15{left:134.640000px;}
.x19{left:143.819811px;}
.x18{left:169.470324px;}
.x7{left:183.240000px;}
.x1f{left:186.300450px;}
.x21{left:192.959361px;}
.x4{left:203.484001px;}
.x20{left:211.320144px;}
.x27{left:234.990810px;}
.x8{left:252.180000px;}
.x17{left:279.359694px;}
.xa{left:305.099865px;}
.x26{left:315.000684px;}
.x9{left:401.760000px;}
.x1c{left:413.640675px;}
.x12{left:416.609834px;}
.x2a{left:420.479334px;}
.x23{left:429.930000px;}
.x13{left:431.640002px;}
.x25{left:436.049064px;}
.x24{left:441.629478px;}
.x29{left:445.590000px;}
.x14{left:448.110000px;}
.x3{left:454.959000px;}
.x22{left:461.160000px;}
.xe{left:536.220000px;}
.x10{left:622.530000px;}
.x11{left:699.480081px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v4{vertical-align:25.599840pt;}
.v2{vertical-align:26.880000pt;}
.v3{vertical-align:36.478176pt;}
.ls43{letter-spacing:-4.257152pt;}
.ls48{letter-spacing:-3.933568pt;}
.ls18{letter-spacing:-3.871296pt;}
.ls77{letter-spacing:-3.848768pt;}
.ls6f{letter-spacing:-3.839680pt;}
.ls9{letter-spacing:-3.787200pt;}
.ls46{letter-spacing:-3.604928pt;}
.ls75{letter-spacing:-3.526144pt;}
.ls73{letter-spacing:-3.521600pt;}
.ls1{letter-spacing:-3.520000pt;}
.ls42{letter-spacing:-3.276288pt;}
.ls74{letter-spacing:-3.203520pt;}
.ls72{letter-spacing:-3.198976pt;}
.ls2{letter-spacing:-3.196000pt;}
.ls2f{letter-spacing:-2.952704pt;}
.ls22{letter-spacing:-2.947648pt;}
.ls1a{letter-spacing:-2.931552pt;}
.lsd{letter-spacing:-2.885440pt;}
.ls26{letter-spacing:-2.624064pt;}
.ls21{letter-spacing:-2.619008pt;}
.ls1c{letter-spacing:-2.605824pt;}
.ls3{letter-spacing:-2.564000pt;}
.ls68{letter-spacing:-2.562816pt;}
.ls69{letter-spacing:-2.558272pt;}
.ls3a{letter-spacing:-2.502720pt;}
.ls39{letter-spacing:-2.487552pt;}
.ls2d{letter-spacing:-2.416768pt;}
.ls23{letter-spacing:-2.295424pt;}
.ls24{letter-spacing:-2.290368pt;}
.ls25{letter-spacing:-2.280256pt;}
.ls19{letter-spacing:-2.280096pt;}
.ls6c{letter-spacing:-2.244736pt;}
.ls6d{letter-spacing:-2.240192pt;}
.ls6{letter-spacing:-2.239200pt;}
.ls3b{letter-spacing:-2.238656pt;}
.ls56{letter-spacing:-2.234400pt;}
.ls32{letter-spacing:-1.974784pt;}
.ls36{letter-spacing:-1.971840pt;}
.ls2b{letter-spacing:-1.966784pt;}
.ls5d{letter-spacing:-1.961728pt;}
.ls79{letter-spacing:-1.926656pt;}
.ls66{letter-spacing:-1.922112pt;}
.ls1e{letter-spacing:-1.643200pt;}
.ls2a{letter-spacing:-1.638144pt;}
.ls2e{letter-spacing:-1.633088pt;}
.ls1b{letter-spacing:-1.628640pt;}
.ls76{letter-spacing:-1.613120pt;}
.ls17{letter-spacing:-1.604032pt;}
.ls67{letter-spacing:-1.599488pt;}
.lsa{letter-spacing:-1.591296pt;}
.ls34{letter-spacing:-1.516800pt;}
.ls15{letter-spacing:-1.504064pt;}
.ls33{letter-spacing:-1.476352pt;}
.ls14{letter-spacing:-1.458624pt;}
.ls7d{letter-spacing:-1.449536pt;}
.ls62{letter-spacing:-1.446016pt;}
.ls16{letter-spacing:-1.431360pt;}
.ls63{letter-spacing:-1.405568pt;}
.ls37{letter-spacing:-1.314560pt;}
.ls44{letter-spacing:-1.309504pt;}
.ls7a{letter-spacing:-1.290496pt;}
.ls11{letter-spacing:-1.285952pt;}
.ls60{letter-spacing:-1.285312pt;}
.lse{letter-spacing:-1.281408pt;}
.ls54{letter-spacing:-1.281056pt;}
.ls7c{letter-spacing:-1.276864pt;}
.lsb{letter-spacing:-1.276000pt;}
.ls41{letter-spacing:-1.238720pt;}
.ls40{letter-spacing:-1.198272pt;}
.ls3f{letter-spacing:-1.162880pt;}
.ls2c{letter-spacing:-0.990976pt;}
.ls29{letter-spacing:-0.985920pt;}
.ls4a{letter-spacing:-0.980864pt;}
.lsf{letter-spacing:-0.972416pt;}
.ls52{letter-spacing:-0.966112pt;}
.ls6e{letter-spacing:-0.963328pt;}
.ls31{letter-spacing:-0.958784pt;}
.ls7b{letter-spacing:-0.954240pt;}
.ls6a{letter-spacing:-0.881536pt;}
.ls6b{letter-spacing:-0.790656pt;}
.ls27{letter-spacing:-0.662336pt;}
.ls28{letter-spacing:-0.657280pt;}
.ls47{letter-spacing:-0.652224pt;}
.ls12{letter-spacing:-0.649792pt;}
.ls53{letter-spacing:-0.646912pt;}
.ls10{letter-spacing:-0.645248pt;}
.ls7{letter-spacing:-0.639392pt;}
.ls5e{letter-spacing:-0.576384pt;}
.ls5f{letter-spacing:-0.510656pt;}
.ls4f{letter-spacing:-0.495488pt;}
.ls3d{letter-spacing:-0.490432pt;}
.ls4e{letter-spacing:-0.485376pt;}
.ls61{letter-spacing:-0.475264pt;}
.ls3e{letter-spacing:-0.470208pt;}
.ls4d{letter-spacing:-0.439872pt;}
.ls35{letter-spacing:-0.333696pt;}
.ls20{letter-spacing:-0.328640pt;}
.ls7e{letter-spacing:-0.327168pt;}
.ls5{letter-spacing:-0.318240pt;}
.ls38{letter-spacing:-0.083200pt;}
.ls59{letter-spacing:-0.070400pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls65{letter-spacing:-0.057600pt;}
.ls45{letter-spacing:-0.038400pt;}
.ls50{letter-spacing:-0.032000pt;}
.ls64{letter-spacing:-0.025600pt;}
.ls58{letter-spacing:-0.019200pt;}
.ls49{letter-spacing:-0.012800pt;}
.ls30{letter-spacing:-0.010112pt;}
.ls13{letter-spacing:-0.009088pt;}
.ls51{letter-spacing:-0.008512pt;}
.ls1f{letter-spacing:-0.005056pt;}
.ls3c{letter-spacing:-0.004256pt;}
.ls4{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.004256pt;}
.ls57{letter-spacing:0.006400pt;}
.ls5c{letter-spacing:0.008512pt;}
.ls5a{letter-spacing:0.019200pt;}
.ls5b{letter-spacing:0.323456pt;}
.ls70{letter-spacing:5.766336pt;}
.ls78{letter-spacing:6.402496pt;}
.lsc{letter-spacing:8.443904pt;}
.ls71{letter-spacing:17.603456pt;}
.ls8{letter-spacing:23.342400pt;}
.ls4b{letter-spacing:170.899680pt;}
.ls55{letter-spacing:171.525312pt;}
.ws9{word-spacing:-27.352800pt;}
.ws47{word-spacing:-15.942400pt;}
.ws27{word-spacing:-12.736064pt;}
.ws1{word-spacing:-12.467520pt;}
.ws5{word-spacing:-11.496320pt;}
.ws53{word-spacing:-11.169152pt;}
.ws51{word-spacing:-10.851072pt;}
.ws48{word-spacing:-10.846528pt;}
.ws4a{word-spacing:-10.705664pt;}
.ws49{word-spacing:-10.614784pt;}
.ws31{word-spacing:-10.559136pt;}
.ws2e{word-spacing:-10.554880pt;}
.ws4b{word-spacing:-10.537536pt;}
.ws4d{word-spacing:-10.532992pt;}
.ws52{word-spacing:-10.523904pt;}
.ws4c{word-spacing:-10.214912pt;}
.ws4{word-spacing:-10.210368pt;}
.ws2{word-spacing:-9.281376pt;}
.ws3{word-spacing:-8.610880pt;}
.ws6{word-spacing:-7.843680pt;}
.ws54{word-spacing:-1.594944pt;}
.ws13{word-spacing:-1.302912pt;}
.ws55{word-spacing:-1.272320pt;}
.ws50{word-spacing:-0.958784pt;}
.wsd{word-spacing:-0.636160pt;}
.ws7{word-spacing:-0.632000pt;}
.ws10{word-spacing:-0.631616pt;}
.wsc{word-spacing:-0.627072pt;}
.ws57{word-spacing:-0.327168pt;}
.ws8{word-spacing:-0.325728pt;}
.ws25{word-spacing:-0.318528pt;}
.ws12{word-spacing:-0.318080pt;}
.wsf{word-spacing:-0.313536pt;}
.ws14{word-spacing:-0.313472pt;}
.ws1b{word-spacing:-0.308416pt;}
.ws56{word-spacing:-0.304448pt;}
.ws4e{word-spacing:-0.217408pt;}
.ws11{word-spacing:-0.168128pt;}
.ws58{word-spacing:-0.149952pt;}
.ws22{word-spacing:-0.136512pt;}
.ws1e{word-spacing:-0.106176pt;}
.wsa{word-spacing:-0.064800pt;}
.ws2d{word-spacing:-0.042560pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.004544pt;}
.ws1a{word-spacing:0.010112pt;}
.ws28{word-spacing:0.012800pt;}
.ws15{word-spacing:0.015168pt;}
.ws23{word-spacing:0.020224pt;}
.ws33{word-spacing:0.032000pt;}
.ws42{word-spacing:0.070400pt;}
.ws1d{word-spacing:0.141568pt;}
.ws36{word-spacing:0.319200pt;}
.wse{word-spacing:0.327168pt;}
.ws18{word-spacing:0.328640pt;}
.ws45{word-spacing:0.333696pt;}
.ws1c{word-spacing:0.338752pt;}
.ws21{word-spacing:0.343808pt;}
.ws19{word-spacing:0.348864pt;}
.ws46{word-spacing:0.495488pt;}
.ws2a{word-spacing:0.667392pt;}
.ws1f{word-spacing:0.672448pt;}
.ws29{word-spacing:0.677504pt;}
.ws16{word-spacing:0.996032pt;}
.ws4f{word-spacing:1.319616pt;}
.ws24{word-spacing:1.324672pt;}
.ws26{word-spacing:1.648256pt;}
.ws34{word-spacing:1.976896pt;}
.ws20{word-spacing:1.981952pt;}
.ws17{word-spacing:2.300480pt;}
.ws44{word-spacing:34.886432pt;}
.ws38{word-spacing:61.448128pt;}
.ws43{word-spacing:63.371840pt;}
.ws37{word-spacing:67.210752pt;}
.ws2f{word-spacing:72.964864pt;}
.ws39{word-spacing:89.597312pt;}
.ws30{word-spacing:152.313728pt;}
.ws32{word-spacing:180.160736pt;}
.ws3b{word-spacing:223.027168pt;}
.ws41{word-spacing:234.880128pt;}
.ws3d{word-spacing:242.234496pt;}
.ws3f{word-spacing:246.362816pt;}
.ws40{word-spacing:257.287968pt;}
.ws3e{word-spacing:263.046336pt;}
.ws3c{word-spacing:265.923392pt;}
.ws3a{word-spacing:306.563936pt;}
.ws2c{word-spacing:463.052800pt;}
.ws35{word-spacing:549.121888pt;}
.ws2b{word-spacing:1163.198848pt;}
._26{margin-left:-549.080896pt;}
._25{margin-left:-541.418528pt;}
._b{margin-left:-28.764000pt;}
._a{margin-left:-27.201600pt;}
._e{margin-left:-25.833600pt;}
._c{margin-left:-23.976000pt;}
._57{margin-left:-20.120832pt;}
._55{margin-left:-19.198400pt;}
._56{margin-left:-17.939712pt;}
._58{margin-left:-16.926400pt;}
._11{margin-left:-11.355008pt;}
._59{margin-left:-8.320064pt;}
._53{margin-left:-7.361280pt;}
._54{margin-left:-6.411584pt;}
._14{margin-left:-4.239488pt;}
._7{margin-left:-2.472000pt;}
._2{margin-left:-1.292000pt;}
._0{width:1.260000pt;}
._4{width:2.596000pt;}
._19{width:3.806112pt;}
._13{width:5.260768pt;}
._9{width:6.409728pt;}
._3{width:7.364000pt;}
._1{width:8.688000pt;}
._8{width:9.914112pt;}
._6{width:10.844000pt;}
._12{width:12.012928pt;}
._2c{width:13.042080pt;}
._15{width:13.979232pt;}
._10{width:14.998784pt;}
._18{width:16.047744pt;}
._16{width:17.013440pt;}
._17{width:17.961632pt;}
._1a{width:19.298752pt;}
._5{width:20.524000pt;}
._1b{width:21.527680pt;}
._f{width:22.639200pt;}
._1d{width:23.904768pt;}
._1c{width:25.512576pt;}
._d{width:27.352800pt;}
._4a{width:31.746624pt;}
._1e{width:32.707264pt;}
._4f{width:36.197280pt;}
._5a{width:43.616896pt;}
._50{width:44.790144pt;}
._4d{width:48.959200pt;}
._4e{width:53.434080pt;}
._51{width:58.873248pt;}
._52{width:69.755840pt;}
._3b{width:81.587520pt;}
._3a{width:89.908000pt;}
._2f{width:93.091264pt;}
._37{width:97.330240pt;}
._36{width:104.016640pt;}
._31{width:119.976640pt;}
._42{width:121.542624pt;}
._30{width:124.181568pt;}
._3d{width:126.101024pt;}
._4c{width:128.948288pt;}
._4b{width:135.157344pt;}
._35{width:137.273024pt;}
._3f{width:145.610528pt;}
._3c{width:146.563872pt;}
._3e{width:150.070816pt;}
._38{width:165.456256pt;}
._39{width:179.841536pt;}
._34{width:185.923360pt;}
._2e{width:197.116640pt;}
._32{width:201.921664pt;}
._48{width:236.463360pt;}
._44{width:243.209120pt;}
._40{width:253.457568pt;}
._49{width:259.518112pt;}
._33{width:261.122624pt;}
._46{width:273.256480pt;}
._41{width:277.444384pt;}
._2d{width:281.598240pt;}
._43{width:284.181632pt;}
._47{width:291.514720pt;}
._45{width:314.233248pt;}
._29{width:424.021024pt;}
._2b{width:448.637728pt;}
._2a{width:480.953536pt;}
._28{width:484.481760pt;}
._27{width:515.205824pt;}
._24{width:549.189312pt;}
._23{width:743.399552pt;}
._22{width:874.901664pt;}
._1f{width:900.841760pt;}
._20{width:953.667232pt;}
._21{width:1108.240672pt;}
.fs8{font-size:4.160000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:37.440000pt;}
.fsa{font-size:39.360000pt;}
.fs5{font-size:40.000000pt;}
.fsb{font-size:42.560000pt;}
.fsc{font-size:45.440000pt;}
.fsd{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.239867pt;}
.y31{bottom:2.399867pt;}
.y34{bottom:2.879867pt;}
.y2c{bottom:4.799867pt;}
.y5a{bottom:58.815867pt;}
.y5{bottom:59.133337pt;}
.y5c{bottom:65.615509pt;}
.y58{bottom:65.936000pt;}
.y57{bottom:68.175427pt;}
.y56{bottom:77.455867pt;}
.y4{bottom:86.333337pt;}
.y24{bottom:103.455867pt;}
.y26f{bottom:104.891547pt;}
.y7c{bottom:105.212987pt;}
.y1b7{bottom:105.695579pt;}
.y1df{bottom:107.375363pt;}
.y1b2{bottom:107.376347pt;}
.yd9{bottom:109.133371pt;}
.y14f{bottom:110.247947pt;}
.y224{bottom:110.249899pt;}
.y106{bottom:110.251739pt;}
.y1f8{bottom:110.493851pt;}
.y18d{bottom:110.495195pt;}
.y166{bottom:110.734331pt;}
.y1ca{bottom:112.895579pt;}
.y23{bottom:116.975867pt;}
.y26e{bottom:117.931691pt;}
.y122{bottom:118.733947pt;}
.y1b1{bottom:120.176267pt;}
.y9d{bottom:120.569323pt;}
.y7b{bottom:123.053083pt;}
.y1b6{bottom:123.535675pt;}
.y21{bottom:123.790666pt;}
.y1de{bottom:125.615515pt;}
.yd8{bottom:126.973467pt;}
.y14e{bottom:128.088043pt;}
.y223{bottom:128.089995pt;}
.y105{bottom:128.091835pt;}
.y1f7{bottom:128.333947pt;}
.y18c{bottom:128.335291pt;}
.y165{bottom:128.574427pt;}
.y1c9{bottom:130.735675pt;}
.y22{bottom:133.055867pt;}
.y26d{bottom:134.971691pt;}
.y121{bottom:136.574043pt;}
.y9c{bottom:138.409419pt;}
.y1b0{bottom:138.416419pt;}
.y7a{bottom:140.893179pt;}
.y1b5{bottom:141.375771pt;}
.y1dd{bottom:143.775867pt;}
.yd7{bottom:144.813563pt;}
.y14d{bottom:145.928139pt;}
.y222{bottom:145.930091pt;}
.y104{bottom:145.931931pt;}
.y1f6{bottom:146.174043pt;}
.y18b{bottom:146.175387pt;}
.y164{bottom:146.414523pt;}
.y26c{bottom:148.011835pt;}
.y1c8{bottom:148.575771pt;}
.y1af{bottom:151.216339pt;}
.y120{bottom:154.414139pt;}
.y9b{bottom:156.249515pt;}
.y79{bottom:158.733275pt;}
.y1b4{bottom:159.215867pt;}
.y26b{bottom:161.051979pt;}
.yd6{bottom:162.653659pt;}
.y14c{bottom:163.768235pt;}
.y221{bottom:163.770187pt;}
.y103{bottom:163.772027pt;}
.y1f5{bottom:164.014139pt;}
.y18a{bottom:164.015483pt;}
.y163{bottom:164.254619pt;}
.y1c7{bottom:166.415867pt;}
.y1e1{bottom:166.815947pt;}
.y1ae{bottom:169.376691pt;}
.y11f{bottom:172.254235pt;}
.y9a{bottom:174.089611pt;}
.y18{bottom:175.052000pt;}
.y78{bottom:176.573371pt;}
.y26a{bottom:178.091979pt;}
.y1e0{bottom:179.615867pt;}
.yd5{bottom:180.493755pt;}
.y14b{bottom:181.608331pt;}
.y220{bottom:181.610283pt;}
.y102{bottom:181.612123pt;}
.y1f4{bottom:181.854235pt;}
.y189{bottom:181.855579pt;}
.y162{bottom:182.094715pt;}
.y244{bottom:182.095003pt;}
.y1ad{bottom:182.176611pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y11e{bottom:190.094331pt;}
.y269{bottom:191.132123pt;}
.y99{bottom:191.929707pt;}
.y77{bottom:194.413467pt;}
.y55{bottom:195.856475pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ybd{bottom:198.093563pt;}
.yd4{bottom:198.333851pt;}
.y14a{bottom:199.448427pt;}
.y21f{bottom:199.450379pt;}
.y101{bottom:199.452219pt;}
.y1f3{bottom:199.694331pt;}
.y188{bottom:199.695675pt;}
.y161{bottom:199.934811pt;}
.y243{bottom:199.935099pt;}
.y1ac{bottom:200.416763pt;}
.y1d1{bottom:202.895867pt;}
.y11d{bottom:207.934427pt;}
.y268{bottom:208.172123pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y54{bottom:209.456667pt;}
.y1ab{bottom:209.536307pt;}
.y98{bottom:209.769803pt;}
.y76{bottom:212.253563pt;}
.ybc{bottom:215.933659pt;}
.yd3{bottom:216.173947pt;}
.y1c6{bottom:216.815867pt;}
.y149{bottom:217.288523pt;}
.y21e{bottom:217.290475pt;}
.y100{bottom:217.292315pt;}
.y1f2{bottom:217.534427pt;}
.y187{bottom:217.535771pt;}
.y160{bottom:217.774907pt;}
.y242{bottom:217.775195pt;}
.y267{bottom:221.212267pt;}
.y53{bottom:223.056859pt;}
.y11c{bottom:225.774523pt;}
.y97{bottom:227.609899pt;}
.y75{bottom:230.093659pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ybb{bottom:233.773755pt;}
.yd2{bottom:234.014043pt;}
.y266{bottom:234.252411pt;}
.y1c5{bottom:234.415867pt;}
.y148{bottom:235.128619pt;}
.y21d{bottom:235.130571pt;}
.yff{bottom:235.132411pt;}
.y1f1{bottom:235.374523pt;}
.y186{bottom:235.375867pt;}
.y15f{bottom:235.615003pt;}
.y241{bottom:235.615291pt;}
.y52{bottom:236.576395pt;}
.y1b3{bottom:241.695867pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y11b{bottom:243.614619pt;}
.y96{bottom:245.449995pt;}
.y74{bottom:247.933755pt;}
.y51{bottom:250.176587pt;}
.y265{bottom:251.292411pt;}
.yba{bottom:251.613851pt;}
.yd1{bottom:251.854139pt;}
.y1c4{bottom:252.015867pt;}
.y147{bottom:252.968715pt;}
.y21c{bottom:252.970667pt;}
.yfe{bottom:252.972507pt;}
.y1f0{bottom:253.214619pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y15e{bottom:253.455099pt;}
.y240{bottom:253.455387pt;}
.y11a{bottom:261.454715pt;}
.y95{bottom:263.290091pt;}
.y50{bottom:263.776779pt;}
.y264{bottom:264.332555pt;}
.y73{bottom:265.773851pt;}
.yb9{bottom:269.453947pt;}
.yd0{bottom:269.694235pt;}
.y146{bottom:270.808811pt;}
.y21b{bottom:270.810763pt;}
.yfd{bottom:270.812603pt;}
.y1ef{bottom:271.054715pt;}
.y15d{bottom:271.295195pt;}
.y23f{bottom:271.295483pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y4f{bottom:277.296315pt;}
.y263{bottom:277.372699pt;}
.y119{bottom:279.294811pt;}
.y94{bottom:281.130187pt;}
.y1a9{bottom:281.216075pt;}
.y72{bottom:283.613947pt;}
.y185{bottom:285.855867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yb8{bottom:287.294043pt;}
.ycf{bottom:287.534331pt;}
.y145{bottom:288.648907pt;}
.y21a{bottom:288.650859pt;}
.yfc{bottom:288.652699pt;}
.y1ee{bottom:288.894811pt;}
.y15c{bottom:289.135291pt;}
.y23e{bottom:289.135579pt;}
.y262{bottom:290.412843pt;}
.y4e{bottom:290.896507pt;}
.y118{bottom:297.134907pt;}
.y93{bottom:298.970283pt;}
.y1a8{bottom:299.456227pt;}
.y71{bottom:301.454043pt;}
.y4d{bottom:304.496699pt;}
.yb7{bottom:305.134139pt;}
.yce{bottom:305.374427pt;}
.y144{bottom:306.489003pt;}
.y219{bottom:306.490955pt;}
.yfb{bottom:306.492795pt;}
.y1ed{bottom:306.734907pt;}
.y15b{bottom:306.975387pt;}
.y23d{bottom:306.975675pt;}
.y261{bottom:307.452843pt;}
.yf{bottom:309.452000pt;}
.y117{bottom:314.975003pt;}
.y92{bottom:316.810379pt;}
.y4c{bottom:318.016235pt;}
.y70{bottom:319.294139pt;}
.y260{bottom:320.492987pt;}
.y1aa{bottom:322.495867pt;}
.yb6{bottom:322.974235pt;}
.ycd{bottom:323.214523pt;}
.y143{bottom:324.329099pt;}
.y218{bottom:324.331051pt;}
.yfa{bottom:324.332891pt;}
.y1ec{bottom:324.575003pt;}
.y15a{bottom:324.815483pt;}
.y23c{bottom:324.815771pt;}
.y1c3{bottom:326.254731pt;}
.y4b{bottom:331.616427pt;}
.y116{bottom:332.815099pt;}
.y91{bottom:334.650475pt;}
.y6f{bottom:337.134235pt;}
.y25f{bottom:337.532987pt;}
.yb5{bottom:340.814331pt;}
.ycc{bottom:341.054619pt;}
.y142{bottom:342.169195pt;}
.y217{bottom:342.171147pt;}
.yf9{bottom:342.172987pt;}
.y1eb{bottom:342.415099pt;}
.y159{bottom:342.655579pt;}
.y23b{bottom:342.655867pt;}
.ye{bottom:343.809333pt;}
.y1c2{bottom:344.094827pt;}
.y4a{bottom:345.216619pt;}
.y25e{bottom:350.573131pt;}
.y115{bottom:350.655195pt;}
.y90{bottom:352.490571pt;}
.y6e{bottom:354.974331pt;}
.yb4{bottom:358.654427pt;}
.y49{bottom:358.736155pt;}
.ycb{bottom:358.894715pt;}
.y141{bottom:360.009291pt;}
.y216{bottom:360.011243pt;}
.y184{bottom:360.011563pt;}
.yf8{bottom:360.013083pt;}
.y1ea{bottom:360.255195pt;}
.y158{bottom:360.495675pt;}
.y1a6{bottom:360.894635pt;}
.y1c1{bottom:361.934923pt;}
.yd{bottom:362.706666pt;}
.y25d{bottom:363.613275pt;}
.y114{bottom:368.495291pt;}
.y8f{bottom:370.330667pt;}
.y48{bottom:372.336347pt;}
.y6d{bottom:372.814427pt;}
.y1a5{bottom:373.694555pt;}
.yb3{bottom:376.494523pt;}
.yca{bottom:376.734811pt;}
.y140{bottom:377.849387pt;}
.y215{bottom:377.851339pt;}
.y183{bottom:377.851659pt;}
.yf7{bottom:377.853179pt;}
.y1e9{bottom:378.095291pt;}
.y157{bottom:378.335771pt;}
.y1c0{bottom:379.775019pt;}
.y25c{bottom:380.653275pt;}
.y47{bottom:385.936539pt;}
.y113{bottom:386.335387pt;}
.y8e{bottom:388.170763pt;}
.y6c{bottom:390.654523pt;}
.y1a4{bottom:391.854907pt;}
.y23a{bottom:393.135867pt;}
.y25b{bottom:393.693419pt;}
.yb2{bottom:394.334619pt;}
.yc9{bottom:394.574907pt;}
.y13f{bottom:395.689483pt;}
.y214{bottom:395.691435pt;}
.y182{bottom:395.691755pt;}
.yf6{bottom:395.693275pt;}
.y1e8{bottom:395.935387pt;}
.y156{bottom:396.175867pt;}
.y1bf{bottom:397.615115pt;}
.y46{bottom:399.456075pt;}
.y112{bottom:404.175483pt;}
.y8d{bottom:406.010859pt;}
.y25a{bottom:406.733563pt;}
.y6b{bottom:408.494619pt;}
.y1a3{bottom:410.095059pt;}
.yb1{bottom:412.174715pt;}
.yc8{bottom:412.415003pt;}
.y45{bottom:413.056267pt;}
.y13e{bottom:413.529579pt;}
.y213{bottom:413.531531pt;}
.y181{bottom:413.531851pt;}
.yf5{bottom:413.533371pt;}
.y1e7{bottom:413.775483pt;}
.y1be{bottom:415.455211pt;}
.y111{bottom:422.015579pt;}
.y259{bottom:423.773563pt;}
.y8c{bottom:423.850955pt;}
.y6a{bottom:426.334715pt;}
.y44{bottom:426.656459pt;}
.y1a2{bottom:428.335211pt;}
.yb0{bottom:430.014811pt;}
.yc7{bottom:430.255099pt;}
.y13d{bottom:431.369675pt;}
.y212{bottom:431.371627pt;}
.y180{bottom:431.371947pt;}
.yf4{bottom:431.373467pt;}
.y1e6{bottom:431.615579pt;}
.y1bd{bottom:433.295307pt;}
.y258{bottom:436.813707pt;}
.y110{bottom:439.855675pt;}
.y43{bottom:440.175995pt;}
.y8b{bottom:441.691051pt;}
.y69{bottom:444.174811pt;}
.y1a1{bottom:446.495563pt;}
.y155{bottom:446.655867pt;}
.yc{bottom:446.990669pt;}
.yaf{bottom:447.854907pt;}
.yc6{bottom:448.095195pt;}
.y13c{bottom:449.209771pt;}
.y211{bottom:449.211723pt;}
.y17f{bottom:449.212043pt;}
.yf3{bottom:449.213563pt;}
.y1e5{bottom:449.455675pt;}
.y257{bottom:449.853851pt;}
.y1bc{bottom:451.135403pt;}
.y42{bottom:453.776187pt;}
.y10f{bottom:457.695771pt;}
.y8a{bottom:459.531147pt;}
.y68{bottom:462.014907pt;}
.y256{bottom:462.893995pt;}
.yb{bottom:462.990669pt;}
.y1a0{bottom:464.735715pt;}
.yae{bottom:465.695003pt;}
.yc5{bottom:465.935291pt;}
.y13b{bottom:467.049867pt;}
.y210{bottom:467.051819pt;}
.y17e{bottom:467.052139pt;}
.yf2{bottom:467.053659pt;}
.y239{bottom:467.293947pt;}
.y1e4{bottom:467.295771pt;}
.y41{bottom:467.376379pt;}
.y1bb{bottom:468.975499pt;}
.y2ab{bottom:472.329157pt;}
.y28d{bottom:472.332565pt;}
.y10e{bottom:475.535867pt;}
.y89{bottom:477.371243pt;}
.ya{bottom:478.990666pt;}
.y67{bottom:479.855003pt;}
.y255{bottom:479.933995pt;}
.y40{bottom:480.895915pt;}
.y19f{bottom:482.975867pt;}
.yad{bottom:483.535099pt;}
.yc4{bottom:483.775387pt;}
.y13a{bottom:484.889963pt;}
.y20f{bottom:484.891915pt;}
.y17d{bottom:484.892235pt;}
.yf1{bottom:484.893755pt;}
.y238{bottom:485.134043pt;}
.y1e3{bottom:485.135867pt;}
.y2aa{bottom:485.369301pt;}
.y28c{bottom:485.372709pt;}
.y1ba{bottom:486.815595pt;}
.y254{bottom:492.974139pt;}
.y3f{bottom:494.496107pt;}
.y9{bottom:494.990666pt;}
.y88{bottom:495.211339pt;}
.y66{bottom:497.695099pt;}
.y28b{bottom:498.412853pt;}
.yac{bottom:501.375195pt;}
.yc3{bottom:501.615483pt;}
.y2a9{bottom:502.409301pt;}
.y139{bottom:502.730059pt;}
.y20e{bottom:502.732011pt;}
.y17c{bottom:502.732331pt;}
.yf0{bottom:502.733851pt;}
.y237{bottom:502.974139pt;}
.y1dc{bottom:503.295867pt;}
.y1b9{bottom:504.655691pt;}
.y253{bottom:506.014283pt;}
.y1a7{bottom:506.015867pt;}
.y3e{bottom:508.096299pt;}
.y28a{bottom:511.452997pt;}
.y87{bottom:513.051435pt;}
.y2a8{bottom:515.449445pt;}
.y65{bottom:515.535195pt;}
.y252{bottom:519.054427pt;}
.yab{bottom:519.215291pt;}
.yc2{bottom:519.455579pt;}
.y138{bottom:520.570155pt;}
.y20d{bottom:520.572107pt;}
.y17b{bottom:520.572427pt;}
.yef{bottom:520.573947pt;}
.y236{bottom:520.814235pt;}
.y154{bottom:520.815579pt;}
.y3d{bottom:521.615835pt;}
.y1b8{bottom:522.495787pt;}
.y10d{bottom:525.935867pt;}
.y2a7{bottom:528.489589pt;}
.y289{bottom:528.492997pt;}
.y86{bottom:530.891531pt;}
.y251{bottom:532.094571pt;}
.y64{bottom:533.375291pt;}
.y3c{bottom:535.216027pt;}
.y1e2{bottom:535.615867pt;}
.yaa{bottom:537.055387pt;}
.yc1{bottom:537.295675pt;}
.y137{bottom:538.410251pt;}
.y20c{bottom:538.412203pt;}
.y17a{bottom:538.412523pt;}
.yee{bottom:538.414043pt;}
.y235{bottom:538.654331pt;}
.y153{bottom:538.655675pt;}
.y288{bottom:541.533141pt;}
.y10c{bottom:543.535867pt;}
.y250{bottom:545.134715pt;}
.y2a6{bottom:545.529589pt;}
.y85{bottom:548.731627pt;}
.y3b{bottom:548.816219pt;}
.y63{bottom:551.215387pt;}
.y287{bottom:554.573285pt;}
.ya9{bottom:554.895483pt;}
.yc0{bottom:555.135771pt;}
.y136{bottom:556.250347pt;}
.y20b{bottom:556.252299pt;}
.y179{bottom:556.252619pt;}
.yed{bottom:556.254139pt;}
.y234{bottom:556.494427pt;}
.y152{bottom:556.495771pt;}
.y19e{bottom:556.734523pt;}
.y2a5{bottom:558.569733pt;}
.y24f{bottom:562.174715pt;}
.y3a{bottom:562.335755pt;}
.y84{bottom:566.571723pt;}
.y62{bottom:569.055483pt;}
.y2a4{bottom:571.609877pt;}
.y286{bottom:571.613285pt;}
.ya8{bottom:572.735579pt;}
.ybf{bottom:572.975867pt;}
.y8{bottom:573.786667pt;}
.y135{bottom:574.090443pt;}
.y20a{bottom:574.092395pt;}
.y178{bottom:574.092715pt;}
.yec{bottom:574.094235pt;}
.y233{bottom:574.334523pt;}
.y151{bottom:574.335867pt;}
.y19d{bottom:574.574619pt;}
.y24e{bottom:575.214859pt;}
.y39{bottom:575.935947pt;}
.y1cf{bottom:576.414859pt;}
.y83{bottom:584.411819pt;}
.y2a3{bottom:584.650021pt;}
.y285{bottom:584.653429pt;}
.y61{bottom:586.895579pt;}
.y24d{bottom:588.255003pt;}
.y38{bottom:589.536139pt;}
.ya7{bottom:590.575675pt;}
.y134{bottom:591.930539pt;}
.y209{bottom:591.932491pt;}
.y177{bottom:591.932811pt;}
.yeb{bottom:591.934331pt;}
.y232{bottom:592.174619pt;}
.y19c{bottom:592.414715pt;}
.y7{bottom:592.685334pt;}
.y1ce{bottom:594.575211pt;}
.y284{bottom:597.693573pt;}
.y24c{bottom:601.295147pt;}
.y2a2{bottom:601.690021pt;}
.y82{bottom:602.251915pt;}
.y37{bottom:603.055675pt;}
.y60{bottom:604.735675pt;}
.ya6{bottom:608.415771pt;}
.y133{bottom:609.770635pt;}
.y208{bottom:609.772587pt;}
.y176{bottom:609.772907pt;}
.yea{bottom:609.774427pt;}
.y231{bottom:610.014715pt;}
.y19b{bottom:610.254811pt;}
.y283{bottom:610.733717pt;}
.y1cd{bottom:612.815363pt;}
.y24b{bottom:614.335291pt;}
.y2a1{bottom:614.730165pt;}
.y36{bottom:616.655867pt;}
.y10b{bottom:617.771755pt;}
.y81{bottom:620.092011pt;}
.y5f{bottom:622.575771pt;}
.ybe{bottom:623.455867pt;}
.y150{bottom:624.815867pt;}
.ya5{bottom:626.255867pt;}
.y132{bottom:627.610731pt;}
.y207{bottom:627.612683pt;}
.y175{bottom:627.613003pt;}
.ye9{bottom:627.614523pt;}
.y2a0{bottom:627.770309pt;}
.y282{bottom:627.773717pt;}
.y230{bottom:627.854811pt;}
.y19a{bottom:628.094907pt;}
.y1cc{bottom:631.055515pt;}
.y24a{bottom:631.375291pt;}
.y10a{bottom:635.611851pt;}
.y80{bottom:637.932107pt;}
.y33{bottom:638.256000pt;}
.y5e{bottom:640.415867pt;}
.y29f{bottom:640.810453pt;}
.y281{bottom:640.813861pt;}
.y35{bottom:641.135867pt;}
.y249{bottom:644.415435pt;}
.y131{bottom:645.450827pt;}
.y206{bottom:645.452779pt;}
.y174{bottom:645.453099pt;}
.ye8{bottom:645.454619pt;}
.y6{bottom:645.598667pt;}
.y22f{bottom:645.694907pt;}
.y199{bottom:645.935003pt;}
.y1cb{bottom:649.215867pt;}
.y109{bottom:653.451947pt;}
.y280{bottom:653.854005pt;}
.y7f{bottom:655.772203pt;}
.y248{bottom:657.455579pt;}
.y29e{bottom:657.850453pt;}
.y130{bottom:663.290923pt;}
.y205{bottom:663.292875pt;}
.y173{bottom:663.293195pt;}
.ye7{bottom:663.294715pt;}
.y22e{bottom:663.535003pt;}
.y198{bottom:663.775099pt;}
.y27f{bottom:666.894149pt;}
.y3{bottom:668.977329pt;}
.y247{bottom:670.495723pt;}
.y29d{bottom:670.890597pt;}
.y108{bottom:671.292043pt;}
.y1d0{bottom:672.335867pt;}
.y7e{bottom:673.612299pt;}
.yda{bottom:677.455867pt;}
.y27e{bottom:679.934293pt;}
.y12f{bottom:681.131019pt;}
.y204{bottom:681.132971pt;}
.y172{bottom:681.133291pt;}
.ye6{bottom:681.134811pt;}
.y22d{bottom:681.375099pt;}
.y197{bottom:681.615195pt;}
.y30{bottom:683.296000pt;}
.y246{bottom:683.535867pt;}
.y29c{bottom:683.930741pt;}
.y32{bottom:685.695867pt;}
.y5d{bottom:688.575867pt;}
.y107{bottom:689.132139pt;}
.y7d{bottom:691.452395pt;}
.y29b{bottom:696.970885pt;}
.y27d{bottom:696.974293pt;}
.y12e{bottom:698.971115pt;}
.y203{bottom:698.973067pt;}
.y171{bottom:698.973387pt;}
.ye5{bottom:698.974907pt;}
.y22c{bottom:699.215195pt;}
.y196{bottom:699.455291pt;}
.y27c{bottom:710.014437pt;}
.y1da{bottom:711.374019pt;}
.y2f{bottom:712.335867pt;}
.y29a{bottom:714.010885pt;}
.y12d{bottom:716.811211pt;}
.y202{bottom:716.813163pt;}
.y170{bottom:716.813483pt;}
.ye4{bottom:716.815003pt;}
.y22b{bottom:717.055291pt;}
.y195{bottom:717.295387pt;}
.y1d9{bottom:720.494627pt;}
.y27b{bottom:723.054581pt;}
.y299{bottom:727.051029pt;}
.y245{bottom:732.095867pt;}
.y123{bottom:732.815867pt;}
.y12c{bottom:734.651307pt;}
.y201{bottom:734.653259pt;}
.y16f{bottom:734.653579pt;}
.ye3{bottom:734.655099pt;}
.y22a{bottom:734.895387pt;}
.y194{bottom:735.135483pt;}
.y27a{bottom:736.094725pt;}
.y298{bottom:740.091173pt;}
.y2e{bottom:746.735067pt;}
.y1d8{bottom:747.854323pt;}
.y12b{bottom:752.491403pt;}
.y200{bottom:752.493355pt;}
.y16e{bottom:752.493675pt;}
.ye2{bottom:752.495195pt;}
.y229{bottom:752.735483pt;}
.y193{bottom:752.975579pt;}
.y279{bottom:753.134725pt;}
.y1d7{bottom:756.974931pt;}
.y297{bottom:757.131173pt;}
.y2b{bottom:760.576000pt;}
.y2d{bottom:765.375867pt;}
.y278{bottom:766.174869pt;}
.ya4{bottom:768.016283pt;}
.y296{bottom:770.171317pt;}
.y12a{bottom:770.331499pt;}
.y1ff{bottom:770.333451pt;}
.y16d{bottom:770.333771pt;}
.ye1{bottom:770.335291pt;}
.y228{bottom:770.575579pt;}
.y192{bottom:770.815675pt;}
.y277{bottom:779.215013pt;}
.ya3{bottom:781.375867pt;}
.y2{bottom:781.661334pt;}
.y295{bottom:783.211461pt;}
.y1d6{bottom:784.254827pt;}
.y129{bottom:788.171595pt;}
.y1fe{bottom:788.173547pt;}
.y16c{bottom:788.173867pt;}
.ye0{bottom:788.175387pt;}
.y227{bottom:788.415675pt;}
.y191{bottom:788.655771pt;}
.y1d5{bottom:793.375435pt;}
.y294{bottom:796.251605pt;}
.y276{bottom:796.255013pt;}
.y128{bottom:806.011691pt;}
.y1fd{bottom:806.013643pt;}
.y16b{bottom:806.013963pt;}
.ydf{bottom:806.015483pt;}
.y226{bottom:806.255771pt;}
.y190{bottom:806.495867pt;}
.y293{bottom:809.291749pt;}
.y275{bottom:809.295157pt;}
.y1d4{bottom:820.655331pt;}
.y292{bottom:822.331893pt;}
.y274{bottom:822.335301pt;}
.ya2{bottom:822.335621pt;}
.y2a{bottom:823.615691pt;}
.y127{bottom:823.851787pt;}
.y1fc{bottom:823.853739pt;}
.y16a{bottom:823.854059pt;}
.yde{bottom:823.855579pt;}
.y225{bottom:824.095867pt;}
.y1d3{bottom:829.775939pt;}
.y29{bottom:834.815867pt;}
.y273{bottom:835.375445pt;}
.ya1{bottom:835.935813pt;}
.y291{bottom:839.371893pt;}
.y126{bottom:841.691883pt;}
.y1fb{bottom:841.693835pt;}
.y169{bottom:841.694155pt;}
.ydd{bottom:841.695675pt;}
.ya0{bottom:849.536005pt;}
.y290{bottom:852.412037pt;}
.y272{bottom:852.415445pt;}
.y28{bottom:856.255867pt;}
.y18f{bottom:856.975867pt;}
.y1d2{bottom:857.135635pt;}
.y1{bottom:859.312000pt;}
.y125{bottom:859.531979pt;}
.y1fa{bottom:859.533931pt;}
.y168{bottom:859.534251pt;}
.ydc{bottom:859.535771pt;}
.y9f{bottom:863.055541pt;}
.y28f{bottom:865.452181pt;}
.y271{bottom:865.455589pt;}
.y18e{bottom:874.575867pt;}
.y9e{bottom:876.655733pt;}
.y124{bottom:877.372075pt;}
.y1f9{bottom:877.374027pt;}
.y167{bottom:877.374347pt;}
.ydb{bottom:877.375867pt;}
.y28e{bottom:878.492325pt;}
.y270{bottom:878.495733pt;}
.y1db{bottom:880.175733pt;}
.y27{bottom:889.455381pt;}
.y26{bottom:900.655557pt;}
.y25{bottom:911.855733pt;}
.y5b{bottom:918.015733pt;}
.h13{height:10.560000pt;}
.hf{height:11.360000pt;}
.h10{height:13.040000pt;}
.hd{height:21.920000pt;}
.ha{height:25.922812pt;}
.h9{height:27.832031pt;}
.h7{height:28.560000pt;}
.h11{height:29.550937pt;}
.h16{height:29.758750pt;}
.hb{height:30.090937pt;}
.h18{height:30.643200pt;}
.h17{height:31.358906pt;}
.h12{height:31.683750pt;}
.h15{height:35.204375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h14{height:44.468750pt;}
.h2{height:48.960000pt;}
.hc{height:53.121094pt;}
.he{height:53.767031pt;}
.h1a{height:55.358590pt;}
.h1b{height:65.917726pt;}
.h19{height:66.236926pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:11.040000pt;}
.w7{width:37.120000pt;}
.w5{width:38.880000pt;}
.w4{width:100.880000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:35.440000pt;}
.x5{left:79.360000pt;}
.x1a{left:80.640000pt;}
.x16{left:83.440160pt;}
.xb{left:85.440000pt;}
.x1d{left:87.280424pt;}
.x6{left:88.720237pt;}
.x1{left:90.706667pt;}
.xd{left:92.400000pt;}
.x2{left:94.486667pt;}
.x1e{left:107.039968pt;}
.x1b{left:108.000760pt;}
.x28{left:113.841048pt;}
.xc{left:117.600000pt;}
.x15{left:119.680000pt;}
.x19{left:127.839832pt;}
.x18{left:150.640288pt;}
.x7{left:162.880000pt;}
.x1f{left:165.600400pt;}
.x21{left:171.519432pt;}
.x4{left:180.874667pt;}
.x20{left:187.840128pt;}
.x27{left:208.880720pt;}
.x8{left:224.160000pt;}
.x17{left:248.319728pt;}
.xa{left:271.199880pt;}
.x26{left:280.000608pt;}
.x9{left:357.120000pt;}
.x1c{left:367.680600pt;}
.x12{left:370.319853pt;}
.x2a{left:373.759408pt;}
.x23{left:382.160000pt;}
.x13{left:383.680002pt;}
.x25{left:387.599168pt;}
.x24{left:392.559536pt;}
.x29{left:396.080000pt;}
.x14{left:398.320000pt;}
.x3{left:404.408000pt;}
.x22{left:409.920000pt;}
.xe{left:476.640000pt;}
.x10{left:553.360000pt;}
.x11{left:621.760072pt;}
}




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