
    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_f10f0183db6637f1265e4c05.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_dfd2c572d08e8b69487a4f89.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_fd4bb7252ec5660c69f09fae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_efbe7843ead56d4f82b8e226.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0396f64547c9f3f4d20492a4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6cdfbfa43acd98991c51630d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad67976d173f13e3598e2e97.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c8e68e57e54ef15e98747459.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_7510cb717240a940bf6088e3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fa7e592b8fb86681ae48887c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c0ee4104a3d140f1228dae65.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.810000;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442200px;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:21.619800px;}
.ls38{letter-spacing:-3.552000px;}
.ls79{letter-spacing:-3.108000px;}
.ls96{letter-spacing:-2.640000px;}
.lsd{letter-spacing:-0.886200px;}
.lsc{letter-spacing:-0.780000px;}
.ls94{letter-spacing:-0.768000px;}
.ls56{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.480000px;}
.ls60{letter-spacing:-0.420000px;}
.ls69{letter-spacing:-0.336000px;}
.ls37{letter-spacing:-0.300000px;}
.ls30{letter-spacing:-0.240000px;}
.ls70{letter-spacing:-0.192000px;}
.lse{letter-spacing:-0.180000px;}
.ls6a{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.120000px;}
.ls71{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.060000px;}
.ls5f{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls67{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.ls86{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.240000px;}
.ls81{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.360000px;}
.ls73{letter-spacing:0.384000px;}
.ls1f{letter-spacing:0.420000px;}
.ls3a{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.480000px;}
.ls88{letter-spacing:0.528000px;}
.ls33{letter-spacing:0.540000px;}
.ls7d{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.600000px;}
.ls57{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.660000px;}
.ls43{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.768000px;}
.ls13{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls48{letter-spacing:0.864000px;}
.ls23{letter-spacing:0.900000px;}
.ls3c{letter-spacing:0.912000px;}
.ls68{letter-spacing:0.960000px;}
.ls72{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.020000px;}
.ls3d{letter-spacing:1.056000px;}
.ls9{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.140000px;}
.ls44{letter-spacing:1.152000px;}
.lsa{letter-spacing:1.200000px;}
.ls84{letter-spacing:1.248000px;}
.ls7{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.320000px;}
.ls6f{letter-spacing:1.344000px;}
.ls25{letter-spacing:1.380000px;}
.ls45{letter-spacing:1.392000px;}
.ls3f{letter-spacing:1.440000px;}
.ls39{letter-spacing:1.488000px;}
.ls51{letter-spacing:1.500000px;}
.ls41{letter-spacing:1.536000px;}
.ls1d{letter-spacing:1.560000px;}
.ls7f{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.620000px;}
.ls82{letter-spacing:1.632000px;}
.ls54{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.740000px;}
.ls90{letter-spacing:1.776000px;}
.ls12{letter-spacing:1.800000px;}
.ls3b{letter-spacing:1.824000px;}
.ls20{letter-spacing:1.860000px;}
.ls95{letter-spacing:1.872000px;}
.ls42{letter-spacing:1.920000px;}
.ls8a{letter-spacing:1.968000px;}
.ls15{letter-spacing:1.980000px;}
.ls58{letter-spacing:2.016000px;}
.ls4c{letter-spacing:2.040000px;}
.ls89{letter-spacing:2.064000px;}
.ls1c{letter-spacing:2.100000px;}
.ls8b{letter-spacing:2.112000px;}
.ls2a{letter-spacing:2.160000px;}
.ls7e{letter-spacing:2.208000px;}
.ls18{letter-spacing:2.220000px;}
.ls80{letter-spacing:2.256000px;}
.ls76{letter-spacing:2.280000px;}
.ls3{letter-spacing:2.340000px;}
.ls26{letter-spacing:2.400000px;}
.ls85{letter-spacing:2.448000px;}
.ls1e{letter-spacing:2.460000px;}
.ls8c{letter-spacing:2.496000px;}
.ls50{letter-spacing:2.520000px;}
.ls98{letter-spacing:2.544000px;}
.ls52{letter-spacing:2.580000px;}
.ls5b{letter-spacing:2.592000px;}
.ls47{letter-spacing:2.640000px;}
.ls83{letter-spacing:2.688000px;}
.ls34{letter-spacing:2.700000px;}
.ls8e{letter-spacing:2.736000px;}
.ls2d{letter-spacing:2.760000px;}
.ls92{letter-spacing:2.784000px;}
.ls28{letter-spacing:2.820000px;}
.ls8d{letter-spacing:2.832000px;}
.ls27{letter-spacing:2.880000px;}
.ls91{letter-spacing:2.928000px;}
.ls5{letter-spacing:2.940000px;}
.ls4b{letter-spacing:3.000000px;}
.ls7c{letter-spacing:3.024000px;}
.ls2c{letter-spacing:3.060000px;}
.ls99{letter-spacing:3.072000px;}
.ls49{letter-spacing:3.120000px;}
.ls87{letter-spacing:3.168000px;}
.ls21{letter-spacing:3.180000px;}
.ls5c{letter-spacing:3.216000px;}
.ls35{letter-spacing:3.240000px;}
.ls2f{letter-spacing:3.300000px;}
.ls4a{letter-spacing:3.480000px;}
.ls7a{letter-spacing:3.540000px;}
.ls63{letter-spacing:3.660000px;}
.ls7b{letter-spacing:3.720000px;}
.ls62{letter-spacing:3.780000px;}
.ls6b{letter-spacing:3.840000px;}
.ls53{letter-spacing:3.960000px;}
.ls59{letter-spacing:3.984000px;}
.ls75{letter-spacing:4.020000px;}
.ls55{letter-spacing:4.080000px;}
.ls8f{letter-spacing:4.128000px;}
.ls5d{letter-spacing:4.320000px;}
.ls4f{letter-spacing:4.380000px;}
.ls93{letter-spacing:4.416000px;}
.ls29{letter-spacing:4.440000px;}
.ls5a{letter-spacing:4.464000px;}
.ls77{letter-spacing:4.560000px;}
.ls1b{letter-spacing:4.620000px;}
.ls5e{letter-spacing:4.800000px;}
.ls10{letter-spacing:4.920000px;}
.ls97{letter-spacing:5.040000px;}
.ls74{letter-spacing:5.280000px;}
.ls65{letter-spacing:5.340000px;}
.ls61{letter-spacing:5.460000px;}
.ls4e{letter-spacing:5.520000px;}
.ls64{letter-spacing:7.260000px;}
.ls4d{letter-spacing:7.380000px;}
.ls78{letter-spacing:127.092000px;}
.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;}
}
.ws5c{word-spacing:-62.116583px;}
.ws5d{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws92{word-spacing:-19.800000px;}
.wsd9{word-spacing:-18.540000px;}
.ws5b{word-spacing:-18.480000px;}
.ws43{word-spacing:-17.700000px;}
.ws91{word-spacing:-17.400000px;}
.ws96{word-spacing:-17.340000px;}
.wsc4{word-spacing:-17.100000px;}
.wsa2{word-spacing:-17.040000px;}
.ws9d{word-spacing:-16.980000px;}
.ws2{word-spacing:-16.680000px;}
.ws45{word-spacing:-16.620000px;}
.ws19{word-spacing:-16.260000px;}
.wsb1{word-spacing:-16.020000px;}
.ws17{word-spacing:-15.900000px;}
.ws18{word-spacing:-15.840000px;}
.wsc2{word-spacing:-15.720000px;}
.wsa3{word-spacing:-15.600000px;}
.wsc0{word-spacing:-15.540000px;}
.ws16{word-spacing:-15.480000px;}
.ws97{word-spacing:-15.420000px;}
.ws44{word-spacing:-15.300000px;}
.wsa7{word-spacing:-15.240000px;}
.wsc1{word-spacing:-15.120000px;}
.ws107{word-spacing:-15.072000px;}
.ws4{word-spacing:-15.060000px;}
.wsc3{word-spacing:-15.000000px;}
.ws9e{word-spacing:-14.940000px;}
.wsf2{word-spacing:-14.784000px;}
.ws15{word-spacing:-14.760000px;}
.ws46{word-spacing:-14.700000px;}
.ws56{word-spacing:-13.920000px;}
.wsf1{word-spacing:-13.776000px;}
.wsdb{word-spacing:-13.632000px;}
.ws54{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.344000px;}
.wsf0{word-spacing:-13.104000px;}
.wse8{word-spacing:-13.008000px;}
.ws59{word-spacing:-12.864000px;}
.wsda{word-spacing:-12.816000px;}
.wsee{word-spacing:-12.768000px;}
.wsdc{word-spacing:-12.672000px;}
.wseb{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws57{word-spacing:-12.480000px;}
.wsef{word-spacing:-12.384000px;}
.ws58{word-spacing:-12.336000px;}
.wsea{word-spacing:-12.240000px;}
.wsdd{word-spacing:-12.096000px;}
.ws55{word-spacing:-12.000000px;}
.ws5a{word-spacing:-11.952000px;}
.wsec{word-spacing:-11.856000px;}
.wsd7{word-spacing:-11.664000px;}
.wse9{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.508400px;}
.wsbd{word-spacing:-10.464000px;}
.wsb9{word-spacing:-10.272000px;}
.wsed{word-spacing:-9.360000px;}
.ws4e{word-spacing:-8.448000px;}
.ws83{word-spacing:-7.380000px;}
.ws84{word-spacing:-5.520000px;}
.ws8f{word-spacing:-5.460000px;}
.ws100{word-spacing:-5.040000px;}
.wsbb{word-spacing:-4.992000px;}
.ws1b{word-spacing:-4.920000px;}
.ws79{word-spacing:-4.800000px;}
.ws29{word-spacing:-4.680000px;}
.ws8e{word-spacing:-4.620000px;}
.ws71{word-spacing:-4.464000px;}
.ws3c{word-spacing:-4.440000px;}
.wsf7{word-spacing:-4.416000px;}
.ws85{word-spacing:-4.380000px;}
.ws77{word-spacing:-4.320000px;}
.ws102{word-spacing:-4.128000px;}
.ws8b{word-spacing:-4.080000px;}
.wsd2{word-spacing:-4.020000px;}
.ws70{word-spacing:-3.984000px;}
.ws89{word-spacing:-3.960000px;}
.wsbf{word-spacing:-3.792000px;}
.ws94{word-spacing:-3.780000px;}
.wsde{word-spacing:-3.720000px;}
.ws98{word-spacing:-3.660000px;}
.ws80{word-spacing:-3.480000px;}
.ws42{word-spacing:-3.300000px;}
.ws51{word-spacing:-3.240000px;}
.ws73{word-spacing:-3.216000px;}
.ws33{word-spacing:-3.180000px;}
.wsf8{word-spacing:-3.168000px;}
.ws7a{word-spacing:-3.120000px;}
.ws10b{word-spacing:-3.072000px;}
.ws37{word-spacing:-3.060000px;}
.wse1{word-spacing:-3.024000px;}
.wse{word-spacing:-2.940000px;}
.ws104{word-spacing:-2.928000px;}
.ws7{word-spacing:-2.886000px;}
.ws39{word-spacing:-2.880000px;}
.wsff{word-spacing:-2.832000px;}
.ws3a{word-spacing:-2.820000px;}
.ws106{word-spacing:-2.784000px;}
.wsd6{word-spacing:-2.760000px;}
.ws101{word-spacing:-2.736000px;}
.ws50{word-spacing:-2.700000px;}
.wsf3{word-spacing:-2.688000px;}
.ws78{word-spacing:-2.640000px;}
.ws72{word-spacing:-2.592000px;}
.ws9a{word-spacing:-2.580000px;}
.ws109{word-spacing:-2.544000px;}
.ws86{word-spacing:-2.520000px;}
.wsfe{word-spacing:-2.496000px;}
.ws2c{word-spacing:-2.460000px;}
.wsf5{word-spacing:-2.448000px;}
.ws38{word-spacing:-2.400000px;}
.wsc{word-spacing:-2.340000px;}
.wsd4{word-spacing:-2.280000px;}
.wse6{word-spacing:-2.256000px;}
.ws26{word-spacing:-2.220000px;}
.wse3{word-spacing:-2.208000px;}
.ws3d{word-spacing:-2.160000px;}
.wsfd{word-spacing:-2.112000px;}
.ws2a{word-spacing:-2.100000px;}
.wsf9{word-spacing:-2.064000px;}
.ws9f{word-spacing:-2.040000px;}
.ws6d{word-spacing:-2.016000px;}
.ws21{word-spacing:-1.980000px;}
.wsfc{word-spacing:-1.968000px;}
.ws6a{word-spacing:-1.920000px;}
.wsfb{word-spacing:-1.872000px;}
.ws32{word-spacing:-1.860000px;}
.ws63{word-spacing:-1.824000px;}
.ws1c{word-spacing:-1.800000px;}
.ws103{word-spacing:-1.776000px;}
.ws95{word-spacing:-1.740000px;}
.ws8a{word-spacing:-1.680000px;}
.wse5{word-spacing:-1.632000px;}
.ws8d{word-spacing:-1.620000px;}
.wse4{word-spacing:-1.584000px;}
.ws2b{word-spacing:-1.560000px;}
.ws69{word-spacing:-1.536000px;}
.ws88{word-spacing:-1.500000px;}
.ws60{word-spacing:-1.488000px;}
.ws6b{word-spacing:-1.440000px;}
.ws75{word-spacing:-1.392000px;}
.ws28{word-spacing:-1.380000px;}
.wsb8{word-spacing:-1.344000px;}
.ws22{word-spacing:-1.320000px;}
.ws11{word-spacing:-1.260000px;}
.wsf4{word-spacing:-1.248000px;}
.ws14{word-spacing:-1.200000px;}
.ws6f{word-spacing:-1.152000px;}
.ws3e{word-spacing:-1.140000px;}
.wsb6{word-spacing:-1.104000px;}
.ws13{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.056000px;}
.ws40{word-spacing:-1.020000px;}
.wsbc{word-spacing:-1.008000px;}
.ws9c{word-spacing:-0.960000px;}
.ws64{word-spacing:-0.912000px;}
.ws27{word-spacing:-0.900000px;}
.ws53{word-spacing:-0.864000px;}
.ws20{word-spacing:-0.840000px;}
.wsb7{word-spacing:-0.816000px;}
.ws1e{word-spacing:-0.780000px;}
.ws66{word-spacing:-0.768000px;}
.wsd{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.672000px;}
.ws10{word-spacing:-0.660000px;}
.ws68{word-spacing:-0.624000px;}
.ws25{word-spacing:-0.600000px;}
.wse2{word-spacing:-0.576000px;}
.ws23{word-spacing:-0.540000px;}
.wsfa{word-spacing:-0.528000px;}
.ws2d{word-spacing:-0.480000px;}
.ws61{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.384000px;}
.ws34{word-spacing:-0.360000px;}
.ws76{word-spacing:-0.336000px;}
.ws2e{word-spacing:-0.300000px;}
.wse7{word-spacing:-0.288000px;}
.ws1a{word-spacing:-0.240000px;}
.ws67{word-spacing:-0.192000px;}
.ws12{word-spacing:-0.180000px;}
.wsf6{word-spacing:-0.144000px;}
.ws3b{word-spacing:-0.120000px;}
.wsad{word-spacing:-0.096000px;}
.ws3f{word-spacing:-0.060000px;}
.ws9b{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws7b{word-spacing:0.048000px;}
.ws87{word-spacing:0.060000px;}
.wsb3{word-spacing:0.096000px;}
.ws24{word-spacing:0.120000px;}
.wsa1{word-spacing:0.144000px;}
.wsb{word-spacing:0.180000px;}
.wsb2{word-spacing:0.192000px;}
.ws1d{word-spacing:0.240000px;}
.ws52{word-spacing:0.300000px;}
.wsa0{word-spacing:0.336000px;}
.ws7e{word-spacing:0.420000px;}
.ws35{word-spacing:0.480000px;}
.wsd0{word-spacing:0.540000px;}
.ws5e{word-spacing:0.600000px;}
.wsaa{word-spacing:0.660000px;}
.wsba{word-spacing:0.816000px;}
.wsb4{word-spacing:0.840000px;}
.ws8{word-spacing:0.886200px;}
.wsce{word-spacing:1.140000px;}
.wsa8{word-spacing:1.440000px;}
.wsa6{word-spacing:1.536000px;}
.wsab{word-spacing:1.560000px;}
.wscd{word-spacing:1.620000px;}
.ws7f{word-spacing:1.680000px;}
.wsd8{word-spacing:1.872000px;}
.ws82{word-spacing:1.920000px;}
.ws90{word-spacing:1.968000px;}
.ws6e{word-spacing:2.016000px;}
.ws10a{word-spacing:2.112000px;}
.ws41{word-spacing:2.220000px;}
.ws108{word-spacing:2.496000px;}
.wsb5{word-spacing:2.520000px;}
.ws31{word-spacing:2.580000px;}
.ws4f{word-spacing:2.820000px;}
.ws2f{word-spacing:2.880000px;}
.ws1f{word-spacing:2.940000px;}
.ws7c{word-spacing:2.976000px;}
.wsd3{word-spacing:3.240000px;}
.wsae{word-spacing:3.264000px;}
.ws99{word-spacing:3.300000px;}
.ws105{word-spacing:3.312000px;}
.ws81{word-spacing:3.540000px;}
.wsd1{word-spacing:3.840000px;}
.ws62{word-spacing:3.888000px;}
.ws36{word-spacing:3.900000px;}
.ws74{word-spacing:3.936000px;}
.ws9{word-spacing:3.960000px;}
.ws5f{word-spacing:3.984000px;}
.wsd5{word-spacing:4.260000px;}
.ws7d{word-spacing:4.320000px;}
.wsac{word-spacing:4.380000px;}
.wscf{word-spacing:4.740000px;}
.wsf{word-spacing:4.920000px;}
.wsa{word-spacing:4.980000px;}
.wsdf{word-spacing:5.460000px;}
.wse0{word-spacing:5.520000px;}
.wscb{word-spacing:14.070000px;}
.wsca{word-spacing:20.916000px;}
.wscc{word-spacing:25.536000px;}
.wsc6{word-spacing:37.044000px;}
.wsc9{word-spacing:39.144000px;}
.wsc5{word-spacing:45.570000px;}
.wsc8{word-spacing:58.044000px;}
.wsc7{word-spacing:68.922000px;}
.ws48{word-spacing:167.136000px;}
.ws4a{word-spacing:169.824000px;}
.ws4b{word-spacing:172.464000px;}
.ws4d{word-spacing:172.924200px;}
.ws4c{word-spacing:194.496000px;}
.ws49{word-spacing:197.808000px;}
.ws47{word-spacing:200.496000px;}
.wsa5{word-spacing:302.112000px;}
.wsa4{word-spacing:479.664000px;}
.wsb0{word-spacing:582.336000px;}
.wsaf{word-spacing:601.056000px;}
.wsa9{word-spacing:694.992000px;}
.ws93{word-spacing:1010.448000px;}
.ws8c{word-spacing:1182.096000px;}
._d{margin-left:-2898.096000px;}
._39{margin-left:-2874.288000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._4{width:1.266000px;}
._a{width:2.520000px;}
._c{width:3.660000px;}
._6{width:4.740000px;}
._8{width:5.760000px;}
._7{width:7.140000px;}
._9{width:8.460000px;}
._b{width:9.810000px;}
._3b{width:11.220000px;}
._3a{width:12.330000px;}
._22{width:29.252400px;}
._6b{width:36.498000px;}
._68{width:37.590000px;}
._54{width:43.656000px;}
._59{width:45.948000px;}
._66{width:50.064000px;}
._55{width:55.776000px;}
._65{width:57.036000px;}
._64{width:60.564000px;}
._6a{width:66.276000px;}
._2e{width:67.440000px;}
._63{width:68.544000px;}
._5a{width:72.660000px;}
._60{width:74.760000px;}
._5e{width:75.894000px;}
._58{width:77.634000px;}
._67{width:86.058000px;}
._24{width:88.848000px;}
._4d{width:90.096000px;}
._69{width:92.454000px;}
._5b{width:93.660000px;}
._5d{width:98.070000px;}
._5f{width:100.800000px;}
._5c{width:102.144000px;}
._62{width:108.480000px;}
._14{width:112.464000px;}
._61{width:113.820000px;}
._46{width:115.728000px;}
._2b{width:117.792000px;}
._10{width:127.680000px;}
._13{width:130.326000px;}
._2a{width:132.966000px;}
._15{width:134.160000px;}
._11{width:139.488000px;}
._2c{width:144.816000px;}
._51{width:146.400000px;}
._47{width:151.728000px;}
._17{width:152.832000px;}
._29{width:163.304400px;}
._44{width:166.416000px;}
._19{width:176.496000px;}
._37{width:180.912000px;}
._1e{width:182.160000px;}
._28{width:191.424000px;}
._27{width:199.456800px;}
._41{width:202.320000px;}
._20{width:203.520000px;}
._26{width:207.984000px;}
._36{width:217.248000px;}
._4a{width:219.744000px;}
._4c{width:223.392000px;}
._1d{width:227.670000px;}
._4e{width:243.696000px;}
._50{width:246.096000px;}
._2f{width:255.368400px;}
._48{width:258.048000px;}
._23{width:265.344000px;}
._33{width:284.736000px;}
._31{width:295.296000px;}
._1b{width:307.152000px;}
._38{width:311.568000px;}
._25{width:322.128000px;}
._34{width:323.376000px;}
._43{width:324.768000px;}
._42{width:356.784000px;}
._18{width:359.376000px;}
._12{width:364.656000px;}
._1a{width:366.672000px;}
._35{width:381.080400px;}
._1c{width:386.016000px;}
._30{width:388.608000px;}
._f{width:390.480000px;}
._4b{width:398.400000px;}
._16{width:402.000000px;}
._49{width:403.728000px;}
._45{width:414.384000px;}
._53{width:423.360000px;}
._32{width:439.344000px;}
._3d{width:440.640000px;}
._1f{width:442.080000px;}
._52{width:444.720000px;}
._3f{width:474.288000px;}
._57{width:491.568000px;}
._2d{width:492.720000px;}
._3e{width:496.992000px;}
._e{width:504.720000px;}
._21{width:506.016000px;}
._56{width:549.696000px;}
._40{width:621.984000px;}
._4f{width:672.672000px;}
._3c{width:714.000000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fsb{font-size:62.116583px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2b{bottom:47.777250px;}
.y10d{bottom:83.011650px;}
.y144{bottom:83.129700px;}
.y11e{bottom:83.189100px;}
.y14c{bottom:83.330550px;}
.y185{bottom:83.543250px;}
.y86{bottom:83.628600px;}
.y127{bottom:83.649450px;}
.y113{bottom:83.673000px;}
.y61{bottom:83.770350px;}
.y130{bottom:83.862150px;}
.y193{bottom:84.403500px;}
.y1db{bottom:84.946350px;}
.yb0{bottom:85.249500px;}
.y1d{bottom:87.912300px;}
.y1d6{bottom:89.262000px;}
.y220{bottom:89.263500px;}
.y177{bottom:93.100050px;}
.yef{bottom:93.970350px;}
.y25b{bottom:95.263500px;}
.y10c{bottom:98.755650px;}
.y143{bottom:98.873700px;}
.y11d{bottom:98.933100px;}
.y14b{bottom:99.074550px;}
.y184{bottom:99.287250px;}
.y126{bottom:99.393450px;}
.y112{bottom:99.417000px;}
.y12f{bottom:99.606150px;}
.y192{bottom:100.147500px;}
.y1da{bottom:100.690350px;}
.y106{bottom:101.036100px;}
.y85{bottom:101.628600px;}
.yaf{bottom:101.749500px;}
.y60{bottom:101.770350px;}
.y1c{bottom:102.908550px;}
.y1d5{bottom:104.014500px;}
.y21f{bottom:104.263500px;}
.y176{bottom:109.600050px;}
.y25a{bottom:110.263500px;}
.yee{bottom:111.236100px;}
.yed{bottom:111.970350px;}
.y10b{bottom:114.499650px;}
.y142{bottom:114.617700px;}
.y11c{bottom:114.677100px;}
.y14a{bottom:114.818550px;}
.y183{bottom:115.031250px;}
.y125{bottom:115.137450px;}
.y12e{bottom:115.350150px;}
.y191{bottom:115.891500px;}
.y1d9{bottom:116.434350px;}
.y1b{bottom:117.904800px;}
.yae{bottom:117.997500px;}
.y1d4{bottom:118.767000px;}
.y21e{bottom:119.263500px;}
.y84{bottom:119.628600px;}
.y5f{bottom:119.770350px;}
.y259{bottom:125.263500px;}
.y175{bottom:125.848050px;}
.y10a{bottom:130.243650px;}
.y11b{bottom:130.421100px;}
.y149{bottom:130.562550px;}
.y182{bottom:130.775250px;}
.y124{bottom:130.881450px;}
.y12d{bottom:131.094150px;}
.y1d3{bottom:133.519500px;}
.y21d{bottom:134.263500px;}
.yad{bottom:134.497500px;}
.y116{bottom:136.080900px;}
.y105{bottom:137.036100px;}
.y1e1{bottom:137.365350px;}
.y83{bottom:137.628600px;}
.y5e{bottom:137.770350px;}
.y258{bottom:140.263500px;}
.y174{bottom:142.348050px;}
.y11a{bottom:146.165100px;}
.y147{bottom:146.925150px;}
.yec{bottom:147.463500px;}
.y1d2{bottom:148.268250px;}
.y21c{bottom:149.263500px;}
.y197{bottom:149.907450px;}
.y19b{bottom:149.919450px;}
.yac{bottom:150.997500px;}
.y104{bottom:155.036100px;}
.y257{bottom:155.263500px;}
.y82{bottom:155.628600px;}
.y5d{bottom:155.770350px;}
.y173{bottom:158.848050px;}
.y189{bottom:160.956600px;}
.y119{bottom:161.909100px;}
.yeb{bottom:162.463500px;}
.y13c{bottom:162.653100px;}
.y1d1{bottom:163.020750px;}
.y21b{bottom:164.263500px;}
.y138{bottom:164.338650px;}
.y134{bottom:164.350650px;}
.y150{bottom:166.693050px;}
.yab{bottom:167.245500px;}
.y12b{bottom:167.329500px;}
.y13f{bottom:167.759700px;}
.y256{bottom:170.263500px;}
.y1e0{bottom:173.365350px;}
.y81{bottom:173.628600px;}
.y5c{bottom:173.770350px;}
.y172{bottom:175.096050px;}
.yea{bottom:177.463500px;}
.y118{bottom:177.653100px;}
.y1d0{bottom:177.773250px;}
.y21a{bottom:179.263500px;}
.y26{bottom:182.489100px;}
.yaa{bottom:183.745500px;}
.y255{bottom:185.263500px;}
.y171{bottom:191.596050px;}
.y80{bottom:191.628600px;}
.y5b{bottom:191.770350px;}
.ye9{bottom:192.463500px;}
.y1cf{bottom:192.525750px;}
.y219{bottom:194.263500px;}
.ya9{bottom:200.245500px;}
.y254{bottom:200.263500px;}
.y25{bottom:200.489100px;}
.y1ce{bottom:207.278250px;}
.ye8{bottom:207.463500px;}
.y170{bottom:208.096050px;}
.y122{bottom:208.996050px;}
.y218{bottom:209.263500px;}
.y7f{bottom:209.628600px;}
.y5a{bottom:209.770350px;}
.y253{bottom:215.263500px;}
.ya8{bottom:216.493500px;}
.y24{bottom:218.489100px;}
.y1cd{bottom:222.030750px;}
.ye7{bottom:222.463500px;}
.y217{bottom:224.263500px;}
.y16f{bottom:224.596050px;}
.y103{bottom:227.036100px;}
.y7e{bottom:227.628600px;}
.y59{bottom:227.770350px;}
.y252{bottom:230.263500px;}
.ya7{bottom:232.741500px;}
.y23{bottom:236.489100px;}
.y1cc{bottom:236.780100px;}
.ye6{bottom:237.463500px;}
.y216{bottom:239.263500px;}
.y16e{bottom:240.844050px;}
.y251{bottom:245.263500px;}
.y7d{bottom:245.628600px;}
.y58{bottom:245.770350px;}
.ya6{bottom:249.068700px;}
.y1cb{bottom:251.532600px;}
.ye5{bottom:252.463500px;}
.y215{bottom:254.263500px;}
.y22{bottom:254.489100px;}
.y16d{bottom:257.344050px;}
.y250{bottom:260.263500px;}
.y102{bottom:263.036100px;}
.y1df{bottom:263.365350px;}
.y7c{bottom:263.628600px;}
.y57{bottom:263.770350px;}
.ya5{bottom:265.316700px;}
.y1ca{bottom:266.285100px;}
.ye4{bottom:267.463500px;}
.y214{bottom:269.263500px;}
.y21{bottom:272.489100px;}
.y16c{bottom:273.592050px;}
.y24f{bottom:275.263500px;}
.y1c9{bottom:281.037600px;}
.y7b{bottom:281.628600px;}
.y56{bottom:281.770350px;}
.ya4{bottom:281.816700px;}
.ye3{bottom:282.463500px;}
.y213{bottom:284.263500px;}
.y16b{bottom:290.092050px;}
.y24e{bottom:290.263500px;}
.y20{bottom:290.489100px;}
.y1c8{bottom:295.790100px;}
.ye2{bottom:297.463500px;}
.ya3{bottom:298.064700px;}
.y101{bottom:299.036100px;}
.y212{bottom:299.263500px;}
.y7a{bottom:299.628600px;}
.y55{bottom:299.770350px;}
.y24d{bottom:305.263500px;}
.y16a{bottom:306.340050px;}
.y1f{bottom:308.489100px;}
.y1c7{bottom:310.542600px;}
.ye1{bottom:312.463500px;}
.y211{bottom:314.263500px;}
.ya2{bottom:314.312700px;}
.y1de{bottom:317.365350px;}
.y79{bottom:317.628600px;}
.y54{bottom:317.770350px;}
.y24c{bottom:320.263500px;}
.y169{bottom:322.840050px;}
.y1c6{bottom:325.288800px;}
.y28{bottom:326.489100px;}
.ye0{bottom:327.463500px;}
.y210{bottom:329.263500px;}
.ya1{bottom:330.560700px;}
.y24b{bottom:335.263500px;}
.y78{bottom:335.628600px;}
.y53{bottom:335.770350px;}
.y115{bottom:338.904900px;}
.y168{bottom:339.340050px;}
.y1c5{bottom:340.041300px;}
.ydf{bottom:342.463500px;}
.y1e{bottom:344.084100px;}
.y20f{bottom:344.263500px;}
.y27{bottom:344.489100px;}
.ya0{bottom:346.808700px;}
.y24a{bottom:350.263500px;}
.y100{bottom:353.036100px;}
.y196{bottom:353.151450px;}
.y19a{bottom:353.163450px;}
.y12a{bottom:353.569500px;}
.y77{bottom:353.628600px;}
.y52{bottom:353.770350px;}
.y1c4{bottom:354.793800px;}
.y167{bottom:355.840050px;}
.yde{bottom:357.463500px;}
.y20e{bottom:359.263500px;}
.y9f{bottom:363.056700px;}
.y137{bottom:364.186650px;}
.y133{bottom:364.198650px;}
.y249{bottom:365.263500px;}
.y1c3{bottom:369.546300px;}
.y76{bottom:371.628600px;}
.y51{bottom:371.770350px;}
.y166{bottom:372.088050px;}
.ydd{bottom:372.463500px;}
.y20d{bottom:374.263500px;}
.y121{bottom:376.528050px;}
.y9e{bottom:379.304700px;}
.y248{bottom:380.263500px;}
.y110{bottom:381.836700px;}
.y188{bottom:382.488600px;}
.y1c2{bottom:384.298800px;}
.y146{bottom:386.097150px;}
.ydc{bottom:387.463500px;}
.y165{bottom:388.588050px;}
.yff{bottom:389.036100px;}
.y20c{bottom:389.263500px;}
.y75{bottom:389.628600px;}
.y50{bottom:389.770350px;}
.y247{bottom:395.263500px;}
.y9d{bottom:395.552700px;}
.ydb{bottom:402.463500px;}
.y20b{bottom:404.263500px;}
.y164{bottom:404.836050px;}
.y74{bottom:407.628600px;}
.y4f{bottom:407.770350px;}
.y246{bottom:410.263500px;}
.y9c{bottom:411.800700px;}
.y1c1{bottom:411.808800px;}
.y14f{bottom:414.157050px;}
.yda{bottom:417.463500px;}
.y1a{bottom:419.158650px;}
.y20a{bottom:419.263500px;}
.y163{bottom:421.336050px;}
.y245{bottom:425.263500px;}
.y73{bottom:425.628600px;}
.y4e{bottom:425.770350px;}
.y10f{bottom:427.124700px;}
.y9b{bottom:428.048700px;}
.y13b{bottom:428.825100px;}
.yd9{bottom:432.463500px;}
.y209{bottom:434.263500px;}
.y19{bottom:437.164200px;}
.y162{bottom:437.836050px;}
.y1c0{bottom:439.318800px;}
.y244{bottom:440.263500px;}
.y72{bottom:443.628600px;}
.y4d{bottom:443.770350px;}
.y9a{bottom:444.296700px;}
.yd8{bottom:447.463500px;}
.y208{bottom:449.263500px;}
.y161{bottom:454.084050px;}
.y243{bottom:455.263500px;}
.y99{bottom:460.544700px;}
.yfe{bottom:461.036100px;}
.y1dd{bottom:461.365350px;}
.y71{bottom:461.628600px;}
.y4c{bottom:461.770350px;}
.yd7{bottom:462.463500px;}
.y207{bottom:464.263500px;}
.y18{bottom:464.509200px;}
.y242{bottom:470.263500px;}
.y1bf{bottom:470.472600px;}
.y160{bottom:470.584050px;}
.y98{bottom:476.792700px;}
.yd6{bottom:477.463500px;}
.yfd{bottom:479.036100px;}
.y206{bottom:479.263500px;}
.y140{bottom:479.423700px;}
.y13e{bottom:479.428950px;}
.y70{bottom:479.628600px;}
.y4b{bottom:479.770350px;}
.y17{bottom:482.509200px;}
.y241{bottom:485.263500px;}
.y15f{bottom:486.832050px;}
.y1be{bottom:489.972600px;}
.yd5{bottom:492.463500px;}
.y97{bottom:493.040700px;}
.y205{bottom:494.263500px;}
.y6f{bottom:497.628600px;}
.y4a{bottom:497.770350px;}
.y240{bottom:500.263500px;}
.y16{bottom:500.509200px;}
.y15e{bottom:503.332050px;}
.yd4{bottom:507.463500px;}
.y204{bottom:509.263500px;}
.y96{bottom:509.288700px;}
.y1bd{bottom:509.472600px;}
.yfc{bottom:515.036100px;}
.y23f{bottom:515.263500px;}
.y6e{bottom:515.628600px;}
.y49{bottom:515.770350px;}
.y15{bottom:518.509200px;}
.y15d{bottom:519.832050px;}
.yd3{bottom:522.463500px;}
.y203{bottom:524.263500px;}
.y95{bottom:525.536700px;}
.y23e{bottom:530.263500px;}
.yfb{bottom:533.036100px;}
.y6d{bottom:533.628600px;}
.y48{bottom:533.770350px;}
.y195{bottom:535.347450px;}
.y199{bottom:535.359450px;}
.y15c{bottom:536.332050px;}
.y14{bottom:536.509200px;}
.y129{bottom:537.253500px;}
.yd2{bottom:537.463500px;}
.y202{bottom:539.263500px;}
.y1d8{bottom:540.334350px;}
.y94{bottom:541.784700px;}
.y120{bottom:544.372050px;}
.y23d{bottom:545.263500px;}
.y136{bottom:549.994650px;}
.y132{bottom:550.006650px;}
.y6c{bottom:551.628600px;}
.y1b4{bottom:551.637600px;}
.y47{bottom:551.770350px;}
.y1bc{bottom:551.772600px;}
.yd1{bottom:552.463500px;}
.y15b{bottom:552.580050px;}
.y201{bottom:554.263500px;}
.y13{bottom:554.509200px;}
.y1d7{bottom:556.078350px;}
.y93{bottom:558.032700px;}
.y23c{bottom:560.263500px;}
.yd0{bottom:567.463500px;}
.y15a{bottom:568.828050px;}
.y200{bottom:569.263500px;}
.y6b{bottom:569.628600px;}
.y1b3{bottom:569.637600px;}
.y46{bottom:569.770350px;}
.y1bb{bottom:569.772600px;}
.y12{bottom:572.509200px;}
.y92{bottom:574.280700px;}
.y23b{bottom:575.263500px;}
.y145{bottom:580.413150px;}
.ycf{bottom:582.463500px;}
.y114{bottom:583.176900px;}
.y1ff{bottom:584.263500px;}
.y159{bottom:585.076050px;}
.yfa{bottom:587.036100px;}
.y6a{bottom:587.628600px;}
.y45{bottom:587.770350px;}
.y1ba{bottom:587.772600px;}
.y23a{bottom:590.263500px;}
.y11{bottom:590.509200px;}
.yce{bottom:597.463500px;}
.y1fe{bottom:599.263500px;}
.y158{bottom:601.576050px;}
.y91{bottom:603.284700px;}
.y1b2{bottom:605.232600px;}
.y239{bottom:605.263500px;}
.y69{bottom:605.628600px;}
.y44{bottom:605.770350px;}
.y1b9{bottom:605.772600px;}
.y10{bottom:608.509200px;}
.ycd{bottom:612.463500px;}
.y187{bottom:614.220600px;}
.y1fd{bottom:614.263500px;}
.y14e{bottom:615.061050px;}
.y157{bottom:617.824050px;}
.y90{bottom:619.784700px;}
.y238{bottom:620.263500px;}
.y68{bottom:623.628600px;}
.y43{bottom:623.770350px;}
.y1b8{bottom:623.772600px;}
.ycc{bottom:627.463500px;}
.y1fc{bottom:629.263500px;}
.y156{bottom:634.324050px;}
.y237{bottom:635.263500px;}
.yf9{bottom:641.036100px;}
.y67{bottom:641.628600px;}
.y42{bottom:641.770350px;}
.y1b7{bottom:641.772600px;}
.ycb{bottom:642.463500px;}
.y10e{bottom:644.192700px;}
.y1fb{bottom:644.263500px;}
.y236{bottom:650.263500px;}
.y155{bottom:650.824050px;}
.y8f{bottom:652.165350px;}
.yf{bottom:653.667300px;}
.yca{bottom:657.463500px;}
.y1fa{bottom:659.263500px;}
.y66{bottom:659.628600px;}
.y41{bottom:659.770350px;}
.y1b1{bottom:659.772600px;}
.y235{bottom:665.263500px;}
.ye{bottom:666.118050px;}
.y13a{bottom:669.917100px;}
.y8e{bottom:671.665350px;}
.yc9{bottom:672.463500px;}
.y1f9{bottom:674.263500px;}
.y65{bottom:677.628600px;}
.y40{bottom:677.770350px;}
.y1b0{bottom:677.772600px;}
.y234{bottom:680.263500px;}
.y154{bottom:682.336050px;}
.yc8{bottom:687.463500px;}
.y1f8{bottom:689.263500px;}
.yf8{bottom:695.036100px;}
.y233{bottom:695.263500px;}
.y64{bottom:695.628600px;}
.y3f{bottom:695.770350px;}
.y1af{bottom:695.772600px;}
.y11f{bottom:702.232050px;}
.yc7{bottom:702.463500px;}
.y1f7{bottom:704.263500px;}
.yd{bottom:707.694150px;}
.y232{bottom:710.263500px;}
.y8d{bottom:713.500350px;}
.y63{bottom:713.635350px;}
.y3e{bottom:713.770350px;}
.y1ae{bottom:713.772600px;}
.y153{bottom:717.231150px;}
.yc6{bottom:717.463500px;}
.y1f6{bottom:719.263500px;}
.yc{bottom:721.194150px;}
.y231{bottom:725.263500px;}
.yb{bottom:730.833600px;}
.y8c{bottom:731.500350px;}
.y3d{bottom:731.770350px;}
.y1ad{bottom:731.772600px;}
.yc5{bottom:732.463500px;}
.y1f5{bottom:734.263500px;}
.y128{bottom:735.397500px;}
.y152{bottom:736.731150px;}
.y194{bottom:737.523450px;}
.y198{bottom:737.535450px;}
.y135{bottom:740.062650px;}
.y131{bottom:740.074650px;}
.y230{bottom:740.263500px;}
.yc4{bottom:747.463500px;}
.ya{bottom:748.194150px;}
.yf7{bottom:749.036100px;}
.y62{bottom:749.230350px;}
.y1f4{bottom:749.263500px;}
.y8b{bottom:749.500350px;}
.y3c{bottom:749.770350px;}
.y1ac{bottom:749.772600px;}
.y22f{bottom:755.263500px;}
.yc3{bottom:762.463500px;}
.y1f3{bottom:764.263500px;}
.y8a{bottom:767.500350px;}
.y3b{bottom:767.770350px;}
.y1ab{bottom:767.772600px;}
.y22e{bottom:770.263500px;}
.yc2{bottom:777.463500px;}
.y9{bottom:778.480800px;}
.y1f2{bottom:779.263500px;}
.y22d{bottom:785.263500px;}
.y3a{bottom:785.770350px;}
.y1aa{bottom:785.772600px;}
.y180{bottom:788.405250px;}
.yc1{bottom:792.463500px;}
.y1f1{bottom:794.263500px;}
.y22c{bottom:800.263500px;}
.yf6{bottom:803.036100px;}
.y89{bottom:803.365350px;}
.y17f{bottom:803.405250px;}
.y39{bottom:803.770350px;}
.y1a9{bottom:803.772600px;}
.yc0{bottom:807.463500px;}
.y1f0{bottom:809.263500px;}
.y22b{bottom:815.263500px;}
.y17e{bottom:818.405250px;}
.y38{bottom:821.770350px;}
.y1a8{bottom:821.772600px;}
.ybf{bottom:822.463500px;}
.y1ef{bottom:824.263500px;}
.y8{bottom:824.622000px;}
.y22a{bottom:830.263500px;}
.y17d{bottom:833.405250px;}
.y186{bottom:837.444600px;}
.ybe{bottom:837.463500px;}
.yf5{bottom:839.036100px;}
.y88{bottom:839.230350px;}
.y1ee{bottom:839.263500px;}
.y1dc{bottom:839.365350px;}
.y37{bottom:839.770350px;}
.y1a7{bottom:839.772600px;}
.y14d{bottom:840.421050px;}
.y229{bottom:845.263500px;}
.y17c{bottom:848.405250px;}
.ybd{bottom:852.463500px;}
.y1ed{bottom:854.263500px;}
.y36{bottom:857.770350px;}
.y1a6{bottom:857.772600px;}
.y228{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y17b{bottom:863.405250px;}
.ybc{bottom:867.463500px;}
.y1ec{bottom:869.263500px;}
.y227{bottom:875.263500px;}
.y35{bottom:875.770350px;}
.y1a5{bottom:875.772600px;}
.y17a{bottom:878.405250px;}
.ybb{bottom:882.463500px;}
.y1eb{bottom:884.263500px;}
.y226{bottom:890.263500px;}
.yf4{bottom:893.036100px;}
.y34{bottom:893.770350px;}
.y1a4{bottom:893.772600px;}
.yba{bottom:897.463500px;}
.y6{bottom:897.543600px;}
.y1ea{bottom:899.263500px;}
.y225{bottom:905.263500px;}
.yf3{bottom:911.036100px;}
.y179{bottom:911.515350px;}
.y33{bottom:911.770350px;}
.y1a3{bottom:911.772600px;}
.yb9{bottom:912.463500px;}
.y1e9{bottom:914.263500px;}
.y224{bottom:920.263500px;}
.yb8{bottom:927.463500px;}
.yf2{bottom:929.036100px;}
.y1e8{bottom:929.263500px;}
.y178{bottom:929.515350px;}
.y32{bottom:929.770350px;}
.y1a2{bottom:929.772600px;}
.y5{bottom:934.004400px;}
.y223{bottom:935.263500px;}
.yb7{bottom:942.463500px;}
.y1e7{bottom:944.263500px;}
.y31{bottom:947.770350px;}
.y1a1{bottom:947.772600px;}
.y222{bottom:950.263500px;}
.yb6{bottom:957.463500px;}
.y1e6{bottom:959.263500px;}
.y109{bottom:965.036100px;}
.y190{bottom:965.263500px;}
.y30{bottom:965.770350px;}
.y1a0{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y1e5{bottom:974.263500px;}
.y18f{bottom:980.263500px;}
.yf1{bottom:983.036100px;}
.y2f{bottom:983.770350px;}
.y19f{bottom:983.772600px;}
.y1e4{bottom:989.263500px;}
.yb5{bottom:989.811000px;}
.y18e{bottom:995.263500px;}
.yf0{bottom:1001.036100px;}
.y2e{bottom:1001.770350px;}
.y19e{bottom:1001.772600px;}
.y1e3{bottom:1004.263500px;}
.yb4{bottom:1005.417000px;}
.y3{bottom:1006.926000px;}
.y18d{bottom:1010.263500px;}
.y108{bottom:1019.036100px;}
.y2d{bottom:1019.770350px;}
.y1b6{bottom:1019.772600px;}
.yb3{bottom:1019.776200px;}
.y18c{bottom:1025.263500px;}
.y107{bottom:1037.036100px;}
.y1e2{bottom:1037.365350px;}
.y19d{bottom:1037.367600px;}
.yb2{bottom:1037.371200px;}
.y2c{bottom:1037.770350px;}
.y1b5{bottom:1037.772600px;}
.y18b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y139{bottom:1132.402650px;}
.y123{bottom:1132.408050px;}
.y13d{bottom:1132.409100px;}
.y111{bottom:1132.412700px;}
.y148{bottom:1132.413150px;}
.y141{bottom:1132.415700px;}
.y18a{bottom:1132.416600px;}
.y117{bottom:1132.416900px;}
.y151{bottom:1132.417050px;}
.y12c{bottom:1132.417500px;}
.y87{bottom:1132.418700px;}
.y181{bottom:1132.421250px;}
.y221{bottom:1132.423500px;}
.y19c{bottom:1132.431450px;}
.yb1{bottom:1132.441500px;}
.y2a{bottom:1136.089500px;}
.y29{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h17{height:29.162109px;}
.h18{height:29.182617px;}
.h19{height:29.187309px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h13{height:33.328125px;}
.h12{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h14{height:37.520508px;}
.he{height:41.660156px;}
.hf{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.718034px;}
.h9{height:43.740234px;}
.h16{height:44.100000px;}
.h15{height:48.699401px;}
.h5{height:49.139234px;}
.h3{height:56.786133px;}
.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;}
.x76{left:78.653250px;}
.x7c{left:87.161250px;}
.x2a{left:91.385550px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.921300px;}
.x2c{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x84{left:123.307050px;}
.x3{left:125.433000px;}
.x29{left:129.660000px;}
.x7{left:131.816400px;}
.x7d{left:142.015800px;}
.x6d{left:155.622000px;}
.x66{left:158.173200px;}
.x71{left:160.086600px;}
.x5d{left:162.000000px;}
.x81{left:175.301550px;}
.x65{left:177.307050px;}
.x68{left:181.559100px;}
.x53{left:183.184950px;}
.x5{left:191.360250px;}
.x20{left:193.437300px;}
.x6a{left:196.866150px;}
.x2b{left:202.423050px;}
.x80{left:203.956050px;}
.x6{left:212.876400px;}
.x54{left:215.524950px;}
.x7e{left:220.135350px;}
.x5f{left:230.288700px;}
.x55{left:254.868600px;}
.x60{left:262.361400px;}
.x6b{left:264.894150px;}
.x77{left:269.993250px;}
.x56{left:271.544100px;}
.x2d{left:301.347900px;}
.x7f{left:305.701050px;}
.x2e{left:317.875200px;}
.x75{left:319.001250px;}
.x73{left:352.482600px;}
.x6e{left:356.526000px;}
.x25{left:376.264350px;}
.x63{left:382.681800px;}
.x6c{left:390.318150px;}
.x61{left:398.039550px;}
.x62{left:414.566850px;}
.x57{left:419.299500px;}
.x58{left:435.826800px;}
.x78{left:440.069250px;}
.x67{left:441.565200px;}
.x72{left:444.750600px;}
.x79{left:448.577250px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x74{left:465.592650px;}
.x4a{left:467.457450px;}
.x12{left:478.345350px;}
.x8{left:480.476400px;}
.x83{left:482.603250px;}
.xf{left:491.105400px;}
.x4b{left:498.984750px;}
.x69{left:503.651100px;}
.x19{left:508.785300px;}
.x3f{left:512.177700px;}
.x15{left:515.245350px;}
.x5e{left:516.612000px;}
.x39{left:517.775850px;}
.x41{left:520.752300px;}
.xe{left:525.275400px;}
.x64{left:528.004050px;}
.x26{left:531.592350px;}
.x5b{left:533.437650px;}
.x3c{left:541.604550px;}
.x3e{left:543.706950px;}
.x40{left:544.948950px;}
.x3a{left:549.303150px;}
.x17{left:551.530350px;}
.x42{left:552.574200px;}
.x37{left:553.785000px;}
.x35{left:556.421550px;}
.x36{left:557.593350px;}
.x2f{left:560.793300px;}
.x51{left:562.986150px;}
.x5c{left:566.208900px;}
.x50{left:569.117400px;}
.x3d{left:573.256050px;}
.x30{left:578.195100px;}
.x1a{left:579.741300px;}
.x38{left:585.359400px;}
.x1b{left:589.569300px;}
.x52{left:594.927750px;}
.x82{left:596.125350px;}
.x14{left:604.735350px;}
.x16{left:609.025350px;}
.x13{left:612.925350px;}
.x45{left:614.511750px;}
.x6f{left:617.382000px;}
.x7a{left:618.653250px;}
.x4e{left:619.679850px;}
.x49{left:624.134250px;}
.x7b{left:627.161250px;}
.x46{left:645.994050px;}
.x4c{left:647.024250px;}
.x4f{left:651.964350px;}
.x47{left:655.890900px;}
.x1c{left:660.525300px;}
.x11{left:663.492300px;}
.x33{left:665.942100px;}
.x23{left:668.008350px;}
.x21{left:669.417300px;}
.x48{left:672.538500px;}
.x1d{left:675.861300px;}
.x4d{left:680.209800px;}
.x34{left:682.732350px;}
.x2{left:693.365400px;}
.x43{left:712.522500px;}
.x59{left:719.816550px;}
.x3b{left:720.976950px;}
.x10{left:728.391600px;}
.x44{left:729.496200px;}
.x5a{left:736.956000px;}
.x24{left:740.956350px;}
.x70{left:743.862000px;}
.x1e{left:745.821300px;}
.x28{left:749.608350px;}
.x27{left:753.496350px;}
.x22{left:755.205300px;}
.x31{left:763.451400px;}
.x1f{left:765.645300px;}
.x32{left:795.118050px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:19.217600pt;}
.ls38{letter-spacing:-3.157333pt;}
.ls79{letter-spacing:-2.762667pt;}
.ls96{letter-spacing:-2.346667pt;}
.lsd{letter-spacing:-0.787733pt;}
.lsc{letter-spacing:-0.693333pt;}
.ls94{letter-spacing:-0.682667pt;}
.ls56{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls60{letter-spacing:-0.373333pt;}
.ls69{letter-spacing:-0.298667pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls70{letter-spacing:-0.170667pt;}
.lse{letter-spacing:-0.160000pt;}
.ls6a{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106667pt;}
.ls71{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls5f{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls67{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls86{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls81{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.320000pt;}
.ls73{letter-spacing:0.341333pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls88{letter-spacing:0.469333pt;}
.ls33{letter-spacing:0.480000pt;}
.ls7d{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls57{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.586667pt;}
.ls43{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.682667pt;}
.ls13{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls48{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.810667pt;}
.ls68{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls3d{letter-spacing:0.938667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls44{letter-spacing:1.024000pt;}
.lsa{letter-spacing:1.066667pt;}
.ls84{letter-spacing:1.109333pt;}
.ls7{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.173333pt;}
.ls6f{letter-spacing:1.194667pt;}
.ls25{letter-spacing:1.226667pt;}
.ls45{letter-spacing:1.237333pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls39{letter-spacing:1.322667pt;}
.ls51{letter-spacing:1.333333pt;}
.ls41{letter-spacing:1.365333pt;}
.ls1d{letter-spacing:1.386667pt;}
.ls7f{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.440000pt;}
.ls82{letter-spacing:1.450667pt;}
.ls54{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.546667pt;}
.ls90{letter-spacing:1.578667pt;}
.ls12{letter-spacing:1.600000pt;}
.ls3b{letter-spacing:1.621333pt;}
.ls20{letter-spacing:1.653333pt;}
.ls95{letter-spacing:1.664000pt;}
.ls42{letter-spacing:1.706667pt;}
.ls8a{letter-spacing:1.749333pt;}
.ls15{letter-spacing:1.760000pt;}
.ls58{letter-spacing:1.792000pt;}
.ls4c{letter-spacing:1.813333pt;}
.ls89{letter-spacing:1.834667pt;}
.ls1c{letter-spacing:1.866667pt;}
.ls8b{letter-spacing:1.877333pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls7e{letter-spacing:1.962667pt;}
.ls18{letter-spacing:1.973333pt;}
.ls80{letter-spacing:2.005333pt;}
.ls76{letter-spacing:2.026667pt;}
.ls3{letter-spacing:2.080000pt;}
.ls26{letter-spacing:2.133333pt;}
.ls85{letter-spacing:2.176000pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls8c{letter-spacing:2.218667pt;}
.ls50{letter-spacing:2.240000pt;}
.ls98{letter-spacing:2.261333pt;}
.ls52{letter-spacing:2.293333pt;}
.ls5b{letter-spacing:2.304000pt;}
.ls47{letter-spacing:2.346667pt;}
.ls83{letter-spacing:2.389333pt;}
.ls34{letter-spacing:2.400000pt;}
.ls8e{letter-spacing:2.432000pt;}
.ls2d{letter-spacing:2.453333pt;}
.ls92{letter-spacing:2.474667pt;}
.ls28{letter-spacing:2.506667pt;}
.ls8d{letter-spacing:2.517333pt;}
.ls27{letter-spacing:2.560000pt;}
.ls91{letter-spacing:2.602667pt;}
.ls5{letter-spacing:2.613333pt;}
.ls4b{letter-spacing:2.666667pt;}
.ls7c{letter-spacing:2.688000pt;}
.ls2c{letter-spacing:2.720000pt;}
.ls99{letter-spacing:2.730667pt;}
.ls49{letter-spacing:2.773333pt;}
.ls87{letter-spacing:2.816000pt;}
.ls21{letter-spacing:2.826667pt;}
.ls5c{letter-spacing:2.858667pt;}
.ls35{letter-spacing:2.880000pt;}
.ls2f{letter-spacing:2.933333pt;}
.ls4a{letter-spacing:3.093333pt;}
.ls7a{letter-spacing:3.146667pt;}
.ls63{letter-spacing:3.253333pt;}
.ls7b{letter-spacing:3.306667pt;}
.ls62{letter-spacing:3.360000pt;}
.ls6b{letter-spacing:3.413333pt;}
.ls53{letter-spacing:3.520000pt;}
.ls59{letter-spacing:3.541333pt;}
.ls75{letter-spacing:3.573333pt;}
.ls55{letter-spacing:3.626667pt;}
.ls8f{letter-spacing:3.669333pt;}
.ls5d{letter-spacing:3.840000pt;}
.ls4f{letter-spacing:3.893333pt;}
.ls93{letter-spacing:3.925333pt;}
.ls29{letter-spacing:3.946667pt;}
.ls5a{letter-spacing:3.968000pt;}
.ls77{letter-spacing:4.053333pt;}
.ls1b{letter-spacing:4.106667pt;}
.ls5e{letter-spacing:4.266667pt;}
.ls10{letter-spacing:4.373333pt;}
.ls97{letter-spacing:4.480000pt;}
.ls74{letter-spacing:4.693333pt;}
.ls65{letter-spacing:4.746667pt;}
.ls61{letter-spacing:4.853333pt;}
.ls4e{letter-spacing:4.906667pt;}
.ls64{letter-spacing:6.453333pt;}
.ls4d{letter-spacing:6.560000pt;}
.ls78{letter-spacing:112.970667pt;}
.ws5c{word-spacing:-55.214741pt;}
.ws5d{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws92{word-spacing:-17.600000pt;}
.wsd9{word-spacing:-16.480000pt;}
.ws5b{word-spacing:-16.426667pt;}
.ws43{word-spacing:-15.733333pt;}
.ws91{word-spacing:-15.466667pt;}
.ws96{word-spacing:-15.413333pt;}
.wsc4{word-spacing:-15.200000pt;}
.wsa2{word-spacing:-15.146667pt;}
.ws9d{word-spacing:-15.093333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws45{word-spacing:-14.773333pt;}
.ws19{word-spacing:-14.453333pt;}
.wsb1{word-spacing:-14.240000pt;}
.ws17{word-spacing:-14.133333pt;}
.ws18{word-spacing:-14.080000pt;}
.wsc2{word-spacing:-13.973333pt;}
.wsa3{word-spacing:-13.866667pt;}
.wsc0{word-spacing:-13.813333pt;}
.ws16{word-spacing:-13.760000pt;}
.ws97{word-spacing:-13.706667pt;}
.ws44{word-spacing:-13.600000pt;}
.wsa7{word-spacing:-13.546667pt;}
.wsc1{word-spacing:-13.440000pt;}
.ws107{word-spacing:-13.397333pt;}
.ws4{word-spacing:-13.386667pt;}
.wsc3{word-spacing:-13.333333pt;}
.ws9e{word-spacing:-13.280000pt;}
.wsf2{word-spacing:-13.141333pt;}
.ws15{word-spacing:-13.120000pt;}
.ws46{word-spacing:-13.066667pt;}
.ws56{word-spacing:-12.373333pt;}
.wsf1{word-spacing:-12.245333pt;}
.wsdb{word-spacing:-12.117333pt;}
.ws54{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.861333pt;}
.wsf0{word-spacing:-11.648000pt;}
.wse8{word-spacing:-11.562667pt;}
.ws59{word-spacing:-11.434667pt;}
.wsda{word-spacing:-11.392000pt;}
.wsee{word-spacing:-11.349333pt;}
.wsdc{word-spacing:-11.264000pt;}
.wseb{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws57{word-spacing:-11.093333pt;}
.wsef{word-spacing:-11.008000pt;}
.ws58{word-spacing:-10.965333pt;}
.wsea{word-spacing:-10.880000pt;}
.wsdd{word-spacing:-10.752000pt;}
.ws55{word-spacing:-10.666667pt;}
.ws5a{word-spacing:-10.624000pt;}
.wsec{word-spacing:-10.538667pt;}
.wsd7{word-spacing:-10.368000pt;}
.wse9{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.340800pt;}
.wsbd{word-spacing:-9.301333pt;}
.wsb9{word-spacing:-9.130667pt;}
.wsed{word-spacing:-8.320000pt;}
.ws4e{word-spacing:-7.509333pt;}
.ws83{word-spacing:-6.560000pt;}
.ws84{word-spacing:-4.906667pt;}
.ws8f{word-spacing:-4.853333pt;}
.ws100{word-spacing:-4.480000pt;}
.wsbb{word-spacing:-4.437333pt;}
.ws1b{word-spacing:-4.373333pt;}
.ws79{word-spacing:-4.266667pt;}
.ws29{word-spacing:-4.160000pt;}
.ws8e{word-spacing:-4.106667pt;}
.ws71{word-spacing:-3.968000pt;}
.ws3c{word-spacing:-3.946667pt;}
.wsf7{word-spacing:-3.925333pt;}
.ws85{word-spacing:-3.893333pt;}
.ws77{word-spacing:-3.840000pt;}
.ws102{word-spacing:-3.669333pt;}
.ws8b{word-spacing:-3.626667pt;}
.wsd2{word-spacing:-3.573333pt;}
.ws70{word-spacing:-3.541333pt;}
.ws89{word-spacing:-3.520000pt;}
.wsbf{word-spacing:-3.370667pt;}
.ws94{word-spacing:-3.360000pt;}
.wsde{word-spacing:-3.306667pt;}
.ws98{word-spacing:-3.253333pt;}
.ws80{word-spacing:-3.093333pt;}
.ws42{word-spacing:-2.933333pt;}
.ws51{word-spacing:-2.880000pt;}
.ws73{word-spacing:-2.858667pt;}
.ws33{word-spacing:-2.826667pt;}
.wsf8{word-spacing:-2.816000pt;}
.ws7a{word-spacing:-2.773333pt;}
.ws10b{word-spacing:-2.730667pt;}
.ws37{word-spacing:-2.720000pt;}
.wse1{word-spacing:-2.688000pt;}
.wse{word-spacing:-2.613333pt;}
.ws104{word-spacing:-2.602667pt;}
.ws7{word-spacing:-2.565333pt;}
.ws39{word-spacing:-2.560000pt;}
.wsff{word-spacing:-2.517333pt;}
.ws3a{word-spacing:-2.506667pt;}
.ws106{word-spacing:-2.474667pt;}
.wsd6{word-spacing:-2.453333pt;}
.ws101{word-spacing:-2.432000pt;}
.ws50{word-spacing:-2.400000pt;}
.wsf3{word-spacing:-2.389333pt;}
.ws78{word-spacing:-2.346667pt;}
.ws72{word-spacing:-2.304000pt;}
.ws9a{word-spacing:-2.293333pt;}
.ws109{word-spacing:-2.261333pt;}
.ws86{word-spacing:-2.240000pt;}
.wsfe{word-spacing:-2.218667pt;}
.ws2c{word-spacing:-2.186667pt;}
.wsf5{word-spacing:-2.176000pt;}
.ws38{word-spacing:-2.133333pt;}
.wsc{word-spacing:-2.080000pt;}
.wsd4{word-spacing:-2.026667pt;}
.wse6{word-spacing:-2.005333pt;}
.ws26{word-spacing:-1.973333pt;}
.wse3{word-spacing:-1.962667pt;}
.ws3d{word-spacing:-1.920000pt;}
.wsfd{word-spacing:-1.877333pt;}
.ws2a{word-spacing:-1.866667pt;}
.wsf9{word-spacing:-1.834667pt;}
.ws9f{word-spacing:-1.813333pt;}
.ws6d{word-spacing:-1.792000pt;}
.ws21{word-spacing:-1.760000pt;}
.wsfc{word-spacing:-1.749333pt;}
.ws6a{word-spacing:-1.706667pt;}
.wsfb{word-spacing:-1.664000pt;}
.ws32{word-spacing:-1.653333pt;}
.ws63{word-spacing:-1.621333pt;}
.ws1c{word-spacing:-1.600000pt;}
.ws103{word-spacing:-1.578667pt;}
.ws95{word-spacing:-1.546667pt;}
.ws8a{word-spacing:-1.493333pt;}
.wse5{word-spacing:-1.450667pt;}
.ws8d{word-spacing:-1.440000pt;}
.wse4{word-spacing:-1.408000pt;}
.ws2b{word-spacing:-1.386667pt;}
.ws69{word-spacing:-1.365333pt;}
.ws88{word-spacing:-1.333333pt;}
.ws60{word-spacing:-1.322667pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws75{word-spacing:-1.237333pt;}
.ws28{word-spacing:-1.226667pt;}
.wsb8{word-spacing:-1.194667pt;}
.ws22{word-spacing:-1.173333pt;}
.ws11{word-spacing:-1.120000pt;}
.wsf4{word-spacing:-1.109333pt;}
.ws14{word-spacing:-1.066667pt;}
.ws6f{word-spacing:-1.024000pt;}
.ws3e{word-spacing:-1.013333pt;}
.wsb6{word-spacing:-0.981333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.938667pt;}
.ws40{word-spacing:-0.906667pt;}
.wsbc{word-spacing:-0.896000pt;}
.ws9c{word-spacing:-0.853333pt;}
.ws64{word-spacing:-0.810667pt;}
.ws27{word-spacing:-0.800000pt;}
.ws53{word-spacing:-0.768000pt;}
.ws20{word-spacing:-0.746667pt;}
.wsb7{word-spacing:-0.725333pt;}
.ws1e{word-spacing:-0.693333pt;}
.ws66{word-spacing:-0.682667pt;}
.wsd{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.597333pt;}
.ws10{word-spacing:-0.586667pt;}
.ws68{word-spacing:-0.554667pt;}
.ws25{word-spacing:-0.533333pt;}
.wse2{word-spacing:-0.512000pt;}
.ws23{word-spacing:-0.480000pt;}
.wsfa{word-spacing:-0.469333pt;}
.ws2d{word-spacing:-0.426667pt;}
.ws61{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.341333pt;}
.ws34{word-spacing:-0.320000pt;}
.ws76{word-spacing:-0.298667pt;}
.ws2e{word-spacing:-0.266667pt;}
.wse7{word-spacing:-0.256000pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws67{word-spacing:-0.170667pt;}
.ws12{word-spacing:-0.160000pt;}
.wsf6{word-spacing:-0.128000pt;}
.ws3b{word-spacing:-0.106667pt;}
.wsad{word-spacing:-0.085333pt;}
.ws3f{word-spacing:-0.053333pt;}
.ws9b{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.042667pt;}
.ws87{word-spacing:0.053333pt;}
.wsb3{word-spacing:0.085333pt;}
.ws24{word-spacing:0.106667pt;}
.wsa1{word-spacing:0.128000pt;}
.wsb{word-spacing:0.160000pt;}
.wsb2{word-spacing:0.170667pt;}
.ws1d{word-spacing:0.213333pt;}
.ws52{word-spacing:0.266667pt;}
.wsa0{word-spacing:0.298667pt;}
.ws7e{word-spacing:0.373333pt;}
.ws35{word-spacing:0.426667pt;}
.wsd0{word-spacing:0.480000pt;}
.ws5e{word-spacing:0.533333pt;}
.wsaa{word-spacing:0.586667pt;}
.wsba{word-spacing:0.725333pt;}
.wsb4{word-spacing:0.746667pt;}
.ws8{word-spacing:0.787733pt;}
.wsce{word-spacing:1.013333pt;}
.wsa8{word-spacing:1.280000pt;}
.wsa6{word-spacing:1.365333pt;}
.wsab{word-spacing:1.386667pt;}
.wscd{word-spacing:1.440000pt;}
.ws7f{word-spacing:1.493333pt;}
.wsd8{word-spacing:1.664000pt;}
.ws82{word-spacing:1.706667pt;}
.ws90{word-spacing:1.749333pt;}
.ws6e{word-spacing:1.792000pt;}
.ws10a{word-spacing:1.877333pt;}
.ws41{word-spacing:1.973333pt;}
.ws108{word-spacing:2.218667pt;}
.wsb5{word-spacing:2.240000pt;}
.ws31{word-spacing:2.293333pt;}
.ws4f{word-spacing:2.506667pt;}
.ws2f{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.613333pt;}
.ws7c{word-spacing:2.645333pt;}
.wsd3{word-spacing:2.880000pt;}
.wsae{word-spacing:2.901333pt;}
.ws99{word-spacing:2.933333pt;}
.ws105{word-spacing:2.944000pt;}
.ws81{word-spacing:3.146667pt;}
.wsd1{word-spacing:3.413333pt;}
.ws62{word-spacing:3.456000pt;}
.ws36{word-spacing:3.466667pt;}
.ws74{word-spacing:3.498667pt;}
.ws9{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.541333pt;}
.wsd5{word-spacing:3.786667pt;}
.ws7d{word-spacing:3.840000pt;}
.wsac{word-spacing:3.893333pt;}
.wscf{word-spacing:4.213333pt;}
.wsf{word-spacing:4.373333pt;}
.wsa{word-spacing:4.426667pt;}
.wsdf{word-spacing:4.853333pt;}
.wse0{word-spacing:4.906667pt;}
.wscb{word-spacing:12.506667pt;}
.wsca{word-spacing:18.592000pt;}
.wscc{word-spacing:22.698667pt;}
.wsc6{word-spacing:32.928000pt;}
.wsc9{word-spacing:34.794667pt;}
.wsc5{word-spacing:40.506667pt;}
.wsc8{word-spacing:51.594667pt;}
.wsc7{word-spacing:61.264000pt;}
.ws48{word-spacing:148.565333pt;}
.ws4a{word-spacing:150.954667pt;}
.ws4b{word-spacing:153.301333pt;}
.ws4d{word-spacing:153.710400pt;}
.ws4c{word-spacing:172.885333pt;}
.ws49{word-spacing:175.829333pt;}
.ws47{word-spacing:178.218667pt;}
.wsa5{word-spacing:268.544000pt;}
.wsa4{word-spacing:426.368000pt;}
.wsb0{word-spacing:517.632000pt;}
.wsaf{word-spacing:534.272000pt;}
.wsa9{word-spacing:617.770667pt;}
.ws93{word-spacing:898.176000pt;}
.ws8c{word-spacing:1050.752000pt;}
._d{margin-left:-2576.085333pt;}
._39{margin-left:-2554.922667pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._4{width:1.125333pt;}
._a{width:2.240000pt;}
._c{width:3.253333pt;}
._6{width:4.213333pt;}
._8{width:5.120000pt;}
._7{width:6.346667pt;}
._9{width:7.520000pt;}
._b{width:8.720000pt;}
._3b{width:9.973333pt;}
._3a{width:10.960000pt;}
._22{width:26.002133pt;}
._6b{width:32.442667pt;}
._68{width:33.413333pt;}
._54{width:38.805333pt;}
._59{width:40.842667pt;}
._66{width:44.501333pt;}
._55{width:49.578667pt;}
._65{width:50.698667pt;}
._64{width:53.834667pt;}
._6a{width:58.912000pt;}
._2e{width:59.946667pt;}
._63{width:60.928000pt;}
._5a{width:64.586667pt;}
._60{width:66.453333pt;}
._5e{width:67.461333pt;}
._58{width:69.008000pt;}
._67{width:76.496000pt;}
._24{width:78.976000pt;}
._4d{width:80.085333pt;}
._69{width:82.181333pt;}
._5b{width:83.253333pt;}
._5d{width:87.173333pt;}
._5f{width:89.600000pt;}
._5c{width:90.794667pt;}
._62{width:96.426667pt;}
._14{width:99.968000pt;}
._61{width:101.173333pt;}
._46{width:102.869333pt;}
._2b{width:104.704000pt;}
._10{width:113.493333pt;}
._13{width:115.845333pt;}
._2a{width:118.192000pt;}
._15{width:119.253333pt;}
._11{width:123.989333pt;}
._2c{width:128.725333pt;}
._51{width:130.133333pt;}
._47{width:134.869333pt;}
._17{width:135.850667pt;}
._29{width:145.159467pt;}
._44{width:147.925333pt;}
._19{width:156.885333pt;}
._37{width:160.810667pt;}
._1e{width:161.920000pt;}
._28{width:170.154667pt;}
._27{width:177.294933pt;}
._41{width:179.840000pt;}
._20{width:180.906667pt;}
._26{width:184.874667pt;}
._36{width:193.109333pt;}
._4a{width:195.328000pt;}
._4c{width:198.570667pt;}
._1d{width:202.373333pt;}
._4e{width:216.618667pt;}
._50{width:218.752000pt;}
._2f{width:226.994133pt;}
._48{width:229.376000pt;}
._23{width:235.861333pt;}
._33{width:253.098667pt;}
._31{width:262.485333pt;}
._1b{width:273.024000pt;}
._38{width:276.949333pt;}
._25{width:286.336000pt;}
._34{width:287.445333pt;}
._43{width:288.682667pt;}
._42{width:317.141333pt;}
._18{width:319.445333pt;}
._12{width:324.138667pt;}
._1a{width:325.930667pt;}
._35{width:338.738133pt;}
._1c{width:343.125333pt;}
._30{width:345.429333pt;}
._f{width:347.093333pt;}
._4b{width:354.133333pt;}
._16{width:357.333333pt;}
._49{width:358.869333pt;}
._45{width:368.341333pt;}
._53{width:376.320000pt;}
._32{width:390.528000pt;}
._3d{width:391.680000pt;}
._1f{width:392.960000pt;}
._52{width:395.306667pt;}
._3f{width:421.589333pt;}
._57{width:436.949333pt;}
._2d{width:437.973333pt;}
._3e{width:441.770667pt;}
._e{width:448.640000pt;}
._21{width:449.792000pt;}
._56{width:488.618667pt;}
._40{width:552.874667pt;}
._4f{width:597.930667pt;}
._3c{width:634.666667pt;}
.fs5{font-size:24.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fsb{font-size:55.214741pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2b{bottom:42.468667pt;}
.y10d{bottom:73.788133pt;}
.y144{bottom:73.893067pt;}
.y11e{bottom:73.945867pt;}
.y14c{bottom:74.071600pt;}
.y185{bottom:74.260667pt;}
.y86{bottom:74.336533pt;}
.y127{bottom:74.355067pt;}
.y113{bottom:74.376000pt;}
.y61{bottom:74.462533pt;}
.y130{bottom:74.544133pt;}
.y193{bottom:75.025333pt;}
.y1db{bottom:75.507867pt;}
.yb0{bottom:75.777333pt;}
.y1d{bottom:78.144267pt;}
.y1d6{bottom:79.344000pt;}
.y220{bottom:79.345333pt;}
.y177{bottom:82.755600pt;}
.yef{bottom:83.529200pt;}
.y25b{bottom:84.678667pt;}
.y10c{bottom:87.782800pt;}
.y143{bottom:87.887733pt;}
.y11d{bottom:87.940533pt;}
.y14b{bottom:88.066267pt;}
.y184{bottom:88.255333pt;}
.y126{bottom:88.349733pt;}
.y112{bottom:88.370667pt;}
.y12f{bottom:88.538800pt;}
.y192{bottom:89.020000pt;}
.y1da{bottom:89.502533pt;}
.y106{bottom:89.809867pt;}
.y85{bottom:90.336533pt;}
.yaf{bottom:90.444000pt;}
.y60{bottom:90.462533pt;}
.y1c{bottom:91.474267pt;}
.y1d5{bottom:92.457333pt;}
.y21f{bottom:92.678667pt;}
.y176{bottom:97.422267pt;}
.y25a{bottom:98.012000pt;}
.yee{bottom:98.876533pt;}
.yed{bottom:99.529200pt;}
.y10b{bottom:101.777467pt;}
.y142{bottom:101.882400pt;}
.y11c{bottom:101.935200pt;}
.y14a{bottom:102.060933pt;}
.y183{bottom:102.250000pt;}
.y125{bottom:102.344400pt;}
.y12e{bottom:102.533467pt;}
.y191{bottom:103.014667pt;}
.y1d9{bottom:103.497200pt;}
.y1b{bottom:104.804267pt;}
.yae{bottom:104.886667pt;}
.y1d4{bottom:105.570667pt;}
.y21e{bottom:106.012000pt;}
.y84{bottom:106.336533pt;}
.y5f{bottom:106.462533pt;}
.y259{bottom:111.345333pt;}
.y175{bottom:111.864933pt;}
.y10a{bottom:115.772133pt;}
.y11b{bottom:115.929867pt;}
.y149{bottom:116.055600pt;}
.y182{bottom:116.244667pt;}
.y124{bottom:116.339067pt;}
.y12d{bottom:116.528133pt;}
.y1d3{bottom:118.684000pt;}
.y21d{bottom:119.345333pt;}
.yad{bottom:119.553333pt;}
.y116{bottom:120.960800pt;}
.y105{bottom:121.809867pt;}
.y1e1{bottom:122.102533pt;}
.y83{bottom:122.336533pt;}
.y5e{bottom:122.462533pt;}
.y258{bottom:124.678667pt;}
.y174{bottom:126.531600pt;}
.y11a{bottom:129.924533pt;}
.y147{bottom:130.600133pt;}
.yec{bottom:131.078667pt;}
.y1d2{bottom:131.794000pt;}
.y21c{bottom:132.678667pt;}
.y197{bottom:133.251067pt;}
.y19b{bottom:133.261733pt;}
.yac{bottom:134.220000pt;}
.y104{bottom:137.809867pt;}
.y257{bottom:138.012000pt;}
.y82{bottom:138.336533pt;}
.y5d{bottom:138.462533pt;}
.y173{bottom:141.198267pt;}
.y189{bottom:143.072533pt;}
.y119{bottom:143.919200pt;}
.yeb{bottom:144.412000pt;}
.y13c{bottom:144.580533pt;}
.y1d1{bottom:144.907333pt;}
.y21b{bottom:146.012000pt;}
.y138{bottom:146.078800pt;}
.y134{bottom:146.089467pt;}
.y150{bottom:148.171600pt;}
.yab{bottom:148.662667pt;}
.y12b{bottom:148.737333pt;}
.y13f{bottom:149.119733pt;}
.y256{bottom:151.345333pt;}
.y1e0{bottom:154.102533pt;}
.y81{bottom:154.336533pt;}
.y5c{bottom:154.462533pt;}
.y172{bottom:155.640933pt;}
.yea{bottom:157.745333pt;}
.y118{bottom:157.913867pt;}
.y1d0{bottom:158.020667pt;}
.y21a{bottom:159.345333pt;}
.y26{bottom:162.212533pt;}
.yaa{bottom:163.329333pt;}
.y255{bottom:164.678667pt;}
.y171{bottom:170.307600pt;}
.y80{bottom:170.336533pt;}
.y5b{bottom:170.462533pt;}
.ye9{bottom:171.078667pt;}
.y1cf{bottom:171.134000pt;}
.y219{bottom:172.678667pt;}
.ya9{bottom:177.996000pt;}
.y254{bottom:178.012000pt;}
.y25{bottom:178.212533pt;}
.y1ce{bottom:184.247333pt;}
.ye8{bottom:184.412000pt;}
.y170{bottom:184.974267pt;}
.y122{bottom:185.774267pt;}
.y218{bottom:186.012000pt;}
.y7f{bottom:186.336533pt;}
.y5a{bottom:186.462533pt;}
.y253{bottom:191.345333pt;}
.ya8{bottom:192.438667pt;}
.y24{bottom:194.212533pt;}
.y1cd{bottom:197.360667pt;}
.ye7{bottom:197.745333pt;}
.y217{bottom:199.345333pt;}
.y16f{bottom:199.640933pt;}
.y103{bottom:201.809867pt;}
.y7e{bottom:202.336533pt;}
.y59{bottom:202.462533pt;}
.y252{bottom:204.678667pt;}
.ya7{bottom:206.881333pt;}
.y23{bottom:210.212533pt;}
.y1cc{bottom:210.471200pt;}
.ye6{bottom:211.078667pt;}
.y216{bottom:212.678667pt;}
.y16e{bottom:214.083600pt;}
.y251{bottom:218.012000pt;}
.y7d{bottom:218.336533pt;}
.y58{bottom:218.462533pt;}
.ya6{bottom:221.394400pt;}
.y1cb{bottom:223.584533pt;}
.ye5{bottom:224.412000pt;}
.y215{bottom:226.012000pt;}
.y22{bottom:226.212533pt;}
.y16d{bottom:228.750267pt;}
.y250{bottom:231.345333pt;}
.y102{bottom:233.809867pt;}
.y1df{bottom:234.102533pt;}
.y7c{bottom:234.336533pt;}
.y57{bottom:234.462533pt;}
.ya5{bottom:235.837067pt;}
.y1ca{bottom:236.697867pt;}
.ye4{bottom:237.745333pt;}
.y214{bottom:239.345333pt;}
.y21{bottom:242.212533pt;}
.y16c{bottom:243.192933pt;}
.y24f{bottom:244.678667pt;}
.y1c9{bottom:249.811200pt;}
.y7b{bottom:250.336533pt;}
.y56{bottom:250.462533pt;}
.ya4{bottom:250.503733pt;}
.ye3{bottom:251.078667pt;}
.y213{bottom:252.678667pt;}
.y16b{bottom:257.859600pt;}
.y24e{bottom:258.012000pt;}
.y20{bottom:258.212533pt;}
.y1c8{bottom:262.924533pt;}
.ye2{bottom:264.412000pt;}
.ya3{bottom:264.946400pt;}
.y101{bottom:265.809867pt;}
.y212{bottom:266.012000pt;}
.y7a{bottom:266.336533pt;}
.y55{bottom:266.462533pt;}
.y24d{bottom:271.345333pt;}
.y16a{bottom:272.302267pt;}
.y1f{bottom:274.212533pt;}
.y1c7{bottom:276.037867pt;}
.ye1{bottom:277.745333pt;}
.y211{bottom:279.345333pt;}
.ya2{bottom:279.389067pt;}
.y1de{bottom:282.102533pt;}
.y79{bottom:282.336533pt;}
.y54{bottom:282.462533pt;}
.y24c{bottom:284.678667pt;}
.y169{bottom:286.968933pt;}
.y1c6{bottom:289.145600pt;}
.y28{bottom:290.212533pt;}
.ye0{bottom:291.078667pt;}
.y210{bottom:292.678667pt;}
.ya1{bottom:293.831733pt;}
.y24b{bottom:298.012000pt;}
.y78{bottom:298.336533pt;}
.y53{bottom:298.462533pt;}
.y115{bottom:301.248800pt;}
.y168{bottom:301.635600pt;}
.y1c5{bottom:302.258933pt;}
.ydf{bottom:304.412000pt;}
.y1e{bottom:305.852533pt;}
.y20f{bottom:306.012000pt;}
.y27{bottom:306.212533pt;}
.ya0{bottom:308.274400pt;}
.y24a{bottom:311.345333pt;}
.y100{bottom:313.809867pt;}
.y196{bottom:313.912400pt;}
.y19a{bottom:313.923067pt;}
.y12a{bottom:314.284000pt;}
.y77{bottom:314.336533pt;}
.y52{bottom:314.462533pt;}
.y1c4{bottom:315.372267pt;}
.y167{bottom:316.302267pt;}
.yde{bottom:317.745333pt;}
.y20e{bottom:319.345333pt;}
.y9f{bottom:322.717067pt;}
.y137{bottom:323.721467pt;}
.y133{bottom:323.732133pt;}
.y249{bottom:324.678667pt;}
.y1c3{bottom:328.485600pt;}
.y76{bottom:330.336533pt;}
.y51{bottom:330.462533pt;}
.y166{bottom:330.744933pt;}
.ydd{bottom:331.078667pt;}
.y20d{bottom:332.678667pt;}
.y121{bottom:334.691600pt;}
.y9e{bottom:337.159733pt;}
.y248{bottom:338.012000pt;}
.y110{bottom:339.410400pt;}
.y188{bottom:339.989867pt;}
.y1c2{bottom:341.598933pt;}
.y146{bottom:343.197467pt;}
.ydc{bottom:344.412000pt;}
.y165{bottom:345.411600pt;}
.yff{bottom:345.809867pt;}
.y20c{bottom:346.012000pt;}
.y75{bottom:346.336533pt;}
.y50{bottom:346.462533pt;}
.y247{bottom:351.345333pt;}
.y9d{bottom:351.602400pt;}
.ydb{bottom:357.745333pt;}
.y20b{bottom:359.345333pt;}
.y164{bottom:359.854267pt;}
.y74{bottom:362.336533pt;}
.y4f{bottom:362.462533pt;}
.y246{bottom:364.678667pt;}
.y9c{bottom:366.045067pt;}
.y1c1{bottom:366.052267pt;}
.y14f{bottom:368.139600pt;}
.yda{bottom:371.078667pt;}
.y1a{bottom:372.585467pt;}
.y20a{bottom:372.678667pt;}
.y163{bottom:374.520933pt;}
.y245{bottom:378.012000pt;}
.y73{bottom:378.336533pt;}
.y4e{bottom:378.462533pt;}
.y10f{bottom:379.666400pt;}
.y9b{bottom:380.487733pt;}
.y13b{bottom:381.177867pt;}
.yd9{bottom:384.412000pt;}
.y209{bottom:386.012000pt;}
.y19{bottom:388.590400pt;}
.y162{bottom:389.187600pt;}
.y1c0{bottom:390.505600pt;}
.y244{bottom:391.345333pt;}
.y72{bottom:394.336533pt;}
.y4d{bottom:394.462533pt;}
.y9a{bottom:394.930400pt;}
.yd8{bottom:397.745333pt;}
.y208{bottom:399.345333pt;}
.y161{bottom:403.630267pt;}
.y243{bottom:404.678667pt;}
.y99{bottom:409.373067pt;}
.yfe{bottom:409.809867pt;}
.y1dd{bottom:410.102533pt;}
.y71{bottom:410.336533pt;}
.y4c{bottom:410.462533pt;}
.yd7{bottom:411.078667pt;}
.y207{bottom:412.678667pt;}
.y18{bottom:412.897067pt;}
.y242{bottom:418.012000pt;}
.y1bf{bottom:418.197867pt;}
.y160{bottom:418.296933pt;}
.y98{bottom:423.815733pt;}
.yd6{bottom:424.412000pt;}
.yfd{bottom:425.809867pt;}
.y206{bottom:426.012000pt;}
.y140{bottom:426.154400pt;}
.y13e{bottom:426.159067pt;}
.y70{bottom:426.336533pt;}
.y4b{bottom:426.462533pt;}
.y17{bottom:428.897067pt;}
.y241{bottom:431.345333pt;}
.y15f{bottom:432.739600pt;}
.y1be{bottom:435.531200pt;}
.yd5{bottom:437.745333pt;}
.y97{bottom:438.258400pt;}
.y205{bottom:439.345333pt;}
.y6f{bottom:442.336533pt;}
.y4a{bottom:442.462533pt;}
.y240{bottom:444.678667pt;}
.y16{bottom:444.897067pt;}
.y15e{bottom:447.406267pt;}
.yd4{bottom:451.078667pt;}
.y204{bottom:452.678667pt;}
.y96{bottom:452.701067pt;}
.y1bd{bottom:452.864533pt;}
.yfc{bottom:457.809867pt;}
.y23f{bottom:458.012000pt;}
.y6e{bottom:458.336533pt;}
.y49{bottom:458.462533pt;}
.y15{bottom:460.897067pt;}
.y15d{bottom:462.072933pt;}
.yd3{bottom:464.412000pt;}
.y203{bottom:466.012000pt;}
.y95{bottom:467.143733pt;}
.y23e{bottom:471.345333pt;}
.yfb{bottom:473.809867pt;}
.y6d{bottom:474.336533pt;}
.y48{bottom:474.462533pt;}
.y195{bottom:475.864400pt;}
.y199{bottom:475.875067pt;}
.y15c{bottom:476.739600pt;}
.y14{bottom:476.897067pt;}
.y129{bottom:477.558667pt;}
.yd2{bottom:477.745333pt;}
.y202{bottom:479.345333pt;}
.y1d8{bottom:480.297200pt;}
.y94{bottom:481.586400pt;}
.y120{bottom:483.886267pt;}
.y23d{bottom:484.678667pt;}
.y136{bottom:488.884133pt;}
.y132{bottom:488.894800pt;}
.y6c{bottom:490.336533pt;}
.y1b4{bottom:490.344533pt;}
.y47{bottom:490.462533pt;}
.y1bc{bottom:490.464533pt;}
.yd1{bottom:491.078667pt;}
.y15b{bottom:491.182267pt;}
.y201{bottom:492.678667pt;}
.y13{bottom:492.897067pt;}
.y1d7{bottom:494.291867pt;}
.y93{bottom:496.029067pt;}
.y23c{bottom:498.012000pt;}
.yd0{bottom:504.412000pt;}
.y15a{bottom:505.624933pt;}
.y200{bottom:506.012000pt;}
.y6b{bottom:506.336533pt;}
.y1b3{bottom:506.344533pt;}
.y46{bottom:506.462533pt;}
.y1bb{bottom:506.464533pt;}
.y12{bottom:508.897067pt;}
.y92{bottom:510.471733pt;}
.y23b{bottom:511.345333pt;}
.y145{bottom:515.922800pt;}
.ycf{bottom:517.745333pt;}
.y114{bottom:518.379467pt;}
.y1ff{bottom:519.345333pt;}
.y159{bottom:520.067600pt;}
.yfa{bottom:521.809867pt;}
.y6a{bottom:522.336533pt;}
.y45{bottom:522.462533pt;}
.y1ba{bottom:522.464533pt;}
.y23a{bottom:524.678667pt;}
.y11{bottom:524.897067pt;}
.yce{bottom:531.078667pt;}
.y1fe{bottom:532.678667pt;}
.y158{bottom:534.734267pt;}
.y91{bottom:536.253067pt;}
.y1b2{bottom:537.984533pt;}
.y239{bottom:538.012000pt;}
.y69{bottom:538.336533pt;}
.y44{bottom:538.462533pt;}
.y1b9{bottom:538.464533pt;}
.y10{bottom:540.897067pt;}
.ycd{bottom:544.412000pt;}
.y187{bottom:545.973867pt;}
.y1fd{bottom:546.012000pt;}
.y14e{bottom:546.720933pt;}
.y157{bottom:549.176933pt;}
.y90{bottom:550.919733pt;}
.y238{bottom:551.345333pt;}
.y68{bottom:554.336533pt;}
.y43{bottom:554.462533pt;}
.y1b8{bottom:554.464533pt;}
.ycc{bottom:557.745333pt;}
.y1fc{bottom:559.345333pt;}
.y156{bottom:563.843600pt;}
.y237{bottom:564.678667pt;}
.yf9{bottom:569.809867pt;}
.y67{bottom:570.336533pt;}
.y42{bottom:570.462533pt;}
.y1b7{bottom:570.464533pt;}
.ycb{bottom:571.078667pt;}
.y10e{bottom:572.615733pt;}
.y1fb{bottom:572.678667pt;}
.y236{bottom:578.012000pt;}
.y155{bottom:578.510267pt;}
.y8f{bottom:579.702533pt;}
.yf{bottom:581.037600pt;}
.yca{bottom:584.412000pt;}
.y1fa{bottom:586.012000pt;}
.y66{bottom:586.336533pt;}
.y41{bottom:586.462533pt;}
.y1b1{bottom:586.464533pt;}
.y235{bottom:591.345333pt;}
.ye{bottom:592.104933pt;}
.y13a{bottom:595.481867pt;}
.y8e{bottom:597.035867pt;}
.yc9{bottom:597.745333pt;}
.y1f9{bottom:599.345333pt;}
.y65{bottom:602.336533pt;}
.y40{bottom:602.462533pt;}
.y1b0{bottom:602.464533pt;}
.y234{bottom:604.678667pt;}
.y154{bottom:606.520933pt;}
.yc8{bottom:611.078667pt;}
.y1f8{bottom:612.678667pt;}
.yf8{bottom:617.809867pt;}
.y233{bottom:618.012000pt;}
.y64{bottom:618.336533pt;}
.y3f{bottom:618.462533pt;}
.y1af{bottom:618.464533pt;}
.y11f{bottom:624.206267pt;}
.yc7{bottom:624.412000pt;}
.y1f7{bottom:626.012000pt;}
.yd{bottom:629.061467pt;}
.y232{bottom:631.345333pt;}
.y8d{bottom:634.222533pt;}
.y63{bottom:634.342533pt;}
.y3e{bottom:634.462533pt;}
.y1ae{bottom:634.464533pt;}
.y153{bottom:637.538800pt;}
.yc6{bottom:637.745333pt;}
.y1f6{bottom:639.345333pt;}
.yc{bottom:641.061467pt;}
.y231{bottom:644.678667pt;}
.yb{bottom:649.629867pt;}
.y8c{bottom:650.222533pt;}
.y3d{bottom:650.462533pt;}
.y1ad{bottom:650.464533pt;}
.yc5{bottom:651.078667pt;}
.y1f5{bottom:652.678667pt;}
.y128{bottom:653.686667pt;}
.y152{bottom:654.872133pt;}
.y194{bottom:655.576400pt;}
.y198{bottom:655.587067pt;}
.y135{bottom:657.833467pt;}
.y131{bottom:657.844133pt;}
.y230{bottom:658.012000pt;}
.yc4{bottom:664.412000pt;}
.ya{bottom:665.061467pt;}
.yf7{bottom:665.809867pt;}
.y62{bottom:665.982533pt;}
.y1f4{bottom:666.012000pt;}
.y8b{bottom:666.222533pt;}
.y3c{bottom:666.462533pt;}
.y1ac{bottom:666.464533pt;}
.y22f{bottom:671.345333pt;}
.yc3{bottom:677.745333pt;}
.y1f3{bottom:679.345333pt;}
.y8a{bottom:682.222533pt;}
.y3b{bottom:682.462533pt;}
.y1ab{bottom:682.464533pt;}
.y22e{bottom:684.678667pt;}
.yc2{bottom:691.078667pt;}
.y9{bottom:691.982933pt;}
.y1f2{bottom:692.678667pt;}
.y22d{bottom:698.012000pt;}
.y3a{bottom:698.462533pt;}
.y1aa{bottom:698.464533pt;}
.y180{bottom:700.804667pt;}
.yc1{bottom:704.412000pt;}
.y1f1{bottom:706.012000pt;}
.y22c{bottom:711.345333pt;}
.yf6{bottom:713.809867pt;}
.y89{bottom:714.102533pt;}
.y17f{bottom:714.138000pt;}
.y39{bottom:714.462533pt;}
.y1a9{bottom:714.464533pt;}
.yc0{bottom:717.745333pt;}
.y1f0{bottom:719.345333pt;}
.y22b{bottom:724.678667pt;}
.y17e{bottom:727.471333pt;}
.y38{bottom:730.462533pt;}
.y1a8{bottom:730.464533pt;}
.ybf{bottom:731.078667pt;}
.y1ef{bottom:732.678667pt;}
.y8{bottom:732.997333pt;}
.y22a{bottom:738.012000pt;}
.y17d{bottom:740.804667pt;}
.y186{bottom:744.395200pt;}
.ybe{bottom:744.412000pt;}
.yf5{bottom:745.809867pt;}
.y88{bottom:745.982533pt;}
.y1ee{bottom:746.012000pt;}
.y1dc{bottom:746.102533pt;}
.y37{bottom:746.462533pt;}
.y1a7{bottom:746.464533pt;}
.y14d{bottom:747.040933pt;}
.y229{bottom:751.345333pt;}
.y17c{bottom:754.138000pt;}
.ybd{bottom:757.745333pt;}
.y1ed{bottom:759.345333pt;}
.y36{bottom:762.462533pt;}
.y1a6{bottom:762.464533pt;}
.y228{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y17b{bottom:767.471333pt;}
.ybc{bottom:771.078667pt;}
.y1ec{bottom:772.678667pt;}
.y227{bottom:778.012000pt;}
.y35{bottom:778.462533pt;}
.y1a5{bottom:778.464533pt;}
.y17a{bottom:780.804667pt;}
.ybb{bottom:784.412000pt;}
.y1eb{bottom:786.012000pt;}
.y226{bottom:791.345333pt;}
.yf4{bottom:793.809867pt;}
.y34{bottom:794.462533pt;}
.y1a4{bottom:794.464533pt;}
.yba{bottom:797.745333pt;}
.y6{bottom:797.816533pt;}
.y1ea{bottom:799.345333pt;}
.y225{bottom:804.678667pt;}
.yf3{bottom:809.809867pt;}
.y179{bottom:810.235867pt;}
.y33{bottom:810.462533pt;}
.y1a3{bottom:810.464533pt;}
.yb9{bottom:811.078667pt;}
.y1e9{bottom:812.678667pt;}
.y224{bottom:818.012000pt;}
.yb8{bottom:824.412000pt;}
.yf2{bottom:825.809867pt;}
.y1e8{bottom:826.012000pt;}
.y178{bottom:826.235867pt;}
.y32{bottom:826.462533pt;}
.y1a2{bottom:826.464533pt;}
.y5{bottom:830.226133pt;}
.y223{bottom:831.345333pt;}
.yb7{bottom:837.745333pt;}
.y1e7{bottom:839.345333pt;}
.y31{bottom:842.462533pt;}
.y1a1{bottom:842.464533pt;}
.y222{bottom:844.678667pt;}
.yb6{bottom:851.078667pt;}
.y1e6{bottom:852.678667pt;}
.y109{bottom:857.809867pt;}
.y190{bottom:858.012000pt;}
.y30{bottom:858.462533pt;}
.y1a0{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y1e5{bottom:866.012000pt;}
.y18f{bottom:871.345333pt;}
.yf1{bottom:873.809867pt;}
.y2f{bottom:874.462533pt;}
.y19f{bottom:874.464533pt;}
.y1e4{bottom:879.345333pt;}
.yb5{bottom:879.832000pt;}
.y18e{bottom:884.678667pt;}
.yf0{bottom:889.809867pt;}
.y2e{bottom:890.462533pt;}
.y19e{bottom:890.464533pt;}
.y1e3{bottom:892.678667pt;}
.yb4{bottom:893.704000pt;}
.y3{bottom:895.045333pt;}
.y18d{bottom:898.012000pt;}
.y108{bottom:905.809867pt;}
.y2d{bottom:906.462533pt;}
.y1b6{bottom:906.464533pt;}
.yb3{bottom:906.467733pt;}
.y18c{bottom:911.345333pt;}
.y107{bottom:921.809867pt;}
.y1e2{bottom:922.102533pt;}
.y19d{bottom:922.104533pt;}
.yb2{bottom:922.107733pt;}
.y2c{bottom:922.462533pt;}
.y1b5{bottom:922.464533pt;}
.y18b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y139{bottom:1006.580133pt;}
.y123{bottom:1006.584933pt;}
.y13d{bottom:1006.585867pt;}
.y111{bottom:1006.589067pt;}
.y148{bottom:1006.589467pt;}
.y141{bottom:1006.591733pt;}
.y18a{bottom:1006.592533pt;}
.y117{bottom:1006.592800pt;}
.y151{bottom:1006.592933pt;}
.y12c{bottom:1006.593333pt;}
.y87{bottom:1006.594400pt;}
.y181{bottom:1006.596667pt;}
.y221{bottom:1006.598667pt;}
.y19c{bottom:1006.605733pt;}
.yb1{bottom:1006.614667pt;}
.y2a{bottom:1009.857333pt;}
.y29{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h17{height:25.921875pt;}
.h18{height:25.940104pt;}
.h19{height:25.944275pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h13{height:29.625000pt;}
.h12{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h14{height:33.351562pt;}
.he{height:37.031250pt;}
.hf{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.860475pt;}
.h9{height:38.880208pt;}
.h16{height:39.200000pt;}
.h15{height:43.288357pt;}
.h5{height:43.679319pt;}
.h3{height:50.476562pt;}
.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;}
.x76{left:69.914000pt;}
.x7c{left:77.476667pt;}
.x2a{left:81.231600pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.818933pt;}
.x2c{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x84{left:109.606267pt;}
.x3{left:111.496000pt;}
.x29{left:115.253333pt;}
.x7{left:117.170133pt;}
.x7d{left:126.236267pt;}
.x6d{left:138.330667pt;}
.x66{left:140.598400pt;}
.x71{left:142.299200pt;}
.x5d{left:144.000000pt;}
.x81{left:155.823600pt;}
.x65{left:157.606267pt;}
.x68{left:161.385867pt;}
.x53{left:162.831067pt;}
.x5{left:170.098000pt;}
.x20{left:171.944267pt;}
.x6a{left:174.992133pt;}
.x2b{left:179.931600pt;}
.x80{left:181.294267pt;}
.x6{left:189.223467pt;}
.x54{left:191.577733pt;}
.x7e{left:195.675867pt;}
.x5f{left:204.701067pt;}
.x55{left:226.549867pt;}
.x60{left:233.210133pt;}
.x6b{left:235.461467pt;}
.x77{left:239.994000pt;}
.x56{left:241.372533pt;}
.x2d{left:267.864800pt;}
.x7f{left:271.734267pt;}
.x2e{left:282.555733pt;}
.x75{left:283.556667pt;}
.x73{left:313.317867pt;}
.x6e{left:316.912000pt;}
.x25{left:334.457200pt;}
.x63{left:340.161600pt;}
.x6c{left:346.949467pt;}
.x61{left:353.812933pt;}
.x62{left:368.503867pt;}
.x57{left:372.710667pt;}
.x58{left:387.401600pt;}
.x78{left:391.172667pt;}
.x67{left:392.502400pt;}
.x72{left:395.333867pt;}
.x79{left:398.735333pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x74{left:413.860133pt;}
.x4a{left:415.517733pt;}
.x12{left:425.195867pt;}
.x8{left:427.090133pt;}
.x83{left:428.980667pt;}
.xf{left:436.538133pt;}
.x4b{left:443.542000pt;}
.x69{left:447.689867pt;}
.x19{left:452.253600pt;}
.x3f{left:455.269067pt;}
.x15{left:457.995867pt;}
.x5e{left:459.210667pt;}
.x39{left:460.245200pt;}
.x41{left:462.890933pt;}
.xe{left:466.911467pt;}
.x64{left:469.336933pt;}
.x26{left:472.526533pt;}
.x5b{left:474.166800pt;}
.x3c{left:481.426267pt;}
.x3e{left:483.295067pt;}
.x40{left:484.399067pt;}
.x3a{left:488.269467pt;}
.x17{left:490.249200pt;}
.x42{left:491.177067pt;}
.x37{left:492.253333pt;}
.x35{left:494.596933pt;}
.x36{left:495.638533pt;}
.x2f{left:498.482933pt;}
.x51{left:500.432133pt;}
.x5c{left:503.296800pt;}
.x50{left:505.882133pt;}
.x3d{left:509.560933pt;}
.x30{left:513.951200pt;}
.x1a{left:515.325600pt;}
.x38{left:520.319467pt;}
.x1b{left:524.061600pt;}
.x52{left:528.824667pt;}
.x82{left:529.889200pt;}
.x14{left:537.542533pt;}
.x16{left:541.355867pt;}
.x13{left:544.822533pt;}
.x45{left:546.232667pt;}
.x6f{left:548.784000pt;}
.x7a{left:549.914000pt;}
.x4e{left:550.826533pt;}
.x49{left:554.786000pt;}
.x7b{left:557.476667pt;}
.x46{left:574.216933pt;}
.x4c{left:575.132667pt;}
.x4f{left:579.523867pt;}
.x47{left:583.014133pt;}
.x1c{left:587.133600pt;}
.x11{left:589.770933pt;}
.x33{left:591.948533pt;}
.x23{left:593.785200pt;}
.x21{left:595.037600pt;}
.x48{left:597.812000pt;}
.x1d{left:600.765600pt;}
.x4d{left:604.630933pt;}
.x34{left:606.873200pt;}
.x2{left:616.324800pt;}
.x43{left:633.353333pt;}
.x59{left:639.836933pt;}
.x3b{left:640.868400pt;}
.x10{left:647.459200pt;}
.x44{left:648.441067pt;}
.x5a{left:655.072000pt;}
.x24{left:658.627867pt;}
.x70{left:661.210667pt;}
.x1e{left:662.952267pt;}
.x28{left:666.318533pt;}
.x27{left:669.774533pt;}
.x22{left:671.293600pt;}
.x31{left:678.623467pt;}
.x1f{left:680.573600pt;}
.x32{left:706.771600pt;}
}




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