
    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_91f005d4ff5d709d9093634c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99492699134dd4606e81083d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_0479a2bd482e239fb6f7c413.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8c62b72ad283487b25df7839.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fe7be37000ef4db6c9e7c506.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090000;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_4b5f3c86a91fdbd2258d1ff8.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_1a6d68fc2e929f0d167be71a.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_da1c3f22064c46d17309ef31.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.818359;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_4d1990bd8007ebc82adc1775.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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.400011px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls9c{letter-spacing:-3.468000px;}
.ls9d{letter-spacing:-3.366000px;}
.ls30{letter-spacing:-0.480000px;}
.ls25{letter-spacing:-0.420000px;}
.ls8a{letter-spacing:-0.408000px;}
.ls27{letter-spacing:-0.360000px;}
.ls72{letter-spacing:-0.357000px;}
.ls75{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.300000px;}
.ls74{letter-spacing:-0.255000px;}
.ls26{letter-spacing:-0.240000px;}
.ls73{letter-spacing:-0.204000px;}
.ls16{letter-spacing:-0.180000px;}
.ls89{letter-spacing:-0.153000px;}
.ls18{letter-spacing:-0.120000px;}
.ls88{letter-spacing:-0.102000px;}
.ls24{letter-spacing:-0.060000px;}
.ls87{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.030000px;}
.ls4e{letter-spacing:0.051000px;}
.ls20{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.102000px;}
.lse{letter-spacing:0.120000px;}
.ls3e{letter-spacing:0.150000px;}
.ls85{letter-spacing:0.153000px;}
.ls14{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.204000px;}
.ls21{letter-spacing:0.210000px;}
.ls93{letter-spacing:0.229500px;}
.ls3{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.255000px;}
.ls4d{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.270000px;}
.ls99{letter-spacing:0.280500px;}
.ls52{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls49{letter-spacing:0.306000px;}
.ls2d{letter-spacing:0.330000px;}
.ls6e{letter-spacing:0.336595px;}
.ls4f{letter-spacing:0.357000px;}
.ls1f{letter-spacing:0.360000px;}
.lsa2{letter-spacing:0.382500px;}
.ls22{letter-spacing:0.390000px;}
.ls56{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.420000px;}
.ls3d{letter-spacing:0.450000px;}
.ls50{letter-spacing:0.459000px;}
.ls6{letter-spacing:0.480000px;}
.ls98{letter-spacing:0.484500px;}
.ls57{letter-spacing:0.510000px;}
.ls91{letter-spacing:0.535500px;}
.ls11{letter-spacing:0.540000px;}
.ls47{letter-spacing:0.561000px;}
.ls9a{letter-spacing:0.566080px;}
.ls45{letter-spacing:0.570000px;}
.ls8f{letter-spacing:0.586500px;}
.ls12{letter-spacing:0.600000px;}
.ls7b{letter-spacing:0.612000px;}
.ls1b{letter-spacing:0.630000px;}
.ls9f{letter-spacing:0.637500px;}
.lsb{letter-spacing:0.660000px;}
.ls53{letter-spacing:0.663000px;}
.ls31{letter-spacing:0.690000px;}
.ls48{letter-spacing:0.714000px;}
.ls1e{letter-spacing:0.720000px;}
.ls96{letter-spacing:0.759868px;}
.ls5c{letter-spacing:0.765000px;}
.lsd{letter-spacing:0.780000px;}
.ls2a{letter-spacing:0.810000px;}
.ls5d{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.lsa0{letter-spacing:0.841500px;}
.ls59{letter-spacing:0.867000px;}
.ls39{letter-spacing:0.870000px;}
.ls1c{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.918000px;}
.ls34{letter-spacing:0.930000px;}
.ls81{letter-spacing:0.938400px;}
.ls13{letter-spacing:0.960000px;}
.ls4a{letter-spacing:0.969000px;}
.ls2b{letter-spacing:0.990000px;}
.lsc{letter-spacing:1.020000px;}
.lsa5{letter-spacing:1.025076px;}
.lsa1{letter-spacing:1.030200px;}
.ls54{letter-spacing:1.040400px;}
.ls69{letter-spacing:1.071000px;}
.lsf{letter-spacing:1.080000px;}
.ls5a{letter-spacing:1.122000px;}
.ls94{letter-spacing:1.127100px;}
.ls29{letter-spacing:1.140000px;}
.ls6c{letter-spacing:1.173000px;}
.ls8{letter-spacing:1.200000px;}
.ls90{letter-spacing:1.218900px;}
.ls5e{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.260000px;}
.ls4c{letter-spacing:1.275000px;}
.ls36{letter-spacing:1.290000px;}
.ls8c{letter-spacing:1.300500px;}
.ls1a{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.326000px;}
.ls86{letter-spacing:1.331100px;}
.ls10{letter-spacing:1.350000px;}
.ls83{letter-spacing:1.377000px;}
.ls2f{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.402500px;}
.ls46{letter-spacing:1.410000px;}
.ls6f{letter-spacing:1.428000px;}
.ls1d{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.470000px;}
.ls7d{letter-spacing:1.479000px;}
.ls28{letter-spacing:1.500000px;}
.ls60{letter-spacing:1.530000px;}
.ls92{letter-spacing:1.540200px;}
.ls3a{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.581000px;}
.ls7e{letter-spacing:1.606500px;}
.ls35{letter-spacing:1.620000px;}
.ls63{letter-spacing:1.632000px;}
.ls43{letter-spacing:1.680000px;}
.ls84{letter-spacing:1.683000px;}
.ls7c{letter-spacing:1.734000px;}
.lsa{letter-spacing:1.740000px;}
.ls61{letter-spacing:1.759500px;}
.ls76{letter-spacing:1.785000px;}
.ls40{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.830000px;}
.ls38{letter-spacing:1.860000px;}
.ls9e{letter-spacing:1.887000px;}
.ls3b{letter-spacing:1.920000px;}
.ls97{letter-spacing:1.927781px;}
.ls6b{letter-spacing:1.938000px;}
.ls58{letter-spacing:1.958400px;}
.ls44{letter-spacing:1.980000px;}
.ls65{letter-spacing:2.014500px;}
.ls3c{letter-spacing:2.040000px;}
.ls6a{letter-spacing:2.050200px;}
.lsa3{letter-spacing:2.060400px;}
.ls8d{letter-spacing:2.091000px;}
.ls80{letter-spacing:2.096100px;}
.ls6d{letter-spacing:2.106300px;}
.ls55{letter-spacing:2.142000px;}
.ls41{letter-spacing:2.220000px;}
.ls79{letter-spacing:2.295000px;}
.ls42{letter-spacing:2.340000px;}
.ls78{letter-spacing:2.346000px;}
.ls8b{letter-spacing:2.473480px;}
.ls64{letter-spacing:2.728500px;}
.lsa6{letter-spacing:2.789658px;}
.ls95{letter-spacing:2.906994px;}
.ls68{letter-spacing:3.090600px;}
.ls70{letter-spacing:3.717900px;}
.ls1{letter-spacing:3.990000px;}
.lsa4{letter-spacing:4.080000px;}
.ls7f{letter-spacing:4.131000px;}
.ls5b{letter-spacing:4.584900px;}
.ls62{letter-spacing:4.743000px;}
.ls82{letter-spacing:4.850100px;}
.lsa8{letter-spacing:5.008200px;}
.ls5f{letter-spacing:5.732400px;}
.ls9b{letter-spacing:6.512693px;}
.lsa7{letter-spacing:7.272600px;}
.ls8e{letter-spacing:7.848894px;}
.ls7a{letter-spacing:8.853587px;}
.ls2{letter-spacing:40.090208px;}
.ls32{letter-spacing:71.451000px;}
.ls33{letter-spacing:74.970000px;}
.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;}
}
.ws6b{word-spacing:-51.000000px;}
.ws47{word-spacing:-16.200000px;}
.ws86{word-spacing:-16.080000px;}
.ws7e{word-spacing:-15.960000px;}
.ws7f{word-spacing:-15.930000px;}
.ws85{word-spacing:-15.870000px;}
.ws84{word-spacing:-15.720000px;}
.ws8{word-spacing:-15.660000px;}
.ws61{word-spacing:-15.540000px;}
.ws62{word-spacing:-15.480000px;}
.ws46{word-spacing:-15.420000px;}
.ws72{word-spacing:-15.360000px;}
.ws28{word-spacing:-15.300000px;}
.wsc9{word-spacing:-15.096000px;}
.ws49{word-spacing:-15.060000px;}
.ws29{word-spacing:-15.000000px;}
.ws48{word-spacing:-14.940000px;}
.ws9c{word-spacing:-14.832000px;}
.ws60{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.544000px;}
.ws9e{word-spacing:-14.509500px;}
.wsca{word-spacing:-14.356500px;}
.wsa0{word-spacing:-14.178000px;}
.ws9f{word-spacing:-13.719000px;}
.wsa1{word-spacing:-13.617000px;}
.wse1{word-spacing:-13.464000px;}
.ws9d{word-spacing:-13.005000px;}
.wse0{word-spacing:-12.979500px;}
.ws9b{word-spacing:-12.852000px;}
.ws6c{word-spacing:-12.750000px;}
.wsf1{word-spacing:-12.699000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.520000px;}
.ws8f{word-spacing:-10.761000px;}
.ws2{word-spacing:-9.996000px;}
.ws4{word-spacing:-8.694000px;}
.wscd{word-spacing:-2.295000px;}
.wsa{word-spacing:-2.160000px;}
.ws2a{word-spacing:-1.836000px;}
.wsbe{word-spacing:-1.785000px;}
.wsd6{word-spacing:-1.734000px;}
.ws93{word-spacing:-1.680000px;}
.wse6{word-spacing:-1.632000px;}
.ws8c{word-spacing:-1.620000px;}
.ws77{word-spacing:-1.560000px;}
.wsfa{word-spacing:-1.530000px;}
.wsb{word-spacing:-1.500000px;}
.ws30{word-spacing:-1.440000px;}
.ws33{word-spacing:-1.380000px;}
.wsfe{word-spacing:-1.377000px;}
.wsd7{word-spacing:-1.326000px;}
.ws45{word-spacing:-1.320000px;}
.wsa4{word-spacing:-1.275000px;}
.ws37{word-spacing:-1.260000px;}
.wsbc{word-spacing:-1.224000px;}
.ws21{word-spacing:-1.200000px;}
.wsc7{word-spacing:-1.173000px;}
.ws78{word-spacing:-1.140000px;}
.wsb2{word-spacing:-1.122000px;}
.wsd{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.071000px;}
.ws15{word-spacing:-1.020000px;}
.wsa3{word-spacing:-0.969000px;}
.ws4c{word-spacing:-0.960000px;}
.wsb5{word-spacing:-0.918000px;}
.ws73{word-spacing:-0.900000px;}
.wsc4{word-spacing:-0.867000px;}
.ws44{word-spacing:-0.840000px;}
.wsb8{word-spacing:-0.816000px;}
.ws58{word-spacing:-0.780000px;}
.wsa7{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsa8{word-spacing:-0.714000px;}
.wsaa{word-spacing:-0.663000px;}
.ws3b{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.612000px;}
.wsf{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.ws97{word-spacing:-0.561000px;}
.wse{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.510000px;}
.ws69{word-spacing:-0.480000px;}
.wsc5{word-spacing:-0.459000px;}
.ws31{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.408000px;}
.ws36{word-spacing:-0.360000px;}
.wse8{word-spacing:-0.357000px;}
.wsae{word-spacing:-0.306000px;}
.ws16{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.264000px;}
.ws99{word-spacing:-0.255000px;}
.ws20{word-spacing:-0.240000px;}
.wsf4{word-spacing:-0.204000px;}
.wsc{word-spacing:-0.180000px;}
.wsdc{word-spacing:-0.153000px;}
.ws54{word-spacing:-0.120000px;}
.wsb4{word-spacing:-0.102000px;}
.ws42{word-spacing:-0.060000px;}
.wsf8{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsb7{word-spacing:0.051000px;}
.ws2b{word-spacing:0.060000px;}
.wsc1{word-spacing:0.102000px;}
.ws38{word-spacing:0.120000px;}
.wsf6{word-spacing:0.153000px;}
.ws7b{word-spacing:0.180000px;}
.wsdd{word-spacing:0.204000px;}
.ws39{word-spacing:0.240000px;}
.ws79{word-spacing:0.300000px;}
.wsa9{word-spacing:0.306000px;}
.wsda{word-spacing:0.357000px;}
.ws67{word-spacing:0.360000px;}
.wsce{word-spacing:0.408000px;}
.ws34{word-spacing:0.420000px;}
.ws57{word-spacing:0.480000px;}
.ws59{word-spacing:0.540000px;}
.ws5a{word-spacing:0.600000px;}
.wseb{word-spacing:0.612000px;}
.ws3c{word-spacing:0.660000px;}
.wsd8{word-spacing:0.714000px;}
.ws1a{word-spacing:0.720000px;}
.wsb6{word-spacing:0.765000px;}
.ws5c{word-spacing:0.780000px;}
.wsea{word-spacing:0.816000px;}
.ws4d{word-spacing:0.840000px;}
.ws56{word-spacing:0.900000px;}
.wsf7{word-spacing:0.918000px;}
.ws68{word-spacing:0.960000px;}
.wse3{word-spacing:0.969000px;}
.ws4f{word-spacing:1.020000px;}
.wsad{word-spacing:1.071000px;}
.ws66{word-spacing:1.080000px;}
.ws8e{word-spacing:1.140000px;}
.wsa5{word-spacing:1.173000px;}
.ws6a{word-spacing:1.200000px;}
.ws94{word-spacing:1.224000px;}
.ws96{word-spacing:1.275000px;}
.ws12{word-spacing:1.320000px;}
.wsf5{word-spacing:1.326000px;}
.wsfb{word-spacing:1.377000px;}
.ws35{word-spacing:1.380000px;}
.wsab{word-spacing:1.428000px;}
.ws19{word-spacing:1.440000px;}
.ws10{word-spacing:1.500000px;}
.wsc3{word-spacing:1.530000px;}
.ws32{word-spacing:1.560000px;}
.wsac{word-spacing:1.581000px;}
.ws74{word-spacing:1.620000px;}
.ws95{word-spacing:1.632000px;}
.ws1f{word-spacing:1.680000px;}
.wsf0{word-spacing:1.683000px;}
.wsee{word-spacing:1.734000px;}
.ws22{word-spacing:1.740000px;}
.wsec{word-spacing:1.785000px;}
.ws18{word-spacing:1.800000px;}
.wse9{word-spacing:1.836000px;}
.ws43{word-spacing:1.860000px;}
.wsd2{word-spacing:1.887000px;}
.ws2c{word-spacing:1.920000px;}
.wsf2{word-spacing:1.938000px;}
.ws52{word-spacing:1.980000px;}
.wsd1{word-spacing:1.989000px;}
.ws50{word-spacing:2.040000px;}
.wsb9{word-spacing:2.091000px;}
.ws53{word-spacing:2.100000px;}
.wsc0{word-spacing:2.142000px;}
.ws5d{word-spacing:2.160000px;}
.wsc8{word-spacing:2.193000px;}
.ws6f{word-spacing:2.220000px;}
.wsde{word-spacing:2.244000px;}
.ws2e{word-spacing:2.280000px;}
.wsba{word-spacing:2.295000px;}
.ws1e{word-spacing:2.340000px;}
.wsc2{word-spacing:2.397000px;}
.ws4e{word-spacing:2.400000px;}
.ws3f{word-spacing:2.460000px;}
.wsb0{word-spacing:2.499000px;}
.ws24{word-spacing:2.520000px;}
.wsd3{word-spacing:2.550000px;}
.ws83{word-spacing:2.580000px;}
.ws3d{word-spacing:2.640000px;}
.ws25{word-spacing:2.700000px;}
.wsbf{word-spacing:2.703000px;}
.wsed{word-spacing:2.754000px;}
.ws4b{word-spacing:2.760000px;}
.wsfc{word-spacing:2.805000px;}
.ws23{word-spacing:2.820000px;}
.wsdb{word-spacing:2.856000px;}
.ws70{word-spacing:2.880000px;}
.ws17{word-spacing:2.940000px;}
.wsb3{word-spacing:2.958000px;}
.ws63{word-spacing:3.000000px;}
.ws1b{word-spacing:3.060000px;}
.wsd0{word-spacing:3.111000px;}
.ws64{word-spacing:3.120000px;}
.wscf{word-spacing:3.162000px;}
.ws76{word-spacing:3.180000px;}
.wsd9{word-spacing:3.213000px;}
.ws1d{word-spacing:3.240000px;}
.ws3a{word-spacing:3.300000px;}
.wsbd{word-spacing:3.315000px;}
.ws80{word-spacing:3.360000px;}
.wse4{word-spacing:3.366000px;}
.wsf3{word-spacing:3.417000px;}
.ws91{word-spacing:3.420000px;}
.wse2{word-spacing:3.468000px;}
.ws7a{word-spacing:3.480000px;}
.ws65{word-spacing:3.540000px;}
.wsff{word-spacing:3.570000px;}
.ws4a{word-spacing:3.600000px;}
.ws13{word-spacing:3.660000px;}
.wsb1{word-spacing:3.672000px;}
.ws55{word-spacing:3.720000px;}
.wsdf{word-spacing:3.774000px;}
.ws41{word-spacing:3.780000px;}
.ws51{word-spacing:3.840000px;}
.ws5e{word-spacing:3.960000px;}
.ws3e{word-spacing:4.080000px;}
.ws71{word-spacing:4.140000px;}
.ws87{word-spacing:4.200000px;}
.wsbb{word-spacing:4.233000px;}
.ws2d{word-spacing:4.260000px;}
.ws98{word-spacing:4.284000px;}
.ws7d{word-spacing:4.320000px;}
.wsc6{word-spacing:4.335000px;}
.ws8d{word-spacing:4.380000px;}
.ws1c{word-spacing:4.500000px;}
.wsd4{word-spacing:4.641000px;}
.ws82{word-spacing:4.680000px;}
.ws5f{word-spacing:4.740000px;}
.wsef{word-spacing:4.794000px;}
.ws5b{word-spacing:4.800000px;}
.wsfd{word-spacing:4.845000px;}
.ws2f{word-spacing:4.860000px;}
.ws75{word-spacing:4.920000px;}
.ws40{word-spacing:5.040000px;}
.ws90{word-spacing:5.100000px;}
.ws92{word-spacing:5.280000px;}
.ws88{word-spacing:5.460000px;}
.ws7c{word-spacing:5.760000px;}
.wsf9{word-spacing:5.763000px;}
.wsd5{word-spacing:5.865000px;}
.ws8b{word-spacing:5.880000px;}
.wscc{word-spacing:6.120000px;}
.wscb{word-spacing:6.273000px;}
.ws14{word-spacing:6.420000px;}
.wse7{word-spacing:6.681000px;}
.ws81{word-spacing:6.900000px;}
.ws89{word-spacing:7.500000px;}
.ws8a{word-spacing:8.100000px;}
.wse5{word-spacing:8.517000px;}
.ws100{word-spacing:13.515000px;}
.ws101{word-spacing:17.595000px;}
.ws26{word-spacing:72.267000px;}
.ws6e{word-spacing:458.030991px;}
.ws6d{word-spacing:490.466991px;}
._a{margin-left:-72.675000px;}
._6{margin-left:-16.575000px;}
._3{margin-left:-5.946900px;}
._1{margin-left:-4.622700px;}
._4{margin-left:-2.826000px;}
._0{margin-left:-1.632000px;}
._2{width:1.036800px;}
._5{width:2.208000px;}
._c{width:3.606000px;}
._26{width:5.253000px;}
._22{width:7.627200px;}
._24{width:8.721000px;}
._23{width:10.812000px;}
._25{width:13.973993px;}
._d{width:15.519900px;}
._7{width:18.360000px;}
._15{width:37.723200px;}
._9{width:54.621000px;}
._8{width:72.267000px;}
._14{width:153.203991px;}
._16{width:181.508991px;}
._1e{width:190.536000px;}
._19{width:232.712991px;}
._20{width:237.302991px;}
._1f{width:239.618991px;}
._13{width:244.187991px;}
._1a{width:276.148200px;}
._1d{width:288.098991px;}
._10{width:308.193000px;}
._17{width:321.809991px;}
._1b{width:331.652991px;}
._21{width:340.169991px;}
._18{width:367.250991px;}
._1c{width:388.334991px;}
._e{width:393.108000px;}
._12{width:394.331991px;}
._11{width:447.014991px;}
._f{width:624.953991px;}
._b{width:2579.580086px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y23{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y55{bottom:112.938300px;}
.y9a{bottom:113.415298px;}
.y8b{bottom:113.415344px;}
.ydc{bottom:114.564308px;}
.yd0{bottom:114.735260px;}
.y107{bottom:114.735306px;}
.y273{bottom:116.614823px;}
.y1af{bottom:116.837567px;}
.y4f{bottom:122.461349px;}
.y1f0{bottom:131.608823px;}
.y1ae{bottom:131.831567px;}
.y272{bottom:131.991275px;}
.y231{bottom:131.991307px;}
.y2b4{bottom:132.004073px;}
.y99{bottom:132.165298px;}
.y8a{bottom:132.165344px;}
.y16d{bottom:132.532822px;}
.y54{bottom:133.032303px;}
.ydb{bottom:133.314308px;}
.ycf{bottom:133.485260px;}
.y106{bottom:133.485306px;}
.y136{bottom:133.507806px;}
.y22{bottom:139.264499px;}
.y4e{bottom:141.211349px;}
.y1ef{bottom:146.602823px;}
.y1ad{bottom:146.825567px;}
.y271{bottom:146.985275px;}
.y230{bottom:146.985307px;}
.y2b3{bottom:146.998073px;}
.y16c{bottom:147.526822px;}
.y98{bottom:150.915298px;}
.y89{bottom:150.915344px;}
.yda{bottom:152.064308px;}
.yce{bottom:152.235260px;}
.y105{bottom:152.235306px;}
.y53{bottom:158.044059px;}
.y4d{bottom:159.961349px;}
.y1ee{bottom:161.596823px;}
.y1ac{bottom:161.819567px;}
.y270{bottom:161.979275px;}
.y22f{bottom:161.979307px;}
.y2b2{bottom:161.992073px;}
.y16b{bottom:162.520822px;}
.y135{bottom:163.508556px;}
.y97{bottom:169.665298px;}
.y88{bottom:169.665344px;}
.yd9{bottom:170.814308px;}
.ycd{bottom:170.985260px;}
.y104{bottom:170.985306px;}
.y52{bottom:173.038059px;}
.y1ed{bottom:176.590823px;}
.y1ab{bottom:176.813567px;}
.y26f{bottom:176.973275px;}
.y22e{bottom:176.973307px;}
.y2b1{bottom:176.986073px;}
.y16a{bottom:177.514822px;}
.y134{bottom:178.502556px;}
.y4c{bottom:178.711349px;}
.y96{bottom:188.415298px;}
.y87{bottom:188.415344px;}
.yd8{bottom:189.564308px;}
.ycc{bottom:189.735260px;}
.y103{bottom:189.735306px;}
.y1ec{bottom:191.584823px;}
.y1aa{bottom:191.807567px;}
.y26e{bottom:191.967275px;}
.y22d{bottom:191.967307px;}
.y2b0{bottom:191.980073px;}
.y169{bottom:192.508822px;}
.y51{bottom:195.580059px;}
.y19{bottom:196.933500px;}
.y4b{bottom:197.461349px;}
.y1eb{bottom:206.578823px;}
.y1a9{bottom:206.801567px;}
.y26d{bottom:206.961275px;}
.y22c{bottom:206.961307px;}
.y2af{bottom:206.974073px;}
.y95{bottom:207.165298px;}
.y86{bottom:207.165344px;}
.y168{bottom:207.502822px;}
.yd7{bottom:208.314308px;}
.ycb{bottom:208.485260px;}
.y102{bottom:208.485306px;}
.y133{bottom:208.503306px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y50{bottom:210.574059px;}
.y4a{bottom:216.211349px;}
.y1ea{bottom:221.572823px;}
.y1a8{bottom:221.795567px;}
.y26c{bottom:221.955275px;}
.y22b{bottom:221.955307px;}
.y2ae{bottom:221.968073px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y167{bottom:222.496822px;}
.y132{bottom:223.497306px;}
.y94{bottom:225.915298px;}
.y85{bottom:225.915344px;}
.yd6{bottom:227.064308px;}
.yca{bottom:227.235260px;}
.y101{bottom:227.235306px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y49{bottom:234.961349px;}
.y1e9{bottom:236.566823px;}
.y1a7{bottom:236.789567px;}
.y26b{bottom:236.949275px;}
.y22a{bottom:236.949307px;}
.y2ad{bottom:236.962073px;}
.y166{bottom:237.490822px;}
.y131{bottom:238.491306px;}
.y93{bottom:244.665298px;}
.y84{bottom:244.665344px;}
.yd5{bottom:245.814308px;}
.yc9{bottom:245.985260px;}
.y100{bottom:245.985306px;}
.y1e8{bottom:251.560823px;}
.y1a6{bottom:251.783567px;}
.y26a{bottom:251.943275px;}
.y229{bottom:251.943307px;}
.y2ac{bottom:251.956073px;}
.y165{bottom:252.484822px;}
.y130{bottom:253.485306px;}
.y47{bottom:253.711349px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y92{bottom:263.415298px;}
.y83{bottom:263.415344px;}
.yd4{bottom:264.564308px;}
.yc8{bottom:264.735260px;}
.yff{bottom:264.735306px;}
.y1e7{bottom:266.554823px;}
.y1a5{bottom:266.777567px;}
.y269{bottom:266.937275px;}
.y228{bottom:266.937307px;}
.y2ab{bottom:266.950073px;}
.y164{bottom:267.478822px;}
.y46{bottom:272.461349px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1e6{bottom:281.548823px;}
.y1a4{bottom:281.771567px;}
.y268{bottom:281.931275px;}
.y227{bottom:281.931307px;}
.y2aa{bottom:281.944073px;}
.y91{bottom:282.165298px;}
.y82{bottom:282.165344px;}
.y163{bottom:282.472822px;}
.yd3{bottom:283.314308px;}
.yc7{bottom:283.485260px;}
.yfe{bottom:283.485306px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y45{bottom:291.211349px;}
.y1e5{bottom:296.542823px;}
.y1a3{bottom:296.765567px;}
.y267{bottom:296.925275px;}
.y226{bottom:296.925307px;}
.y2a9{bottom:296.938073px;}
.y162{bottom:297.466822px;}
.y90{bottom:300.915298px;}
.y81{bottom:300.915344px;}
.yd2{bottom:302.064308px;}
.yc6{bottom:302.235260px;}
.yfd{bottom:302.235306px;}
.y44{bottom:309.961349px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1e4{bottom:311.536823px;}
.y1a2{bottom:311.759567px;}
.y266{bottom:311.919275px;}
.y225{bottom:311.919307px;}
.y2a8{bottom:311.932073px;}
.y161{bottom:312.460822px;}
.y8f{bottom:319.665298px;}
.y80{bottom:319.665344px;}
.yd1{bottom:320.814308px;}
.yc5{bottom:320.985260px;}
.yfc{bottom:320.985306px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1e3{bottom:326.530823px;}
.y1a1{bottom:326.753567px;}
.y265{bottom:326.913275px;}
.y224{bottom:326.913307px;}
.y2a7{bottom:326.926073px;}
.y160{bottom:327.454822px;}
.y43{bottom:328.711349px;}
.y8e{bottom:338.415298px;}
.y7f{bottom:338.415344px;}
.yc4{bottom:339.735260px;}
.y12f{bottom:339.735306px;}
.y1e2{bottom:341.524823px;}
.y1a0{bottom:341.747567px;}
.y264{bottom:341.907275px;}
.y223{bottom:341.907307px;}
.y2a6{bottom:341.920073px;}
.y15f{bottom:342.448822px;}
.y42{bottom:347.461349px;}
.y10{bottom:348.133500px;}
.y1e1{bottom:356.518823px;}
.y19f{bottom:356.741567px;}
.y263{bottom:356.901275px;}
.y222{bottom:356.901307px;}
.y2a5{bottom:356.914073px;}
.y8d{bottom:357.165298px;}
.y7e{bottom:357.165344px;}
.y15e{bottom:357.442822px;}
.yfb{bottom:358.479306px;}
.yc3{bottom:358.485260px;}
.y12e{bottom:358.485306px;}
.y41{bottom:366.211349px;}
.y1e0{bottom:371.512823px;}
.y19e{bottom:371.735567px;}
.y262{bottom:371.895275px;}
.y221{bottom:371.895307px;}
.y2a4{bottom:371.908073px;}
.y15d{bottom:372.436822px;}
.y7d{bottom:375.915344px;}
.yc2{bottom:377.235260px;}
.yfa{bottom:377.235306px;}
.y40{bottom:384.961349px;}
.y1df{bottom:386.506823px;}
.y19d{bottom:386.729567px;}
.yf{bottom:386.785499px;}
.y261{bottom:386.889275px;}
.y220{bottom:386.889307px;}
.y2a3{bottom:386.902073px;}
.y15c{bottom:387.430822px;}
.y8c{bottom:394.665298px;}
.y7c{bottom:394.665344px;}
.yc1{bottom:395.985260px;}
.y12d{bottom:395.985306px;}
.y1de{bottom:401.500823px;}
.y19c{bottom:401.723567px;}
.y260{bottom:401.883275px;}
.y21f{bottom:401.883307px;}
.y2a2{bottom:401.896073px;}
.y15b{bottom:402.424822px;}
.y3f{bottom:403.711349px;}
.ye{bottom:408.044999px;}
.y7b{bottom:413.415344px;}
.yc0{bottom:414.735260px;}
.y12c{bottom:414.735306px;}
.y1dd{bottom:416.494823px;}
.y19b{bottom:416.717567px;}
.y25f{bottom:416.877275px;}
.y21e{bottom:416.877307px;}
.y2a1{bottom:416.890073px;}
.y15a{bottom:417.418822px;}
.y3e{bottom:422.461349px;}
.y1dc{bottom:431.488823px;}
.y19a{bottom:431.711567px;}
.y25e{bottom:431.871275px;}
.y21d{bottom:431.871307px;}
.y2a0{bottom:431.884073px;}
.y7a{bottom:432.165344px;}
.y159{bottom:432.412822px;}
.ybf{bottom:433.485260px;}
.y12b{bottom:433.485306px;}
.y3d{bottom:441.211349px;}
.y1db{bottom:446.482823px;}
.y199{bottom:446.705567px;}
.y25d{bottom:446.865275px;}
.y21c{bottom:446.865307px;}
.y29f{bottom:446.878073px;}
.y158{bottom:447.406822px;}
.y79{bottom:450.915344px;}
.ybe{bottom:452.235260px;}
.y12a{bottom:452.235306px;}
.y3c{bottom:459.961349px;}
.y1da{bottom:461.476823px;}
.y198{bottom:461.699567px;}
.y25c{bottom:461.859275px;}
.y21b{bottom:461.859307px;}
.y29e{bottom:461.872073px;}
.y157{bottom:462.400822px;}
.y78{bottom:469.665344px;}
.ybd{bottom:470.985260px;}
.y129{bottom:470.985306px;}
.y1d9{bottom:476.470823px;}
.y197{bottom:476.693567px;}
.y25b{bottom:476.853275px;}
.y21a{bottom:476.853307px;}
.y29d{bottom:476.866073px;}
.y156{bottom:477.394822px;}
.y48{bottom:478.711349px;}
.y77{bottom:488.415344px;}
.ybc{bottom:489.735260px;}
.y128{bottom:489.735306px;}
.y1d8{bottom:491.464823px;}
.y196{bottom:491.687567px;}
.y25a{bottom:491.847275px;}
.y219{bottom:491.847307px;}
.y29c{bottom:491.860073px;}
.y155{bottom:492.388822px;}
.y3b{bottom:497.461349px;}
.yd{bottom:502.864502px;}
.y1d7{bottom:506.458823px;}
.y195{bottom:506.681567px;}
.y259{bottom:506.841275px;}
.y218{bottom:506.841307px;}
.y29b{bottom:506.854073px;}
.y76{bottom:507.165344px;}
.y154{bottom:507.382822px;}
.ybb{bottom:508.485260px;}
.y127{bottom:508.485306px;}
.yc{bottom:520.864502px;}
.y1d6{bottom:521.452823px;}
.y194{bottom:521.675567px;}
.y258{bottom:521.835275px;}
.y217{bottom:521.835307px;}
.y29a{bottom:521.848073px;}
.y153{bottom:522.376822px;}
.y75{bottom:525.915344px;}
.yba{bottom:527.235260px;}
.y126{bottom:527.235306px;}
.y1d5{bottom:536.446823px;}
.y193{bottom:536.669567px;}
.y257{bottom:536.829275px;}
.y216{bottom:536.829307px;}
.y299{bottom:536.842073px;}
.y152{bottom:537.370822px;}
.yb{bottom:538.864499px;}
.y74{bottom:544.665344px;}
.yb9{bottom:545.985260px;}
.y125{bottom:545.985306px;}
.y1d4{bottom:551.440823px;}
.y192{bottom:551.663567px;}
.y256{bottom:551.823275px;}
.y215{bottom:551.823307px;}
.y298{bottom:551.836073px;}
.y151{bottom:552.364822px;}
.y3a{bottom:553.711395px;}
.ya{bottom:556.864499px;}
.y73{bottom:563.415344px;}
.yb8{bottom:564.735260px;}
.y124{bottom:564.735306px;}
.y1d3{bottom:566.434823px;}
.y191{bottom:566.657567px;}
.y255{bottom:566.817275px;}
.y214{bottom:566.817307px;}
.y297{bottom:566.830073px;}
.y150{bottom:567.358822px;}
.y1d2{bottom:581.428823px;}
.y190{bottom:581.651567px;}
.y254{bottom:581.811275px;}
.y213{bottom:581.811307px;}
.y296{bottom:581.824073px;}
.y72{bottom:582.165344px;}
.y14f{bottom:582.352822px;}
.yb7{bottom:583.485260px;}
.y123{bottom:583.485306px;}
.y39{bottom:591.211395px;}
.y1d1{bottom:596.422823px;}
.y18f{bottom:596.645567px;}
.y253{bottom:596.805275px;}
.y212{bottom:596.805307px;}
.y295{bottom:596.818073px;}
.y14e{bottom:597.346822px;}
.y71{bottom:600.915344px;}
.yb6{bottom:602.235260px;}
.y122{bottom:602.235306px;}
.y38{bottom:609.961395px;}
.y1d0{bottom:611.416823px;}
.y18e{bottom:611.639567px;}
.y252{bottom:611.799275px;}
.y211{bottom:611.799307px;}
.y294{bottom:611.812073px;}
.y14d{bottom:612.340822px;}
.y70{bottom:619.665344px;}
.yb5{bottom:620.985260px;}
.y121{bottom:620.985306px;}
.yf9{bottom:624.775526px;}
.y1cf{bottom:626.410823px;}
.y18d{bottom:626.633567px;}
.y251{bottom:626.793275px;}
.y210{bottom:626.793307px;}
.y293{bottom:626.806073px;}
.y14c{bottom:627.334822px;}
.y37{bottom:628.711395px;}
.y6f{bottom:638.415344px;}
.yb4{bottom:639.735260px;}
.y120{bottom:639.735306px;}
.yf8{bottom:639.769526px;}
.y1ce{bottom:641.404823px;}
.y18c{bottom:641.627567px;}
.y250{bottom:641.787275px;}
.y20f{bottom:641.787307px;}
.y292{bottom:641.800073px;}
.y14b{bottom:642.328822px;}
.y9{bottom:645.510000px;}
.y36{bottom:647.461395px;}
.y1cd{bottom:656.398823px;}
.y18b{bottom:656.621567px;}
.y24f{bottom:656.781275px;}
.y20e{bottom:656.781307px;}
.y291{bottom:656.794073px;}
.y6e{bottom:657.165344px;}
.y14a{bottom:657.322822px;}
.yb3{bottom:658.485260px;}
.y11f{bottom:658.485306px;}
.y35{bottom:666.211395px;}
.y8{bottom:666.771000px;}
.y1cc{bottom:671.392823px;}
.y18a{bottom:671.615567px;}
.y24e{bottom:671.775275px;}
.y20d{bottom:671.775307px;}
.y290{bottom:671.788073px;}
.y149{bottom:672.316822px;}
.y6d{bottom:675.915344px;}
.yb2{bottom:677.235260px;}
.y11e{bottom:677.235306px;}
.y34{bottom:684.961395px;}
.y1cb{bottom:686.386823px;}
.y189{bottom:686.609567px;}
.y24d{bottom:686.769275px;}
.y20c{bottom:686.769307px;}
.y28f{bottom:686.782073px;}
.y148{bottom:687.310822px;}
.yde{bottom:689.867594px;}
.y6c{bottom:694.665344px;}
.yb1{bottom:695.985260px;}
.y11d{bottom:695.985306px;}
.y1ca{bottom:701.380823px;}
.y188{bottom:701.603567px;}
.y24c{bottom:701.763275px;}
.y20b{bottom:701.763307px;}
.y28e{bottom:701.776073px;}
.y33{bottom:703.711395px;}
.y6b{bottom:713.415344px;}
.yb0{bottom:714.735260px;}
.y11c{bottom:714.735306px;}
.y1c9{bottom:716.374823px;}
.y187{bottom:716.597567px;}
.y24b{bottom:716.757275px;}
.y20a{bottom:716.757307px;}
.y28d{bottom:716.770073px;}
.yf7{bottom:718.309524px;}
.y147{bottom:721.060822px;}
.y32{bottom:722.461395px;}
.y7{bottom:726.298500px;}
.y1c8{bottom:731.368823px;}
.y186{bottom:731.591567px;}
.y24a{bottom:731.751275px;}
.y209{bottom:731.751307px;}
.y28c{bottom:731.764073px;}
.y6a{bottom:732.165344px;}
.yaf{bottom:733.485260px;}
.y11b{bottom:733.485306px;}
.yf6{bottom:737.103024px;}
.y31{bottom:741.211395px;}
.y1c7{bottom:746.362823px;}
.y185{bottom:746.585567px;}
.y249{bottom:746.745275px;}
.y208{bottom:746.745307px;}
.y28b{bottom:746.758073px;}
.y69{bottom:750.915344px;}
.yae{bottom:752.235260px;}
.y11a{bottom:752.235306px;}
.y3{bottom:752.599495px;}
.yf5{bottom:755.820024px;}
.y30{bottom:759.961395px;}
.y1c6{bottom:761.356823px;}
.y184{bottom:761.579567px;}
.y248{bottom:761.739275px;}
.y207{bottom:761.739307px;}
.y28a{bottom:761.752073px;}
.y68{bottom:769.665344px;}
.yad{bottom:770.985260px;}
.y119{bottom:770.985306px;}
.yf4{bottom:774.537024px;}
.y1c5{bottom:776.350823px;}
.y183{bottom:776.573567px;}
.y247{bottom:776.733275px;}
.y206{bottom:776.733307px;}
.y289{bottom:776.746073px;}
.yf3{bottom:778.170774px;}
.y2f{bottom:778.711395px;}
.y67{bottom:788.415344px;}
.yac{bottom:789.735260px;}
.y118{bottom:789.735306px;}
.y1c4{bottom:791.344823px;}
.y182{bottom:791.567567px;}
.y246{bottom:791.727275px;}
.y205{bottom:791.727307px;}
.y288{bottom:791.740073px;}
.yf2{bottom:793.164774px;}
.y146{bottom:796.123842px;}
.y2e{bottom:797.461395px;}
.y1c3{bottom:806.338823px;}
.y181{bottom:806.561567px;}
.y245{bottom:806.721275px;}
.y204{bottom:806.721307px;}
.y287{bottom:806.734073px;}
.y66{bottom:807.165344px;}
.yab{bottom:808.485260px;}
.y117{bottom:808.485306px;}
.y145{bottom:811.117842px;}
.yf1{bottom:811.958274px;}
.y2d{bottom:816.211395px;}
.y1c2{bottom:821.332823px;}
.y180{bottom:821.555567px;}
.y244{bottom:821.715275px;}
.y203{bottom:821.715307px;}
.y286{bottom:821.728073px;}
.y65{bottom:825.915344px;}
.y144{bottom:826.111842px;}
.yaa{bottom:827.235260px;}
.y116{bottom:827.235306px;}
.yf0{bottom:830.675274px;}
.y2c{bottom:834.961395px;}
.y1c1{bottom:836.326823px;}
.y17f{bottom:836.549567px;}
.y243{bottom:836.709275px;}
.y202{bottom:836.709307px;}
.y285{bottom:836.722073px;}
.y143{bottom:841.105842px;}
.y64{bottom:844.665344px;}
.ya9{bottom:845.985260px;}
.y115{bottom:845.985306px;}
.yef{bottom:849.392274px;}
.y1c0{bottom:851.320823px;}
.y17e{bottom:851.543567px;}
.y242{bottom:851.703275px;}
.y201{bottom:851.703307px;}
.y284{bottom:851.716073px;}
.y142{bottom:856.099842px;}
.y63{bottom:863.415344px;}
.ya8{bottom:864.735260px;}
.y114{bottom:864.735306px;}
.y1bf{bottom:866.314823px;}
.y17d{bottom:866.537567px;}
.y241{bottom:866.697275px;}
.y200{bottom:866.697307px;}
.y283{bottom:866.710073px;}
.yee{bottom:868.109274px;}
.y141{bottom:871.093842px;}
.yed{bottom:871.819524px;}
.y2b{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y1be{bottom:881.308823px;}
.y17c{bottom:881.531567px;}
.y240{bottom:881.691275px;}
.y1ff{bottom:881.691307px;}
.y282{bottom:881.704073px;}
.y62{bottom:882.165344px;}
.ya7{bottom:883.485260px;}
.y113{bottom:883.485306px;}
.y140{bottom:886.087842px;}
.yec{bottom:886.813524px;}
.y2a{bottom:894.138153px;}
.y1bd{bottom:896.302823px;}
.y17b{bottom:896.525567px;}
.y23f{bottom:896.685275px;}
.y1fe{bottom:896.685307px;}
.y281{bottom:896.698073px;}
.y61{bottom:900.915344px;}
.y13f{bottom:901.081842px;}
.ya6{bottom:902.235260px;}
.y112{bottom:902.235306px;}
.yeb{bottom:905.530524px;}
.y1bc{bottom:911.296823px;}
.y17a{bottom:911.519567px;}
.y23e{bottom:911.679275px;}
.y1fd{bottom:911.679307px;}
.y280{bottom:911.692073px;}
.y13e{bottom:916.075842px;}
.y60{bottom:919.665344px;}
.ya5{bottom:920.985260px;}
.y111{bottom:920.985306px;}
.yea{bottom:924.247524px;}
.y1bb{bottom:926.290823px;}
.y179{bottom:926.513567px;}
.y23d{bottom:926.673275px;}
.y1fc{bottom:926.673307px;}
.y27f{bottom:926.686073px;}
.y13d{bottom:931.069842px;}
.ye8{bottom:931.680774px;}
.y29{bottom:936.738190px;}
.y5f{bottom:938.415344px;}
.ya4{bottom:939.735260px;}
.y110{bottom:939.735306px;}
.y1ba{bottom:941.284823px;}
.y178{bottom:941.507567px;}
.y23c{bottom:941.667275px;}
.y1fb{bottom:941.667307px;}
.y27e{bottom:941.680073px;}
.ye9{bottom:942.964524px;}
.y13c{bottom:946.063842px;}
.ye7{bottom:946.674774px;}
.y1b9{bottom:956.278823px;}
.y177{bottom:956.501567px;}
.y23b{bottom:956.661275px;}
.y1fa{bottom:956.661307px;}
.y27d{bottom:956.674073px;}
.y5e{bottom:957.165344px;}
.ya3{bottom:958.485260px;}
.y10f{bottom:958.485306px;}
.y13b{bottom:961.057842px;}
.ye6{bottom:961.668774px;}
.y1{bottom:966.726000px;}
.y1b8{bottom:971.272823px;}
.y176{bottom:971.495567px;}
.y23a{bottom:971.655275px;}
.y1f9{bottom:971.655307px;}
.y27c{bottom:971.668073px;}
.y5d{bottom:975.915344px;}
.ya2{bottom:977.235260px;}
.y10e{bottom:977.235306px;}
.ye5{bottom:980.385774px;}
.y28{bottom:981.424622px;}
.y1b7{bottom:986.266823px;}
.y175{bottom:986.489567px;}
.y239{bottom:986.649275px;}
.y1f8{bottom:986.649307px;}
.y27b{bottom:986.662073px;}
.y5c{bottom:994.665344px;}
.ya1{bottom:995.985260px;}
.y10d{bottom:995.985306px;}
.y13a{bottom:998.542842px;}
.ye4{bottom:999.102774px;}
.y2ba{bottom:1000.138844px;}
.y1b6{bottom:1001.260823px;}
.y174{bottom:1001.483567px;}
.y238{bottom:1001.643275px;}
.y1f7{bottom:1001.643307px;}
.y27a{bottom:1001.656073px;}
.ye2{bottom:1006.536024px;}
.y27{bottom:1008.424622px;}
.y5b{bottom:1013.415344px;}
.ya0{bottom:1014.735260px;}
.y10c{bottom:1014.735306px;}
.y2b9{bottom:1015.132844px;}
.y1b5{bottom:1016.254823px;}
.y173{bottom:1016.477567px;}
.y237{bottom:1016.637275px;}
.y1f6{bottom:1016.637307px;}
.y279{bottom:1016.650073px;}
.ye3{bottom:1017.819774px;}
.ye1{bottom:1021.530024px;}
.y139{bottom:1028.543592px;}
.y2b8{bottom:1030.126844px;}
.y1b4{bottom:1031.248823px;}
.y172{bottom:1031.471567px;}
.y236{bottom:1031.631275px;}
.y1f5{bottom:1031.631307px;}
.y278{bottom:1031.644073px;}
.y5a{bottom:1032.165344px;}
.y9f{bottom:1033.485260px;}
.y10b{bottom:1033.485306px;}
.ye0{bottom:1036.524024px;}
.y2b7{bottom:1045.120844px;}
.y1b3{bottom:1046.242823px;}
.y171{bottom:1046.465567px;}
.y235{bottom:1046.625275px;}
.y1f4{bottom:1046.625307px;}
.y277{bottom:1046.638073px;}
.y59{bottom:1050.915344px;}
.y9e{bottom:1052.235260px;}
.y10a{bottom:1052.235306px;}
.y138{bottom:1058.544342px;}
.y2b6{bottom:1060.114844px;}
.y1b2{bottom:1061.236823px;}
.y170{bottom:1061.459567px;}
.y234{bottom:1061.619275px;}
.y1f3{bottom:1061.619307px;}
.y276{bottom:1061.632073px;}
.ydf{bottom:1064.612274px;}
.y58{bottom:1069.665344px;}
.y9d{bottom:1070.985260px;}
.y109{bottom:1070.985306px;}
.y2b5{bottom:1075.108844px;}
.y2bc{bottom:1075.147094px;}
.y26{bottom:1076.132080px;}
.y1b1{bottom:1076.230823px;}
.y16f{bottom:1076.453567px;}
.y233{bottom:1076.613275px;}
.y1f2{bottom:1076.613307px;}
.y275{bottom:1076.626073px;}
.y57{bottom:1088.415344px;}
.y137{bottom:1088.544342px;}
.y9c{bottom:1089.735260px;}
.y108{bottom:1089.735306px;}
.ydd{bottom:1090.102844px;}
.y2bb{bottom:1090.141094px;}
.y1b0{bottom:1091.224823px;}
.y16e{bottom:1091.447567px;}
.y232{bottom:1091.607275px;}
.y1f1{bottom:1091.607307px;}
.y274{bottom:1091.620073px;}
.y25{bottom:1109.586556px;}
.y24{bottom:1126.582306px;}
.y56{bottom:1127.482361px;}
.y9b{bottom:1127.482544px;}
.h15{height:31.130399px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h14{height:44.472000px;}
.hb{height:44.676000px;}
.h16{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h17{height:52.173000px;}
.h10{height:52.320000px;}
.h11{height:53.160000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h18{height:59.004000px;}
.hf{height:59.340000px;}
.h13{height:61.380000px;}
.he{height:64.866000px;}
.h12{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.xb{left:93.545399px;}
.xa{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:107.390402px;}
.x4{left:203.484001px;}
.xe{left:223.976398px;}
.xd{left:444.704398px;}
.x3{left:454.959000px;}
.x8{left:459.215389px;}
.x9{left:476.225389px;}
.xf{left:489.966891px;}
.x5{left:728.220612px;}
.xc{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls9c{letter-spacing:-3.082667pt;}
.ls9d{letter-spacing:-2.992000pt;}
.ls30{letter-spacing:-0.426667pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls8a{letter-spacing:-0.362667pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls72{letter-spacing:-0.317333pt;}
.ls75{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls74{letter-spacing:-0.226667pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls73{letter-spacing:-0.181333pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls89{letter-spacing:-0.136000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls88{letter-spacing:-0.090667pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls87{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.026667pt;}
.ls4e{letter-spacing:0.045333pt;}
.ls20{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.090667pt;}
.lse{letter-spacing:0.106667pt;}
.ls3e{letter-spacing:0.133333pt;}
.ls85{letter-spacing:0.136000pt;}
.ls14{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.181333pt;}
.ls21{letter-spacing:0.186667pt;}
.ls93{letter-spacing:0.204000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.226667pt;}
.ls4d{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.240000pt;}
.ls99{letter-spacing:0.249333pt;}
.ls52{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls49{letter-spacing:0.272000pt;}
.ls2d{letter-spacing:0.293333pt;}
.ls6e{letter-spacing:0.299195pt;}
.ls4f{letter-spacing:0.317333pt;}
.ls1f{letter-spacing:0.320000pt;}
.lsa2{letter-spacing:0.340000pt;}
.ls22{letter-spacing:0.346667pt;}
.ls56{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls3d{letter-spacing:0.400000pt;}
.ls50{letter-spacing:0.408000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls98{letter-spacing:0.430667pt;}
.ls57{letter-spacing:0.453333pt;}
.ls91{letter-spacing:0.476000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls47{letter-spacing:0.498667pt;}
.ls9a{letter-spacing:0.503182pt;}
.ls45{letter-spacing:0.506667pt;}
.ls8f{letter-spacing:0.521333pt;}
.ls12{letter-spacing:0.533333pt;}
.ls7b{letter-spacing:0.544000pt;}
.ls1b{letter-spacing:0.560000pt;}
.ls9f{letter-spacing:0.566667pt;}
.lsb{letter-spacing:0.586667pt;}
.ls53{letter-spacing:0.589333pt;}
.ls31{letter-spacing:0.613333pt;}
.ls48{letter-spacing:0.634667pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls96{letter-spacing:0.675438pt;}
.ls5c{letter-spacing:0.680000pt;}
.lsd{letter-spacing:0.693333pt;}
.ls2a{letter-spacing:0.720000pt;}
.ls5d{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.lsa0{letter-spacing:0.748000pt;}
.ls59{letter-spacing:0.770667pt;}
.ls39{letter-spacing:0.773333pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.816000pt;}
.ls34{letter-spacing:0.826667pt;}
.ls81{letter-spacing:0.834133pt;}
.ls13{letter-spacing:0.853333pt;}
.ls4a{letter-spacing:0.861333pt;}
.ls2b{letter-spacing:0.880000pt;}
.lsc{letter-spacing:0.906667pt;}
.lsa5{letter-spacing:0.911179pt;}
.lsa1{letter-spacing:0.915733pt;}
.ls54{letter-spacing:0.924800pt;}
.ls69{letter-spacing:0.952000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:0.997333pt;}
.ls94{letter-spacing:1.001867pt;}
.ls29{letter-spacing:1.013333pt;}
.ls6c{letter-spacing:1.042667pt;}
.ls8{letter-spacing:1.066667pt;}
.ls90{letter-spacing:1.083467pt;}
.ls5e{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls4c{letter-spacing:1.133333pt;}
.ls36{letter-spacing:1.146667pt;}
.ls8c{letter-spacing:1.156000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.178667pt;}
.ls86{letter-spacing:1.183200pt;}
.ls10{letter-spacing:1.200000pt;}
.ls83{letter-spacing:1.224000pt;}
.ls2f{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.246667pt;}
.ls46{letter-spacing:1.253333pt;}
.ls6f{letter-spacing:1.269333pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.306667pt;}
.ls7d{letter-spacing:1.314667pt;}
.ls28{letter-spacing:1.333333pt;}
.ls60{letter-spacing:1.360000pt;}
.ls92{letter-spacing:1.369067pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.405333pt;}
.ls7e{letter-spacing:1.428000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls63{letter-spacing:1.450667pt;}
.ls43{letter-spacing:1.493333pt;}
.ls84{letter-spacing:1.496000pt;}
.ls7c{letter-spacing:1.541333pt;}
.lsa{letter-spacing:1.546667pt;}
.ls61{letter-spacing:1.564000pt;}
.ls76{letter-spacing:1.586667pt;}
.ls40{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.626667pt;}
.ls38{letter-spacing:1.653333pt;}
.ls9e{letter-spacing:1.677333pt;}
.ls3b{letter-spacing:1.706667pt;}
.ls97{letter-spacing:1.713583pt;}
.ls6b{letter-spacing:1.722667pt;}
.ls58{letter-spacing:1.740800pt;}
.ls44{letter-spacing:1.760000pt;}
.ls65{letter-spacing:1.790667pt;}
.ls3c{letter-spacing:1.813333pt;}
.ls6a{letter-spacing:1.822400pt;}
.lsa3{letter-spacing:1.831467pt;}
.ls8d{letter-spacing:1.858667pt;}
.ls80{letter-spacing:1.863200pt;}
.ls6d{letter-spacing:1.872267pt;}
.ls55{letter-spacing:1.904000pt;}
.ls41{letter-spacing:1.973333pt;}
.ls79{letter-spacing:2.040000pt;}
.ls42{letter-spacing:2.080000pt;}
.ls78{letter-spacing:2.085333pt;}
.ls8b{letter-spacing:2.198649pt;}
.ls64{letter-spacing:2.425333pt;}
.lsa6{letter-spacing:2.479696pt;}
.ls95{letter-spacing:2.583995pt;}
.ls68{letter-spacing:2.747200pt;}
.ls70{letter-spacing:3.304800pt;}
.ls1{letter-spacing:3.546667pt;}
.lsa4{letter-spacing:3.626667pt;}
.ls7f{letter-spacing:3.672000pt;}
.ls5b{letter-spacing:4.075467pt;}
.ls62{letter-spacing:4.216000pt;}
.ls82{letter-spacing:4.311200pt;}
.lsa8{letter-spacing:4.451733pt;}
.ls5f{letter-spacing:5.095467pt;}
.ls9b{letter-spacing:5.789061pt;}
.lsa7{letter-spacing:6.464533pt;}
.ls8e{letter-spacing:6.976794pt;}
.ls7a{letter-spacing:7.869855pt;}
.ls2{letter-spacing:35.635741pt;}
.ls32{letter-spacing:63.512000pt;}
.ls33{letter-spacing:66.640000pt;}
.ws6b{word-spacing:-45.333333pt;}
.ws47{word-spacing:-14.400000pt;}
.ws86{word-spacing:-14.293333pt;}
.ws7e{word-spacing:-14.186667pt;}
.ws7f{word-spacing:-14.160000pt;}
.ws85{word-spacing:-14.106667pt;}
.ws84{word-spacing:-13.973333pt;}
.ws8{word-spacing:-13.920000pt;}
.ws61{word-spacing:-13.813333pt;}
.ws62{word-spacing:-13.760000pt;}
.ws46{word-spacing:-13.706667pt;}
.ws72{word-spacing:-13.653333pt;}
.ws28{word-spacing:-13.600000pt;}
.wsc9{word-spacing:-13.418667pt;}
.ws49{word-spacing:-13.386667pt;}
.ws29{word-spacing:-13.333333pt;}
.ws48{word-spacing:-13.280000pt;}
.ws9c{word-spacing:-13.184000pt;}
.ws60{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.928000pt;}
.ws9e{word-spacing:-12.897333pt;}
.wsca{word-spacing:-12.761333pt;}
.wsa0{word-spacing:-12.602667pt;}
.ws9f{word-spacing:-12.194667pt;}
.wsa1{word-spacing:-12.104000pt;}
.wse1{word-spacing:-11.968000pt;}
.ws9d{word-spacing:-11.560000pt;}
.wse0{word-spacing:-11.537333pt;}
.ws9b{word-spacing:-11.424000pt;}
.ws6c{word-spacing:-11.333333pt;}
.wsf1{word-spacing:-11.288000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws8f{word-spacing:-9.565333pt;}
.ws2{word-spacing:-8.885333pt;}
.ws4{word-spacing:-7.728000pt;}
.wscd{word-spacing:-2.040000pt;}
.wsa{word-spacing:-1.920000pt;}
.ws2a{word-spacing:-1.632000pt;}
.wsbe{word-spacing:-1.586667pt;}
.wsd6{word-spacing:-1.541333pt;}
.ws93{word-spacing:-1.493333pt;}
.wse6{word-spacing:-1.450667pt;}
.ws8c{word-spacing:-1.440000pt;}
.ws77{word-spacing:-1.386667pt;}
.wsfa{word-spacing:-1.360000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws30{word-spacing:-1.280000pt;}
.ws33{word-spacing:-1.226667pt;}
.wsfe{word-spacing:-1.224000pt;}
.wsd7{word-spacing:-1.178667pt;}
.ws45{word-spacing:-1.173333pt;}
.wsa4{word-spacing:-1.133333pt;}
.ws37{word-spacing:-1.120000pt;}
.wsbc{word-spacing:-1.088000pt;}
.ws21{word-spacing:-1.066667pt;}
.wsc7{word-spacing:-1.042667pt;}
.ws78{word-spacing:-1.013333pt;}
.wsb2{word-spacing:-0.997333pt;}
.wsd{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.952000pt;}
.ws15{word-spacing:-0.906667pt;}
.wsa3{word-spacing:-0.861333pt;}
.ws4c{word-spacing:-0.853333pt;}
.wsb5{word-spacing:-0.816000pt;}
.ws73{word-spacing:-0.800000pt;}
.wsc4{word-spacing:-0.770667pt;}
.ws44{word-spacing:-0.746667pt;}
.wsb8{word-spacing:-0.725333pt;}
.ws58{word-spacing:-0.693333pt;}
.wsa7{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsa8{word-spacing:-0.634667pt;}
.wsaa{word-spacing:-0.589333pt;}
.ws3b{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.544000pt;}
.wsf{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.ws97{word-spacing:-0.498667pt;}
.wse{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.453333pt;}
.ws69{word-spacing:-0.426667pt;}
.wsc5{word-spacing:-0.408000pt;}
.ws31{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.362667pt;}
.ws36{word-spacing:-0.320000pt;}
.wse8{word-spacing:-0.317333pt;}
.wsae{word-spacing:-0.272000pt;}
.ws16{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.234667pt;}
.ws99{word-spacing:-0.226667pt;}
.ws20{word-spacing:-0.213333pt;}
.wsf4{word-spacing:-0.181333pt;}
.wsc{word-spacing:-0.160000pt;}
.wsdc{word-spacing:-0.136000pt;}
.ws54{word-spacing:-0.106667pt;}
.wsb4{word-spacing:-0.090667pt;}
.ws42{word-spacing:-0.053333pt;}
.wsf8{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.045333pt;}
.ws2b{word-spacing:0.053333pt;}
.wsc1{word-spacing:0.090667pt;}
.ws38{word-spacing:0.106667pt;}
.wsf6{word-spacing:0.136000pt;}
.ws7b{word-spacing:0.160000pt;}
.wsdd{word-spacing:0.181333pt;}
.ws39{word-spacing:0.213333pt;}
.ws79{word-spacing:0.266667pt;}
.wsa9{word-spacing:0.272000pt;}
.wsda{word-spacing:0.317333pt;}
.ws67{word-spacing:0.320000pt;}
.wsce{word-spacing:0.362667pt;}
.ws34{word-spacing:0.373333pt;}
.ws57{word-spacing:0.426667pt;}
.ws59{word-spacing:0.480000pt;}
.ws5a{word-spacing:0.533333pt;}
.wseb{word-spacing:0.544000pt;}
.ws3c{word-spacing:0.586667pt;}
.wsd8{word-spacing:0.634667pt;}
.ws1a{word-spacing:0.640000pt;}
.wsb6{word-spacing:0.680000pt;}
.ws5c{word-spacing:0.693333pt;}
.wsea{word-spacing:0.725333pt;}
.ws4d{word-spacing:0.746667pt;}
.ws56{word-spacing:0.800000pt;}
.wsf7{word-spacing:0.816000pt;}
.ws68{word-spacing:0.853333pt;}
.wse3{word-spacing:0.861333pt;}
.ws4f{word-spacing:0.906667pt;}
.wsad{word-spacing:0.952000pt;}
.ws66{word-spacing:0.960000pt;}
.ws8e{word-spacing:1.013333pt;}
.wsa5{word-spacing:1.042667pt;}
.ws6a{word-spacing:1.066667pt;}
.ws94{word-spacing:1.088000pt;}
.ws96{word-spacing:1.133333pt;}
.ws12{word-spacing:1.173333pt;}
.wsf5{word-spacing:1.178667pt;}
.wsfb{word-spacing:1.224000pt;}
.ws35{word-spacing:1.226667pt;}
.wsab{word-spacing:1.269333pt;}
.ws19{word-spacing:1.280000pt;}
.ws10{word-spacing:1.333333pt;}
.wsc3{word-spacing:1.360000pt;}
.ws32{word-spacing:1.386667pt;}
.wsac{word-spacing:1.405333pt;}
.ws74{word-spacing:1.440000pt;}
.ws95{word-spacing:1.450667pt;}
.ws1f{word-spacing:1.493333pt;}
.wsf0{word-spacing:1.496000pt;}
.wsee{word-spacing:1.541333pt;}
.ws22{word-spacing:1.546667pt;}
.wsec{word-spacing:1.586667pt;}
.ws18{word-spacing:1.600000pt;}
.wse9{word-spacing:1.632000pt;}
.ws43{word-spacing:1.653333pt;}
.wsd2{word-spacing:1.677333pt;}
.ws2c{word-spacing:1.706667pt;}
.wsf2{word-spacing:1.722667pt;}
.ws52{word-spacing:1.760000pt;}
.wsd1{word-spacing:1.768000pt;}
.ws50{word-spacing:1.813333pt;}
.wsb9{word-spacing:1.858667pt;}
.ws53{word-spacing:1.866667pt;}
.wsc0{word-spacing:1.904000pt;}
.ws5d{word-spacing:1.920000pt;}
.wsc8{word-spacing:1.949333pt;}
.ws6f{word-spacing:1.973333pt;}
.wsde{word-spacing:1.994667pt;}
.ws2e{word-spacing:2.026667pt;}
.wsba{word-spacing:2.040000pt;}
.ws1e{word-spacing:2.080000pt;}
.wsc2{word-spacing:2.130667pt;}
.ws4e{word-spacing:2.133333pt;}
.ws3f{word-spacing:2.186667pt;}
.wsb0{word-spacing:2.221333pt;}
.ws24{word-spacing:2.240000pt;}
.wsd3{word-spacing:2.266667pt;}
.ws83{word-spacing:2.293333pt;}
.ws3d{word-spacing:2.346667pt;}
.ws25{word-spacing:2.400000pt;}
.wsbf{word-spacing:2.402667pt;}
.wsed{word-spacing:2.448000pt;}
.ws4b{word-spacing:2.453333pt;}
.wsfc{word-spacing:2.493333pt;}
.ws23{word-spacing:2.506667pt;}
.wsdb{word-spacing:2.538667pt;}
.ws70{word-spacing:2.560000pt;}
.ws17{word-spacing:2.613333pt;}
.wsb3{word-spacing:2.629333pt;}
.ws63{word-spacing:2.666667pt;}
.ws1b{word-spacing:2.720000pt;}
.wsd0{word-spacing:2.765333pt;}
.ws64{word-spacing:2.773333pt;}
.wscf{word-spacing:2.810667pt;}
.ws76{word-spacing:2.826667pt;}
.wsd9{word-spacing:2.856000pt;}
.ws1d{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.933333pt;}
.wsbd{word-spacing:2.946667pt;}
.ws80{word-spacing:2.986667pt;}
.wse4{word-spacing:2.992000pt;}
.wsf3{word-spacing:3.037333pt;}
.ws91{word-spacing:3.040000pt;}
.wse2{word-spacing:3.082667pt;}
.ws7a{word-spacing:3.093333pt;}
.ws65{word-spacing:3.146667pt;}
.wsff{word-spacing:3.173333pt;}
.ws4a{word-spacing:3.200000pt;}
.ws13{word-spacing:3.253333pt;}
.wsb1{word-spacing:3.264000pt;}
.ws55{word-spacing:3.306667pt;}
.wsdf{word-spacing:3.354667pt;}
.ws41{word-spacing:3.360000pt;}
.ws51{word-spacing:3.413333pt;}
.ws5e{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.626667pt;}
.ws71{word-spacing:3.680000pt;}
.ws87{word-spacing:3.733333pt;}
.wsbb{word-spacing:3.762667pt;}
.ws2d{word-spacing:3.786667pt;}
.ws98{word-spacing:3.808000pt;}
.ws7d{word-spacing:3.840000pt;}
.wsc6{word-spacing:3.853333pt;}
.ws8d{word-spacing:3.893333pt;}
.ws1c{word-spacing:4.000000pt;}
.wsd4{word-spacing:4.125333pt;}
.ws82{word-spacing:4.160000pt;}
.ws5f{word-spacing:4.213333pt;}
.wsef{word-spacing:4.261333pt;}
.ws5b{word-spacing:4.266667pt;}
.wsfd{word-spacing:4.306667pt;}
.ws2f{word-spacing:4.320000pt;}
.ws75{word-spacing:4.373333pt;}
.ws40{word-spacing:4.480000pt;}
.ws90{word-spacing:4.533333pt;}
.ws92{word-spacing:4.693333pt;}
.ws88{word-spacing:4.853333pt;}
.ws7c{word-spacing:5.120000pt;}
.wsf9{word-spacing:5.122667pt;}
.wsd5{word-spacing:5.213333pt;}
.ws8b{word-spacing:5.226667pt;}
.wscc{word-spacing:5.440000pt;}
.wscb{word-spacing:5.576000pt;}
.ws14{word-spacing:5.706667pt;}
.wse7{word-spacing:5.938667pt;}
.ws81{word-spacing:6.133333pt;}
.ws89{word-spacing:6.666667pt;}
.ws8a{word-spacing:7.200000pt;}
.wse5{word-spacing:7.570667pt;}
.ws100{word-spacing:12.013333pt;}
.ws101{word-spacing:15.640000pt;}
.ws26{word-spacing:64.237333pt;}
.ws6e{word-spacing:407.138659pt;}
.ws6d{word-spacing:435.970659pt;}
._a{margin-left:-64.600000pt;}
._6{margin-left:-14.733333pt;}
._3{margin-left:-5.286133pt;}
._1{margin-left:-4.109067pt;}
._4{margin-left:-2.512000pt;}
._0{margin-left:-1.450667pt;}
._2{width:0.921600pt;}
._5{width:1.962667pt;}
._c{width:3.205333pt;}
._26{width:4.669333pt;}
._22{width:6.779733pt;}
._24{width:7.752000pt;}
._23{width:9.610667pt;}
._25{width:12.421327pt;}
._d{width:13.795466pt;}
._7{width:16.320000pt;}
._15{width:33.531733pt;}
._9{width:48.552000pt;}
._8{width:64.237333pt;}
._14{width:136.181326pt;}
._16{width:161.341326pt;}
._1e{width:169.365333pt;}
._19{width:206.855992pt;}
._20{width:210.935992pt;}
._1f{width:212.994659pt;}
._13{width:217.055992pt;}
._1a{width:245.465067pt;}
._1d{width:256.087992pt;}
._10{width:273.949333pt;}
._17{width:286.053326pt;}
._1b{width:294.802659pt;}
._21{width:302.373326pt;}
._18{width:326.445326pt;}
._1c{width:345.186659pt;}
._e{width:349.429333pt;}
._12{width:350.517326pt;}
._11{width:397.346659pt;}
._f{width:555.514659pt;}
._b{width:2292.960076pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y55{bottom:100.389600pt;}
.y9a{bottom:100.813599pt;}
.y8b{bottom:100.813639pt;}
.ydc{bottom:101.834941pt;}
.yd0{bottom:101.986898pt;}
.y107{bottom:101.986938pt;}
.y273{bottom:103.657620pt;}
.y1af{bottom:103.855615pt;}
.y4f{bottom:108.854533pt;}
.y1f0{bottom:116.985620pt;}
.y1ae{bottom:117.183615pt;}
.y272{bottom:117.325578pt;}
.y231{bottom:117.325606pt;}
.y2b4{bottom:117.336954pt;}
.y99{bottom:117.480265pt;}
.y8a{bottom:117.480306pt;}
.y16d{bottom:117.806952pt;}
.y54{bottom:118.250936pt;}
.ydb{bottom:118.501607pt;}
.ycf{bottom:118.653564pt;}
.y106{bottom:118.653605pt;}
.y136{bottom:118.673605pt;}
.y22{bottom:123.790666pt;}
.y4e{bottom:125.521200pt;}
.y1ef{bottom:130.313620pt;}
.y1ad{bottom:130.511615pt;}
.y271{bottom:130.653578pt;}
.y230{bottom:130.653606pt;}
.y2b3{bottom:130.664954pt;}
.y16c{bottom:131.134952pt;}
.y98{bottom:134.146932pt;}
.y89{bottom:134.146973pt;}
.yda{bottom:135.168274pt;}
.yce{bottom:135.320231pt;}
.y105{bottom:135.320272pt;}
.y53{bottom:140.483608pt;}
.y4d{bottom:142.187866pt;}
.y1ee{bottom:143.641620pt;}
.y1ac{bottom:143.839615pt;}
.y270{bottom:143.981578pt;}
.y22f{bottom:143.981606pt;}
.y2b2{bottom:143.992954pt;}
.y16b{bottom:144.462952pt;}
.y135{bottom:145.340938pt;}
.y97{bottom:150.813599pt;}
.y88{bottom:150.813639pt;}
.yd9{bottom:151.834941pt;}
.ycd{bottom:151.986898pt;}
.y104{bottom:151.986938pt;}
.y52{bottom:153.811608pt;}
.y1ed{bottom:156.969620pt;}
.y1ab{bottom:157.167615pt;}
.y26f{bottom:157.309578pt;}
.y22e{bottom:157.309606pt;}
.y2b1{bottom:157.320954pt;}
.y16a{bottom:157.790952pt;}
.y134{bottom:158.668938pt;}
.y4c{bottom:158.854533pt;}
.y96{bottom:167.480265pt;}
.y87{bottom:167.480306pt;}
.yd8{bottom:168.501607pt;}
.ycc{bottom:168.653564pt;}
.y103{bottom:168.653605pt;}
.y1ec{bottom:170.297620pt;}
.y1aa{bottom:170.495615pt;}
.y26e{bottom:170.637578pt;}
.y22d{bottom:170.637606pt;}
.y2b0{bottom:170.648954pt;}
.y169{bottom:171.118952pt;}
.y51{bottom:173.848941pt;}
.y19{bottom:175.052000pt;}
.y4b{bottom:175.521200pt;}
.y1eb{bottom:183.625620pt;}
.y1a9{bottom:183.823615pt;}
.y26d{bottom:183.965578pt;}
.y22c{bottom:183.965606pt;}
.y2af{bottom:183.976954pt;}
.y95{bottom:184.146932pt;}
.y86{bottom:184.146973pt;}
.y168{bottom:184.446952pt;}
.yd7{bottom:185.168274pt;}
.ycb{bottom:185.320231pt;}
.y102{bottom:185.320272pt;}
.y133{bottom:185.336272pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y50{bottom:187.176941pt;}
.y4a{bottom:192.187866pt;}
.y1ea{bottom:196.953620pt;}
.y1a8{bottom:197.151615pt;}
.y26c{bottom:197.293578pt;}
.y22b{bottom:197.293606pt;}
.y2ae{bottom:197.304954pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y167{bottom:197.774952pt;}
.y132{bottom:198.664272pt;}
.y94{bottom:200.813599pt;}
.y85{bottom:200.813639pt;}
.yd6{bottom:201.834941pt;}
.yca{bottom:201.986898pt;}
.y101{bottom:201.986938pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y49{bottom:208.854533pt;}
.y1e9{bottom:210.281620pt;}
.y1a7{bottom:210.479615pt;}
.y26b{bottom:210.621578pt;}
.y22a{bottom:210.621606pt;}
.y2ad{bottom:210.632954pt;}
.y166{bottom:211.102952pt;}
.y131{bottom:211.992272pt;}
.y93{bottom:217.480265pt;}
.y84{bottom:217.480306pt;}
.yd5{bottom:218.501607pt;}
.yc9{bottom:218.653564pt;}
.y100{bottom:218.653605pt;}
.y1e8{bottom:223.609620pt;}
.y1a6{bottom:223.807615pt;}
.y26a{bottom:223.949578pt;}
.y229{bottom:223.949606pt;}
.y2ac{bottom:223.960954pt;}
.y165{bottom:224.430952pt;}
.y130{bottom:225.320272pt;}
.y47{bottom:225.521200pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y92{bottom:234.146932pt;}
.y83{bottom:234.146973pt;}
.yd4{bottom:235.168274pt;}
.yc8{bottom:235.320231pt;}
.yff{bottom:235.320272pt;}
.y1e7{bottom:236.937620pt;}
.y1a5{bottom:237.135615pt;}
.y269{bottom:237.277578pt;}
.y228{bottom:237.277606pt;}
.y2ab{bottom:237.288954pt;}
.y164{bottom:237.758952pt;}
.y46{bottom:242.187866pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1e6{bottom:250.265620pt;}
.y1a4{bottom:250.463615pt;}
.y268{bottom:250.605578pt;}
.y227{bottom:250.605606pt;}
.y2aa{bottom:250.616954pt;}
.y91{bottom:250.813599pt;}
.y82{bottom:250.813639pt;}
.y163{bottom:251.086952pt;}
.yd3{bottom:251.834941pt;}
.yc7{bottom:251.986898pt;}
.yfe{bottom:251.986938pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y45{bottom:258.854533pt;}
.y1e5{bottom:263.593620pt;}
.y1a3{bottom:263.791615pt;}
.y267{bottom:263.933578pt;}
.y226{bottom:263.933606pt;}
.y2a9{bottom:263.944954pt;}
.y162{bottom:264.414952pt;}
.y90{bottom:267.480265pt;}
.y81{bottom:267.480306pt;}
.yd2{bottom:268.501607pt;}
.yc6{bottom:268.653564pt;}
.yfd{bottom:268.653605pt;}
.y44{bottom:275.521200pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1e4{bottom:276.921620pt;}
.y1a2{bottom:277.119615pt;}
.y266{bottom:277.261578pt;}
.y225{bottom:277.261606pt;}
.y2a8{bottom:277.272954pt;}
.y161{bottom:277.742952pt;}
.y8f{bottom:284.146932pt;}
.y80{bottom:284.146973pt;}
.yd1{bottom:285.168274pt;}
.yc5{bottom:285.320231pt;}
.yfc{bottom:285.320272pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1e3{bottom:290.249620pt;}
.y1a1{bottom:290.447615pt;}
.y265{bottom:290.589578pt;}
.y224{bottom:290.589606pt;}
.y2a7{bottom:290.600954pt;}
.y160{bottom:291.070952pt;}
.y43{bottom:292.187866pt;}
.y8e{bottom:300.813599pt;}
.y7f{bottom:300.813639pt;}
.yc4{bottom:301.986898pt;}
.y12f{bottom:301.986938pt;}
.y1e2{bottom:303.577620pt;}
.y1a0{bottom:303.775615pt;}
.y264{bottom:303.917578pt;}
.y223{bottom:303.917606pt;}
.y2a6{bottom:303.928954pt;}
.y15f{bottom:304.398952pt;}
.y42{bottom:308.854533pt;}
.y10{bottom:309.452000pt;}
.y1e1{bottom:316.905620pt;}
.y19f{bottom:317.103615pt;}
.y263{bottom:317.245578pt;}
.y222{bottom:317.245606pt;}
.y2a5{bottom:317.256954pt;}
.y8d{bottom:317.480265pt;}
.y7e{bottom:317.480306pt;}
.y15e{bottom:317.726952pt;}
.yfb{bottom:318.648272pt;}
.yc3{bottom:318.653564pt;}
.y12e{bottom:318.653605pt;}
.y41{bottom:325.521200pt;}
.y1e0{bottom:330.233620pt;}
.y19e{bottom:330.431615pt;}
.y262{bottom:330.573578pt;}
.y221{bottom:330.573606pt;}
.y2a4{bottom:330.584954pt;}
.y15d{bottom:331.054952pt;}
.y7d{bottom:334.146973pt;}
.yc2{bottom:335.320231pt;}
.yfa{bottom:335.320272pt;}
.y40{bottom:342.187866pt;}
.y1df{bottom:343.561620pt;}
.y19d{bottom:343.759615pt;}
.yf{bottom:343.809333pt;}
.y261{bottom:343.901578pt;}
.y220{bottom:343.901606pt;}
.y2a3{bottom:343.912954pt;}
.y15c{bottom:344.382952pt;}
.y8c{bottom:350.813599pt;}
.y7c{bottom:350.813639pt;}
.yc1{bottom:351.986898pt;}
.y12d{bottom:351.986938pt;}
.y1de{bottom:356.889620pt;}
.y19c{bottom:357.087615pt;}
.y260{bottom:357.229578pt;}
.y21f{bottom:357.229606pt;}
.y2a2{bottom:357.240954pt;}
.y15b{bottom:357.710952pt;}
.y3f{bottom:358.854533pt;}
.ye{bottom:362.706666pt;}
.y7b{bottom:367.480306pt;}
.yc0{bottom:368.653564pt;}
.y12c{bottom:368.653605pt;}
.y1dd{bottom:370.217620pt;}
.y19b{bottom:370.415615pt;}
.y25f{bottom:370.557578pt;}
.y21e{bottom:370.557606pt;}
.y2a1{bottom:370.568954pt;}
.y15a{bottom:371.038952pt;}
.y3e{bottom:375.521200pt;}
.y1dc{bottom:383.545620pt;}
.y19a{bottom:383.743615pt;}
.y25e{bottom:383.885578pt;}
.y21d{bottom:383.885606pt;}
.y2a0{bottom:383.896954pt;}
.y7a{bottom:384.146973pt;}
.y159{bottom:384.366952pt;}
.ybf{bottom:385.320231pt;}
.y12b{bottom:385.320272pt;}
.y3d{bottom:392.187866pt;}
.y1db{bottom:396.873620pt;}
.y199{bottom:397.071615pt;}
.y25d{bottom:397.213578pt;}
.y21c{bottom:397.213606pt;}
.y29f{bottom:397.224954pt;}
.y158{bottom:397.694952pt;}
.y79{bottom:400.813639pt;}
.ybe{bottom:401.986898pt;}
.y12a{bottom:401.986938pt;}
.y3c{bottom:408.854533pt;}
.y1da{bottom:410.201620pt;}
.y198{bottom:410.399615pt;}
.y25c{bottom:410.541578pt;}
.y21b{bottom:410.541606pt;}
.y29e{bottom:410.552954pt;}
.y157{bottom:411.022952pt;}
.y78{bottom:417.480306pt;}
.ybd{bottom:418.653564pt;}
.y129{bottom:418.653605pt;}
.y1d9{bottom:423.529620pt;}
.y197{bottom:423.727615pt;}
.y25b{bottom:423.869578pt;}
.y21a{bottom:423.869606pt;}
.y29d{bottom:423.880954pt;}
.y156{bottom:424.350952pt;}
.y48{bottom:425.521200pt;}
.y77{bottom:434.146973pt;}
.ybc{bottom:435.320231pt;}
.y128{bottom:435.320272pt;}
.y1d8{bottom:436.857620pt;}
.y196{bottom:437.055615pt;}
.y25a{bottom:437.197578pt;}
.y219{bottom:437.197606pt;}
.y29c{bottom:437.208954pt;}
.y155{bottom:437.678952pt;}
.y3b{bottom:442.187866pt;}
.yd{bottom:446.990669pt;}
.y1d7{bottom:450.185620pt;}
.y195{bottom:450.383615pt;}
.y259{bottom:450.525578pt;}
.y218{bottom:450.525606pt;}
.y29b{bottom:450.536954pt;}
.y76{bottom:450.813639pt;}
.y154{bottom:451.006952pt;}
.ybb{bottom:451.986898pt;}
.y127{bottom:451.986938pt;}
.yc{bottom:462.990669pt;}
.y1d6{bottom:463.513620pt;}
.y194{bottom:463.711615pt;}
.y258{bottom:463.853578pt;}
.y217{bottom:463.853606pt;}
.y29a{bottom:463.864954pt;}
.y153{bottom:464.334952pt;}
.y75{bottom:467.480306pt;}
.yba{bottom:468.653564pt;}
.y126{bottom:468.653605pt;}
.y1d5{bottom:476.841620pt;}
.y193{bottom:477.039615pt;}
.y257{bottom:477.181578pt;}
.y216{bottom:477.181606pt;}
.y299{bottom:477.192954pt;}
.y152{bottom:477.662952pt;}
.yb{bottom:478.990666pt;}
.y74{bottom:484.146973pt;}
.yb9{bottom:485.320231pt;}
.y125{bottom:485.320272pt;}
.y1d4{bottom:490.169620pt;}
.y192{bottom:490.367615pt;}
.y256{bottom:490.509578pt;}
.y215{bottom:490.509606pt;}
.y298{bottom:490.520954pt;}
.y151{bottom:490.990952pt;}
.y3a{bottom:492.187907pt;}
.ya{bottom:494.990666pt;}
.y73{bottom:500.813639pt;}
.yb8{bottom:501.986898pt;}
.y124{bottom:501.986938pt;}
.y1d3{bottom:503.497620pt;}
.y191{bottom:503.695615pt;}
.y255{bottom:503.837578pt;}
.y214{bottom:503.837606pt;}
.y297{bottom:503.848954pt;}
.y150{bottom:504.318952pt;}
.y1d2{bottom:516.825620pt;}
.y190{bottom:517.023615pt;}
.y254{bottom:517.165578pt;}
.y213{bottom:517.165606pt;}
.y296{bottom:517.176954pt;}
.y72{bottom:517.480306pt;}
.y14f{bottom:517.646952pt;}
.yb7{bottom:518.653564pt;}
.y123{bottom:518.653605pt;}
.y39{bottom:525.521240pt;}
.y1d1{bottom:530.153620pt;}
.y18f{bottom:530.351615pt;}
.y253{bottom:530.493578pt;}
.y212{bottom:530.493606pt;}
.y295{bottom:530.504954pt;}
.y14e{bottom:530.974952pt;}
.y71{bottom:534.146973pt;}
.yb6{bottom:535.320231pt;}
.y122{bottom:535.320272pt;}
.y38{bottom:542.187907pt;}
.y1d0{bottom:543.481620pt;}
.y18e{bottom:543.679615pt;}
.y252{bottom:543.821578pt;}
.y211{bottom:543.821606pt;}
.y294{bottom:543.832954pt;}
.y14d{bottom:544.302952pt;}
.y70{bottom:550.813639pt;}
.yb5{bottom:551.986898pt;}
.y121{bottom:551.986938pt;}
.yf9{bottom:555.356023pt;}
.y1cf{bottom:556.809620pt;}
.y18d{bottom:557.007615pt;}
.y251{bottom:557.149578pt;}
.y210{bottom:557.149606pt;}
.y293{bottom:557.160954pt;}
.y14c{bottom:557.630952pt;}
.y37{bottom:558.854574pt;}
.y6f{bottom:567.480306pt;}
.yb4{bottom:568.653564pt;}
.y120{bottom:568.653605pt;}
.yf8{bottom:568.684023pt;}
.y1ce{bottom:570.137620pt;}
.y18c{bottom:570.335615pt;}
.y250{bottom:570.477578pt;}
.y20f{bottom:570.477606pt;}
.y292{bottom:570.488954pt;}
.y14b{bottom:570.958952pt;}
.y9{bottom:573.786667pt;}
.y36{bottom:575.521240pt;}
.y1cd{bottom:583.465620pt;}
.y18b{bottom:583.663615pt;}
.y24f{bottom:583.805578pt;}
.y20e{bottom:583.805606pt;}
.y291{bottom:583.816954pt;}
.y6e{bottom:584.146973pt;}
.y14a{bottom:584.286952pt;}
.yb3{bottom:585.320231pt;}
.y11f{bottom:585.320272pt;}
.y35{bottom:592.187907pt;}
.y8{bottom:592.685334pt;}
.y1cc{bottom:596.793620pt;}
.y18a{bottom:596.991615pt;}
.y24e{bottom:597.133578pt;}
.y20d{bottom:597.133606pt;}
.y290{bottom:597.144954pt;}
.y149{bottom:597.614952pt;}
.y6d{bottom:600.813639pt;}
.yb2{bottom:601.986898pt;}
.y11e{bottom:601.986938pt;}
.y34{bottom:608.854574pt;}
.y1cb{bottom:610.121620pt;}
.y189{bottom:610.319615pt;}
.y24d{bottom:610.461578pt;}
.y20c{bottom:610.461606pt;}
.y28f{bottom:610.472954pt;}
.y148{bottom:610.942952pt;}
.yde{bottom:613.215639pt;}
.y6c{bottom:617.480306pt;}
.yb1{bottom:618.653564pt;}
.y11d{bottom:618.653605pt;}
.y1ca{bottom:623.449620pt;}
.y188{bottom:623.647615pt;}
.y24c{bottom:623.789578pt;}
.y20b{bottom:623.789606pt;}
.y28e{bottom:623.800954pt;}
.y33{bottom:625.521240pt;}
.y6b{bottom:634.146973pt;}
.yb0{bottom:635.320231pt;}
.y11c{bottom:635.320272pt;}
.y1c9{bottom:636.777620pt;}
.y187{bottom:636.975615pt;}
.y24b{bottom:637.117578pt;}
.y20a{bottom:637.117606pt;}
.y28d{bottom:637.128954pt;}
.yf7{bottom:638.497355pt;}
.y147{bottom:640.942952pt;}
.y32{bottom:642.187907pt;}
.y7{bottom:645.598667pt;}
.y1c8{bottom:650.105620pt;}
.y186{bottom:650.303615pt;}
.y24a{bottom:650.445578pt;}
.y209{bottom:650.445606pt;}
.y28c{bottom:650.456954pt;}
.y6a{bottom:650.813639pt;}
.yaf{bottom:651.986898pt;}
.y11b{bottom:651.986938pt;}
.yf6{bottom:655.202688pt;}
.y31{bottom:658.854574pt;}
.y1c7{bottom:663.433620pt;}
.y185{bottom:663.631615pt;}
.y249{bottom:663.773578pt;}
.y208{bottom:663.773606pt;}
.y28b{bottom:663.784954pt;}
.y69{bottom:667.480306pt;}
.yae{bottom:668.653564pt;}
.y11a{bottom:668.653605pt;}
.y3{bottom:668.977329pt;}
.yf5{bottom:671.840021pt;}
.y30{bottom:675.521240pt;}
.y1c6{bottom:676.761620pt;}
.y184{bottom:676.959615pt;}
.y248{bottom:677.101578pt;}
.y207{bottom:677.101606pt;}
.y28a{bottom:677.112954pt;}
.y68{bottom:684.146973pt;}
.yad{bottom:685.320231pt;}
.y119{bottom:685.320272pt;}
.yf4{bottom:688.477355pt;}
.y1c5{bottom:690.089620pt;}
.y183{bottom:690.287615pt;}
.y247{bottom:690.429578pt;}
.y206{bottom:690.429606pt;}
.y289{bottom:690.440954pt;}
.yf3{bottom:691.707355pt;}
.y2f{bottom:692.187907pt;}
.y67{bottom:700.813639pt;}
.yac{bottom:701.986898pt;}
.y118{bottom:701.986938pt;}
.y1c4{bottom:703.417620pt;}
.y182{bottom:703.615615pt;}
.y246{bottom:703.757578pt;}
.y205{bottom:703.757606pt;}
.y288{bottom:703.768954pt;}
.yf2{bottom:705.035355pt;}
.y146{bottom:707.665637pt;}
.y2e{bottom:708.854574pt;}
.y1c3{bottom:716.745620pt;}
.y181{bottom:716.943615pt;}
.y245{bottom:717.085578pt;}
.y204{bottom:717.085606pt;}
.y287{bottom:717.096954pt;}
.y66{bottom:717.480306pt;}
.yab{bottom:718.653564pt;}
.y117{bottom:718.653605pt;}
.y145{bottom:720.993637pt;}
.yf1{bottom:721.740688pt;}
.y2d{bottom:725.521240pt;}
.y1c2{bottom:730.073620pt;}
.y180{bottom:730.271615pt;}
.y244{bottom:730.413578pt;}
.y203{bottom:730.413606pt;}
.y286{bottom:730.424954pt;}
.y65{bottom:734.146973pt;}
.y144{bottom:734.321637pt;}
.yaa{bottom:735.320231pt;}
.y116{bottom:735.320272pt;}
.yf0{bottom:738.378021pt;}
.y2c{bottom:742.187907pt;}
.y1c1{bottom:743.401620pt;}
.y17f{bottom:743.599615pt;}
.y243{bottom:743.741578pt;}
.y202{bottom:743.741606pt;}
.y285{bottom:743.752954pt;}
.y143{bottom:747.649637pt;}
.y64{bottom:750.813639pt;}
.ya9{bottom:751.986898pt;}
.y115{bottom:751.986938pt;}
.yef{bottom:755.015355pt;}
.y1c0{bottom:756.729620pt;}
.y17e{bottom:756.927615pt;}
.y242{bottom:757.069578pt;}
.y201{bottom:757.069606pt;}
.y284{bottom:757.080954pt;}
.y142{bottom:760.977637pt;}
.y63{bottom:767.480306pt;}
.ya8{bottom:768.653564pt;}
.y114{bottom:768.653605pt;}
.y1bf{bottom:770.057620pt;}
.y17d{bottom:770.255615pt;}
.y241{bottom:770.397578pt;}
.y200{bottom:770.397606pt;}
.y283{bottom:770.408954pt;}
.yee{bottom:771.652688pt;}
.y141{bottom:774.305637pt;}
.yed{bottom:774.950688pt;}
.y2b{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y1be{bottom:783.385620pt;}
.y17c{bottom:783.583615pt;}
.y240{bottom:783.725578pt;}
.y1ff{bottom:783.725606pt;}
.y282{bottom:783.736954pt;}
.y62{bottom:784.146973pt;}
.ya7{bottom:785.320231pt;}
.y113{bottom:785.320272pt;}
.y140{bottom:787.633637pt;}
.yec{bottom:788.278688pt;}
.y2a{bottom:794.789469pt;}
.y1bd{bottom:796.713620pt;}
.y17b{bottom:796.911615pt;}
.y23f{bottom:797.053578pt;}
.y1fe{bottom:797.053606pt;}
.y281{bottom:797.064954pt;}
.y61{bottom:800.813639pt;}
.y13f{bottom:800.961637pt;}
.ya6{bottom:801.986898pt;}
.y112{bottom:801.986938pt;}
.yeb{bottom:804.916021pt;}
.y1bc{bottom:810.041620pt;}
.y17a{bottom:810.239615pt;}
.y23e{bottom:810.381578pt;}
.y1fd{bottom:810.381606pt;}
.y280{bottom:810.392954pt;}
.y13e{bottom:814.289637pt;}
.y60{bottom:817.480306pt;}
.ya5{bottom:818.653564pt;}
.y111{bottom:818.653605pt;}
.yea{bottom:821.553355pt;}
.y1bb{bottom:823.369620pt;}
.y179{bottom:823.567615pt;}
.y23d{bottom:823.709578pt;}
.y1fc{bottom:823.709606pt;}
.y27f{bottom:823.720954pt;}
.y13d{bottom:827.617637pt;}
.ye8{bottom:828.160688pt;}
.y29{bottom:832.656169pt;}
.y5f{bottom:834.146973pt;}
.ya4{bottom:835.320231pt;}
.y110{bottom:835.320272pt;}
.y1ba{bottom:836.697620pt;}
.y178{bottom:836.895615pt;}
.y23c{bottom:837.037578pt;}
.y1fb{bottom:837.037606pt;}
.y27e{bottom:837.048954pt;}
.ye9{bottom:838.190688pt;}
.y13c{bottom:840.945637pt;}
.ye7{bottom:841.488688pt;}
.y1b9{bottom:850.025620pt;}
.y177{bottom:850.223615pt;}
.y23b{bottom:850.365578pt;}
.y1fa{bottom:850.365606pt;}
.y27d{bottom:850.376954pt;}
.y5e{bottom:850.813639pt;}
.ya3{bottom:851.986898pt;}
.y10f{bottom:851.986938pt;}
.y13b{bottom:854.273637pt;}
.ye6{bottom:854.816688pt;}
.y1{bottom:859.312000pt;}
.y1b8{bottom:863.353620pt;}
.y176{bottom:863.551615pt;}
.y23a{bottom:863.693578pt;}
.y1f9{bottom:863.693606pt;}
.y27c{bottom:863.704954pt;}
.y5d{bottom:867.480306pt;}
.ya2{bottom:868.653564pt;}
.y10e{bottom:868.653605pt;}
.ye5{bottom:871.454021pt;}
.y28{bottom:872.377441pt;}
.y1b7{bottom:876.681620pt;}
.y175{bottom:876.879615pt;}
.y239{bottom:877.021578pt;}
.y1f8{bottom:877.021606pt;}
.y27b{bottom:877.032954pt;}
.y5c{bottom:884.146973pt;}
.ya1{bottom:885.320231pt;}
.y10d{bottom:885.320272pt;}
.y13a{bottom:887.593637pt;}
.ye4{bottom:888.091355pt;}
.y2ba{bottom:889.012306pt;}
.y1b6{bottom:890.009620pt;}
.y174{bottom:890.207615pt;}
.y238{bottom:890.349578pt;}
.y1f7{bottom:890.349606pt;}
.y27a{bottom:890.360954pt;}
.ye2{bottom:894.698688pt;}
.y27{bottom:896.377441pt;}
.y5b{bottom:900.813639pt;}
.ya0{bottom:901.986898pt;}
.y10c{bottom:901.986938pt;}
.y2b9{bottom:902.340306pt;}
.y1b5{bottom:903.337620pt;}
.y173{bottom:903.535615pt;}
.y237{bottom:903.677578pt;}
.y1f6{bottom:903.677606pt;}
.y279{bottom:903.688954pt;}
.ye3{bottom:904.728688pt;}
.ye1{bottom:908.026688pt;}
.y139{bottom:914.260971pt;}
.y2b8{bottom:915.668306pt;}
.y1b4{bottom:916.665620pt;}
.y172{bottom:916.863615pt;}
.y236{bottom:917.005578pt;}
.y1f5{bottom:917.005606pt;}
.y278{bottom:917.016954pt;}
.y5a{bottom:917.480306pt;}
.y9f{bottom:918.653564pt;}
.y10b{bottom:918.653605pt;}
.ye0{bottom:921.354688pt;}
.y2b7{bottom:928.996306pt;}
.y1b3{bottom:929.993620pt;}
.y171{bottom:930.191615pt;}
.y235{bottom:930.333578pt;}
.y1f4{bottom:930.333606pt;}
.y277{bottom:930.344954pt;}
.y59{bottom:934.146973pt;}
.y9e{bottom:935.320231pt;}
.y10a{bottom:935.320272pt;}
.y138{bottom:940.928304pt;}
.y2b6{bottom:942.324306pt;}
.y1b2{bottom:943.321620pt;}
.y170{bottom:943.519615pt;}
.y234{bottom:943.661578pt;}
.y1f3{bottom:943.661606pt;}
.y276{bottom:943.672954pt;}
.ydf{bottom:946.322021pt;}
.y58{bottom:950.813639pt;}
.y9d{bottom:951.986898pt;}
.y109{bottom:951.986938pt;}
.y2b5{bottom:955.652306pt;}
.y2bc{bottom:955.686306pt;}
.y26{bottom:956.561849pt;}
.y1b1{bottom:956.649620pt;}
.y16f{bottom:956.847615pt;}
.y233{bottom:956.989578pt;}
.y1f2{bottom:956.989606pt;}
.y275{bottom:957.000954pt;}
.y57{bottom:967.480306pt;}
.y137{bottom:967.594971pt;}
.y9c{bottom:968.653564pt;}
.y108{bottom:968.653605pt;}
.ydd{bottom:968.980306pt;}
.y2bb{bottom:969.014306pt;}
.y1b0{bottom:969.977620pt;}
.y16e{bottom:970.175615pt;}
.y232{bottom:970.317578pt;}
.y1f1{bottom:970.317606pt;}
.y274{bottom:970.328954pt;}
.y25{bottom:986.299161pt;}
.y24{bottom:1001.406494pt;}
.y56{bottom:1002.206543pt;}
.y9b{bottom:1002.206706pt;}
.h15{height:27.671466pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h14{height:39.530667pt;}
.hb{height:39.712000pt;}
.h16{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h17{height:46.376000pt;}
.h10{height:46.506667pt;}
.h11{height:47.253333pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h18{height:52.448000pt;}
.hf{height:52.746667pt;}
.h13{height:54.560000pt;}
.he{height:57.658667pt;}
.h12{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.xb{left:83.151466pt;}
.xa{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:95.458135pt;}
.x4{left:180.874667pt;}
.xe{left:199.090132pt;}
.xd{left:395.292798pt;}
.x3{left:404.408000pt;}
.x8{left:408.191457pt;}
.x9{left:423.311457pt;}
.xf{left:435.526125pt;}
.x5{left:647.307210pt;}
.xc{left:709.519613pt;}
}




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