
    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_a0792c861d0152009a3e9857.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fcf98fdea721e374ff1b49c5.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_25bddcbdf3c1fb1f05066819.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_b02d2db5b88dd110998a7dfc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4496228d6b1b717d2444ee96.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_b79da529cb9d61a5bf5c7116.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1056af511b4af466bb796cf9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_673d28bc5f495f51aa449fe2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e652e8a7b3b3f212a45caa57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_611c06a6fa62a1c2f173c89b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7e4ff2b1c06446f219594f9c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls86{letter-spacing:-7.740000px;}
.ls75{letter-spacing:-6.960000px;}
.ls81{letter-spacing:-5.880000px;}
.ls83{letter-spacing:-5.460000px;}
.ls87{letter-spacing:-4.440000px;}
.ls85{letter-spacing:-4.080000px;}
.ls82{letter-spacing:-2.580000px;}
.ls84{letter-spacing:-2.160000px;}
.ls15{letter-spacing:-0.780000px;}
.ls80{letter-spacing:-0.300000px;}
.ls51{letter-spacing:-0.240000px;}
.lsba{letter-spacing:-0.192000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls73{letter-spacing:-0.144000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls74{letter-spacing:-0.096000px;}
.ls39{letter-spacing:-0.060000px;}
.ls53{letter-spacing:-0.048000px;}
.ls14{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls93{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.069000px;}
.ls8a{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.lsab{letter-spacing:0.144000px;}
.ls47{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.192000px;}
.ls7e{letter-spacing:0.223800px;}
.ls2{letter-spacing:0.240000px;}
.ls3e{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.300000px;}
.ls69{letter-spacing:0.336000px;}
.ls3c{letter-spacing:0.360000px;}
.ls76{letter-spacing:0.384000px;}
.ls21{letter-spacing:0.420000px;}
.ls34{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.576000px;}
.ls56{letter-spacing:0.600000px;}
.ls71{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.672000px;}
.lsa{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.768000px;}
.ls2d{letter-spacing:0.780000px;}
.ls95{letter-spacing:0.816000px;}
.ls4c{letter-spacing:0.840000px;}
.ls9e{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls40{letter-spacing:0.912000px;}
.lse{letter-spacing:0.960000px;}
.ls70{letter-spacing:1.008000px;}
.ls32{letter-spacing:1.020000px;}
.ls9a{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.080000px;}
.ls68{letter-spacing:1.104000px;}
.ls11{letter-spacing:1.140000px;}
.ls91{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.200000px;}
.ls7f{letter-spacing:1.248000px;}
.ls35{letter-spacing:1.260000px;}
.ls98{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.320000px;}
.ls7a{letter-spacing:1.344000px;}
.ls4b{letter-spacing:1.380000px;}
.ls44{letter-spacing:1.392000px;}
.ls31{letter-spacing:1.440000px;}
.ls5f{letter-spacing:1.488000px;}
.ls1b{letter-spacing:1.500000px;}
.ls79{letter-spacing:1.536000px;}
.ls28{letter-spacing:1.560000px;}
.ls60{letter-spacing:1.584000px;}
.ls33{letter-spacing:1.620000px;}
.ls99{letter-spacing:1.632000px;}
.ls9{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.728000px;}
.ls6{letter-spacing:1.740000px;}
.lsa7{letter-spacing:1.776000px;}
.ls49{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.824000px;}
.ls3d{letter-spacing:1.860000px;}
.lsa9{letter-spacing:1.872000px;}
.lsf{letter-spacing:1.920000px;}
.lsb6{letter-spacing:1.968000px;}
.ls45{letter-spacing:1.980000px;}
.ls90{letter-spacing:2.016000px;}
.ls57{letter-spacing:2.040000px;}
.ls5e{letter-spacing:2.064000px;}
.ls30{letter-spacing:2.100000px;}
.lsa6{letter-spacing:2.112000px;}
.ls2a{letter-spacing:2.160000px;}
.ls4{letter-spacing:2.220000px;}
.lsb5{letter-spacing:2.256000px;}
.ls36{letter-spacing:2.280000px;}
.lsb1{letter-spacing:2.304000px;}
.ls24{letter-spacing:2.340000px;}
.ls26{letter-spacing:2.400000px;}
.lsad{letter-spacing:2.448000px;}
.ls1d{letter-spacing:2.460000px;}
.ls4f{letter-spacing:2.496000px;}
.ls50{letter-spacing:2.520000px;}
.lsb3{letter-spacing:2.544000px;}
.ls16{letter-spacing:2.580000px;}
.lsae{letter-spacing:2.592000px;}
.lsd{letter-spacing:2.640000px;}
.lsb4{letter-spacing:2.688000px;}
.ls1e{letter-spacing:2.700000px;}
.lsaa{letter-spacing:2.736000px;}
.ls13{letter-spacing:2.760000px;}
.lsb7{letter-spacing:2.784000px;}
.ls55{letter-spacing:2.820000px;}
.ls78{letter-spacing:2.832000px;}
.ls37{letter-spacing:2.880000px;}
.lsaf{letter-spacing:2.928000px;}
.ls1a{letter-spacing:2.940000px;}
.lsbd{letter-spacing:2.976000px;}
.ls54{letter-spacing:3.000000px;}
.lsb8{letter-spacing:3.024000px;}
.ls3{letter-spacing:3.060000px;}
.ls67{letter-spacing:3.072000px;}
.ls5{letter-spacing:3.120000px;}
.lsbb{letter-spacing:3.168000px;}
.lsa4{letter-spacing:3.180000px;}
.lsbc{letter-spacing:3.216000px;}
.ls46{letter-spacing:3.240000px;}
.ls6c{letter-spacing:3.300000px;}
.lsa8{letter-spacing:3.312000px;}
.ls1c{letter-spacing:3.360000px;}
.lsb0{letter-spacing:3.408000px;}
.ls64{letter-spacing:3.420000px;}
.lsb2{letter-spacing:3.456000px;}
.lsa0{letter-spacing:3.480000px;}
.lsbe{letter-spacing:3.504000px;}
.ls48{letter-spacing:3.540000px;}
.lsb9{letter-spacing:3.552000px;}
.ls7c{letter-spacing:3.600000px;}
.ls29{letter-spacing:3.660000px;}
.lsbf{letter-spacing:3.744000px;}
.ls7{letter-spacing:3.780000px;}
.ls2f{letter-spacing:3.840000px;}
.lsac{letter-spacing:3.888000px;}
.ls62{letter-spacing:3.900000px;}
.ls2c{letter-spacing:3.960000px;}
.ls59{letter-spacing:4.020000px;}
.lsa1{letter-spacing:4.080000px;}
.ls8b{letter-spacing:4.224000px;}
.ls88{letter-spacing:4.260000px;}
.ls6a{letter-spacing:4.272000px;}
.ls2e{letter-spacing:4.320000px;}
.ls10{letter-spacing:4.380000px;}
.ls5c{letter-spacing:4.464000px;}
.ls52{letter-spacing:4.500000px;}
.ls6b{letter-spacing:4.560000px;}
.ls65{letter-spacing:4.608000px;}
.ls42{letter-spacing:4.656000px;}
.ls96{letter-spacing:4.740000px;}
.ls94{letter-spacing:4.800000px;}
.ls9f{letter-spacing:4.848000px;}
.ls3f{letter-spacing:4.896000px;}
.ls9d{letter-spacing:4.920000px;}
.ls5b{letter-spacing:4.980000px;}
.ls92{letter-spacing:5.136000px;}
.ls7d{letter-spacing:5.160000px;}
.ls6d{letter-spacing:5.220000px;}
.ls8c{letter-spacing:5.280000px;}
.ls7b{letter-spacing:5.340000px;}
.ls22{letter-spacing:5.400000px;}
.ls23{letter-spacing:5.460000px;}
.ls8f{letter-spacing:5.520000px;}
.ls61{letter-spacing:5.568000px;}
.ls20{letter-spacing:5.580000px;}
.ls6f{letter-spacing:5.760000px;}
.ls8e{letter-spacing:5.940000px;}
.ls9b{letter-spacing:6.060000px;}
.ls41{letter-spacing:6.096000px;}
.ls58{letter-spacing:6.360000px;}
.ls38{letter-spacing:6.420000px;}
.ls4a{letter-spacing:6.780000px;}
.ls5a{letter-spacing:6.900000px;}
.ls63{letter-spacing:6.960000px;}
.lsa3{letter-spacing:7.080000px;}
.ls25{letter-spacing:7.260000px;}
.lsa2{letter-spacing:7.380000px;}
.ls97{letter-spacing:7.440000px;}
.ls6e{letter-spacing:7.560000px;}
.lsa5{letter-spacing:7.620000px;}
.ls89{letter-spacing:9.240000px;}
.ls8d{letter-spacing:10.260000px;}
.ls9c{letter-spacing:10.980000px;}
.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;}
}
.wsea{word-spacing:-21.060000px;}
.wsa4{word-spacing:-20.760000px;}
.wsd8{word-spacing:-20.280000px;}
.ws5b{word-spacing:-19.500000px;}
.wsd4{word-spacing:-19.260000px;}
.ws7f{word-spacing:-19.020000px;}
.ws7a{word-spacing:-18.960000px;}
.ws9e{word-spacing:-18.840000px;}
.wsbb{word-spacing:-18.660000px;}
.ws101{word-spacing:-18.480000px;}
.ws9f{word-spacing:-18.300000px;}
.wsa0{word-spacing:-18.240000px;}
.ws100{word-spacing:-18.180000px;}
.wsec{word-spacing:-18.120000px;}
.wseb{word-spacing:-18.000000px;}
.ws7b{word-spacing:-17.820000px;}
.wsff{word-spacing:-17.700000px;}
.ws23{word-spacing:-17.640000px;}
.ws26{word-spacing:-17.580000px;}
.ws94{word-spacing:-17.520000px;}
.ws7d{word-spacing:-17.400000px;}
.ws1f{word-spacing:-17.340000px;}
.wsef{word-spacing:-17.280000px;}
.wsee{word-spacing:-17.220000px;}
.ws103{word-spacing:-17.160000px;}
.ws83{word-spacing:-17.100000px;}
.wsbc{word-spacing:-17.040000px;}
.ws102{word-spacing:-16.980000px;}
.ws82{word-spacing:-16.920000px;}
.wsc3{word-spacing:-16.860000px;}
.ws5c{word-spacing:-16.800000px;}
.wsc4{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.wsa2{word-spacing:-16.620000px;}
.ws62{word-spacing:-16.560000px;}
.ws80{word-spacing:-16.500000px;}
.ws27{word-spacing:-16.440000px;}
.ws5e{word-spacing:-16.380000px;}
.ws20{word-spacing:-16.320000px;}
.ws96{word-spacing:-16.260000px;}
.ws60{word-spacing:-16.200000px;}
.ws4d{word-spacing:-16.140000px;}
.ws22{word-spacing:-16.080000px;}
.ws95{word-spacing:-16.020000px;}
.ws5d{word-spacing:-15.960000px;}
.ws7c{word-spacing:-15.900000px;}
.ws10a{word-spacing:-15.888000px;}
.wsed{word-spacing:-15.840000px;}
.wsa5{word-spacing:-15.780000px;}
.ws25{word-spacing:-15.720000px;}
.ws1b{word-spacing:-15.660000px;}
.wse8{word-spacing:-15.600000px;}
.ws1e{word-spacing:-15.540000px;}
.wsbd{word-spacing:-15.480000px;}
.ws1d{word-spacing:-15.420000px;}
.ws5f{word-spacing:-15.360000px;}
.ws12c{word-spacing:-15.312000px;}
.wsa3{word-spacing:-15.300000px;}
.wsa1{word-spacing:-15.240000px;}
.wsd9{word-spacing:-15.180000px;}
.ws9a{word-spacing:-15.072000px;}
.ws81{word-spacing:-15.060000px;}
.ws11f{word-spacing:-15.024000px;}
.ws1c{word-spacing:-15.000000px;}
.ws7e{word-spacing:-14.880000px;}
.ws12e{word-spacing:-14.832000px;}
.ws24{word-spacing:-14.820000px;}
.ws129{word-spacing:-14.784000px;}
.ws109{word-spacing:-14.736000px;}
.ws114{word-spacing:-14.544000px;}
.ws12a{word-spacing:-14.400000px;}
.ws12d{word-spacing:-14.304000px;}
.ws4f{word-spacing:-14.160000px;}
.ws12b{word-spacing:-14.064000px;}
.wsda{word-spacing:-14.016000px;}
.ws108{word-spacing:-13.776000px;}
.ws99{word-spacing:-13.728000px;}
.ws86{word-spacing:-13.584000px;}
.wsba{word-spacing:-13.536000px;}
.ws50{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.wse9{word-spacing:-13.296000px;}
.wsc2{word-spacing:-13.248000px;}
.ws97{word-spacing:-13.200000px;}
.wsdb{word-spacing:-13.152000px;}
.ws11e{word-spacing:-13.056000px;}
.ws4e{word-spacing:-12.960000px;}
.wsfb{word-spacing:-12.864000px;}
.wsbf{word-spacing:-12.840000px;}
.wsdd{word-spacing:-12.816000px;}
.ws98{word-spacing:-12.672000px;}
.wsd7{word-spacing:-12.624000px;}
.wsfc{word-spacing:-12.576000px;}
.ws84{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.ws21{word-spacing:-12.432000px;}
.wsbe{word-spacing:-12.420000px;}
.ws9d{word-spacing:-12.288000px;}
.ws85{word-spacing:-12.240000px;}
.ws61{word-spacing:-12.192000px;}
.wsdc{word-spacing:-12.048000px;}
.wsb9{word-spacing:-12.000000px;}
.ws75{word-spacing:-11.952000px;}
.ws9c{word-spacing:-11.904000px;}
.ws9b{word-spacing:-11.856000px;}
.wsc0{word-spacing:-10.920000px;}
.wsc1{word-spacing:-10.560000px;}
.ws0{word-spacing:-10.210662px;}
.ws93{word-spacing:-6.960000px;}
.ws35{word-spacing:-6.420000px;}
.wsf6{word-spacing:-6.060000px;}
.wsaf{word-spacing:-5.820000px;}
.wsb0{word-spacing:-5.760000px;}
.wse0{word-spacing:-5.280000px;}
.wscc{word-spacing:-5.160000px;}
.wsf2{word-spacing:-4.740000px;}
.ws68{word-spacing:-4.500000px;}
.ws124{word-spacing:-4.464000px;}
.ws14{word-spacing:-4.440000px;}
.ws3d{word-spacing:-4.320000px;}
.wsd5{word-spacing:-4.260000px;}
.ws106{word-spacing:-4.080000px;}
.ws8a{word-spacing:-4.020000px;}
.ws3a{word-spacing:-3.960000px;}
.ws92{word-spacing:-3.900000px;}
.ws113{word-spacing:-3.888000px;}
.ws3e{word-spacing:-3.840000px;}
.wsb{word-spacing:-3.780000px;}
.ws132{word-spacing:-3.744000px;}
.ws38{word-spacing:-3.720000px;}
.ws40{word-spacing:-3.660000px;}
.wsc9{word-spacing:-3.600000px;}
.ws128{word-spacing:-3.552000px;}
.ws67{word-spacing:-3.540000px;}
.ws12f{word-spacing:-3.504000px;}
.ws105{word-spacing:-3.480000px;}
.ws11a{word-spacing:-3.456000px;}
.ws2d{word-spacing:-3.420000px;}
.ws116{word-spacing:-3.408000px;}
.ws63{word-spacing:-3.360000px;}
.ws110{word-spacing:-3.312000px;}
.wsae{word-spacing:-3.300000px;}
.ws66{word-spacing:-3.240000px;}
.ws130{word-spacing:-3.216000px;}
.ws104{word-spacing:-3.180000px;}
.ws9{word-spacing:-3.120000px;}
.wsaa{word-spacing:-3.072000px;}
.ws7{word-spacing:-3.060000px;}
.ws127{word-spacing:-3.024000px;}
.wse6{word-spacing:-3.000000px;}
.ws133{word-spacing:-2.976000px;}
.ws2b{word-spacing:-2.940000px;}
.ws115{word-spacing:-2.928000px;}
.ws5{word-spacing:-2.886000px;}
.ws4b{word-spacing:-2.880000px;}
.ws134{word-spacing:-2.832000px;}
.ws87{word-spacing:-2.820000px;}
.ws126{word-spacing:-2.784000px;}
.ws19{word-spacing:-2.760000px;}
.ws111{word-spacing:-2.736000px;}
.ws2f{word-spacing:-2.700000px;}
.ws121{word-spacing:-2.688000px;}
.ws11{word-spacing:-2.640000px;}
.ws10e{word-spacing:-2.592000px;}
.ws18{word-spacing:-2.580000px;}
.ws11b{word-spacing:-2.544000px;}
.ws74{word-spacing:-2.520000px;}
.ws71{word-spacing:-2.496000px;}
.ws2e{word-spacing:-2.460000px;}
.ws118{word-spacing:-2.448000px;}
.ws34{word-spacing:-2.400000px;}
.ws32{word-spacing:-2.340000px;}
.ws119{word-spacing:-2.304000px;}
.ws4a{word-spacing:-2.280000px;}
.ws122{word-spacing:-2.256000px;}
.ws8{word-spacing:-2.220000px;}
.ws57{word-spacing:-2.160000px;}
.ws10c{word-spacing:-2.112000px;}
.ws3f{word-spacing:-2.100000px;}
.ws8f{word-spacing:-2.064000px;}
.ws73{word-spacing:-2.040000px;}
.wse1{word-spacing:-2.016000px;}
.ws64{word-spacing:-1.980000px;}
.ws125{word-spacing:-1.968000px;}
.ws13{word-spacing:-1.920000px;}
.ws52{word-spacing:-1.860000px;}
.wsb4{word-spacing:-1.824000px;}
.wsa{word-spacing:-1.800000px;}
.ws10d{word-spacing:-1.776000px;}
.ws15{word-spacing:-1.740000px;}
.wsa9{word-spacing:-1.728000px;}
.wsd{word-spacing:-1.680000px;}
.ws10f{word-spacing:-1.632000px;}
.ws43{word-spacing:-1.620000px;}
.ws91{word-spacing:-1.584000px;}
.ws33{word-spacing:-1.560000px;}
.wsc6{word-spacing:-1.536000px;}
.ws2c{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.488000px;}
.ws41{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.392000px;}
.ws69{word-spacing:-1.380000px;}
.wsc7{word-spacing:-1.344000px;}
.ws36{word-spacing:-1.320000px;}
.wsf4{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.248000px;}
.ws1a{word-spacing:-1.200000px;}
.wse2{word-spacing:-1.152000px;}
.ws16{word-spacing:-1.140000px;}
.wsab{word-spacing:-1.104000px;}
.wsf{word-spacing:-1.080000px;}
.wsf5{word-spacing:-1.056000px;}
.ws42{word-spacing:-1.020000px;}
.wsb2{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.960000px;}
.ws55{word-spacing:-0.912000px;}
.ws2a{word-spacing:-0.900000px;}
.wsfe{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.840000px;}
.wsb7{word-spacing:-0.816000px;}
.ws3c{word-spacing:-0.780000px;}
.ws131{word-spacing:-0.768000px;}
.wse{word-spacing:-0.720000px;}
.ws58{word-spacing:-0.672000px;}
.ws30{word-spacing:-0.660000px;}
.wsb3{word-spacing:-0.624000px;}
.ws88{word-spacing:-0.600000px;}
.ws8c{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.528000px;}
.ws39{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.wsb5{word-spacing:-0.384000px;}
.ws51{word-spacing:-0.360000px;}
.wsac{word-spacing:-0.336000px;}
.ws17{word-spacing:-0.300000px;}
.ws54{word-spacing:-0.288000px;}
.ws6{word-spacing:-0.240000px;}
.ws6f{word-spacing:-0.192000px;}
.wsc{word-spacing:-0.180000px;}
.ws112{word-spacing:-0.144000px;}
.ws28{word-spacing:-0.120000px;}
.wsde{word-spacing:-0.096000px;}
.ws29{word-spacing:-0.060000px;}
.ws77{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws76{word-spacing:0.048000px;}
.ws3b{word-spacing:0.060000px;}
.wsad{word-spacing:0.096000px;}
.ws49{word-spacing:0.120000px;}
.ws6d{word-spacing:0.144000px;}
.ws47{word-spacing:0.180000px;}
.ws78{word-spacing:0.192000px;}
.ws65{word-spacing:0.240000px;}
.wsc8{word-spacing:0.300000px;}
.wsd2{word-spacing:0.480000px;}
.wsdf{word-spacing:0.672000px;}
.ws6c{word-spacing:1.440000px;}
.wsa7{word-spacing:1.500000px;}
.wse7{word-spacing:2.016000px;}
.wse4{word-spacing:2.160000px;}
.ws6e{word-spacing:2.208000px;}
.wsd6{word-spacing:2.400000px;}
.ws11d{word-spacing:2.496000px;}
.wsca{word-spacing:2.580000px;}
.wsb8{word-spacing:2.832000px;}
.ws79{word-spacing:2.880000px;}
.wsd1{word-spacing:3.300000px;}
.ws11c{word-spacing:3.360000px;}
.wse3{word-spacing:3.504000px;}
.wsb6{word-spacing:3.936000px;}
.wsa6{word-spacing:3.960000px;}
.ws53{word-spacing:3.984000px;}
.wscd{word-spacing:4.080000px;}
.ws72{word-spacing:4.176000px;}
.ws8e{word-spacing:4.224000px;}
.ws120{word-spacing:4.272000px;}
.wse5{word-spacing:4.320000px;}
.ws123{word-spacing:4.464000px;}
.ws8d{word-spacing:4.512000px;}
.ws48{word-spacing:4.560000px;}
.wsfd{word-spacing:4.848000px;}
.ws10b{word-spacing:4.860000px;}
.ws45{word-spacing:4.920000px;}
.ws37{word-spacing:4.980000px;}
.wsf3{word-spacing:5.280000px;}
.ws59{word-spacing:5.328000px;}
.wscf{word-spacing:5.460000px;}
.wsc5{word-spacing:5.472000px;}
.ws107{word-spacing:5.520000px;}
.wsfa{word-spacing:5.580000px;}
.wsf0{word-spacing:5.700000px;}
.ws89{word-spacing:5.820000px;}
.wsce{word-spacing:5.880000px;}
.ws6a{word-spacing:5.940000px;}
.wsf1{word-spacing:6.060000px;}
.ws56{word-spacing:6.096000px;}
.wsa8{word-spacing:6.180000px;}
.wsf7{word-spacing:6.300000px;}
.ws4c{word-spacing:6.360000px;}
.wsb1{word-spacing:6.960000px;}
.wsf9{word-spacing:7.020000px;}
.ws8b{word-spacing:7.080000px;}
.ws117{word-spacing:7.296000px;}
.wscb{word-spacing:7.560000px;}
.wsd0{word-spacing:7.740000px;}
.wsf8{word-spacing:7.980000px;}
._10{margin-left:-2898.096000px;}
._11{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._f{margin-left:-8.100000px;}
._5{margin-left:-6.996600px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._c{width:1.050000px;}
._8{width:2.310000px;}
._b{width:4.170000px;}
._6{width:5.220000px;}
._9{width:6.960000px;}
._7{width:8.040000px;}
._a{width:9.480000px;}
._e{width:11.100000px;}
._d{width:12.135000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.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;}
.y2d{bottom:47.777250px;}
.y1c3{bottom:82.917150px;}
.y18c{bottom:83.251500px;}
.yeb{bottom:83.436900px;}
.y60{bottom:83.635350px;}
.yf0{bottom:83.649450px;}
.y152{bottom:83.770350px;}
.y1ae{bottom:83.779500px;}
.y94{bottom:84.319500px;}
.ycb{bottom:86.770350px;}
.y1ab{bottom:87.408150px;}
.y2a{bottom:88.026750px;}
.y26a{bottom:89.121900px;}
.ye7{bottom:89.312100px;}
.y84{bottom:89.920350px;}
.y185{bottom:91.947000px;}
.y109{bottom:92.912100px;}
.y2aa{bottom:95.263500px;}
.y1e6{bottom:98.312100px;}
.y13c{bottom:98.453850px;}
.y1c2{bottom:98.661150px;}
.y18b{bottom:98.995500px;}
.yea{bottom:99.180900px;}
.yef{bottom:99.393450px;}
.y1ad{bottom:99.523500px;}
.y200{bottom:101.628600px;}
.y5f{bottom:101.635350px;}
.y151{bottom:101.770350px;}
.y231{bottom:101.778600px;}
.y29{bottom:103.023000px;}
.y269{bottom:104.121900px;}
.yca{bottom:104.770350px;}
.y1aa{bottom:105.408150px;}
.y184{bottom:106.947000px;}
.ye6{bottom:107.312100px;}
.y83{bottom:107.920350px;}
.y2a9{bottom:110.263500px;}
.y108{bottom:110.912100px;}
.y1c1{bottom:114.405150px;}
.ye9{bottom:114.924900px;}
.yee{bottom:115.137450px;}
.y1e5{bottom:116.312100px;}
.y13b{bottom:116.453850px;}
.y268{bottom:119.121900px;}
.y230{bottom:119.373600px;}
.y1ff{bottom:119.628600px;}
.y5e{bottom:119.635350px;}
.y150{bottom:119.770350px;}
.y183{bottom:121.947000px;}
.yc9{bottom:122.770350px;}
.y1a9{bottom:123.408150px;}
.y2a8{bottom:125.263500px;}
.ye5{bottom:125.312100px;}
.y82{bottom:125.920350px;}
.y107{bottom:128.912100px;}
.ye8{bottom:130.668900px;}
.yed{bottom:130.881450px;}
.y267{bottom:134.121900px;}
.y1e4{bottom:134.312100px;}
.y13a{bottom:134.453850px;}
.y182{bottom:136.947000px;}
.y1fe{bottom:137.628600px;}
.y5d{bottom:137.635350px;}
.y14f{bottom:137.770350px;}
.y2a7{bottom:140.263500px;}
.yc8{bottom:140.770350px;}
.y1a8{bottom:141.408150px;}
.ye4{bottom:143.312100px;}
.y81{bottom:143.920350px;}
.y106{bottom:146.912100px;}
.y266{bottom:149.121900px;}
.y1e3{bottom:152.312100px;}
.y139{bottom:152.453850px;}
.y2a6{bottom:155.263500px;}
.y1fd{bottom:155.628600px;}
.y5c{bottom:155.635350px;}
.y14e{bottom:155.770350px;}
.y22f{bottom:155.778600px;}
.yc7{bottom:158.770350px;}
.y1a7{bottom:159.408150px;}
.ye3{bottom:161.312100px;}
.y80{bottom:161.920350px;}
.y265{bottom:164.121900px;}
.y105{bottom:164.912100px;}
.y181{bottom:168.070350px;}
.y26{bottom:168.951450px;}
.y2a5{bottom:170.263500px;}
.y1e2{bottom:170.312100px;}
.y138{bottom:170.453850px;}
.y1fc{bottom:173.628600px;}
.y5b{bottom:173.635350px;}
.y14d{bottom:173.770350px;}
.y22e{bottom:173.778600px;}
.yc6{bottom:176.770350px;}
.y1a6{bottom:177.408150px;}
.y264{bottom:179.121900px;}
.ye2{bottom:179.312100px;}
.y7f{bottom:179.920350px;}
.y104{bottom:182.912100px;}
.y2a4{bottom:185.263500px;}
.y180{bottom:185.665350px;}
.y25{bottom:186.951450px;}
.y1e1{bottom:188.312100px;}
.y137{bottom:188.453850px;}
.y5a{bottom:191.635350px;}
.y14c{bottom:191.770350px;}
.y22d{bottom:191.778600px;}
.y263{bottom:194.121900px;}
.yc5{bottom:194.770350px;}
.y1a5{bottom:195.408150px;}
.ye1{bottom:197.312100px;}
.y7e{bottom:197.920350px;}
.y2a3{bottom:200.263500px;}
.y103{bottom:200.912100px;}
.y24{bottom:204.951450px;}
.y1e0{bottom:206.312100px;}
.y136{bottom:206.453850px;}
.y262{bottom:209.121900px;}
.y22c{bottom:209.373600px;}
.y59{bottom:209.635350px;}
.y14b{bottom:209.770350px;}
.yc4{bottom:212.770350px;}
.y1a4{bottom:213.408150px;}
.y2a2{bottom:215.263500px;}
.ye0{bottom:215.312100px;}
.y7d{bottom:215.920350px;}
.y102{bottom:218.912100px;}
.y17f{bottom:221.920350px;}
.y23{bottom:222.951450px;}
.y261{bottom:224.121900px;}
.y1df{bottom:224.312100px;}
.y135{bottom:224.453850px;}
.y58{bottom:227.635350px;}
.y14a{bottom:227.770350px;}
.y2a1{bottom:230.263500px;}
.yc3{bottom:230.770350px;}
.y1a3{bottom:231.408150px;}
.ydf{bottom:233.312100px;}
.y7c{bottom:233.920350px;}
.y101{bottom:236.912100px;}
.y260{bottom:239.121900px;}
.y17e{bottom:239.920350px;}
.y22{bottom:240.951450px;}
.y1de{bottom:242.312100px;}
.y134{bottom:242.453850px;}
.y2a0{bottom:245.263500px;}
.y57{bottom:245.635350px;}
.y149{bottom:245.770350px;}
.y22b{bottom:245.778600px;}
.yc2{bottom:248.770350px;}
.y1a2{bottom:249.408150px;}
.yde{bottom:251.312100px;}
.y7b{bottom:251.920350px;}
.y25f{bottom:254.121900px;}
.y100{bottom:254.912100px;}
.y17d{bottom:257.920350px;}
.y21{bottom:258.951450px;}
.y29f{bottom:260.263500px;}
.y1dd{bottom:260.312100px;}
.y133{bottom:260.453850px;}
.y56{bottom:263.635350px;}
.y148{bottom:263.770350px;}
.y22a{bottom:263.778600px;}
.yc1{bottom:266.770350px;}
.y1a1{bottom:267.408150px;}
.y25e{bottom:269.121900px;}
.ydd{bottom:269.312100px;}
.yff{bottom:272.912100px;}
.y29e{bottom:275.263500px;}
.y17c{bottom:275.920350px;}
.y20{bottom:276.951450px;}
.y1dc{bottom:278.312100px;}
.y132{bottom:278.453850px;}
.y55{bottom:281.635350px;}
.y147{bottom:281.770350px;}
.y229{bottom:281.778600px;}
.y25d{bottom:284.121900px;}
.yc0{bottom:284.770350px;}
.y1a0{bottom:285.408150px;}
.ydc{bottom:287.312100px;}
.y7a{bottom:287.515350px;}
.y29d{bottom:290.263500px;}
.yfe{bottom:290.912100px;}
.y17b{bottom:293.920350px;}
.y1f{bottom:294.951450px;}
.y1db{bottom:296.312100px;}
.y131{bottom:296.453850px;}
.y25c{bottom:299.121900px;}
.y54{bottom:299.635350px;}
.y146{bottom:299.770350px;}
.y228{bottom:299.778600px;}
.ybf{bottom:302.770350px;}
.y19f{bottom:303.408150px;}
.y29c{bottom:305.263500px;}
.yfd{bottom:308.912100px;}
.y17a{bottom:311.920350px;}
.y1e{bottom:312.951450px;}
.y25b{bottom:314.121900px;}
.y1da{bottom:314.312100px;}
.y130{bottom:314.453850px;}
.y53{bottom:317.635350px;}
.y145{bottom:317.770350px;}
.y227{bottom:317.778600px;}
.y29b{bottom:320.263500px;}
.ybe{bottom:320.770350px;}
.y19e{bottom:321.408150px;}
.ydb{bottom:322.805250px;}
.y79{bottom:323.770350px;}
.yfc{bottom:326.912100px;}
.y25a{bottom:329.121900px;}
.y179{bottom:329.920350px;}
.y1d{bottom:330.951450px;}
.y1d9{bottom:332.312100px;}
.y12f{bottom:332.453850px;}
.y29a{bottom:335.263500px;}
.y52{bottom:335.635350px;}
.y144{bottom:335.770350px;}
.y226{bottom:335.778600px;}
.yda{bottom:337.805250px;}
.ybd{bottom:338.770350px;}
.y1c0{bottom:338.901300px;}
.y19d{bottom:339.408150px;}
.y78{bottom:341.770350px;}
.y259{bottom:344.121900px;}
.yfb{bottom:344.912100px;}
.y178{bottom:347.920350px;}
.y1c{bottom:348.951450px;}
.y299{bottom:350.263500px;}
.y1d8{bottom:350.312100px;}
.yd9{bottom:352.805250px;}
.y51{bottom:353.635350px;}
.y143{bottom:353.770350px;}
.y225{bottom:353.778600px;}
.y1bf{bottom:353.901300px;}
.ybc{bottom:356.770350px;}
.y19c{bottom:357.408150px;}
.y258{bottom:359.121900px;}
.y77{bottom:359.770350px;}
.y298{bottom:365.263500px;}
.y177{bottom:365.920350px;}
.y1b{bottom:366.951450px;}
.yd8{bottom:367.805250px;}
.y12e{bottom:367.947000px;}
.y1d7{bottom:368.312100px;}
.y1be{bottom:368.901300px;}
.y50{bottom:371.635350px;}
.y142{bottom:371.770350px;}
.y224{bottom:371.778600px;}
.y257{bottom:374.121900px;}
.ybb{bottom:374.770350px;}
.y19b{bottom:375.408150px;}
.y76{bottom:377.770350px;}
.y297{bottom:380.263500px;}
.yfa{bottom:380.405250px;}
.yd7{bottom:382.805250px;}
.y12d{bottom:382.947000px;}
.y1bd{bottom:383.901300px;}
.y176{bottom:383.920350px;}
.y28{bottom:384.951450px;}
.y1d6{bottom:386.312100px;}
.y256{bottom:389.121900px;}
.y4f{bottom:389.635350px;}
.y141{bottom:389.770350px;}
.y223{bottom:389.778600px;}
.yba{bottom:392.770350px;}
.y19a{bottom:393.408150px;}
.y296{bottom:395.263500px;}
.yf9{bottom:395.405250px;}
.y75{bottom:395.770350px;}
.yd6{bottom:397.805250px;}
.y12c{bottom:397.947000px;}
.y1bc{bottom:398.901300px;}
.y175{bottom:401.920350px;}
.y1a{bottom:402.548700px;}
.y27{bottom:402.951450px;}
.y255{bottom:404.121900px;}
.y4e{bottom:407.635350px;}
.y140{bottom:407.770350px;}
.y222{bottom:407.778600px;}
.y295{bottom:410.263500px;}
.yf8{bottom:410.405250px;}
.yb9{bottom:410.770350px;}
.y199{bottom:411.408150px;}
.yd5{bottom:412.805250px;}
.y12b{bottom:412.947000px;}
.y74{bottom:413.770350px;}
.y1bb{bottom:413.901300px;}
.y254{bottom:419.121900px;}
.y1d5{bottom:421.805250px;}
.y294{bottom:425.263500px;}
.y221{bottom:425.373600px;}
.y4d{bottom:425.635350px;}
.y13f{bottom:425.770350px;}
.yd4{bottom:427.805250px;}
.y12a{bottom:427.947000px;}
.yb8{bottom:428.770350px;}
.y1ba{bottom:428.901300px;}
.y198{bottom:429.408150px;}
.y73{bottom:431.770350px;}
.y253{bottom:434.121900px;}
.y1d4{bottom:436.805250px;}
.y174{bottom:437.515350px;}
.y293{bottom:440.263500px;}
.yd3{bottom:442.805250px;}
.y129{bottom:442.947000px;}
.yf7{bottom:443.515350px;}
.y4c{bottom:443.635350px;}
.y13e{bottom:443.770350px;}
.y1b9{bottom:443.901300px;}
.yb7{bottom:446.770350px;}
.y197{bottom:447.408150px;}
.y252{bottom:449.121900px;}
.y72{bottom:449.770350px;}
.y1d3{bottom:451.805250px;}
.y292{bottom:455.263500px;}
.yd2{bottom:457.805250px;}
.y128{bottom:457.947000px;}
.y1b8{bottom:458.901300px;}
.y4b{bottom:461.635350px;}
.y13d{bottom:461.770350px;}
.y220{bottom:461.778600px;}
.y251{bottom:464.121900px;}
.yb6{bottom:464.770350px;}
.y196{bottom:465.408150px;}
.y1d2{bottom:466.805250px;}
.y71{bottom:467.770350px;}
.y291{bottom:470.263500px;}
.yd1{bottom:472.805250px;}
.y127{bottom:472.947000px;}
.y173{bottom:473.770350px;}
.y1b7{bottom:473.901300px;}
.y250{bottom:479.121900px;}
.y4a{bottom:479.635350px;}
.yf6{bottom:479.770350px;}
.y21f{bottom:479.778600px;}
.y19{bottom:480.064200px;}
.y1d1{bottom:481.805250px;}
.yb5{bottom:482.770350px;}
.y195{bottom:483.408150px;}
.y290{bottom:485.263500px;}
.y70{bottom:485.770350px;}
.yd0{bottom:487.805250px;}
.y126{bottom:487.947000px;}
.y172{bottom:491.770350px;}
.y24f{bottom:494.121900px;}
.y1d0{bottom:496.805250px;}
.y49{bottom:497.635350px;}
.yf5{bottom:497.770350px;}
.y21e{bottom:497.778600px;}
.y28f{bottom:500.263500px;}
.yb4{bottom:500.770350px;}
.y194{bottom:501.408150px;}
.ycf{bottom:502.805250px;}
.y125{bottom:502.947000px;}
.y6f{bottom:503.770350px;}
.y1b6{bottom:507.010350px;}
.y18{bottom:507.409200px;}
.y24e{bottom:509.121900px;}
.y171{bottom:509.770350px;}
.y1cf{bottom:511.805250px;}
.y28e{bottom:515.263500px;}
.y48{bottom:515.635350px;}
.yf4{bottom:515.770350px;}
.y21d{bottom:515.778600px;}
.y124{bottom:517.947000px;}
.yb3{bottom:518.770350px;}
.y6e{bottom:521.770350px;}
.y24d{bottom:524.121900px;}
.y1b5{bottom:525.010350px;}
.y17{bottom:525.409200px;}
.y1ce{bottom:526.805250px;}
.y170{bottom:527.770350px;}
.y28d{bottom:530.263500px;}
.y123{bottom:532.947000px;}
.y1fb{bottom:533.635350px;}
.yf3{bottom:533.770350px;}
.y21c{bottom:533.778600px;}
.yce{bottom:533.912100px;}
.yb2{bottom:536.770350px;}
.y193{bottom:536.901300px;}
.y24c{bottom:539.121900px;}
.y6d{bottom:539.770350px;}
.y1cd{bottom:541.805250px;}
.y16{bottom:543.409200px;}
.y28c{bottom:545.263500px;}
.y16f{bottom:545.770350px;}
.y122{bottom:547.947000px;}
.y47{bottom:551.230350px;}
.ycd{bottom:551.515350px;}
.y1fa{bottom:551.635350px;}
.yf2{bottom:551.770350px;}
.y21b{bottom:551.778600px;}
.y192{bottom:551.901300px;}
.y24b{bottom:554.121900px;}
.yb1{bottom:554.770350px;}
.y1cc{bottom:556.805250px;}
.y6c{bottom:557.770350px;}
.y28b{bottom:560.263500px;}
.y15{bottom:561.409200px;}
.y121{bottom:562.947000px;}
.y16e{bottom:563.770350px;}
.y191{bottom:566.901300px;}
.y24a{bottom:569.121900px;}
.y1f9{bottom:569.635350px;}
.yf1{bottom:569.770350px;}
.y21a{bottom:569.778600px;}
.y1cb{bottom:571.805250px;}
.yb0{bottom:572.770350px;}
.y28a{bottom:575.263500px;}
.y6b{bottom:575.770350px;}
.y120{bottom:577.947000px;}
.y14{bottom:579.409200px;}
.y16d{bottom:581.770350px;}
.y190{bottom:581.901300px;}
.y249{bottom:584.121900px;}
.y1ca{bottom:586.805250px;}
.y1f8{bottom:587.635350px;}
.ycc{bottom:587.770350px;}
.y219{bottom:587.778600px;}
.y289{bottom:590.263500px;}
.yaf{bottom:590.770350px;}
.y11f{bottom:592.947000px;}
.y6a{bottom:593.770350px;}
.y13{bottom:597.409200px;}
.y248{bottom:599.121900px;}
.y16c{bottom:599.770350px;}
.y1c9{bottom:601.805250px;}
.y288{bottom:605.263500px;}
.y1f7{bottom:605.635350px;}
.y46{bottom:605.770350px;}
.y218{bottom:605.778600px;}
.yae{bottom:608.770350px;}
.y69{bottom:611.770350px;}
.y247{bottom:614.121900px;}
.y18f{bottom:615.010350px;}
.y12{bottom:615.409200px;}
.y1c8{bottom:616.805250px;}
.y16b{bottom:617.770350px;}
.y287{bottom:620.263500px;}
.y1f6{bottom:623.635350px;}
.y45{bottom:623.770350px;}
.y217{bottom:623.778600px;}
.y11e{bottom:624.062100px;}
.yad{bottom:626.770350px;}
.y246{bottom:629.121900px;}
.y68{bottom:629.770350px;}
.y1c7{bottom:631.805250px;}
.y11{bottom:633.409200px;}
.y2bb{bottom:635.263500px;}
.y286{bottom:635.265900px;}
.y16a{bottom:635.770350px;}
.y18e{bottom:641.515350px;}
.y1f5{bottom:641.635350px;}
.y11d{bottom:641.657100px;}
.y44{bottom:641.770350px;}
.y216{bottom:641.778600px;}
.y245{bottom:644.121900px;}
.yac{bottom:644.770350px;}
.y1c6{bottom:646.805250px;}
.y67{bottom:647.770350px;}
.y2ba{bottom:650.263500px;}
.y285{bottom:650.265900px;}
.y10{bottom:651.409200px;}
.y169{bottom:653.770350px;}
.y244{bottom:659.121900px;}
.y1f4{bottom:659.635350px;}
.y11c{bottom:659.657100px;}
.y43{bottom:659.770350px;}
.y215{bottom:659.778600px;}
.yab{bottom:662.770350px;}
.y2b9{bottom:665.263500px;}
.y284{bottom:665.265900px;}
.yf{bottom:669.409200px;}
.y168{bottom:671.770350px;}
.y243{bottom:674.121900px;}
.y1f3{bottom:677.635350px;}
.y42{bottom:677.770350px;}
.y214{bottom:677.778600px;}
.y1c5{bottom:677.920350px;}
.y2b8{bottom:680.263500px;}
.y283{bottom:680.265900px;}
.yaa{bottom:680.770350px;}
.y66{bottom:683.263500px;}
.ye{bottom:687.409200px;}
.y242{bottom:689.121900px;}
.y167{bottom:689.770350px;}
.y2b7{bottom:695.263500px;}
.y282{bottom:695.265900px;}
.y1c4{bottom:695.515350px;}
.y1f2{bottom:695.635350px;}
.y41{bottom:695.770350px;}
.y213{bottom:695.778600px;}
.y11b{bottom:695.912100px;}
.y65{bottom:698.263500px;}
.ya9{bottom:698.770350px;}
.y241{bottom:704.121900px;}
.y166{bottom:707.770350px;}
.y2b6{bottom:710.263500px;}
.y281{bottom:710.265900px;}
.y1f1{bottom:713.635350px;}
.y40{bottom:713.770350px;}
.y212{bottom:713.778600px;}
.y11a{bottom:713.912100px;}
.ya8{bottom:716.770350px;}
.y240{bottom:719.121900px;}
.y2b5{bottom:725.263500px;}
.y280{bottom:725.265900px;}
.y165{bottom:725.770350px;}
.y64{bottom:731.365350px;}
.y1f0{bottom:731.635350px;}
.y3f{bottom:731.770350px;}
.y211{bottom:731.778600px;}
.y119{bottom:731.912100px;}
.yd{bottom:732.567300px;}
.y23f{bottom:734.121900px;}
.ya7{bottom:734.770350px;}
.y2b4{bottom:740.263500px;}
.y27f{bottom:740.265900px;}
.y164{bottom:743.770350px;}
.yc{bottom:745.018050px;}
.y23e{bottom:749.121900px;}
.y63{bottom:749.365350px;}
.y1ef{bottom:749.635350px;}
.y3e{bottom:749.770350px;}
.y210{bottom:749.778600px;}
.y118{bottom:749.912100px;}
.ya6{bottom:752.770350px;}
.y2b3{bottom:755.263500px;}
.y27e{bottom:755.265900px;}
.y23d{bottom:764.121900px;}
.y62{bottom:767.365350px;}
.y1ee{bottom:767.635350px;}
.y3d{bottom:767.770350px;}
.y20f{bottom:767.778600px;}
.y117{bottom:767.912100px;}
.y2b2{bottom:770.263500px;}
.y95{bottom:770.263650px;}
.y27d{bottom:770.265900px;}
.ya5{bottom:770.770350px;}
.yb{bottom:776.733600px;}
.y23c{bottom:779.121900px;}
.y163{bottom:779.263500px;}
.y2b1{bottom:785.263500px;}
.y27c{bottom:785.265900px;}
.y1ed{bottom:785.635350px;}
.y3c{bottom:785.770350px;}
.y20e{bottom:785.778600px;}
.y116{bottom:785.912100px;}
.ya4{bottom:788.770350px;}
.y23b{bottom:794.121900px;}
.y162{bottom:794.263500px;}
.ya{bottom:795.658950px;}
.y2b0{bottom:800.263500px;}
.y27b{bottom:800.265900px;}
.y61{bottom:803.230350px;}
.y1ec{bottom:803.635350px;}
.y9{bottom:803.733600px;}
.y3b{bottom:803.770350px;}
.y20d{bottom:803.778600px;}
.y115{bottom:803.912100px;}
.ya3{bottom:806.770350px;}
.y23a{bottom:809.121900px;}
.y161{bottom:809.263500px;}
.y2af{bottom:815.263500px;}
.y27a{bottom:815.265900px;}
.y1eb{bottom:821.635350px;}
.y3a{bottom:821.770350px;}
.y20c{bottom:821.778600px;}
.y114{bottom:821.912100px;}
.y8{bottom:822.658950px;}
.y239{bottom:824.121900px;}
.y160{bottom:824.263500px;}
.ya2{bottom:824.770350px;}
.y2ae{bottom:830.263500px;}
.y279{bottom:830.265900px;}
.y15f{bottom:839.263500px;}
.y87{bottom:839.515350px;}
.y1ea{bottom:839.635350px;}
.y39{bottom:839.770350px;}
.y20b{bottom:839.778600px;}
.y113{bottom:839.912100px;}
.y93{bottom:841.663500px;}
.ya1{bottom:842.770350px;}
.y2ad{bottom:845.263500px;}
.y278{bottom:845.265900px;}
.y7{bottom:851.380950px;}
.y15e{bottom:854.263500px;}
.y92{bottom:856.663500px;}
.y238{bottom:857.232600px;}
.y86{bottom:857.515350px;}
.y1e9{bottom:857.635350px;}
.y38{bottom:857.770350px;}
.y20a{bottom:857.778600px;}
.y112{bottom:857.927100px;}
.y2ac{bottom:860.263500px;}
.y277{bottom:860.265900px;}
.ya0{bottom:860.770350px;}
.y15d{bottom:869.263500px;}
.y91{bottom:871.663500px;}
.y1b4{bottom:875.263500px;}
.y276{bottom:875.265900px;}
.y1e8{bottom:875.635350px;}
.y37{bottom:875.770350px;}
.y209{bottom:875.778600px;}
.y111{bottom:875.927100px;}
.y9f{bottom:878.770350px;}
.y15c{bottom:884.263500px;}
.y90{bottom:886.663500px;}
.y1b3{bottom:890.263500px;}
.y275{bottom:890.265900px;}
.y36{bottom:893.770350px;}
.y208{bottom:893.778600px;}
.y9e{bottom:896.770350px;}
.y6{bottom:897.543600px;}
.y15b{bottom:899.263500px;}
.y8f{bottom:901.663500px;}
.y1b2{bottom:905.263500px;}
.y274{bottom:905.265900px;}
.y1e7{bottom:911.230350px;}
.y110{bottom:911.522100px;}
.y35{bottom:911.770350px;}
.y237{bottom:911.772600px;}
.y207{bottom:911.778600px;}
.y15a{bottom:914.263500px;}
.y9d{bottom:914.770350px;}
.y8e{bottom:916.663500px;}
.y1b1{bottom:920.263500px;}
.y273{bottom:920.265900px;}
.y159{bottom:929.263500px;}
.y236{bottom:929.367600px;}
.y34{bottom:929.770350px;}
.y206{bottom:929.778600px;}
.y8d{bottom:931.663500px;}
.y9c{bottom:932.770350px;}
.y5{bottom:934.004400px;}
.y1b0{bottom:935.263500px;}
.y272{bottom:935.265900px;}
.y158{bottom:944.263500px;}
.y8c{bottom:946.663500px;}
.y33{bottom:947.770350px;}
.y10f{bottom:947.777100px;}
.y205{bottom:947.778600px;}
.y1af{bottom:950.263500px;}
.y271{bottom:950.265900px;}
.y9b{bottom:950.770350px;}
.y157{bottom:959.263500px;}
.y8b{bottom:961.663500px;}
.y18d{bottom:965.263500px;}
.y270{bottom:965.265900px;}
.y235{bottom:965.367600px;}
.y32{bottom:965.770350px;}
.y10e{bottom:965.777100px;}
.y204{bottom:965.778600px;}
.y9a{bottom:968.770350px;}
.y4{bottom:970.465200px;}
.y156{bottom:974.263500px;}
.y8a{bottom:976.663500px;}
.y18a{bottom:980.263500px;}
.y26f{bottom:980.265900px;}
.y31{bottom:983.770350px;}
.y10d{bottom:983.777100px;}
.y203{bottom:983.778600px;}
.y99{bottom:986.770350px;}
.y1ac{bottom:988.663500px;}
.y155{bottom:989.263500px;}
.y89{bottom:991.663500px;}
.y189{bottom:995.263500px;}
.y26e{bottom:995.265900px;}
.y30{bottom:1001.770350px;}
.y234{bottom:1001.772600px;}
.y10c{bottom:1001.777100px;}
.y202{bottom:1001.778600px;}
.y154{bottom:1004.263500px;}
.y98{bottom:1004.770350px;}
.y88{bottom:1006.663500px;}
.y3{bottom:1006.926000px;}
.y188{bottom:1010.263500px;}
.y26d{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y233{bottom:1019.772600px;}
.y10b{bottom:1019.777100px;}
.y187{bottom:1025.263500px;}
.y26c{bottom:1025.265900px;}
.y153{bottom:1037.365350px;}
.y232{bottom:1037.367600px;}
.y201{bottom:1037.373600px;}
.y2e{bottom:1037.770350px;}
.y10a{bottom:1037.777100px;}
.y97{bottom:1040.263500px;}
.y26b{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y85{bottom:1132.418700px;}
.y186{bottom:1132.419000px;}
.yec{bottom:1132.421700px;}
.y2ab{bottom:1132.423500px;}
.y96{bottom:1132.423650px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.099797px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.761230px;}
.hf{height:32.783203px;}
.h7{height:32.805176px;}
.h13{height:33.328125px;}
.h11{height:34.945312px;}
.h14{height:34.968750px;}
.h10{height:34.992188px;}
.h12{height:42.117188px;}
.ha{height:43.681641px;}
.hc{height:43.688137px;}
.h9{height:43.710938px;}
.hb{height:43.740234px;}
.hd{height:52.646484px;}
.h15{height:54.266484px;}
.h3{height:56.786133px;}
.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;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:100.090350px;}
.x1f{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x2f{left:112.580400px;}
.x22{left:123.307200px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.xd{left:144.680400px;}
.x21{left:155.916000px;}
.x31{left:198.875400px;}
.x5{left:212.876400px;}
.x33{left:215.530350px;}
.x19{left:218.005350px;}
.x30{left:223.055400px;}
.xa{left:455.041500px;}
.xe{left:457.055400px;}
.x28{left:459.362250px;}
.x2d{left:460.711200px;}
.x27{left:464.957250px;}
.x2c{left:470.281200px;}
.x1c{left:478.334400px;}
.x12{left:479.345400px;}
.x7{left:480.471000px;}
.x13{left:482.598600px;}
.x14{left:491.102250px;}
.x11{left:494.345400px;}
.x15{left:500.662500px;}
.x1b{left:503.858400px;}
.x10{left:506.420400px;}
.x23{left:512.346000px;}
.x8{left:514.491000px;}
.x26{left:520.250400px;}
.x24{left:543.127200px;}
.x2e{left:556.126200px;}
.x32{left:570.680400px;}
.x20{left:590.265000px;}
.xf{left:591.620400px;}
.x1a{left:600.250350px;}
.x29{left:603.602250px;}
.x25{left:624.832200px;}
.x17{left:663.492300px;}
.x1d{left:687.340800px;}
.x2{left:693.365400px;}
.x2a{left:721.717650px;}
.x16{left:728.391600px;}
.x2b{left:743.868150px;}
.x1e{left:749.656800px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls86{letter-spacing:-6.880000pt;}
.ls75{letter-spacing:-6.186667pt;}
.ls81{letter-spacing:-5.226667pt;}
.ls83{letter-spacing:-4.853333pt;}
.ls87{letter-spacing:-3.946667pt;}
.ls85{letter-spacing:-3.626667pt;}
.ls82{letter-spacing:-2.293333pt;}
.ls84{letter-spacing:-1.920000pt;}
.ls15{letter-spacing:-0.693333pt;}
.ls80{letter-spacing:-0.266667pt;}
.ls51{letter-spacing:-0.213333pt;}
.lsba{letter-spacing:-0.170667pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls73{letter-spacing:-0.128000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls74{letter-spacing:-0.085333pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls53{letter-spacing:-0.042667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls93{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.061333pt;}
.ls8a{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.lsab{letter-spacing:0.128000pt;}
.ls47{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.170667pt;}
.ls7e{letter-spacing:0.198933pt;}
.ls2{letter-spacing:0.213333pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls69{letter-spacing:0.298667pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls76{letter-spacing:0.341333pt;}
.ls21{letter-spacing:0.373333pt;}
.ls34{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.512000pt;}
.ls56{letter-spacing:0.533333pt;}
.ls71{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.597333pt;}
.lsa{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.682667pt;}
.ls2d{letter-spacing:0.693333pt;}
.ls95{letter-spacing:0.725333pt;}
.ls4c{letter-spacing:0.746667pt;}
.ls9e{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls40{letter-spacing:0.810667pt;}
.lse{letter-spacing:0.853333pt;}
.ls70{letter-spacing:0.896000pt;}
.ls32{letter-spacing:0.906667pt;}
.ls9a{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.960000pt;}
.ls68{letter-spacing:0.981333pt;}
.ls11{letter-spacing:1.013333pt;}
.ls91{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.066667pt;}
.ls7f{letter-spacing:1.109333pt;}
.ls35{letter-spacing:1.120000pt;}
.ls98{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.173333pt;}
.ls7a{letter-spacing:1.194667pt;}
.ls4b{letter-spacing:1.226667pt;}
.ls44{letter-spacing:1.237333pt;}
.ls31{letter-spacing:1.280000pt;}
.ls5f{letter-spacing:1.322667pt;}
.ls1b{letter-spacing:1.333333pt;}
.ls79{letter-spacing:1.365333pt;}
.ls28{letter-spacing:1.386667pt;}
.ls60{letter-spacing:1.408000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls99{letter-spacing:1.450667pt;}
.ls9{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.536000pt;}
.ls6{letter-spacing:1.546667pt;}
.lsa7{letter-spacing:1.578667pt;}
.ls49{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.621333pt;}
.ls3d{letter-spacing:1.653333pt;}
.lsa9{letter-spacing:1.664000pt;}
.lsf{letter-spacing:1.706667pt;}
.lsb6{letter-spacing:1.749333pt;}
.ls45{letter-spacing:1.760000pt;}
.ls90{letter-spacing:1.792000pt;}
.ls57{letter-spacing:1.813333pt;}
.ls5e{letter-spacing:1.834667pt;}
.ls30{letter-spacing:1.866667pt;}
.lsa6{letter-spacing:1.877333pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls4{letter-spacing:1.973333pt;}
.lsb5{letter-spacing:2.005333pt;}
.ls36{letter-spacing:2.026667pt;}
.lsb1{letter-spacing:2.048000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls26{letter-spacing:2.133333pt;}
.lsad{letter-spacing:2.176000pt;}
.ls1d{letter-spacing:2.186667pt;}
.ls4f{letter-spacing:2.218667pt;}
.ls50{letter-spacing:2.240000pt;}
.lsb3{letter-spacing:2.261333pt;}
.ls16{letter-spacing:2.293333pt;}
.lsae{letter-spacing:2.304000pt;}
.lsd{letter-spacing:2.346667pt;}
.lsb4{letter-spacing:2.389333pt;}
.ls1e{letter-spacing:2.400000pt;}
.lsaa{letter-spacing:2.432000pt;}
.ls13{letter-spacing:2.453333pt;}
.lsb7{letter-spacing:2.474667pt;}
.ls55{letter-spacing:2.506667pt;}
.ls78{letter-spacing:2.517333pt;}
.ls37{letter-spacing:2.560000pt;}
.lsaf{letter-spacing:2.602667pt;}
.ls1a{letter-spacing:2.613333pt;}
.lsbd{letter-spacing:2.645333pt;}
.ls54{letter-spacing:2.666667pt;}
.lsb8{letter-spacing:2.688000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls67{letter-spacing:2.730667pt;}
.ls5{letter-spacing:2.773333pt;}
.lsbb{letter-spacing:2.816000pt;}
.lsa4{letter-spacing:2.826667pt;}
.lsbc{letter-spacing:2.858667pt;}
.ls46{letter-spacing:2.880000pt;}
.ls6c{letter-spacing:2.933333pt;}
.lsa8{letter-spacing:2.944000pt;}
.ls1c{letter-spacing:2.986667pt;}
.lsb0{letter-spacing:3.029333pt;}
.ls64{letter-spacing:3.040000pt;}
.lsb2{letter-spacing:3.072000pt;}
.lsa0{letter-spacing:3.093333pt;}
.lsbe{letter-spacing:3.114667pt;}
.ls48{letter-spacing:3.146667pt;}
.lsb9{letter-spacing:3.157333pt;}
.ls7c{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.253333pt;}
.lsbf{letter-spacing:3.328000pt;}
.ls7{letter-spacing:3.360000pt;}
.ls2f{letter-spacing:3.413333pt;}
.lsac{letter-spacing:3.456000pt;}
.ls62{letter-spacing:3.466667pt;}
.ls2c{letter-spacing:3.520000pt;}
.ls59{letter-spacing:3.573333pt;}
.lsa1{letter-spacing:3.626667pt;}
.ls8b{letter-spacing:3.754667pt;}
.ls88{letter-spacing:3.786667pt;}
.ls6a{letter-spacing:3.797333pt;}
.ls2e{letter-spacing:3.840000pt;}
.ls10{letter-spacing:3.893333pt;}
.ls5c{letter-spacing:3.968000pt;}
.ls52{letter-spacing:4.000000pt;}
.ls6b{letter-spacing:4.053333pt;}
.ls65{letter-spacing:4.096000pt;}
.ls42{letter-spacing:4.138667pt;}
.ls96{letter-spacing:4.213333pt;}
.ls94{letter-spacing:4.266667pt;}
.ls9f{letter-spacing:4.309333pt;}
.ls3f{letter-spacing:4.352000pt;}
.ls9d{letter-spacing:4.373333pt;}
.ls5b{letter-spacing:4.426667pt;}
.ls92{letter-spacing:4.565333pt;}
.ls7d{letter-spacing:4.586667pt;}
.ls6d{letter-spacing:4.640000pt;}
.ls8c{letter-spacing:4.693333pt;}
.ls7b{letter-spacing:4.746667pt;}
.ls22{letter-spacing:4.800000pt;}
.ls23{letter-spacing:4.853333pt;}
.ls8f{letter-spacing:4.906667pt;}
.ls61{letter-spacing:4.949333pt;}
.ls20{letter-spacing:4.960000pt;}
.ls6f{letter-spacing:5.120000pt;}
.ls8e{letter-spacing:5.280000pt;}
.ls9b{letter-spacing:5.386667pt;}
.ls41{letter-spacing:5.418667pt;}
.ls58{letter-spacing:5.653333pt;}
.ls38{letter-spacing:5.706667pt;}
.ls4a{letter-spacing:6.026667pt;}
.ls5a{letter-spacing:6.133333pt;}
.ls63{letter-spacing:6.186667pt;}
.lsa3{letter-spacing:6.293333pt;}
.ls25{letter-spacing:6.453333pt;}
.lsa2{letter-spacing:6.560000pt;}
.ls97{letter-spacing:6.613333pt;}
.ls6e{letter-spacing:6.720000pt;}
.lsa5{letter-spacing:6.773333pt;}
.ls89{letter-spacing:8.213333pt;}
.ls8d{letter-spacing:9.120000pt;}
.ls9c{letter-spacing:9.760000pt;}
.wsea{word-spacing:-18.720000pt;}
.wsa4{word-spacing:-18.453333pt;}
.wsd8{word-spacing:-18.026667pt;}
.ws5b{word-spacing:-17.333333pt;}
.wsd4{word-spacing:-17.120000pt;}
.ws7f{word-spacing:-16.906667pt;}
.ws7a{word-spacing:-16.853333pt;}
.ws9e{word-spacing:-16.746667pt;}
.wsbb{word-spacing:-16.586667pt;}
.ws101{word-spacing:-16.426667pt;}
.ws9f{word-spacing:-16.266667pt;}
.wsa0{word-spacing:-16.213333pt;}
.ws100{word-spacing:-16.160000pt;}
.wsec{word-spacing:-16.106667pt;}
.wseb{word-spacing:-16.000000pt;}
.ws7b{word-spacing:-15.840000pt;}
.wsff{word-spacing:-15.733333pt;}
.ws23{word-spacing:-15.680000pt;}
.ws26{word-spacing:-15.626667pt;}
.ws94{word-spacing:-15.573333pt;}
.ws7d{word-spacing:-15.466667pt;}
.ws1f{word-spacing:-15.413333pt;}
.wsef{word-spacing:-15.360000pt;}
.wsee{word-spacing:-15.306667pt;}
.ws103{word-spacing:-15.253333pt;}
.ws83{word-spacing:-15.200000pt;}
.wsbc{word-spacing:-15.146667pt;}
.ws102{word-spacing:-15.093333pt;}
.ws82{word-spacing:-15.040000pt;}
.wsc3{word-spacing:-14.986667pt;}
.ws5c{word-spacing:-14.933333pt;}
.wsc4{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.wsa2{word-spacing:-14.773333pt;}
.ws62{word-spacing:-14.720000pt;}
.ws80{word-spacing:-14.666667pt;}
.ws27{word-spacing:-14.613333pt;}
.ws5e{word-spacing:-14.560000pt;}
.ws20{word-spacing:-14.506667pt;}
.ws96{word-spacing:-14.453333pt;}
.ws60{word-spacing:-14.400000pt;}
.ws4d{word-spacing:-14.346667pt;}
.ws22{word-spacing:-14.293333pt;}
.ws95{word-spacing:-14.240000pt;}
.ws5d{word-spacing:-14.186667pt;}
.ws7c{word-spacing:-14.133333pt;}
.ws10a{word-spacing:-14.122667pt;}
.wsed{word-spacing:-14.080000pt;}
.wsa5{word-spacing:-14.026667pt;}
.ws25{word-spacing:-13.973333pt;}
.ws1b{word-spacing:-13.920000pt;}
.wse8{word-spacing:-13.866667pt;}
.ws1e{word-spacing:-13.813333pt;}
.wsbd{word-spacing:-13.760000pt;}
.ws1d{word-spacing:-13.706667pt;}
.ws5f{word-spacing:-13.653333pt;}
.ws12c{word-spacing:-13.610667pt;}
.wsa3{word-spacing:-13.600000pt;}
.wsa1{word-spacing:-13.546667pt;}
.wsd9{word-spacing:-13.493333pt;}
.ws9a{word-spacing:-13.397333pt;}
.ws81{word-spacing:-13.386667pt;}
.ws11f{word-spacing:-13.354667pt;}
.ws1c{word-spacing:-13.333333pt;}
.ws7e{word-spacing:-13.226667pt;}
.ws12e{word-spacing:-13.184000pt;}
.ws24{word-spacing:-13.173333pt;}
.ws129{word-spacing:-13.141333pt;}
.ws109{word-spacing:-13.098667pt;}
.ws114{word-spacing:-12.928000pt;}
.ws12a{word-spacing:-12.800000pt;}
.ws12d{word-spacing:-12.714667pt;}
.ws4f{word-spacing:-12.586667pt;}
.ws12b{word-spacing:-12.501333pt;}
.wsda{word-spacing:-12.458667pt;}
.ws108{word-spacing:-12.245333pt;}
.ws99{word-spacing:-12.202667pt;}
.ws86{word-spacing:-12.074667pt;}
.wsba{word-spacing:-12.032000pt;}
.ws50{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.wse9{word-spacing:-11.818667pt;}
.wsc2{word-spacing:-11.776000pt;}
.ws97{word-spacing:-11.733333pt;}
.wsdb{word-spacing:-11.690667pt;}
.ws11e{word-spacing:-11.605333pt;}
.ws4e{word-spacing:-11.520000pt;}
.wsfb{word-spacing:-11.434667pt;}
.wsbf{word-spacing:-11.413333pt;}
.wsdd{word-spacing:-11.392000pt;}
.ws98{word-spacing:-11.264000pt;}
.wsd7{word-spacing:-11.221333pt;}
.wsfc{word-spacing:-11.178667pt;}
.ws84{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws21{word-spacing:-11.050667pt;}
.wsbe{word-spacing:-11.040000pt;}
.ws9d{word-spacing:-10.922667pt;}
.ws85{word-spacing:-10.880000pt;}
.ws61{word-spacing:-10.837333pt;}
.wsdc{word-spacing:-10.709333pt;}
.wsb9{word-spacing:-10.666667pt;}
.ws75{word-spacing:-10.624000pt;}
.ws9c{word-spacing:-10.581333pt;}
.ws9b{word-spacing:-10.538667pt;}
.wsc0{word-spacing:-9.706667pt;}
.wsc1{word-spacing:-9.386667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws93{word-spacing:-6.186667pt;}
.ws35{word-spacing:-5.706667pt;}
.wsf6{word-spacing:-5.386667pt;}
.wsaf{word-spacing:-5.173333pt;}
.wsb0{word-spacing:-5.120000pt;}
.wse0{word-spacing:-4.693333pt;}
.wscc{word-spacing:-4.586667pt;}
.wsf2{word-spacing:-4.213333pt;}
.ws68{word-spacing:-4.000000pt;}
.ws124{word-spacing:-3.968000pt;}
.ws14{word-spacing:-3.946667pt;}
.ws3d{word-spacing:-3.840000pt;}
.wsd5{word-spacing:-3.786667pt;}
.ws106{word-spacing:-3.626667pt;}
.ws8a{word-spacing:-3.573333pt;}
.ws3a{word-spacing:-3.520000pt;}
.ws92{word-spacing:-3.466667pt;}
.ws113{word-spacing:-3.456000pt;}
.ws3e{word-spacing:-3.413333pt;}
.wsb{word-spacing:-3.360000pt;}
.ws132{word-spacing:-3.328000pt;}
.ws38{word-spacing:-3.306667pt;}
.ws40{word-spacing:-3.253333pt;}
.wsc9{word-spacing:-3.200000pt;}
.ws128{word-spacing:-3.157333pt;}
.ws67{word-spacing:-3.146667pt;}
.ws12f{word-spacing:-3.114667pt;}
.ws105{word-spacing:-3.093333pt;}
.ws11a{word-spacing:-3.072000pt;}
.ws2d{word-spacing:-3.040000pt;}
.ws116{word-spacing:-3.029333pt;}
.ws63{word-spacing:-2.986667pt;}
.ws110{word-spacing:-2.944000pt;}
.wsae{word-spacing:-2.933333pt;}
.ws66{word-spacing:-2.880000pt;}
.ws130{word-spacing:-2.858667pt;}
.ws104{word-spacing:-2.826667pt;}
.ws9{word-spacing:-2.773333pt;}
.wsaa{word-spacing:-2.730667pt;}
.ws7{word-spacing:-2.720000pt;}
.ws127{word-spacing:-2.688000pt;}
.wse6{word-spacing:-2.666667pt;}
.ws133{word-spacing:-2.645333pt;}
.ws2b{word-spacing:-2.613333pt;}
.ws115{word-spacing:-2.602667pt;}
.ws5{word-spacing:-2.565333pt;}
.ws4b{word-spacing:-2.560000pt;}
.ws134{word-spacing:-2.517333pt;}
.ws87{word-spacing:-2.506667pt;}
.ws126{word-spacing:-2.474667pt;}
.ws19{word-spacing:-2.453333pt;}
.ws111{word-spacing:-2.432000pt;}
.ws2f{word-spacing:-2.400000pt;}
.ws121{word-spacing:-2.389333pt;}
.ws11{word-spacing:-2.346667pt;}
.ws10e{word-spacing:-2.304000pt;}
.ws18{word-spacing:-2.293333pt;}
.ws11b{word-spacing:-2.261333pt;}
.ws74{word-spacing:-2.240000pt;}
.ws71{word-spacing:-2.218667pt;}
.ws2e{word-spacing:-2.186667pt;}
.ws118{word-spacing:-2.176000pt;}
.ws34{word-spacing:-2.133333pt;}
.ws32{word-spacing:-2.080000pt;}
.ws119{word-spacing:-2.048000pt;}
.ws4a{word-spacing:-2.026667pt;}
.ws122{word-spacing:-2.005333pt;}
.ws8{word-spacing:-1.973333pt;}
.ws57{word-spacing:-1.920000pt;}
.ws10c{word-spacing:-1.877333pt;}
.ws3f{word-spacing:-1.866667pt;}
.ws8f{word-spacing:-1.834667pt;}
.ws73{word-spacing:-1.813333pt;}
.wse1{word-spacing:-1.792000pt;}
.ws64{word-spacing:-1.760000pt;}
.ws125{word-spacing:-1.749333pt;}
.ws13{word-spacing:-1.706667pt;}
.ws52{word-spacing:-1.653333pt;}
.wsb4{word-spacing:-1.621333pt;}
.wsa{word-spacing:-1.600000pt;}
.ws10d{word-spacing:-1.578667pt;}
.ws15{word-spacing:-1.546667pt;}
.wsa9{word-spacing:-1.536000pt;}
.wsd{word-spacing:-1.493333pt;}
.ws10f{word-spacing:-1.450667pt;}
.ws43{word-spacing:-1.440000pt;}
.ws91{word-spacing:-1.408000pt;}
.ws33{word-spacing:-1.386667pt;}
.wsc6{word-spacing:-1.365333pt;}
.ws2c{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.322667pt;}
.ws41{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.237333pt;}
.ws69{word-spacing:-1.226667pt;}
.wsc7{word-spacing:-1.194667pt;}
.ws36{word-spacing:-1.173333pt;}
.wsf4{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.109333pt;}
.ws1a{word-spacing:-1.066667pt;}
.wse2{word-spacing:-1.024000pt;}
.ws16{word-spacing:-1.013333pt;}
.wsab{word-spacing:-0.981333pt;}
.wsf{word-spacing:-0.960000pt;}
.wsf5{word-spacing:-0.938667pt;}
.ws42{word-spacing:-0.906667pt;}
.wsb2{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.853333pt;}
.ws55{word-spacing:-0.810667pt;}
.ws2a{word-spacing:-0.800000pt;}
.wsfe{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.746667pt;}
.wsb7{word-spacing:-0.725333pt;}
.ws3c{word-spacing:-0.693333pt;}
.ws131{word-spacing:-0.682667pt;}
.wse{word-spacing:-0.640000pt;}
.ws58{word-spacing:-0.597333pt;}
.ws30{word-spacing:-0.586667pt;}
.wsb3{word-spacing:-0.554667pt;}
.ws88{word-spacing:-0.533333pt;}
.ws8c{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.469333pt;}
.ws39{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.wsb5{word-spacing:-0.341333pt;}
.ws51{word-spacing:-0.320000pt;}
.wsac{word-spacing:-0.298667pt;}
.ws17{word-spacing:-0.266667pt;}
.ws54{word-spacing:-0.256000pt;}
.ws6{word-spacing:-0.213333pt;}
.ws6f{word-spacing:-0.170667pt;}
.wsc{word-spacing:-0.160000pt;}
.ws112{word-spacing:-0.128000pt;}
.ws28{word-spacing:-0.106667pt;}
.wsde{word-spacing:-0.085333pt;}
.ws29{word-spacing:-0.053333pt;}
.ws77{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws76{word-spacing:0.042667pt;}
.ws3b{word-spacing:0.053333pt;}
.wsad{word-spacing:0.085333pt;}
.ws49{word-spacing:0.106667pt;}
.ws6d{word-spacing:0.128000pt;}
.ws47{word-spacing:0.160000pt;}
.ws78{word-spacing:0.170667pt;}
.ws65{word-spacing:0.213333pt;}
.wsc8{word-spacing:0.266667pt;}
.wsd2{word-spacing:0.426667pt;}
.wsdf{word-spacing:0.597333pt;}
.ws6c{word-spacing:1.280000pt;}
.wsa7{word-spacing:1.333333pt;}
.wse7{word-spacing:1.792000pt;}
.wse4{word-spacing:1.920000pt;}
.ws6e{word-spacing:1.962667pt;}
.wsd6{word-spacing:2.133333pt;}
.ws11d{word-spacing:2.218667pt;}
.wsca{word-spacing:2.293333pt;}
.wsb8{word-spacing:2.517333pt;}
.ws79{word-spacing:2.560000pt;}
.wsd1{word-spacing:2.933333pt;}
.ws11c{word-spacing:2.986667pt;}
.wse3{word-spacing:3.114667pt;}
.wsb6{word-spacing:3.498667pt;}
.wsa6{word-spacing:3.520000pt;}
.ws53{word-spacing:3.541333pt;}
.wscd{word-spacing:3.626667pt;}
.ws72{word-spacing:3.712000pt;}
.ws8e{word-spacing:3.754667pt;}
.ws120{word-spacing:3.797333pt;}
.wse5{word-spacing:3.840000pt;}
.ws123{word-spacing:3.968000pt;}
.ws8d{word-spacing:4.010667pt;}
.ws48{word-spacing:4.053333pt;}
.wsfd{word-spacing:4.309333pt;}
.ws10b{word-spacing:4.320000pt;}
.ws45{word-spacing:4.373333pt;}
.ws37{word-spacing:4.426667pt;}
.wsf3{word-spacing:4.693333pt;}
.ws59{word-spacing:4.736000pt;}
.wscf{word-spacing:4.853333pt;}
.wsc5{word-spacing:4.864000pt;}
.ws107{word-spacing:4.906667pt;}
.wsfa{word-spacing:4.960000pt;}
.wsf0{word-spacing:5.066667pt;}
.ws89{word-spacing:5.173333pt;}
.wsce{word-spacing:5.226667pt;}
.ws6a{word-spacing:5.280000pt;}
.wsf1{word-spacing:5.386667pt;}
.ws56{word-spacing:5.418667pt;}
.wsa8{word-spacing:5.493333pt;}
.wsf7{word-spacing:5.600000pt;}
.ws4c{word-spacing:5.653333pt;}
.wsb1{word-spacing:6.186667pt;}
.wsf9{word-spacing:6.240000pt;}
.ws8b{word-spacing:6.293333pt;}
.ws117{word-spacing:6.485333pt;}
.wscb{word-spacing:6.720000pt;}
.wsd0{word-spacing:6.880000pt;}
.wsf8{word-spacing:7.093333pt;}
._10{margin-left:-2576.085333pt;}
._11{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._f{margin-left:-7.200000pt;}
._5{margin-left:-6.219200pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._c{width:0.933333pt;}
._8{width:2.053333pt;}
._b{width:3.706667pt;}
._6{width:4.640000pt;}
._9{width:6.186667pt;}
._7{width:7.146667pt;}
._a{width:8.426667pt;}
._e{width:9.866667pt;}
._d{width:10.786667pt;}
.fs5{font-size:23.320000pt;}
.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;}
.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;}
.y2d{bottom:42.468667pt;}
.y1c3{bottom:73.704133pt;}
.y18c{bottom:74.001333pt;}
.yeb{bottom:74.166133pt;}
.y60{bottom:74.342533pt;}
.yf0{bottom:74.355067pt;}
.y152{bottom:74.462533pt;}
.y1ae{bottom:74.470667pt;}
.y94{bottom:74.950667pt;}
.ycb{bottom:77.129200pt;}
.y1ab{bottom:77.696133pt;}
.y2a{bottom:78.246000pt;}
.y26a{bottom:79.219467pt;}
.ye7{bottom:79.388533pt;}
.y84{bottom:79.929200pt;}
.y185{bottom:81.730667pt;}
.y109{bottom:82.588533pt;}
.y2aa{bottom:84.678667pt;}
.y1e6{bottom:87.388533pt;}
.y13c{bottom:87.514533pt;}
.y1c2{bottom:87.698800pt;}
.y18b{bottom:87.996000pt;}
.yea{bottom:88.160800pt;}
.yef{bottom:88.349733pt;}
.y1ad{bottom:88.465333pt;}
.y200{bottom:90.336533pt;}
.y5f{bottom:90.342533pt;}
.y151{bottom:90.462533pt;}
.y231{bottom:90.469867pt;}
.y29{bottom:91.576000pt;}
.y269{bottom:92.552800pt;}
.yca{bottom:93.129200pt;}
.y1aa{bottom:93.696133pt;}
.y184{bottom:95.064000pt;}
.ye6{bottom:95.388533pt;}
.y83{bottom:95.929200pt;}
.y2a9{bottom:98.012000pt;}
.y108{bottom:98.588533pt;}
.y1c1{bottom:101.693467pt;}
.ye9{bottom:102.155467pt;}
.yee{bottom:102.344400pt;}
.y1e5{bottom:103.388533pt;}
.y13b{bottom:103.514533pt;}
.y268{bottom:105.886133pt;}
.y230{bottom:106.109867pt;}
.y1ff{bottom:106.336533pt;}
.y5e{bottom:106.342533pt;}
.y150{bottom:106.462533pt;}
.y183{bottom:108.397333pt;}
.yc9{bottom:109.129200pt;}
.y1a9{bottom:109.696133pt;}
.y2a8{bottom:111.345333pt;}
.ye5{bottom:111.388533pt;}
.y82{bottom:111.929200pt;}
.y107{bottom:114.588533pt;}
.ye8{bottom:116.150133pt;}
.yed{bottom:116.339067pt;}
.y267{bottom:119.219467pt;}
.y1e4{bottom:119.388533pt;}
.y13a{bottom:119.514533pt;}
.y182{bottom:121.730667pt;}
.y1fe{bottom:122.336533pt;}
.y5d{bottom:122.342533pt;}
.y14f{bottom:122.462533pt;}
.y2a7{bottom:124.678667pt;}
.yc8{bottom:125.129200pt;}
.y1a8{bottom:125.696133pt;}
.ye4{bottom:127.388533pt;}
.y81{bottom:127.929200pt;}
.y106{bottom:130.588533pt;}
.y266{bottom:132.552800pt;}
.y1e3{bottom:135.388533pt;}
.y139{bottom:135.514533pt;}
.y2a6{bottom:138.012000pt;}
.y1fd{bottom:138.336533pt;}
.y5c{bottom:138.342533pt;}
.y14e{bottom:138.462533pt;}
.y22f{bottom:138.469867pt;}
.yc7{bottom:141.129200pt;}
.y1a7{bottom:141.696133pt;}
.ye3{bottom:143.388533pt;}
.y80{bottom:143.929200pt;}
.y265{bottom:145.886133pt;}
.y105{bottom:146.588533pt;}
.y181{bottom:149.395867pt;}
.y26{bottom:150.179067pt;}
.y2a5{bottom:151.345333pt;}
.y1e2{bottom:151.388533pt;}
.y138{bottom:151.514533pt;}
.y1fc{bottom:154.336533pt;}
.y5b{bottom:154.342533pt;}
.y14d{bottom:154.462533pt;}
.y22e{bottom:154.469867pt;}
.yc6{bottom:157.129200pt;}
.y1a6{bottom:157.696133pt;}
.y264{bottom:159.219467pt;}
.ye2{bottom:159.388533pt;}
.y7f{bottom:159.929200pt;}
.y104{bottom:162.588533pt;}
.y2a4{bottom:164.678667pt;}
.y180{bottom:165.035867pt;}
.y25{bottom:166.179067pt;}
.y1e1{bottom:167.388533pt;}
.y137{bottom:167.514533pt;}
.y5a{bottom:170.342533pt;}
.y14c{bottom:170.462533pt;}
.y22d{bottom:170.469867pt;}
.y263{bottom:172.552800pt;}
.yc5{bottom:173.129200pt;}
.y1a5{bottom:173.696133pt;}
.ye1{bottom:175.388533pt;}
.y7e{bottom:175.929200pt;}
.y2a3{bottom:178.012000pt;}
.y103{bottom:178.588533pt;}
.y24{bottom:182.179067pt;}
.y1e0{bottom:183.388533pt;}
.y136{bottom:183.514533pt;}
.y262{bottom:185.886133pt;}
.y22c{bottom:186.109867pt;}
.y59{bottom:186.342533pt;}
.y14b{bottom:186.462533pt;}
.yc4{bottom:189.129200pt;}
.y1a4{bottom:189.696133pt;}
.y2a2{bottom:191.345333pt;}
.ye0{bottom:191.388533pt;}
.y7d{bottom:191.929200pt;}
.y102{bottom:194.588533pt;}
.y17f{bottom:197.262533pt;}
.y23{bottom:198.179067pt;}
.y261{bottom:199.219467pt;}
.y1df{bottom:199.388533pt;}
.y135{bottom:199.514533pt;}
.y58{bottom:202.342533pt;}
.y14a{bottom:202.462533pt;}
.y2a1{bottom:204.678667pt;}
.yc3{bottom:205.129200pt;}
.y1a3{bottom:205.696133pt;}
.ydf{bottom:207.388533pt;}
.y7c{bottom:207.929200pt;}
.y101{bottom:210.588533pt;}
.y260{bottom:212.552800pt;}
.y17e{bottom:213.262533pt;}
.y22{bottom:214.179067pt;}
.y1de{bottom:215.388533pt;}
.y134{bottom:215.514533pt;}
.y2a0{bottom:218.012000pt;}
.y57{bottom:218.342533pt;}
.y149{bottom:218.462533pt;}
.y22b{bottom:218.469867pt;}
.yc2{bottom:221.129200pt;}
.y1a2{bottom:221.696133pt;}
.yde{bottom:223.388533pt;}
.y7b{bottom:223.929200pt;}
.y25f{bottom:225.886133pt;}
.y100{bottom:226.588533pt;}
.y17d{bottom:229.262533pt;}
.y21{bottom:230.179067pt;}
.y29f{bottom:231.345333pt;}
.y1dd{bottom:231.388533pt;}
.y133{bottom:231.514533pt;}
.y56{bottom:234.342533pt;}
.y148{bottom:234.462533pt;}
.y22a{bottom:234.469867pt;}
.yc1{bottom:237.129200pt;}
.y1a1{bottom:237.696133pt;}
.y25e{bottom:239.219467pt;}
.ydd{bottom:239.388533pt;}
.yff{bottom:242.588533pt;}
.y29e{bottom:244.678667pt;}
.y17c{bottom:245.262533pt;}
.y20{bottom:246.179067pt;}
.y1dc{bottom:247.388533pt;}
.y132{bottom:247.514533pt;}
.y55{bottom:250.342533pt;}
.y147{bottom:250.462533pt;}
.y229{bottom:250.469867pt;}
.y25d{bottom:252.552800pt;}
.yc0{bottom:253.129200pt;}
.y1a0{bottom:253.696133pt;}
.ydc{bottom:255.388533pt;}
.y7a{bottom:255.569200pt;}
.y29d{bottom:258.012000pt;}
.yfe{bottom:258.588533pt;}
.y17b{bottom:261.262533pt;}
.y1f{bottom:262.179067pt;}
.y1db{bottom:263.388533pt;}
.y131{bottom:263.514533pt;}
.y25c{bottom:265.886133pt;}
.y54{bottom:266.342533pt;}
.y146{bottom:266.462533pt;}
.y228{bottom:266.469867pt;}
.ybf{bottom:269.129200pt;}
.y19f{bottom:269.696133pt;}
.y29c{bottom:271.345333pt;}
.yfd{bottom:274.588533pt;}
.y17a{bottom:277.262533pt;}
.y1e{bottom:278.179067pt;}
.y25b{bottom:279.219467pt;}
.y1da{bottom:279.388533pt;}
.y130{bottom:279.514533pt;}
.y53{bottom:282.342533pt;}
.y145{bottom:282.462533pt;}
.y227{bottom:282.469867pt;}
.y29b{bottom:284.678667pt;}
.ybe{bottom:285.129200pt;}
.y19e{bottom:285.696133pt;}
.ydb{bottom:286.938000pt;}
.y79{bottom:287.795867pt;}
.yfc{bottom:290.588533pt;}
.y25a{bottom:292.552800pt;}
.y179{bottom:293.262533pt;}
.y1d{bottom:294.179067pt;}
.y1d9{bottom:295.388533pt;}
.y12f{bottom:295.514533pt;}
.y29a{bottom:298.012000pt;}
.y52{bottom:298.342533pt;}
.y144{bottom:298.462533pt;}
.y226{bottom:298.469867pt;}
.yda{bottom:300.271333pt;}
.ybd{bottom:301.129200pt;}
.y1c0{bottom:301.245600pt;}
.y19d{bottom:301.696133pt;}
.y78{bottom:303.795867pt;}
.y259{bottom:305.886133pt;}
.yfb{bottom:306.588533pt;}
.y178{bottom:309.262533pt;}
.y1c{bottom:310.179067pt;}
.y299{bottom:311.345333pt;}
.y1d8{bottom:311.388533pt;}
.yd9{bottom:313.604667pt;}
.y51{bottom:314.342533pt;}
.y143{bottom:314.462533pt;}
.y225{bottom:314.469867pt;}
.y1bf{bottom:314.578933pt;}
.ybc{bottom:317.129200pt;}
.y19c{bottom:317.696133pt;}
.y258{bottom:319.219467pt;}
.y77{bottom:319.795867pt;}
.y298{bottom:324.678667pt;}
.y177{bottom:325.262533pt;}
.y1b{bottom:326.179067pt;}
.yd8{bottom:326.938000pt;}
.y12e{bottom:327.064000pt;}
.y1d7{bottom:327.388533pt;}
.y1be{bottom:327.912267pt;}
.y50{bottom:330.342533pt;}
.y142{bottom:330.462533pt;}
.y224{bottom:330.469867pt;}
.y257{bottom:332.552800pt;}
.ybb{bottom:333.129200pt;}
.y19b{bottom:333.696133pt;}
.y76{bottom:335.795867pt;}
.y297{bottom:338.012000pt;}
.yfa{bottom:338.138000pt;}
.yd7{bottom:340.271333pt;}
.y12d{bottom:340.397333pt;}
.y1bd{bottom:341.245600pt;}
.y176{bottom:341.262533pt;}
.y28{bottom:342.179067pt;}
.y1d6{bottom:343.388533pt;}
.y256{bottom:345.886133pt;}
.y4f{bottom:346.342533pt;}
.y141{bottom:346.462533pt;}
.y223{bottom:346.469867pt;}
.yba{bottom:349.129200pt;}
.y19a{bottom:349.696133pt;}
.y296{bottom:351.345333pt;}
.yf9{bottom:351.471333pt;}
.y75{bottom:351.795867pt;}
.yd6{bottom:353.604667pt;}
.y12c{bottom:353.730667pt;}
.y1bc{bottom:354.578933pt;}
.y175{bottom:357.262533pt;}
.y1a{bottom:357.821067pt;}
.y27{bottom:358.179067pt;}
.y255{bottom:359.219467pt;}
.y4e{bottom:362.342533pt;}
.y140{bottom:362.462533pt;}
.y222{bottom:362.469867pt;}
.y295{bottom:364.678667pt;}
.yf8{bottom:364.804667pt;}
.yb9{bottom:365.129200pt;}
.y199{bottom:365.696133pt;}
.yd5{bottom:366.938000pt;}
.y12b{bottom:367.064000pt;}
.y74{bottom:367.795867pt;}
.y1bb{bottom:367.912267pt;}
.y254{bottom:372.552800pt;}
.y1d5{bottom:374.938000pt;}
.y294{bottom:378.012000pt;}
.y221{bottom:378.109867pt;}
.y4d{bottom:378.342533pt;}
.y13f{bottom:378.462533pt;}
.yd4{bottom:380.271333pt;}
.y12a{bottom:380.397333pt;}
.yb8{bottom:381.129200pt;}
.y1ba{bottom:381.245600pt;}
.y198{bottom:381.696133pt;}
.y73{bottom:383.795867pt;}
.y253{bottom:385.886133pt;}
.y1d4{bottom:388.271333pt;}
.y174{bottom:388.902533pt;}
.y293{bottom:391.345333pt;}
.yd3{bottom:393.604667pt;}
.y129{bottom:393.730667pt;}
.yf7{bottom:394.235867pt;}
.y4c{bottom:394.342533pt;}
.y13e{bottom:394.462533pt;}
.y1b9{bottom:394.578933pt;}
.yb7{bottom:397.129200pt;}
.y197{bottom:397.696133pt;}
.y252{bottom:399.219467pt;}
.y72{bottom:399.795867pt;}
.y1d3{bottom:401.604667pt;}
.y292{bottom:404.678667pt;}
.yd2{bottom:406.938000pt;}
.y128{bottom:407.064000pt;}
.y1b8{bottom:407.912267pt;}
.y4b{bottom:410.342533pt;}
.y13d{bottom:410.462533pt;}
.y220{bottom:410.469867pt;}
.y251{bottom:412.552800pt;}
.yb6{bottom:413.129200pt;}
.y196{bottom:413.696133pt;}
.y1d2{bottom:414.938000pt;}
.y71{bottom:415.795867pt;}
.y291{bottom:418.012000pt;}
.yd1{bottom:420.271333pt;}
.y127{bottom:420.397333pt;}
.y173{bottom:421.129200pt;}
.y1b7{bottom:421.245600pt;}
.y250{bottom:425.886133pt;}
.y4a{bottom:426.342533pt;}
.yf6{bottom:426.462533pt;}
.y21f{bottom:426.469867pt;}
.y19{bottom:426.723733pt;}
.y1d1{bottom:428.271333pt;}
.yb5{bottom:429.129200pt;}
.y195{bottom:429.696133pt;}
.y290{bottom:431.345333pt;}
.y70{bottom:431.795867pt;}
.yd0{bottom:433.604667pt;}
.y126{bottom:433.730667pt;}
.y172{bottom:437.129200pt;}
.y24f{bottom:439.219467pt;}
.y1d0{bottom:441.604667pt;}
.y49{bottom:442.342533pt;}
.yf5{bottom:442.462533pt;}
.y21e{bottom:442.469867pt;}
.y28f{bottom:444.678667pt;}
.yb4{bottom:445.129200pt;}
.y194{bottom:445.696133pt;}
.ycf{bottom:446.938000pt;}
.y125{bottom:447.064000pt;}
.y6f{bottom:447.795867pt;}
.y1b6{bottom:450.675867pt;}
.y18{bottom:451.030400pt;}
.y24e{bottom:452.552800pt;}
.y171{bottom:453.129200pt;}
.y1cf{bottom:454.938000pt;}
.y28e{bottom:458.012000pt;}
.y48{bottom:458.342533pt;}
.yf4{bottom:458.462533pt;}
.y21d{bottom:458.469867pt;}
.y124{bottom:460.397333pt;}
.yb3{bottom:461.129200pt;}
.y6e{bottom:463.795867pt;}
.y24d{bottom:465.886133pt;}
.y1b5{bottom:466.675867pt;}
.y17{bottom:467.030400pt;}
.y1ce{bottom:468.271333pt;}
.y170{bottom:469.129200pt;}
.y28d{bottom:471.345333pt;}
.y123{bottom:473.730667pt;}
.y1fb{bottom:474.342533pt;}
.yf3{bottom:474.462533pt;}
.y21c{bottom:474.469867pt;}
.yce{bottom:474.588533pt;}
.yb2{bottom:477.129200pt;}
.y193{bottom:477.245600pt;}
.y24c{bottom:479.219467pt;}
.y6d{bottom:479.795867pt;}
.y1cd{bottom:481.604667pt;}
.y16{bottom:483.030400pt;}
.y28c{bottom:484.678667pt;}
.y16f{bottom:485.129200pt;}
.y122{bottom:487.064000pt;}
.y47{bottom:489.982533pt;}
.ycd{bottom:490.235867pt;}
.y1fa{bottom:490.342533pt;}
.yf2{bottom:490.462533pt;}
.y21b{bottom:490.469867pt;}
.y192{bottom:490.578933pt;}
.y24b{bottom:492.552800pt;}
.yb1{bottom:493.129200pt;}
.y1cc{bottom:494.938000pt;}
.y6c{bottom:495.795867pt;}
.y28b{bottom:498.012000pt;}
.y15{bottom:499.030400pt;}
.y121{bottom:500.397333pt;}
.y16e{bottom:501.129200pt;}
.y191{bottom:503.912267pt;}
.y24a{bottom:505.886133pt;}
.y1f9{bottom:506.342533pt;}
.yf1{bottom:506.462533pt;}
.y21a{bottom:506.469867pt;}
.y1cb{bottom:508.271333pt;}
.yb0{bottom:509.129200pt;}
.y28a{bottom:511.345333pt;}
.y6b{bottom:511.795867pt;}
.y120{bottom:513.730667pt;}
.y14{bottom:515.030400pt;}
.y16d{bottom:517.129200pt;}
.y190{bottom:517.245600pt;}
.y249{bottom:519.219467pt;}
.y1ca{bottom:521.604667pt;}
.y1f8{bottom:522.342533pt;}
.ycc{bottom:522.462533pt;}
.y219{bottom:522.469867pt;}
.y289{bottom:524.678667pt;}
.yaf{bottom:525.129200pt;}
.y11f{bottom:527.064000pt;}
.y6a{bottom:527.795867pt;}
.y13{bottom:531.030400pt;}
.y248{bottom:532.552800pt;}
.y16c{bottom:533.129200pt;}
.y1c9{bottom:534.938000pt;}
.y288{bottom:538.012000pt;}
.y1f7{bottom:538.342533pt;}
.y46{bottom:538.462533pt;}
.y218{bottom:538.469867pt;}
.yae{bottom:541.129200pt;}
.y69{bottom:543.795867pt;}
.y247{bottom:545.886133pt;}
.y18f{bottom:546.675867pt;}
.y12{bottom:547.030400pt;}
.y1c8{bottom:548.271333pt;}
.y16b{bottom:549.129200pt;}
.y287{bottom:551.345333pt;}
.y1f6{bottom:554.342533pt;}
.y45{bottom:554.462533pt;}
.y217{bottom:554.469867pt;}
.y11e{bottom:554.721867pt;}
.yad{bottom:557.129200pt;}
.y246{bottom:559.219467pt;}
.y68{bottom:559.795867pt;}
.y1c7{bottom:561.604667pt;}
.y11{bottom:563.030400pt;}
.y2bb{bottom:564.678667pt;}
.y286{bottom:564.680800pt;}
.y16a{bottom:565.129200pt;}
.y18e{bottom:570.235867pt;}
.y1f5{bottom:570.342533pt;}
.y11d{bottom:570.361867pt;}
.y44{bottom:570.462533pt;}
.y216{bottom:570.469867pt;}
.y245{bottom:572.552800pt;}
.yac{bottom:573.129200pt;}
.y1c6{bottom:574.938000pt;}
.y67{bottom:575.795867pt;}
.y2ba{bottom:578.012000pt;}
.y285{bottom:578.014133pt;}
.y10{bottom:579.030400pt;}
.y169{bottom:581.129200pt;}
.y244{bottom:585.886133pt;}
.y1f4{bottom:586.342533pt;}
.y11c{bottom:586.361867pt;}
.y43{bottom:586.462533pt;}
.y215{bottom:586.469867pt;}
.yab{bottom:589.129200pt;}
.y2b9{bottom:591.345333pt;}
.y284{bottom:591.347467pt;}
.yf{bottom:595.030400pt;}
.y168{bottom:597.129200pt;}
.y243{bottom:599.219467pt;}
.y1f3{bottom:602.342533pt;}
.y42{bottom:602.462533pt;}
.y214{bottom:602.469867pt;}
.y1c5{bottom:602.595867pt;}
.y2b8{bottom:604.678667pt;}
.y283{bottom:604.680800pt;}
.yaa{bottom:605.129200pt;}
.y66{bottom:607.345333pt;}
.ye{bottom:611.030400pt;}
.y242{bottom:612.552800pt;}
.y167{bottom:613.129200pt;}
.y2b7{bottom:618.012000pt;}
.y282{bottom:618.014133pt;}
.y1c4{bottom:618.235867pt;}
.y1f2{bottom:618.342533pt;}
.y41{bottom:618.462533pt;}
.y213{bottom:618.469867pt;}
.y11b{bottom:618.588533pt;}
.y65{bottom:620.678667pt;}
.ya9{bottom:621.129200pt;}
.y241{bottom:625.886133pt;}
.y166{bottom:629.129200pt;}
.y2b6{bottom:631.345333pt;}
.y281{bottom:631.347467pt;}
.y1f1{bottom:634.342533pt;}
.y40{bottom:634.462533pt;}
.y212{bottom:634.469867pt;}
.y11a{bottom:634.588533pt;}
.ya8{bottom:637.129200pt;}
.y240{bottom:639.219467pt;}
.y2b5{bottom:644.678667pt;}
.y280{bottom:644.680800pt;}
.y165{bottom:645.129200pt;}
.y64{bottom:650.102533pt;}
.y1f0{bottom:650.342533pt;}
.y3f{bottom:650.462533pt;}
.y211{bottom:650.469867pt;}
.y119{bottom:650.588533pt;}
.yd{bottom:651.170933pt;}
.y23f{bottom:652.552800pt;}
.ya7{bottom:653.129200pt;}
.y2b4{bottom:658.012000pt;}
.y27f{bottom:658.014133pt;}
.y164{bottom:661.129200pt;}
.yc{bottom:662.238267pt;}
.y23e{bottom:665.886133pt;}
.y63{bottom:666.102533pt;}
.y1ef{bottom:666.342533pt;}
.y3e{bottom:666.462533pt;}
.y210{bottom:666.469867pt;}
.y118{bottom:666.588533pt;}
.ya6{bottom:669.129200pt;}
.y2b3{bottom:671.345333pt;}
.y27e{bottom:671.347467pt;}
.y23d{bottom:679.219467pt;}
.y62{bottom:682.102533pt;}
.y1ee{bottom:682.342533pt;}
.y3d{bottom:682.462533pt;}
.y20f{bottom:682.469867pt;}
.y117{bottom:682.588533pt;}
.y2b2{bottom:684.678667pt;}
.y95{bottom:684.678800pt;}
.y27d{bottom:684.680800pt;}
.ya5{bottom:685.129200pt;}
.yb{bottom:690.429867pt;}
.y23c{bottom:692.552800pt;}
.y163{bottom:692.678667pt;}
.y2b1{bottom:698.012000pt;}
.y27c{bottom:698.014133pt;}
.y1ed{bottom:698.342533pt;}
.y3c{bottom:698.462533pt;}
.y20e{bottom:698.469867pt;}
.y116{bottom:698.588533pt;}
.ya4{bottom:701.129200pt;}
.y23b{bottom:705.886133pt;}
.y162{bottom:706.012000pt;}
.ya{bottom:707.252400pt;}
.y2b0{bottom:711.345333pt;}
.y27b{bottom:711.347467pt;}
.y61{bottom:713.982533pt;}
.y1ec{bottom:714.342533pt;}
.y9{bottom:714.429867pt;}
.y3b{bottom:714.462533pt;}
.y20d{bottom:714.469867pt;}
.y115{bottom:714.588533pt;}
.ya3{bottom:717.129200pt;}
.y23a{bottom:719.219467pt;}
.y161{bottom:719.345333pt;}
.y2af{bottom:724.678667pt;}
.y27a{bottom:724.680800pt;}
.y1eb{bottom:730.342533pt;}
.y3a{bottom:730.462533pt;}
.y20c{bottom:730.469867pt;}
.y114{bottom:730.588533pt;}
.y8{bottom:731.252400pt;}
.y239{bottom:732.552800pt;}
.y160{bottom:732.678667pt;}
.ya2{bottom:733.129200pt;}
.y2ae{bottom:738.012000pt;}
.y279{bottom:738.014133pt;}
.y15f{bottom:746.012000pt;}
.y87{bottom:746.235867pt;}
.y1ea{bottom:746.342533pt;}
.y39{bottom:746.462533pt;}
.y20b{bottom:746.469867pt;}
.y113{bottom:746.588533pt;}
.y93{bottom:748.145333pt;}
.ya1{bottom:749.129200pt;}
.y2ad{bottom:751.345333pt;}
.y278{bottom:751.347467pt;}
.y7{bottom:756.783067pt;}
.y15e{bottom:759.345333pt;}
.y92{bottom:761.478667pt;}
.y238{bottom:761.984533pt;}
.y86{bottom:762.235867pt;}
.y1e9{bottom:762.342533pt;}
.y38{bottom:762.462533pt;}
.y20a{bottom:762.469867pt;}
.y112{bottom:762.601867pt;}
.y2ac{bottom:764.678667pt;}
.y277{bottom:764.680800pt;}
.ya0{bottom:765.129200pt;}
.y15d{bottom:772.678667pt;}
.y91{bottom:774.812000pt;}
.y1b4{bottom:778.012000pt;}
.y276{bottom:778.014133pt;}
.y1e8{bottom:778.342533pt;}
.y37{bottom:778.462533pt;}
.y209{bottom:778.469867pt;}
.y111{bottom:778.601867pt;}
.y9f{bottom:781.129200pt;}
.y15c{bottom:786.012000pt;}
.y90{bottom:788.145333pt;}
.y1b3{bottom:791.345333pt;}
.y275{bottom:791.347467pt;}
.y36{bottom:794.462533pt;}
.y208{bottom:794.469867pt;}
.y9e{bottom:797.129200pt;}
.y6{bottom:797.816533pt;}
.y15b{bottom:799.345333pt;}
.y8f{bottom:801.478667pt;}
.y1b2{bottom:804.678667pt;}
.y274{bottom:804.680800pt;}
.y1e7{bottom:809.982533pt;}
.y110{bottom:810.241867pt;}
.y35{bottom:810.462533pt;}
.y237{bottom:810.464533pt;}
.y207{bottom:810.469867pt;}
.y15a{bottom:812.678667pt;}
.y9d{bottom:813.129200pt;}
.y8e{bottom:814.812000pt;}
.y1b1{bottom:818.012000pt;}
.y273{bottom:818.014133pt;}
.y159{bottom:826.012000pt;}
.y236{bottom:826.104533pt;}
.y34{bottom:826.462533pt;}
.y206{bottom:826.469867pt;}
.y8d{bottom:828.145333pt;}
.y9c{bottom:829.129200pt;}
.y5{bottom:830.226133pt;}
.y1b0{bottom:831.345333pt;}
.y272{bottom:831.347467pt;}
.y158{bottom:839.345333pt;}
.y8c{bottom:841.478667pt;}
.y33{bottom:842.462533pt;}
.y10f{bottom:842.468533pt;}
.y205{bottom:842.469867pt;}
.y1af{bottom:844.678667pt;}
.y271{bottom:844.680800pt;}
.y9b{bottom:845.129200pt;}
.y157{bottom:852.678667pt;}
.y8b{bottom:854.812000pt;}
.y18d{bottom:858.012000pt;}
.y270{bottom:858.014133pt;}
.y235{bottom:858.104533pt;}
.y32{bottom:858.462533pt;}
.y10e{bottom:858.468533pt;}
.y204{bottom:858.469867pt;}
.y9a{bottom:861.129200pt;}
.y4{bottom:862.635733pt;}
.y156{bottom:866.012000pt;}
.y8a{bottom:868.145333pt;}
.y18a{bottom:871.345333pt;}
.y26f{bottom:871.347467pt;}
.y31{bottom:874.462533pt;}
.y10d{bottom:874.468533pt;}
.y203{bottom:874.469867pt;}
.y99{bottom:877.129200pt;}
.y1ac{bottom:878.812000pt;}
.y155{bottom:879.345333pt;}
.y89{bottom:881.478667pt;}
.y189{bottom:884.678667pt;}
.y26e{bottom:884.680800pt;}
.y30{bottom:890.462533pt;}
.y234{bottom:890.464533pt;}
.y10c{bottom:890.468533pt;}
.y202{bottom:890.469867pt;}
.y154{bottom:892.678667pt;}
.y98{bottom:893.129200pt;}
.y88{bottom:894.812000pt;}
.y3{bottom:895.045333pt;}
.y188{bottom:898.012000pt;}
.y26d{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y233{bottom:906.464533pt;}
.y10b{bottom:906.468533pt;}
.y187{bottom:911.345333pt;}
.y26c{bottom:911.347467pt;}
.y153{bottom:922.102533pt;}
.y232{bottom:922.104533pt;}
.y201{bottom:922.109867pt;}
.y2e{bottom:922.462533pt;}
.y10a{bottom:922.468533pt;}
.y97{bottom:924.678667pt;}
.y26b{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y85{bottom:1006.594400pt;}
.y186{bottom:1006.594667pt;}
.yec{bottom:1006.597067pt;}
.y2ab{bottom:1006.598667pt;}
.y96{bottom:1006.598800pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:16.977598pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.121094pt;}
.hf{height:29.140625pt;}
.h7{height:29.160156pt;}
.h13{height:29.625000pt;}
.h11{height:31.062500pt;}
.h14{height:31.083333pt;}
.h10{height:31.104167pt;}
.h12{height:37.437500pt;}
.ha{height:38.828125pt;}
.hc{height:38.833900pt;}
.h9{height:38.854167pt;}
.hb{height:38.880208pt;}
.hd{height:46.796875pt;}
.h15{height:48.236875pt;}
.h3{height:50.476562pt;}
.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;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.969200pt;}
.x1f{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x2f{left:100.071467pt;}
.x22{left:109.606400pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.xd{left:128.604800pt;}
.x21{left:138.592000pt;}
.x31{left:176.778133pt;}
.x5{left:189.223467pt;}
.x33{left:191.582533pt;}
.x19{left:193.782533pt;}
.x30{left:198.271467pt;}
.xa{left:404.481333pt;}
.xe{left:406.271467pt;}
.x28{left:408.322000pt;}
.x2d{left:409.521067pt;}
.x27{left:413.295333pt;}
.x2c{left:418.027733pt;}
.x1c{left:425.186133pt;}
.x12{left:426.084800pt;}
.x7{left:427.085333pt;}
.x13{left:428.976533pt;}
.x14{left:436.535333pt;}
.x11{left:439.418133pt;}
.x15{left:445.033333pt;}
.x1b{left:447.874133pt;}
.x10{left:450.151467pt;}
.x23{left:455.418667pt;}
.x8{left:457.325333pt;}
.x26{left:462.444800pt;}
.x24{left:482.779733pt;}
.x2e{left:494.334400pt;}
.x32{left:507.271467pt;}
.x20{left:524.680000pt;}
.xf{left:525.884800pt;}
.x1a{left:533.555867pt;}
.x29{left:536.535333pt;}
.x25{left:555.406400pt;}
.x17{left:589.770933pt;}
.x1d{left:610.969600pt;}
.x2{left:616.324800pt;}
.x2a{left:641.526800pt;}
.x16{left:647.459200pt;}
.x2b{left:661.216133pt;}
.x1e{left:666.361600pt;}
}




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