
    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_29bdbd454528d13a36dd8b81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_ffd576bc89fe41ed234c59ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.223000;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_60eb75b7303890edc37c6fb1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_bd13f70dc41fa58ce25d5a1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_7e96910f6c080cc1d1eea961.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_2a345eea92fcfa3522005630.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.237000;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_12dba3b01becac93ffb40d2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.607000;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_b42d5e5a9fe54ddcb5b4d019.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_94f5501efc03c42cc4c80c6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.146000;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_8aed1caeed7dcae3fa3655a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.328000;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_2cd5a9865e3e8b0855af39a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_97501282b70694af91fca16e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_85d873c8d58759ce4091f20f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ed221a520059099344a3e2b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710000;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:-20.399963px;}
.v3{vertical-align:-15.000183px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsf{letter-spacing:-1.530000px;}
.ls4b{letter-spacing:-0.714000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.420000px;}
.ls30{letter-spacing:-0.360000px;}
.ls72{letter-spacing:-0.357000px;}
.ls74{letter-spacing:-0.306000px;}
.ls32{letter-spacing:-0.300000px;}
.ls85{letter-spacing:-0.255000px;}
.ls43{letter-spacing:-0.240000px;}
.ls73{letter-spacing:-0.204000px;}
.ls39{letter-spacing:-0.180000px;}
.ls71{letter-spacing:-0.153000px;}
.lse{letter-spacing:-0.120000px;}
.ls70{letter-spacing:-0.102000px;}
.lsd{letter-spacing:-0.060000px;}
.ls6f{letter-spacing:-0.051000px;}
.lsc{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000037px;}
.ls53{letter-spacing:0.011972px;}
.ls44{letter-spacing:0.030000px;}
.ls37{letter-spacing:0.042000px;}
.ls65{letter-spacing:0.051000px;}
.ls36{letter-spacing:0.060000px;}
.ls78{letter-spacing:0.076500px;}
.ls3f{letter-spacing:0.078001px;}
.ls52{letter-spacing:0.090000px;}
.ls58{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls7a{letter-spacing:0.127500px;}
.ls45{letter-spacing:0.150000px;}
.ls59{letter-spacing:0.153000px;}
.lsa{letter-spacing:0.178791px;}
.ls33{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.255000px;}
.ls69{letter-spacing:0.264000px;}
.ls2d{letter-spacing:0.270000px;}
.ls95{letter-spacing:0.280500px;}
.ls6c{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.306000px;}
.ls54{letter-spacing:0.330000px;}
.ls75{letter-spacing:0.331500px;}
.ls6a{letter-spacing:0.357000px;}
.ls3c{letter-spacing:0.359976px;}
.ls3d{letter-spacing:0.359992px;}
.ls5{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.390000px;}
.ls5a{letter-spacing:0.408000px;}
.ls8{letter-spacing:0.420000px;}
.ls94{letter-spacing:0.433500px;}
.ls29{letter-spacing:0.450000px;}
.ls6b{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.510000px;}
.ls1a{letter-spacing:0.540000px;}
.ls7b{letter-spacing:0.561000px;}
.ls50{letter-spacing:0.570000px;}
.ls92{letter-spacing:0.586500px;}
.ls4{letter-spacing:0.600000px;}
.ls60{letter-spacing:0.612000px;}
.ls35{letter-spacing:0.630000px;}
.ls5f{letter-spacing:0.637500px;}
.ls3e{letter-spacing:0.659986px;}
.ls14{letter-spacing:0.660000px;}
.ls5b{letter-spacing:0.663000px;}
.ls41{letter-spacing:0.688843px;}
.ls28{letter-spacing:0.690000px;}
.ls80{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls7f{letter-spacing:0.739500px;}
.ls40{letter-spacing:0.750000px;}
.ls68{letter-spacing:0.765000px;}
.ls2f{letter-spacing:0.780000px;}
.ls49{letter-spacing:0.810000px;}
.ls61{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.840000px;}
.ls93{letter-spacing:0.841500px;}
.ls5c{letter-spacing:0.867000px;}
.ls42{letter-spacing:0.870000px;}
.ls1e{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.918000px;}
.ls48{letter-spacing:0.930000px;}
.ls23{letter-spacing:0.960000px;}
.ls5e{letter-spacing:0.969000px;}
.ls46{letter-spacing:0.990000px;}
.ls8d{letter-spacing:0.994500px;}
.ls19{letter-spacing:1.020000px;}
.ls6d{letter-spacing:1.045500px;}
.ls22{letter-spacing:1.050000px;}
.ls62{letter-spacing:1.071000px;}
.ls21{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.110000px;}
.ls79{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.140000px;}
.ls76{letter-spacing:1.173000px;}
.ls25{letter-spacing:1.200000px;}
.ls84{letter-spacing:1.224000px;}
.ls1b{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.275000px;}
.ls7d{letter-spacing:1.300500px;}
.ls12{letter-spacing:1.320000px;}
.ls66{letter-spacing:1.326000px;}
.ls5d{letter-spacing:1.377000px;}
.ls2a{letter-spacing:1.380000px;}
.ls3b{letter-spacing:1.410000px;}
.ls8e{letter-spacing:1.428000px;}
.ls1c{letter-spacing:1.440000px;}
.ls82{letter-spacing:1.479000px;}
.ls26{letter-spacing:1.500000px;}
.ls8a{letter-spacing:1.530000px;}
.ls2b{letter-spacing:1.560000px;}
.ls87{letter-spacing:1.606500px;}
.ls15{letter-spacing:1.620000px;}
.ls89{letter-spacing:1.657500px;}
.ls1f{letter-spacing:1.680000px;}
.ls83{letter-spacing:1.683000px;}
.ls81{letter-spacing:1.734000px;}
.ls10{letter-spacing:1.740000px;}
.ls8b{letter-spacing:1.759500px;}
.ls16{letter-spacing:1.800000px;}
.ls8c{letter-spacing:1.836000px;}
.ls18{letter-spacing:1.860000px;}
.ls4e{letter-spacing:1.920000px;}
.ls8f{letter-spacing:1.938000px;}
.ls27{letter-spacing:1.950000px;}
.ls4f{letter-spacing:1.980000px;}
.ls34{letter-spacing:2.040000px;}
.ls86{letter-spacing:2.091000px;}
.ls4d{letter-spacing:2.100000px;}
.ls7e{letter-spacing:2.142000px;}
.ls17{letter-spacing:2.160000px;}
.ls56{letter-spacing:2.220000px;}
.ls91{letter-spacing:2.295000px;}
.ls55{letter-spacing:2.310000px;}
.ls6e{letter-spacing:2.340000px;}
.ls1d{letter-spacing:2.400000px;}
.ls4c{letter-spacing:2.460000px;}
.ls2e{letter-spacing:2.520000px;}
.ls24{letter-spacing:2.580000px;}
.ls90{letter-spacing:2.703000px;}
.ls63{letter-spacing:2.805000px;}
.ls3a{letter-spacing:2.940000px;}
.ls88{letter-spacing:3.213000px;}
.ls64{letter-spacing:3.672000px;}
.ls0{letter-spacing:3.990000px;}
.ls47{letter-spacing:4.440000px;}
.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;}
}
.ws7f{word-spacing:-17.940000px;}
.ws1f{word-spacing:-17.580000px;}
.wsb9{word-spacing:-17.460000px;}
.wsed{word-spacing:-17.310000px;}
.wse9{word-spacing:-17.160000px;}
.wsbc{word-spacing:-16.980000px;}
.wsdd{word-spacing:-16.860000px;}
.ws1a{word-spacing:-16.740000px;}
.ws21{word-spacing:-16.680000px;}
.ws5a{word-spacing:-16.620000px;}
.ws1e{word-spacing:-16.500000px;}
.ws94{word-spacing:-16.440000px;}
.wsbb{word-spacing:-16.380000px;}
.ws19{word-spacing:-16.320000px;}
.wsa6{word-spacing:-16.260000px;}
.ws20{word-spacing:-16.200000px;}
.ws1b{word-spacing:-16.140000px;}
.ws1c{word-spacing:-16.110000px;}
.ws1d{word-spacing:-16.080000px;}
.wse8{word-spacing:-16.050000px;}
.ws60{word-spacing:-16.020000px;}
.ws93{word-spacing:-15.990000px;}
.ws24{word-spacing:-15.960000px;}
.wsa8{word-spacing:-15.930000px;}
.ws61{word-spacing:-15.900000px;}
.ws5c{word-spacing:-15.840000px;}
.ws5d{word-spacing:-15.780000px;}
.ws81{word-spacing:-15.720000px;}
.ws83{word-spacing:-15.660000px;}
.ws22{word-spacing:-15.600000px;}
.wsa4{word-spacing:-15.540000px;}
.wsaa{word-spacing:-15.480000px;}
.ws13d{word-spacing:-15.453000px;}
.ws5b{word-spacing:-15.420000px;}
.ws8{word-spacing:-15.360000px;}
.ws9{word-spacing:-15.300000px;}
.ws5f{word-spacing:-15.240000px;}
.ws5e{word-spacing:-15.180000px;}
.ws92{word-spacing:-15.150000px;}
.ws23{word-spacing:-15.120000px;}
.ws91{word-spacing:-15.060000px;}
.ws7d{word-spacing:-15.000000px;}
.wse6{word-spacing:-14.940000px;}
.wsa7{word-spacing:-14.880000px;}
.wsf1{word-spacing:-14.832000px;}
.ws84{word-spacing:-14.760000px;}
.ws82{word-spacing:-14.700000px;}
.wsa9{word-spacing:-14.640000px;}
.wsa5{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.544000px;}
.ws80{word-spacing:-14.520000px;}
.wsba{word-spacing:-14.460000px;}
.ws11e{word-spacing:-13.770000px;}
.ws13c{word-spacing:-13.744500px;}
.ws11d{word-spacing:-13.719000px;}
.ws13e{word-spacing:-13.617000px;}
.ws11b{word-spacing:-13.566000px;}
.ws140{word-spacing:-13.464000px;}
.ws119{word-spacing:-13.413000px;}
.ws13b{word-spacing:-13.260000px;}
.ws11a{word-spacing:-13.209000px;}
.ws11f{word-spacing:-13.158000px;}
.ws11c{word-spacing:-13.107000px;}
.ws118{word-spacing:-13.081500px;}
.ws141{word-spacing:-13.056000px;}
.wsfa{word-spacing:-13.005000px;}
.wsf3{word-spacing:-12.954000px;}
.wsf0{word-spacing:-12.852000px;}
.ws13f{word-spacing:-12.801000px;}
.ws95{word-spacing:-12.750000px;}
.ws153{word-spacing:-12.648000px;}
.wsef{word-spacing:-12.597000px;}
.wsf2{word-spacing:-12.546000px;}
.wse7{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws7{word-spacing:-12.000000px;}
.wsa{word-spacing:-11.520000px;}
.wsc{word-spacing:-11.220000px;}
.ws62{word-spacing:-10.542000px;}
.ws1{word-spacing:-9.996000px;}
.wsee{word-spacing:-9.894000px;}
.ws0{word-spacing:-9.408000px;}
.wsb{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws74{word-spacing:-7.500000px;}
.wsa3{word-spacing:-6.375000px;}
.ws33{word-spacing:-2.400000px;}
.ws14b{word-spacing:-2.295000px;}
.ws2e{word-spacing:-2.160000px;}
.wsf5{word-spacing:-2.040000px;}
.wsf4{word-spacing:-1.920000px;}
.ws31{word-spacing:-1.860000px;}
.ws2d{word-spacing:-1.800000px;}
.ws3e{word-spacing:-1.740000px;}
.ws37{word-spacing:-1.680000px;}
.ws64{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.ws6e{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.380000px;}
.ws26{word-spacing:-1.320000px;}
.wsf9{word-spacing:-1.275000px;}
.ws39{word-spacing:-1.260000px;}
.ws12e{word-spacing:-1.224000px;}
.ws7a{word-spacing:-1.200000px;}
.ws27{word-spacing:-1.140000px;}
.ws114{word-spacing:-1.122000px;}
.wse{word-spacing:-1.080000px;}
.ws10d{word-spacing:-1.071000px;}
.ws50{word-spacing:-1.020000px;}
.ws106{word-spacing:-0.969000px;}
.ws4e{word-spacing:-0.960000px;}
.ws127{word-spacing:-0.918000px;}
.ws7c{word-spacing:-0.900000px;}
.ws134{word-spacing:-0.867000px;}
.ws6f{word-spacing:-0.840000px;}
.ws10b{word-spacing:-0.816000px;}
.ws51{word-spacing:-0.780000px;}
.ws10e{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.ws10f{word-spacing:-0.714000px;}
.wsfe{word-spacing:-0.663000px;}
.ws29{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.612000px;}
.ws59{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.570000px;}
.ws90{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.480000px;}
.ws12a{word-spacing:-0.459000px;}
.ws4d{word-spacing:-0.420000px;}
.ws66{word-spacing:-0.360000px;}
.wsb7{word-spacing:-0.306000px;}
.ws45{word-spacing:-0.300000px;}
.ws108{word-spacing:-0.264000px;}
.wsff{word-spacing:-0.255000px;}
.ws14{word-spacing:-0.240000px;}
.ws131{word-spacing:-0.204000px;}
.ws68{word-spacing:-0.180000px;}
.ws111{word-spacing:-0.153000px;}
.ws13{word-spacing:-0.120000px;}
.ws2{word-spacing:-0.096000px;}
.wsdc{word-spacing:-0.066000px;}
.ws85{word-spacing:-0.060000px;}
.ws113{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
.ws156{word-spacing:0.051000px;}
.ws12{word-spacing:0.060000px;}
.ws136{word-spacing:0.102000px;}
.ws98{word-spacing:0.120000px;}
.ws12b{word-spacing:0.153000px;}
.wsea{word-spacing:0.180000px;}
.wsb4{word-spacing:0.240000px;}
.wsf7{word-spacing:0.255000px;}
.ws55{word-spacing:0.300000px;}
.wsf8{word-spacing:0.357000px;}
.ws7b{word-spacing:0.360000px;}
.ws157{word-spacing:0.408000px;}
.ws15{word-spacing:0.420000px;}
.ws102{word-spacing:0.459000px;}
.ws89{word-spacing:0.480000px;}
.ws154{word-spacing:0.510000px;}
.ws35{word-spacing:0.540000px;}
.ws126{word-spacing:0.561000px;}
.ws97{word-spacing:0.600000px;}
.ws132{word-spacing:0.612000px;}
.ws8f{word-spacing:0.660000px;}
.wsb8{word-spacing:0.714000px;}
.wsab{word-spacing:0.720000px;}
.ws13a{word-spacing:0.765000px;}
.wsbf{word-spacing:0.780000px;}
.ws124{word-spacing:0.816000px;}
.ws49{word-spacing:0.840000px;}
.ws112{word-spacing:0.867000px;}
.ws99{word-spacing:0.900000px;}
.ws150{word-spacing:0.918000px;}
.ws8a{word-spacing:0.960000px;}
.ws121{word-spacing:0.969000px;}
.ws2b{word-spacing:1.020000px;}
.wse1{word-spacing:1.071000px;}
.ws44{word-spacing:1.080000px;}
.ws123{word-spacing:1.122000px;}
.ws42{word-spacing:1.140000px;}
.ws10c{word-spacing:1.173000px;}
.wsad{word-spacing:1.200000px;}
.ws117{word-spacing:1.224000px;}
.ws3b{word-spacing:1.260000px;}
.wsfb{word-spacing:1.275000px;}
.ws125{word-spacing:1.326000px;}
.ws116{word-spacing:1.377000px;}
.ws69{word-spacing:1.380000px;}
.ws40{word-spacing:1.440000px;}
.wse2{word-spacing:1.479000px;}
.ws11{word-spacing:1.500000px;}
.ws122{word-spacing:1.530000px;}
.ws3c{word-spacing:1.560000px;}
.ws148{word-spacing:1.581000px;}
.ws72{word-spacing:1.620000px;}
.ws100{word-spacing:1.632000px;}
.ws2a{word-spacing:1.680000px;}
.wscb{word-spacing:1.734000px;}
.ws75{word-spacing:1.740000px;}
.ws107{word-spacing:1.785000px;}
.ws7e{word-spacing:1.800000px;}
.wsa0{word-spacing:1.836000px;}
.ws78{word-spacing:1.860000px;}
.wsbd{word-spacing:1.920000px;}
.ws139{word-spacing:1.938000px;}
.ws38{word-spacing:1.980000px;}
.ws137{word-spacing:1.989000px;}
.ws28{word-spacing:2.040000px;}
.ws25{word-spacing:2.100000px;}
.ws101{word-spacing:2.142000px;}
.ws77{word-spacing:2.160000px;}
.ws120{word-spacing:2.193000px;}
.ws3d{word-spacing:2.220000px;}
.ws145{word-spacing:2.244000px;}
.ws76{word-spacing:2.280000px;}
.ws14e{word-spacing:2.295000px;}
.ws53{word-spacing:2.340000px;}
.ws142{word-spacing:2.346000px;}
.wsa2{word-spacing:2.397000px;}
.ws36{word-spacing:2.400000px;}
.wsfc{word-spacing:2.448000px;}
.wsb3{word-spacing:2.460000px;}
.wscc{word-spacing:2.499000px;}
.ws6c{word-spacing:2.520000px;}
.ws129{word-spacing:2.550000px;}
.ws6d{word-spacing:2.580000px;}
.ws151{word-spacing:2.601000px;}
.ws2c{word-spacing:2.640000px;}
.ws14f{word-spacing:2.652000px;}
.ws32{word-spacing:2.700000px;}
.ws128{word-spacing:2.754000px;}
.wsac{word-spacing:2.760000px;}
.ws115{word-spacing:2.805000px;}
.ws4f{word-spacing:2.820000px;}
.ws138{word-spacing:2.856000px;}
.wsc0{word-spacing:2.880000px;}
.wsdb{word-spacing:2.907000px;}
.ws30{word-spacing:2.940000px;}
.ws4c{word-spacing:3.000000px;}
.wsa1{word-spacing:3.009000px;}
.wsb6{word-spacing:3.060000px;}
.wsb2{word-spacing:3.120000px;}
.ws135{word-spacing:3.162000px;}
.wsec{word-spacing:3.180000px;}
.ws43{word-spacing:3.240000px;}
.wscf{word-spacing:3.264000px;}
.ws41{word-spacing:3.300000px;}
.ws110{word-spacing:3.315000px;}
.wsc1{word-spacing:3.360000px;}
.ws155{word-spacing:3.366000px;}
.ws8d{word-spacing:3.420000px;}
.wseb{word-spacing:3.480000px;}
.ws103{word-spacing:3.519000px;}
.ws96{word-spacing:3.540000px;}
.ws8c{word-spacing:3.600000px;}
.wsc9{word-spacing:3.621000px;}
.ws88{word-spacing:3.660000px;}
.ws12d{word-spacing:3.672000px;}
.ws70{word-spacing:3.720000px;}
.wse4{word-spacing:3.723000px;}
.ws146{word-spacing:3.774000px;}
.ws67{word-spacing:3.780000px;}
.ws14d{word-spacing:3.825000px;}
.wsb1{word-spacing:3.840000px;}
.ws12c{word-spacing:3.876000px;}
.ws58{word-spacing:3.900000px;}
.ws9f{word-spacing:3.927000px;}
.wsae{word-spacing:4.020000px;}
.ws57{word-spacing:4.080000px;}
.ws6a{word-spacing:4.140000px;}
.ws149{word-spacing:4.182000px;}
.ws54{word-spacing:4.200000px;}
.wsb5{word-spacing:4.260000px;}
.ws2f{word-spacing:4.320000px;}
.wsd1{word-spacing:4.335000px;}
.ws48{word-spacing:4.380000px;}
.ws130{word-spacing:4.437000px;}
.ws143{word-spacing:4.590000px;}
.ws47{word-spacing:4.620000px;}
.wsf6{word-spacing:4.680000px;}
.ws105{word-spacing:4.743000px;}
.ws87{word-spacing:4.800000px;}
.ws9a{word-spacing:4.860000px;}
.wsfd{word-spacing:4.896000px;}
.wsde{word-spacing:4.920000px;}
.ws9c{word-spacing:4.947000px;}
.ws8b{word-spacing:4.980000px;}
.ws12f{word-spacing:4.998000px;}
.ws9b{word-spacing:5.040000px;}
.wsb0{word-spacing:5.100000px;}
.ws8e{word-spacing:5.160000px;}
.ws133{word-spacing:5.202000px;}
.ws56{word-spacing:5.280000px;}
.ws147{word-spacing:5.304000px;}
.ws65{word-spacing:5.340000px;}
.wsc3{word-spacing:5.400000px;}
.wsc2{word-spacing:5.460000px;}
.ws4a{word-spacing:5.520000px;}
.ws152{word-spacing:5.610000px;}
.ws34{word-spacing:5.640000px;}
.ws63{word-spacing:5.700000px;}
.ws6b{word-spacing:5.760000px;}
.wse5{word-spacing:5.865000px;}
.ws3a{word-spacing:5.940000px;}
.ws46{word-spacing:6.000000px;}
.ws14c{word-spacing:6.018000px;}
.ws73{word-spacing:6.060000px;}
.wsd8{word-spacing:6.273000px;}
.ws3f{word-spacing:6.300000px;}
.wsca{word-spacing:6.681000px;}
.wsd2{word-spacing:6.834000px;}
.wsdf{word-spacing:6.840000px;}
.wsda{word-spacing:7.344000px;}
.ws109{word-spacing:7.446000px;}
.wsd4{word-spacing:7.497000px;}
.ws71{word-spacing:7.920000px;}
.ws14a{word-spacing:8.007000px;}
.wsc6{word-spacing:8.976000px;}
.wsd9{word-spacing:9.333000px;}
.wsd3{word-spacing:9.384000px;}
.ws10a{word-spacing:9.690000px;}
.wsbe{word-spacing:10.020000px;}
.ws144{word-spacing:10.506000px;}
.wse0{word-spacing:11.322000px;}
.wse3{word-spacing:11.832000px;}
.wsc5{word-spacing:11.985000px;}
.wsc7{word-spacing:12.036000px;}
.wsc8{word-spacing:12.189000px;}
.ws86{word-spacing:12.540000px;}
.wsd0{word-spacing:12.597000px;}
.ws9e{word-spacing:12.852000px;}
.wsd5{word-spacing:13.515000px;}
.wsd6{word-spacing:13.821000px;}
.wsce{word-spacing:13.974000px;}
.ws9d{word-spacing:14.790000px;}
.wsc4{word-spacing:15.810000px;}
.ws104{word-spacing:16.473000px;}
.ws158{word-spacing:17.595000px;}
.wscd{word-spacing:19.074000px;}
.wsd7{word-spacing:19.737000px;}
.wsaf{word-spacing:19.800000px;}
.ws17{word-spacing:72.267000px;}
._10{margin-left:-2959.784958px;}
._1d{margin-left:-19.023000px;}
._c{margin-left:-16.575000px;}
._a{margin-left:-14.580000px;}
._19{margin-left:-13.008000px;}
._1c{margin-left:-11.874000px;}
._17{margin-left:-10.842000px;}
._1a{margin-left:-9.060000px;}
._4{margin-left:-7.017600px;}
._3{margin-left:-5.961600px;}
._12{margin-left:-4.782000px;}
._6{margin-left:-3.312000px;}
._0{margin-left:-1.632000px;}
._2{width:1.142400px;}
._1{width:2.380800px;}
._13{width:3.786000px;}
._15{width:4.902000px;}
._14{width:6.474000px;}
._1e{width:7.890599px;}
._1b{width:9.007193px;}
._18{width:10.305600px;}
._21{width:11.898300px;}
._7{width:13.740000px;}
._27{width:15.003008px;}
._5{width:16.259992px;}
._d{width:18.360000px;}
._25{width:19.686000px;}
._24{width:21.063000px;}
._26{width:26.066100px;}
._1f{width:30.600000px;}
._20{width:36.975000px;}
._11{width:41.003995px;}
._9{width:48.420000px;}
._e{width:54.621000px;}
._23{width:67.437302px;}
._22{width:89.505000px;}
._8{width:93.060000px;}
._b{width:106.260000px;}
._28{width:2179.279257px;}
._16{width:2203.503561px;}
._f{width:2549.642958px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y2d{bottom:112.944300px;}
.y9e{bottom:113.415367px;}
.yfa{bottom:113.544147px;}
.ycc{bottom:114.132454px;}
.y12c{bottom:114.427800px;}
.y130{bottom:114.440550px;}
.y11a{bottom:114.735306px;}
.y1cc{bottom:114.739906px;}
.y143{bottom:114.874947px;}
.y2aa{bottom:116.997307px;}
.y1ef{bottom:122.317056px;}
.y227{bottom:123.904777px;}
.y2c{bottom:127.938300px;}
.y35{bottom:127.980753px;}
.y12b{bottom:129.421800px;}
.y12f{bottom:129.434550px;}
.y69{bottom:129.915344px;}
.y268{bottom:131.608823px;}
.y2a9{bottom:131.991307px;}
.y9d{bottom:132.165367px;}
.yf9{bottom:132.294147px;}
.ycb{bottom:132.882454px;}
.y119{bottom:133.485306px;}
.y1cb{bottom:133.489906px;}
.y142{bottom:133.624947px;}
.y1ee{bottom:137.311056px;}
.y226{bottom:138.898777px;}
.y34{bottom:142.974753px;}
.y12a{bottom:144.415800px;}
.y12e{bottom:144.428550px;}
.y267{bottom:146.602823px;}
.y2a8{bottom:146.985307px;}
.y2b{bottom:148.032303px;}
.y68{bottom:148.665344px;}
.y9c{bottom:150.915367px;}
.yf8{bottom:151.044159px;}
.yca{bottom:151.632454px;}
.y118{bottom:152.235306px;}
.y1ca{bottom:152.239906px;}
.y141{bottom:152.374947px;}
.y225{bottom:153.892777px;}
.y33{bottom:157.968753px;}
.y129{bottom:159.409800px;}
.y12d{bottom:159.422550px;}
.y266{bottom:161.596823px;}
.y2a7{bottom:161.979307px;}
.y2a{bottom:165.491553px;}
.y1ed{bottom:167.311806px;}
.y67{bottom:167.415344px;}
.y224{bottom:168.886777px;}
.y9b{bottom:169.665367px;}
.yf7{bottom:169.794159px;}
.yc9{bottom:170.382454px;}
.y117{bottom:170.985306px;}
.y1c9{bottom:170.989906px;}
.y140{bottom:171.124947px;}
.y265{bottom:176.590823px;}
.y2a6{bottom:176.973307px;}
.y32{bottom:178.062756px;}
.y29{bottom:180.485553px;}
.y1ec{bottom:182.305806px;}
.y223{bottom:183.880777px;}
.y66{bottom:186.165344px;}
.y9a{bottom:188.415367px;}
.yf6{bottom:188.544159px;}
.yc8{bottom:189.132454px;}
.y116{bottom:189.735306px;}
.y1c8{bottom:189.739906px;}
.y146{bottom:189.874947px;}
.y264{bottom:191.584823px;}
.y2a5{bottom:191.967307px;}
.y31{bottom:195.527995px;}
.y1eb{bottom:197.299806px;}
.y222{bottom:198.874777px;}
.y28{bottom:200.579544px;}
.y65{bottom:204.915344px;}
.y263{bottom:206.578823px;}
.y2a4{bottom:206.961307px;}
.y99{bottom:207.165367px;}
.yf5{bottom:207.294159px;}
.yc7{bottom:207.882454px;}
.y115{bottom:208.485306px;}
.y1c7{bottom:208.489906px;}
.y145{bottom:208.624947px;}
.y13f{bottom:208.630947px;}
.y30{bottom:210.521995px;}
.y1ea{bottom:212.293806px;}
.y221{bottom:213.868777px;}
.y262{bottom:221.572823px;}
.y2a3{bottom:221.955307px;}
.y64{bottom:223.665344px;}
.y2f{bottom:225.515995px;}
.y27{bottom:225.582904px;}
.y98{bottom:225.915367px;}
.yf4{bottom:226.044159px;}
.yc6{bottom:226.632454px;}
.y114{bottom:227.235306px;}
.y1c6{bottom:227.239906px;}
.y1e9{bottom:227.287806px;}
.y13e{bottom:227.374947px;}
.y220{bottom:228.862777px;}
.y261{bottom:236.566823px;}
.y2a2{bottom:236.949307px;}
.y26{bottom:240.576904px;}
.y63{bottom:242.415344px;}
.y21f{bottom:243.856777px;}
.y97{bottom:244.665367px;}
.yf3{bottom:244.794159px;}
.yc5{bottom:245.382454px;}
.y2e{bottom:245.610008px;}
.y113{bottom:245.985306px;}
.y1c5{bottom:245.989906px;}
.y144{bottom:246.124947px;}
.y260{bottom:251.560823px;}
.y2a1{bottom:251.943307px;}
.y1e8{bottom:257.288556px;}
.y21e{bottom:258.850777px;}
.y62{bottom:261.165344px;}
.y96{bottom:263.415367px;}
.yf2{bottom:263.544159px;}
.yc4{bottom:264.132454px;}
.y112{bottom:264.735306px;}
.y1c4{bottom:264.739906px;}
.y13d{bottom:264.874947px;}
.y25f{bottom:266.554823px;}
.y2a0{bottom:266.937307px;}
.y25{bottom:271.393654px;}
.y1e7{bottom:272.282556px;}
.y21d{bottom:273.844777px;}
.y61{bottom:279.915344px;}
.y25e{bottom:281.548823px;}
.y29f{bottom:281.931307px;}
.y95{bottom:282.165367px;}
.yf1{bottom:282.294159px;}
.y128{bottom:283.485306px;}
.y1c3{bottom:283.489906px;}
.y13c{bottom:283.624947px;}
.y197{bottom:283.630947px;}
.y24{bottom:286.387654px;}
.y1e6{bottom:287.276556px;}
.y21c{bottom:288.838777px;}
.y177{bottom:293.146781px;}
.y188{bottom:293.248774px;}
.y25d{bottom:296.542823px;}
.y29e{bottom:296.925307px;}
.y60{bottom:298.665344px;}
.y94{bottom:300.915367px;}
.yf0{bottom:301.044159px;}
.yc3{bottom:301.632454px;}
.y111{bottom:302.235306px;}
.y1c2{bottom:302.239906px;}
.y1e5{bottom:302.270556px;}
.y163{bottom:302.374947px;}
.y21b{bottom:303.832777px;}
.y176{bottom:308.140781px;}
.y187{bottom:308.242774px;}
.y25c{bottom:311.536823px;}
.y29d{bottom:311.919307px;}
.y23{bottom:317.229904px;}
.y1e4{bottom:317.264556px;}
.y5f{bottom:317.415344px;}
.y21a{bottom:318.826777px;}
.y93{bottom:319.665367px;}
.y127{bottom:320.985306px;}
.y1c1{bottom:320.989906px;}
.y175{bottom:323.134781px;}
.y186{bottom:323.236774px;}
.y25b{bottom:326.530823px;}
.y29c{bottom:326.913307px;}
.y22{bottom:328.711395px;}
.y1e3{bottom:332.258556px;}
.y219{bottom:333.820777px;}
.y5e{bottom:336.165344px;}
.y174{bottom:338.128781px;}
.y185{bottom:338.230774px;}
.y92{bottom:338.415367px;}
.yef{bottom:338.544159px;}
.y110{bottom:339.735306px;}
.y1c0{bottom:339.739906px;}
.y196{bottom:339.874786px;}
.y25a{bottom:341.524823px;}
.y29b{bottom:341.907307px;}
.y1e2{bottom:347.252556px;}
.y21{bottom:347.461395px;}
.yc2{bottom:348.808823px;}
.y218{bottom:348.814777px;}
.y173{bottom:353.122781px;}
.y184{bottom:353.224774px;}
.y5d{bottom:354.915344px;}
.y259{bottom:356.518823px;}
.y29a{bottom:356.901307px;}
.y91{bottom:357.165367px;}
.y10f{bottom:358.485306px;}
.y1bf{bottom:358.489906px;}
.y195{bottom:358.624786px;}
.y1e1{bottom:362.246556px;}
.y217{bottom:363.808777px;}
.y20{bottom:366.211395px;}
.yc1{bottom:367.558823px;}
.y172{bottom:368.116781px;}
.y183{bottom:368.218774px;}
.y258{bottom:371.512823px;}
.y299{bottom:371.895307px;}
.y5c{bottom:373.665344px;}
.y90{bottom:375.915367px;}
.yee{bottom:376.044159px;}
.y10e{bottom:377.235306px;}
.y1be{bottom:377.239906px;}
.y1e0{bottom:377.240556px;}
.y194{bottom:377.374786px;}
.y216{bottom:378.802777px;}
.y171{bottom:383.110781px;}
.y182{bottom:383.212774px;}
.y1f{bottom:384.961395px;}
.yc0{bottom:386.308823px;}
.y257{bottom:386.506823px;}
.y298{bottom:386.889307px;}
.y5b{bottom:392.415344px;}
.y215{bottom:393.796777px;}
.y8f{bottom:394.665367px;}
.yed{bottom:394.794159px;}
.y10d{bottom:395.985306px;}
.y1bd{bottom:395.989906px;}
.y193{bottom:396.124786px;}
.y170{bottom:398.104781px;}
.y181{bottom:398.206774px;}
.y256{bottom:401.500823px;}
.y297{bottom:401.883307px;}
.ybf{bottom:405.058823px;}
.y1df{bottom:407.241306px;}
.y214{bottom:408.790777px;}
.y5a{bottom:411.165344px;}
.y16f{bottom:413.098781px;}
.y180{bottom:413.200774px;}
.y8e{bottom:413.415367px;}
.yec{bottom:413.544159px;}
.y10c{bottom:414.735306px;}
.y1bc{bottom:414.739906px;}
.y192{bottom:414.874786px;}
.y255{bottom:416.494823px;}
.y296{bottom:416.877307px;}
.y1de{bottom:422.235306px;}
.y1e{bottom:422.461395px;}
.y213{bottom:423.784777px;}
.ybe{bottom:423.808823px;}
.y16e{bottom:428.092781px;}
.y17f{bottom:428.194774px;}
.y59{bottom:429.915344px;}
.y254{bottom:431.488823px;}
.y295{bottom:431.871307px;}
.y8d{bottom:432.165367px;}
.yeb{bottom:432.294159px;}
.y10b{bottom:433.485306px;}
.y1bb{bottom:433.489906px;}
.y191{bottom:433.624786px;}
.y212{bottom:438.778777px;}
.y1d{bottom:441.211395px;}
.ybd{bottom:442.558823px;}
.y16d{bottom:443.086781px;}
.y17e{bottom:443.188774px;}
.y253{bottom:446.482823px;}
.y294{bottom:446.865307px;}
.y58{bottom:448.665344px;}
.y8c{bottom:450.915367px;}
.yea{bottom:451.044159px;}
.y1dd{bottom:452.235260px;}
.y10a{bottom:452.235306px;}
.y1ba{bottom:452.239906px;}
.y190{bottom:452.374786px;}
.y211{bottom:453.772777px;}
.y16c{bottom:458.080781px;}
.y17d{bottom:458.182774px;}
.ybc{bottom:461.308823px;}
.y252{bottom:461.476823px;}
.y293{bottom:461.859307px;}
.y57{bottom:467.415344px;}
.y210{bottom:468.766777px;}
.y8b{bottom:469.665367px;}
.ye9{bottom:469.794159px;}
.y1dc{bottom:470.985260px;}
.y109{bottom:470.985306px;}
.y1b9{bottom:470.989906px;}
.y18f{bottom:471.124786px;}
.y16b{bottom:473.074781px;}
.y17c{bottom:473.176774px;}
.y251{bottom:476.470823px;}
.y292{bottom:476.853307px;}
.y1c{bottom:478.711395px;}
.ybb{bottom:480.058823px;}
.y20f{bottom:483.760777px;}
.y56{bottom:486.165344px;}
.y16a{bottom:488.068781px;}
.y17b{bottom:488.170774px;}
.y8a{bottom:488.415367px;}
.ye8{bottom:488.544159px;}
.y1db{bottom:489.735260px;}
.y108{bottom:489.735306px;}
.y1b8{bottom:489.739906px;}
.y18e{bottom:489.874786px;}
.y250{bottom:491.464823px;}
.y291{bottom:491.847307px;}
.y1b{bottom:497.461395px;}
.y20e{bottom:498.754777px;}
.yba{bottom:498.808823px;}
.y169{bottom:503.062781px;}
.y17a{bottom:503.164774px;}
.y55{bottom:504.915344px;}
.y24f{bottom:506.458823px;}
.y290{bottom:506.841307px;}
.y89{bottom:507.165367px;}
.ye7{bottom:507.294159px;}
.y1da{bottom:508.485260px;}
.y107{bottom:508.485306px;}
.y1b7{bottom:508.489906px;}
.y126{bottom:508.491306px;}
.y18d{bottom:508.624786px;}
.y20d{bottom:513.748777px;}
.y1a{bottom:516.211395px;}
.yb9{bottom:517.558823px;}
.y168{bottom:518.056781px;}
.y179{bottom:518.158774px;}
.y24e{bottom:521.452823px;}
.y28f{bottom:521.835307px;}
.y54{bottom:523.665344px;}
.y88{bottom:525.915367px;}
.ye6{bottom:526.044159px;}
.y1d9{bottom:527.235260px;}
.y106{bottom:527.235306px;}
.y1b6{bottom:527.239906px;}
.y18c{bottom:527.374786px;}
.y20c{bottom:528.742777px;}
.y167{bottom:533.050781px;}
.y178{bottom:533.152774px;}
.y19{bottom:534.961395px;}
.y24d{bottom:536.446823px;}
.y28e{bottom:536.829307px;}
.y53{bottom:542.415344px;}
.y20b{bottom:543.736777px;}
.y87{bottom:544.665367px;}
.ye5{bottom:544.794159px;}
.y1d8{bottom:545.985260px;}
.y105{bottom:545.985306px;}
.y1b5{bottom:545.989906px;}
.y24c{bottom:551.440823px;}
.y28d{bottom:551.823307px;}
.y18{bottom:553.711395px;}
.yb8{bottom:555.058823px;}
.y20a{bottom:558.730777px;}
.y52{bottom:561.165344px;}
.y86{bottom:563.415367px;}
.y1d7{bottom:564.735260px;}
.y104{bottom:564.735306px;}
.y1b4{bottom:564.739906px;}
.y18b{bottom:564.874786px;}
.y24b{bottom:566.434823px;}
.y28c{bottom:566.817307px;}
.y17{bottom:572.461395px;}
.y209{bottom:573.724777px;}
.y51{bottom:579.915344px;}
.y24a{bottom:581.428823px;}
.y28b{bottom:581.811307px;}
.y85{bottom:582.165367px;}
.ye4{bottom:582.294159px;}
.y1d6{bottom:583.485260px;}
.y103{bottom:583.485306px;}
.y1b3{bottom:583.489906px;}
.y16{bottom:591.211395px;}
.yb7{bottom:592.558823px;}
.y249{bottom:596.422823px;}
.y28a{bottom:596.805307px;}
.y50{bottom:598.665344px;}
.y84{bottom:600.915367px;}
.y1d5{bottom:602.235260px;}
.y102{bottom:602.235306px;}
.y1b2{bottom:602.239906px;}
.y208{bottom:607.474777px;}
.y15{bottom:609.961395px;}
.y248{bottom:611.416823px;}
.y289{bottom:611.799307px;}
.y4f{bottom:617.415344px;}
.y83{bottom:619.665367px;}
.ye3{bottom:619.794159px;}
.y125{bottom:620.985260px;}
.y101{bottom:620.985306px;}
.y1b1{bottom:620.989906px;}
.y18a{bottom:621.124786px;}
.y247{bottom:626.410823px;}
.y288{bottom:626.793307px;}
.y14{bottom:628.711395px;}
.y4e{bottom:636.165344px;}
.y82{bottom:638.415367px;}
.ye2{bottom:638.544159px;}
.y124{bottom:639.735260px;}
.y100{bottom:639.735306px;}
.y1b0{bottom:639.739906px;}
.y189{bottom:639.874786px;}
.y246{bottom:641.404823px;}
.y287{bottom:641.787307px;}
.y13{bottom:647.461395px;}
.y4d{bottom:654.915344px;}
.y165{bottom:655.276844px;}
.y245{bottom:656.398823px;}
.y286{bottom:656.781307px;}
.y81{bottom:657.165367px;}
.ye1{bottom:657.294159px;}
.yb6{bottom:658.485260px;}
.yff{bottom:658.485306px;}
.y1af{bottom:658.489906px;}
.y131{bottom:658.491306px;}
.y12{bottom:666.211395px;}
.y164{bottom:670.270844px;}
.y244{bottom:671.392823px;}
.y285{bottom:671.775307px;}
.y4c{bottom:673.665344px;}
.y80{bottom:675.915367px;}
.ye0{bottom:676.044159px;}
.yb5{bottom:677.235260px;}
.yfe{bottom:677.235306px;}
.y1ae{bottom:677.239906px;}
.y166{bottom:677.241306px;}
.y207{bottom:682.558073px;}
.y11{bottom:684.961395px;}
.y162{bottom:685.264844px;}
.y1d3{bottom:685.366811px;}
.y243{bottom:686.386823px;}
.y284{bottom:686.769307px;}
.y4b{bottom:692.415344px;}
.y7f{bottom:694.665367px;}
.ydf{bottom:694.794159px;}
.yb4{bottom:695.985260px;}
.yfd{bottom:695.985306px;}
.y1ad{bottom:695.989906px;}
.y206{bottom:697.552073px;}
.y161{bottom:700.258844px;}
.y1d2{bottom:700.360811px;}
.y242{bottom:701.380823px;}
.y283{bottom:701.763307px;}
.y10{bottom:703.711395px;}
.y4a{bottom:711.165344px;}
.y205{bottom:712.546073px;}
.y7e{bottom:713.415367px;}
.yde{bottom:713.544159px;}
.yb3{bottom:714.735260px;}
.yfc{bottom:714.735306px;}
.y1ac{bottom:714.739906px;}
.y1d4{bottom:714.741306px;}
.y160{bottom:715.252844px;}
.y1d1{bottom:715.354811px;}
.y241{bottom:716.374823px;}
.y282{bottom:716.757307px;}
.yf{bottom:722.461395px;}
.y204{bottom:727.540073px;}
.y49{bottom:729.915344px;}
.y15f{bottom:730.246844px;}
.y1d0{bottom:730.348811px;}
.y240{bottom:731.368823px;}
.y281{bottom:731.751307px;}
.y7d{bottom:732.165367px;}
.ydd{bottom:732.294159px;}
.yb2{bottom:733.485260px;}
.yfb{bottom:733.485306px;}
.y1ab{bottom:733.489906px;}
.ye{bottom:741.211395px;}
.y203{bottom:742.534073px;}
.y15e{bottom:745.240844px;}
.y1cf{bottom:745.342811px;}
.y23f{bottom:746.362823px;}
.y280{bottom:746.745307px;}
.y48{bottom:748.665344px;}
.y7c{bottom:750.915367px;}
.ydc{bottom:751.044159px;}
.yb1{bottom:752.235260px;}
.y13b{bottom:752.235306px;}
.y1aa{bottom:752.239906px;}
.y202{bottom:757.528073px;}
.y15d{bottom:760.234844px;}
.y1ce{bottom:760.336811px;}
.y23e{bottom:761.356823px;}
.y27f{bottom:761.739307px;}
.y47{bottom:767.415344px;}
.y7b{bottom:769.665367px;}
.ydb{bottom:769.794159px;}
.yb0{bottom:770.985260px;}
.y13a{bottom:770.985306px;}
.y1a9{bottom:770.989906px;}
.y201{bottom:772.522073px;}
.y15c{bottom:775.228844px;}
.y1cd{bottom:775.330811px;}
.y23d{bottom:776.350823px;}
.y27e{bottom:776.733307px;}
.yd{bottom:778.711395px;}
.y46{bottom:786.165344px;}
.y200{bottom:787.516073px;}
.y7a{bottom:788.415367px;}
.yaf{bottom:789.735260px;}
.y139{bottom:789.735306px;}
.y1a8{bottom:789.739906px;}
.y15b{bottom:790.222844px;}
.y23c{bottom:791.344823px;}
.y27d{bottom:791.727307px;}
.yc{bottom:797.461395px;}
.y1ff{bottom:802.510073px;}
.y45{bottom:804.915344px;}
.y15a{bottom:805.216844px;}
.y23b{bottom:806.338823px;}
.y27c{bottom:806.721307px;}
.y79{bottom:807.165367px;}
.yda{bottom:807.294159px;}
.yae{bottom:808.485260px;}
.y138{bottom:808.485306px;}
.y1a7{bottom:808.489906px;}
.yb{bottom:816.211395px;}
.y1fe{bottom:817.504073px;}
.y159{bottom:820.210844px;}
.y23a{bottom:821.332823px;}
.y27b{bottom:821.715307px;}
.y44{bottom:823.665344px;}
.y78{bottom:825.915367px;}
.yad{bottom:827.235260px;}
.y137{bottom:827.235306px;}
.y1a6{bottom:827.239906px;}
.y1fd{bottom:832.498073px;}
.y158{bottom:835.204844px;}
.y239{bottom:836.326823px;}
.y27a{bottom:836.709307px;}
.y43{bottom:842.415344px;}
.y77{bottom:844.665367px;}
.yd9{bottom:844.794159px;}
.yac{bottom:845.985260px;}
.y136{bottom:845.985306px;}
.y1a5{bottom:845.989906px;}
.y1fc{bottom:847.492073px;}
.y157{bottom:850.198844px;}
.y238{bottom:851.320823px;}
.y279{bottom:851.703307px;}
.ya{bottom:860.394153px;}
.y42{bottom:861.165344px;}
.y76{bottom:863.415367px;}
.yd8{bottom:863.544159px;}
.yab{bottom:864.735260px;}
.y135{bottom:864.735306px;}
.y1a4{bottom:864.739906px;}
.y156{bottom:865.192844px;}
.y237{bottom:866.314823px;}
.y278{bottom:866.697307px;}
.y9{bottom:875.388153px;}
.y1fb{bottom:877.492823px;}
.y41{bottom:879.915344px;}
.y155{bottom:880.186844px;}
.y236{bottom:881.308823px;}
.y277{bottom:881.691307px;}
.y75{bottom:882.165367px;}
.yd7{bottom:882.294159px;}
.yaa{bottom:883.485260px;}
.y134{bottom:883.485306px;}
.y1a3{bottom:883.489906px;}
.y1fa{bottom:892.486823px;}
.y154{bottom:895.180844px;}
.y235{bottom:896.302823px;}
.y276{bottom:896.685307px;}
.y40{bottom:898.665344px;}
.y74{bottom:900.915367px;}
.yd6{bottom:901.044159px;}
.ya9{bottom:902.235260px;}
.y133{bottom:902.235306px;}
.y1a2{bottom:902.239906px;}
.y1f9{bottom:907.480823px;}
.y153{bottom:910.174844px;}
.y234{bottom:911.296823px;}
.y275{bottom:911.679307px;}
.y3f{bottom:917.415344px;}
.y8{bottom:917.988190px;}
.y73{bottom:919.665367px;}
.yd5{bottom:919.794159px;}
.ya8{bottom:920.985260px;}
.y132{bottom:920.985306px;}
.y1a1{bottom:920.989906px;}
.y1f8{bottom:922.474823px;}
.y152{bottom:925.168844px;}
.y2b5{bottom:926.278074px;}
.y233{bottom:926.290823px;}
.y274{bottom:926.673307px;}
.y3e{bottom:936.165344px;}
.y7{bottom:936.738190px;}
.y72{bottom:938.415367px;}
.yd4{bottom:938.544159px;}
.ya7{bottom:939.735260px;}
.y123{bottom:939.735306px;}
.y1a0{bottom:939.739906px;}
.y151{bottom:940.162844px;}
.y2b4{bottom:941.272074px;}
.y232{bottom:941.284823px;}
.y273{bottom:941.667307px;}
.y1f7{bottom:952.474823px;}
.y3d{bottom:954.915344px;}
.y150{bottom:955.156844px;}
.y231{bottom:956.278823px;}
.y272{bottom:956.661307px;}
.y71{bottom:957.165367px;}
.yd3{bottom:957.294159px;}
.ya6{bottom:958.485260px;}
.y122{bottom:958.485306px;}
.y19f{bottom:958.489906px;}
.y14f{bottom:970.150844px;}
.y230{bottom:971.272823px;}
.y2b3{bottom:971.362073px;}
.y271{bottom:971.655307px;}
.y3c{bottom:973.665344px;}
.y70{bottom:975.915367px;}
.yd2{bottom:976.044159px;}
.ya5{bottom:977.235260px;}
.y121{bottom:977.235306px;}
.y19e{bottom:977.239906px;}
.y6{bottom:981.424622px;}
.y14e{bottom:985.144844px;}
.y22f{bottom:986.266823px;}
.y1f6{bottom:986.333556px;}
.y2b2{bottom:986.356073px;}
.y270{bottom:986.649307px;}
.y3b{bottom:992.415344px;}
.y6f{bottom:994.665367px;}
.yd1{bottom:994.794159px;}
.ya4{bottom:995.985260px;}
.y120{bottom:995.985306px;}
.y19d{bottom:995.989906px;}
.y14d{bottom:1000.138844px;}
.y22e{bottom:1001.260823px;}
.y1f5{bottom:1001.327556px;}
.y2b1{bottom:1001.350073px;}
.y26f{bottom:1001.643307px;}
.y5{bottom:1008.424622px;}
.y3a{bottom:1011.165344px;}
.y6e{bottom:1013.415367px;}
.yd0{bottom:1013.544159px;}
.ya3{bottom:1014.735260px;}
.y11f{bottom:1014.735306px;}
.y19c{bottom:1014.739906px;}
.y14c{bottom:1015.132844px;}
.y22d{bottom:1016.254823px;}
.y1f4{bottom:1016.321556px;}
.y2b0{bottom:1016.344073px;}
.y26e{bottom:1016.637307px;}
.y39{bottom:1029.915344px;}
.y14b{bottom:1030.126844px;}
.y22c{bottom:1031.248823px;}
.y2af{bottom:1031.338073px;}
.y26d{bottom:1031.631307px;}
.y6d{bottom:1032.165367px;}
.ycf{bottom:1032.294159px;}
.ya2{bottom:1033.485260px;}
.y11e{bottom:1033.485306px;}
.y19b{bottom:1033.489906px;}
.y14a{bottom:1045.120844px;}
.y22b{bottom:1046.242823px;}
.y1f3{bottom:1046.322306px;}
.y2ae{bottom:1046.332073px;}
.y26c{bottom:1046.625307px;}
.y38{bottom:1048.665344px;}
.y6c{bottom:1050.915367px;}
.yce{bottom:1051.044159px;}
.ya1{bottom:1052.235260px;}
.y11d{bottom:1052.235306px;}
.y19a{bottom:1052.239906px;}
.y149{bottom:1060.114844px;}
.y22a{bottom:1061.236823px;}
.y1f2{bottom:1061.316306px;}
.y2ad{bottom:1061.326073px;}
.y26b{bottom:1061.619307px;}
.y6b{bottom:1069.665367px;}
.ya0{bottom:1070.985260px;}
.y11c{bottom:1070.985306px;}
.y199{bottom:1070.989906px;}
.y148{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y229{bottom:1076.230823px;}
.y1f1{bottom:1076.310306px;}
.y2ac{bottom:1076.320073px;}
.y26a{bottom:1076.613307px;}
.y37{bottom:1086.165344px;}
.y6a{bottom:1088.415367px;}
.ycd{bottom:1088.544159px;}
.y9f{bottom:1089.735260px;}
.y11b{bottom:1089.735306px;}
.y198{bottom:1089.739906px;}
.y147{bottom:1090.102844px;}
.y228{bottom:1091.224823px;}
.y1f0{bottom:1091.304306px;}
.y2ab{bottom:1091.314073px;}
.y269{bottom:1091.607307px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y36{bottom:1127.482361px;}
.hc{height:33.129599px;}
.h2{height:42.048000px;}
.h3{height:44.676000px;}
.hb{height:47.328000px;}
.hd{height:50.439000px;}
.hf{height:50.439732px;}
.h13{height:52.173000px;}
.h12{height:53.805000px;}
.h4{height:55.461000px;}
.h9{height:55.680000px;}
.h10{height:59.004000px;}
.h7{height:59.340000px;}
.ha{height:61.380000px;}
.h11{height:62.975954px;}
.h8{height:63.300000px;}
.h6{height:64.866000px;}
.he{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x7{left:93.545407px;}
.x5{left:97.796100px;}
.xa{left:102.048152px;}
.x4{left:459.215389px;}
.x8{left:476.195380px;}
.x6{left:480.466799px;}
.x9{left:484.725290px;}
.x1{left:728.220612px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.333496pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsf{letter-spacing:-1.360000pt;}
.ls4b{letter-spacing:-0.634667pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.373333pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls72{letter-spacing:-0.317333pt;}
.ls74{letter-spacing:-0.272000pt;}
.ls32{letter-spacing:-0.266667pt;}
.ls85{letter-spacing:-0.226667pt;}
.ls43{letter-spacing:-0.213333pt;}
.ls73{letter-spacing:-0.181333pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls71{letter-spacing:-0.136000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls70{letter-spacing:-0.090667pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls6f{letter-spacing:-0.045333pt;}
.lsc{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000033pt;}
.ls53{letter-spacing:0.010641pt;}
.ls44{letter-spacing:0.026667pt;}
.ls37{letter-spacing:0.037333pt;}
.ls65{letter-spacing:0.045333pt;}
.ls36{letter-spacing:0.053333pt;}
.ls78{letter-spacing:0.068000pt;}
.ls3f{letter-spacing:0.069335pt;}
.ls52{letter-spacing:0.080000pt;}
.ls58{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls7a{letter-spacing:0.113333pt;}
.ls45{letter-spacing:0.133333pt;}
.ls59{letter-spacing:0.136000pt;}
.lsa{letter-spacing:0.158926pt;}
.ls33{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.226667pt;}
.ls69{letter-spacing:0.234667pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls95{letter-spacing:0.249333pt;}
.ls6c{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.272000pt;}
.ls54{letter-spacing:0.293333pt;}
.ls75{letter-spacing:0.294667pt;}
.ls6a{letter-spacing:0.317333pt;}
.ls3c{letter-spacing:0.319978pt;}
.ls3d{letter-spacing:0.319993pt;}
.ls5{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.346667pt;}
.ls5a{letter-spacing:0.362667pt;}
.ls8{letter-spacing:0.373333pt;}
.ls94{letter-spacing:0.385333pt;}
.ls29{letter-spacing:0.400000pt;}
.ls6b{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.453333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls7b{letter-spacing:0.498667pt;}
.ls50{letter-spacing:0.506667pt;}
.ls92{letter-spacing:0.521333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls60{letter-spacing:0.544000pt;}
.ls35{letter-spacing:0.560000pt;}
.ls5f{letter-spacing:0.566667pt;}
.ls3e{letter-spacing:0.586654pt;}
.ls14{letter-spacing:0.586667pt;}
.ls5b{letter-spacing:0.589333pt;}
.ls41{letter-spacing:0.612305pt;}
.ls28{letter-spacing:0.613333pt;}
.ls80{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls7f{letter-spacing:0.657333pt;}
.ls40{letter-spacing:0.666667pt;}
.ls68{letter-spacing:0.680000pt;}
.ls2f{letter-spacing:0.693333pt;}
.ls49{letter-spacing:0.720000pt;}
.ls61{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.746667pt;}
.ls93{letter-spacing:0.748000pt;}
.ls5c{letter-spacing:0.770667pt;}
.ls42{letter-spacing:0.773333pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.816000pt;}
.ls48{letter-spacing:0.826667pt;}
.ls23{letter-spacing:0.853333pt;}
.ls5e{letter-spacing:0.861333pt;}
.ls46{letter-spacing:0.880000pt;}
.ls8d{letter-spacing:0.884000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls6d{letter-spacing:0.929333pt;}
.ls22{letter-spacing:0.933333pt;}
.ls62{letter-spacing:0.952000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls20{letter-spacing:0.986667pt;}
.ls79{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.013333pt;}
.ls76{letter-spacing:1.042667pt;}
.ls25{letter-spacing:1.066667pt;}
.ls84{letter-spacing:1.088000pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.133333pt;}
.ls7d{letter-spacing:1.156000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls66{letter-spacing:1.178667pt;}
.ls5d{letter-spacing:1.224000pt;}
.ls2a{letter-spacing:1.226667pt;}
.ls3b{letter-spacing:1.253333pt;}
.ls8e{letter-spacing:1.269333pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls82{letter-spacing:1.314667pt;}
.ls26{letter-spacing:1.333333pt;}
.ls8a{letter-spacing:1.360000pt;}
.ls2b{letter-spacing:1.386667pt;}
.ls87{letter-spacing:1.428000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls89{letter-spacing:1.473333pt;}
.ls1f{letter-spacing:1.493333pt;}
.ls83{letter-spacing:1.496000pt;}
.ls81{letter-spacing:1.541333pt;}
.ls10{letter-spacing:1.546667pt;}
.ls8b{letter-spacing:1.564000pt;}
.ls16{letter-spacing:1.600000pt;}
.ls8c{letter-spacing:1.632000pt;}
.ls18{letter-spacing:1.653333pt;}
.ls4e{letter-spacing:1.706667pt;}
.ls8f{letter-spacing:1.722667pt;}
.ls27{letter-spacing:1.733333pt;}
.ls4f{letter-spacing:1.760000pt;}
.ls34{letter-spacing:1.813333pt;}
.ls86{letter-spacing:1.858667pt;}
.ls4d{letter-spacing:1.866667pt;}
.ls7e{letter-spacing:1.904000pt;}
.ls17{letter-spacing:1.920000pt;}
.ls56{letter-spacing:1.973333pt;}
.ls91{letter-spacing:2.040000pt;}
.ls55{letter-spacing:2.053333pt;}
.ls6e{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls4c{letter-spacing:2.186667pt;}
.ls2e{letter-spacing:2.240000pt;}
.ls24{letter-spacing:2.293333pt;}
.ls90{letter-spacing:2.402667pt;}
.ls63{letter-spacing:2.493333pt;}
.ls3a{letter-spacing:2.613333pt;}
.ls88{letter-spacing:2.856000pt;}
.ls64{letter-spacing:3.264000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls47{letter-spacing:3.946667pt;}
.ws7f{word-spacing:-15.946667pt;}
.ws1f{word-spacing:-15.626667pt;}
.wsb9{word-spacing:-15.520000pt;}
.wsed{word-spacing:-15.386667pt;}
.wse9{word-spacing:-15.253333pt;}
.wsbc{word-spacing:-15.093333pt;}
.wsdd{word-spacing:-14.986667pt;}
.ws1a{word-spacing:-14.880000pt;}
.ws21{word-spacing:-14.826667pt;}
.ws5a{word-spacing:-14.773333pt;}
.ws1e{word-spacing:-14.666667pt;}
.ws94{word-spacing:-14.613333pt;}
.wsbb{word-spacing:-14.560000pt;}
.ws19{word-spacing:-14.506667pt;}
.wsa6{word-spacing:-14.453333pt;}
.ws20{word-spacing:-14.400000pt;}
.ws1b{word-spacing:-14.346667pt;}
.ws1c{word-spacing:-14.320000pt;}
.ws1d{word-spacing:-14.293333pt;}
.wse8{word-spacing:-14.266667pt;}
.ws60{word-spacing:-14.240000pt;}
.ws93{word-spacing:-14.213333pt;}
.ws24{word-spacing:-14.186667pt;}
.wsa8{word-spacing:-14.160000pt;}
.ws61{word-spacing:-14.133333pt;}
.ws5c{word-spacing:-14.080000pt;}
.ws5d{word-spacing:-14.026667pt;}
.ws81{word-spacing:-13.973333pt;}
.ws83{word-spacing:-13.920000pt;}
.ws22{word-spacing:-13.866667pt;}
.wsa4{word-spacing:-13.813333pt;}
.wsaa{word-spacing:-13.760000pt;}
.ws13d{word-spacing:-13.736000pt;}
.ws5b{word-spacing:-13.706667pt;}
.ws8{word-spacing:-13.653333pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5f{word-spacing:-13.546667pt;}
.ws5e{word-spacing:-13.493333pt;}
.ws92{word-spacing:-13.466667pt;}
.ws23{word-spacing:-13.440000pt;}
.ws91{word-spacing:-13.386667pt;}
.ws7d{word-spacing:-13.333333pt;}
.wse6{word-spacing:-13.280000pt;}
.wsa7{word-spacing:-13.226667pt;}
.wsf1{word-spacing:-13.184000pt;}
.ws84{word-spacing:-13.120000pt;}
.ws82{word-spacing:-13.066667pt;}
.wsa9{word-spacing:-13.013333pt;}
.wsa5{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.928000pt;}
.ws80{word-spacing:-12.906667pt;}
.wsba{word-spacing:-12.853333pt;}
.ws11e{word-spacing:-12.240000pt;}
.ws13c{word-spacing:-12.217333pt;}
.ws11d{word-spacing:-12.194667pt;}
.ws13e{word-spacing:-12.104000pt;}
.ws11b{word-spacing:-12.058667pt;}
.ws140{word-spacing:-11.968000pt;}
.ws119{word-spacing:-11.922667pt;}
.ws13b{word-spacing:-11.786667pt;}
.ws11a{word-spacing:-11.741333pt;}
.ws11f{word-spacing:-11.696000pt;}
.ws11c{word-spacing:-11.650667pt;}
.ws118{word-spacing:-11.628000pt;}
.ws141{word-spacing:-11.605333pt;}
.wsfa{word-spacing:-11.560000pt;}
.wsf3{word-spacing:-11.514667pt;}
.wsf0{word-spacing:-11.424000pt;}
.ws13f{word-spacing:-11.378667pt;}
.ws95{word-spacing:-11.333333pt;}
.ws153{word-spacing:-11.242667pt;}
.wsef{word-spacing:-11.197333pt;}
.wsf2{word-spacing:-11.152000pt;}
.wse7{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws7{word-spacing:-10.666667pt;}
.wsa{word-spacing:-10.240000pt;}
.wsc{word-spacing:-9.973333pt;}
.ws62{word-spacing:-9.370667pt;}
.ws1{word-spacing:-8.885333pt;}
.wsee{word-spacing:-8.794667pt;}
.ws0{word-spacing:-8.362667pt;}
.wsb{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws74{word-spacing:-6.666667pt;}
.wsa3{word-spacing:-5.666667pt;}
.ws33{word-spacing:-2.133333pt;}
.ws14b{word-spacing:-2.040000pt;}
.ws2e{word-spacing:-1.920000pt;}
.wsf5{word-spacing:-1.813333pt;}
.wsf4{word-spacing:-1.706667pt;}
.ws31{word-spacing:-1.653333pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws3e{word-spacing:-1.546667pt;}
.ws37{word-spacing:-1.493333pt;}
.ws64{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.ws6e{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.226667pt;}
.ws26{word-spacing:-1.173333pt;}
.wsf9{word-spacing:-1.133333pt;}
.ws39{word-spacing:-1.120000pt;}
.ws12e{word-spacing:-1.088000pt;}
.ws7a{word-spacing:-1.066667pt;}
.ws27{word-spacing:-1.013333pt;}
.ws114{word-spacing:-0.997333pt;}
.wse{word-spacing:-0.960000pt;}
.ws10d{word-spacing:-0.952000pt;}
.ws50{word-spacing:-0.906667pt;}
.ws106{word-spacing:-0.861333pt;}
.ws4e{word-spacing:-0.853333pt;}
.ws127{word-spacing:-0.816000pt;}
.ws7c{word-spacing:-0.800000pt;}
.ws134{word-spacing:-0.770667pt;}
.ws6f{word-spacing:-0.746667pt;}
.ws10b{word-spacing:-0.725333pt;}
.ws51{word-spacing:-0.693333pt;}
.ws10e{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws10f{word-spacing:-0.634667pt;}
.wsfe{word-spacing:-0.589333pt;}
.ws29{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.544000pt;}
.ws59{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.506667pt;}
.ws90{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.426667pt;}
.ws12a{word-spacing:-0.408000pt;}
.ws4d{word-spacing:-0.373333pt;}
.ws66{word-spacing:-0.320000pt;}
.wsb7{word-spacing:-0.272000pt;}
.ws45{word-spacing:-0.266667pt;}
.ws108{word-spacing:-0.234667pt;}
.wsff{word-spacing:-0.226667pt;}
.ws14{word-spacing:-0.213333pt;}
.ws131{word-spacing:-0.181333pt;}
.ws68{word-spacing:-0.160000pt;}
.ws111{word-spacing:-0.136000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws2{word-spacing:-0.085333pt;}
.wsdc{word-spacing:-0.058667pt;}
.ws85{word-spacing:-0.053333pt;}
.ws113{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
.ws156{word-spacing:0.045333pt;}
.ws12{word-spacing:0.053333pt;}
.ws136{word-spacing:0.090667pt;}
.ws98{word-spacing:0.106667pt;}
.ws12b{word-spacing:0.136000pt;}
.wsea{word-spacing:0.160000pt;}
.wsb4{word-spacing:0.213333pt;}
.wsf7{word-spacing:0.226667pt;}
.ws55{word-spacing:0.266667pt;}
.wsf8{word-spacing:0.317333pt;}
.ws7b{word-spacing:0.320000pt;}
.ws157{word-spacing:0.362667pt;}
.ws15{word-spacing:0.373333pt;}
.ws102{word-spacing:0.408000pt;}
.ws89{word-spacing:0.426667pt;}
.ws154{word-spacing:0.453333pt;}
.ws35{word-spacing:0.480000pt;}
.ws126{word-spacing:0.498667pt;}
.ws97{word-spacing:0.533333pt;}
.ws132{word-spacing:0.544000pt;}
.ws8f{word-spacing:0.586667pt;}
.wsb8{word-spacing:0.634667pt;}
.wsab{word-spacing:0.640000pt;}
.ws13a{word-spacing:0.680000pt;}
.wsbf{word-spacing:0.693333pt;}
.ws124{word-spacing:0.725333pt;}
.ws49{word-spacing:0.746667pt;}
.ws112{word-spacing:0.770667pt;}
.ws99{word-spacing:0.800000pt;}
.ws150{word-spacing:0.816000pt;}
.ws8a{word-spacing:0.853333pt;}
.ws121{word-spacing:0.861333pt;}
.ws2b{word-spacing:0.906667pt;}
.wse1{word-spacing:0.952000pt;}
.ws44{word-spacing:0.960000pt;}
.ws123{word-spacing:0.997333pt;}
.ws42{word-spacing:1.013333pt;}
.ws10c{word-spacing:1.042667pt;}
.wsad{word-spacing:1.066667pt;}
.ws117{word-spacing:1.088000pt;}
.ws3b{word-spacing:1.120000pt;}
.wsfb{word-spacing:1.133333pt;}
.ws125{word-spacing:1.178667pt;}
.ws116{word-spacing:1.224000pt;}
.ws69{word-spacing:1.226667pt;}
.ws40{word-spacing:1.280000pt;}
.wse2{word-spacing:1.314667pt;}
.ws11{word-spacing:1.333333pt;}
.ws122{word-spacing:1.360000pt;}
.ws3c{word-spacing:1.386667pt;}
.ws148{word-spacing:1.405333pt;}
.ws72{word-spacing:1.440000pt;}
.ws100{word-spacing:1.450667pt;}
.ws2a{word-spacing:1.493333pt;}
.wscb{word-spacing:1.541333pt;}
.ws75{word-spacing:1.546667pt;}
.ws107{word-spacing:1.586667pt;}
.ws7e{word-spacing:1.600000pt;}
.wsa0{word-spacing:1.632000pt;}
.ws78{word-spacing:1.653333pt;}
.wsbd{word-spacing:1.706667pt;}
.ws139{word-spacing:1.722667pt;}
.ws38{word-spacing:1.760000pt;}
.ws137{word-spacing:1.768000pt;}
.ws28{word-spacing:1.813333pt;}
.ws25{word-spacing:1.866667pt;}
.ws101{word-spacing:1.904000pt;}
.ws77{word-spacing:1.920000pt;}
.ws120{word-spacing:1.949333pt;}
.ws3d{word-spacing:1.973333pt;}
.ws145{word-spacing:1.994667pt;}
.ws76{word-spacing:2.026667pt;}
.ws14e{word-spacing:2.040000pt;}
.ws53{word-spacing:2.080000pt;}
.ws142{word-spacing:2.085333pt;}
.wsa2{word-spacing:2.130667pt;}
.ws36{word-spacing:2.133333pt;}
.wsfc{word-spacing:2.176000pt;}
.wsb3{word-spacing:2.186667pt;}
.wscc{word-spacing:2.221333pt;}
.ws6c{word-spacing:2.240000pt;}
.ws129{word-spacing:2.266667pt;}
.ws6d{word-spacing:2.293333pt;}
.ws151{word-spacing:2.312000pt;}
.ws2c{word-spacing:2.346667pt;}
.ws14f{word-spacing:2.357333pt;}
.ws32{word-spacing:2.400000pt;}
.ws128{word-spacing:2.448000pt;}
.wsac{word-spacing:2.453333pt;}
.ws115{word-spacing:2.493333pt;}
.ws4f{word-spacing:2.506667pt;}
.ws138{word-spacing:2.538667pt;}
.wsc0{word-spacing:2.560000pt;}
.wsdb{word-spacing:2.584000pt;}
.ws30{word-spacing:2.613333pt;}
.ws4c{word-spacing:2.666667pt;}
.wsa1{word-spacing:2.674667pt;}
.wsb6{word-spacing:2.720000pt;}
.wsb2{word-spacing:2.773333pt;}
.ws135{word-spacing:2.810667pt;}
.wsec{word-spacing:2.826667pt;}
.ws43{word-spacing:2.880000pt;}
.wscf{word-spacing:2.901333pt;}
.ws41{word-spacing:2.933333pt;}
.ws110{word-spacing:2.946667pt;}
.wsc1{word-spacing:2.986667pt;}
.ws155{word-spacing:2.992000pt;}
.ws8d{word-spacing:3.040000pt;}
.wseb{word-spacing:3.093333pt;}
.ws103{word-spacing:3.128000pt;}
.ws96{word-spacing:3.146667pt;}
.ws8c{word-spacing:3.200000pt;}
.wsc9{word-spacing:3.218667pt;}
.ws88{word-spacing:3.253333pt;}
.ws12d{word-spacing:3.264000pt;}
.ws70{word-spacing:3.306667pt;}
.wse4{word-spacing:3.309333pt;}
.ws146{word-spacing:3.354667pt;}
.ws67{word-spacing:3.360000pt;}
.ws14d{word-spacing:3.400000pt;}
.wsb1{word-spacing:3.413333pt;}
.ws12c{word-spacing:3.445333pt;}
.ws58{word-spacing:3.466667pt;}
.ws9f{word-spacing:3.490667pt;}
.wsae{word-spacing:3.573333pt;}
.ws57{word-spacing:3.626667pt;}
.ws6a{word-spacing:3.680000pt;}
.ws149{word-spacing:3.717333pt;}
.ws54{word-spacing:3.733333pt;}
.wsb5{word-spacing:3.786667pt;}
.ws2f{word-spacing:3.840000pt;}
.wsd1{word-spacing:3.853333pt;}
.ws48{word-spacing:3.893333pt;}
.ws130{word-spacing:3.944000pt;}
.ws143{word-spacing:4.080000pt;}
.ws47{word-spacing:4.106667pt;}
.wsf6{word-spacing:4.160000pt;}
.ws105{word-spacing:4.216000pt;}
.ws87{word-spacing:4.266667pt;}
.ws9a{word-spacing:4.320000pt;}
.wsfd{word-spacing:4.352000pt;}
.wsde{word-spacing:4.373333pt;}
.ws9c{word-spacing:4.397333pt;}
.ws8b{word-spacing:4.426667pt;}
.ws12f{word-spacing:4.442667pt;}
.ws9b{word-spacing:4.480000pt;}
.wsb0{word-spacing:4.533333pt;}
.ws8e{word-spacing:4.586667pt;}
.ws133{word-spacing:4.624000pt;}
.ws56{word-spacing:4.693333pt;}
.ws147{word-spacing:4.714667pt;}
.ws65{word-spacing:4.746667pt;}
.wsc3{word-spacing:4.800000pt;}
.wsc2{word-spacing:4.853333pt;}
.ws4a{word-spacing:4.906667pt;}
.ws152{word-spacing:4.986667pt;}
.ws34{word-spacing:5.013333pt;}
.ws63{word-spacing:5.066667pt;}
.ws6b{word-spacing:5.120000pt;}
.wse5{word-spacing:5.213333pt;}
.ws3a{word-spacing:5.280000pt;}
.ws46{word-spacing:5.333333pt;}
.ws14c{word-spacing:5.349333pt;}
.ws73{word-spacing:5.386667pt;}
.wsd8{word-spacing:5.576000pt;}
.ws3f{word-spacing:5.600000pt;}
.wsca{word-spacing:5.938667pt;}
.wsd2{word-spacing:6.074667pt;}
.wsdf{word-spacing:6.080000pt;}
.wsda{word-spacing:6.528000pt;}
.ws109{word-spacing:6.618667pt;}
.wsd4{word-spacing:6.664000pt;}
.ws71{word-spacing:7.040000pt;}
.ws14a{word-spacing:7.117333pt;}
.wsc6{word-spacing:7.978667pt;}
.wsd9{word-spacing:8.296000pt;}
.wsd3{word-spacing:8.341333pt;}
.ws10a{word-spacing:8.613333pt;}
.wsbe{word-spacing:8.906667pt;}
.ws144{word-spacing:9.338667pt;}
.wse0{word-spacing:10.064000pt;}
.wse3{word-spacing:10.517333pt;}
.wsc5{word-spacing:10.653333pt;}
.wsc7{word-spacing:10.698667pt;}
.wsc8{word-spacing:10.834667pt;}
.ws86{word-spacing:11.146667pt;}
.wsd0{word-spacing:11.197333pt;}
.ws9e{word-spacing:11.424000pt;}
.wsd5{word-spacing:12.013333pt;}
.wsd6{word-spacing:12.285333pt;}
.wsce{word-spacing:12.421333pt;}
.ws9d{word-spacing:13.146667pt;}
.wsc4{word-spacing:14.053333pt;}
.ws104{word-spacing:14.642667pt;}
.ws158{word-spacing:15.640000pt;}
.wscd{word-spacing:16.954667pt;}
.wsd7{word-spacing:17.544000pt;}
.wsaf{word-spacing:17.600000pt;}
.ws17{word-spacing:64.237333pt;}
._10{margin-left:-2630.919963pt;}
._1d{margin-left:-16.909333pt;}
._c{margin-left:-14.733333pt;}
._a{margin-left:-12.960000pt;}
._19{margin-left:-11.562667pt;}
._1c{margin-left:-10.554667pt;}
._17{margin-left:-9.637333pt;}
._1a{margin-left:-8.053333pt;}
._4{margin-left:-6.237867pt;}
._3{margin-left:-5.299200pt;}
._12{margin-left:-4.250667pt;}
._6{margin-left:-2.944000pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.015467pt;}
._1{width:2.116267pt;}
._13{width:3.365333pt;}
._15{width:4.357333pt;}
._14{width:5.754667pt;}
._1e{width:7.013866pt;}
._1b{width:8.006394pt;}
._18{width:9.160533pt;}
._21{width:10.576267pt;}
._7{width:12.213333pt;}
._27{width:13.336007pt;}
._5{width:14.453326pt;}
._d{width:16.320000pt;}
._25{width:17.498667pt;}
._24{width:18.722667pt;}
._26{width:23.169867pt;}
._1f{width:27.200000pt;}
._20{width:32.866667pt;}
._11{width:36.447995pt;}
._9{width:43.040000pt;}
._e{width:48.552000pt;}
._23{width:59.944269pt;}
._22{width:79.560000pt;}
._8{width:82.720000pt;}
._b{width:94.453333pt;}
._28{width:1937.137117pt;}
._16{width:1958.669832pt;}
._f{width:2266.349296pt;}
.fs6{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y2d{bottom:100.394933pt;}
.y9e{bottom:100.813660pt;}
.yfa{bottom:100.928131pt;}
.ycc{bottom:101.451070pt;}
.y12c{bottom:101.713600pt;}
.y130{bottom:101.724933pt;}
.y11a{bottom:101.986938pt;}
.y1cc{bottom:101.991028pt;}
.y143{bottom:102.111064pt;}
.y2aa{bottom:103.997606pt;}
.y1ef{bottom:108.726272pt;}
.y227{bottom:110.137580pt;}
.y2c{bottom:113.722933pt;}
.y35{bottom:113.760670pt;}
.y12b{bottom:115.041600pt;}
.y12f{bottom:115.052933pt;}
.y69{bottom:115.480306pt;}
.y268{bottom:116.985620pt;}
.y2a9{bottom:117.325606pt;}
.y9d{bottom:117.480326pt;}
.yf9{bottom:117.594798pt;}
.ycb{bottom:118.117737pt;}
.y119{bottom:118.653605pt;}
.y1cb{bottom:118.657694pt;}
.y142{bottom:118.777730pt;}
.y1ee{bottom:122.054272pt;}
.y226{bottom:123.465580pt;}
.y34{bottom:127.088670pt;}
.y12a{bottom:128.369600pt;}
.y12e{bottom:128.380933pt;}
.y267{bottom:130.313620pt;}
.y2a8{bottom:130.653606pt;}
.y2b{bottom:131.584269pt;}
.y68{bottom:132.146973pt;}
.y9c{bottom:134.146993pt;}
.yf8{bottom:134.261475pt;}
.yca{bottom:134.784403pt;}
.y118{bottom:135.320272pt;}
.y1ca{bottom:135.324361pt;}
.y141{bottom:135.444397pt;}
.y225{bottom:136.793580pt;}
.y33{bottom:140.416670pt;}
.y129{bottom:141.697600pt;}
.y12d{bottom:141.708933pt;}
.y266{bottom:143.641620pt;}
.y2a7{bottom:143.981606pt;}
.y2a{bottom:147.103603pt;}
.y1ed{bottom:148.721605pt;}
.y67{bottom:148.813639pt;}
.y224{bottom:150.121580pt;}
.y9b{bottom:150.813660pt;}
.yf7{bottom:150.928141pt;}
.yc9{bottom:151.451070pt;}
.y117{bottom:151.986938pt;}
.y1c9{bottom:151.991028pt;}
.y140{bottom:152.111064pt;}
.y265{bottom:156.969620pt;}
.y2a6{bottom:157.309606pt;}
.y32{bottom:158.278005pt;}
.y29{bottom:160.431603pt;}
.y1ec{bottom:162.049605pt;}
.y223{bottom:163.449580pt;}
.y66{bottom:165.480306pt;}
.y9a{bottom:167.480326pt;}
.yf6{bottom:167.594808pt;}
.yc8{bottom:168.117737pt;}
.y116{bottom:168.653605pt;}
.y1c8{bottom:168.657694pt;}
.y146{bottom:168.777730pt;}
.y264{bottom:170.297620pt;}
.y2a5{bottom:170.637606pt;}
.y31{bottom:173.802662pt;}
.y1eb{bottom:175.377605pt;}
.y222{bottom:176.777580pt;}
.y28{bottom:178.292928pt;}
.y65{bottom:182.146973pt;}
.y263{bottom:183.625620pt;}
.y2a4{bottom:183.965606pt;}
.y99{bottom:184.146993pt;}
.yf5{bottom:184.261475pt;}
.yc7{bottom:184.784403pt;}
.y115{bottom:185.320272pt;}
.y1c7{bottom:185.324361pt;}
.y145{bottom:185.444397pt;}
.y13f{bottom:185.449730pt;}
.y30{bottom:187.130662pt;}
.y1ea{bottom:188.705605pt;}
.y221{bottom:190.105580pt;}
.y262{bottom:196.953620pt;}
.y2a3{bottom:197.293606pt;}
.y64{bottom:198.813639pt;}
.y2f{bottom:200.458662pt;}
.y27{bottom:200.518137pt;}
.y98{bottom:200.813660pt;}
.yf4{bottom:200.928141pt;}
.yc6{bottom:201.451070pt;}
.y114{bottom:201.986938pt;}
.y1c6{bottom:201.991028pt;}
.y1e9{bottom:202.033605pt;}
.y13e{bottom:202.111064pt;}
.y220{bottom:203.433580pt;}
.y261{bottom:210.281620pt;}
.y2a2{bottom:210.621606pt;}
.y26{bottom:213.846137pt;}
.y63{bottom:215.480306pt;}
.y21f{bottom:216.761580pt;}
.y97{bottom:217.480326pt;}
.yf3{bottom:217.594808pt;}
.yc5{bottom:218.117737pt;}
.y2e{bottom:218.320007pt;}
.y113{bottom:218.653605pt;}
.y1c5{bottom:218.657694pt;}
.y144{bottom:218.777730pt;}
.y260{bottom:223.609620pt;}
.y2a1{bottom:223.949606pt;}
.y1e8{bottom:228.700938pt;}
.y21e{bottom:230.089580pt;}
.y62{bottom:232.146973pt;}
.y96{bottom:234.146993pt;}
.yf2{bottom:234.261475pt;}
.yc4{bottom:234.784403pt;}
.y112{bottom:235.320272pt;}
.y1c4{bottom:235.324361pt;}
.y13d{bottom:235.444397pt;}
.y25f{bottom:236.937620pt;}
.y2a0{bottom:237.277606pt;}
.y25{bottom:241.238804pt;}
.y1e7{bottom:242.028938pt;}
.y21d{bottom:243.417580pt;}
.y61{bottom:248.813639pt;}
.y25e{bottom:250.265620pt;}
.y29f{bottom:250.605606pt;}
.y95{bottom:250.813660pt;}
.yf1{bottom:250.928141pt;}
.y128{bottom:251.986938pt;}
.y1c3{bottom:251.991028pt;}
.y13c{bottom:252.111064pt;}
.y197{bottom:252.116397pt;}
.y24{bottom:254.566804pt;}
.y1e6{bottom:255.356938pt;}
.y21c{bottom:256.745580pt;}
.y177{bottom:260.574917pt;}
.y188{bottom:260.665577pt;}
.y25d{bottom:263.593620pt;}
.y29e{bottom:263.933606pt;}
.y60{bottom:265.480306pt;}
.y94{bottom:267.480326pt;}
.yf0{bottom:267.594808pt;}
.yc3{bottom:268.117737pt;}
.y111{bottom:268.653605pt;}
.y1c2{bottom:268.657694pt;}
.y1e5{bottom:268.684938pt;}
.y163{bottom:268.777730pt;}
.y21b{bottom:270.073580pt;}
.y176{bottom:273.902917pt;}
.y187{bottom:273.993577pt;}
.y25c{bottom:276.921620pt;}
.y29d{bottom:277.261606pt;}
.y23{bottom:281.982137pt;}
.y1e4{bottom:282.012938pt;}
.y5f{bottom:282.146973pt;}
.y21a{bottom:283.401580pt;}
.y93{bottom:284.146993pt;}
.y127{bottom:285.320272pt;}
.y1c1{bottom:285.324361pt;}
.y175{bottom:287.230917pt;}
.y186{bottom:287.321577pt;}
.y25b{bottom:290.249620pt;}
.y29c{bottom:290.589606pt;}
.y22{bottom:292.187907pt;}
.y1e3{bottom:295.340938pt;}
.y219{bottom:296.729580pt;}
.y5e{bottom:298.813639pt;}
.y174{bottom:300.558917pt;}
.y185{bottom:300.649577pt;}
.y92{bottom:300.813660pt;}
.yef{bottom:300.928141pt;}
.y110{bottom:301.986938pt;}
.y1c0{bottom:301.991028pt;}
.y196{bottom:302.110921pt;}
.y25a{bottom:303.577620pt;}
.y29b{bottom:303.917606pt;}
.y1e2{bottom:308.668938pt;}
.y21{bottom:308.854574pt;}
.yc2{bottom:310.052287pt;}
.y218{bottom:310.057580pt;}
.y173{bottom:313.886917pt;}
.y184{bottom:313.977577pt;}
.y5d{bottom:315.480306pt;}
.y259{bottom:316.905620pt;}
.y29a{bottom:317.245606pt;}
.y91{bottom:317.480326pt;}
.y10f{bottom:318.653605pt;}
.y1bf{bottom:318.657694pt;}
.y195{bottom:318.777588pt;}
.y1e1{bottom:321.996938pt;}
.y217{bottom:323.385580pt;}
.y20{bottom:325.521240pt;}
.yc1{bottom:326.718953pt;}
.y172{bottom:327.214917pt;}
.y183{bottom:327.305577pt;}
.y258{bottom:330.233620pt;}
.y299{bottom:330.573606pt;}
.y5c{bottom:332.146973pt;}
.y90{bottom:334.146993pt;}
.yee{bottom:334.261475pt;}
.y10e{bottom:335.320272pt;}
.y1be{bottom:335.324361pt;}
.y1e0{bottom:335.324938pt;}
.y194{bottom:335.444255pt;}
.y216{bottom:336.713580pt;}
.y171{bottom:340.542917pt;}
.y182{bottom:340.633577pt;}
.y1f{bottom:342.187907pt;}
.yc0{bottom:343.385620pt;}
.y257{bottom:343.561620pt;}
.y298{bottom:343.901606pt;}
.y5b{bottom:348.813639pt;}
.y215{bottom:350.041580pt;}
.y8f{bottom:350.813660pt;}
.yed{bottom:350.928141pt;}
.y10d{bottom:351.986938pt;}
.y1bd{bottom:351.991028pt;}
.y193{bottom:352.110921pt;}
.y170{bottom:353.870917pt;}
.y181{bottom:353.961577pt;}
.y256{bottom:356.889620pt;}
.y297{bottom:357.229606pt;}
.ybf{bottom:360.052287pt;}
.y1df{bottom:361.992272pt;}
.y214{bottom:363.369580pt;}
.y5a{bottom:365.480306pt;}
.y16f{bottom:367.198917pt;}
.y180{bottom:367.289577pt;}
.y8e{bottom:367.480326pt;}
.yec{bottom:367.594808pt;}
.y10c{bottom:368.653605pt;}
.y1bc{bottom:368.657694pt;}
.y192{bottom:368.777588pt;}
.y255{bottom:370.217620pt;}
.y296{bottom:370.557606pt;}
.y1de{bottom:375.320272pt;}
.y1e{bottom:375.521240pt;}
.y213{bottom:376.697580pt;}
.ybe{bottom:376.718953pt;}
.y16e{bottom:380.526917pt;}
.y17f{bottom:380.617577pt;}
.y59{bottom:382.146973pt;}
.y254{bottom:383.545620pt;}
.y295{bottom:383.885606pt;}
.y8d{bottom:384.146993pt;}
.yeb{bottom:384.261475pt;}
.y10b{bottom:385.320272pt;}
.y1bb{bottom:385.324361pt;}
.y191{bottom:385.444255pt;}
.y212{bottom:390.025580pt;}
.y1d{bottom:392.187907pt;}
.ybd{bottom:393.385620pt;}
.y16d{bottom:393.854917pt;}
.y17e{bottom:393.945577pt;}
.y253{bottom:396.873620pt;}
.y294{bottom:397.213606pt;}
.y58{bottom:398.813639pt;}
.y8c{bottom:400.813660pt;}
.yea{bottom:400.928141pt;}
.y1dd{bottom:401.986898pt;}
.y10a{bottom:401.986938pt;}
.y1ba{bottom:401.991028pt;}
.y190{bottom:402.110921pt;}
.y211{bottom:403.353580pt;}
.y16c{bottom:407.182917pt;}
.y17d{bottom:407.273577pt;}
.ybc{bottom:410.052287pt;}
.y252{bottom:410.201620pt;}
.y293{bottom:410.541606pt;}
.y57{bottom:415.480306pt;}
.y210{bottom:416.681580pt;}
.y8b{bottom:417.480326pt;}
.ye9{bottom:417.594808pt;}
.y1dc{bottom:418.653564pt;}
.y109{bottom:418.653605pt;}
.y1b9{bottom:418.657694pt;}
.y18f{bottom:418.777588pt;}
.y16b{bottom:420.510917pt;}
.y17c{bottom:420.601577pt;}
.y251{bottom:423.529620pt;}
.y292{bottom:423.869606pt;}
.y1c{bottom:425.521240pt;}
.ybb{bottom:426.718953pt;}
.y20f{bottom:430.009580pt;}
.y56{bottom:432.146973pt;}
.y16a{bottom:433.838917pt;}
.y17b{bottom:433.929577pt;}
.y8a{bottom:434.146993pt;}
.ye8{bottom:434.261475pt;}
.y1db{bottom:435.320231pt;}
.y108{bottom:435.320272pt;}
.y1b8{bottom:435.324361pt;}
.y18e{bottom:435.444255pt;}
.y250{bottom:436.857620pt;}
.y291{bottom:437.197606pt;}
.y1b{bottom:442.187907pt;}
.y20e{bottom:443.337580pt;}
.yba{bottom:443.385620pt;}
.y169{bottom:447.166917pt;}
.y17a{bottom:447.257577pt;}
.y55{bottom:448.813639pt;}
.y24f{bottom:450.185620pt;}
.y290{bottom:450.525606pt;}
.y89{bottom:450.813660pt;}
.ye7{bottom:450.928141pt;}
.y1da{bottom:451.986898pt;}
.y107{bottom:451.986938pt;}
.y1b7{bottom:451.991028pt;}
.y126{bottom:451.992272pt;}
.y18d{bottom:452.110921pt;}
.y20d{bottom:456.665580pt;}
.y1a{bottom:458.854574pt;}
.yb9{bottom:460.052287pt;}
.y168{bottom:460.494917pt;}
.y179{bottom:460.585577pt;}
.y24e{bottom:463.513620pt;}
.y28f{bottom:463.853606pt;}
.y54{bottom:465.480306pt;}
.y88{bottom:467.480326pt;}
.ye6{bottom:467.594808pt;}
.y1d9{bottom:468.653564pt;}
.y106{bottom:468.653605pt;}
.y1b6{bottom:468.657694pt;}
.y18c{bottom:468.777588pt;}
.y20c{bottom:469.993580pt;}
.y167{bottom:473.822917pt;}
.y178{bottom:473.913577pt;}
.y19{bottom:475.521240pt;}
.y24d{bottom:476.841620pt;}
.y28e{bottom:477.181606pt;}
.y53{bottom:482.146973pt;}
.y20b{bottom:483.321580pt;}
.y87{bottom:484.146993pt;}
.ye5{bottom:484.261475pt;}
.y1d8{bottom:485.320231pt;}
.y105{bottom:485.320272pt;}
.y1b5{bottom:485.324361pt;}
.y24c{bottom:490.169620pt;}
.y28d{bottom:490.509606pt;}
.y18{bottom:492.187907pt;}
.yb8{bottom:493.385620pt;}
.y20a{bottom:496.649580pt;}
.y52{bottom:498.813639pt;}
.y86{bottom:500.813660pt;}
.y1d7{bottom:501.986898pt;}
.y104{bottom:501.986938pt;}
.y1b4{bottom:501.991028pt;}
.y18b{bottom:502.110921pt;}
.y24b{bottom:503.497620pt;}
.y28c{bottom:503.837606pt;}
.y17{bottom:508.854574pt;}
.y209{bottom:509.977580pt;}
.y51{bottom:515.480306pt;}
.y24a{bottom:516.825620pt;}
.y28b{bottom:517.165606pt;}
.y85{bottom:517.480326pt;}
.ye4{bottom:517.594808pt;}
.y1d6{bottom:518.653564pt;}
.y103{bottom:518.653605pt;}
.y1b3{bottom:518.657694pt;}
.y16{bottom:525.521240pt;}
.yb7{bottom:526.718953pt;}
.y249{bottom:530.153620pt;}
.y28a{bottom:530.493606pt;}
.y50{bottom:532.146973pt;}
.y84{bottom:534.146993pt;}
.y1d5{bottom:535.320231pt;}
.y102{bottom:535.320272pt;}
.y1b2{bottom:535.324361pt;}
.y208{bottom:539.977580pt;}
.y15{bottom:542.187907pt;}
.y248{bottom:543.481620pt;}
.y289{bottom:543.821606pt;}
.y4f{bottom:548.813639pt;}
.y83{bottom:550.813660pt;}
.ye3{bottom:550.928141pt;}
.y125{bottom:551.986898pt;}
.y101{bottom:551.986938pt;}
.y1b1{bottom:551.991028pt;}
.y18a{bottom:552.110921pt;}
.y247{bottom:556.809620pt;}
.y288{bottom:557.149606pt;}
.y14{bottom:558.854574pt;}
.y4e{bottom:565.480306pt;}
.y82{bottom:567.480326pt;}
.ye2{bottom:567.594808pt;}
.y124{bottom:568.653564pt;}
.y100{bottom:568.653605pt;}
.y1b0{bottom:568.657694pt;}
.y189{bottom:568.777588pt;}
.y246{bottom:570.137620pt;}
.y287{bottom:570.477606pt;}
.y13{bottom:575.521240pt;}
.y4d{bottom:582.146973pt;}
.y165{bottom:582.468306pt;}
.y245{bottom:583.465620pt;}
.y286{bottom:583.805606pt;}
.y81{bottom:584.146993pt;}
.ye1{bottom:584.261475pt;}
.yb6{bottom:585.320231pt;}
.yff{bottom:585.320272pt;}
.y1af{bottom:585.324361pt;}
.y131{bottom:585.325605pt;}
.y12{bottom:592.187907pt;}
.y164{bottom:595.796306pt;}
.y244{bottom:596.793620pt;}
.y285{bottom:597.133606pt;}
.y4c{bottom:598.813639pt;}
.y80{bottom:600.813660pt;}
.ye0{bottom:600.928141pt;}
.yb5{bottom:601.986898pt;}
.yfe{bottom:601.986938pt;}
.y1ae{bottom:601.991028pt;}
.y166{bottom:601.992272pt;}
.y207{bottom:606.718287pt;}
.y11{bottom:608.854574pt;}
.y162{bottom:609.124306pt;}
.y1d3{bottom:609.214943pt;}
.y243{bottom:610.121620pt;}
.y284{bottom:610.461606pt;}
.y4b{bottom:615.480306pt;}
.y7f{bottom:617.480326pt;}
.ydf{bottom:617.594808pt;}
.yb4{bottom:618.653564pt;}
.yfd{bottom:618.653605pt;}
.y1ad{bottom:618.657694pt;}
.y206{bottom:620.046287pt;}
.y161{bottom:622.452306pt;}
.y1d2{bottom:622.542943pt;}
.y242{bottom:623.449620pt;}
.y283{bottom:623.789606pt;}
.y10{bottom:625.521240pt;}
.y4a{bottom:632.146973pt;}
.y205{bottom:633.374287pt;}
.y7e{bottom:634.146993pt;}
.yde{bottom:634.261475pt;}
.yb3{bottom:635.320231pt;}
.yfc{bottom:635.320272pt;}
.y1ac{bottom:635.324361pt;}
.y1d4{bottom:635.325605pt;}
.y160{bottom:635.780306pt;}
.y1d1{bottom:635.870943pt;}
.y241{bottom:636.777620pt;}
.y282{bottom:637.117606pt;}
.yf{bottom:642.187907pt;}
.y204{bottom:646.702287pt;}
.y49{bottom:648.813639pt;}
.y15f{bottom:649.108306pt;}
.y1d0{bottom:649.198943pt;}
.y240{bottom:650.105620pt;}
.y281{bottom:650.445606pt;}
.y7d{bottom:650.813660pt;}
.ydd{bottom:650.928141pt;}
.yb2{bottom:651.986898pt;}
.yfb{bottom:651.986938pt;}
.y1ab{bottom:651.991028pt;}
.ye{bottom:658.854574pt;}
.y203{bottom:660.030287pt;}
.y15e{bottom:662.436306pt;}
.y1cf{bottom:662.526943pt;}
.y23f{bottom:663.433620pt;}
.y280{bottom:663.773606pt;}
.y48{bottom:665.480306pt;}
.y7c{bottom:667.480326pt;}
.ydc{bottom:667.594808pt;}
.yb1{bottom:668.653564pt;}
.y13b{bottom:668.653605pt;}
.y1aa{bottom:668.657694pt;}
.y202{bottom:673.358287pt;}
.y15d{bottom:675.764306pt;}
.y1ce{bottom:675.854943pt;}
.y23e{bottom:676.761620pt;}
.y27f{bottom:677.101606pt;}
.y47{bottom:682.146973pt;}
.y7b{bottom:684.146993pt;}
.ydb{bottom:684.261475pt;}
.yb0{bottom:685.320231pt;}
.y13a{bottom:685.320272pt;}
.y1a9{bottom:685.324361pt;}
.y201{bottom:686.686287pt;}
.y15c{bottom:689.092306pt;}
.y1cd{bottom:689.182943pt;}
.y23d{bottom:690.089620pt;}
.y27e{bottom:690.429606pt;}
.yd{bottom:692.187907pt;}
.y46{bottom:698.813639pt;}
.y200{bottom:700.014287pt;}
.y7a{bottom:700.813660pt;}
.yaf{bottom:701.986898pt;}
.y139{bottom:701.986938pt;}
.y1a8{bottom:701.991028pt;}
.y15b{bottom:702.420306pt;}
.y23c{bottom:703.417620pt;}
.y27d{bottom:703.757606pt;}
.yc{bottom:708.854574pt;}
.y1ff{bottom:713.342287pt;}
.y45{bottom:715.480306pt;}
.y15a{bottom:715.748306pt;}
.y23b{bottom:716.745620pt;}
.y27c{bottom:717.085606pt;}
.y79{bottom:717.480326pt;}
.yda{bottom:717.594808pt;}
.yae{bottom:718.653564pt;}
.y138{bottom:718.653605pt;}
.y1a7{bottom:718.657694pt;}
.yb{bottom:725.521240pt;}
.y1fe{bottom:726.670287pt;}
.y159{bottom:729.076306pt;}
.y23a{bottom:730.073620pt;}
.y27b{bottom:730.413606pt;}
.y44{bottom:732.146973pt;}
.y78{bottom:734.146993pt;}
.yad{bottom:735.320231pt;}
.y137{bottom:735.320272pt;}
.y1a6{bottom:735.324361pt;}
.y1fd{bottom:739.998287pt;}
.y158{bottom:742.404306pt;}
.y239{bottom:743.401620pt;}
.y27a{bottom:743.741606pt;}
.y43{bottom:748.813639pt;}
.y77{bottom:750.813660pt;}
.yd9{bottom:750.928141pt;}
.yac{bottom:751.986898pt;}
.y136{bottom:751.986938pt;}
.y1a5{bottom:751.991028pt;}
.y1fc{bottom:753.326287pt;}
.y157{bottom:755.732306pt;}
.y238{bottom:756.729620pt;}
.y279{bottom:757.069606pt;}
.ya{bottom:764.794803pt;}
.y42{bottom:765.480306pt;}
.y76{bottom:767.480326pt;}
.yd8{bottom:767.594808pt;}
.yab{bottom:768.653564pt;}
.y135{bottom:768.653605pt;}
.y1a4{bottom:768.657694pt;}
.y156{bottom:769.060306pt;}
.y237{bottom:770.057620pt;}
.y278{bottom:770.397606pt;}
.y9{bottom:778.122803pt;}
.y1fb{bottom:779.993620pt;}
.y41{bottom:782.146973pt;}
.y155{bottom:782.388306pt;}
.y236{bottom:783.385620pt;}
.y277{bottom:783.725606pt;}
.y75{bottom:784.146993pt;}
.yd7{bottom:784.261475pt;}
.yaa{bottom:785.320231pt;}
.y134{bottom:785.320272pt;}
.y1a3{bottom:785.324361pt;}
.y1fa{bottom:793.321620pt;}
.y154{bottom:795.716306pt;}
.y235{bottom:796.713620pt;}
.y276{bottom:797.053606pt;}
.y40{bottom:798.813639pt;}
.y74{bottom:800.813660pt;}
.yd6{bottom:800.928141pt;}
.ya9{bottom:801.986898pt;}
.y133{bottom:801.986938pt;}
.y1a2{bottom:801.991028pt;}
.y1f9{bottom:806.649620pt;}
.y153{bottom:809.044306pt;}
.y234{bottom:810.041620pt;}
.y275{bottom:810.381606pt;}
.y3f{bottom:815.480306pt;}
.y8{bottom:815.989502pt;}
.y73{bottom:817.480326pt;}
.yd5{bottom:817.594808pt;}
.ya8{bottom:818.653564pt;}
.y132{bottom:818.653605pt;}
.y1a1{bottom:818.657694pt;}
.y1f8{bottom:819.977620pt;}
.y152{bottom:822.372306pt;}
.y2b5{bottom:823.358288pt;}
.y233{bottom:823.369620pt;}
.y274{bottom:823.709606pt;}
.y3e{bottom:832.146973pt;}
.y7{bottom:832.656169pt;}
.y72{bottom:834.146993pt;}
.yd4{bottom:834.261475pt;}
.ya7{bottom:835.320231pt;}
.y123{bottom:835.320272pt;}
.y1a0{bottom:835.324361pt;}
.y151{bottom:835.700306pt;}
.y2b4{bottom:836.686288pt;}
.y232{bottom:836.697620pt;}
.y273{bottom:837.037606pt;}
.y1f7{bottom:846.644287pt;}
.y3d{bottom:848.813639pt;}
.y150{bottom:849.028306pt;}
.y231{bottom:850.025620pt;}
.y272{bottom:850.365606pt;}
.y71{bottom:850.813660pt;}
.yd3{bottom:850.928141pt;}
.ya6{bottom:851.986898pt;}
.y122{bottom:851.986938pt;}
.y19f{bottom:851.991028pt;}
.y14f{bottom:862.356306pt;}
.y230{bottom:863.353620pt;}
.y2b3{bottom:863.432954pt;}
.y271{bottom:863.693606pt;}
.y3c{bottom:865.480306pt;}
.y70{bottom:867.480326pt;}
.yd2{bottom:867.594808pt;}
.ya5{bottom:868.653564pt;}
.y121{bottom:868.653605pt;}
.y19e{bottom:868.657694pt;}
.y6{bottom:872.377441pt;}
.y14e{bottom:875.684306pt;}
.y22f{bottom:876.681620pt;}
.y1f6{bottom:876.740938pt;}
.y2b2{bottom:876.760954pt;}
.y270{bottom:877.021606pt;}
.y3b{bottom:882.146973pt;}
.y6f{bottom:884.146993pt;}
.yd1{bottom:884.261475pt;}
.ya4{bottom:885.320231pt;}
.y120{bottom:885.320272pt;}
.y19d{bottom:885.324361pt;}
.y14d{bottom:889.012306pt;}
.y22e{bottom:890.009620pt;}
.y1f5{bottom:890.068938pt;}
.y2b1{bottom:890.088954pt;}
.y26f{bottom:890.349606pt;}
.y5{bottom:896.377441pt;}
.y3a{bottom:898.813639pt;}
.y6e{bottom:900.813660pt;}
.yd0{bottom:900.928141pt;}
.ya3{bottom:901.986898pt;}
.y11f{bottom:901.986938pt;}
.y19c{bottom:901.991028pt;}
.y14c{bottom:902.340306pt;}
.y22d{bottom:903.337620pt;}
.y1f4{bottom:903.396938pt;}
.y2b0{bottom:903.416954pt;}
.y26e{bottom:903.677606pt;}
.y39{bottom:915.480306pt;}
.y14b{bottom:915.668306pt;}
.y22c{bottom:916.665620pt;}
.y2af{bottom:916.744954pt;}
.y26d{bottom:917.005606pt;}
.y6d{bottom:917.480326pt;}
.ycf{bottom:917.594808pt;}
.ya2{bottom:918.653564pt;}
.y11e{bottom:918.653605pt;}
.y19b{bottom:918.657694pt;}
.y14a{bottom:928.996306pt;}
.y22b{bottom:929.993620pt;}
.y1f3{bottom:930.064272pt;}
.y2ae{bottom:930.072954pt;}
.y26c{bottom:930.333606pt;}
.y38{bottom:932.146973pt;}
.y6c{bottom:934.146993pt;}
.yce{bottom:934.261475pt;}
.ya1{bottom:935.320231pt;}
.y11d{bottom:935.320272pt;}
.y19a{bottom:935.324361pt;}
.y149{bottom:942.324306pt;}
.y22a{bottom:943.321620pt;}
.y1f2{bottom:943.392272pt;}
.y2ad{bottom:943.400954pt;}
.y26b{bottom:943.661606pt;}
.y6b{bottom:950.813660pt;}
.ya0{bottom:951.986898pt;}
.y11c{bottom:951.986938pt;}
.y199{bottom:951.991028pt;}
.y148{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y229{bottom:956.649620pt;}
.y1f1{bottom:956.720272pt;}
.y2ac{bottom:956.728954pt;}
.y26a{bottom:956.989606pt;}
.y37{bottom:965.480306pt;}
.y6a{bottom:967.480326pt;}
.ycd{bottom:967.594808pt;}
.y9f{bottom:968.653564pt;}
.y11b{bottom:968.653605pt;}
.y198{bottom:968.657694pt;}
.y147{bottom:968.980306pt;}
.y228{bottom:969.977620pt;}
.y1f0{bottom:970.048272pt;}
.y2ab{bottom:970.056954pt;}
.y269{bottom:970.317606pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y36{bottom:1002.206543pt;}
.hc{height:29.448532pt;}
.h2{height:37.376000pt;}
.h3{height:39.712000pt;}
.hb{height:42.069333pt;}
.hd{height:44.834667pt;}
.hf{height:44.835318pt;}
.h13{height:46.376000pt;}
.h12{height:47.826667pt;}
.h4{height:49.298667pt;}
.h9{height:49.493333pt;}
.h10{height:52.448000pt;}
.h7{height:52.746667pt;}
.ha{height:54.560000pt;}
.h11{height:55.978626pt;}
.h8{height:56.266667pt;}
.h6{height:57.658667pt;}
.he{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x7{left:83.151473pt;}
.x5{left:86.929867pt;}
.xa{left:90.709469pt;}
.x4{left:408.191457pt;}
.x8{left:423.284782pt;}
.x6{left:427.081599pt;}
.x9{left:430.866924pt;}
.x1{left:647.307210pt;}
}




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