
    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_5cbe221a7c7049523ee3e208.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_108cb388906d93893f8e8c5b.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_07729568e086417b09c7072e.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_7f513c51cc6bafb5e67294a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_11091f926a8a976fb7b1c5fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5162c8d6dcec343f80e259c1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ac232ff8a97195722a3f83db.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_99df1c83c98fe69baf35f584.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_265bbd676a9d59e2be1db991.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5e38f21307039b99e044cc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.213379;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_e37e53dca8e63a72e6714aad.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9eaa768041e3b2553243fe95.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_543a750f82b9e038547a7b7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_05e6ddec4bc2cd423d65b7fe.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a26dd39f20c9a9ada33bc719.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls56{letter-spacing:-1.776000px;}
.lsc{letter-spacing:-1.170000px;}
.lsb{letter-spacing:-0.780000px;}
.ls45{letter-spacing:-0.600000px;}
.ls53{letter-spacing:-0.540000px;}
.ls47{letter-spacing:-0.420000px;}
.ls31{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.240000px;}
.ls46{letter-spacing:-0.180000px;}
.ls51{letter-spacing:-0.145152px;}
.ls8e{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.120000px;}
.ls8d{letter-spacing:-0.096000px;}
.ls2f{letter-spacing:-0.060000px;}
.ls8c{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005676px;}
.ls34{letter-spacing:0.034980px;}
.ls73{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.060000px;}
.ls74{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.120000px;}
.ls55{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls75{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.240000px;}
.ls52{letter-spacing:0.240952px;}
.ls82{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.ls8a{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.420000px;}
.ls80{letter-spacing:0.432000px;}
.ls44{letter-spacing:0.480000px;}
.ls7b{letter-spacing:0.528000px;}
.ls3e{letter-spacing:0.540000px;}
.ls6d{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.600000px;}
.ls86{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.660000px;}
.ls48{letter-spacing:0.672000px;}
.ls16{letter-spacing:0.720000px;}
.ls7d{letter-spacing:0.768000px;}
.ls4d{letter-spacing:0.774144px;}
.ls35{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.816000px;}
.lsf{letter-spacing:0.840000px;}
.ls77{letter-spacing:0.864000px;}
.ls7{letter-spacing:0.900000px;}
.ls8b{letter-spacing:0.912000px;}
.ls11{letter-spacing:0.960000px;}
.ls71{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.020000px;}
.ls7c{letter-spacing:1.056000px;}
.ls2a{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.140000px;}
.ls8f{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.200000px;}
.ls7a{letter-spacing:1.248000px;}
.ls2e{letter-spacing:1.260000px;}
.ls72{letter-spacing:1.296000px;}
.ls27{letter-spacing:1.320000px;}
.ls92{letter-spacing:1.344000px;}
.ls14{letter-spacing:1.380000px;}
.ls94{letter-spacing:1.392000px;}
.ls23{letter-spacing:1.440000px;}
.ls2c{letter-spacing:1.500000px;}
.ls84{letter-spacing:1.536000px;}
.ls19{letter-spacing:1.560000px;}
.ls79{letter-spacing:1.584000px;}
.ls10{letter-spacing:1.620000px;}
.ls83{letter-spacing:1.632000px;}
.ls59{letter-spacing:1.680000px;}
.ls96{letter-spacing:1.728000px;}
.ls2{letter-spacing:1.740000px;}
.ls78{letter-spacing:1.776000px;}
.ls24{letter-spacing:1.800000px;}
.ls6b{letter-spacing:1.824000px;}
.ls1e{letter-spacing:1.860000px;}
.ls88{letter-spacing:1.872000px;}
.ls5a{letter-spacing:1.920000px;}
.ls12{letter-spacing:1.980000px;}
.lse{letter-spacing:2.040000px;}
.ls91{letter-spacing:2.064000px;}
.ls20{letter-spacing:2.100000px;}
.ls93{letter-spacing:2.112000px;}
.ls36{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.220000px;}
.ls7f{letter-spacing:2.256000px;}
.ls3b{letter-spacing:2.280000px;}
.ls3d{letter-spacing:2.340000px;}
.ls90{letter-spacing:2.352000px;}
.ls4{letter-spacing:2.400000px;}
.ls95{letter-spacing:2.448000px;}
.ls21{letter-spacing:2.460000px;}
.ls54{letter-spacing:2.520000px;}
.ls70{letter-spacing:2.544000px;}
.ls1c{letter-spacing:2.580000px;}
.ls85{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.640000px;}
.ls81{letter-spacing:2.688000px;}
.ls5e{letter-spacing:2.700000px;}
.ls58{letter-spacing:2.760000px;}
.ls38{letter-spacing:2.820000px;}
.ls6e{letter-spacing:2.832000px;}
.ls57{letter-spacing:2.880000px;}
.ls39{letter-spacing:2.940000px;}
.ls29{letter-spacing:3.000000px;}
.ls89{letter-spacing:3.024000px;}
.ls8{letter-spacing:3.060000px;}
.ls76{letter-spacing:3.072000px;}
.ls3c{letter-spacing:3.120000px;}
.ls5d{letter-spacing:3.180000px;}
.ls3a{letter-spacing:3.240000px;}
.ls40{letter-spacing:3.300000px;}
.ls3f{letter-spacing:3.360000px;}
.ls7e{letter-spacing:3.408000px;}
.ls42{letter-spacing:3.420000px;}
.ls32{letter-spacing:3.480000px;}
.ls43{letter-spacing:3.540000px;}
.ls2d{letter-spacing:3.600000px;}
.ls25{letter-spacing:3.660000px;}
.ls1d{letter-spacing:3.720000px;}
.ls6a{letter-spacing:3.780000px;}
.ls62{letter-spacing:3.840000px;}
.ls26{letter-spacing:3.900000px;}
.ls61{letter-spacing:3.960000px;}
.ls60{letter-spacing:4.140000px;}
.ls41{letter-spacing:4.200000px;}
.ls87{letter-spacing:4.272000px;}
.ls65{letter-spacing:4.440000px;}
.ls97{letter-spacing:4.464000px;}
.ls50{letter-spacing:4.560000px;}
.ls5b{letter-spacing:4.740000px;}
.ls18{letter-spacing:4.920000px;}
.ls1f{letter-spacing:5.280000px;}
.ls5f{letter-spacing:5.820000px;}
.ls63{letter-spacing:5.880000px;}
.ls66{letter-spacing:6.000000px;}
.ls68{letter-spacing:6.360000px;}
.ls5c{letter-spacing:6.780000px;}
.ls64{letter-spacing:6.900000px;}
.ls69{letter-spacing:7.560000px;}
.ls67{letter-spacing:8.220000px;}
.ls4c{letter-spacing:12.023189px;}
.ls4b{letter-spacing:12.096000px;}
.ls4a{letter-spacing:12.192768px;}
.ls4e{letter-spacing:12.241152px;}
.ls4f{letter-spacing:13.160448px;}
.ls33{letter-spacing:231.696000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.wsd1{word-spacing:-19.980000px;}
.wsd2{word-spacing:-19.200000px;}
.ws10{word-spacing:-17.580000px;}
.ws47{word-spacing:-17.040000px;}
.wsbd{word-spacing:-16.980000px;}
.wsaf{word-spacing:-16.920000px;}
.ws11{word-spacing:-16.860000px;}
.ws4c{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.ws48{word-spacing:-16.500000px;}
.wsa0{word-spacing:-16.320000px;}
.wsd0{word-spacing:-16.260000px;}
.ws4d{word-spacing:-16.200000px;}
.wsbc{word-spacing:-16.080000px;}
.ws50{word-spacing:-16.020000px;}
.wse{word-spacing:-15.900000px;}
.wsa8{word-spacing:-15.780000px;}
.wsbb{word-spacing:-15.720000px;}
.wsf{word-spacing:-15.660000px;}
.wsaa{word-spacing:-15.600000px;}
.ws51{word-spacing:-15.540000px;}
.wsa9{word-spacing:-15.420000px;}
.ws4b{word-spacing:-15.360000px;}
.wscf{word-spacing:-15.300000px;}
.ws4e{word-spacing:-15.180000px;}
.ws49{word-spacing:-15.120000px;}
.ws4f{word-spacing:-15.060000px;}
.ws7d{word-spacing:-15.000000px;}
.wsae{word-spacing:-14.940000px;}
.wse7{word-spacing:-14.880000px;}
.wse8{word-spacing:-14.640000px;}
.ws4a{word-spacing:-14.400000px;}
.ws10b{word-spacing:-14.352000px;}
.ws10a{word-spacing:-13.920000px;}
.ws10f{word-spacing:-13.584000px;}
.ws5{word-spacing:-13.344000px;}
.wsec{word-spacing:-13.248000px;}
.wse5{word-spacing:-13.056000px;}
.wsd4{word-spacing:-13.008000px;}
.wse6{word-spacing:-12.960000px;}
.wsed{word-spacing:-12.912000px;}
.ws64{word-spacing:-12.672000px;}
.wse9{word-spacing:-12.576000px;}
.ws10e{word-spacing:-12.528000px;}
.ws4{word-spacing:-12.510000px;}
.wsea{word-spacing:-12.288000px;}
.ws10c{word-spacing:-12.240000px;}
.ws10d{word-spacing:-12.192000px;}
.wsd3{word-spacing:-12.144000px;}
.ws6b{word-spacing:-12.120150px;}
.ws69{word-spacing:-12.096000px;}
.ws3c{word-spacing:-12.000000px;}
.ws110{word-spacing:-11.952000px;}
.wseb{word-spacing:-11.856000px;}
.wsc5{word-spacing:-11.250000px;}
.ws1{word-spacing:-10.210662px;}
.ws78{word-spacing:-10.039650px;}
.ws2f{word-spacing:-8.779980px;}
.ws2{word-spacing:-7.293330px;}
.ws1b{word-spacing:-5.280000px;}
.ws21{word-spacing:-4.920000px;}
.ws9d{word-spacing:-3.600000px;}
.ws60{word-spacing:-3.420000px;}
.wsf6{word-spacing:-3.408000px;}
.wsdc{word-spacing:-3.300000px;}
.ws106{word-spacing:-3.024000px;}
.ws28{word-spacing:-3.000000px;}
.ws7{word-spacing:-2.886000px;}
.wsf9{word-spacing:-2.880000px;}
.wse0{word-spacing:-2.832000px;}
.ws58{word-spacing:-2.820000px;}
.wsd7{word-spacing:-2.700000px;}
.ws22{word-spacing:-2.640000px;}
.ws19{word-spacing:-2.580000px;}
.ws1f{word-spacing:-2.460000px;}
.wsfb{word-spacing:-2.400000px;}
.ws113{word-spacing:-2.352000px;}
.ws5c{word-spacing:-2.340000px;}
.ws96{word-spacing:-2.220000px;}
.ws111{word-spacing:-2.208000px;}
.ws41{word-spacing:-2.160000px;}
.ws1e{word-spacing:-2.100000px;}
.wsd6{word-spacing:-1.980000px;}
.ws112{word-spacing:-1.920000px;}
.ws104{word-spacing:-1.872000px;}
.ws1a{word-spacing:-1.860000px;}
.ws54{word-spacing:-1.800000px;}
.wsef{word-spacing:-1.776000px;}
.ws27{word-spacing:-1.740000px;}
.ws91{word-spacing:-1.680000px;}
.ws43{word-spacing:-1.620000px;}
.wsf5{word-spacing:-1.584000px;}
.wsb5{word-spacing:-1.560000px;}
.wsff{word-spacing:-1.536000px;}
.wsb3{word-spacing:-1.440000px;}
.ws40{word-spacing:-1.380000px;}
.wsb4{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.296000px;}
.wsda{word-spacing:-1.260000px;}
.wsf0{word-spacing:-1.248000px;}
.ws53{word-spacing:-1.200000px;}
.ws61{word-spacing:-1.140000px;}
.ws100{word-spacing:-1.104000px;}
.ws9{word-spacing:-1.080000px;}
.wsf1{word-spacing:-1.056000px;}
.wsac{word-spacing:-0.960000px;}
.ws109{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.900000px;}
.wsee{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.840000px;}
.ws74{word-spacing:-0.822528px;}
.wsf4{word-spacing:-0.816000px;}
.ws52{word-spacing:-0.780000px;}
.wsf3{word-spacing:-0.768000px;}
.wsb9{word-spacing:-0.720000px;}
.wsf7{word-spacing:-0.672000px;}
.wsb8{word-spacing:-0.660000px;}
.ws102{word-spacing:-0.624000px;}
.ws99{word-spacing:-0.600000px;}
.wsfa{word-spacing:-0.576000px;}
.ws115{word-spacing:-0.528000px;}
.ws77{word-spacing:-0.483840px;}
.ws105{word-spacing:-0.480000px;}
.ws76{word-spacing:-0.435456px;}
.wsfe{word-spacing:-0.432000px;}
.ws55{word-spacing:-0.420000px;}
.ws6d{word-spacing:-0.387072px;}
.ws29{word-spacing:-0.360000px;}
.ws6e{word-spacing:-0.338688px;}
.ws107{word-spacing:-0.336000px;}
.ws14{word-spacing:-0.300000px;}
.wsf8{word-spacing:-0.288000px;}
.ws79{word-spacing:-0.240952px;}
.ws1d{word-spacing:-0.240000px;}
.wse4{word-spacing:-0.192000px;}
.ws62{word-spacing:-0.180000px;}
.ws8b{word-spacing:-0.144000px;}
.ws9c{word-spacing:-0.120000px;}
.wse3{word-spacing:-0.096000px;}
.ws42{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsfd{word-spacing:0.048000px;}
.ws93{word-spacing:0.060000px;}
.ws6c{word-spacing:0.096768px;}
.ws5b{word-spacing:0.120000px;}
.ws103{word-spacing:0.144000px;}
.ws71{word-spacing:0.145152px;}
.wsad{word-spacing:0.192000px;}
.ws6f{word-spacing:0.193536px;}
.ws116{word-spacing:0.240000px;}
.ws75{word-spacing:0.290304px;}
.wsd9{word-spacing:0.300000px;}
.ws117{word-spacing:0.336000px;}
.ws16{word-spacing:0.360000px;}
.ws5f{word-spacing:0.420000px;}
.ws90{word-spacing:0.480000px;}
.ws70{word-spacing:0.483840px;}
.ws95{word-spacing:0.528000px;}
.ws6a{word-spacing:0.532224px;}
.wsd8{word-spacing:0.540000px;}
.ws59{word-spacing:0.600000px;}
.wsf2{word-spacing:0.672000px;}
.ws20{word-spacing:0.720000px;}
.ws5e{word-spacing:0.780000px;}
.wsa1{word-spacing:0.840000px;}
.wscd{word-spacing:0.900000px;}
.wsba{word-spacing:0.912000px;}
.ws8c{word-spacing:0.960000px;}
.ws73{word-spacing:0.967680px;}
.ws72{word-spacing:1.016064px;}
.wsb1{word-spacing:1.020000px;}
.ws65{word-spacing:1.080000px;}
.ws2d{word-spacing:1.140000px;}
.ws92{word-spacing:1.152000px;}
.ws8{word-spacing:1.170000px;}
.ws12{word-spacing:1.200000px;}
.ws15{word-spacing:1.260000px;}
.ws2a{word-spacing:1.320000px;}
.ws13{word-spacing:1.440000px;}
.wsde{word-spacing:1.488000px;}
.wsdb{word-spacing:1.560000px;}
.ws5d{word-spacing:1.620000px;}
.ws68{word-spacing:1.632000px;}
.wsdd{word-spacing:1.680000px;}
.wsdf{word-spacing:1.728000px;}
.wsc0{word-spacing:1.824000px;}
.ws8e{word-spacing:2.016000px;}
.ws98{word-spacing:2.040000px;}
.wsa5{word-spacing:2.100000px;}
.wsbe{word-spacing:2.160000px;}
.ws9e{word-spacing:2.220000px;}
.ws101{word-spacing:2.304000px;}
.wsa7{word-spacing:2.352000px;}
.ws9f{word-spacing:2.448000px;}
.ws23{word-spacing:2.460000px;}
.ws45{word-spacing:2.496000px;}
.ws8f{word-spacing:2.520000px;}
.ws108{word-spacing:2.544000px;}
.wsd5{word-spacing:2.640000px;}
.wsc{word-spacing:2.700000px;}
.ws46{word-spacing:2.784000px;}
.ws94{word-spacing:2.820000px;}
.ws2b{word-spacing:2.880000px;}
.ws114{word-spacing:2.976000px;}
.ws26{word-spacing:3.000000px;}
.wse1{word-spacing:3.024000px;}
.ws66{word-spacing:3.060000px;}
.wsa3{word-spacing:3.120000px;}
.ws44{word-spacing:3.180000px;}
.wsb{word-spacing:3.240000px;}
.ws9a{word-spacing:3.300000px;}
.wsa6{word-spacing:3.360000px;}
.ws7b{word-spacing:3.408000px;}
.ws8a{word-spacing:3.420000px;}
.wsfc{word-spacing:3.456000px;}
.wsce{word-spacing:3.540000px;}
.ws57{word-spacing:3.660000px;}
.ws25{word-spacing:3.720000px;}
.ws63{word-spacing:3.780000px;}
.ws18{word-spacing:3.840000px;}
.ws1c{word-spacing:3.900000px;}
.ws67{word-spacing:3.936000px;}
.ws3f{word-spacing:3.960000px;}
.ws7c{word-spacing:3.984000px;}
.ws17{word-spacing:4.020000px;}
.wsab{word-spacing:4.140000px;}
.ws89{word-spacing:4.260000px;}
.ws7a{word-spacing:4.380000px;}
.ws56{word-spacing:4.440000px;}
.wsbf{word-spacing:4.500000px;}
.ws5a{word-spacing:4.560000px;}
.ws9b{word-spacing:4.620000px;}
.ws8d{word-spacing:4.680000px;}
.ws24{word-spacing:4.740000px;}
.wsa2{word-spacing:4.800000px;}
.ws97{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.wsd{word-spacing:4.980000px;}
.wsa4{word-spacing:5.100000px;}
.wsb2{word-spacing:5.700000px;}
.wsb6{word-spacing:6.540000px;}
.wsb0{word-spacing:6.600000px;}
.wsb7{word-spacing:7.320000px;}
.wsc6{word-spacing:19.260000px;}
.wsc1{word-spacing:21.195000px;}
.ws88{word-spacing:24.576000px;}
.ws81{word-spacing:33.072000px;}
.ws83{word-spacing:38.400000px;}
.ws82{word-spacing:40.142400px;}
.ws84{word-spacing:40.176000px;}
.ws36{word-spacing:58.464000px;}
.wscb{word-spacing:63.180000px;}
.wsca{word-spacing:64.530000px;}
.wsc4{word-spacing:64.890000px;}
.ws34{word-spacing:66.432000px;}
.ws31{word-spacing:74.448000px;}
.wsc9{word-spacing:78.165000px;}
.ws33{word-spacing:82.848000px;}
.wsc3{word-spacing:83.250000px;}
.ws3e{word-spacing:83.760000px;}
.ws87{word-spacing:84.576000px;}
.ws86{word-spacing:88.992000px;}
.ws80{word-spacing:93.072000px;}
.ws7f{word-spacing:97.488000px;}
.wsc7{word-spacing:105.660000px;}
.ws85{word-spacing:108.576000px;}
.ws30{word-spacing:110.448000px;}
.ws7e{word-spacing:117.072000px;}
.wsc2{word-spacing:120.645000px;}
.wsc8{word-spacing:130.500000px;}
.wscc{word-spacing:130.924800px;}
.ws37{word-spacing:196.176000px;}
.ws35{word-spacing:204.192000px;}
.ws32{word-spacing:212.160000px;}
.ws3a{word-spacing:245.520000px;}
.ws39{word-spacing:257.520000px;}
.ws38{word-spacing:265.488000px;}
.ws3b{word-spacing:266.448000px;}
.ws3d{word-spacing:270.432000px;}
._d{margin-left:-2898.096000px;}
._2b{margin-left:-2874.288000px;}
._4{margin-left:-12.297480px;}
._5{margin-left:-7.560000px;}
._6{margin-left:-6.474000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.914310px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.291260px;}
._a{width:1.976310px;}
._e{width:3.005070px;}
._8{width:4.020000px;}
._7{width:5.220000px;}
._2d{width:6.234000px;}
._9{width:7.296000px;}
._c{width:9.000000px;}
._b{width:10.260000px;}
._2c{width:13.631856px;}
._48{width:35.808000px;}
._47{width:36.960000px;}
._34{width:45.072000px;}
._37{width:46.896000px;}
._3a{width:49.398450px;}
._42{width:60.336000px;}
._14{width:71.568000px;}
._40{width:75.744000px;}
._27{width:77.232000px;}
._43{width:80.400000px;}
._15{width:82.992000px;}
._45{width:84.602310px;}
._21{width:87.744000px;}
._25{width:89.088000px;}
._20{width:93.792000px;}
._24{width:95.136000px;}
._3d{width:96.816000px;}
._60{width:98.595000px;}
._1f{width:99.744000px;}
._56{width:101.265000px;}
._1a{width:103.776000px;}
._1e{width:105.792000px;}
._5b{width:107.397000px;}
._13{width:108.480000px;}
._19{width:109.824000px;}
._10{width:112.176000px;}
._18{width:114.624000px;}
._2f{width:117.072000px;}
._58{width:118.099740px;}
._5d{width:120.420000px;}
._2a{width:121.680000px;}
._12{width:123.600000px;}
._5e{width:126.720000px;}
._4e{width:128.025000px;}
._55{width:129.195000px;}
._57{width:131.904000px;}
._61{width:133.128000px;}
._4f{width:134.565000px;}
._4d{width:139.230000px;}
._53{width:140.640000px;}
._11{width:144.672000px;}
._1d{width:147.696000px;}
._29{width:151.680000px;}
._f{width:153.120000px;}
._51{width:157.140000px;}
._50{width:159.120000px;}
._17{width:161.040000px;}
._2e{width:167.520000px;}
._5c{width:170.772000px;}
._54{width:176.829000px;}
._30{width:179.185260px;}
._41{width:181.152000px;}
._28{width:191.760000px;}
._5f{width:195.000000px;}
._35{width:198.144000px;}
._1c{width:199.728000px;}
._5a{width:202.252740px;}
._62{width:203.439000px;}
._59{width:206.250000px;}
._22{width:211.728000px;}
._33{width:213.504000px;}
._52{width:216.675000px;}
._1b{width:229.104000px;}
._3c{width:234.768000px;}
._16{width:239.760000px;}
._23{width:282.432000px;}
._26{width:285.072000px;}
._3b{width:307.632000px;}
._38{width:320.928000px;}
._39{width:323.238000px;}
._31{width:333.194310px;}
._36{width:344.928000px;}
._3f{width:350.790000px;}
._44{width:369.798000px;}
._32{width:371.616000px;}
._4c{width:393.408000px;}
._4a{width:396.048000px;}
._4b{width:398.358000px;}
._3e{width:401.814000px;}
._49{width:420.048000px;}
._46{width:446.736000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fsd{font-size:40.158600px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:48.384000px;}
.fsc{font-size:48.480600px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y23f{bottom:80.263500px;}
.y161{bottom:82.917150px;}
.y10d{bottom:83.060250px;}
.y1ba{bottom:83.433900px;}
.y177{bottom:83.448600px;}
.y1d8{bottom:83.635350px;}
.yaa{bottom:83.661150px;}
.y60{bottom:83.770350px;}
.y6e{bottom:83.920350px;}
.y82{bottom:84.013200px;}
.ya6{bottom:84.195600px;}
.y24{bottom:88.333800px;}
.y1fe{bottom:89.121900px;}
.y23e{bottom:95.263500px;}
.y160{bottom:98.661150px;}
.y176{bottom:99.192600px;}
.ya9{bottom:99.405150px;}
.y10c{bottom:99.560250px;}
.y1d7{bottom:101.635350px;}
.y5f{bottom:101.770350px;}
.y6d{bottom:101.920350px;}
.ya5{bottom:102.195600px;}
.y23{bottom:103.330050px;}
.y1fd{bottom:104.121900px;}
.y1b9{bottom:108.813000px;}
.y81{bottom:109.525200px;}
.y23d{bottom:110.263500px;}
.y15f{bottom:114.405150px;}
.y175{bottom:114.936600px;}
.ya8{bottom:115.149150px;}
.y22{bottom:118.330050px;}
.y1fc{bottom:119.121900px;}
.y1d6{bottom:119.635350px;}
.y5e{bottom:119.770350px;}
.y6c{bottom:119.920350px;}
.ya4{bottom:120.195600px;}
.y1b8{bottom:124.349400px;}
.y10b{bottom:125.072250px;}
.y23c{bottom:125.263500px;}
.y80{bottom:125.773200px;}
.y1fb{bottom:134.121900px;}
.y1d5{bottom:137.635350px;}
.y5d{bottom:137.770350px;}
.y6b{bottom:137.920350px;}
.ya3{bottom:138.195600px;}
.yac{bottom:138.402000px;}
.y1b7{bottom:139.851900px;}
.y23b{bottom:140.263500px;}
.y10a{bottom:141.320250px;}
.y7f{bottom:142.021200px;}
.ydd{bottom:142.110750px;}
.y1fa{bottom:149.121900px;}
.y23a{bottom:155.263500px;}
.y1b6{bottom:155.354400px;}
.y1d4{bottom:155.635350px;}
.y5c{bottom:155.770350px;}
.y6a{bottom:155.920350px;}
.ya2{bottom:156.195600px;}
.y109{bottom:157.568250px;}
.y7e{bottom:158.269200px;}
.ydc{bottom:158.754450px;}
.y29{bottom:163.071750px;}
.y1f9{bottom:164.121900px;}
.y239{bottom:170.263500px;}
.y1b5{bottom:170.856900px;}
.ye5{bottom:172.128348px;}
.y1d3{bottom:173.635350px;}
.y5b{bottom:173.770350px;}
.y108{bottom:173.816250px;}
.y69{bottom:173.920350px;}
.ya1{bottom:174.195600px;}
.y7d{bottom:174.517200px;}
.ydb{bottom:175.374750px;}
.y1f8{bottom:179.121900px;}
.y28{bottom:181.071750px;}
.y238{bottom:185.263500px;}
.y1b4{bottom:186.359400px;}
.y107{bottom:190.095900px;}
.y7c{bottom:190.765200px;}
.y1d2{bottom:191.635350px;}
.y5a{bottom:191.770350px;}
.y68{bottom:191.920350px;}
.yda{bottom:192.018450px;}
.ya0{bottom:192.195600px;}
.y1f7{bottom:194.121900px;}
.y27{bottom:199.071750px;}
.y237{bottom:200.263500px;}
.y1b3{bottom:201.861900px;}
.y106{bottom:206.343900px;}
.y7b{bottom:207.013200px;}
.yd9{bottom:208.638750px;}
.y1f6{bottom:209.121900px;}
.ye4{bottom:209.556163px;}
.y1d1{bottom:209.635350px;}
.y59{bottom:209.770350px;}
.y67{bottom:209.920350px;}
.y9f{bottom:210.195600px;}
.y236{bottom:215.263500px;}
.y26{bottom:217.071750px;}
.y1b2{bottom:217.364400px;}
.y105{bottom:222.591900px;}
.y7a{bottom:223.261200px;}
.y1f5{bottom:224.121900px;}
.yd8{bottom:225.401700px;}
.y1d0{bottom:227.635350px;}
.y58{bottom:227.770350px;}
.y66{bottom:227.920350px;}
.y9e{bottom:228.195600px;}
.y235{bottom:230.263500px;}
.y1b1{bottom:232.866900px;}
.y2b{bottom:235.071750px;}
.y104{bottom:238.839900px;}
.y1f4{bottom:239.121900px;}
.y79{bottom:239.509200px;}
.yd7{bottom:242.043450px;}
.y234{bottom:245.263500px;}
.y1cf{bottom:245.635350px;}
.y57{bottom:245.770350px;}
.y65{bottom:245.920350px;}
.y9d{bottom:246.195600px;}
.y1b0{bottom:248.369400px;}
.y25{bottom:252.666750px;}
.y2a{bottom:253.071750px;}
.y1f3{bottom:254.121900px;}
.y103{bottom:255.087900px;}
.y78{bottom:255.757200px;}
.yd6{bottom:258.665700px;}
.ye3{bottom:259.583739px;}
.y233{bottom:260.263500px;}
.y1ce{bottom:263.230350px;}
.y89{bottom:263.770350px;}
.y1af{bottom:263.871900px;}
.y64{bottom:263.920350px;}
.y9c{bottom:264.195600px;}
.y1f2{bottom:269.121900px;}
.y102{bottom:271.335900px;}
.y77{bottom:272.005200px;}
.ye6{bottom:272.063024px;}
.y232{bottom:275.263500px;}
.yd5{bottom:275.307450px;}
.y1ae{bottom:279.374400px;}
.y56{bottom:281.365350px;}
.y88{bottom:281.770350px;}
.y9b{bottom:282.195600px;}
.y1f1{bottom:284.121900px;}
.yeb{bottom:286.540199px;}
.y101{bottom:287.583900px;}
.y76{bottom:288.253200px;}
.y231{bottom:290.263500px;}
.yd4{bottom:290.821200px;}
.y1f0{bottom:299.121900px;}
.y63{bottom:299.515350px;}
.y1cd{bottom:299.635350px;}
.y87{bottom:299.770350px;}
.y9a{bottom:300.195600px;}
.y100{bottom:303.831900px;}
.y230{bottom:305.263500px;}
.y1a4{bottom:307.600650px;}
.y1a7{bottom:307.611900px;}
.y1aa{bottom:307.623150px;}
.y1ad{bottom:307.634400px;}
.yd3{bottom:308.571450px;}
.y1ef{bottom:314.121900px;}
.y55{bottom:317.230350px;}
.y75{bottom:317.257200px;}
.y1cc{bottom:317.635350px;}
.y86{bottom:317.770350px;}
.y99{bottom:318.195600px;}
.yff{bottom:320.079900px;}
.y22f{bottom:320.263500px;}
.y1a3{bottom:322.596900px;}
.y1a6{bottom:322.608150px;}
.y1a9{bottom:322.619400px;}
.y1ac{bottom:322.630650px;}
.yd2{bottom:325.345200px;}
.y21{bottom:326.614200px;}
.y1ee{bottom:329.121900px;}
.y22e{bottom:335.263500px;}
.y1cb{bottom:335.635350px;}
.y62{bottom:335.770350px;}
.y98{bottom:336.195600px;}
.y1a2{bottom:337.593150px;}
.y1a5{bottom:337.604400px;}
.y1a8{bottom:337.615650px;}
.y1ab{bottom:337.626900px;}
.yd1{bottom:340.848150px;}
.y1ed{bottom:344.121900px;}
.y74{bottom:349.648350px;}
.y22d{bottom:350.263500px;}
.yfe{bottom:351.591900px;}
.y1ca{bottom:353.635350px;}
.y61{bottom:353.770350px;}
.y20{bottom:353.959200px;}
.y97{bottom:354.195600px;}
.yd0{bottom:358.609200px;}
.y1ec{bottom:359.121900px;}
.y22c{bottom:365.263500px;}
.y73{bottom:369.148350px;}
.y1a1{bottom:369.360900px;}
.y1c9{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.y1f{bottom:371.959200px;}
.y96{bottom:372.195600px;}
.y1eb{bottom:374.121900px;}
.ycf{bottom:375.250950px;}
.y22b{bottom:380.263500px;}
.yfd{bottom:386.500350px;}
.y1ea{bottom:389.121900px;}
.y1c8{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.yf0{bottom:389.898396px;}
.y1e{bottom:389.959200px;}
.y95{bottom:390.195600px;}
.yce{bottom:391.873200px;}
.y22a{bottom:395.263500px;}
.y1e9{bottom:404.121900px;}
.yfc{bottom:406.000350px;}
.yf4{bottom:407.497200px;}
.y1c7{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y1d{bottom:407.959200px;}
.y94{bottom:408.205350px;}
.ycd{bottom:408.636150px;}
.y72{bottom:409.377450px;}
.yea{bottom:409.415475px;}
.y229{bottom:410.263500px;}
.y1a0{bottom:414.570600px;}
.y1e8{bottom:419.121900px;}
.y71{bottom:425.121450px;}
.y228{bottom:425.263500px;}
.ycc{bottom:425.277900px;}
.yfb{bottom:425.500350px;}
.y1c6{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y1c{bottom:425.959200px;}
.y93{bottom:426.205350px;}
.y19f{bottom:430.314600px;}
.y1e7{bottom:434.121900px;}
.y227{bottom:440.263500px;}
.yf1{bottom:440.678945px;}
.y70{bottom:440.865450px;}
.ycb{bottom:441.900150px;}
.y1c5{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y1b{bottom:443.959200px;}
.y92{bottom:444.205350px;}
.y19e{bottom:446.058600px;}
.y1e6{bottom:449.121900px;}
.y226{bottom:455.263500px;}
.yca{bottom:458.541900px;}
.y1c4{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y1a{bottom:461.959200px;}
.y91{bottom:462.205350px;}
.y1e5{bottom:464.121900px;}
.y120{bottom:470.056350px;}
.y225{bottom:470.263500px;}
.yef{bottom:473.187332px;}
.yc9{bottom:475.183800px;}
.y1e4{bottom:479.121900px;}
.y1c3{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y19{bottom:479.959200px;}
.y90{bottom:480.205350px;}
.y224{bottom:485.263500px;}
.y11f{bottom:486.556350px;}
.yc8{bottom:491.805900px;}
.y1e3{bottom:494.121900px;}
.y1c2{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y18{bottom:497.959200px;}
.y8f{bottom:498.205350px;}
.y223{bottom:500.263500px;}
.yc7{bottom:508.569450px;}
.y1e2{bottom:509.121900px;}
.y11e{bottom:512.068350px;}
.y222{bottom:515.263500px;}
.y1c1{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y17{bottom:515.959200px;}
.y8e{bottom:516.205350px;}
.y1e1{bottom:524.121900px;}
.yc6{bottom:525.211200px;}
.y11d{bottom:528.316350px;}
.y221{bottom:530.263500px;}
.y1c0{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y16{bottom:533.959200px;}
.y8d{bottom:534.205350px;}
.y1e0{bottom:539.121900px;}
.yc5{bottom:541.833450px;}
.yed{bottom:542.731988px;}
.y11c{bottom:544.564350px;}
.y220{bottom:545.263500px;}
.y1bf{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y15{bottom:551.959200px;}
.y1df{bottom:554.121900px;}
.yc4{bottom:558.475200px;}
.y21f{bottom:560.263500px;}
.y11b{bottom:560.812350px;}
.y19d{bottom:567.641550px;}
.y85{bottom:569.365350px;}
.y1be{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y8c{bottom:569.800350px;}
.y14{bottom:569.959200px;}
.yc3{bottom:575.097450px;}
.y21e{bottom:575.263500px;}
.y11a{bottom:577.060350px;}
.y19c{bottom:583.385550px;}
.y1de{bottom:587.230350px;}
.y1bd{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y17c{bottom:587.920350px;}
.y13{bottom:587.959200px;}
.y192{bottom:588.085350px;}
.y21d{bottom:590.263500px;}
.yc2{bottom:591.860250px;}
.y119{bottom:593.308350px;}
.y19b{bottom:599.129550px;}
.y84{bottom:605.230350px;}
.y21c{bottom:605.263500px;}
.y1bc{bottom:605.635350px;}
.y8b{bottom:605.665350px;}
.y47{bottom:605.770350px;}
.y17b{bottom:605.920350px;}
.y12{bottom:605.959200px;}
.y191{bottom:606.085350px;}
.yf3{bottom:607.266858px;}
.yc1{bottom:607.373550px;}
.y118{bottom:609.583950px;}
.y21b{bottom:620.263500px;}
.y19a{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y17a{bottom:623.920350px;}
.y11{bottom:623.959200px;}
.yc0{bottom:623.995200px;}
.y190{bottom:624.085350px;}
.y117{bottom:625.831950px;}
.y21a{bottom:635.263500px;}
.yee{bottom:639.654769px;}
.ybf{bottom:640.637550px;}
.y8a{bottom:641.515350px;}
.y199{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y13a{bottom:641.920350px;}
.y116{bottom:642.079950px;}
.y219{bottom:650.263500px;}
.ybe{bottom:657.279450px;}
.y115{bottom:658.327950px;}
.y1dd{bottom:659.365350px;}
.y198{bottom:659.635350px;}
.y18f{bottom:659.680350px;}
.y44{bottom:659.770350px;}
.y174{bottom:659.905350px;}
.y139{bottom:659.920350px;}
.y218{bottom:665.263500px;}
.y10{bottom:669.117300px;}
.ybd{bottom:673.901550px;}
.y114{bottom:674.575950px;}
.y197{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.y173{bottom:677.905350px;}
.y14c{bottom:677.914350px;}
.y138{bottom:677.920350px;}
.y15e{bottom:678.064350px;}
.y217{bottom:680.263500px;}
.yf{bottom:681.568050px;}
.ybb{bottom:690.422250px;}
.y113{bottom:690.823950px;}
.ybc{bottom:691.148010px;}
.y216{bottom:695.263500px;}
.y196{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.y172{bottom:695.905350px;}
.y14b{bottom:695.914350px;}
.y137{bottom:695.920350px;}
.y18e{bottom:695.935350px;}
.y15d{bottom:696.064350px;}
.y112{bottom:707.071950px;}
.yb9{bottom:708.929550px;}
.y215{bottom:710.263500px;}
.ye{bottom:713.283600px;}
.y1dc{bottom:713.365350px;}
.yec{bottom:713.626910px;}
.y195{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.y171{bottom:713.905350px;}
.y14a{bottom:713.914350px;}
.y136{bottom:713.920350px;}
.y18d{bottom:713.935350px;}
.y15c{bottom:714.064350px;}
.y111{bottom:723.319950px;}
.y214{bottom:725.263500px;}
.yb8{bottom:725.551200px;}
.ye0{bottom:729.268685px;}
.y194{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.y170{bottom:731.905350px;}
.y149{bottom:731.914350px;}
.y135{bottom:731.920350px;}
.y18c{bottom:731.935350px;}
.y12c{bottom:732.055350px;}
.y15b{bottom:732.064350px;}
.yd{bottom:732.208950px;}
.yba{bottom:733.262250px;}
.yad{bottom:737.109450px;}
.y213{bottom:740.263500px;}
.yb7{bottom:742.193550px;}
.ydf{bottom:743.765939px;}
.yc{bottom:745.708950px;}
.y179{bottom:749.515350px;}
.y3f{bottom:749.770350px;}
.y16f{bottom:749.905350px;}
.y148{bottom:749.914350px;}
.y134{bottom:749.920350px;}
.y18b{bottom:749.935350px;}
.y12b{bottom:750.055350px;}
.y15a{bottom:750.064350px;}
.yb{bottom:753.783600px;}
.y110{bottom:754.831950px;}
.y212{bottom:755.263500px;}
.yde{bottom:756.365700px;}
.yb6{bottom:758.815200px;}
.y193{bottom:767.230350px;}
.ya{bottom:767.283600px;}
.y3e{bottom:767.770350px;}
.y16e{bottom:767.905350px;}
.y147{bottom:767.914350px;}
.y133{bottom:767.920350px;}
.y18a{bottom:767.935350px;}
.y12a{bottom:768.055350px;}
.y159{bottom:768.064350px;}
.y211{bottom:770.263500px;}
.yb4{bottom:775.578150px;}
.ye1{bottom:775.892819px;}
.y210{bottom:785.263500px;}
.y1db{bottom:785.365350px;}
.y3d{bottom:785.770350px;}
.y16d{bottom:785.905350px;}
.y146{bottom:785.914350px;}
.y132{bottom:785.920350px;}
.y189{bottom:785.935350px;}
.y129{bottom:786.055350px;}
.y158{bottom:786.064350px;}
.y9{bottom:786.208950px;}
.ye2{bottom:788.382144px;}
.y10f{bottom:789.727050px;}
.yb5{bottom:791.474250px;}
.yb3{bottom:792.220500px;}
.y20f{bottom:800.263500px;}
.y3c{bottom:803.770350px;}
.y16c{bottom:803.905350px;}
.y145{bottom:803.914350px;}
.y131{bottom:803.920350px;}
.y188{bottom:803.935350px;}
.y128{bottom:804.055350px;}
.y157{bottom:804.064350px;}
.yb2{bottom:808.358250px;}
.y10e{bottom:809.227050px;}
.y8{bottom:814.930800px;}
.y20e{bottom:815.263500px;}
.y3b{bottom:821.770350px;}
.y16b{bottom:821.905350px;}
.y144{bottom:821.914350px;}
.y130{bottom:821.920350px;}
.y187{bottom:821.935350px;}
.y127{bottom:822.055350px;}
.y156{bottom:822.064350px;}
.yf2{bottom:824.022901px;}
.yb0{bottom:825.484500px;}
.y20d{bottom:830.263500px;}
.y1da{bottom:839.365350px;}
.y3a{bottom:839.770350px;}
.y16a{bottom:839.905350px;}
.y143{bottom:839.914350px;}
.y12f{bottom:839.920350px;}
.y186{bottom:839.935350px;}
.y126{bottom:840.055350px;}
.y155{bottom:840.064350px;}
.yaf{bottom:842.106150px;}
.y20c{bottom:845.263500px;}
.ye9{bottom:845.818982px;}
.yb1{bottom:849.827550px;}
.y39{bottom:857.770350px;}
.y169{bottom:857.905350px;}
.y142{bottom:857.914350px;}
.yfa{bottom:857.920350px;}
.y185{bottom:857.935350px;}
.y125{bottom:858.055350px;}
.y154{bottom:858.064350px;}
.yae{bottom:858.748500px;}
.y20b{bottom:860.263500px;}
.ye8{bottom:860.426672px;}
.y7{bottom:861.082800px;}
.ye7{bottom:872.915997px;}
.y20a{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y168{bottom:875.905350px;}
.y141{bottom:875.914350px;}
.y12e{bottom:875.920350px;}
.y184{bottom:875.935350px;}
.y124{bottom:876.055350px;}
.y153{bottom:876.064350px;}
.y209{bottom:890.263500px;}
.yf9{bottom:893.515350px;}
.y37{bottom:893.770350px;}
.y167{bottom:893.905350px;}
.y140{bottom:893.914350px;}
.y12d{bottom:893.920350px;}
.y183{bottom:893.935350px;}
.y6{bottom:897.543600px;}
.y208{bottom:905.263500px;}
.y123{bottom:911.650350px;}
.y152{bottom:911.659350px;}
.y36{bottom:911.770350px;}
.y166{bottom:911.905350px;}
.y13f{bottom:911.914350px;}
.yf8{bottom:911.920350px;}
.y207{bottom:920.263500px;}
.y182{bottom:929.530350px;}
.y35{bottom:929.770350px;}
.y165{bottom:929.905350px;}
.y13e{bottom:929.914350px;}
.yf7{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y206{bottom:935.263500px;}
.y122{bottom:947.515350px;}
.y151{bottom:947.524350px;}
.y34{bottom:947.770350px;}
.y164{bottom:947.905350px;}
.y13d{bottom:947.914350px;}
.yf6{bottom:947.920350px;}
.y205{bottom:950.263500px;}
.y204{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y181{bottom:965.785350px;}
.y163{bottom:965.905350px;}
.y13c{bottom:965.914350px;}
.y4{bottom:970.465200px;}
.y203{bottom:980.263500px;}
.yf5{bottom:983.515350px;}
.y32{bottom:983.770350px;}
.y150{bottom:983.779350px;}
.y180{bottom:983.785350px;}
.y202{bottom:995.263500px;}
.y1d9{bottom:1001.365350px;}
.y162{bottom:1001.500350px;}
.y13b{bottom:1001.509350px;}
.y31{bottom:1001.770350px;}
.y14f{bottom:1001.779350px;}
.y17f{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y201{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.y14e{bottom:1019.779350px;}
.y17e{bottom:1019.785350px;}
.y200{bottom:1025.263500px;}
.ya7{bottom:1037.365350px;}
.y2f{bottom:1037.770350px;}
.y14d{bottom:1037.779350px;}
.y17d{bottom:1037.785350px;}
.y1ff{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1bb{bottom:1132.413900px;}
.y6f{bottom:1132.418700px;}
.y240{bottom:1132.423500px;}
.yab{bottom:1132.425150px;}
.y178{bottom:1132.428600px;}
.y121{bottom:1132.432350px;}
.y83{bottom:1132.465200px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h1a{height:27.903168px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h1b{height:31.267090px;}
.hc{height:32.783203px;}
.h7{height:32.805176px;}
.h12{height:33.351562px;}
.h16{height:33.594750px;}
.h17{height:33.618375px;}
.h19{height:33.685495px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h1c{height:40.957031px;}
.h15{height:41.603625px;}
.h18{height:41.686688px;}
.he{height:41.689453px;}
.hd{height:43.681641px;}
.h13{height:43.687500px;}
.h9{height:43.710938px;}
.hb{height:43.717434px;}
.ha{height:43.740234px;}
.h11{height:54.609375px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h14{height:747.753000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:508.830000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x55{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x12{left:99.921300px;}
.x68{left:102.047250px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x65{left:115.032600px;}
.x64{left:116.607600px;}
.x6a{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.xc{left:144.725400px;}
.x17{left:166.341000px;}
.x4d{left:186.436800px;}
.x56{left:199.666350px;}
.x18{left:208.894500px;}
.x14{left:211.100400px;}
.x5{left:212.876400px;}
.x54{left:220.135350px;}
.x4e{left:244.488150px;}
.x4f{left:252.052800px;}
.x4c{left:278.040521px;}
.x43{left:283.863518px;}
.x57{left:287.258850px;}
.x4b{left:294.565785px;}
.x42{left:297.477283px;}
.x49{left:307.918519px;}
.x44{left:311.201485px;}
.x4a{left:320.397804px;}
.x48{left:321.783276px;}
.x3e{left:322.930200px;}
.x47{left:330.859119px;}
.x23{left:336.165150px;}
.x58{left:337.208850px;}
.x34{left:338.917050px;}
.x46{left:348.016881px;}
.x41{left:349.904335px;}
.x2e{left:351.285150px;}
.x33{left:353.553150px;}
.x30{left:355.438200px;}
.x45{left:356.580703px;}
.x59{left:359.236350px;}
.x31{left:360.982200px;}
.x27{left:366.042450px;}
.x2a{left:367.151400px;}
.x24{left:370.800000px;}
.x1a{left:374.217150px;}
.x19{left:375.598200px;}
.x28{left:379.005150px;}
.x29{left:381.283500px;}
.x2b{left:384.186450px;}
.x25{left:389.095500px;}
.x2f{left:391.726200px;}
.x26{left:393.137400px;}
.x2c{left:398.288100px;}
.x22{left:402.055914px;}
.x1b{left:403.318200px;}
.x40{left:404.339318px;}
.x32{left:408.499500px;}
.x37{left:409.870200px;}
.x20{left:411.785400px;}
.x3f{left:415.172100px;}
.x5a{left:418.220100px;}
.x1c{left:424.123050px;}
.x36{left:429.425850px;}
.x1d{left:434.092800px;}
.x35{left:442.025850px;}
.x3c{left:446.037150px;}
.x1f{left:454.000800px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x2d{left:465.592800px;}
.x15{left:471.875400px;}
.x3b{left:477.295050px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x69{left:482.591250px;}
.xe{left:491.105400px;}
.x3d{left:492.929850px;}
.x38{left:501.366000px;}
.x50{left:502.730400px;}
.x67{left:503.858400px;}
.x16{left:512.365350px;}
.x51{left:518.975400px;}
.x3a{left:526.455750px;}
.x39{left:531.999750px;}
.x21{left:534.781650px;}
.x1e{left:539.569500px;}
.x5b{left:566.371350px;}
.x5d{left:571.220100px;}
.x5c{left:579.803850px;}
.x66{left:596.080350px;}
.x5e{left:634.400100px;}
.x60{left:640.812600px;}
.x5f{left:649.081350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x62{left:700.133850px;}
.x63{left:703.565100px;}
.x61{left:705.916350px;}
.x52{left:721.715400px;}
.xf{left:728.391600px;}
.x53{left:743.851350px;}
.x13{left:749.673300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls56{letter-spacing:-1.578667pt;}
.lsc{letter-spacing:-1.040000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls45{letter-spacing:-0.533333pt;}
.ls53{letter-spacing:-0.480000pt;}
.ls47{letter-spacing:-0.373333pt;}
.ls31{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.213333pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls51{letter-spacing:-0.129024pt;}
.ls8e{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.106667pt;}
.ls8d{letter-spacing:-0.085333pt;}
.ls2f{letter-spacing:-0.053333pt;}
.ls8c{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.005045pt;}
.ls34{letter-spacing:0.031093pt;}
.ls73{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.053333pt;}
.ls74{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls55{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls75{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.213333pt;}
.ls52{letter-spacing:0.214179pt;}
.ls82{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls8a{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.373333pt;}
.ls80{letter-spacing:0.384000pt;}
.ls44{letter-spacing:0.426667pt;}
.ls7b{letter-spacing:0.469333pt;}
.ls3e{letter-spacing:0.480000pt;}
.ls6d{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.533333pt;}
.ls86{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.586667pt;}
.ls48{letter-spacing:0.597333pt;}
.ls16{letter-spacing:0.640000pt;}
.ls7d{letter-spacing:0.682667pt;}
.ls4d{letter-spacing:0.688128pt;}
.ls35{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.725333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls77{letter-spacing:0.768000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls8b{letter-spacing:0.810667pt;}
.ls11{letter-spacing:0.853333pt;}
.ls71{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls7c{letter-spacing:0.938667pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls8f{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls7a{letter-spacing:1.109333pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls72{letter-spacing:1.152000pt;}
.ls27{letter-spacing:1.173333pt;}
.ls92{letter-spacing:1.194667pt;}
.ls14{letter-spacing:1.226667pt;}
.ls94{letter-spacing:1.237333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls2c{letter-spacing:1.333333pt;}
.ls84{letter-spacing:1.365333pt;}
.ls19{letter-spacing:1.386667pt;}
.ls79{letter-spacing:1.408000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls83{letter-spacing:1.450667pt;}
.ls59{letter-spacing:1.493333pt;}
.ls96{letter-spacing:1.536000pt;}
.ls2{letter-spacing:1.546667pt;}
.ls78{letter-spacing:1.578667pt;}
.ls24{letter-spacing:1.600000pt;}
.ls6b{letter-spacing:1.621333pt;}
.ls1e{letter-spacing:1.653333pt;}
.ls88{letter-spacing:1.664000pt;}
.ls5a{letter-spacing:1.706667pt;}
.ls12{letter-spacing:1.760000pt;}
.lse{letter-spacing:1.813333pt;}
.ls91{letter-spacing:1.834667pt;}
.ls20{letter-spacing:1.866667pt;}
.ls93{letter-spacing:1.877333pt;}
.ls36{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:1.973333pt;}
.ls7f{letter-spacing:2.005333pt;}
.ls3b{letter-spacing:2.026667pt;}
.ls3d{letter-spacing:2.080000pt;}
.ls90{letter-spacing:2.090667pt;}
.ls4{letter-spacing:2.133333pt;}
.ls95{letter-spacing:2.176000pt;}
.ls21{letter-spacing:2.186667pt;}
.ls54{letter-spacing:2.240000pt;}
.ls70{letter-spacing:2.261333pt;}
.ls1c{letter-spacing:2.293333pt;}
.ls85{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.346667pt;}
.ls81{letter-spacing:2.389333pt;}
.ls5e{letter-spacing:2.400000pt;}
.ls58{letter-spacing:2.453333pt;}
.ls38{letter-spacing:2.506667pt;}
.ls6e{letter-spacing:2.517333pt;}
.ls57{letter-spacing:2.560000pt;}
.ls39{letter-spacing:2.613333pt;}
.ls29{letter-spacing:2.666667pt;}
.ls89{letter-spacing:2.688000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls76{letter-spacing:2.730667pt;}
.ls3c{letter-spacing:2.773333pt;}
.ls5d{letter-spacing:2.826667pt;}
.ls3a{letter-spacing:2.880000pt;}
.ls40{letter-spacing:2.933333pt;}
.ls3f{letter-spacing:2.986667pt;}
.ls7e{letter-spacing:3.029333pt;}
.ls42{letter-spacing:3.040000pt;}
.ls32{letter-spacing:3.093333pt;}
.ls43{letter-spacing:3.146667pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.253333pt;}
.ls1d{letter-spacing:3.306667pt;}
.ls6a{letter-spacing:3.360000pt;}
.ls62{letter-spacing:3.413333pt;}
.ls26{letter-spacing:3.466667pt;}
.ls61{letter-spacing:3.520000pt;}
.ls60{letter-spacing:3.680000pt;}
.ls41{letter-spacing:3.733333pt;}
.ls87{letter-spacing:3.797333pt;}
.ls65{letter-spacing:3.946667pt;}
.ls97{letter-spacing:3.968000pt;}
.ls50{letter-spacing:4.053333pt;}
.ls5b{letter-spacing:4.213333pt;}
.ls18{letter-spacing:4.373333pt;}
.ls1f{letter-spacing:4.693333pt;}
.ls5f{letter-spacing:5.173333pt;}
.ls63{letter-spacing:5.226667pt;}
.ls66{letter-spacing:5.333333pt;}
.ls68{letter-spacing:5.653333pt;}
.ls5c{letter-spacing:6.026667pt;}
.ls64{letter-spacing:6.133333pt;}
.ls69{letter-spacing:6.720000pt;}
.ls67{letter-spacing:7.306667pt;}
.ls4c{letter-spacing:10.687279pt;}
.ls4b{letter-spacing:10.752000pt;}
.ls4a{letter-spacing:10.838016pt;}
.ls4e{letter-spacing:10.881024pt;}
.ls4f{letter-spacing:11.698176pt;}
.ls33{letter-spacing:205.952000pt;}
.ws0{word-spacing:-31.284267pt;}
.wsd1{word-spacing:-17.760000pt;}
.wsd2{word-spacing:-17.066667pt;}
.ws10{word-spacing:-15.626667pt;}
.ws47{word-spacing:-15.146667pt;}
.wsbd{word-spacing:-15.093333pt;}
.wsaf{word-spacing:-15.040000pt;}
.ws11{word-spacing:-14.986667pt;}
.ws4c{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws48{word-spacing:-14.666667pt;}
.wsa0{word-spacing:-14.506667pt;}
.wsd0{word-spacing:-14.453333pt;}
.ws4d{word-spacing:-14.400000pt;}
.wsbc{word-spacing:-14.293333pt;}
.ws50{word-spacing:-14.240000pt;}
.wse{word-spacing:-14.133333pt;}
.wsa8{word-spacing:-14.026667pt;}
.wsbb{word-spacing:-13.973333pt;}
.wsf{word-spacing:-13.920000pt;}
.wsaa{word-spacing:-13.866667pt;}
.ws51{word-spacing:-13.813333pt;}
.wsa9{word-spacing:-13.706667pt;}
.ws4b{word-spacing:-13.653333pt;}
.wscf{word-spacing:-13.600000pt;}
.ws4e{word-spacing:-13.493333pt;}
.ws49{word-spacing:-13.440000pt;}
.ws4f{word-spacing:-13.386667pt;}
.ws7d{word-spacing:-13.333333pt;}
.wsae{word-spacing:-13.280000pt;}
.wse7{word-spacing:-13.226667pt;}
.wse8{word-spacing:-13.013333pt;}
.ws4a{word-spacing:-12.800000pt;}
.ws10b{word-spacing:-12.757333pt;}
.ws10a{word-spacing:-12.373333pt;}
.ws10f{word-spacing:-12.074667pt;}
.ws5{word-spacing:-11.861333pt;}
.wsec{word-spacing:-11.776000pt;}
.wse5{word-spacing:-11.605333pt;}
.wsd4{word-spacing:-11.562667pt;}
.wse6{word-spacing:-11.520000pt;}
.wsed{word-spacing:-11.477333pt;}
.ws64{word-spacing:-11.264000pt;}
.wse9{word-spacing:-11.178667pt;}
.ws10e{word-spacing:-11.136000pt;}
.ws4{word-spacing:-11.120000pt;}
.wsea{word-spacing:-10.922667pt;}
.ws10c{word-spacing:-10.880000pt;}
.ws10d{word-spacing:-10.837333pt;}
.wsd3{word-spacing:-10.794667pt;}
.ws6b{word-spacing:-10.773467pt;}
.ws69{word-spacing:-10.752000pt;}
.ws3c{word-spacing:-10.666667pt;}
.ws110{word-spacing:-10.624000pt;}
.wseb{word-spacing:-10.538667pt;}
.wsc5{word-spacing:-10.000000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws78{word-spacing:-8.924133pt;}
.ws2f{word-spacing:-7.804427pt;}
.ws2{word-spacing:-6.482960pt;}
.ws1b{word-spacing:-4.693333pt;}
.ws21{word-spacing:-4.373333pt;}
.ws9d{word-spacing:-3.200000pt;}
.ws60{word-spacing:-3.040000pt;}
.wsf6{word-spacing:-3.029333pt;}
.wsdc{word-spacing:-2.933333pt;}
.ws106{word-spacing:-2.688000pt;}
.ws28{word-spacing:-2.666667pt;}
.ws7{word-spacing:-2.565333pt;}
.wsf9{word-spacing:-2.560000pt;}
.wse0{word-spacing:-2.517333pt;}
.ws58{word-spacing:-2.506667pt;}
.wsd7{word-spacing:-2.400000pt;}
.ws22{word-spacing:-2.346667pt;}
.ws19{word-spacing:-2.293333pt;}
.ws1f{word-spacing:-2.186667pt;}
.wsfb{word-spacing:-2.133333pt;}
.ws113{word-spacing:-2.090667pt;}
.ws5c{word-spacing:-2.080000pt;}
.ws96{word-spacing:-1.973333pt;}
.ws111{word-spacing:-1.962667pt;}
.ws41{word-spacing:-1.920000pt;}
.ws1e{word-spacing:-1.866667pt;}
.wsd6{word-spacing:-1.760000pt;}
.ws112{word-spacing:-1.706667pt;}
.ws104{word-spacing:-1.664000pt;}
.ws1a{word-spacing:-1.653333pt;}
.ws54{word-spacing:-1.600000pt;}
.wsef{word-spacing:-1.578667pt;}
.ws27{word-spacing:-1.546667pt;}
.ws91{word-spacing:-1.493333pt;}
.ws43{word-spacing:-1.440000pt;}
.wsf5{word-spacing:-1.408000pt;}
.wsb5{word-spacing:-1.386667pt;}
.wsff{word-spacing:-1.365333pt;}
.wsb3{word-spacing:-1.280000pt;}
.ws40{word-spacing:-1.226667pt;}
.wsb4{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.152000pt;}
.wsda{word-spacing:-1.120000pt;}
.wsf0{word-spacing:-1.109333pt;}
.ws53{word-spacing:-1.066667pt;}
.ws61{word-spacing:-1.013333pt;}
.ws100{word-spacing:-0.981333pt;}
.ws9{word-spacing:-0.960000pt;}
.wsf1{word-spacing:-0.938667pt;}
.wsac{word-spacing:-0.853333pt;}
.ws109{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.800000pt;}
.wsee{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.746667pt;}
.ws74{word-spacing:-0.731136pt;}
.wsf4{word-spacing:-0.725333pt;}
.ws52{word-spacing:-0.693333pt;}
.wsf3{word-spacing:-0.682667pt;}
.wsb9{word-spacing:-0.640000pt;}
.wsf7{word-spacing:-0.597333pt;}
.wsb8{word-spacing:-0.586667pt;}
.ws102{word-spacing:-0.554667pt;}
.ws99{word-spacing:-0.533333pt;}
.wsfa{word-spacing:-0.512000pt;}
.ws115{word-spacing:-0.469333pt;}
.ws77{word-spacing:-0.430080pt;}
.ws105{word-spacing:-0.426667pt;}
.ws76{word-spacing:-0.387072pt;}
.wsfe{word-spacing:-0.384000pt;}
.ws55{word-spacing:-0.373333pt;}
.ws6d{word-spacing:-0.344064pt;}
.ws29{word-spacing:-0.320000pt;}
.ws6e{word-spacing:-0.301056pt;}
.ws107{word-spacing:-0.298667pt;}
.ws14{word-spacing:-0.266667pt;}
.wsf8{word-spacing:-0.256000pt;}
.ws79{word-spacing:-0.214179pt;}
.ws1d{word-spacing:-0.213333pt;}
.wse4{word-spacing:-0.170667pt;}
.ws62{word-spacing:-0.160000pt;}
.ws8b{word-spacing:-0.128000pt;}
.ws9c{word-spacing:-0.106667pt;}
.wse3{word-spacing:-0.085333pt;}
.ws42{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.042667pt;}
.ws93{word-spacing:0.053333pt;}
.ws6c{word-spacing:0.086016pt;}
.ws5b{word-spacing:0.106667pt;}
.ws103{word-spacing:0.128000pt;}
.ws71{word-spacing:0.129024pt;}
.wsad{word-spacing:0.170667pt;}
.ws6f{word-spacing:0.172032pt;}
.ws116{word-spacing:0.213333pt;}
.ws75{word-spacing:0.258048pt;}
.wsd9{word-spacing:0.266667pt;}
.ws117{word-spacing:0.298667pt;}
.ws16{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.373333pt;}
.ws90{word-spacing:0.426667pt;}
.ws70{word-spacing:0.430080pt;}
.ws95{word-spacing:0.469333pt;}
.ws6a{word-spacing:0.473088pt;}
.wsd8{word-spacing:0.480000pt;}
.ws59{word-spacing:0.533333pt;}
.wsf2{word-spacing:0.597333pt;}
.ws20{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.693333pt;}
.wsa1{word-spacing:0.746667pt;}
.wscd{word-spacing:0.800000pt;}
.wsba{word-spacing:0.810667pt;}
.ws8c{word-spacing:0.853333pt;}
.ws73{word-spacing:0.860160pt;}
.ws72{word-spacing:0.903168pt;}
.wsb1{word-spacing:0.906667pt;}
.ws65{word-spacing:0.960000pt;}
.ws2d{word-spacing:1.013333pt;}
.ws92{word-spacing:1.024000pt;}
.ws8{word-spacing:1.040000pt;}
.ws12{word-spacing:1.066667pt;}
.ws15{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws13{word-spacing:1.280000pt;}
.wsde{word-spacing:1.322667pt;}
.wsdb{word-spacing:1.386667pt;}
.ws5d{word-spacing:1.440000pt;}
.ws68{word-spacing:1.450667pt;}
.wsdd{word-spacing:1.493333pt;}
.wsdf{word-spacing:1.536000pt;}
.wsc0{word-spacing:1.621333pt;}
.ws8e{word-spacing:1.792000pt;}
.ws98{word-spacing:1.813333pt;}
.wsa5{word-spacing:1.866667pt;}
.wsbe{word-spacing:1.920000pt;}
.ws9e{word-spacing:1.973333pt;}
.ws101{word-spacing:2.048000pt;}
.wsa7{word-spacing:2.090667pt;}
.ws9f{word-spacing:2.176000pt;}
.ws23{word-spacing:2.186667pt;}
.ws45{word-spacing:2.218667pt;}
.ws8f{word-spacing:2.240000pt;}
.ws108{word-spacing:2.261333pt;}
.wsd5{word-spacing:2.346667pt;}
.wsc{word-spacing:2.400000pt;}
.ws46{word-spacing:2.474667pt;}
.ws94{word-spacing:2.506667pt;}
.ws2b{word-spacing:2.560000pt;}
.ws114{word-spacing:2.645333pt;}
.ws26{word-spacing:2.666667pt;}
.wse1{word-spacing:2.688000pt;}
.ws66{word-spacing:2.720000pt;}
.wsa3{word-spacing:2.773333pt;}
.ws44{word-spacing:2.826667pt;}
.wsb{word-spacing:2.880000pt;}
.ws9a{word-spacing:2.933333pt;}
.wsa6{word-spacing:2.986667pt;}
.ws7b{word-spacing:3.029333pt;}
.ws8a{word-spacing:3.040000pt;}
.wsfc{word-spacing:3.072000pt;}
.wsce{word-spacing:3.146667pt;}
.ws57{word-spacing:3.253333pt;}
.ws25{word-spacing:3.306667pt;}
.ws63{word-spacing:3.360000pt;}
.ws18{word-spacing:3.413333pt;}
.ws1c{word-spacing:3.466667pt;}
.ws67{word-spacing:3.498667pt;}
.ws3f{word-spacing:3.520000pt;}
.ws7c{word-spacing:3.541333pt;}
.ws17{word-spacing:3.573333pt;}
.wsab{word-spacing:3.680000pt;}
.ws89{word-spacing:3.786667pt;}
.ws7a{word-spacing:3.893333pt;}
.ws56{word-spacing:3.946667pt;}
.wsbf{word-spacing:4.000000pt;}
.ws5a{word-spacing:4.053333pt;}
.ws9b{word-spacing:4.106667pt;}
.ws8d{word-spacing:4.160000pt;}
.ws24{word-spacing:4.213333pt;}
.wsa2{word-spacing:4.266667pt;}
.ws97{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.wsd{word-spacing:4.426667pt;}
.wsa4{word-spacing:4.533333pt;}
.wsb2{word-spacing:5.066667pt;}
.wsb6{word-spacing:5.813333pt;}
.wsb0{word-spacing:5.866667pt;}
.wsb7{word-spacing:6.506667pt;}
.wsc6{word-spacing:17.120000pt;}
.wsc1{word-spacing:18.840000pt;}
.ws88{word-spacing:21.845333pt;}
.ws81{word-spacing:29.397333pt;}
.ws83{word-spacing:34.133333pt;}
.ws82{word-spacing:35.682133pt;}
.ws84{word-spacing:35.712000pt;}
.ws36{word-spacing:51.968000pt;}
.wscb{word-spacing:56.160000pt;}
.wsca{word-spacing:57.360000pt;}
.wsc4{word-spacing:57.680000pt;}
.ws34{word-spacing:59.050667pt;}
.ws31{word-spacing:66.176000pt;}
.wsc9{word-spacing:69.480000pt;}
.ws33{word-spacing:73.642667pt;}
.wsc3{word-spacing:74.000000pt;}
.ws3e{word-spacing:74.453333pt;}
.ws87{word-spacing:75.178667pt;}
.ws86{word-spacing:79.104000pt;}
.ws80{word-spacing:82.730667pt;}
.ws7f{word-spacing:86.656000pt;}
.wsc7{word-spacing:93.920000pt;}
.ws85{word-spacing:96.512000pt;}
.ws30{word-spacing:98.176000pt;}
.ws7e{word-spacing:104.064000pt;}
.wsc2{word-spacing:107.240000pt;}
.wsc8{word-spacing:116.000000pt;}
.wscc{word-spacing:116.377600pt;}
.ws37{word-spacing:174.378667pt;}
.ws35{word-spacing:181.504000pt;}
.ws32{word-spacing:188.586667pt;}
.ws3a{word-spacing:218.240000pt;}
.ws39{word-spacing:228.906667pt;}
.ws38{word-spacing:235.989333pt;}
.ws3b{word-spacing:236.842667pt;}
.ws3d{word-spacing:240.384000pt;}
._d{margin-left:-2576.085333pt;}
._2b{margin-left:-2554.922667pt;}
._4{margin-left:-10.931093pt;}
._5{margin-left:-6.720000pt;}
._6{margin-left:-5.754667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.479387pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.147787pt;}
._a{width:1.756720pt;}
._e{width:2.671173pt;}
._8{width:3.573333pt;}
._7{width:4.640000pt;}
._2d{width:5.541333pt;}
._9{width:6.485333pt;}
._c{width:8.000000pt;}
._b{width:9.120000pt;}
._2c{width:12.117205pt;}
._48{width:31.829333pt;}
._47{width:32.853333pt;}
._34{width:40.064000pt;}
._37{width:41.685333pt;}
._3a{width:43.909733pt;}
._42{width:53.632000pt;}
._14{width:63.616000pt;}
._40{width:67.328000pt;}
._27{width:68.650667pt;}
._43{width:71.466667pt;}
._15{width:73.770667pt;}
._45{width:75.202053pt;}
._21{width:77.994667pt;}
._25{width:79.189333pt;}
._20{width:83.370667pt;}
._24{width:84.565333pt;}
._3d{width:86.058667pt;}
._60{width:87.640000pt;}
._1f{width:88.661333pt;}
._56{width:90.013333pt;}
._1a{width:92.245333pt;}
._1e{width:94.037333pt;}
._5b{width:95.464000pt;}
._13{width:96.426667pt;}
._19{width:97.621333pt;}
._10{width:99.712000pt;}
._18{width:101.888000pt;}
._2f{width:104.064000pt;}
._58{width:104.977547pt;}
._5d{width:107.040000pt;}
._2a{width:108.160000pt;}
._12{width:109.866667pt;}
._5e{width:112.640000pt;}
._4e{width:113.800000pt;}
._55{width:114.840000pt;}
._57{width:117.248000pt;}
._61{width:118.336000pt;}
._4f{width:119.613333pt;}
._4d{width:123.760000pt;}
._53{width:125.013333pt;}
._11{width:128.597333pt;}
._1d{width:131.285333pt;}
._29{width:134.826667pt;}
._f{width:136.106667pt;}
._51{width:139.680000pt;}
._50{width:141.440000pt;}
._17{width:143.146667pt;}
._2e{width:148.906667pt;}
._5c{width:151.797333pt;}
._54{width:157.181333pt;}
._30{width:159.275787pt;}
._41{width:161.024000pt;}
._28{width:170.453333pt;}
._5f{width:173.333333pt;}
._35{width:176.128000pt;}
._1c{width:177.536000pt;}
._5a{width:179.780213pt;}
._62{width:180.834667pt;}
._59{width:183.333333pt;}
._22{width:188.202667pt;}
._33{width:189.781333pt;}
._52{width:192.600000pt;}
._1b{width:203.648000pt;}
._3c{width:208.682667pt;}
._16{width:213.120000pt;}
._23{width:251.050667pt;}
._26{width:253.397333pt;}
._3b{width:273.450667pt;}
._38{width:285.269333pt;}
._39{width:287.322667pt;}
._31{width:296.172720pt;}
._36{width:306.602667pt;}
._3f{width:311.813333pt;}
._44{width:328.709333pt;}
._32{width:330.325333pt;}
._4c{width:349.696000pt;}
._4a{width:352.042667pt;}
._4b{width:354.096000pt;}
._3e{width:357.168000pt;}
._49{width:373.376000pt;}
._46{width:397.098667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fsd{font-size:35.696533pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:43.008000pt;}
.fsc{font-size:43.093867pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y23f{bottom:71.345333pt;}
.y161{bottom:73.704133pt;}
.y10d{bottom:73.831333pt;}
.y1ba{bottom:74.163467pt;}
.y177{bottom:74.176533pt;}
.y1d8{bottom:74.342533pt;}
.yaa{bottom:74.365467pt;}
.y60{bottom:74.462533pt;}
.y6e{bottom:74.595867pt;}
.y82{bottom:74.678400pt;}
.ya6{bottom:74.840533pt;}
.y24{bottom:78.518933pt;}
.y1fe{bottom:79.219467pt;}
.y23e{bottom:84.678667pt;}
.y160{bottom:87.698800pt;}
.y176{bottom:88.171200pt;}
.ya9{bottom:88.360133pt;}
.y10c{bottom:88.498000pt;}
.y1d7{bottom:90.342533pt;}
.y5f{bottom:90.462533pt;}
.y6d{bottom:90.595867pt;}
.ya5{bottom:90.840533pt;}
.y23{bottom:91.848933pt;}
.y1fd{bottom:92.552800pt;}
.y1b9{bottom:96.722667pt;}
.y81{bottom:97.355733pt;}
.y23d{bottom:98.012000pt;}
.y15f{bottom:101.693467pt;}
.y175{bottom:102.165867pt;}
.ya8{bottom:102.354800pt;}
.y22{bottom:105.182267pt;}
.y1fc{bottom:105.886133pt;}
.y1d6{bottom:106.342533pt;}
.y5e{bottom:106.462533pt;}
.y6c{bottom:106.595867pt;}
.ya4{bottom:106.840533pt;}
.y1b8{bottom:110.532800pt;}
.y10b{bottom:111.175333pt;}
.y23c{bottom:111.345333pt;}
.y80{bottom:111.798400pt;}
.y1fb{bottom:119.219467pt;}
.y1d5{bottom:122.342533pt;}
.y5d{bottom:122.462533pt;}
.y6b{bottom:122.595867pt;}
.ya3{bottom:122.840533pt;}
.yac{bottom:123.024000pt;}
.y1b7{bottom:124.312800pt;}
.y23b{bottom:124.678667pt;}
.y10a{bottom:125.618000pt;}
.y7f{bottom:126.241067pt;}
.ydd{bottom:126.320667pt;}
.y1fa{bottom:132.552800pt;}
.y23a{bottom:138.012000pt;}
.y1b6{bottom:138.092800pt;}
.y1d4{bottom:138.342533pt;}
.y5c{bottom:138.462533pt;}
.y6a{bottom:138.595867pt;}
.ya2{bottom:138.840533pt;}
.y109{bottom:140.060667pt;}
.y7e{bottom:140.683733pt;}
.ydc{bottom:141.115067pt;}
.y29{bottom:144.952667pt;}
.y1f9{bottom:145.886133pt;}
.y239{bottom:151.345333pt;}
.y1b5{bottom:151.872800pt;}
.ye5{bottom:153.002976pt;}
.y1d3{bottom:154.342533pt;}
.y5b{bottom:154.462533pt;}
.y108{bottom:154.503333pt;}
.y69{bottom:154.595867pt;}
.ya1{bottom:154.840533pt;}
.y7d{bottom:155.126400pt;}
.ydb{bottom:155.888667pt;}
.y1f8{bottom:159.219467pt;}
.y28{bottom:160.952667pt;}
.y238{bottom:164.678667pt;}
.y1b4{bottom:165.652800pt;}
.y107{bottom:168.974133pt;}
.y7c{bottom:169.569067pt;}
.y1d2{bottom:170.342533pt;}
.y5a{bottom:170.462533pt;}
.y68{bottom:170.595867pt;}
.yda{bottom:170.683067pt;}
.ya0{bottom:170.840533pt;}
.y1f7{bottom:172.552800pt;}
.y27{bottom:176.952667pt;}
.y237{bottom:178.012000pt;}
.y1b3{bottom:179.432800pt;}
.y106{bottom:183.416800pt;}
.y7b{bottom:184.011733pt;}
.yd9{bottom:185.456667pt;}
.y1f6{bottom:185.886133pt;}
.ye4{bottom:186.272145pt;}
.y1d1{bottom:186.342533pt;}
.y59{bottom:186.462533pt;}
.y67{bottom:186.595867pt;}
.y9f{bottom:186.840533pt;}
.y236{bottom:191.345333pt;}
.y26{bottom:192.952667pt;}
.y1b2{bottom:193.212800pt;}
.y105{bottom:197.859467pt;}
.y7a{bottom:198.454400pt;}
.y1f5{bottom:199.219467pt;}
.yd8{bottom:200.357067pt;}
.y1d0{bottom:202.342533pt;}
.y58{bottom:202.462533pt;}
.y66{bottom:202.595867pt;}
.y9e{bottom:202.840533pt;}
.y235{bottom:204.678667pt;}
.y1b1{bottom:206.992800pt;}
.y2b{bottom:208.952667pt;}
.y104{bottom:212.302133pt;}
.y1f4{bottom:212.552800pt;}
.y79{bottom:212.897067pt;}
.yd7{bottom:215.149733pt;}
.y234{bottom:218.012000pt;}
.y1cf{bottom:218.342533pt;}
.y57{bottom:218.462533pt;}
.y65{bottom:218.595867pt;}
.y9d{bottom:218.840533pt;}
.y1b0{bottom:220.772800pt;}
.y25{bottom:224.592667pt;}
.y2a{bottom:224.952667pt;}
.y1f3{bottom:225.886133pt;}
.y103{bottom:226.744800pt;}
.y78{bottom:227.339733pt;}
.yd6{bottom:229.925067pt;}
.ye3{bottom:230.741101pt;}
.y233{bottom:231.345333pt;}
.y1ce{bottom:233.982533pt;}
.y89{bottom:234.462533pt;}
.y1af{bottom:234.552800pt;}
.y64{bottom:234.595867pt;}
.y9c{bottom:234.840533pt;}
.y1f2{bottom:239.219467pt;}
.y102{bottom:241.187467pt;}
.y77{bottom:241.782400pt;}
.ye6{bottom:241.833799pt;}
.y232{bottom:244.678667pt;}
.yd5{bottom:244.717733pt;}
.y1ae{bottom:248.332800pt;}
.y56{bottom:250.102533pt;}
.y88{bottom:250.462533pt;}
.y9b{bottom:250.840533pt;}
.y1f1{bottom:252.552800pt;}
.yeb{bottom:254.702399pt;}
.y101{bottom:255.630133pt;}
.y76{bottom:256.225067pt;}
.y231{bottom:258.012000pt;}
.yd4{bottom:258.507733pt;}
.y1f0{bottom:265.886133pt;}
.y63{bottom:266.235867pt;}
.y1cd{bottom:266.342533pt;}
.y87{bottom:266.462533pt;}
.y9a{bottom:266.840533pt;}
.y100{bottom:270.072800pt;}
.y230{bottom:271.345333pt;}
.y1a4{bottom:273.422800pt;}
.y1a7{bottom:273.432800pt;}
.y1aa{bottom:273.442800pt;}
.y1ad{bottom:273.452800pt;}
.yd3{bottom:274.285733pt;}
.y1ef{bottom:279.219467pt;}
.y55{bottom:281.982533pt;}
.y75{bottom:282.006400pt;}
.y1cc{bottom:282.342533pt;}
.y86{bottom:282.462533pt;}
.y99{bottom:282.840533pt;}
.yff{bottom:284.515467pt;}
.y22f{bottom:284.678667pt;}
.y1a3{bottom:286.752800pt;}
.y1a6{bottom:286.762800pt;}
.y1a9{bottom:286.772800pt;}
.y1ac{bottom:286.782800pt;}
.yd2{bottom:289.195733pt;}
.y21{bottom:290.323733pt;}
.y1ee{bottom:292.552800pt;}
.y22e{bottom:298.012000pt;}
.y1cb{bottom:298.342533pt;}
.y62{bottom:298.462533pt;}
.y98{bottom:298.840533pt;}
.y1a2{bottom:300.082800pt;}
.y1a5{bottom:300.092800pt;}
.y1a8{bottom:300.102800pt;}
.y1ab{bottom:300.112800pt;}
.yd1{bottom:302.976133pt;}
.y1ed{bottom:305.886133pt;}
.y74{bottom:310.798533pt;}
.y22d{bottom:311.345333pt;}
.yfe{bottom:312.526133pt;}
.y1ca{bottom:314.342533pt;}
.y61{bottom:314.462533pt;}
.y20{bottom:314.630400pt;}
.y97{bottom:314.840533pt;}
.yd0{bottom:318.763733pt;}
.y1ec{bottom:319.219467pt;}
.y22c{bottom:324.678667pt;}
.y73{bottom:328.131867pt;}
.y1a1{bottom:328.320800pt;}
.y1c9{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.y1f{bottom:330.630400pt;}
.y96{bottom:330.840533pt;}
.y1eb{bottom:332.552800pt;}
.ycf{bottom:333.556400pt;}
.y22b{bottom:338.012000pt;}
.yfd{bottom:343.555867pt;}
.y1ea{bottom:345.886133pt;}
.y1c8{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.yf0{bottom:346.576352pt;}
.y1e{bottom:346.630400pt;}
.y95{bottom:346.840533pt;}
.yce{bottom:348.331733pt;}
.y22a{bottom:351.345333pt;}
.y1e9{bottom:359.219467pt;}
.yfc{bottom:360.889200pt;}
.yf4{bottom:362.219733pt;}
.y1c7{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y1d{bottom:362.630400pt;}
.y94{bottom:362.849200pt;}
.ycd{bottom:363.232133pt;}
.y72{bottom:363.891067pt;}
.yea{bottom:363.924867pt;}
.y229{bottom:364.678667pt;}
.y1a0{bottom:368.507200pt;}
.y1e8{bottom:372.552800pt;}
.y71{bottom:377.885733pt;}
.y228{bottom:378.012000pt;}
.ycc{bottom:378.024800pt;}
.yfb{bottom:378.222533pt;}
.y1c6{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y1c{bottom:378.630400pt;}
.y93{bottom:378.849200pt;}
.y19f{bottom:382.501867pt;}
.y1e7{bottom:385.886133pt;}
.y227{bottom:391.345333pt;}
.yf1{bottom:391.714618pt;}
.y70{bottom:391.880400pt;}
.ycb{bottom:392.800133pt;}
.y1c5{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y1b{bottom:394.630400pt;}
.y92{bottom:394.849200pt;}
.y19e{bottom:396.496533pt;}
.y1e6{bottom:399.219467pt;}
.y226{bottom:404.678667pt;}
.yca{bottom:407.592800pt;}
.y1c4{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y1a{bottom:410.630400pt;}
.y91{bottom:410.849200pt;}
.y1e5{bottom:412.552800pt;}
.y120{bottom:417.827867pt;}
.y225{bottom:418.012000pt;}
.yef{bottom:420.610962pt;}
.yc9{bottom:422.385600pt;}
.y1e4{bottom:425.886133pt;}
.y1c3{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y19{bottom:426.630400pt;}
.y90{bottom:426.849200pt;}
.y224{bottom:431.345333pt;}
.y11f{bottom:432.494533pt;}
.yc8{bottom:437.160800pt;}
.y1e3{bottom:439.219467pt;}
.y1c2{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y18{bottom:442.630400pt;}
.y8f{bottom:442.849200pt;}
.y223{bottom:444.678667pt;}
.yc7{bottom:452.061733pt;}
.y1e2{bottom:452.552800pt;}
.y11e{bottom:455.171867pt;}
.y222{bottom:458.012000pt;}
.y1c1{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y17{bottom:458.630400pt;}
.y8e{bottom:458.849200pt;}
.y1e1{bottom:465.886133pt;}
.yc6{bottom:466.854400pt;}
.y11d{bottom:469.614533pt;}
.y221{bottom:471.345333pt;}
.y1c0{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y16{bottom:474.630400pt;}
.y8d{bottom:474.849200pt;}
.y1e0{bottom:479.219467pt;}
.yc5{bottom:481.629733pt;}
.yed{bottom:482.428433pt;}
.y11c{bottom:484.057200pt;}
.y220{bottom:484.678667pt;}
.y1bf{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y15{bottom:490.630400pt;}
.y1df{bottom:492.552800pt;}
.yc4{bottom:496.422400pt;}
.y21f{bottom:498.012000pt;}
.y11b{bottom:498.499867pt;}
.y19d{bottom:504.570267pt;}
.y85{bottom:506.102533pt;}
.y1be{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y8c{bottom:506.489200pt;}
.y14{bottom:506.630400pt;}
.yc3{bottom:511.197733pt;}
.y21e{bottom:511.345333pt;}
.y11a{bottom:512.942533pt;}
.y19c{bottom:518.564933pt;}
.y1de{bottom:521.982533pt;}
.y1bd{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y17c{bottom:522.595867pt;}
.y13{bottom:522.630400pt;}
.y192{bottom:522.742533pt;}
.y21d{bottom:524.678667pt;}
.yc2{bottom:526.098000pt;}
.y119{bottom:527.385200pt;}
.y19b{bottom:532.559600pt;}
.y84{bottom:537.982533pt;}
.y21c{bottom:538.012000pt;}
.y1bc{bottom:538.342533pt;}
.y8b{bottom:538.369200pt;}
.y47{bottom:538.462533pt;}
.y17b{bottom:538.595867pt;}
.y12{bottom:538.630400pt;}
.y191{bottom:538.742533pt;}
.yf3{bottom:539.792763pt;}
.yc1{bottom:539.887600pt;}
.y118{bottom:541.852400pt;}
.y21b{bottom:551.345333pt;}
.y19a{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y17a{bottom:554.595867pt;}
.y11{bottom:554.630400pt;}
.yc0{bottom:554.662400pt;}
.y190{bottom:554.742533pt;}
.y117{bottom:556.295067pt;}
.y21a{bottom:564.678667pt;}
.yee{bottom:568.582017pt;}
.ybf{bottom:569.455600pt;}
.y8a{bottom:570.235867pt;}
.y199{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y13a{bottom:570.595867pt;}
.y116{bottom:570.737733pt;}
.y219{bottom:578.012000pt;}
.ybe{bottom:584.248400pt;}
.y115{bottom:585.180400pt;}
.y1dd{bottom:586.102533pt;}
.y198{bottom:586.342533pt;}
.y18f{bottom:586.382533pt;}
.y44{bottom:586.462533pt;}
.y174{bottom:586.582533pt;}
.y139{bottom:586.595867pt;}
.y218{bottom:591.345333pt;}
.y10{bottom:594.770933pt;}
.ybd{bottom:599.023600pt;}
.y114{bottom:599.623067pt;}
.y197{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.y173{bottom:602.582533pt;}
.y14c{bottom:602.590533pt;}
.y138{bottom:602.595867pt;}
.y15e{bottom:602.723867pt;}
.y217{bottom:604.678667pt;}
.yf{bottom:605.838267pt;}
.ybb{bottom:613.708667pt;}
.y113{bottom:614.065733pt;}
.ybc{bottom:614.353787pt;}
.y216{bottom:618.012000pt;}
.y196{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.y172{bottom:618.582533pt;}
.y14b{bottom:618.590533pt;}
.y137{bottom:618.595867pt;}
.y18e{bottom:618.609200pt;}
.y15d{bottom:618.723867pt;}
.y112{bottom:628.508400pt;}
.yb9{bottom:630.159600pt;}
.y215{bottom:631.345333pt;}
.ye{bottom:634.029867pt;}
.y1dc{bottom:634.102533pt;}
.yec{bottom:634.335031pt;}
.y195{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.y171{bottom:634.582533pt;}
.y14a{bottom:634.590533pt;}
.y136{bottom:634.595867pt;}
.y18d{bottom:634.609200pt;}
.y15c{bottom:634.723867pt;}
.y111{bottom:642.951067pt;}
.y214{bottom:644.678667pt;}
.yb8{bottom:644.934400pt;}
.ye0{bottom:648.238831pt;}
.y194{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.y170{bottom:650.582533pt;}
.y149{bottom:650.590533pt;}
.y135{bottom:650.595867pt;}
.y18c{bottom:650.609200pt;}
.y12c{bottom:650.715867pt;}
.y15b{bottom:650.723867pt;}
.yd{bottom:650.852400pt;}
.yba{bottom:651.788667pt;}
.yad{bottom:655.208400pt;}
.y213{bottom:658.012000pt;}
.yb7{bottom:659.727600pt;}
.ydf{bottom:661.125279pt;}
.yc{bottom:662.852400pt;}
.y179{bottom:666.235867pt;}
.y3f{bottom:666.462533pt;}
.y16f{bottom:666.582533pt;}
.y148{bottom:666.590533pt;}
.y134{bottom:666.595867pt;}
.y18b{bottom:666.609200pt;}
.y12b{bottom:666.715867pt;}
.y15a{bottom:666.723867pt;}
.yb{bottom:670.029867pt;}
.y110{bottom:670.961733pt;}
.y212{bottom:671.345333pt;}
.yde{bottom:672.325067pt;}
.yb6{bottom:674.502400pt;}
.y193{bottom:681.982533pt;}
.ya{bottom:682.029867pt;}
.y3e{bottom:682.462533pt;}
.y16e{bottom:682.582533pt;}
.y147{bottom:682.590533pt;}
.y133{bottom:682.595867pt;}
.y18a{bottom:682.609200pt;}
.y12a{bottom:682.715867pt;}
.y159{bottom:682.723867pt;}
.y211{bottom:684.678667pt;}
.yb4{bottom:689.402800pt;}
.ye1{bottom:689.682506pt;}
.y210{bottom:698.012000pt;}
.y1db{bottom:698.102533pt;}
.y3d{bottom:698.462533pt;}
.y16d{bottom:698.582533pt;}
.y146{bottom:698.590533pt;}
.y132{bottom:698.595867pt;}
.y189{bottom:698.609200pt;}
.y129{bottom:698.715867pt;}
.y158{bottom:698.723867pt;}
.y9{bottom:698.852400pt;}
.ye2{bottom:700.784128pt;}
.y10f{bottom:701.979600pt;}
.yb5{bottom:703.532667pt;}
.yb3{bottom:704.196000pt;}
.y20f{bottom:711.345333pt;}
.y3c{bottom:714.462533pt;}
.y16c{bottom:714.582533pt;}
.y145{bottom:714.590533pt;}
.y131{bottom:714.595867pt;}
.y188{bottom:714.609200pt;}
.y128{bottom:714.715867pt;}
.y157{bottom:714.723867pt;}
.yb2{bottom:718.540667pt;}
.y10e{bottom:719.312933pt;}
.y8{bottom:724.382933pt;}
.y20e{bottom:724.678667pt;}
.y3b{bottom:730.462533pt;}
.y16b{bottom:730.582533pt;}
.y144{bottom:730.590533pt;}
.y130{bottom:730.595867pt;}
.y187{bottom:730.609200pt;}
.y127{bottom:730.715867pt;}
.y156{bottom:730.723867pt;}
.yf2{bottom:732.464801pt;}
.yb0{bottom:733.764000pt;}
.y20d{bottom:738.012000pt;}
.y1da{bottom:746.102533pt;}
.y3a{bottom:746.462533pt;}
.y16a{bottom:746.582533pt;}
.y143{bottom:746.590533pt;}
.y12f{bottom:746.595867pt;}
.y186{bottom:746.609200pt;}
.y126{bottom:746.715867pt;}
.y155{bottom:746.723867pt;}
.yaf{bottom:748.538800pt;}
.y20c{bottom:751.345333pt;}
.ye9{bottom:751.839095pt;}
.yb1{bottom:755.402267pt;}
.y39{bottom:762.462533pt;}
.y169{bottom:762.582533pt;}
.y142{bottom:762.590533pt;}
.yfa{bottom:762.595867pt;}
.y185{bottom:762.609200pt;}
.y125{bottom:762.715867pt;}
.y154{bottom:762.723867pt;}
.yae{bottom:763.332000pt;}
.y20b{bottom:764.678667pt;}
.ye8{bottom:764.823709pt;}
.y7{bottom:765.406933pt;}
.ye7{bottom:775.925331pt;}
.y20a{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y168{bottom:778.582533pt;}
.y141{bottom:778.590533pt;}
.y12e{bottom:778.595867pt;}
.y184{bottom:778.609200pt;}
.y124{bottom:778.715867pt;}
.y153{bottom:778.723867pt;}
.y209{bottom:791.345333pt;}
.yf9{bottom:794.235867pt;}
.y37{bottom:794.462533pt;}
.y167{bottom:794.582533pt;}
.y140{bottom:794.590533pt;}
.y12d{bottom:794.595867pt;}
.y183{bottom:794.609200pt;}
.y6{bottom:797.816533pt;}
.y208{bottom:804.678667pt;}
.y123{bottom:810.355867pt;}
.y152{bottom:810.363867pt;}
.y36{bottom:810.462533pt;}
.y166{bottom:810.582533pt;}
.y13f{bottom:810.590533pt;}
.yf8{bottom:810.595867pt;}
.y207{bottom:818.012000pt;}
.y182{bottom:826.249200pt;}
.y35{bottom:826.462533pt;}
.y165{bottom:826.582533pt;}
.y13e{bottom:826.590533pt;}
.yf7{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y206{bottom:831.345333pt;}
.y122{bottom:842.235867pt;}
.y151{bottom:842.243867pt;}
.y34{bottom:842.462533pt;}
.y164{bottom:842.582533pt;}
.y13d{bottom:842.590533pt;}
.yf6{bottom:842.595867pt;}
.y205{bottom:844.678667pt;}
.y204{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y181{bottom:858.475867pt;}
.y163{bottom:858.582533pt;}
.y13c{bottom:858.590533pt;}
.y4{bottom:862.635733pt;}
.y203{bottom:871.345333pt;}
.yf5{bottom:874.235867pt;}
.y32{bottom:874.462533pt;}
.y150{bottom:874.470533pt;}
.y180{bottom:874.475867pt;}
.y202{bottom:884.678667pt;}
.y1d9{bottom:890.102533pt;}
.y162{bottom:890.222533pt;}
.y13b{bottom:890.230533pt;}
.y31{bottom:890.462533pt;}
.y14f{bottom:890.470533pt;}
.y17f{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y201{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.y14e{bottom:906.470533pt;}
.y17e{bottom:906.475867pt;}
.y200{bottom:911.345333pt;}
.ya7{bottom:922.102533pt;}
.y2f{bottom:922.462533pt;}
.y14d{bottom:922.470533pt;}
.y17d{bottom:922.475867pt;}
.y1ff{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1bb{bottom:1006.590133pt;}
.y6f{bottom:1006.594400pt;}
.y240{bottom:1006.598667pt;}
.yab{bottom:1006.600133pt;}
.y178{bottom:1006.603200pt;}
.y121{bottom:1006.606533pt;}
.y83{bottom:1006.635733pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h1a{height:24.802816pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h1b{height:27.792969pt;}
.hc{height:29.140625pt;}
.h7{height:29.160156pt;}
.h12{height:29.645833pt;}
.h16{height:29.862000pt;}
.h17{height:29.883000pt;}
.h19{height:29.942662pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h1c{height:36.406250pt;}
.h15{height:36.981000pt;}
.h18{height:37.054834pt;}
.he{height:37.057292pt;}
.hd{height:38.828125pt;}
.h13{height:38.833333pt;}
.h9{height:38.854167pt;}
.hb{height:38.859942pt;}
.ha{height:38.880208pt;}
.h11{height:48.541667pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h14{height:664.669333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:452.293333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x55{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x12{left:88.818933pt;}
.x68{left:90.708667pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x65{left:102.251200pt;}
.x64{left:103.651200pt;}
.x6a{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.xc{left:128.644800pt;}
.x17{left:147.858667pt;}
.x4d{left:165.721600pt;}
.x56{left:177.481200pt;}
.x18{left:185.684000pt;}
.x14{left:187.644800pt;}
.x5{left:189.223467pt;}
.x54{left:195.675867pt;}
.x4e{left:217.322800pt;}
.x4f{left:224.046933pt;}
.x4c{left:247.147129pt;}
.x43{left:252.323127pt;}
.x57{left:255.341200pt;}
.x4b{left:261.836253pt;}
.x42{left:264.424252pt;}
.x49{left:273.705350pt;}
.x44{left:276.623542pt;}
.x4a{left:284.798048pt;}
.x48{left:286.029578pt;}
.x3e{left:287.049067pt;}
.x47{left:294.096995pt;}
.x23{left:298.813467pt;}
.x58{left:299.741200pt;}
.x34{left:301.259600pt;}
.x46{left:309.348339pt;}
.x41{left:311.026076pt;}
.x2e{left:312.253467pt;}
.x33{left:314.269467pt;}
.x30{left:315.945067pt;}
.x45{left:316.960625pt;}
.x59{left:319.321200pt;}
.x31{left:320.873067pt;}
.x27{left:325.371067pt;}
.x2a{left:326.356800pt;}
.x24{left:329.600000pt;}
.x1a{left:332.637467pt;}
.x19{left:333.865067pt;}
.x28{left:336.893467pt;}
.x29{left:338.918667pt;}
.x2b{left:341.499067pt;}
.x25{left:345.862667pt;}
.x2f{left:348.201067pt;}
.x26{left:349.455467pt;}
.x2c{left:354.033867pt;}
.x22{left:357.383035pt;}
.x1b{left:358.505067pt;}
.x40{left:359.412727pt;}
.x32{left:363.110667pt;}
.x37{left:364.329067pt;}
.x20{left:366.031467pt;}
.x3f{left:369.041867pt;}
.x5a{left:371.751200pt;}
.x1c{left:376.998267pt;}
.x36{left:381.711867pt;}
.x1d{left:385.860267pt;}
.x35{left:392.911867pt;}
.x3c{left:396.477467pt;}
.x1f{left:403.556267pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x2d{left:413.860267pt;}
.x15{left:419.444800pt;}
.x3b{left:424.262267pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x69{left:428.970000pt;}
.xe{left:436.538133pt;}
.x3d{left:438.159867pt;}
.x38{left:445.658667pt;}
.x50{left:446.871467pt;}
.x67{left:447.874133pt;}
.x16{left:455.435867pt;}
.x51{left:461.311467pt;}
.x3a{left:467.960667pt;}
.x39{left:472.888667pt;}
.x21{left:475.361467pt;}
.x1e{left:479.617333pt;}
.x5b{left:503.441200pt;}
.x5d{left:507.751200pt;}
.x5c{left:515.381200pt;}
.x66{left:529.849200pt;}
.x5e{left:563.911200pt;}
.x60{left:569.611200pt;}
.x5f{left:576.961200pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x62{left:622.341200pt;}
.x63{left:625.391200pt;}
.x61{left:627.481200pt;}
.x52{left:641.524800pt;}
.xf{left:647.459200pt;}
.x53{left:661.201200pt;}
.x13{left:666.376267pt;}
}




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