
    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_7f3bddc94df4a434ec84a9b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_f59eeb4726fdc47e4ffa17f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_b664922c4b0de4c40f86f040.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_727a6434ab553a5d3e8c7caa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_e665d16fd7a0a2bf8659feb7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_a4c83387e858bbc8df356c9f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_bb3349a6d0719ce12a8be6d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_157e39e340af251e0835b557.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_25e3df159e7257d01a8c4557.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_9e042497906133bb9a88fd9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_130b17f865a032de859b5a5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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;}
.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);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v4{vertical-align:21.233400px;}
.v5{vertical-align:22.610400px;}
.v3{vertical-align:28.254000px;}
.v1{vertical-align:30.381600px;}
.ls7{letter-spacing:-4.662000px;}
.lsab{letter-spacing:-2.640000px;}
.lsa3{letter-spacing:-1.392000px;}
.ls6{letter-spacing:-0.780000px;}
.lsae{letter-spacing:-0.480000px;}
.lsa4{letter-spacing:-0.432000px;}
.lsaa{letter-spacing:-0.336000px;}
.lsac{letter-spacing:-0.288000px;}
.ls42{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.225000px;}
.ls39{letter-spacing:-0.180000px;}
.lsad{letter-spacing:-0.144000px;}
.ls5f{letter-spacing:-0.120000px;}
.lsa2{letter-spacing:-0.096000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls56{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004140px;}
.ls2{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.ls8b{letter-spacing:0.048000px;}
.ls5a{letter-spacing:0.060000px;}
.ls9d{letter-spacing:0.096000px;}
.ls1c{letter-spacing:0.120000px;}
.ls9b{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.180000px;}
.ls84{letter-spacing:0.192000px;}
.ls25{letter-spacing:0.210600px;}
.ls21{letter-spacing:0.240000px;}
.lsa0{letter-spacing:0.288000px;}
.ls64{letter-spacing:0.300000px;}
.ls98{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.360000px;}
.ls94{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.420000px;}
.ls93{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.540000px;}
.ls7a{letter-spacing:0.576000px;}
.ls34{letter-spacing:0.600000px;}
.ls80{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls86{letter-spacing:0.672000px;}
.ls41{letter-spacing:0.720000px;}
.ls87{letter-spacing:0.768000px;}
.ls30{letter-spacing:0.780000px;}
.ls83{letter-spacing:0.816000px;}
.ls22{letter-spacing:0.840000px;}
.ls90{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.900000px;}
.ls9c{letter-spacing:0.912000px;}
.ls35{letter-spacing:0.960000px;}
.ls78{letter-spacing:1.008000px;}
.ls2c{letter-spacing:1.020000px;}
.ls12{letter-spacing:1.026600px;}
.ls73{letter-spacing:1.056000px;}
.ls10{letter-spacing:1.080000px;}
.ls72{letter-spacing:1.104000px;}
.ls31{letter-spacing:1.140000px;}
.ls9a{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.200000px;}
.ls7b{letter-spacing:1.248000px;}
.ls18{letter-spacing:1.260000px;}
.ls97{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.320000px;}
.lsa1{letter-spacing:1.344000px;}
.lse{letter-spacing:1.380000px;}
.ls9e{letter-spacing:1.392000px;}
.ls2a{letter-spacing:1.440000px;}
.ls8d{letter-spacing:1.488000px;}
.ls33{letter-spacing:1.500000px;}
.ls77{letter-spacing:1.536000px;}
.ls1b{letter-spacing:1.560000px;}
.ls7f{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.620000px;}
.ls4a{letter-spacing:1.680000px;}
.ls89{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.740000px;}
.ls88{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.lsd{letter-spacing:1.860000px;}
.ls85{letter-spacing:1.872000px;}
.ls1f{letter-spacing:1.920000px;}
.ls74{letter-spacing:1.968000px;}
.ls38{letter-spacing:1.980000px;}
.ls91{letter-spacing:2.016000px;}
.ls32{letter-spacing:2.040000px;}
.ls81{letter-spacing:2.064000px;}
.ls2f{letter-spacing:2.100000px;}
.ls37{letter-spacing:2.160000px;}
.ls7c{letter-spacing:2.208000px;}
.ls1e{letter-spacing:2.220000px;}
.ls8f{letter-spacing:2.256000px;}
.lsa{letter-spacing:2.280000px;}
.ls8c{letter-spacing:2.304000px;}
.ls3e{letter-spacing:2.340000px;}
.ls75{letter-spacing:2.352000px;}
.ls9{letter-spacing:2.400000px;}
.ls3c{letter-spacing:2.460000px;}
.ls99{letter-spacing:2.496000px;}
.lsc{letter-spacing:2.520000px;}
.ls9f{letter-spacing:2.544000px;}
.ls19{letter-spacing:2.580000px;}
.lsa5{letter-spacing:2.592000px;}
.ls61{letter-spacing:2.640000px;}
.lsa9{letter-spacing:2.688000px;}
.ls2e{letter-spacing:2.700000px;}
.ls24{letter-spacing:2.760000px;}
.ls7e{letter-spacing:2.784000px;}
.ls59{letter-spacing:2.820000px;}
.lsa7{letter-spacing:2.832000px;}
.ls29{letter-spacing:2.880000px;}
.ls96{letter-spacing:2.928000px;}
.ls17{letter-spacing:2.940000px;}
.lsa6{letter-spacing:2.976000px;}
.ls23{letter-spacing:3.000000px;}
.ls5e{letter-spacing:3.060000px;}
.ls58{letter-spacing:3.120000px;}
.ls8e{letter-spacing:3.168000px;}
.ls36{letter-spacing:3.180000px;}
.ls45{letter-spacing:3.240000px;}
.ls14{letter-spacing:3.300000px;}
.ls5b{letter-spacing:3.360000px;}
.ls82{letter-spacing:3.408000px;}
.ls1a{letter-spacing:3.480000px;}
.ls3b{letter-spacing:3.540000px;}
.ls62{letter-spacing:3.600000px;}
.ls5d{letter-spacing:3.660000px;}
.ls46{letter-spacing:3.720000px;}
.ls57{letter-spacing:3.780000px;}
.ls40{letter-spacing:3.840000px;}
.ls6f{letter-spacing:3.900000px;}
.ls47{letter-spacing:3.960000px;}
.ls7d{letter-spacing:3.984000px;}
.ls60{letter-spacing:4.080000px;}
.ls44{letter-spacing:4.200000px;}
.ls13{letter-spacing:4.260000px;}
.ls48{letter-spacing:4.320000px;}
.ls95{letter-spacing:4.368000px;}
.ls43{letter-spacing:4.440000px;}
.ls92{letter-spacing:4.656000px;}
.ls3d{letter-spacing:4.680000px;}
.ls6b{letter-spacing:4.740000px;}
.ls69{letter-spacing:4.800000px;}
.ls3f{letter-spacing:4.860000px;}
.ls63{letter-spacing:4.920000px;}
.ls5c{letter-spacing:4.980000px;}
.ls49{letter-spacing:5.160000px;}
.ls68{letter-spacing:5.220000px;}
.ls66{letter-spacing:5.340000px;}
.lsa8{letter-spacing:5.952000px;}
.ls67{letter-spacing:6.360000px;}
.ls6a{letter-spacing:6.960000px;}
.ls71{letter-spacing:7.200000px;}
.ls6d{letter-spacing:7.380000px;}
.ls8a{letter-spacing:7.440000px;}
.ls6c{letter-spacing:8.760000px;}
.ls70{letter-spacing:8.820000px;}
.ls6e{letter-spacing:12.360000px;}
.ls3{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls4b{letter-spacing:69.795000px;}
.ls65{letter-spacing:196.848000px;}
.ls52{letter-spacing:216.059700px;}
.ls4c{letter-spacing:259.686300px;}
.ls51{letter-spacing:314.024700px;}
.ls55{letter-spacing:376.548300px;}
.ls54{letter-spacing:385.216500px;}
.ls4d{letter-spacing:399.531900px;}
.ls4f{letter-spacing:405.244500px;}
.ls4e{letter-spacing:431.436300px;}
.ls53{letter-spacing:461.516100px;}
.ls50{letter-spacing:587.716500px;}
.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;}
}
.ws74{word-spacing:-18.660000px;}
.ws4c{word-spacing:-18.600000px;}
.ws46{word-spacing:-17.340000px;}
.ws6b{word-spacing:-17.280000px;}
.ws4b{word-spacing:-17.040000px;}
.ws37{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws6c{word-spacing:-16.620000px;}
.ws71{word-spacing:-16.440000px;}
.ws4a{word-spacing:-16.380000px;}
.ws6a{word-spacing:-15.840000px;}
.ws38{word-spacing:-15.540000px;}
.ws93{word-spacing:-15.408000px;}
.ws1b{word-spacing:-15.000000px;}
.wsb4{word-spacing:-14.976000px;}
.ws49{word-spacing:-14.940000px;}
.ws78{word-spacing:-14.784000px;}
.wsae{word-spacing:-14.592000px;}
.wsb1{word-spacing:-14.496000px;}
.wsaf{word-spacing:-14.400000px;}
.ws75{word-spacing:-14.352000px;}
.ws1c{word-spacing:-14.250000px;}
.ws76{word-spacing:-13.920000px;}
.ws94{word-spacing:-13.440000px;}
.ws5{word-spacing:-13.344000px;}
.ws8e{word-spacing:-13.296000px;}
.ws8b{word-spacing:-13.248000px;}
.ws8f{word-spacing:-13.008000px;}
.wsb5{word-spacing:-12.864000px;}
.ws1{word-spacing:-12.852000px;}
.ws79{word-spacing:-12.816000px;}
.ws8c{word-spacing:-12.720000px;}
.ws92{word-spacing:-12.624000px;}
.ws4{word-spacing:-12.510000px;}
.ws8d{word-spacing:-12.432000px;}
.ws90{word-spacing:-12.336000px;}
.wsb2{word-spacing:-12.288000px;}
.ws7a{word-spacing:-12.240000px;}
.ws91{word-spacing:-12.192000px;}
.wsb0{word-spacing:-12.144000px;}
.ws95{word-spacing:-12.096000px;}
.ws77{word-spacing:-12.000000px;}
.ws26{word-spacing:-11.250000px;}
.ws96{word-spacing:-10.608000px;}
.ws2{word-spacing:-10.210662px;}
.wsb3{word-spacing:-9.360000px;}
.ws34{word-spacing:-6.996000px;}
.ws7c{word-spacing:-3.840000px;}
.ws57{word-spacing:-3.600000px;}
.wsa6{word-spacing:-3.408000px;}
.wsc1{word-spacing:-3.360000px;}
.ws3c{word-spacing:-3.060000px;}
.ws9b{word-spacing:-2.928000px;}
.ws7{word-spacing:-2.886000px;}
.ws48{word-spacing:-2.640000px;}
.wsb9{word-spacing:-2.592000px;}
.wsba{word-spacing:-2.496000px;}
.ws21{word-spacing:-2.460000px;}
.ws85{word-spacing:-2.352000px;}
.ws19{word-spacing:-2.220000px;}
.ws15{word-spacing:-2.100000px;}
.ws56{word-spacing:-2.040000px;}
.ws65{word-spacing:-1.980000px;}
.ws87{word-spacing:-1.920000px;}
.ws41{word-spacing:-1.860000px;}
.ws89{word-spacing:-1.824000px;}
.wsac{word-spacing:-1.248000px;}
.wsbf{word-spacing:-1.200000px;}
.wsa4{word-spacing:-1.152000px;}
.ws7e{word-spacing:-1.080000px;}
.ws51{word-spacing:-1.020000px;}
.wsbe{word-spacing:-0.912000px;}
.ws97{word-spacing:-0.864000px;}
.ws6d{word-spacing:-0.840000px;}
.ws67{word-spacing:-0.780000px;}
.ws6f{word-spacing:-0.720000px;}
.wsa3{word-spacing:-0.624000px;}
.ws88{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.480000px;}
.ws98{word-spacing:-0.432000px;}
.wsa1{word-spacing:-0.384000px;}
.ws55{word-spacing:-0.360000px;}
.ws9c{word-spacing:-0.336000px;}
.ws54{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.240000px;}
.ws8a{word-spacing:-0.192000px;}
.ws17{word-spacing:-0.180000px;}
.wsa5{word-spacing:-0.144000px;}
.ws64{word-spacing:-0.120000px;}
.wsab{word-spacing:-0.096000px;}
.ws5d{word-spacing:-0.060000px;}
.ws82{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws35{word-spacing:0.048000px;}
.ws52{word-spacing:0.060000px;}
.ws99{word-spacing:0.096000px;}
.ws3d{word-spacing:0.120000px;}
.ws11{word-spacing:0.180000px;}
.ws8{word-spacing:0.225000px;}
.ws1a{word-spacing:0.240000px;}
.wsbd{word-spacing:0.336000px;}
.ws14{word-spacing:0.360000px;}
.wsc0{word-spacing:0.384000px;}
.ws9f{word-spacing:0.432000px;}
.ws3e{word-spacing:0.480000px;}
.ws25{word-spacing:0.600000px;}
.ws39{word-spacing:0.720000px;}
.ws5b{word-spacing:0.816000px;}
.ws3f{word-spacing:0.900000px;}
.ws5c{word-spacing:0.912000px;}
.ws13{word-spacing:0.960000px;}
.ws5f{word-spacing:1.056000px;}
.ws5a{word-spacing:1.080000px;}
.ws20{word-spacing:1.260000px;}
.ws9e{word-spacing:1.296000px;}
.ws81{word-spacing:1.344000px;}
.ws1e{word-spacing:1.440000px;}
.ws68{word-spacing:1.500000px;}
.ws18{word-spacing:1.560000px;}
.ws2a{word-spacing:1.620000px;}
.wsb8{word-spacing:1.680000px;}
.ws40{word-spacing:1.740000px;}
.ws86{word-spacing:1.776000px;}
.wsa9{word-spacing:1.872000px;}
.ws61{word-spacing:1.968000px;}
.ws70{word-spacing:1.980000px;}
.wsd{word-spacing:2.100000px;}
.ws72{word-spacing:2.160000px;}
.ws16{word-spacing:2.280000px;}
.ws9a{word-spacing:2.304000px;}
.wsb6{word-spacing:2.448000px;}
.ws47{word-spacing:2.460000px;}
.wsa2{word-spacing:2.496000px;}
.ws66{word-spacing:2.520000px;}
.wsaa{word-spacing:2.544000px;}
.ws60{word-spacing:2.592000px;}
.ws45{word-spacing:2.640000px;}
.wse{word-spacing:2.760000px;}
.wsf{word-spacing:2.820000px;}
.wsb7{word-spacing:2.832000px;}
.ws42{word-spacing:2.880000px;}
.wsa0{word-spacing:2.928000px;}
.wsc{word-spacing:3.000000px;}
.ws69{word-spacing:3.120000px;}
.ws43{word-spacing:3.180000px;}
.ws62{word-spacing:3.216000px;}
.wsbc{word-spacing:3.264000px;}
.wsad{word-spacing:3.312000px;}
.wsa8{word-spacing:3.360000px;}
.ws5e{word-spacing:3.456000px;}
.wsbb{word-spacing:3.504000px;}
.ws80{word-spacing:3.552000px;}
.ws9d{word-spacing:3.600000px;}
.wsa7{word-spacing:3.648000px;}
.ws53{word-spacing:3.660000px;}
.ws36{word-spacing:3.696000px;}
.ws63{word-spacing:3.720000px;}
.ws23{word-spacing:3.780000px;}
.ws1d{word-spacing:3.840000px;}
.ws24{word-spacing:3.900000px;}
.ws83{word-spacing:3.936000px;}
.ws3b{word-spacing:3.960000px;}
.ws84{word-spacing:3.984000px;}
.ws73{word-spacing:4.020000px;}
.ws3a{word-spacing:4.080000px;}
.ws58{word-spacing:4.140000px;}
.ws2b{word-spacing:4.320000px;}
.wsb{word-spacing:4.380000px;}
.ws59{word-spacing:4.440000px;}
.ws7d{word-spacing:4.500000px;}
.ws6e{word-spacing:4.740000px;}
.ws22{word-spacing:4.800000px;}
.ws44{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws10{word-spacing:5.340000px;}
.ws7b{word-spacing:5.460000px;}
.ws7f{word-spacing:5.520000px;}
.ws0{word-spacing:49.322028px;}
.ws28{word-spacing:81.045000px;}
.ws29{word-spacing:83.565000px;}
.ws27{word-spacing:84.825000px;}
.ws2c{word-spacing:249.210000px;}
.ws32{word-spacing:250.200000px;}
.ws2d{word-spacing:250.470000px;}
.ws2f{word-spacing:318.555000px;}
.ws50{word-spacing:327.264000px;}
.ws33{word-spacing:341.235000px;}
.ws31{word-spacing:438.480000px;}
.ws2e{word-spacing:552.690000px;}
.ws30{word-spacing:643.230000px;}
.ws4e{word-spacing:815.424000px;}
.ws4f{word-spacing:817.200000px;}
.ws4d{word-spacing:878.832000px;}
._a{margin-left:-2898.096000px;}
._b{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._6{margin-left:-7.560000px;}
._c{margin-left:-6.462000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.035000px;}
._7{width:1.035000px;}
._8{width:2.778000px;}
._3{width:4.662000px;}
._9{width:6.057000px;}
._d{width:7.410000px;}
._94{width:8.760000px;}
._22{width:89.235000px;}
._79{width:90.585000px;}
._16{width:92.295000px;}
._4f{width:94.950000px;}
._19{width:96.075000px;}
._8a{width:97.095000px;}
._23{width:101.070000px;}
._2d{width:102.150000px;}
._64{width:111.735000px;}
._5f{width:121.724400px;}
._5b{width:125.481000px;}
._a2{width:128.760000px;}
._27{width:132.345000px;}
._41{width:134.865000px;}
._71{width:140.505000px;}
._72{width:145.056000px;}
._84{width:159.276000px;}
._a1{width:160.446000px;}
._57{width:162.418800px;}
._80{width:163.620000px;}
._89{width:166.140000px;}
._86{width:167.985000px;}
._51{width:169.245000px;}
._3a{width:172.350000px;}
._3b{width:173.970000px;}
._7b{width:175.410000px;}
._91{width:176.940000px;}
._48{width:178.599600px;}
._8c{width:182.274600px;}
._32{width:185.466000px;}
._8b{width:186.705000px;}
._53{width:188.370000px;}
._3d{width:191.070000px;}
._78{width:192.960000px;}
._8e{width:194.220000px;}
._55{width:197.055000px;}
._1c{width:198.585000px;}
._1e{width:200.040000px;}
._3f{width:201.105000px;}
._44{width:206.716800px;}
._21{width:209.025000px;}
._4b{width:212.310000px;}
._5a{width:214.470000px;}
._a9{width:220.902000px;}
._67{width:222.191400px;}
._61{width:224.865000px;}
._29{width:226.080000px;}
._2b{width:232.335000px;}
._1d{width:235.630800px;}
._4d{width:240.480000px;}
._15{width:243.675000px;}
._6a{width:247.050000px;}
._82{width:256.680000px;}
._a5{width:258.246000px;}
._74{width:269.145000px;}
._35{width:270.720000px;}
._20{width:276.906000px;}
._1b{width:279.180000px;}
._a6{width:280.209000px;}
._f{width:281.655000px;}
._43{width:288.180000px;}
._11{width:289.350000px;}
._1f{width:293.760000px;}
._77{width:296.685000px;}
._63{width:299.610000px;}
._25{width:301.275000px;}
._7c{width:305.055000px;}
._36{width:308.790000px;}
._34{width:310.455000px;}
._18{width:314.775000px;}
._a8{width:317.184000px;}
._26{width:320.220000px;}
._40{width:324.585000px;}
._5c{width:328.200000px;}
._17{width:330.840000px;}
._95{width:332.256000px;}
._38{width:335.070000px;}
._81{width:336.840000px;}
._83{width:337.965000px;}
._24{width:339.030000px;}
._a4{width:340.368000px;}
._37{width:342.000000px;}
._7f{width:343.230000px;}
._4e{width:345.436200px;}
._2a{width:347.760000px;}
._13{width:352.935000px;}
._a7{width:356.208000px;}
._66{width:357.300000px;}
._6c{width:358.380000px;}
._68{width:359.776800px;}
._6d{width:362.160000px;}
._47{width:363.285000px;}
._54{width:364.815000px;}
._28{width:366.315000px;}
._2c{width:367.830000px;}
._46{width:371.025000px;}
._2f{width:372.285000px;}
._3e{width:373.320000px;}
._39{width:374.580000px;}
._10{width:376.695000px;}
._31{width:379.260000px;}
._6e{width:382.050000px;}
._e{width:383.145000px;}
._69{width:390.375000px;}
._12{width:392.370000px;}
._60{width:393.660000px;}
._70{width:394.785000px;}
._42{width:397.820400px;}
._52{width:399.150000px;}
._6f{width:403.335000px;}
._49{width:407.535000px;}
._5e{width:414.420000px;}
._a3{width:415.651200px;}
._45{width:419.535000px;}
._4c{width:420.795000px;}
._90{width:422.550000px;}
._7e{width:426.300000px;}
._59{width:429.210000px;}
._2e{width:430.830000px;}
._8d{width:431.880000px;}
._3c{width:435.870000px;}
._14{width:437.940000px;}
._1a{width:439.605000px;}
._87{width:449.550000px;}
._88{width:455.685000px;}
._62{width:458.790000px;}
._92{width:461.715000px;}
._76{width:464.580000px;}
._7d{width:468.360000px;}
._33{width:473.940000px;}
._50{width:481.455000px;}
._58{width:483.030000px;}
._65{width:485.865000px;}
._8f{width:487.125000px;}
._93{width:488.295000px;}
._6b{width:489.645000px;}
._30{width:490.770000px;}
._5d{width:498.375000px;}
._85{width:500.850000px;}
._73{width:501.855000px;}
._4a{width:524.565000px;}
._56{width:578.970000px;}
._98{width:829.200000px;}
._9f{width:851.424000px;}
._9a{width:921.366000px;}
._9d{width:1041.366000px;}
._7a{width:1059.390000px;}
._99{width:1061.712000px;}
._9c{width:1067.040000px;}
._97{width:1069.680000px;}
._96{width:1070.976000px;}
._75{width:1098.765000px;}
._a0{width:1113.696000px;}
._9e{width:1124.352000px;}
._9b{width:1127.040000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y31{bottom:47.777250px;}
.y26c{bottom:80.121900px;}
.y2ad{bottom:80.263500px;}
.y118{bottom:81.642300px;}
.y1bb{bottom:83.141400px;}
.y221{bottom:83.531550px;}
.y7f{bottom:83.566650px;}
.y260{bottom:83.650350px;}
.y66{bottom:83.770350px;}
.y240{bottom:83.912100px;}
.yde{bottom:83.918850px;}
.y23b{bottom:83.920350px;}
.y1f0{bottom:84.074700px;}
.y21b{bottom:84.086400px;}
.yaa{bottom:87.653850px;}
.y2e{bottom:88.333800px;}
.y187{bottom:90.881850px;}
.y1e5{bottom:92.316150px;}
.y26b{bottom:95.121900px;}
.y2ac{bottom:95.263500px;}
.y116{bottom:97.392300px;}
.y1ba{bottom:98.885400px;}
.y220{bottom:99.275550px;}
.y7e{bottom:99.310650px;}
.y1ef{bottom:99.818700px;}
.y21a{bottom:99.830400px;}
.y25f{bottom:101.650350px;}
.y65{bottom:101.770350px;}
.y23f{bottom:101.912100px;}
.ydd{bottom:101.918850px;}
.y23a{bottom:101.920350px;}
.y2d{bottom:103.330050px;}
.ya9{bottom:105.653850px;}
.y186{bottom:106.631850px;}
.y1e4{bottom:108.564150px;}
.y26a{bottom:110.121900px;}
.y2ab{bottom:110.263500px;}
.y115{bottom:113.138700px;}
.y117{bottom:113.142300px;}
.y151{bottom:114.873150px;}
.y21f{bottom:115.019550px;}
.y1ee{bottom:115.562700px;}
.y219{bottom:115.574400px;}
.y2c{bottom:118.330050px;}
.y25e{bottom:119.650350px;}
.y64{bottom:119.770350px;}
.y23e{bottom:119.912100px;}
.ydc{bottom:119.918850px;}
.y239{bottom:119.920350px;}
.y185{bottom:122.381850px;}
.ya8{bottom:123.653850px;}
.y1e3{bottom:124.812150px;}
.y269{bottom:125.121900px;}
.y2aa{bottom:125.263500px;}
.y114{bottom:128.641200px;}
.y150{bottom:130.375650px;}
.y21e{bottom:130.763550px;}
.y1ed{bottom:131.306700px;}
.y25d{bottom:137.650350px;}
.y63{bottom:137.770350px;}
.y184{bottom:137.884350px;}
.y23d{bottom:137.912100px;}
.ydb{bottom:137.918850px;}
.y238{bottom:137.920350px;}
.y268{bottom:140.121900px;}
.y2a9{bottom:140.263500px;}
.ya7{bottom:141.653850px;}
.y113{bottom:144.143700px;}
.y14f{bottom:145.878150px;}
.y21d{bottom:146.507550px;}
.y183{bottom:153.386850px;}
.y1e2{bottom:153.816150px;}
.y2a8{bottom:155.263500px;}
.y25c{bottom:155.650350px;}
.y62{bottom:155.770350px;}
.yda{bottom:155.918850px;}
.y237{bottom:155.920350px;}
.ya6{bottom:159.653850px;}
.y182{bottom:169.136850px;}
.y1e1{bottom:170.064150px;}
.y2a7{bottom:170.263500px;}
.y112{bottom:172.403700px;}
.y267{bottom:173.230350px;}
.y25b{bottom:173.650350px;}
.y61{bottom:173.770350px;}
.yd9{bottom:173.918850px;}
.y236{bottom:173.920350px;}
.y14e{bottom:174.138150px;}
.y1b7{bottom:177.766950px;}
.y181{bottom:184.639350px;}
.y2a6{bottom:185.263500px;}
.y1e0{bottom:186.312150px;}
.y111{bottom:187.899750px;}
.y14d{bottom:189.888150px;}
.y25a{bottom:191.650350px;}
.y60{bottom:191.770350px;}
.yd8{bottom:191.918850px;}
.y235{bottom:191.920350px;}
.y1b6{bottom:194.266950px;}
.ya5{bottom:195.906600px;}
.y180{bottom:200.141850px;}
.y2a5{bottom:200.263500px;}
.y110{bottom:203.402250px;}
.y2b{bottom:204.504900px;}
.y14b{bottom:205.390650px;}
.y259{bottom:209.650350px;}
.y5f{bottom:209.770350px;}
.yd7{bottom:209.918850px;}
.y234{bottom:209.920350px;}
.y1b5{bottom:210.766950px;}
.ya4{bottom:213.377100px;}
.y2e6{bottom:215.263500px;}
.y2a4{bottom:215.265900px;}
.y1df{bottom:215.316150px;}
.y17f{bottom:215.891850px;}
.y10f{bottom:218.904750px;}
.y14a{bottom:221.133750px;}
.y14c{bottom:221.140650px;}
.y2a{bottom:222.514200px;}
.y258{bottom:227.650350px;}
.y5e{bottom:227.770350px;}
.yd6{bottom:227.918850px;}
.y233{bottom:227.920350px;}
.y2e5{bottom:230.263500px;}
.y2a3{bottom:230.265900px;}
.ya3{bottom:230.477100px;}
.y17e{bottom:231.394350px;}
.y1de{bottom:231.564150px;}
.y1b4{bottom:236.145600px;}
.y149{bottom:236.636250px;}
.y2e4{bottom:245.263500px;}
.y2a2{bottom:245.265900px;}
.y257{bottom:245.650350px;}
.y5d{bottom:245.770350px;}
.yd5{bottom:245.918850px;}
.y232{bottom:245.920350px;}
.y17d{bottom:247.144350px;}
.y10e{bottom:247.164750px;}
.ya2{bottom:247.577100px;}
.y1dd{bottom:247.812150px;}
.y29{bottom:249.859200px;}
.y1b3{bottom:251.895600px;}
.y148{bottom:252.138750px;}
.y2e3{bottom:260.263500px;}
.y2a1{bottom:260.265900px;}
.y17c{bottom:262.646850px;}
.y10d{bottom:262.914750px;}
.y256{bottom:263.650350px;}
.y5c{bottom:263.770350px;}
.yd4{bottom:263.918850px;}
.y231{bottom:263.920350px;}
.y1dc{bottom:264.060150px;}
.ya1{bottom:264.677100px;}
.y1b2{bottom:267.398100px;}
.y28{bottom:267.859200px;}
.y2e2{bottom:275.263500px;}
.y2a0{bottom:275.265900px;}
.y17b{bottom:278.149350px;}
.y10c{bottom:278.417250px;}
.y147{bottom:280.398750px;}
.y255{bottom:281.650350px;}
.y5b{bottom:281.770350px;}
.yd3{bottom:281.918850px;}
.y230{bottom:281.920350px;}
.y1b1{bottom:282.900600px;}
.y27{bottom:285.859200px;}
.y2e1{bottom:290.263500px;}
.y29f{bottom:290.265900px;}
.y17a{bottom:293.651850px;}
.y10b{bottom:293.919750px;}
.y1db{bottom:295.572150px;}
.y146{bottom:296.148750px;}
.y1b0{bottom:298.650600px;}
.y254{bottom:299.650350px;}
.y5a{bottom:299.770350px;}
.yd2{bottom:299.918850px;}
.y22f{bottom:299.920350px;}
.ya0{bottom:300.070350px;}
.y26{bottom:303.859200px;}
.y2e0{bottom:305.263500px;}
.y29e{bottom:305.265900px;}
.y179{bottom:309.154350px;}
.y10a{bottom:309.669750px;}
.y145{bottom:311.651250px;}
.y1af{bottom:314.144550px;}
.y253{bottom:317.650350px;}
.y59{bottom:317.770350px;}
.yd1{bottom:317.918850px;}
.y22e{bottom:317.920350px;}
.y9f{bottom:318.070350px;}
.y2df{bottom:320.263500px;}
.y29d{bottom:320.265900px;}
.y25{bottom:321.859200px;}
.y178{bottom:324.656850px;}
.y109{bottom:325.172250px;}
.y144{bottom:327.153750px;}
.y1ae{bottom:329.647050px;}
.y1da{bottom:330.475350px;}
.y2de{bottom:335.263500px;}
.y29c{bottom:335.265900px;}
.y266{bottom:335.365350px;}
.y252{bottom:335.650350px;}
.y58{bottom:335.770350px;}
.yd0{bottom:335.918850px;}
.y22d{bottom:335.920350px;}
.y9e{bottom:336.070350px;}
.y24{bottom:339.859200px;}
.y177{bottom:340.159350px;}
.y108{bottom:340.674750px;}
.y1ad{bottom:345.149550px;}
.y1d9{bottom:349.975350px;}
.y2dd{bottom:350.263500px;}
.y29b{bottom:350.265900px;}
.y251{bottom:353.650350px;}
.y57{bottom:353.770350px;}
.ycf{bottom:353.918850px;}
.y22c{bottom:353.920350px;}
.y9d{bottom:354.070350px;}
.y143{bottom:355.413750px;}
.y176{bottom:355.661850px;}
.y107{bottom:356.424750px;}
.y23{bottom:357.859200px;}
.y1ac{bottom:360.899550px;}
.y2dc{bottom:365.263500px;}
.y29a{bottom:365.265900px;}
.y1d8{bottom:369.475350px;}
.y141{bottom:370.916250px;}
.y175{bottom:371.153250px;}
.y265{bottom:371.365350px;}
.y250{bottom:371.650350px;}
.y56{bottom:371.770350px;}
.yce{bottom:371.918850px;}
.y22b{bottom:371.920350px;}
.y106{bottom:371.927250px;}
.y9c{bottom:372.070350px;}
.y22{bottom:375.859200px;}
.y1ab{bottom:376.402050px;}
.y2db{bottom:380.263500px;}
.y299{bottom:380.265900px;}
.y174{bottom:386.655750px;}
.y140{bottom:386.662950px;}
.y142{bottom:386.666250px;}
.y104{bottom:387.429750px;}
.y24f{bottom:389.650350px;}
.y55{bottom:389.770350px;}
.ycd{bottom:389.918850px;}
.y22a{bottom:389.920350px;}
.y9b{bottom:390.070350px;}
.y1aa{bottom:391.904550px;}
.y21{bottom:393.859200px;}
.y2da{bottom:395.263500px;}
.y298{bottom:395.265900px;}
.y13f{bottom:402.165450px;}
.y173{bottom:402.405750px;}
.y103{bottom:403.170150px;}
.y105{bottom:403.179750px;}
.y24e{bottom:407.650350px;}
.y54{bottom:407.770350px;}
.ycc{bottom:407.918850px;}
.y229{bottom:407.920350px;}
.y9a{bottom:408.070350px;}
.y2d9{bottom:410.263500px;}
.y297{bottom:410.265900px;}
.y20{bottom:411.859200px;}
.y1eb{bottom:414.280500px;}
.y13e{bottom:417.667950px;}
.y172{bottom:417.908250px;}
.y102{bottom:418.672650px;}
.y1a9{bottom:420.164550px;}
.y2d8{bottom:425.263500px;}
.y296{bottom:425.265900px;}
.y264{bottom:425.365350px;}
.y24d{bottom:425.650350px;}
.y53{bottom:425.770350px;}
.ycb{bottom:425.918850px;}
.y228{bottom:425.920350px;}
.y99{bottom:426.070350px;}
.y1f{bottom:429.859200px;}
.y13d{bottom:433.170450px;}
.y171{bottom:433.658250px;}
.y101{bottom:434.175150px;}
.y1a8{bottom:435.914550px;}
.y1ea{bottom:439.792500px;}
.y2d7{bottom:440.263500px;}
.y295{bottom:440.265900px;}
.y24c{bottom:443.650350px;}
.y52{bottom:443.770350px;}
.yca{bottom:443.918850px;}
.y227{bottom:443.920350px;}
.y1e{bottom:447.859200px;}
.y13c{bottom:448.920450px;}
.y170{bottom:449.160750px;}
.y100{bottom:449.925150px;}
.y1a7{bottom:451.417050px;}
.y2d6{bottom:455.263500px;}
.y294{bottom:455.265900px;}
.y1e9{bottom:456.040500px;}
.y24b{bottom:461.650350px;}
.y98{bottom:461.665350px;}
.y51{bottom:461.770350px;}
.yc9{bottom:461.918850px;}
.y226{bottom:461.920350px;}
.y13b{bottom:464.422950px;}
.y16f{bottom:464.663250px;}
.yff{bottom:465.427650px;}
.y1d{bottom:465.859200px;}
.y1a6{bottom:466.919550px;}
.y2d5{bottom:470.263500px;}
.y293{bottom:470.265900px;}
.y1e8{bottom:472.288500px;}
.y24a{bottom:479.650350px;}
.y50{bottom:479.770350px;}
.yc8{bottom:479.918850px;}
.y225{bottom:479.920350px;}
.y13a{bottom:479.925450px;}
.y16e{bottom:480.165750px;}
.yfe{bottom:480.930150px;}
.y1a5{bottom:482.422050px;}
.y1c{bottom:483.859200px;}
.y2d4{bottom:485.263500px;}
.y292{bottom:485.265900px;}
.y138{bottom:495.427950px;}
.y16d{bottom:495.915750px;}
.yfd{bottom:496.432650px;}
.y249{bottom:497.650350px;}
.y4f{bottom:497.770350px;}
.yc7{bottom:497.918850px;}
.y97{bottom:497.920350px;}
.y1a4{bottom:498.172050px;}
.y2d3{bottom:500.263500px;}
.y291{bottom:500.265900px;}
.y1b{bottom:501.859200px;}
.y1e7{bottom:503.800500px;}
.y137{bottom:511.172100px;}
.y139{bottom:511.177950px;}
.y16c{bottom:511.418250px;}
.yfc{bottom:511.935150px;}
.y1a3{bottom:513.674550px;}
.y2d2{bottom:515.263500px;}
.y290{bottom:515.265900px;}
.y23c{bottom:515.515350px;}
.y248{bottom:515.650350px;}
.y4e{bottom:515.770350px;}
.yc6{bottom:515.918850px;}
.y96{bottom:515.920350px;}
.y1a{bottom:519.859200px;}
.y136{bottom:526.674600px;}
.y16b{bottom:527.168250px;}
.yfb{bottom:527.437650px;}
.y1a2{bottom:529.177050px;}
.y2d1{bottom:530.263500px;}
.y28f{bottom:530.265900px;}
.y247{bottom:533.650350px;}
.y4d{bottom:533.770350px;}
.yc5{bottom:533.918850px;}
.y95{bottom:533.920350px;}
.y19{bottom:537.859200px;}
.y1e6{bottom:538.695600px;}
.y135{bottom:542.177100px;}
.y16a{bottom:542.670750px;}
.yfa{bottom:543.187650px;}
.y1a1{bottom:544.679550px;}
.y2d0{bottom:545.263500px;}
.y28e{bottom:545.265900px;}
.y246{bottom:551.650350px;}
.y4c{bottom:551.770350px;}
.yc4{bottom:551.918850px;}
.y94{bottom:551.920350px;}
.y18{bottom:555.859200px;}
.y134{bottom:557.927100px;}
.y169{bottom:558.420750px;}
.yf9{bottom:558.690150px;}
.y2cf{bottom:560.263500px;}
.y28d{bottom:560.265900px;}
.y1a0{bottom:560.429550px;}
.y245{bottom:569.650350px;}
.y4b{bottom:569.770350px;}
.yc3{bottom:569.918850px;}
.y93{bottom:569.920350px;}
.y133{bottom:573.429600px;}
.y17{bottom:573.859200px;}
.y168{bottom:573.923250px;}
.yf8{bottom:574.440150px;}
.y2ce{bottom:575.263500px;}
.y28c{bottom:575.265900px;}
.y19e{bottom:575.932050px;}
.y263{bottom:587.365350px;}
.y244{bottom:587.650350px;}
.y4a{bottom:587.770350px;}
.y1d7{bottom:587.785350px;}
.yc2{bottom:587.918850px;}
.y92{bottom:587.920350px;}
.y132{bottom:588.932100px;}
.y167{bottom:589.673250px;}
.yf7{bottom:589.942650px;}
.y2cd{bottom:590.263500px;}
.y28b{bottom:590.265900px;}
.y19d{bottom:591.671700px;}
.y19f{bottom:591.682050px;}
.y131{bottom:604.434600px;}
.y166{bottom:605.175750px;}
.y2cc{bottom:605.263500px;}
.y28a{bottom:605.265900px;}
.yf6{bottom:605.445150px;}
.y243{bottom:605.650350px;}
.y49{bottom:605.770350px;}
.y1d6{bottom:605.785350px;}
.yc1{bottom:605.918850px;}
.y91{bottom:605.920350px;}
.y19c{bottom:607.174200px;}
.y16{bottom:619.017300px;}
.y130{bottom:619.937100px;}
.y2cb{bottom:620.263500px;}
.y289{bottom:620.265900px;}
.y165{bottom:620.678250px;}
.yf5{bottom:620.947650px;}
.y19b{bottom:622.676700px;}
.y48{bottom:623.770350px;}
.y1d5{bottom:623.785350px;}
.yc0{bottom:623.918850px;}
.y90{bottom:623.920350px;}
.y15{bottom:631.468050px;}
.y2ca{bottom:635.263500px;}
.y288{bottom:635.265900px;}
.y12f{bottom:635.439600px;}
.y164{bottom:636.180750px;}
.yf4{bottom:636.697650px;}
.y242{bottom:641.245350px;}
.y1b9{bottom:641.365350px;}
.y47{bottom:641.770350px;}
.y1d4{bottom:641.785350px;}
.ybf{bottom:641.918850px;}
.y8f{bottom:641.920350px;}
.y2c9{bottom:650.263500px;}
.y287{bottom:650.265900px;}
.y19a{bottom:650.936700px;}
.y12e{bottom:650.942100px;}
.y163{bottom:651.683250px;}
.yf3{bottom:652.200150px;}
.y46{bottom:659.770350px;}
.y1d3{bottom:659.785350px;}
.ybe{bottom:659.918850px;}
.y8e{bottom:659.920350px;}
.y14{bottom:663.183600px;}
.y2c8{bottom:665.263500px;}
.y286{bottom:665.265900px;}
.y199{bottom:666.686700px;}
.y12d{bottom:666.692100px;}
.y162{bottom:667.185750px;}
.yf2{bottom:667.702650px;}
.y1b8{bottom:677.230350px;}
.y45{bottom:677.770350px;}
.y218{bottom:677.779350px;}
.y1d2{bottom:677.785350px;}
.y203{bottom:677.914350px;}
.ybd{bottom:677.918850px;}
.y8d{bottom:677.920350px;}
.y2c7{bottom:680.263500px;}
.y285{bottom:680.265900px;}
.y13{bottom:682.108950px;}
.y198{bottom:682.189200px;}
.y12c{bottom:682.194600px;}
.y161{bottom:682.688250px;}
.yf1{bottom:683.205150px;}
.y2c6{bottom:695.263500px;}
.y284{bottom:695.265900px;}
.y12{bottom:695.608950px;}
.y44{bottom:695.770350px;}
.y217{bottom:695.779350px;}
.y1d1{bottom:695.785350px;}
.y202{bottom:695.914350px;}
.ybc{bottom:695.918850px;}
.y8c{bottom:695.920350px;}
.y197{bottom:697.691700px;}
.y12b{bottom:697.697100px;}
.y160{bottom:698.190750px;}
.yf0{bottom:698.955150px;}
.y11{bottom:703.683600px;}
.y2c5{bottom:710.263500px;}
.y283{bottom:710.265900px;}
.y12a{bottom:713.447100px;}
.y43{bottom:713.770350px;}
.y216{bottom:713.779350px;}
.y1d0{bottom:713.785350px;}
.y201{bottom:713.914350px;}
.ybb{bottom:713.918850px;}
.y8b{bottom:713.920350px;}
.y15f{bottom:713.940750px;}
.yef{bottom:714.457650px;}
.y10{bottom:722.608950px;}
.y2c4{bottom:725.263500px;}
.y282{bottom:725.265900px;}
.y196{bottom:725.951700px;}
.y129{bottom:728.942250px;}
.y15e{bottom:729.443250px;}
.yee{bottom:729.960150px;}
.yf{bottom:730.683600px;}
.y262{bottom:731.365350px;}
.y224{bottom:731.515350px;}
.y42{bottom:731.770350px;}
.y215{bottom:731.779350px;}
.y1cf{bottom:731.785350px;}
.y200{bottom:731.914350px;}
.y8a{bottom:731.920350px;}
.y2c3{bottom:740.263500px;}
.y281{bottom:740.265900px;}
.y195{bottom:741.454200px;}
.ye{bottom:744.183600px;}
.y128{bottom:744.444750px;}
.y15d{bottom:744.945750px;}
.yed{bottom:745.710150px;}
.yba{bottom:749.513850px;}
.y223{bottom:749.515350px;}
.y41{bottom:749.770350px;}
.y214{bottom:749.779350px;}
.y1ce{bottom:749.785350px;}
.y1ff{bottom:749.914350px;}
.y89{bottom:749.920350px;}
.y2c2{bottom:755.263500px;}
.y280{bottom:755.265900px;}
.y194{bottom:756.956700px;}
.y127{bottom:760.194750px;}
.yec{bottom:761.212650px;}
.yd{bottom:763.108950px;}
.yb9{bottom:767.513850px;}
.y40{bottom:767.770350px;}
.y213{bottom:767.779350px;}
.y1cd{bottom:767.785350px;}
.y1fe{bottom:767.914350px;}
.y88{bottom:767.920350px;}
.y80{bottom:768.988050px;}
.y2c1{bottom:770.263500px;}
.y27f{bottom:770.265900px;}
.yc{bottom:771.183600px;}
.y15c{bottom:773.204700px;}
.y126{bottom:775.697250px;}
.yeb{bottom:776.706150px;}
.y193{bottom:785.216700px;}
.y2c0{bottom:785.263500px;}
.y27e{bottom:785.265900px;}
.y1bd{bottom:785.515350px;}
.y3f{bottom:785.770350px;}
.y212{bottom:785.779350px;}
.y1cc{bottom:785.785350px;}
.y1fd{bottom:785.914350px;}
.y87{bottom:785.920350px;}
.y15b{bottom:788.707200px;}
.yb{bottom:790.108950px;}
.y125{bottom:791.199750px;}
.yea{bottom:792.208650px;}
.ya{bottom:798.183600px;}
.y2bf{bottom:800.263500px;}
.y27d{bottom:800.265900px;}
.y192{bottom:800.719200px;}
.yb8{bottom:803.768850px;}
.y3e{bottom:803.770350px;}
.y211{bottom:803.779350px;}
.y1cb{bottom:803.785350px;}
.y1fc{bottom:803.914350px;}
.y86{bottom:803.920350px;}
.y159{bottom:804.209700px;}
.ye9{bottom:807.711150px;}
.y2be{bottom:815.263500px;}
.y27c{bottom:815.265900px;}
.y191{bottom:816.469200px;}
.y9{bottom:817.108950px;}
.y124{bottom:819.459750px;}
.y158{bottom:819.956700px;}
.y15a{bottom:819.959700px;}
.yb7{bottom:821.768850px;}
.y3d{bottom:821.770350px;}
.y210{bottom:821.779350px;}
.y1ca{bottom:821.785350px;}
.y7d{bottom:821.905350px;}
.y1fb{bottom:821.914350px;}
.y85{bottom:821.920350px;}
.ye8{bottom:823.213650px;}
.y2bd{bottom:830.263500px;}
.y27b{bottom:830.265900px;}
.y190{bottom:831.971700px;}
.y123{bottom:835.209750px;}
.y157{bottom:835.459200px;}
.ye7{bottom:838.716150px;}
.yb6{bottom:839.768850px;}
.y3c{bottom:839.770350px;}
.y20f{bottom:839.779350px;}
.y1c9{bottom:839.785350px;}
.y7c{bottom:839.905350px;}
.y1fa{bottom:839.914350px;}
.y84{bottom:839.920350px;}
.y2bc{bottom:845.263500px;}
.y27a{bottom:845.265900px;}
.y8{bottom:845.836200px;}
.y18f{bottom:847.474200px;}
.y122{bottom:850.712250px;}
.y156{bottom:850.961700px;}
.ye6{bottom:854.218650px;}
.y241{bottom:857.515350px;}
.yb5{bottom:857.768850px;}
.y71{bottom:857.770350px;}
.y3b{bottom:857.772600px;}
.y20e{bottom:857.779350px;}
.y1c8{bottom:857.785350px;}
.y7b{bottom:857.905350px;}
.y1f9{bottom:857.914350px;}
.y2bb{bottom:860.263500px;}
.y279{bottom:860.265900px;}
.y18e{bottom:863.224200px;}
.y121{bottom:866.214750px;}
.y7{bottom:866.836200px;}
.y2ba{bottom:875.263500px;}
.y278{bottom:875.265900px;}
.y83{bottom:875.515350px;}
.yb4{bottom:875.768850px;}
.y70{bottom:875.770350px;}
.y3a{bottom:875.772600px;}
.y20d{bottom:875.779350px;}
.y1c7{bottom:875.785350px;}
.y7a{bottom:875.905350px;}
.y1f8{bottom:875.914350px;}
.y18d{bottom:878.974200px;}
.y155{bottom:879.221700px;}
.ye5{bottom:882.478650px;}
.y6{bottom:887.830950px;}
.y2b9{bottom:890.263500px;}
.y277{bottom:890.265900px;}
.y82{bottom:893.515350px;}
.yb3{bottom:893.768850px;}
.y6f{bottom:893.770350px;}
.y39{bottom:893.772600px;}
.y20c{bottom:893.779350px;}
.y1c6{bottom:893.785350px;}
.y79{bottom:893.905350px;}
.y1f7{bottom:893.914350px;}
.y120{bottom:894.474750px;}
.y18c{bottom:894.476700px;}
.y154{bottom:894.724200px;}
.ye4{bottom:897.981150px;}
.y2b8{bottom:905.263500px;}
.y276{bottom:905.265900px;}
.y18b{bottom:909.979200px;}
.y11f{bottom:910.224750px;}
.y153{bottom:910.474200px;}
.yb2{bottom:911.768850px;}
.y6e{bottom:911.770350px;}
.y38{bottom:911.772600px;}
.y20b{bottom:911.779350px;}
.y1c5{bottom:911.785350px;}
.y78{bottom:911.905350px;}
.y1f6{bottom:911.914350px;}
.ye3{bottom:913.483650px;}
.y2b7{bottom:920.263500px;}
.y275{bottom:920.265900px;}
.y11d{bottom:925.727250px;}
.y18a{bottom:925.729200px;}
.y152{bottom:925.976700px;}
.yb1{bottom:929.768850px;}
.y6d{bottom:929.770350px;}
.y37{bottom:929.772600px;}
.y20a{bottom:929.779350px;}
.y1c4{bottom:929.785350px;}
.y77{bottom:929.905350px;}
.y1f5{bottom:929.914350px;}
.y5{bottom:934.004400px;}
.y2b6{bottom:935.263500px;}
.y274{bottom:935.265900px;}
.y189{bottom:941.231700px;}
.y11e{bottom:941.477250px;}
.y11c{bottom:941.479200px;}
.ye2{bottom:944.623650px;}
.yb0{bottom:947.768850px;}
.y6c{bottom:947.770350px;}
.y36{bottom:947.772600px;}
.y209{bottom:947.779350px;}
.y1c3{bottom:947.785350px;}
.y76{bottom:947.905350px;}
.y1f4{bottom:947.914350px;}
.y2b5{bottom:950.263500px;}
.y273{bottom:950.265900px;}
.y188{bottom:956.734200px;}
.y11b{bottom:956.981700px;}
.y2b4{bottom:965.263500px;}
.y272{bottom:965.265900px;}
.yaf{bottom:965.768850px;}
.y6b{bottom:965.770350px;}
.y35{bottom:965.772600px;}
.y208{bottom:965.779350px;}
.y1c2{bottom:965.785350px;}
.y75{bottom:965.905350px;}
.y1f3{bottom:965.914350px;}
.y4{bottom:970.465200px;}
.y11a{bottom:972.484200px;}
.ye1{bottom:979.270350px;}
.y2b3{bottom:980.263500px;}
.y271{bottom:980.265900px;}
.y261{bottom:983.365350px;}
.yae{bottom:983.768850px;}
.y6a{bottom:983.770350px;}
.y34{bottom:983.772600px;}
.y207{bottom:983.779350px;}
.y1c1{bottom:983.785350px;}
.y2b2{bottom:995.263500px;}
.y270{bottom:995.265900px;}
.ye0{bottom:998.770350px;}
.y74{bottom:1001.500350px;}
.y1f2{bottom:1001.509350px;}
.yad{bottom:1001.768850px;}
.y69{bottom:1001.770350px;}
.y33{bottom:1001.772600px;}
.y206{bottom:1001.779350px;}
.y1c0{bottom:1001.785350px;}
.y119{bottom:1003.241700px;}
.y3{bottom:1006.926000px;}
.y2b1{bottom:1010.263500px;}
.y26f{bottom:1010.265900px;}
.ydf{bottom:1018.270350px;}
.yac{bottom:1019.768850px;}
.y68{bottom:1019.770350px;}
.y205{bottom:1019.779350px;}
.y1bf{bottom:1019.785350px;}
.y2b0{bottom:1025.263500px;}
.y26e{bottom:1025.265900px;}
.y73{bottom:1037.365350px;}
.y32{bottom:1037.367600px;}
.yab{bottom:1037.768850px;}
.y67{bottom:1037.770350px;}
.y204{bottom:1037.779350px;}
.y1be{bottom:1037.785350px;}
.y2af{bottom:1040.263500px;}
.y26d{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y72{bottom:1132.418700px;}
.y81{bottom:1132.420050px;}
.y1ec{bottom:1132.420500px;}
.y1bc{bottom:1132.421400px;}
.y2ae{bottom:1132.423500px;}
.y21c{bottom:1132.430400px;}
.y222{bottom:1132.439550px;}
.y1f1{bottom:1132.442700px;}
.y30{bottom:1136.092500px;}
.y2f{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.h15{height:31.267090px;}
.h1c{height:31.280290px;}
.h20{height:31.311490px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h13{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h19{height:39.418313px;}
.h1f{height:39.430313px;}
.h1e{height:39.438113px;}
.h18{height:39.440513px;}
.h1b{height:39.449513px;}
.h17{height:39.451313px;}
.h1d{height:39.453113px;}
.h1a{height:39.455513px;}
.h16{height:39.462113px;}
.h21{height:39.467513px;}
.h14{height:39.604980px;}
.h10{height:41.689453px;}
.h22{height:42.054361px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h11{height:52.558951px;}
.h12{height:52.567951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x19{left:78.661350px;}
.x1a{left:89.292600px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x29{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x2b{left:123.307050px;}
.x3{left:125.427900px;}
.x24{left:131.815350px;}
.x5{left:191.338500px;}
.x28{left:194.300400px;}
.x27{left:220.137450px;}
.x20{left:326.337750px;}
.x23{left:412.257600px;}
.x21{left:433.527750px;}
.x7{left:455.041500px;}
.xa{left:457.083450px;}
.x1d{left:458.189250px;}
.xf{left:478.345350px;}
.x16{left:479.491200px;}
.x2a{left:482.591400px;}
.xb{left:491.103450px;}
.x2c{left:503.839050px;}
.x10{left:512.365350px;}
.xe{left:546.535350px;}
.x1e{left:569.710500px;}
.x1f{left:571.116750px;}
.x17{left:591.214950px;}
.x18{left:593.037450px;}
.x1b{left:607.983000px;}
.x22{left:611.176500px;}
.x25{left:612.895350px;}
.x14{left:629.262450px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x26{left:721.715400px;}
.xc{left:728.391600px;}
.x1c{left:737.020500px;}
.x11{left:743.891850px;}
.x12{left:749.651850px;}
.x15{left:758.299950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v4{vertical-align:18.874133pt;}
.v5{vertical-align:20.098133pt;}
.v3{vertical-align:25.114667pt;}
.v1{vertical-align:27.005867pt;}
.ls7{letter-spacing:-4.144000pt;}
.lsab{letter-spacing:-2.346667pt;}
.lsa3{letter-spacing:-1.237333pt;}
.ls6{letter-spacing:-0.693333pt;}
.lsae{letter-spacing:-0.426667pt;}
.lsa4{letter-spacing:-0.384000pt;}
.lsaa{letter-spacing:-0.298667pt;}
.lsac{letter-spacing:-0.256000pt;}
.ls42{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.200000pt;}
.ls39{letter-spacing:-0.160000pt;}
.lsad{letter-spacing:-0.128000pt;}
.ls5f{letter-spacing:-0.106667pt;}
.lsa2{letter-spacing:-0.085333pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls56{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003680pt;}
.ls2{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.ls8b{letter-spacing:0.042667pt;}
.ls5a{letter-spacing:0.053333pt;}
.ls9d{letter-spacing:0.085333pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls9b{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.160000pt;}
.ls84{letter-spacing:0.170667pt;}
.ls25{letter-spacing:0.187200pt;}
.ls21{letter-spacing:0.213333pt;}
.lsa0{letter-spacing:0.256000pt;}
.ls64{letter-spacing:0.266667pt;}
.ls98{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.320000pt;}
.ls94{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.373333pt;}
.ls93{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.480000pt;}
.ls7a{letter-spacing:0.512000pt;}
.ls34{letter-spacing:0.533333pt;}
.ls80{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls86{letter-spacing:0.597333pt;}
.ls41{letter-spacing:0.640000pt;}
.ls87{letter-spacing:0.682667pt;}
.ls30{letter-spacing:0.693333pt;}
.ls83{letter-spacing:0.725333pt;}
.ls22{letter-spacing:0.746667pt;}
.ls90{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls9c{letter-spacing:0.810667pt;}
.ls35{letter-spacing:0.853333pt;}
.ls78{letter-spacing:0.896000pt;}
.ls2c{letter-spacing:0.906667pt;}
.ls12{letter-spacing:0.912533pt;}
.ls73{letter-spacing:0.938667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls72{letter-spacing:0.981333pt;}
.ls31{letter-spacing:1.013333pt;}
.ls9a{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.066667pt;}
.ls7b{letter-spacing:1.109333pt;}
.ls18{letter-spacing:1.120000pt;}
.ls97{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.173333pt;}
.lsa1{letter-spacing:1.194667pt;}
.lse{letter-spacing:1.226667pt;}
.ls9e{letter-spacing:1.237333pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls8d{letter-spacing:1.322667pt;}
.ls33{letter-spacing:1.333333pt;}
.ls77{letter-spacing:1.365333pt;}
.ls1b{letter-spacing:1.386667pt;}
.ls7f{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls4a{letter-spacing:1.493333pt;}
.ls89{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.546667pt;}
.ls88{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.lsd{letter-spacing:1.653333pt;}
.ls85{letter-spacing:1.664000pt;}
.ls1f{letter-spacing:1.706667pt;}
.ls74{letter-spacing:1.749333pt;}
.ls38{letter-spacing:1.760000pt;}
.ls91{letter-spacing:1.792000pt;}
.ls32{letter-spacing:1.813333pt;}
.ls81{letter-spacing:1.834667pt;}
.ls2f{letter-spacing:1.866667pt;}
.ls37{letter-spacing:1.920000pt;}
.ls7c{letter-spacing:1.962667pt;}
.ls1e{letter-spacing:1.973333pt;}
.ls8f{letter-spacing:2.005333pt;}
.lsa{letter-spacing:2.026667pt;}
.ls8c{letter-spacing:2.048000pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls75{letter-spacing:2.090667pt;}
.ls9{letter-spacing:2.133333pt;}
.ls3c{letter-spacing:2.186667pt;}
.ls99{letter-spacing:2.218667pt;}
.lsc{letter-spacing:2.240000pt;}
.ls9f{letter-spacing:2.261333pt;}
.ls19{letter-spacing:2.293333pt;}
.lsa5{letter-spacing:2.304000pt;}
.ls61{letter-spacing:2.346667pt;}
.lsa9{letter-spacing:2.389333pt;}
.ls2e{letter-spacing:2.400000pt;}
.ls24{letter-spacing:2.453333pt;}
.ls7e{letter-spacing:2.474667pt;}
.ls59{letter-spacing:2.506667pt;}
.lsa7{letter-spacing:2.517333pt;}
.ls29{letter-spacing:2.560000pt;}
.ls96{letter-spacing:2.602667pt;}
.ls17{letter-spacing:2.613333pt;}
.lsa6{letter-spacing:2.645333pt;}
.ls23{letter-spacing:2.666667pt;}
.ls5e{letter-spacing:2.720000pt;}
.ls58{letter-spacing:2.773333pt;}
.ls8e{letter-spacing:2.816000pt;}
.ls36{letter-spacing:2.826667pt;}
.ls45{letter-spacing:2.880000pt;}
.ls14{letter-spacing:2.933333pt;}
.ls5b{letter-spacing:2.986667pt;}
.ls82{letter-spacing:3.029333pt;}
.ls1a{letter-spacing:3.093333pt;}
.ls3b{letter-spacing:3.146667pt;}
.ls62{letter-spacing:3.200000pt;}
.ls5d{letter-spacing:3.253333pt;}
.ls46{letter-spacing:3.306667pt;}
.ls57{letter-spacing:3.360000pt;}
.ls40{letter-spacing:3.413333pt;}
.ls6f{letter-spacing:3.466667pt;}
.ls47{letter-spacing:3.520000pt;}
.ls7d{letter-spacing:3.541333pt;}
.ls60{letter-spacing:3.626667pt;}
.ls44{letter-spacing:3.733333pt;}
.ls13{letter-spacing:3.786667pt;}
.ls48{letter-spacing:3.840000pt;}
.ls95{letter-spacing:3.882667pt;}
.ls43{letter-spacing:3.946667pt;}
.ls92{letter-spacing:4.138667pt;}
.ls3d{letter-spacing:4.160000pt;}
.ls6b{letter-spacing:4.213333pt;}
.ls69{letter-spacing:4.266667pt;}
.ls3f{letter-spacing:4.320000pt;}
.ls63{letter-spacing:4.373333pt;}
.ls5c{letter-spacing:4.426667pt;}
.ls49{letter-spacing:4.586667pt;}
.ls68{letter-spacing:4.640000pt;}
.ls66{letter-spacing:4.746667pt;}
.lsa8{letter-spacing:5.290667pt;}
.ls67{letter-spacing:5.653333pt;}
.ls6a{letter-spacing:6.186667pt;}
.ls71{letter-spacing:6.400000pt;}
.ls6d{letter-spacing:6.560000pt;}
.ls8a{letter-spacing:6.613333pt;}
.ls6c{letter-spacing:7.786667pt;}
.ls70{letter-spacing:7.840000pt;}
.ls6e{letter-spacing:10.986667pt;}
.ls3{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls4b{letter-spacing:62.040000pt;}
.ls65{letter-spacing:174.976000pt;}
.ls52{letter-spacing:192.053067pt;}
.ls4c{letter-spacing:230.832267pt;}
.ls51{letter-spacing:279.133067pt;}
.ls55{letter-spacing:334.709600pt;}
.ls54{letter-spacing:342.414667pt;}
.ls4d{letter-spacing:355.139467pt;}
.ls4f{letter-spacing:360.217333pt;}
.ls4e{letter-spacing:383.498933pt;}
.ls53{letter-spacing:410.236533pt;}
.ls50{letter-spacing:522.414667pt;}
.ws74{word-spacing:-16.586667pt;}
.ws4c{word-spacing:-16.533333pt;}
.ws46{word-spacing:-15.413333pt;}
.ws6b{word-spacing:-15.360000pt;}
.ws4b{word-spacing:-15.146667pt;}
.ws37{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws6c{word-spacing:-14.773333pt;}
.ws71{word-spacing:-14.613333pt;}
.ws4a{word-spacing:-14.560000pt;}
.ws6a{word-spacing:-14.080000pt;}
.ws38{word-spacing:-13.813333pt;}
.ws93{word-spacing:-13.696000pt;}
.ws1b{word-spacing:-13.333333pt;}
.wsb4{word-spacing:-13.312000pt;}
.ws49{word-spacing:-13.280000pt;}
.ws78{word-spacing:-13.141333pt;}
.wsae{word-spacing:-12.970667pt;}
.wsb1{word-spacing:-12.885333pt;}
.wsaf{word-spacing:-12.800000pt;}
.ws75{word-spacing:-12.757333pt;}
.ws1c{word-spacing:-12.666667pt;}
.ws76{word-spacing:-12.373333pt;}
.ws94{word-spacing:-11.946667pt;}
.ws5{word-spacing:-11.861333pt;}
.ws8e{word-spacing:-11.818667pt;}
.ws8b{word-spacing:-11.776000pt;}
.ws8f{word-spacing:-11.562667pt;}
.wsb5{word-spacing:-11.434667pt;}
.ws1{word-spacing:-11.424000pt;}
.ws79{word-spacing:-11.392000pt;}
.ws8c{word-spacing:-11.306667pt;}
.ws92{word-spacing:-11.221333pt;}
.ws4{word-spacing:-11.120000pt;}
.ws8d{word-spacing:-11.050667pt;}
.ws90{word-spacing:-10.965333pt;}
.wsb2{word-spacing:-10.922667pt;}
.ws7a{word-spacing:-10.880000pt;}
.ws91{word-spacing:-10.837333pt;}
.wsb0{word-spacing:-10.794667pt;}
.ws95{word-spacing:-10.752000pt;}
.ws77{word-spacing:-10.666667pt;}
.ws26{word-spacing:-10.000000pt;}
.ws96{word-spacing:-9.429333pt;}
.ws2{word-spacing:-9.076144pt;}
.wsb3{word-spacing:-8.320000pt;}
.ws34{word-spacing:-6.218667pt;}
.ws7c{word-spacing:-3.413333pt;}
.ws57{word-spacing:-3.200000pt;}
.wsa6{word-spacing:-3.029333pt;}
.wsc1{word-spacing:-2.986667pt;}
.ws3c{word-spacing:-2.720000pt;}
.ws9b{word-spacing:-2.602667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws48{word-spacing:-2.346667pt;}
.wsb9{word-spacing:-2.304000pt;}
.wsba{word-spacing:-2.218667pt;}
.ws21{word-spacing:-2.186667pt;}
.ws85{word-spacing:-2.090667pt;}
.ws19{word-spacing:-1.973333pt;}
.ws15{word-spacing:-1.866667pt;}
.ws56{word-spacing:-1.813333pt;}
.ws65{word-spacing:-1.760000pt;}
.ws87{word-spacing:-1.706667pt;}
.ws41{word-spacing:-1.653333pt;}
.ws89{word-spacing:-1.621333pt;}
.wsac{word-spacing:-1.109333pt;}
.wsbf{word-spacing:-1.066667pt;}
.wsa4{word-spacing:-1.024000pt;}
.ws7e{word-spacing:-0.960000pt;}
.ws51{word-spacing:-0.906667pt;}
.wsbe{word-spacing:-0.810667pt;}
.ws97{word-spacing:-0.768000pt;}
.ws6d{word-spacing:-0.746667pt;}
.ws67{word-spacing:-0.693333pt;}
.ws6f{word-spacing:-0.640000pt;}
.wsa3{word-spacing:-0.554667pt;}
.ws88{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.426667pt;}
.ws98{word-spacing:-0.384000pt;}
.wsa1{word-spacing:-0.341333pt;}
.ws55{word-spacing:-0.320000pt;}
.ws9c{word-spacing:-0.298667pt;}
.ws54{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws8a{word-spacing:-0.170667pt;}
.ws17{word-spacing:-0.160000pt;}
.wsa5{word-spacing:-0.128000pt;}
.ws64{word-spacing:-0.106667pt;}
.wsab{word-spacing:-0.085333pt;}
.ws5d{word-spacing:-0.053333pt;}
.ws82{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws35{word-spacing:0.042667pt;}
.ws52{word-spacing:0.053333pt;}
.ws99{word-spacing:0.085333pt;}
.ws3d{word-spacing:0.106667pt;}
.ws11{word-spacing:0.160000pt;}
.ws8{word-spacing:0.200000pt;}
.ws1a{word-spacing:0.213333pt;}
.wsbd{word-spacing:0.298667pt;}
.ws14{word-spacing:0.320000pt;}
.wsc0{word-spacing:0.341333pt;}
.ws9f{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.426667pt;}
.ws25{word-spacing:0.533333pt;}
.ws39{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.725333pt;}
.ws3f{word-spacing:0.800000pt;}
.ws5c{word-spacing:0.810667pt;}
.ws13{word-spacing:0.853333pt;}
.ws5f{word-spacing:0.938667pt;}
.ws5a{word-spacing:0.960000pt;}
.ws20{word-spacing:1.120000pt;}
.ws9e{word-spacing:1.152000pt;}
.ws81{word-spacing:1.194667pt;}
.ws1e{word-spacing:1.280000pt;}
.ws68{word-spacing:1.333333pt;}
.ws18{word-spacing:1.386667pt;}
.ws2a{word-spacing:1.440000pt;}
.wsb8{word-spacing:1.493333pt;}
.ws40{word-spacing:1.546667pt;}
.ws86{word-spacing:1.578667pt;}
.wsa9{word-spacing:1.664000pt;}
.ws61{word-spacing:1.749333pt;}
.ws70{word-spacing:1.760000pt;}
.wsd{word-spacing:1.866667pt;}
.ws72{word-spacing:1.920000pt;}
.ws16{word-spacing:2.026667pt;}
.ws9a{word-spacing:2.048000pt;}
.wsb6{word-spacing:2.176000pt;}
.ws47{word-spacing:2.186667pt;}
.wsa2{word-spacing:2.218667pt;}
.ws66{word-spacing:2.240000pt;}
.wsaa{word-spacing:2.261333pt;}
.ws60{word-spacing:2.304000pt;}
.ws45{word-spacing:2.346667pt;}
.wse{word-spacing:2.453333pt;}
.wsf{word-spacing:2.506667pt;}
.wsb7{word-spacing:2.517333pt;}
.ws42{word-spacing:2.560000pt;}
.wsa0{word-spacing:2.602667pt;}
.wsc{word-spacing:2.666667pt;}
.ws69{word-spacing:2.773333pt;}
.ws43{word-spacing:2.826667pt;}
.ws62{word-spacing:2.858667pt;}
.wsbc{word-spacing:2.901333pt;}
.wsad{word-spacing:2.944000pt;}
.wsa8{word-spacing:2.986667pt;}
.ws5e{word-spacing:3.072000pt;}
.wsbb{word-spacing:3.114667pt;}
.ws80{word-spacing:3.157333pt;}
.ws9d{word-spacing:3.200000pt;}
.wsa7{word-spacing:3.242667pt;}
.ws53{word-spacing:3.253333pt;}
.ws36{word-spacing:3.285333pt;}
.ws63{word-spacing:3.306667pt;}
.ws23{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.413333pt;}
.ws24{word-spacing:3.466667pt;}
.ws83{word-spacing:3.498667pt;}
.ws3b{word-spacing:3.520000pt;}
.ws84{word-spacing:3.541333pt;}
.ws73{word-spacing:3.573333pt;}
.ws3a{word-spacing:3.626667pt;}
.ws58{word-spacing:3.680000pt;}
.ws2b{word-spacing:3.840000pt;}
.wsb{word-spacing:3.893333pt;}
.ws59{word-spacing:3.946667pt;}
.ws7d{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.213333pt;}
.ws22{word-spacing:4.266667pt;}
.ws44{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws10{word-spacing:4.746667pt;}
.ws7b{word-spacing:4.853333pt;}
.ws7f{word-spacing:4.906667pt;}
.ws0{word-spacing:43.841803pt;}
.ws28{word-spacing:72.040000pt;}
.ws29{word-spacing:74.280000pt;}
.ws27{word-spacing:75.400000pt;}
.ws2c{word-spacing:221.520000pt;}
.ws32{word-spacing:222.400000pt;}
.ws2d{word-spacing:222.640000pt;}
.ws2f{word-spacing:283.160000pt;}
.ws50{word-spacing:290.901333pt;}
.ws33{word-spacing:303.320000pt;}
.ws31{word-spacing:389.760000pt;}
.ws2e{word-spacing:491.280000pt;}
.ws30{word-spacing:571.760000pt;}
.ws4e{word-spacing:724.821333pt;}
.ws4f{word-spacing:726.400000pt;}
.ws4d{word-spacing:781.184000pt;}
._a{margin-left:-2576.085333pt;}
._b{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._6{margin-left:-6.720000pt;}
._c{margin-left:-5.744000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.920000pt;}
._7{width:0.920000pt;}
._8{width:2.469333pt;}
._3{width:4.144000pt;}
._9{width:5.384000pt;}
._d{width:6.586667pt;}
._94{width:7.786667pt;}
._22{width:79.320000pt;}
._79{width:80.520000pt;}
._16{width:82.040000pt;}
._4f{width:84.400000pt;}
._19{width:85.400000pt;}
._8a{width:86.306667pt;}
._23{width:89.840000pt;}
._2d{width:90.800000pt;}
._64{width:99.320000pt;}
._5f{width:108.199467pt;}
._5b{width:111.538667pt;}
._a2{width:114.453333pt;}
._27{width:117.640000pt;}
._41{width:119.880000pt;}
._71{width:124.893333pt;}
._72{width:128.938667pt;}
._84{width:141.578667pt;}
._a1{width:142.618667pt;}
._57{width:144.372267pt;}
._80{width:145.440000pt;}
._89{width:147.680000pt;}
._86{width:149.320000pt;}
._51{width:150.440000pt;}
._3a{width:153.200000pt;}
._3b{width:154.640000pt;}
._7b{width:155.920000pt;}
._91{width:157.280000pt;}
._48{width:158.755200pt;}
._8c{width:162.021867pt;}
._32{width:164.858667pt;}
._8b{width:165.960000pt;}
._53{width:167.440000pt;}
._3d{width:169.840000pt;}
._78{width:171.520000pt;}
._8e{width:172.640000pt;}
._55{width:175.160000pt;}
._1c{width:176.520000pt;}
._1e{width:177.813333pt;}
._3f{width:178.760000pt;}
._44{width:183.748267pt;}
._21{width:185.800000pt;}
._4b{width:188.720000pt;}
._5a{width:190.640000pt;}
._a9{width:196.357333pt;}
._67{width:197.503467pt;}
._61{width:199.880000pt;}
._29{width:200.960000pt;}
._2b{width:206.520000pt;}
._1d{width:209.449600pt;}
._4d{width:213.760000pt;}
._15{width:216.600000pt;}
._6a{width:219.600000pt;}
._82{width:228.160000pt;}
._a5{width:229.552000pt;}
._74{width:239.240000pt;}
._35{width:240.640000pt;}
._20{width:246.138667pt;}
._1b{width:248.160000pt;}
._a6{width:249.074667pt;}
._f{width:250.360000pt;}
._43{width:256.160000pt;}
._11{width:257.200000pt;}
._1f{width:261.120000pt;}
._77{width:263.720000pt;}
._63{width:266.320000pt;}
._25{width:267.800000pt;}
._7c{width:271.160000pt;}
._36{width:274.480000pt;}
._34{width:275.960000pt;}
._18{width:279.800000pt;}
._a8{width:281.941333pt;}
._26{width:284.640000pt;}
._40{width:288.520000pt;}
._5c{width:291.733333pt;}
._17{width:294.080000pt;}
._95{width:295.338667pt;}
._38{width:297.840000pt;}
._81{width:299.413333pt;}
._83{width:300.413333pt;}
._24{width:301.360000pt;}
._a4{width:302.549333pt;}
._37{width:304.000000pt;}
._7f{width:305.093333pt;}
._4e{width:307.054400pt;}
._2a{width:309.120000pt;}
._13{width:313.720000pt;}
._a7{width:316.629333pt;}
._66{width:317.600000pt;}
._6c{width:318.560000pt;}
._68{width:319.801600pt;}
._6d{width:321.920000pt;}
._47{width:322.920000pt;}
._54{width:324.280000pt;}
._28{width:325.613333pt;}
._2c{width:326.960000pt;}
._46{width:329.800000pt;}
._2f{width:330.920000pt;}
._3e{width:331.840000pt;}
._39{width:332.960000pt;}
._10{width:334.840000pt;}
._31{width:337.120000pt;}
._6e{width:339.600000pt;}
._e{width:340.573333pt;}
._69{width:347.000000pt;}
._12{width:348.773333pt;}
._60{width:349.920000pt;}
._70{width:350.920000pt;}
._42{width:353.618133pt;}
._52{width:354.800000pt;}
._6f{width:358.520000pt;}
._49{width:362.253333pt;}
._5e{width:368.373333pt;}
._a3{width:369.467733pt;}
._45{width:372.920000pt;}
._4c{width:374.040000pt;}
._90{width:375.600000pt;}
._7e{width:378.933333pt;}
._59{width:381.520000pt;}
._2e{width:382.960000pt;}
._8d{width:383.893333pt;}
._3c{width:387.440000pt;}
._14{width:389.280000pt;}
._1a{width:390.760000pt;}
._87{width:399.600000pt;}
._88{width:405.053333pt;}
._62{width:407.813333pt;}
._92{width:410.413333pt;}
._76{width:412.960000pt;}
._7d{width:416.320000pt;}
._33{width:421.280000pt;}
._50{width:427.960000pt;}
._58{width:429.360000pt;}
._65{width:431.880000pt;}
._8f{width:433.000000pt;}
._93{width:434.040000pt;}
._6b{width:435.240000pt;}
._30{width:436.240000pt;}
._5d{width:443.000000pt;}
._85{width:445.200000pt;}
._73{width:446.093333pt;}
._4a{width:466.280000pt;}
._56{width:514.640000pt;}
._98{width:737.066667pt;}
._9f{width:756.821333pt;}
._9a{width:818.992000pt;}
._9d{width:925.658667pt;}
._7a{width:941.680000pt;}
._99{width:943.744000pt;}
._9c{width:948.480000pt;}
._97{width:950.826667pt;}
._96{width:951.978667pt;}
._75{width:976.680000pt;}
._a0{width:989.952000pt;}
._9e{width:999.424000pt;}
._9b{width:1001.813333pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y31{bottom:42.468667pt;}
.y26c{bottom:71.219467pt;}
.y2ad{bottom:71.345333pt;}
.y118{bottom:72.570933pt;}
.y1bb{bottom:73.903467pt;}
.y221{bottom:74.250267pt;}
.y7f{bottom:74.281467pt;}
.y260{bottom:74.355867pt;}
.y66{bottom:74.462533pt;}
.y240{bottom:74.588533pt;}
.yde{bottom:74.594533pt;}
.y23b{bottom:74.595867pt;}
.y1f0{bottom:74.733067pt;}
.y21b{bottom:74.743467pt;}
.yaa{bottom:77.914533pt;}
.y2e{bottom:78.518933pt;}
.y187{bottom:80.783867pt;}
.y1e5{bottom:82.058800pt;}
.y26b{bottom:84.552800pt;}
.y2ac{bottom:84.678667pt;}
.y116{bottom:86.570933pt;}
.y1ba{bottom:87.898133pt;}
.y220{bottom:88.244933pt;}
.y7e{bottom:88.276133pt;}
.y1ef{bottom:88.727733pt;}
.y21a{bottom:88.738133pt;}
.y25f{bottom:90.355867pt;}
.y65{bottom:90.462533pt;}
.y23f{bottom:90.588533pt;}
.ydd{bottom:90.594533pt;}
.y23a{bottom:90.595867pt;}
.y2d{bottom:91.848933pt;}
.ya9{bottom:93.914533pt;}
.y186{bottom:94.783867pt;}
.y1e4{bottom:96.501467pt;}
.y26a{bottom:97.886133pt;}
.y2ab{bottom:98.012000pt;}
.y115{bottom:100.567733pt;}
.y117{bottom:100.570933pt;}
.y151{bottom:102.109467pt;}
.y21f{bottom:102.239600pt;}
.y1ee{bottom:102.722400pt;}
.y219{bottom:102.732800pt;}
.y2c{bottom:105.182267pt;}
.y25e{bottom:106.355867pt;}
.y64{bottom:106.462533pt;}
.y23e{bottom:106.588533pt;}
.ydc{bottom:106.594533pt;}
.y239{bottom:106.595867pt;}
.y185{bottom:108.783867pt;}
.ya8{bottom:109.914533pt;}
.y1e3{bottom:110.944133pt;}
.y269{bottom:111.219467pt;}
.y2aa{bottom:111.345333pt;}
.y114{bottom:114.347733pt;}
.y150{bottom:115.889467pt;}
.y21e{bottom:116.234267pt;}
.y1ed{bottom:116.717067pt;}
.y25d{bottom:122.355867pt;}
.y63{bottom:122.462533pt;}
.y184{bottom:122.563867pt;}
.y23d{bottom:122.588533pt;}
.ydb{bottom:122.594533pt;}
.y238{bottom:122.595867pt;}
.y268{bottom:124.552800pt;}
.y2a9{bottom:124.678667pt;}
.ya7{bottom:125.914533pt;}
.y113{bottom:128.127733pt;}
.y14f{bottom:129.669467pt;}
.y21d{bottom:130.228933pt;}
.y183{bottom:136.343867pt;}
.y1e2{bottom:136.725467pt;}
.y2a8{bottom:138.012000pt;}
.y25c{bottom:138.355867pt;}
.y62{bottom:138.462533pt;}
.yda{bottom:138.594533pt;}
.y237{bottom:138.595867pt;}
.ya6{bottom:141.914533pt;}
.y182{bottom:150.343867pt;}
.y1e1{bottom:151.168133pt;}
.y2a7{bottom:151.345333pt;}
.y112{bottom:153.247733pt;}
.y267{bottom:153.982533pt;}
.y25b{bottom:154.355867pt;}
.y61{bottom:154.462533pt;}
.yd9{bottom:154.594533pt;}
.y236{bottom:154.595867pt;}
.y14e{bottom:154.789467pt;}
.y1b7{bottom:158.015067pt;}
.y181{bottom:164.123867pt;}
.y2a6{bottom:164.678667pt;}
.y1e0{bottom:165.610800pt;}
.y111{bottom:167.022000pt;}
.y14d{bottom:168.789467pt;}
.y25a{bottom:170.355867pt;}
.y60{bottom:170.462533pt;}
.yd8{bottom:170.594533pt;}
.y235{bottom:170.595867pt;}
.y1b6{bottom:172.681733pt;}
.ya5{bottom:174.139200pt;}
.y180{bottom:177.903867pt;}
.y2a5{bottom:178.012000pt;}
.y110{bottom:180.802000pt;}
.y2b{bottom:181.782133pt;}
.y14b{bottom:182.569467pt;}
.y259{bottom:186.355867pt;}
.y5f{bottom:186.462533pt;}
.yd7{bottom:186.594533pt;}
.y234{bottom:186.595867pt;}
.y1b5{bottom:187.348400pt;}
.ya4{bottom:189.668533pt;}
.y2e6{bottom:191.345333pt;}
.y2a4{bottom:191.347467pt;}
.y1df{bottom:191.392133pt;}
.y17f{bottom:191.903867pt;}
.y10f{bottom:194.582000pt;}
.y14a{bottom:196.563333pt;}
.y14c{bottom:196.569467pt;}
.y2a{bottom:197.790400pt;}
.y258{bottom:202.355867pt;}
.y5e{bottom:202.462533pt;}
.yd6{bottom:202.594533pt;}
.y233{bottom:202.595867pt;}
.y2e5{bottom:204.678667pt;}
.y2a3{bottom:204.680800pt;}
.ya3{bottom:204.868533pt;}
.y17e{bottom:205.683867pt;}
.y1de{bottom:205.834800pt;}
.y1b4{bottom:209.907200pt;}
.y149{bottom:210.343333pt;}
.y2e4{bottom:218.012000pt;}
.y2a2{bottom:218.014133pt;}
.y257{bottom:218.355867pt;}
.y5d{bottom:218.462533pt;}
.yd5{bottom:218.594533pt;}
.y232{bottom:218.595867pt;}
.y17d{bottom:219.683867pt;}
.y10e{bottom:219.702000pt;}
.ya2{bottom:220.068533pt;}
.y1dd{bottom:220.277467pt;}
.y29{bottom:222.097067pt;}
.y1b3{bottom:223.907200pt;}
.y148{bottom:224.123333pt;}
.y2e3{bottom:231.345333pt;}
.y2a1{bottom:231.347467pt;}
.y17c{bottom:233.463867pt;}
.y10d{bottom:233.702000pt;}
.y256{bottom:234.355867pt;}
.y5c{bottom:234.462533pt;}
.yd4{bottom:234.594533pt;}
.y231{bottom:234.595867pt;}
.y1dc{bottom:234.720133pt;}
.ya1{bottom:235.268533pt;}
.y1b2{bottom:237.687200pt;}
.y28{bottom:238.097067pt;}
.y2e2{bottom:244.678667pt;}
.y2a0{bottom:244.680800pt;}
.y17b{bottom:247.243867pt;}
.y10c{bottom:247.482000pt;}
.y147{bottom:249.243333pt;}
.y255{bottom:250.355867pt;}
.y5b{bottom:250.462533pt;}
.yd3{bottom:250.594533pt;}
.y230{bottom:250.595867pt;}
.y1b1{bottom:251.467200pt;}
.y27{bottom:254.097067pt;}
.y2e1{bottom:258.012000pt;}
.y29f{bottom:258.014133pt;}
.y17a{bottom:261.023867pt;}
.y10b{bottom:261.262000pt;}
.y1db{bottom:262.730800pt;}
.y146{bottom:263.243333pt;}
.y1b0{bottom:265.467200pt;}
.y254{bottom:266.355867pt;}
.y5a{bottom:266.462533pt;}
.yd2{bottom:266.594533pt;}
.y22f{bottom:266.595867pt;}
.ya0{bottom:266.729200pt;}
.y26{bottom:270.097067pt;}
.y2e0{bottom:271.345333pt;}
.y29e{bottom:271.347467pt;}
.y179{bottom:274.803867pt;}
.y10a{bottom:275.262000pt;}
.y145{bottom:277.023333pt;}
.y1af{bottom:279.239600pt;}
.y253{bottom:282.355867pt;}
.y59{bottom:282.462533pt;}
.yd1{bottom:282.594533pt;}
.y22e{bottom:282.595867pt;}
.y9f{bottom:282.729200pt;}
.y2df{bottom:284.678667pt;}
.y29d{bottom:284.680800pt;}
.y25{bottom:286.097067pt;}
.y178{bottom:288.583867pt;}
.y109{bottom:289.042000pt;}
.y144{bottom:290.803333pt;}
.y1ae{bottom:293.019600pt;}
.y1da{bottom:293.755867pt;}
.y2de{bottom:298.012000pt;}
.y29c{bottom:298.014133pt;}
.y266{bottom:298.102533pt;}
.y252{bottom:298.355867pt;}
.y58{bottom:298.462533pt;}
.yd0{bottom:298.594533pt;}
.y22d{bottom:298.595867pt;}
.y9e{bottom:298.729200pt;}
.y24{bottom:302.097067pt;}
.y177{bottom:302.363867pt;}
.y108{bottom:302.822000pt;}
.y1ad{bottom:306.799600pt;}
.y1d9{bottom:311.089200pt;}
.y2dd{bottom:311.345333pt;}
.y29b{bottom:311.347467pt;}
.y251{bottom:314.355867pt;}
.y57{bottom:314.462533pt;}
.ycf{bottom:314.594533pt;}
.y22c{bottom:314.595867pt;}
.y9d{bottom:314.729200pt;}
.y143{bottom:315.923333pt;}
.y176{bottom:316.143867pt;}
.y107{bottom:316.822000pt;}
.y23{bottom:318.097067pt;}
.y1ac{bottom:320.799600pt;}
.y2dc{bottom:324.678667pt;}
.y29a{bottom:324.680800pt;}
.y1d8{bottom:328.422533pt;}
.y141{bottom:329.703333pt;}
.y175{bottom:329.914000pt;}
.y265{bottom:330.102533pt;}
.y250{bottom:330.355867pt;}
.y56{bottom:330.462533pt;}
.yce{bottom:330.594533pt;}
.y22b{bottom:330.595867pt;}
.y106{bottom:330.602000pt;}
.y9c{bottom:330.729200pt;}
.y22{bottom:334.097067pt;}
.y1ab{bottom:334.579600pt;}
.y2db{bottom:338.012000pt;}
.y299{bottom:338.014133pt;}
.y174{bottom:343.694000pt;}
.y140{bottom:343.700400pt;}
.y142{bottom:343.703333pt;}
.y104{bottom:344.382000pt;}
.y24f{bottom:346.355867pt;}
.y55{bottom:346.462533pt;}
.ycd{bottom:346.594533pt;}
.y22a{bottom:346.595867pt;}
.y9b{bottom:346.729200pt;}
.y1aa{bottom:348.359600pt;}
.y21{bottom:350.097067pt;}
.y2da{bottom:351.345333pt;}
.y298{bottom:351.347467pt;}
.y13f{bottom:357.480400pt;}
.y173{bottom:357.694000pt;}
.y103{bottom:358.373467pt;}
.y105{bottom:358.382000pt;}
.y24e{bottom:362.355867pt;}
.y54{bottom:362.462533pt;}
.ycc{bottom:362.594533pt;}
.y229{bottom:362.595867pt;}
.y9a{bottom:362.729200pt;}
.y2d9{bottom:364.678667pt;}
.y297{bottom:364.680800pt;}
.y20{bottom:366.097067pt;}
.y1eb{bottom:368.249333pt;}
.y13e{bottom:371.260400pt;}
.y172{bottom:371.474000pt;}
.y102{bottom:372.153467pt;}
.y1a9{bottom:373.479600pt;}
.y2d8{bottom:378.012000pt;}
.y296{bottom:378.014133pt;}
.y264{bottom:378.102533pt;}
.y24d{bottom:378.355867pt;}
.y53{bottom:378.462533pt;}
.ycb{bottom:378.594533pt;}
.y228{bottom:378.595867pt;}
.y99{bottom:378.729200pt;}
.y1f{bottom:382.097067pt;}
.y13d{bottom:385.040400pt;}
.y171{bottom:385.474000pt;}
.y101{bottom:385.933467pt;}
.y1a8{bottom:387.479600pt;}
.y1ea{bottom:390.926667pt;}
.y2d7{bottom:391.345333pt;}
.y295{bottom:391.347467pt;}
.y24c{bottom:394.355867pt;}
.y52{bottom:394.462533pt;}
.yca{bottom:394.594533pt;}
.y227{bottom:394.595867pt;}
.y1e{bottom:398.097067pt;}
.y13c{bottom:399.040400pt;}
.y170{bottom:399.254000pt;}
.y100{bottom:399.933467pt;}
.y1a7{bottom:401.259600pt;}
.y2d6{bottom:404.678667pt;}
.y294{bottom:404.680800pt;}
.y1e9{bottom:405.369333pt;}
.y24b{bottom:410.355867pt;}
.y98{bottom:410.369200pt;}
.y51{bottom:410.462533pt;}
.yc9{bottom:410.594533pt;}
.y226{bottom:410.595867pt;}
.y13b{bottom:412.820400pt;}
.y16f{bottom:413.034000pt;}
.yff{bottom:413.713467pt;}
.y1d{bottom:414.097067pt;}
.y1a6{bottom:415.039600pt;}
.y2d5{bottom:418.012000pt;}
.y293{bottom:418.014133pt;}
.y1e8{bottom:419.812000pt;}
.y24a{bottom:426.355867pt;}
.y50{bottom:426.462533pt;}
.yc8{bottom:426.594533pt;}
.y225{bottom:426.595867pt;}
.y13a{bottom:426.600400pt;}
.y16e{bottom:426.814000pt;}
.yfe{bottom:427.493467pt;}
.y1a5{bottom:428.819600pt;}
.y1c{bottom:430.097067pt;}
.y2d4{bottom:431.345333pt;}
.y292{bottom:431.347467pt;}
.y138{bottom:440.380400pt;}
.y16d{bottom:440.814000pt;}
.yfd{bottom:441.273467pt;}
.y249{bottom:442.355867pt;}
.y4f{bottom:442.462533pt;}
.yc7{bottom:442.594533pt;}
.y97{bottom:442.595867pt;}
.y1a4{bottom:442.819600pt;}
.y2d3{bottom:444.678667pt;}
.y291{bottom:444.680800pt;}
.y1b{bottom:446.097067pt;}
.y1e7{bottom:447.822667pt;}
.y137{bottom:454.375200pt;}
.y139{bottom:454.380400pt;}
.y16c{bottom:454.594000pt;}
.yfc{bottom:455.053467pt;}
.y1a3{bottom:456.599600pt;}
.y2d2{bottom:458.012000pt;}
.y290{bottom:458.014133pt;}
.y23c{bottom:458.235867pt;}
.y248{bottom:458.355867pt;}
.y4e{bottom:458.462533pt;}
.yc6{bottom:458.594533pt;}
.y96{bottom:458.595867pt;}
.y1a{bottom:462.097067pt;}
.y136{bottom:468.155200pt;}
.y16b{bottom:468.594000pt;}
.yfb{bottom:468.833467pt;}
.y1a2{bottom:470.379600pt;}
.y2d1{bottom:471.345333pt;}
.y28f{bottom:471.347467pt;}
.y247{bottom:474.355867pt;}
.y4d{bottom:474.462533pt;}
.yc5{bottom:474.594533pt;}
.y95{bottom:474.595867pt;}
.y19{bottom:478.097067pt;}
.y1e6{bottom:478.840533pt;}
.y135{bottom:481.935200pt;}
.y16a{bottom:482.374000pt;}
.yfa{bottom:482.833467pt;}
.y1a1{bottom:484.159600pt;}
.y2d0{bottom:484.678667pt;}
.y28e{bottom:484.680800pt;}
.y246{bottom:490.355867pt;}
.y4c{bottom:490.462533pt;}
.yc4{bottom:490.594533pt;}
.y94{bottom:490.595867pt;}
.y18{bottom:494.097067pt;}
.y134{bottom:495.935200pt;}
.y169{bottom:496.374000pt;}
.yf9{bottom:496.613467pt;}
.y2cf{bottom:498.012000pt;}
.y28d{bottom:498.014133pt;}
.y1a0{bottom:498.159600pt;}
.y245{bottom:506.355867pt;}
.y4b{bottom:506.462533pt;}
.yc3{bottom:506.594533pt;}
.y93{bottom:506.595867pt;}
.y133{bottom:509.715200pt;}
.y17{bottom:510.097067pt;}
.y168{bottom:510.154000pt;}
.yf8{bottom:510.613467pt;}
.y2ce{bottom:511.345333pt;}
.y28c{bottom:511.347467pt;}
.y19e{bottom:511.939600pt;}
.y263{bottom:522.102533pt;}
.y244{bottom:522.355867pt;}
.y4a{bottom:522.462533pt;}
.y1d7{bottom:522.475867pt;}
.yc2{bottom:522.594533pt;}
.y92{bottom:522.595867pt;}
.y132{bottom:523.495200pt;}
.y167{bottom:524.154000pt;}
.yf7{bottom:524.393467pt;}
.y2cd{bottom:524.678667pt;}
.y28b{bottom:524.680800pt;}
.y19d{bottom:525.930400pt;}
.y19f{bottom:525.939600pt;}
.y131{bottom:537.275200pt;}
.y166{bottom:537.934000pt;}
.y2cc{bottom:538.012000pt;}
.y28a{bottom:538.014133pt;}
.yf6{bottom:538.173467pt;}
.y243{bottom:538.355867pt;}
.y49{bottom:538.462533pt;}
.y1d6{bottom:538.475867pt;}
.yc1{bottom:538.594533pt;}
.y91{bottom:538.595867pt;}
.y19c{bottom:539.710400pt;}
.y16{bottom:550.237600pt;}
.y130{bottom:551.055200pt;}
.y2cb{bottom:551.345333pt;}
.y289{bottom:551.347467pt;}
.y165{bottom:551.714000pt;}
.yf5{bottom:551.953467pt;}
.y19b{bottom:553.490400pt;}
.y48{bottom:554.462533pt;}
.y1d5{bottom:554.475867pt;}
.yc0{bottom:554.594533pt;}
.y90{bottom:554.595867pt;}
.y15{bottom:561.304933pt;}
.y2ca{bottom:564.678667pt;}
.y288{bottom:564.680800pt;}
.y12f{bottom:564.835200pt;}
.y164{bottom:565.494000pt;}
.yf4{bottom:565.953467pt;}
.y242{bottom:569.995867pt;}
.y1b9{bottom:570.102533pt;}
.y47{bottom:570.462533pt;}
.y1d4{bottom:570.475867pt;}
.ybf{bottom:570.594533pt;}
.y8f{bottom:570.595867pt;}
.y2c9{bottom:578.012000pt;}
.y287{bottom:578.014133pt;}
.y19a{bottom:578.610400pt;}
.y12e{bottom:578.615200pt;}
.y163{bottom:579.274000pt;}
.yf3{bottom:579.733467pt;}
.y46{bottom:586.462533pt;}
.y1d3{bottom:586.475867pt;}
.ybe{bottom:586.594533pt;}
.y8e{bottom:586.595867pt;}
.y14{bottom:589.496533pt;}
.y2c8{bottom:591.345333pt;}
.y286{bottom:591.347467pt;}
.y199{bottom:592.610400pt;}
.y12d{bottom:592.615200pt;}
.y162{bottom:593.054000pt;}
.yf2{bottom:593.513467pt;}
.y1b8{bottom:601.982533pt;}
.y45{bottom:602.462533pt;}
.y218{bottom:602.470533pt;}
.y1d2{bottom:602.475867pt;}
.y203{bottom:602.590533pt;}
.ybd{bottom:602.594533pt;}
.y8d{bottom:602.595867pt;}
.y2c7{bottom:604.678667pt;}
.y285{bottom:604.680800pt;}
.y13{bottom:606.319067pt;}
.y198{bottom:606.390400pt;}
.y12c{bottom:606.395200pt;}
.y161{bottom:606.834000pt;}
.yf1{bottom:607.293467pt;}
.y2c6{bottom:618.012000pt;}
.y284{bottom:618.014133pt;}
.y12{bottom:618.319067pt;}
.y44{bottom:618.462533pt;}
.y217{bottom:618.470533pt;}
.y1d1{bottom:618.475867pt;}
.y202{bottom:618.590533pt;}
.ybc{bottom:618.594533pt;}
.y8c{bottom:618.595867pt;}
.y197{bottom:620.170400pt;}
.y12b{bottom:620.175200pt;}
.y160{bottom:620.614000pt;}
.yf0{bottom:621.293467pt;}
.y11{bottom:625.496533pt;}
.y2c5{bottom:631.345333pt;}
.y283{bottom:631.347467pt;}
.y12a{bottom:634.175200pt;}
.y43{bottom:634.462533pt;}
.y216{bottom:634.470533pt;}
.y1d0{bottom:634.475867pt;}
.y201{bottom:634.590533pt;}
.ybb{bottom:634.594533pt;}
.y8b{bottom:634.595867pt;}
.y15f{bottom:634.614000pt;}
.yef{bottom:635.073467pt;}
.y10{bottom:642.319067pt;}
.y2c4{bottom:644.678667pt;}
.y282{bottom:644.680800pt;}
.y196{bottom:645.290400pt;}
.y129{bottom:647.948667pt;}
.y15e{bottom:648.394000pt;}
.yee{bottom:648.853467pt;}
.yf{bottom:649.496533pt;}
.y262{bottom:650.102533pt;}
.y224{bottom:650.235867pt;}
.y42{bottom:650.462533pt;}
.y215{bottom:650.470533pt;}
.y1cf{bottom:650.475867pt;}
.y200{bottom:650.590533pt;}
.y8a{bottom:650.595867pt;}
.y2c3{bottom:658.012000pt;}
.y281{bottom:658.014133pt;}
.y195{bottom:659.070400pt;}
.ye{bottom:661.496533pt;}
.y128{bottom:661.728667pt;}
.y15d{bottom:662.174000pt;}
.yed{bottom:662.853467pt;}
.yba{bottom:666.234533pt;}
.y223{bottom:666.235867pt;}
.y41{bottom:666.462533pt;}
.y214{bottom:666.470533pt;}
.y1ce{bottom:666.475867pt;}
.y1ff{bottom:666.590533pt;}
.y89{bottom:666.595867pt;}
.y2c2{bottom:671.345333pt;}
.y280{bottom:671.347467pt;}
.y194{bottom:672.850400pt;}
.y127{bottom:675.728667pt;}
.yec{bottom:676.633467pt;}
.yd{bottom:678.319067pt;}
.yb9{bottom:682.234533pt;}
.y40{bottom:682.462533pt;}
.y213{bottom:682.470533pt;}
.y1cd{bottom:682.475867pt;}
.y1fe{bottom:682.590533pt;}
.y88{bottom:682.595867pt;}
.y80{bottom:683.544933pt;}
.y2c1{bottom:684.678667pt;}
.y27f{bottom:684.680800pt;}
.yc{bottom:685.496533pt;}
.y15c{bottom:687.293067pt;}
.y126{bottom:689.508667pt;}
.yeb{bottom:690.405467pt;}
.y193{bottom:697.970400pt;}
.y2c0{bottom:698.012000pt;}
.y27e{bottom:698.014133pt;}
.y1bd{bottom:698.235867pt;}
.y3f{bottom:698.462533pt;}
.y212{bottom:698.470533pt;}
.y1cc{bottom:698.475867pt;}
.y1fd{bottom:698.590533pt;}
.y87{bottom:698.595867pt;}
.y15b{bottom:701.073067pt;}
.yb{bottom:702.319067pt;}
.y125{bottom:703.288667pt;}
.yea{bottom:704.185467pt;}
.ya{bottom:709.496533pt;}
.y2bf{bottom:711.345333pt;}
.y27d{bottom:711.347467pt;}
.y192{bottom:711.750400pt;}
.yb8{bottom:714.461200pt;}
.y3e{bottom:714.462533pt;}
.y211{bottom:714.470533pt;}
.y1cb{bottom:714.475867pt;}
.y1fc{bottom:714.590533pt;}
.y86{bottom:714.595867pt;}
.y159{bottom:714.853067pt;}
.ye9{bottom:717.965467pt;}
.y2be{bottom:724.678667pt;}
.y27c{bottom:724.680800pt;}
.y191{bottom:725.750400pt;}
.y9{bottom:726.319067pt;}
.y124{bottom:728.408667pt;}
.y158{bottom:728.850400pt;}
.y15a{bottom:728.853067pt;}
.yb7{bottom:730.461200pt;}
.y3d{bottom:730.462533pt;}
.y210{bottom:730.470533pt;}
.y1ca{bottom:730.475867pt;}
.y7d{bottom:730.582533pt;}
.y1fb{bottom:730.590533pt;}
.y85{bottom:730.595867pt;}
.ye8{bottom:731.745467pt;}
.y2bd{bottom:738.012000pt;}
.y27b{bottom:738.014133pt;}
.y190{bottom:739.530400pt;}
.y123{bottom:742.408667pt;}
.y157{bottom:742.630400pt;}
.ye7{bottom:745.525467pt;}
.yb6{bottom:746.461200pt;}
.y3c{bottom:746.462533pt;}
.y20f{bottom:746.470533pt;}
.y1c9{bottom:746.475867pt;}
.y7c{bottom:746.582533pt;}
.y1fa{bottom:746.590533pt;}
.y84{bottom:746.595867pt;}
.y2bc{bottom:751.345333pt;}
.y27a{bottom:751.347467pt;}
.y8{bottom:751.854400pt;}
.y18f{bottom:753.310400pt;}
.y122{bottom:756.188667pt;}
.y156{bottom:756.410400pt;}
.ye6{bottom:759.305467pt;}
.y241{bottom:762.235867pt;}
.yb5{bottom:762.461200pt;}
.y71{bottom:762.462533pt;}
.y3b{bottom:762.464533pt;}
.y20e{bottom:762.470533pt;}
.y1c8{bottom:762.475867pt;}
.y7b{bottom:762.582533pt;}
.y1f9{bottom:762.590533pt;}
.y2bb{bottom:764.678667pt;}
.y279{bottom:764.680800pt;}
.y18e{bottom:767.310400pt;}
.y121{bottom:769.968667pt;}
.y7{bottom:770.521067pt;}
.y2ba{bottom:778.012000pt;}
.y278{bottom:778.014133pt;}
.y83{bottom:778.235867pt;}
.yb4{bottom:778.461200pt;}
.y70{bottom:778.462533pt;}
.y3a{bottom:778.464533pt;}
.y20d{bottom:778.470533pt;}
.y1c7{bottom:778.475867pt;}
.y7a{bottom:778.582533pt;}
.y1f8{bottom:778.590533pt;}
.y18d{bottom:781.310400pt;}
.y155{bottom:781.530400pt;}
.ye5{bottom:784.425467pt;}
.y6{bottom:789.183067pt;}
.y2b9{bottom:791.345333pt;}
.y277{bottom:791.347467pt;}
.y82{bottom:794.235867pt;}
.yb3{bottom:794.461200pt;}
.y6f{bottom:794.462533pt;}
.y39{bottom:794.464533pt;}
.y20c{bottom:794.470533pt;}
.y1c6{bottom:794.475867pt;}
.y79{bottom:794.582533pt;}
.y1f7{bottom:794.590533pt;}
.y120{bottom:795.088667pt;}
.y18c{bottom:795.090400pt;}
.y154{bottom:795.310400pt;}
.ye4{bottom:798.205467pt;}
.y2b8{bottom:804.678667pt;}
.y276{bottom:804.680800pt;}
.y18b{bottom:808.870400pt;}
.y11f{bottom:809.088667pt;}
.y153{bottom:809.310400pt;}
.yb2{bottom:810.461200pt;}
.y6e{bottom:810.462533pt;}
.y38{bottom:810.464533pt;}
.y20b{bottom:810.470533pt;}
.y1c5{bottom:810.475867pt;}
.y78{bottom:810.582533pt;}
.y1f6{bottom:810.590533pt;}
.ye3{bottom:811.985467pt;}
.y2b7{bottom:818.012000pt;}
.y275{bottom:818.014133pt;}
.y11d{bottom:822.868667pt;}
.y18a{bottom:822.870400pt;}
.y152{bottom:823.090400pt;}
.yb1{bottom:826.461200pt;}
.y6d{bottom:826.462533pt;}
.y37{bottom:826.464533pt;}
.y20a{bottom:826.470533pt;}
.y1c4{bottom:826.475867pt;}
.y77{bottom:826.582533pt;}
.y1f5{bottom:826.590533pt;}
.y5{bottom:830.226133pt;}
.y2b6{bottom:831.345333pt;}
.y274{bottom:831.347467pt;}
.y189{bottom:836.650400pt;}
.y11e{bottom:836.868667pt;}
.y11c{bottom:836.870400pt;}
.ye2{bottom:839.665467pt;}
.yb0{bottom:842.461200pt;}
.y6c{bottom:842.462533pt;}
.y36{bottom:842.464533pt;}
.y209{bottom:842.470533pt;}
.y1c3{bottom:842.475867pt;}
.y76{bottom:842.582533pt;}
.y1f4{bottom:842.590533pt;}
.y2b5{bottom:844.678667pt;}
.y273{bottom:844.680800pt;}
.y188{bottom:850.430400pt;}
.y11b{bottom:850.650400pt;}
.y2b4{bottom:858.012000pt;}
.y272{bottom:858.014133pt;}
.yaf{bottom:858.461200pt;}
.y6b{bottom:858.462533pt;}
.y35{bottom:858.464533pt;}
.y208{bottom:858.470533pt;}
.y1c2{bottom:858.475867pt;}
.y75{bottom:858.582533pt;}
.y1f3{bottom:858.590533pt;}
.y4{bottom:862.635733pt;}
.y11a{bottom:864.430400pt;}
.ye1{bottom:870.462533pt;}
.y2b3{bottom:871.345333pt;}
.y271{bottom:871.347467pt;}
.y261{bottom:874.102533pt;}
.yae{bottom:874.461200pt;}
.y6a{bottom:874.462533pt;}
.y34{bottom:874.464533pt;}
.y207{bottom:874.470533pt;}
.y1c1{bottom:874.475867pt;}
.y2b2{bottom:884.678667pt;}
.y270{bottom:884.680800pt;}
.ye0{bottom:887.795867pt;}
.y74{bottom:890.222533pt;}
.y1f2{bottom:890.230533pt;}
.yad{bottom:890.461200pt;}
.y69{bottom:890.462533pt;}
.y33{bottom:890.464533pt;}
.y206{bottom:890.470533pt;}
.y1c0{bottom:890.475867pt;}
.y119{bottom:891.770400pt;}
.y3{bottom:895.045333pt;}
.y2b1{bottom:898.012000pt;}
.y26f{bottom:898.014133pt;}
.ydf{bottom:905.129200pt;}
.yac{bottom:906.461200pt;}
.y68{bottom:906.462533pt;}
.y205{bottom:906.470533pt;}
.y1bf{bottom:906.475867pt;}
.y2b0{bottom:911.345333pt;}
.y26e{bottom:911.347467pt;}
.y73{bottom:922.102533pt;}
.y32{bottom:922.104533pt;}
.yab{bottom:922.461200pt;}
.y67{bottom:922.462533pt;}
.y204{bottom:922.470533pt;}
.y1be{bottom:922.475867pt;}
.y2af{bottom:924.678667pt;}
.y26d{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y72{bottom:1006.594400pt;}
.y81{bottom:1006.595600pt;}
.y1ec{bottom:1006.596000pt;}
.y1bc{bottom:1006.596800pt;}
.y2ae{bottom:1006.598667pt;}
.y21c{bottom:1006.604800pt;}
.y222{bottom:1006.612933pt;}
.y1f1{bottom:1006.615733pt;}
.y30{bottom:1009.860000pt;}
.y2f{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.h15{height:27.792969pt;}
.h1c{height:27.804702pt;}
.h20{height:27.832435pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h13{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h19{height:35.038501pt;}
.h1f{height:35.049167pt;}
.h1e{height:35.056101pt;}
.h18{height:35.058234pt;}
.h1b{height:35.066234pt;}
.h17{height:35.067834pt;}
.h1d{height:35.069434pt;}
.h1a{height:35.071567pt;}
.h16{height:35.077434pt;}
.h21{height:35.082234pt;}
.h14{height:35.204427pt;}
.h10{height:37.057292pt;}
.h22{height:37.381654pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h11{height:46.719068pt;}
.h12{height:46.727068pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x19{left:69.921200pt;}
.x1a{left:79.371200pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x29{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x2b{left:109.606267pt;}
.x3{left:111.491467pt;}
.x24{left:117.169200pt;}
.x5{left:170.078667pt;}
.x28{left:172.711467pt;}
.x27{left:195.677733pt;}
.x20{left:290.078000pt;}
.x23{left:366.451200pt;}
.x21{left:385.358000pt;}
.x7{left:404.481333pt;}
.xa{left:406.296400pt;}
.x1d{left:407.279333pt;}
.xf{left:425.195867pt;}
.x16{left:426.214400pt;}
.x2a{left:428.970133pt;}
.xb{left:436.536400pt;}
.x2c{left:447.856933pt;}
.x10{left:455.435867pt;}
.xe{left:485.809200pt;}
.x1e{left:506.409333pt;}
.x1f{left:507.659333pt;}
.x17{left:525.524400pt;}
.x18{left:527.144400pt;}
.x1b{left:540.429333pt;}
.x22{left:543.268000pt;}
.x25{left:544.795867pt;}
.x14{left:559.344400pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x26{left:641.524800pt;}
.xc{left:647.459200pt;}
.x1c{left:655.129333pt;}
.x11{left:661.237200pt;}
.x12{left:666.357200pt;}
.x15{left:674.044400pt;}
}




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