
    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_daa47043d4de333341ada8a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951172;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_8836babb92f316599598f29a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961426;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_087f2f2a317f954e03016d19.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_74f69ff5a857d2bcf7bb79e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.718750;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_7aab47245d1017b3853dda2f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.678223;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_e194186ed2586a6f6c0164e9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1c766969a7dcbc91678c676d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ab533996622e8e4fa2f5784b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.lsa9{letter-spacing:-8.040000px;}
.lsa1{letter-spacing:-7.560000px;}
.lsa2{letter-spacing:-7.200000px;}
.lsaa{letter-spacing:-6.720000px;}
.ls9d{letter-spacing:-6.240000px;}
.ls95{letter-spacing:-6.180000px;}
.ls53{letter-spacing:-5.640000px;}
.ls52{letter-spacing:-5.520000px;}
.lsba{letter-spacing:-2.640000px;}
.ls97{letter-spacing:-2.160000px;}
.ls1e{letter-spacing:-0.720000px;}
.lsa7{letter-spacing:-0.360000px;}
.lsa8{letter-spacing:-0.300000px;}
.ls33{letter-spacing:-0.240000px;}
.ls43{letter-spacing:-0.180000px;}
.ls93{letter-spacing:-0.144000px;}
.ls45{letter-spacing:-0.120000px;}
.ls61{letter-spacing:-0.096000px;}
.ls1f{letter-spacing:-0.060000px;}
.ls50{letter-spacing:-0.048000px;}
.ls1d{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls36{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls7c{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls65{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.192000px;}
.ls42{letter-spacing:0.240000px;}
.ls48{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls82{letter-spacing:0.336000px;}
.ls31{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.384000px;}
.ls14{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.480000px;}
.ls6c{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.576000px;}
.ls2f{letter-spacing:0.600000px;}
.ls68{letter-spacing:0.624000px;}
.ls39{letter-spacing:0.660000px;}
.ls86{letter-spacing:0.672000px;}
.ls1b{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.768000px;}
.ls3c{letter-spacing:0.780000px;}
.ls7f{letter-spacing:0.816000px;}
.lse{letter-spacing:0.840000px;}
.ls8c{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.900000px;}
.ls94{letter-spacing:0.912000px;}
.ls8{letter-spacing:0.960000px;}
.ls73{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.020000px;}
.ls88{letter-spacing:1.056000px;}
.ls6{letter-spacing:1.080000px;}
.ls6e{letter-spacing:1.104000px;}
.ls2d{letter-spacing:1.140000px;}
.ls79{letter-spacing:1.152000px;}
.ls32{letter-spacing:1.200000px;}
.ls9a{letter-spacing:1.248000px;}
.ls2c{letter-spacing:1.260000px;}
.ls83{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.320000px;}
.lsb1{letter-spacing:1.344000px;}
.ls10{letter-spacing:1.380000px;}
.lsb5{letter-spacing:1.392000px;}
.ls17{letter-spacing:1.440000px;}
.lsb4{letter-spacing:1.488000px;}
.ls2a{letter-spacing:1.500000px;}
.ls8d{letter-spacing:1.536000px;}
.ls12{letter-spacing:1.560000px;}
.lsac{letter-spacing:1.584000px;}
.ls9{letter-spacing:1.620000px;}
.ls62{letter-spacing:1.632000px;}
.ls28{letter-spacing:1.680000px;}
.ls6a{letter-spacing:1.728000px;}
.ls1a{letter-spacing:1.740000px;}
.lsb6{letter-spacing:1.776000px;}
.ls27{letter-spacing:1.800000px;}
.lsa5{letter-spacing:1.824000px;}
.ls55{letter-spacing:1.860000px;}
.ls58{letter-spacing:1.872000px;}
.ls13{letter-spacing:1.920000px;}
.ls7d{letter-spacing:1.968000px;}
.ls22{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.040000px;}
.lsb0{letter-spacing:2.064000px;}
.ls26{letter-spacing:2.100000px;}
.lsb8{letter-spacing:2.112000px;}
.ls51{letter-spacing:2.160000px;}
.ls66{letter-spacing:2.208000px;}
.ls15{letter-spacing:2.220000px;}
.ls41{letter-spacing:2.280000px;}
.ls57{letter-spacing:2.304000px;}
.ls3a{letter-spacing:2.340000px;}
.lsab{letter-spacing:2.352000px;}
.ls23{letter-spacing:2.400000px;}
.lsb3{letter-spacing:2.448000px;}
.ls3d{letter-spacing:2.460000px;}
.ls4f{letter-spacing:2.520000px;}
.ls81{letter-spacing:2.544000px;}
.lsa{letter-spacing:2.580000px;}
.lsa6{letter-spacing:2.592000px;}
.ls30{letter-spacing:2.640000px;}
.ls18{letter-spacing:2.700000px;}
.ls6d{letter-spacing:2.736000px;}
.ls91{letter-spacing:2.760000px;}
.ls7a{letter-spacing:2.784000px;}
.ls5a{letter-spacing:2.820000px;}
.lsae{letter-spacing:2.832000px;}
.ls47{letter-spacing:2.880000px;}
.ls46{letter-spacing:2.940000px;}
.ls4a{letter-spacing:2.976000px;}
.lsc{letter-spacing:3.000000px;}
.ls63{letter-spacing:3.024000px;}
.ls37{letter-spacing:3.060000px;}
.lsad{letter-spacing:3.072000px;}
.ls4d{letter-spacing:3.120000px;}
.ls8f{letter-spacing:3.180000px;}
.ls19{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.300000px;}
.lsb2{letter-spacing:3.312000px;}
.ls38{letter-spacing:3.360000px;}
.ls99{letter-spacing:3.420000px;}
.ls84{letter-spacing:3.456000px;}
.ls5f{letter-spacing:3.480000px;}
.ls7{letter-spacing:3.540000px;}
.ls11{letter-spacing:3.600000px;}
.ls67{letter-spacing:3.660000px;}
.ls92{letter-spacing:3.720000px;}
.lsb7{letter-spacing:3.744000px;}
.ls25{letter-spacing:3.780000px;}
.ls2b{letter-spacing:3.840000px;}
.ls44{letter-spacing:3.900000px;}
.ls70{letter-spacing:3.960000px;}
.ls90{letter-spacing:4.020000px;}
.lsaf{letter-spacing:4.032000px;}
.ls64{letter-spacing:4.260000px;}
.ls8b{letter-spacing:4.320000px;}
.lsa4{letter-spacing:4.368000px;}
.ls98{letter-spacing:4.380000px;}
.ls60{letter-spacing:4.416000px;}
.ls9b{letter-spacing:4.440000px;}
.ls4c{letter-spacing:4.464000px;}
.ls59{letter-spacing:4.500000px;}
.ls54{letter-spacing:4.560000px;}
.ls8a{letter-spacing:4.620000px;}
.ls49{letter-spacing:4.656000px;}
.ls76{letter-spacing:4.752000px;}
.ls5c{letter-spacing:4.800000px;}
.ls77{letter-spacing:4.848000px;}
.ls72{letter-spacing:4.860000px;}
.lsb9{letter-spacing:4.896000px;}
.ls8e{letter-spacing:4.920000px;}
.ls3b{letter-spacing:4.980000px;}
.ls85{letter-spacing:4.992000px;}
.ls34{letter-spacing:5.040000px;}
.ls87{letter-spacing:5.088000px;}
.ls56{letter-spacing:5.160000px;}
.ls80{letter-spacing:5.184000px;}
.ls6f{letter-spacing:5.220000px;}
.ls89{letter-spacing:5.280000px;}
.ls5d{letter-spacing:5.340000px;}
.ls74{letter-spacing:5.376000px;}
.ls5e{letter-spacing:5.520000px;}
.ls96{letter-spacing:5.580000px;}
.ls71{letter-spacing:5.640000px;}
.ls40{letter-spacing:5.820000px;}
.ls3e{letter-spacing:5.940000px;}
.ls3f{letter-spacing:6.060000px;}
.ls9e{letter-spacing:6.180000px;}
.ls7e{letter-spacing:6.336000px;}
.lsa0{letter-spacing:6.360000px;}
.ls4e{letter-spacing:6.480000px;}
.ls9f{letter-spacing:6.540000px;}
.ls78{letter-spacing:6.576000px;}
.ls35{letter-spacing:6.660000px;}
.ls9c{letter-spacing:7.020000px;}
.ls7b{letter-spacing:7.152000px;}
.ls4b{letter-spacing:7.392000px;}
.ls5b{letter-spacing:8.340000px;}
.lsa3{letter-spacing:11.700000px;}
.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;}
}
.ws1{word-spacing:-28.032000px;}
.ws23{word-spacing:-22.620000px;}
.ws6e{word-spacing:-22.320000px;}
.wsaf{word-spacing:-22.260000px;}
.ws59{word-spacing:-22.020000px;}
.ws4e{word-spacing:-21.840000px;}
.wsa5{word-spacing:-21.240000px;}
.ws56{word-spacing:-21.180000px;}
.wsb2{word-spacing:-21.060000px;}
.ws5f{word-spacing:-20.940000px;}
.ws61{word-spacing:-20.340000px;}
.ws22{word-spacing:-19.980000px;}
.ws4f{word-spacing:-19.800000px;}
.ws33{word-spacing:-19.740000px;}
.ws3d{word-spacing:-19.560000px;}
.ws57{word-spacing:-19.500000px;}
.ws25{word-spacing:-19.380000px;}
.wsc6{word-spacing:-19.200000px;}
.ws20{word-spacing:-19.140000px;}
.ws24{word-spacing:-18.960000px;}
.ws44{word-spacing:-18.840000px;}
.ws3a{word-spacing:-18.780000px;}
.ws96{word-spacing:-18.480000px;}
.wsab{word-spacing:-18.360000px;}
.ws86{word-spacing:-18.120000px;}
.ws1d{word-spacing:-17.880000px;}
.wsc9{word-spacing:-17.820000px;}
.wsc8{word-spacing:-17.760000px;}
.ws58{word-spacing:-17.700000px;}
.ws35{word-spacing:-17.640000px;}
.wsb5{word-spacing:-17.460000px;}
.ws69{word-spacing:-17.400000px;}
.wsc7{word-spacing:-17.340000px;}
.ws1f{word-spacing:-17.280000px;}
.wsa8{word-spacing:-17.220000px;}
.ws90{word-spacing:-17.160000px;}
.ws3e{word-spacing:-17.100000px;}
.ws5c{word-spacing:-17.040000px;}
.ws4d{word-spacing:-16.980000px;}
.ws36{word-spacing:-16.860000px;}
.ws1e{word-spacing:-16.800000px;}
.ws1c{word-spacing:-16.680000px;}
.ws9c{word-spacing:-16.560000px;}
.ws45{word-spacing:-16.500000px;}
.ws5e{word-spacing:-16.368000px;}
.ws38{word-spacing:-16.320000px;}
.ws78{word-spacing:-16.128000px;}
.wsea{word-spacing:-16.080000px;}
.wsdd{word-spacing:-15.696000px;}
.ws60{word-spacing:-15.552000px;}
.wsed{word-spacing:-15.504000px;}
.ws7b{word-spacing:-15.312000px;}
.wsd4{word-spacing:-15.216000px;}
.wsec{word-spacing:-15.024000px;}
.ws72{word-spacing:-14.976000px;}
.wsf3{word-spacing:-14.640000px;}
.wsb3{word-spacing:-14.592000px;}
.wsaa{word-spacing:-14.544000px;}
.wsd5{word-spacing:-14.496000px;}
.wsb4{word-spacing:-14.400000px;}
.ws6f{word-spacing:-14.352000px;}
.wsa9{word-spacing:-14.256000px;}
.ws14{word-spacing:-14.178000px;}
.ws7c{word-spacing:-14.160000px;}
.wseb{word-spacing:-14.112000px;}
.wsde{word-spacing:-14.064000px;}
.ws91{word-spacing:-14.016000px;}
.ws87{word-spacing:-13.968000px;}
.ws68{word-spacing:-13.920000px;}
.ws77{word-spacing:-13.824000px;}
.ws79{word-spacing:-13.776000px;}
.ws73{word-spacing:-13.728000px;}
.wsbd{word-spacing:-13.680000px;}
.ws37{word-spacing:-13.632000px;}
.ws97{word-spacing:-13.488000px;}
.ws39{word-spacing:-13.440000px;}
.ws7a{word-spacing:-13.392000px;}
.ws21{word-spacing:-13.344000px;}
.wsa4{word-spacing:-13.296000px;}
.ws67{word-spacing:-13.248000px;}
.wsa6{word-spacing:-13.200000px;}
.wsdc{word-spacing:-13.104000px;}
.ws0{word-spacing:-11.008800px;}
.wsf2{word-spacing:-10.704000px;}
.wsda{word-spacing:-6.180000px;}
.ws30{word-spacing:-5.820000px;}
.ws9e{word-spacing:-5.220000px;}
.ws4{word-spacing:-3.630000px;}
.ws62{word-spacing:-3.600000px;}
.wsbf{word-spacing:-3.240000px;}
.wscd{word-spacing:-2.940000px;}
.wse1{word-spacing:-2.832000px;}
.wsdf{word-spacing:-2.784000px;}
.wsc0{word-spacing:-2.760000px;}
.ws3{word-spacing:-2.664000px;}
.wsb7{word-spacing:-2.640000px;}
.ws8a{word-spacing:-2.544000px;}
.ws53{word-spacing:-2.304000px;}
.ws31{word-spacing:-2.280000px;}
.ws1a{word-spacing:-2.220000px;}
.ws7d{word-spacing:-2.208000px;}
.wsbe{word-spacing:-2.160000px;}
.wsc5{word-spacing:-2.040000px;}
.ws81{word-spacing:-1.968000px;}
.wscf{word-spacing:-1.920000px;}
.ws55{word-spacing:-1.872000px;}
.wsc4{word-spacing:-1.740000px;}
.ws6c{word-spacing:-1.728000px;}
.ws93{word-spacing:-1.680000px;}
.ws8f{word-spacing:-1.560000px;}
.wsa0{word-spacing:-1.536000px;}
.wsc1{word-spacing:-1.500000px;}
.wsba{word-spacing:-1.248000px;}
.wsa3{word-spacing:-1.200000px;}
.ws40{word-spacing:-1.140000px;}
.ws8b{word-spacing:-1.104000px;}
.ws94{word-spacing:-1.056000px;}
.wsb6{word-spacing:-1.008000px;}
.wsad{word-spacing:-0.912000px;}
.ws9f{word-spacing:-0.864000px;}
.ws89{word-spacing:-0.720000px;}
.ws92{word-spacing:-0.672000px;}
.wsbb{word-spacing:-0.660000px;}
.ws8d{word-spacing:-0.624000px;}
.ws9d{word-spacing:-0.540000px;}
.ws98{word-spacing:-0.480000px;}
.ws7f{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.420000px;}
.wse6{word-spacing:-0.384000px;}
.wscb{word-spacing:-0.360000px;}
.ws8c{word-spacing:-0.336000px;}
.ws6a{word-spacing:-0.300000px;}
.ws3c{word-spacing:-0.288000px;}
.wsd9{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.192000px;}
.ws4c{word-spacing:-0.180000px;}
.ws66{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.096000px;}
.wsc{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws42{word-spacing:0.048000px;}
.ws2c{word-spacing:0.060000px;}
.ws71{word-spacing:0.096000px;}
.ws6b{word-spacing:0.120000px;}
.ws5a{word-spacing:0.180000px;}
.ws82{word-spacing:0.240000px;}
.wsd6{word-spacing:0.360000px;}
.ws10{word-spacing:0.420000px;}
.wsa1{word-spacing:0.432000px;}
.ws5{word-spacing:0.528000px;}
.ws7{word-spacing:0.576000px;}
.wse9{word-spacing:0.624000px;}
.ws13{word-spacing:0.660000px;}
.wsae{word-spacing:0.720000px;}
.ws9b{word-spacing:0.780000px;}
.ws51{word-spacing:0.816000px;}
.wsd1{word-spacing:0.900000px;}
.ws16{word-spacing:0.960000px;}
.ws26{word-spacing:1.020000px;}
.ws76{word-spacing:1.056000px;}
.ws6d{word-spacing:1.104000px;}
.ws3f{word-spacing:1.140000px;}
.ws7e{word-spacing:1.152000px;}
.ws43{word-spacing:1.200000px;}
.ws48{word-spacing:1.248000px;}
.ws11{word-spacing:1.260000px;}
.ws65{word-spacing:1.320000px;}
.ws2b{word-spacing:1.380000px;}
.wse0{word-spacing:1.392000px;}
.ws4a{word-spacing:1.440000px;}
.ws70{word-spacing:1.500000px;}
.wse8{word-spacing:1.536000px;}
.ws8e{word-spacing:1.560000px;}
.wsee{word-spacing:1.728000px;}
.ws28{word-spacing:1.740000px;}
.wsf5{word-spacing:1.776000px;}
.wsdb{word-spacing:1.800000px;}
.ws12{word-spacing:1.920000px;}
.wsef{word-spacing:1.968000px;}
.wsc3{word-spacing:1.980000px;}
.wsb1{word-spacing:2.040000px;}
.ws2e{word-spacing:2.100000px;}
.wsb0{word-spacing:2.160000px;}
.ws54{word-spacing:2.208000px;}
.ws17{word-spacing:2.280000px;}
.wsf1{word-spacing:2.304000px;}
.ws9a{word-spacing:2.400000px;}
.ws8{word-spacing:2.448000px;}
.wsbc{word-spacing:2.460000px;}
.ws5b{word-spacing:2.580000px;}
.wscc{word-spacing:2.640000px;}
.ws18{word-spacing:2.700000px;}
.ws52{word-spacing:2.736000px;}
.wsf0{word-spacing:2.928000px;}
.ws3b{word-spacing:2.940000px;}
.ws2f{word-spacing:3.000000px;}
.ws88{word-spacing:3.024000px;}
.ws2a{word-spacing:3.060000px;}
.wsf6{word-spacing:3.072000px;}
.ws49{word-spacing:3.120000px;}
.ws6{word-spacing:3.168000px;}
.wsd0{word-spacing:3.240000px;}
.wsb9{word-spacing:3.360000px;}
.ws5d{word-spacing:3.456000px;}
.wse4{word-spacing:3.504000px;}
.ws2d{word-spacing:3.540000px;}
.ws29{word-spacing:3.600000px;}
.wse3{word-spacing:3.648000px;}
.ws85{word-spacing:3.660000px;}
.wse7{word-spacing:3.744000px;}
.wsf{word-spacing:3.780000px;}
.wse2{word-spacing:3.792000px;}
.wsca{word-spacing:3.840000px;}
.wse5{word-spacing:3.888000px;}
.ws74{word-spacing:3.960000px;}
.ws19{word-spacing:4.020000px;}
.ws80{word-spacing:4.080000px;}
.ws50{word-spacing:4.140000px;}
.wsf4{word-spacing:4.176000px;}
.ws15{word-spacing:4.260000px;}
.wsb8{word-spacing:4.320000px;}
.ws9{word-spacing:4.368000px;}
.wsb{word-spacing:4.380000px;}
.wsa{word-spacing:4.416000px;}
.ws64{word-spacing:4.500000px;}
.ws63{word-spacing:4.620000px;}
.ws84{word-spacing:4.680000px;}
.wsa7{word-spacing:4.740000px;}
.ws83{word-spacing:4.800000px;}
.ws99{word-spacing:4.860000px;}
.ws75{word-spacing:4.920000px;}
.wsa2{word-spacing:4.980000px;}
.ws27{word-spacing:5.040000px;}
.ws34{word-spacing:5.184000px;}
.ws41{word-spacing:5.220000px;}
.wsd3{word-spacing:5.280000px;}
.ws1b{word-spacing:5.340000px;}
.ws47{word-spacing:5.400000px;}
.wse{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws4b{word-spacing:5.640000px;}
.wsac{word-spacing:6.180000px;}
.wsc2{word-spacing:6.240000px;}
.wsd8{word-spacing:6.720000px;}
.wsd2{word-spacing:7.200000px;}
.wsce{word-spacing:7.560000px;}
.wsd7{word-spacing:8.040000px;}
._8{margin-left:-2898.126000px;}
._b{margin-left:-2874.309000px;}
._c{margin-left:-8.250000px;}
._7{margin-left:-6.792000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-4.074000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.008000px;}
._5{width:1.152000px;}
._d{width:2.280000px;}
._3{width:3.630000px;}
._6{width:5.520000px;}
._a{width:7.230000px;}
._e{width:8.322000px;}
._9{width:11.220000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.yf4{bottom:82.497300px;}
.y17c{bottom:82.606500px;}
.y1f6{bottom:82.937100px;}
.ye8{bottom:83.043450px;}
.ycc{bottom:83.044050px;}
.y186{bottom:83.138100px;}
.y19c{bottom:83.149800px;}
.y233{bottom:83.232600px;}
.y95{bottom:83.350650px;}
.y20c{bottom:83.363850px;}
.y2a{bottom:83.493900px;}
.y101{bottom:83.557800px;}
.y12d{bottom:83.563200px;}
.y1ba{bottom:83.574900px;}
.ya2{bottom:83.787600px;}
.yb7{bottom:83.893950px;}
.y163{bottom:84.000150px;}
.y120{bottom:84.425400px;}
.y53{bottom:84.954000px;}
.yf2{bottom:84.956850px;}
.ya3{bottom:85.488300px;}
.y254{bottom:85.796700px;}
.y65{bottom:88.909200px;}
.y290{bottom:94.938300px;}
.y2b0{bottom:94.941300px;}
.y93{bottom:97.734450px;}
.yf3{bottom:98.244300px;}
.y17b{bottom:98.350500px;}
.y185{bottom:98.882100px;}
.y94{bottom:99.094650px;}
.y100{bottom:99.301800px;}
.y12c{bottom:99.307200px;}
.y253{bottom:100.796700px;}
.y232{bottom:101.232600px;}
.y20b{bottom:101.363850px;}
.y64{bottom:106.909200px;}
.y28f{bottom:109.938300px;}
.y2af{bottom:109.941300px;}
.y92{bottom:115.734450px;}
.y252{bottom:115.796700px;}
.y231{bottom:119.232600px;}
.y20a{bottom:119.363850px;}
.y14{bottom:121.513200px;}
.y63{bottom:124.909200px;}
.y28e{bottom:124.938300px;}
.y2ae{bottom:124.941300px;}
.y251{bottom:130.796700px;}
.y91{bottom:133.734450px;}
.y230{bottom:137.232600px;}
.y209{bottom:137.363850px;}
.y28d{bottom:139.938300px;}
.y2ad{bottom:139.941300px;}
.y62{bottom:142.909200px;}
.y250{bottom:145.796700px;}
.y28c{bottom:154.938300px;}
.y2ac{bottom:154.941300px;}
.y22f{bottom:155.232600px;}
.y208{bottom:155.363850px;}
.y24f{bottom:160.796700px;}
.y90{bottom:169.305300px;}
.y28b{bottom:169.938300px;}
.y2ab{bottom:169.941300px;}
.y22e{bottom:173.232600px;}
.y207{bottom:173.363850px;}
.y24e{bottom:175.796700px;}
.y61{bottom:178.480050px;}
.y26{bottom:181.021200px;}
.y8f{bottom:184.305300px;}
.y28a{bottom:184.938300px;}
.y2aa{bottom:184.941300px;}
.y24d{bottom:190.796700px;}
.y22d{bottom:191.232600px;}
.y206{bottom:191.363850px;}
.y25{bottom:199.021200px;}
.y289{bottom:199.938300px;}
.y2a9{bottom:199.941300px;}
.y24c{bottom:205.796700px;}
.y22c{bottom:209.232600px;}
.y205{bottom:209.363850px;}
.y60{bottom:209.528850px;}
.y288{bottom:214.938300px;}
.y2a8{bottom:214.941300px;}
.y8e{bottom:215.330850px;}
.y24{bottom:217.021200px;}
.y24b{bottom:220.796700px;}
.y52{bottom:226.962000px;}
.y22b{bottom:227.232600px;}
.y204{bottom:227.363850px;}
.y5f{bottom:227.528850px;}
.y287{bottom:229.938300px;}
.y2a7{bottom:229.941300px;}
.y8d{bottom:233.350950px;}
.y23{bottom:235.021200px;}
.y24a{bottom:235.796700px;}
.y286{bottom:244.938300px;}
.y2a6{bottom:244.941300px;}
.y22a{bottom:245.232600px;}
.y203{bottom:245.363850px;}
.y249{bottom:250.796700px;}
.y22{bottom:253.021200px;}
.y285{bottom:259.938300px;}
.y2a5{bottom:259.941300px;}
.y202{bottom:263.363850px;}
.y5e{bottom:263.378850px;}
.y248{bottom:265.796700px;}
.y8c{bottom:269.200950px;}
.y21{bottom:271.021200px;}
.y284{bottom:274.938300px;}
.y2a4{bottom:274.941300px;}
.y247{bottom:280.796700px;}
.y229{bottom:281.232600px;}
.y201{bottom:281.363850px;}
.y5d{bottom:281.378850px;}
.y8b{bottom:287.200950px;}
.y20{bottom:289.021200px;}
.y283{bottom:289.938300px;}
.y2a3{bottom:289.941300px;}
.y246{bottom:295.796700px;}
.y228{bottom:299.232600px;}
.y200{bottom:299.363850px;}
.y282{bottom:304.938300px;}
.y2a2{bottom:304.941300px;}
.y1f{bottom:307.021200px;}
.y245{bottom:310.796700px;}
.y5c{bottom:317.228850px;}
.y227{bottom:317.232600px;}
.y1ff{bottom:317.363850px;}
.y281{bottom:319.938300px;}
.y2a1{bottom:319.941300px;}
.y8a{bottom:323.050950px;}
.y1e{bottom:325.021200px;}
.y244{bottom:325.796700px;}
.y280{bottom:334.938300px;}
.y2a0{bottom:334.941300px;}
.y5b{bottom:335.228850px;}
.y226{bottom:335.232600px;}
.y1fe{bottom:335.363850px;}
.y243{bottom:340.796700px;}
.y89{bottom:341.050950px;}
.y1d{bottom:343.021200px;}
.y27f{bottom:349.938300px;}
.y29f{bottom:349.941300px;}
.y5a{bottom:353.228850px;}
.y225{bottom:353.232600px;}
.y1fd{bottom:353.363850px;}
.y242{bottom:355.796700px;}
.y88{bottom:359.050950px;}
.y1c{bottom:361.021200px;}
.y27e{bottom:364.938300px;}
.y29e{bottom:364.941300px;}
.y241{bottom:370.796700px;}
.y59{bottom:371.228850px;}
.y224{bottom:371.232600px;}
.y1fc{bottom:371.363850px;}
.y87{bottom:377.050950px;}
.y1b{bottom:379.021200px;}
.y27d{bottom:379.938300px;}
.y29d{bottom:379.941300px;}
.y240{bottom:385.796700px;}
.y58{bottom:389.228850px;}
.y223{bottom:389.232600px;}
.y1fb{bottom:389.363850px;}
.y27c{bottom:394.938300px;}
.y29c{bottom:394.941300px;}
.y86{bottom:395.050950px;}
.y1a{bottom:397.021200px;}
.y23f{bottom:400.796700px;}
.y222{bottom:407.232600px;}
.y1fa{bottom:407.363850px;}
.y27b{bottom:409.938300px;}
.y29b{bottom:409.941300px;}
.y85{bottom:413.050950px;}
.y19{bottom:415.021200px;}
.y23e{bottom:415.796700px;}
.y27a{bottom:424.938300px;}
.y29a{bottom:424.941300px;}
.y57{bottom:425.228850px;}
.y221{bottom:425.232600px;}
.y1f9{bottom:425.363850px;}
.y23d{bottom:430.796700px;}
.y84{bottom:431.050950px;}
.y18{bottom:433.021200px;}
.y1f2{bottom:433.450950px;}
.y279{bottom:439.938300px;}
.y299{bottom:439.941300px;}
.y220{bottom:443.232600px;}
.y1f8{bottom:443.363850px;}
.y23c{bottom:445.796700px;}
.y83{bottom:449.050950px;}
.y17{bottom:451.021200px;}
.y1f1{bottom:451.450950px;}
.y1d7{bottom:451.917450px;}
.y278{bottom:454.938300px;}
.y298{bottom:454.941300px;}
.y21f{bottom:461.232600px;}
.y1f7{bottom:461.363850px;}
.y82{bottom:467.050950px;}
.y16{bottom:469.021200px;}
.y1f0{bottom:469.450950px;}
.y1d6{bottom:469.917450px;}
.y277{bottom:469.938300px;}
.y297{bottom:469.941300px;}
.y21e{bottom:479.232600px;}
.y56{bottom:479.363850px;}
.y276{bottom:484.938300px;}
.y296{bottom:484.941300px;}
.y81{bottom:485.050950px;}
.y27{bottom:487.021200px;}
.y1ef{bottom:487.450950px;}
.y1d5{bottom:487.917450px;}
.y21d{bottom:497.232600px;}
.y55{bottom:497.363850px;}
.y275{bottom:499.938300px;}
.y295{bottom:499.941300px;}
.y80{bottom:503.050950px;}
.y15{bottom:505.021200px;}
.y274{bottom:514.938300px;}
.y294{bottom:514.941300px;}
.y51{bottom:515.228850px;}
.y21c{bottom:515.232600px;}
.y49{bottom:515.363850px;}
.y7f{bottom:521.050950px;}
.y1ee{bottom:523.021800px;}
.y1d4{bottom:523.767450px;}
.y273{bottom:529.938300px;}
.y293{bottom:529.941300px;}
.y50{bottom:533.228850px;}
.y21b{bottom:533.232600px;}
.y48{bottom:533.363850px;}
.y23b{bottom:533.367600px;}
.y1ed{bottom:538.021800px;}
.y7e{bottom:539.050950px;}
.y1d3{bottom:541.767450px;}
.y272{bottom:544.938300px;}
.y292{bottom:544.941300px;}
.y4f{bottom:551.228850px;}
.y21a{bottom:551.232600px;}
.y47{bottom:551.363850px;}
.y23a{bottom:551.367600px;}
.y7d{bottom:557.050950px;}
.y1d2{bottom:559.767450px;}
.y271{bottom:559.938300px;}
.y291{bottom:559.941300px;}
.y1ec{bottom:569.067450px;}
.y4e{bottom:569.228850px;}
.y219{bottom:569.232600px;}
.y46{bottom:569.363850px;}
.y239{bottom:569.367600px;}
.y13{bottom:572.588550px;}
.y270{bottom:574.938300px;}
.y2b1{bottom:574.941300px;}
.y7c{bottom:575.050950px;}
.y1d1{bottom:577.767450px;}
.y1eb{bottom:587.067450px;}
.y4d{bottom:587.228850px;}
.y218{bottom:587.232600px;}
.y45{bottom:587.363850px;}
.y26f{bottom:589.938300px;}
.y7b{bottom:593.050950px;}
.y1d0{bottom:595.767450px;}
.y26e{bottom:604.938300px;}
.y1ea{bottom:605.067450px;}
.y4c{bottom:605.228850px;}
.y217{bottom:605.232600px;}
.y44{bottom:605.363850px;}
.y238{bottom:605.367600px;}
.y12{bottom:605.444550px;}
.y7a{bottom:611.050950px;}
.y1cf{bottom:613.767450px;}
.y26d{bottom:619.938300px;}
.y11{bottom:620.444550px;}
.y4b{bottom:623.228850px;}
.y216{bottom:623.232600px;}
.y43{bottom:623.363850px;}
.y79{bottom:629.050950px;}
.y1ce{bottom:631.767450px;}
.yc4{bottom:631.909200px;}
.y26c{bottom:634.938300px;}
.y10{bottom:635.444550px;}
.y1e9{bottom:640.917450px;}
.y215{bottom:641.232600px;}
.y42{bottom:641.363850px;}
.y237{bottom:641.367600px;}
.y78{bottom:647.050950px;}
.ycb{bottom:649.480050px;}
.y1cd{bottom:649.767450px;}
.yc3{bottom:649.909200px;}
.y26b{bottom:649.938300px;}
.yf{bottom:650.444550px;}
.y1e8{bottom:658.917450px;}
.y4a{bottom:659.228850px;}
.y214{bottom:659.232600px;}
.y41{bottom:659.363850px;}
.y236{bottom:659.367600px;}
.yca{bottom:664.480050px;}
.y26a{bottom:664.938300px;}
.ye{bottom:665.444550px;}
.y1cc{bottom:667.767450px;}
.yc2{bottom:667.909200px;}
.y213{bottom:677.232600px;}
.y40{bottom:677.363850px;}
.y235{bottom:677.367600px;}
.y269{bottom:679.938300px;}
.yd{bottom:680.444550px;}
.y77{bottom:682.621800px;}
.yf9{bottom:682.909200px;}
.yff{bottom:685.621800px;}
.y1cb{bottom:685.767450px;}
.yc1{bottom:685.909200px;}
.y115{bottom:689.367600px;}
.y11f{bottom:691.909200px;}
.y1e7{bottom:694.767450px;}
.y268{bottom:694.938300px;}
.y212{bottom:695.232600px;}
.y3f{bottom:695.363850px;}
.y234{bottom:695.367600px;}
.yc9{bottom:695.524200px;}
.y1a8{bottom:695.663850px;}
.y19d{bottom:700.480050px;}
.yfe{bottom:700.621800px;}
.yf8{bottom:700.909200px;}
.y1a1{bottom:701.367600px;}
.y1ca{bottom:703.767450px;}
.yc0{bottom:703.909200px;}
.y114{bottom:707.367600px;}
.y11e{bottom:709.909200px;}
.y267{bottom:709.938300px;}
.y1e6{bottom:712.767450px;}
.y211{bottom:713.232600px;}
.y3e{bottom:713.363850px;}
.ydf{bottom:713.367600px;}
.yc8{bottom:713.524200px;}
.y1a7{bottom:713.663850px;}
.y76{bottom:713.674200px;}
.y1b9{bottom:716.367600px;}
.yf7{bottom:718.909200px;}
.y1a0{bottom:719.367600px;}
.y162{bottom:721.480050px;}
.y1c9{bottom:721.767450px;}
.ybf{bottom:721.909200px;}
.yb6{bottom:724.767450px;}
.y266{bottom:724.938300px;}
.y113{bottom:725.367600px;}
.y11d{bottom:727.909200px;}
.yc{bottom:729.188550px;}
.y1e5{bottom:730.767450px;}
.y210{bottom:731.232600px;}
.y3d{bottom:731.363850px;}
.yde{bottom:731.367600px;}
.y17a{bottom:731.374350px;}
.ya5{bottom:731.513850px;}
.y75{bottom:731.674200px;}
.y1b8{bottom:734.367600px;}
.y161{bottom:736.480050px;}
.yf6{bottom:736.909200px;}
.y15c{bottom:737.367600px;}
.y1c8{bottom:739.767450px;}
.ybe{bottom:739.909200px;}
.y168{bottom:739.909350px;}
.y265{bottom:739.938300px;}
.yb5{bottom:742.767450px;}
.y112{bottom:743.367600px;}
.yb{bottom:743.589000px;}
.y14b{bottom:745.621800px;}
.y11c{bottom:745.909200px;}
.y1e4{bottom:748.767450px;}
.y20f{bottom:749.232600px;}
.y3c{bottom:749.363850px;}
.ydd{bottom:749.367600px;}
.yc7{bottom:749.374200px;}
.y179{bottom:749.374350px;}
.ya4{bottom:749.513850px;}
.yfd{bottom:749.674200px;}
.y160{bottom:751.480050px;}
.y1b7{bottom:752.367600px;}
.y1a4{bottom:754.480050px;}
.y17e{bottom:754.621800px;}
.yf5{bottom:754.909200px;}
.y264{bottom:754.938300px;}
.y15b{bottom:755.367600px;}
.y133{bottom:757.621800px;}
.y1c7{bottom:757.767450px;}
.ybd{bottom:757.909200px;}
.y167{bottom:757.909350px;}
.y14a{bottom:760.621800px;}
.yb4{bottom:760.767450px;}
.y111{bottom:761.367600px;}
.ya1{bottom:763.909200px;}
.y15f{bottom:766.480050px;}
.y1e3{bottom:766.767450px;}
.y20e{bottom:767.232600px;}
.y3b{bottom:767.363850px;}
.y19b{bottom:767.365950px;}
.ydc{bottom:767.367600px;}
.yc6{bottom:767.374200px;}
.y178{bottom:767.374350px;}
.y74{bottom:767.524200px;}
.y263{bottom:769.938300px;}
.y1b6{bottom:770.367600px;}
.ya{bottom:770.744550px;}
.y132{bottom:772.621800px;}
.yf1{bottom:772.909200px;}
.y18b{bottom:773.050950px;}
.y15a{bottom:773.367600px;}
.y149{bottom:775.621800px;}
.y1c6{bottom:775.767450px;}
.ybc{bottom:775.909200px;}
.yb3{bottom:778.767450px;}
.y110{bottom:779.367600px;}
.y15e{bottom:781.480050px;}
.ya0{bottom:781.909200px;}
.y1e2{bottom:784.767450px;}
.y262{bottom:784.938300px;}
.y1f5{bottom:785.228850px;}
.y3a{bottom:785.363850px;}
.y19a{bottom:785.365950px;}
.ydb{bottom:785.367600px;}
.yc5{bottom:785.374200px;}
.y177{bottom:785.374350px;}
.y1a3{bottom:785.517600px;}
.yfc{bottom:785.524200px;}
.y17d{bottom:785.663850px;}
.y1b5{bottom:788.367600px;}
.y148{bottom:790.621800px;}
.yf0{bottom:790.909200px;}
.y18a{bottom:791.050950px;}
.y159{bottom:791.367600px;}
.y166{bottom:793.480050px;}
.y1c5{bottom:793.767450px;}
.y12b{bottom:793.909200px;}
.y15d{bottom:796.480050px;}
.yb2{bottom:796.767450px;}
.y10f{bottom:797.367600px;}
.y9f{bottom:799.909200px;}
.y261{bottom:799.938300px;}
.y1e1{bottom:802.767450px;}
.y1f4{bottom:803.228850px;}
.y20d{bottom:803.232600px;}
.y39{bottom:803.363850px;}
.y199{bottom:803.365950px;}
.yda{bottom:803.367600px;}
.y73{bottom:803.374200px;}
.y176{bottom:803.374350px;}
.y1a2{bottom:803.517600px;}
.yfb{bottom:803.524200px;}
.y131{bottom:803.663850px;}
.y147{bottom:805.621800px;}
.y1b4{bottom:806.367600px;}
.y165{bottom:808.480050px;}
.yef{bottom:808.909200px;}
.y9{bottom:809.362500px;}
.y158{bottom:809.367600px;}
.ybb{bottom:811.480050px;}
.y1c4{bottom:811.767450px;}
.y12a{bottom:811.909200px;}
.yb1{bottom:814.767450px;}
.y260{bottom:814.938300px;}
.y10e{bottom:815.367600px;}
.y9e{bottom:817.909200px;}
.y146{bottom:820.621800px;}
.y1e0{bottom:820.767450px;}
.y38{bottom:821.363850px;}
.y198{bottom:821.365950px;}
.yd9{bottom:821.367600px;}
.y72{bottom:821.374200px;}
.y175{bottom:821.374350px;}
.yfa{bottom:821.524200px;}
.y130{bottom:821.663850px;}
.y1b3{bottom:824.367600px;}
.y8{bottom:825.862500px;}
.yba{bottom:826.480050px;}
.y189{bottom:826.621800px;}
.yee{bottom:826.909200px;}
.y157{bottom:827.367600px;}
.y1c3{bottom:829.767450px;}
.y12f{bottom:829.909200px;}
.y25f{bottom:829.938300px;}
.yb0{bottom:832.767450px;}
.y10d{bottom:833.367600px;}
.y11b{bottom:835.480050px;}
.y145{bottom:835.621800px;}
.y9d{bottom:835.909200px;}
.y1df{bottom:838.767450px;}
.y1f3{bottom:839.228850px;}
.y37{bottom:839.363850px;}
.y197{bottom:839.365950px;}
.yd8{bottom:839.367600px;}
.y71{bottom:839.374200px;}
.y174{bottom:839.374350px;}
.y164{bottom:839.513850px;}
.ye7{bottom:841.480050px;}
.y7{bottom:842.362500px;}
.y1b2{bottom:842.367600px;}
.yed{bottom:844.909200px;}
.y25e{bottom:844.938300px;}
.y156{bottom:845.367600px;}
.y129{bottom:847.480050px;}
.y1c2{bottom:847.767450px;}
.y11a{bottom:850.480050px;}
.y144{bottom:850.621800px;}
.yaf{bottom:850.767450px;}
.y10c{bottom:851.367600px;}
.y9c{bottom:853.909200px;}
.ye6{bottom:856.480050px;}
.y1de{bottom:856.767450px;}
.y36{bottom:857.363850px;}
.y196{bottom:857.365950px;}
.yd7{bottom:857.367600px;}
.y70{bottom:857.374200px;}
.y173{bottom:857.374350px;}
.yb9{bottom:857.513850px;}
.y6{bottom:857.631300px;}
.y188{bottom:857.663850px;}
.y25d{bottom:859.938300px;}
.y1b1{bottom:860.367600px;}
.y128{bottom:862.480050px;}
.yec{bottom:862.909200px;}
.y155{bottom:863.367600px;}
.y119{bottom:865.480050px;}
.y143{bottom:865.621800px;}
.y1c1{bottom:865.767450px;}
.yae{bottom:868.767450px;}
.y10b{bottom:869.367600px;}
.ye5{bottom:871.480050px;}
.y1dd{bottom:874.767450px;}
.y25c{bottom:874.938300px;}
.y13f{bottom:874.941300px;}
.y35{bottom:875.363850px;}
.y195{bottom:875.365950px;}
.yd6{bottom:875.367600px;}
.y6f{bottom:875.374200px;}
.y172{bottom:875.374350px;}
.yb8{bottom:875.513850px;}
.y187{bottom:875.663850px;}
.y127{bottom:877.480050px;}
.y1b0{bottom:878.367600px;}
.y118{bottom:880.480050px;}
.y142{bottom:880.621800px;}
.y5{bottom:880.879800px;}
.y154{bottom:881.367600px;}
.y1c0{bottom:883.767450px;}
.ye4{bottom:886.480050px;}
.yad{bottom:886.767450px;}
.y10a{bottom:887.367600px;}
.y9b{bottom:889.480050px;}
.y25b{bottom:889.938300px;}
.y13e{bottom:889.941300px;}
.y126{bottom:892.480050px;}
.y1dc{bottom:892.767450px;}
.y34{bottom:893.363850px;}
.y194{bottom:893.365950px;}
.yd5{bottom:893.367600px;}
.y6e{bottom:893.374200px;}
.y171{bottom:893.374350px;}
.y1af{bottom:896.367600px;}
.yeb{bottom:898.480050px;}
.y153{bottom:899.367600px;}
.ye3{bottom:901.480050px;}
.y1bf{bottom:901.767450px;}
.y9a{bottom:904.480050px;}
.yac{bottom:904.767450px;}
.y25a{bottom:904.938300px;}
.y13d{bottom:904.941300px;}
.y109{bottom:905.367600px;}
.y125{bottom:907.480050px;}
.y4{bottom:908.269200px;}
.y33{bottom:911.363850px;}
.y193{bottom:911.365950px;}
.yd4{bottom:911.367600px;}
.y6d{bottom:911.374200px;}
.y170{bottom:911.374350px;}
.y12e{bottom:911.513850px;}
.y117{bottom:911.517600px;}
.y141{bottom:911.663850px;}
.y1ae{bottom:914.367600px;}
.ye2{bottom:916.480050px;}
.y152{bottom:917.367600px;}
.y99{bottom:919.480050px;}
.y1be{bottom:919.767450px;}
.y259{bottom:919.938300px;}
.y13c{bottom:919.941300px;}
.y124{bottom:922.480050px;}
.yab{bottom:922.767450px;}
.y108{bottom:923.367600px;}
.y1db{bottom:928.338300px;}
.y32{bottom:929.363850px;}
.y192{bottom:929.365950px;}
.yd3{bottom:929.367600px;}
.y6c{bottom:929.374200px;}
.y16f{bottom:929.374350px;}
.yea{bottom:929.513850px;}
.y116{bottom:929.517600px;}
.y140{bottom:929.663850px;}
.y1ad{bottom:932.367600px;}
.y98{bottom:934.480050px;}
.y258{bottom:934.938300px;}
.y13b{bottom:934.941300px;}
.y3{bottom:935.275200px;}
.y151{bottom:935.367600px;}
.y123{bottom:937.480050px;}
.y1bd{bottom:937.767450px;}
.y107{bottom:941.367600px;}
.y1da{bottom:943.338300px;}
.y31{bottom:947.363850px;}
.y191{bottom:947.365950px;}
.yd2{bottom:947.367600px;}
.y6b{bottom:947.374200px;}
.y16e{bottom:947.374350px;}
.ye9{bottom:947.513850px;}
.ye1{bottom:947.517600px;}
.y257{bottom:949.938300px;}
.y13a{bottom:949.941300px;}
.y1ac{bottom:950.367600px;}
.y122{bottom:952.480050px;}
.y150{bottom:953.367600px;}
.yaa{bottom:958.338300px;}
.y106{bottom:959.367600px;}
.y184{bottom:964.933800px;}
.y256{bottom:964.938300px;}
.y139{bottom:964.941300px;}
.y30{bottom:965.363850px;}
.y190{bottom:965.365950px;}
.yd1{bottom:965.367600px;}
.y6a{bottom:965.374200px;}
.y16d{bottom:965.374350px;}
.y97{bottom:965.513850px;}
.ye0{bottom:965.517600px;}
.y1ab{bottom:968.367600px;}
.y14f{bottom:971.367600px;}
.ya9{bottom:973.338300px;}
.y183{bottom:979.933800px;}
.y255{bottom:979.938300px;}
.y138{bottom:979.941300px;}
.y2{bottom:979.943400px;}
.y2f{bottom:983.363850px;}
.y18f{bottom:983.365950px;}
.yd0{bottom:983.367600px;}
.y69{bottom:983.374200px;}
.y16c{bottom:983.374350px;}
.y96{bottom:983.513850px;}
.y1aa{bottom:986.367600px;}
.ya8{bottom:988.338300px;}
.y14e{bottom:989.367600px;}
.y182{bottom:994.933800px;}
.y1a6{bottom:994.936050px;}
.y105{bottom:994.938300px;}
.y137{bottom:994.941300px;}
.y2e{bottom:1001.363850px;}
.y18e{bottom:1001.365950px;}
.ycf{bottom:1001.367600px;}
.y68{bottom:1001.374200px;}
.y16b{bottom:1001.374350px;}
.y121{bottom:1001.513850px;}
.y1a9{bottom:1004.367600px;}
.y181{bottom:1009.933800px;}
.y1a5{bottom:1009.936050px;}
.y104{bottom:1009.938300px;}
.y136{bottom:1009.941300px;}
.y2d{bottom:1019.363850px;}
.y18d{bottom:1019.365950px;}
.yce{bottom:1019.367600px;}
.y1bc{bottom:1019.371200px;}
.y67{bottom:1019.374200px;}
.y16a{bottom:1019.374350px;}
.ya7{bottom:1019.378850px;}
.y1d9{bottom:1019.382450px;}
.y180{bottom:1024.933800px;}
.y19f{bottom:1024.936050px;}
.y103{bottom:1024.938300px;}
.y135{bottom:1024.941300px;}
.y14d{bottom:1024.945800px;}
.y2c{bottom:1037.363850px;}
.y18c{bottom:1037.365950px;}
.ycd{bottom:1037.367600px;}
.y1bb{bottom:1037.371200px;}
.y66{bottom:1037.374200px;}
.y169{bottom:1037.374350px;}
.ya6{bottom:1037.378850px;}
.y1d8{bottom:1037.382450px;}
.y17f{bottom:1039.933800px;}
.y19e{bottom:1039.936050px;}
.y102{bottom:1039.938300px;}
.y134{bottom:1039.941300px;}
.y14c{bottom:1039.945800px;}
.y29{bottom:1070.769450px;}
.y54{bottom:1086.066450px;}
.y28{bottom:1086.069450px;}
.h7{height:20.967187px;}
.h2{height:31.110352px;}
.h8{height:34.945312px;}
.hb{height:34.968750px;}
.h9{height:35.554688px;}
.ha{height:36.046875px;}
.h13{height:36.058875px;}
.h10{height:37.776855px;}
.hf{height:38.299805px;}
.he{height:43.710938px;}
.h12{height:44.428359px;}
.hd{height:44.443359px;}
.hc{height:45.058594px;}
.h11{height:47.261616px;}
.h6{height:51.982017px;}
.h5{height:51.988017px;}
.h3{height:54.070312px;}
.h4{height:63.082031px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x3b{left:92.615400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x25{left:106.295400px;}
.xb{left:110.555400px;}
.x41{left:115.520400px;}
.x3d{left:119.255400px;}
.x43{left:126.369150px;}
.x34{left:127.559100px;}
.x39{left:129.268950px;}
.x5{left:131.816400px;}
.x42{left:133.445400px;}
.x21{left:140.650350px;}
.x15{left:147.871800px;}
.x13{left:153.271800px;}
.x40{left:154.685400px;}
.x3{left:161.571600px;}
.x22{left:163.150350px;}
.xf{left:164.773800px;}
.x14{left:166.336800px;}
.x3e{left:169.405350px;}
.x3f{left:177.610350px;}
.x23{left:189.845400px;}
.x48{left:211.390350px;}
.x4{left:212.876400px;}
.x30{left:218.210400px;}
.x24{left:221.810400px;}
.x3c{left:228.875400px;}
.x12{left:232.366800px;}
.x3a{left:238.903950px;}
.x16{left:243.046800px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x31{left:463.141200px;}
.x38{left:465.620400px;}
.x18{left:478.356000px;}
.x6{left:480.476400px;}
.x2a{left:485.631000px;}
.x28{left:486.846600px;}
.xd{left:491.105400px;}
.x45{left:493.567200px;}
.x2d{left:494.825400px;}
.x35{left:496.056000px;}
.x33{left:502.726200px;}
.x29{left:504.801000px;}
.x37{left:506.480400px;}
.x1e{left:508.118400px;}
.x17{left:512.361000px;}
.x7{left:514.496400px;}
.x19{left:519.021000px;}
.xe{left:525.275400px;}
.x44{left:528.576000px;}
.x1d{left:535.642200px;}
.x20{left:540.235350px;}
.x1c{left:541.882200px;}
.x2c{left:567.335400px;}
.x26{left:570.376200px;}
.x47{left:579.425400px;}
.x49{left:596.080350px;}
.x1a{left:598.236000px;}
.x27{left:602.341200px;}
.x46{left:604.012200px;}
.x32{left:609.436200px;}
.x36{left:619.446000px;}
.x1b{left:623.661000px;}
.x2b{left:630.681000px;}
.x11{left:663.492300px;}
.x2{left:704.338650px;}
.x2e{left:717.130200px;}
.x10{left:724.221150px;}
.x2f{left:739.336350px;}
.x1f{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.lsa9{letter-spacing:-7.146667pt;}
.lsa1{letter-spacing:-6.720000pt;}
.lsa2{letter-spacing:-6.400000pt;}
.lsaa{letter-spacing:-5.973333pt;}
.ls9d{letter-spacing:-5.546667pt;}
.ls95{letter-spacing:-5.493333pt;}
.ls53{letter-spacing:-5.013333pt;}
.ls52{letter-spacing:-4.906667pt;}
.lsba{letter-spacing:-2.346667pt;}
.ls97{letter-spacing:-1.920000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lsa7{letter-spacing:-0.320000pt;}
.lsa8{letter-spacing:-0.266667pt;}
.ls33{letter-spacing:-0.213333pt;}
.ls43{letter-spacing:-0.160000pt;}
.ls93{letter-spacing:-0.128000pt;}
.ls45{letter-spacing:-0.106667pt;}
.ls61{letter-spacing:-0.085333pt;}
.ls1f{letter-spacing:-0.053333pt;}
.ls50{letter-spacing:-0.042667pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls36{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls7c{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls65{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.170667pt;}
.ls42{letter-spacing:0.213333pt;}
.ls48{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls82{letter-spacing:0.298667pt;}
.ls31{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.341333pt;}
.ls14{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls6c{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.512000pt;}
.ls2f{letter-spacing:0.533333pt;}
.ls68{letter-spacing:0.554667pt;}
.ls39{letter-spacing:0.586667pt;}
.ls86{letter-spacing:0.597333pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.682667pt;}
.ls3c{letter-spacing:0.693333pt;}
.ls7f{letter-spacing:0.725333pt;}
.lse{letter-spacing:0.746667pt;}
.ls8c{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls94{letter-spacing:0.810667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls73{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls88{letter-spacing:0.938667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls6e{letter-spacing:0.981333pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls79{letter-spacing:1.024000pt;}
.ls32{letter-spacing:1.066667pt;}
.ls9a{letter-spacing:1.109333pt;}
.ls2c{letter-spacing:1.120000pt;}
.ls83{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.173333pt;}
.lsb1{letter-spacing:1.194667pt;}
.ls10{letter-spacing:1.226667pt;}
.lsb5{letter-spacing:1.237333pt;}
.ls17{letter-spacing:1.280000pt;}
.lsb4{letter-spacing:1.322667pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls8d{letter-spacing:1.365333pt;}
.ls12{letter-spacing:1.386667pt;}
.lsac{letter-spacing:1.408000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls62{letter-spacing:1.450667pt;}
.ls28{letter-spacing:1.493333pt;}
.ls6a{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:1.546667pt;}
.lsb6{letter-spacing:1.578667pt;}
.ls27{letter-spacing:1.600000pt;}
.lsa5{letter-spacing:1.621333pt;}
.ls55{letter-spacing:1.653333pt;}
.ls58{letter-spacing:1.664000pt;}
.ls13{letter-spacing:1.706667pt;}
.ls7d{letter-spacing:1.749333pt;}
.ls22{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.813333pt;}
.lsb0{letter-spacing:1.834667pt;}
.ls26{letter-spacing:1.866667pt;}
.lsb8{letter-spacing:1.877333pt;}
.ls51{letter-spacing:1.920000pt;}
.ls66{letter-spacing:1.962667pt;}
.ls15{letter-spacing:1.973333pt;}
.ls41{letter-spacing:2.026667pt;}
.ls57{letter-spacing:2.048000pt;}
.ls3a{letter-spacing:2.080000pt;}
.lsab{letter-spacing:2.090667pt;}
.ls23{letter-spacing:2.133333pt;}
.lsb3{letter-spacing:2.176000pt;}
.ls3d{letter-spacing:2.186667pt;}
.ls4f{letter-spacing:2.240000pt;}
.ls81{letter-spacing:2.261333pt;}
.lsa{letter-spacing:2.293333pt;}
.lsa6{letter-spacing:2.304000pt;}
.ls30{letter-spacing:2.346667pt;}
.ls18{letter-spacing:2.400000pt;}
.ls6d{letter-spacing:2.432000pt;}
.ls91{letter-spacing:2.453333pt;}
.ls7a{letter-spacing:2.474667pt;}
.ls5a{letter-spacing:2.506667pt;}
.lsae{letter-spacing:2.517333pt;}
.ls47{letter-spacing:2.560000pt;}
.ls46{letter-spacing:2.613333pt;}
.ls4a{letter-spacing:2.645333pt;}
.lsc{letter-spacing:2.666667pt;}
.ls63{letter-spacing:2.688000pt;}
.ls37{letter-spacing:2.720000pt;}
.lsad{letter-spacing:2.730667pt;}
.ls4d{letter-spacing:2.773333pt;}
.ls8f{letter-spacing:2.826667pt;}
.ls19{letter-spacing:2.880000pt;}
.ls20{letter-spacing:2.933333pt;}
.lsb2{letter-spacing:2.944000pt;}
.ls38{letter-spacing:2.986667pt;}
.ls99{letter-spacing:3.040000pt;}
.ls84{letter-spacing:3.072000pt;}
.ls5f{letter-spacing:3.093333pt;}
.ls7{letter-spacing:3.146667pt;}
.ls11{letter-spacing:3.200000pt;}
.ls67{letter-spacing:3.253333pt;}
.ls92{letter-spacing:3.306667pt;}
.lsb7{letter-spacing:3.328000pt;}
.ls25{letter-spacing:3.360000pt;}
.ls2b{letter-spacing:3.413333pt;}
.ls44{letter-spacing:3.466667pt;}
.ls70{letter-spacing:3.520000pt;}
.ls90{letter-spacing:3.573333pt;}
.lsaf{letter-spacing:3.584000pt;}
.ls64{letter-spacing:3.786667pt;}
.ls8b{letter-spacing:3.840000pt;}
.lsa4{letter-spacing:3.882667pt;}
.ls98{letter-spacing:3.893333pt;}
.ls60{letter-spacing:3.925333pt;}
.ls9b{letter-spacing:3.946667pt;}
.ls4c{letter-spacing:3.968000pt;}
.ls59{letter-spacing:4.000000pt;}
.ls54{letter-spacing:4.053333pt;}
.ls8a{letter-spacing:4.106667pt;}
.ls49{letter-spacing:4.138667pt;}
.ls76{letter-spacing:4.224000pt;}
.ls5c{letter-spacing:4.266667pt;}
.ls77{letter-spacing:4.309333pt;}
.ls72{letter-spacing:4.320000pt;}
.lsb9{letter-spacing:4.352000pt;}
.ls8e{letter-spacing:4.373333pt;}
.ls3b{letter-spacing:4.426667pt;}
.ls85{letter-spacing:4.437333pt;}
.ls34{letter-spacing:4.480000pt;}
.ls87{letter-spacing:4.522667pt;}
.ls56{letter-spacing:4.586667pt;}
.ls80{letter-spacing:4.608000pt;}
.ls6f{letter-spacing:4.640000pt;}
.ls89{letter-spacing:4.693333pt;}
.ls5d{letter-spacing:4.746667pt;}
.ls74{letter-spacing:4.778667pt;}
.ls5e{letter-spacing:4.906667pt;}
.ls96{letter-spacing:4.960000pt;}
.ls71{letter-spacing:5.013333pt;}
.ls40{letter-spacing:5.173333pt;}
.ls3e{letter-spacing:5.280000pt;}
.ls3f{letter-spacing:5.386667pt;}
.ls9e{letter-spacing:5.493333pt;}
.ls7e{letter-spacing:5.632000pt;}
.lsa0{letter-spacing:5.653333pt;}
.ls4e{letter-spacing:5.760000pt;}
.ls9f{letter-spacing:5.813333pt;}
.ls78{letter-spacing:5.845333pt;}
.ls35{letter-spacing:5.920000pt;}
.ls9c{letter-spacing:6.240000pt;}
.ls7b{letter-spacing:6.357333pt;}
.ls4b{letter-spacing:6.570667pt;}
.ls5b{letter-spacing:7.413333pt;}
.lsa3{letter-spacing:10.400000pt;}
.ws1{word-spacing:-24.917333pt;}
.ws23{word-spacing:-20.106667pt;}
.ws6e{word-spacing:-19.840000pt;}
.wsaf{word-spacing:-19.786667pt;}
.ws59{word-spacing:-19.573333pt;}
.ws4e{word-spacing:-19.413333pt;}
.wsa5{word-spacing:-18.880000pt;}
.ws56{word-spacing:-18.826667pt;}
.wsb2{word-spacing:-18.720000pt;}
.ws5f{word-spacing:-18.613333pt;}
.ws61{word-spacing:-18.080000pt;}
.ws22{word-spacing:-17.760000pt;}
.ws4f{word-spacing:-17.600000pt;}
.ws33{word-spacing:-17.546667pt;}
.ws3d{word-spacing:-17.386667pt;}
.ws57{word-spacing:-17.333333pt;}
.ws25{word-spacing:-17.226667pt;}
.wsc6{word-spacing:-17.066667pt;}
.ws20{word-spacing:-17.013333pt;}
.ws24{word-spacing:-16.853333pt;}
.ws44{word-spacing:-16.746667pt;}
.ws3a{word-spacing:-16.693333pt;}
.ws96{word-spacing:-16.426667pt;}
.wsab{word-spacing:-16.320000pt;}
.ws86{word-spacing:-16.106667pt;}
.ws1d{word-spacing:-15.893333pt;}
.wsc9{word-spacing:-15.840000pt;}
.wsc8{word-spacing:-15.786667pt;}
.ws58{word-spacing:-15.733333pt;}
.ws35{word-spacing:-15.680000pt;}
.wsb5{word-spacing:-15.520000pt;}
.ws69{word-spacing:-15.466667pt;}
.wsc7{word-spacing:-15.413333pt;}
.ws1f{word-spacing:-15.360000pt;}
.wsa8{word-spacing:-15.306667pt;}
.ws90{word-spacing:-15.253333pt;}
.ws3e{word-spacing:-15.200000pt;}
.ws5c{word-spacing:-15.146667pt;}
.ws4d{word-spacing:-15.093333pt;}
.ws36{word-spacing:-14.986667pt;}
.ws1e{word-spacing:-14.933333pt;}
.ws1c{word-spacing:-14.826667pt;}
.ws9c{word-spacing:-14.720000pt;}
.ws45{word-spacing:-14.666667pt;}
.ws5e{word-spacing:-14.549333pt;}
.ws38{word-spacing:-14.506667pt;}
.ws78{word-spacing:-14.336000pt;}
.wsea{word-spacing:-14.293333pt;}
.wsdd{word-spacing:-13.952000pt;}
.ws60{word-spacing:-13.824000pt;}
.wsed{word-spacing:-13.781333pt;}
.ws7b{word-spacing:-13.610667pt;}
.wsd4{word-spacing:-13.525333pt;}
.wsec{word-spacing:-13.354667pt;}
.ws72{word-spacing:-13.312000pt;}
.wsf3{word-spacing:-13.013333pt;}
.wsb3{word-spacing:-12.970667pt;}
.wsaa{word-spacing:-12.928000pt;}
.wsd5{word-spacing:-12.885333pt;}
.wsb4{word-spacing:-12.800000pt;}
.ws6f{word-spacing:-12.757333pt;}
.wsa9{word-spacing:-12.672000pt;}
.ws14{word-spacing:-12.602667pt;}
.ws7c{word-spacing:-12.586667pt;}
.wseb{word-spacing:-12.544000pt;}
.wsde{word-spacing:-12.501333pt;}
.ws91{word-spacing:-12.458667pt;}
.ws87{word-spacing:-12.416000pt;}
.ws68{word-spacing:-12.373333pt;}
.ws77{word-spacing:-12.288000pt;}
.ws79{word-spacing:-12.245333pt;}
.ws73{word-spacing:-12.202667pt;}
.wsbd{word-spacing:-12.160000pt;}
.ws37{word-spacing:-12.117333pt;}
.ws97{word-spacing:-11.989333pt;}
.ws39{word-spacing:-11.946667pt;}
.ws7a{word-spacing:-11.904000pt;}
.ws21{word-spacing:-11.861333pt;}
.wsa4{word-spacing:-11.818667pt;}
.ws67{word-spacing:-11.776000pt;}
.wsa6{word-spacing:-11.733333pt;}
.wsdc{word-spacing:-11.648000pt;}
.ws0{word-spacing:-9.785600pt;}
.wsf2{word-spacing:-9.514667pt;}
.wsda{word-spacing:-5.493333pt;}
.ws30{word-spacing:-5.173333pt;}
.ws9e{word-spacing:-4.640000pt;}
.ws4{word-spacing:-3.226667pt;}
.ws62{word-spacing:-3.200000pt;}
.wsbf{word-spacing:-2.880000pt;}
.wscd{word-spacing:-2.613333pt;}
.wse1{word-spacing:-2.517333pt;}
.wsdf{word-spacing:-2.474667pt;}
.wsc0{word-spacing:-2.453333pt;}
.ws3{word-spacing:-2.368000pt;}
.wsb7{word-spacing:-2.346667pt;}
.ws8a{word-spacing:-2.261333pt;}
.ws53{word-spacing:-2.048000pt;}
.ws31{word-spacing:-2.026667pt;}
.ws1a{word-spacing:-1.973333pt;}
.ws7d{word-spacing:-1.962667pt;}
.wsbe{word-spacing:-1.920000pt;}
.wsc5{word-spacing:-1.813333pt;}
.ws81{word-spacing:-1.749333pt;}
.wscf{word-spacing:-1.706667pt;}
.ws55{word-spacing:-1.664000pt;}
.wsc4{word-spacing:-1.546667pt;}
.ws6c{word-spacing:-1.536000pt;}
.ws93{word-spacing:-1.493333pt;}
.ws8f{word-spacing:-1.386667pt;}
.wsa0{word-spacing:-1.365333pt;}
.wsc1{word-spacing:-1.333333pt;}
.wsba{word-spacing:-1.109333pt;}
.wsa3{word-spacing:-1.066667pt;}
.ws40{word-spacing:-1.013333pt;}
.ws8b{word-spacing:-0.981333pt;}
.ws94{word-spacing:-0.938667pt;}
.wsb6{word-spacing:-0.896000pt;}
.wsad{word-spacing:-0.810667pt;}
.ws9f{word-spacing:-0.768000pt;}
.ws89{word-spacing:-0.640000pt;}
.ws92{word-spacing:-0.597333pt;}
.wsbb{word-spacing:-0.586667pt;}
.ws8d{word-spacing:-0.554667pt;}
.ws9d{word-spacing:-0.480000pt;}
.ws98{word-spacing:-0.426667pt;}
.ws7f{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.373333pt;}
.wse6{word-spacing:-0.341333pt;}
.wscb{word-spacing:-0.320000pt;}
.ws8c{word-spacing:-0.298667pt;}
.ws6a{word-spacing:-0.266667pt;}
.ws3c{word-spacing:-0.256000pt;}
.wsd9{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.170667pt;}
.ws4c{word-spacing:-0.160000pt;}
.ws66{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.085333pt;}
.wsc{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws42{word-spacing:0.042667pt;}
.ws2c{word-spacing:0.053333pt;}
.ws71{word-spacing:0.085333pt;}
.ws6b{word-spacing:0.106667pt;}
.ws5a{word-spacing:0.160000pt;}
.ws82{word-spacing:0.213333pt;}
.wsd6{word-spacing:0.320000pt;}
.ws10{word-spacing:0.373333pt;}
.wsa1{word-spacing:0.384000pt;}
.ws5{word-spacing:0.469333pt;}
.ws7{word-spacing:0.512000pt;}
.wse9{word-spacing:0.554667pt;}
.ws13{word-spacing:0.586667pt;}
.wsae{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.693333pt;}
.ws51{word-spacing:0.725333pt;}
.wsd1{word-spacing:0.800000pt;}
.ws16{word-spacing:0.853333pt;}
.ws26{word-spacing:0.906667pt;}
.ws76{word-spacing:0.938667pt;}
.ws6d{word-spacing:0.981333pt;}
.ws3f{word-spacing:1.013333pt;}
.ws7e{word-spacing:1.024000pt;}
.ws43{word-spacing:1.066667pt;}
.ws48{word-spacing:1.109333pt;}
.ws11{word-spacing:1.120000pt;}
.ws65{word-spacing:1.173333pt;}
.ws2b{word-spacing:1.226667pt;}
.wse0{word-spacing:1.237333pt;}
.ws4a{word-spacing:1.280000pt;}
.ws70{word-spacing:1.333333pt;}
.wse8{word-spacing:1.365333pt;}
.ws8e{word-spacing:1.386667pt;}
.wsee{word-spacing:1.536000pt;}
.ws28{word-spacing:1.546667pt;}
.wsf5{word-spacing:1.578667pt;}
.wsdb{word-spacing:1.600000pt;}
.ws12{word-spacing:1.706667pt;}
.wsef{word-spacing:1.749333pt;}
.wsc3{word-spacing:1.760000pt;}
.wsb1{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.866667pt;}
.wsb0{word-spacing:1.920000pt;}
.ws54{word-spacing:1.962667pt;}
.ws17{word-spacing:2.026667pt;}
.wsf1{word-spacing:2.048000pt;}
.ws9a{word-spacing:2.133333pt;}
.ws8{word-spacing:2.176000pt;}
.wsbc{word-spacing:2.186667pt;}
.ws5b{word-spacing:2.293333pt;}
.wscc{word-spacing:2.346667pt;}
.ws18{word-spacing:2.400000pt;}
.ws52{word-spacing:2.432000pt;}
.wsf0{word-spacing:2.602667pt;}
.ws3b{word-spacing:2.613333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws88{word-spacing:2.688000pt;}
.ws2a{word-spacing:2.720000pt;}
.wsf6{word-spacing:2.730667pt;}
.ws49{word-spacing:2.773333pt;}
.ws6{word-spacing:2.816000pt;}
.wsd0{word-spacing:2.880000pt;}
.wsb9{word-spacing:2.986667pt;}
.ws5d{word-spacing:3.072000pt;}
.wse4{word-spacing:3.114667pt;}
.ws2d{word-spacing:3.146667pt;}
.ws29{word-spacing:3.200000pt;}
.wse3{word-spacing:3.242667pt;}
.ws85{word-spacing:3.253333pt;}
.wse7{word-spacing:3.328000pt;}
.wsf{word-spacing:3.360000pt;}
.wse2{word-spacing:3.370667pt;}
.wsca{word-spacing:3.413333pt;}
.wse5{word-spacing:3.456000pt;}
.ws74{word-spacing:3.520000pt;}
.ws19{word-spacing:3.573333pt;}
.ws80{word-spacing:3.626667pt;}
.ws50{word-spacing:3.680000pt;}
.wsf4{word-spacing:3.712000pt;}
.ws15{word-spacing:3.786667pt;}
.wsb8{word-spacing:3.840000pt;}
.ws9{word-spacing:3.882667pt;}
.wsb{word-spacing:3.893333pt;}
.wsa{word-spacing:3.925333pt;}
.ws64{word-spacing:4.000000pt;}
.ws63{word-spacing:4.106667pt;}
.ws84{word-spacing:4.160000pt;}
.wsa7{word-spacing:4.213333pt;}
.ws83{word-spacing:4.266667pt;}
.ws99{word-spacing:4.320000pt;}
.ws75{word-spacing:4.373333pt;}
.wsa2{word-spacing:4.426667pt;}
.ws27{word-spacing:4.480000pt;}
.ws34{word-spacing:4.608000pt;}
.ws41{word-spacing:4.640000pt;}
.wsd3{word-spacing:4.693333pt;}
.ws1b{word-spacing:4.746667pt;}
.ws47{word-spacing:4.800000pt;}
.wse{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws4b{word-spacing:5.013333pt;}
.wsac{word-spacing:5.493333pt;}
.wsc2{word-spacing:5.546667pt;}
.wsd8{word-spacing:5.973333pt;}
.wsd2{word-spacing:6.400000pt;}
.wsce{word-spacing:6.720000pt;}
.wsd7{word-spacing:7.146667pt;}
._8{margin-left:-2576.112000pt;}
._b{margin-left:-2554.941333pt;}
._c{margin-left:-7.333333pt;}
._7{margin-left:-6.037333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.621333pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.896000pt;}
._5{width:1.024000pt;}
._d{width:2.026667pt;}
._3{width:3.226667pt;}
._6{width:4.906667pt;}
._a{width:6.426667pt;}
._e{width:7.397333pt;}
._9{width:9.973333pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.yf4{bottom:73.330933pt;}
.y17c{bottom:73.428000pt;}
.y1f6{bottom:73.721867pt;}
.ye8{bottom:73.816400pt;}
.ycc{bottom:73.816933pt;}
.y186{bottom:73.900533pt;}
.y19c{bottom:73.910933pt;}
.y233{bottom:73.984533pt;}
.y95{bottom:74.089467pt;}
.y20c{bottom:74.101200pt;}
.y2a{bottom:74.216800pt;}
.y101{bottom:74.273600pt;}
.y12d{bottom:74.278400pt;}
.y1ba{bottom:74.288800pt;}
.ya2{bottom:74.477867pt;}
.yb7{bottom:74.572400pt;}
.y163{bottom:74.666800pt;}
.y120{bottom:75.044800pt;}
.y53{bottom:75.514667pt;}
.yf2{bottom:75.517200pt;}
.ya3{bottom:75.989600pt;}
.y254{bottom:76.263733pt;}
.y65{bottom:79.030400pt;}
.y290{bottom:84.389600pt;}
.y2b0{bottom:84.392267pt;}
.y93{bottom:86.875067pt;}
.yf3{bottom:87.328267pt;}
.y17b{bottom:87.422667pt;}
.y185{bottom:87.895200pt;}
.y94{bottom:88.084133pt;}
.y100{bottom:88.268267pt;}
.y12c{bottom:88.273067pt;}
.y253{bottom:89.597067pt;}
.y232{bottom:89.984533pt;}
.y20b{bottom:90.101200pt;}
.y64{bottom:95.030400pt;}
.y28f{bottom:97.722933pt;}
.y2af{bottom:97.725600pt;}
.y92{bottom:102.875067pt;}
.y252{bottom:102.930400pt;}
.y231{bottom:105.984533pt;}
.y20a{bottom:106.101200pt;}
.y14{bottom:108.011733pt;}
.y63{bottom:111.030400pt;}
.y28e{bottom:111.056267pt;}
.y2ae{bottom:111.058933pt;}
.y251{bottom:116.263733pt;}
.y91{bottom:118.875067pt;}
.y230{bottom:121.984533pt;}
.y209{bottom:122.101200pt;}
.y28d{bottom:124.389600pt;}
.y2ad{bottom:124.392267pt;}
.y62{bottom:127.030400pt;}
.y250{bottom:129.597067pt;}
.y28c{bottom:137.722933pt;}
.y2ac{bottom:137.725600pt;}
.y22f{bottom:137.984533pt;}
.y208{bottom:138.101200pt;}
.y24f{bottom:142.930400pt;}
.y90{bottom:150.493600pt;}
.y28b{bottom:151.056267pt;}
.y2ab{bottom:151.058933pt;}
.y22e{bottom:153.984533pt;}
.y207{bottom:154.101200pt;}
.y24e{bottom:156.263733pt;}
.y61{bottom:158.648933pt;}
.y26{bottom:160.907733pt;}
.y8f{bottom:163.826933pt;}
.y28a{bottom:164.389600pt;}
.y2aa{bottom:164.392267pt;}
.y24d{bottom:169.597067pt;}
.y22d{bottom:169.984533pt;}
.y206{bottom:170.101200pt;}
.y25{bottom:176.907733pt;}
.y289{bottom:177.722933pt;}
.y2a9{bottom:177.725600pt;}
.y24c{bottom:182.930400pt;}
.y22c{bottom:185.984533pt;}
.y205{bottom:186.101200pt;}
.y60{bottom:186.247867pt;}
.y288{bottom:191.056267pt;}
.y2a8{bottom:191.058933pt;}
.y8e{bottom:191.405200pt;}
.y24{bottom:192.907733pt;}
.y24b{bottom:196.263733pt;}
.y52{bottom:201.744000pt;}
.y22b{bottom:201.984533pt;}
.y204{bottom:202.101200pt;}
.y5f{bottom:202.247867pt;}
.y287{bottom:204.389600pt;}
.y2a7{bottom:204.392267pt;}
.y8d{bottom:207.423067pt;}
.y23{bottom:208.907733pt;}
.y24a{bottom:209.597067pt;}
.y286{bottom:217.722933pt;}
.y2a6{bottom:217.725600pt;}
.y22a{bottom:217.984533pt;}
.y203{bottom:218.101200pt;}
.y249{bottom:222.930400pt;}
.y22{bottom:224.907733pt;}
.y285{bottom:231.056267pt;}
.y2a5{bottom:231.058933pt;}
.y202{bottom:234.101200pt;}
.y5e{bottom:234.114533pt;}
.y248{bottom:236.263733pt;}
.y8c{bottom:239.289733pt;}
.y21{bottom:240.907733pt;}
.y284{bottom:244.389600pt;}
.y2a4{bottom:244.392267pt;}
.y247{bottom:249.597067pt;}
.y229{bottom:249.984533pt;}
.y201{bottom:250.101200pt;}
.y5d{bottom:250.114533pt;}
.y8b{bottom:255.289733pt;}
.y20{bottom:256.907733pt;}
.y283{bottom:257.722933pt;}
.y2a3{bottom:257.725600pt;}
.y246{bottom:262.930400pt;}
.y228{bottom:265.984533pt;}
.y200{bottom:266.101200pt;}
.y282{bottom:271.056267pt;}
.y2a2{bottom:271.058933pt;}
.y1f{bottom:272.907733pt;}
.y245{bottom:276.263733pt;}
.y5c{bottom:281.981200pt;}
.y227{bottom:281.984533pt;}
.y1ff{bottom:282.101200pt;}
.y281{bottom:284.389600pt;}
.y2a1{bottom:284.392267pt;}
.y8a{bottom:287.156400pt;}
.y1e{bottom:288.907733pt;}
.y244{bottom:289.597067pt;}
.y280{bottom:297.722933pt;}
.y2a0{bottom:297.725600pt;}
.y5b{bottom:297.981200pt;}
.y226{bottom:297.984533pt;}
.y1fe{bottom:298.101200pt;}
.y243{bottom:302.930400pt;}
.y89{bottom:303.156400pt;}
.y1d{bottom:304.907733pt;}
.y27f{bottom:311.056267pt;}
.y29f{bottom:311.058933pt;}
.y5a{bottom:313.981200pt;}
.y225{bottom:313.984533pt;}
.y1fd{bottom:314.101200pt;}
.y242{bottom:316.263733pt;}
.y88{bottom:319.156400pt;}
.y1c{bottom:320.907733pt;}
.y27e{bottom:324.389600pt;}
.y29e{bottom:324.392267pt;}
.y241{bottom:329.597067pt;}
.y59{bottom:329.981200pt;}
.y224{bottom:329.984533pt;}
.y1fc{bottom:330.101200pt;}
.y87{bottom:335.156400pt;}
.y1b{bottom:336.907733pt;}
.y27d{bottom:337.722933pt;}
.y29d{bottom:337.725600pt;}
.y240{bottom:342.930400pt;}
.y58{bottom:345.981200pt;}
.y223{bottom:345.984533pt;}
.y1fb{bottom:346.101200pt;}
.y27c{bottom:351.056267pt;}
.y29c{bottom:351.058933pt;}
.y86{bottom:351.156400pt;}
.y1a{bottom:352.907733pt;}
.y23f{bottom:356.263733pt;}
.y222{bottom:361.984533pt;}
.y1fa{bottom:362.101200pt;}
.y27b{bottom:364.389600pt;}
.y29b{bottom:364.392267pt;}
.y85{bottom:367.156400pt;}
.y19{bottom:368.907733pt;}
.y23e{bottom:369.597067pt;}
.y27a{bottom:377.722933pt;}
.y29a{bottom:377.725600pt;}
.y57{bottom:377.981200pt;}
.y221{bottom:377.984533pt;}
.y1f9{bottom:378.101200pt;}
.y23d{bottom:382.930400pt;}
.y84{bottom:383.156400pt;}
.y18{bottom:384.907733pt;}
.y1f2{bottom:385.289733pt;}
.y279{bottom:391.056267pt;}
.y299{bottom:391.058933pt;}
.y220{bottom:393.984533pt;}
.y1f8{bottom:394.101200pt;}
.y23c{bottom:396.263733pt;}
.y83{bottom:399.156400pt;}
.y17{bottom:400.907733pt;}
.y1f1{bottom:401.289733pt;}
.y1d7{bottom:401.704400pt;}
.y278{bottom:404.389600pt;}
.y298{bottom:404.392267pt;}
.y21f{bottom:409.984533pt;}
.y1f7{bottom:410.101200pt;}
.y82{bottom:415.156400pt;}
.y16{bottom:416.907733pt;}
.y1f0{bottom:417.289733pt;}
.y1d6{bottom:417.704400pt;}
.y277{bottom:417.722933pt;}
.y297{bottom:417.725600pt;}
.y21e{bottom:425.984533pt;}
.y56{bottom:426.101200pt;}
.y276{bottom:431.056267pt;}
.y296{bottom:431.058933pt;}
.y81{bottom:431.156400pt;}
.y27{bottom:432.907733pt;}
.y1ef{bottom:433.289733pt;}
.y1d5{bottom:433.704400pt;}
.y21d{bottom:441.984533pt;}
.y55{bottom:442.101200pt;}
.y275{bottom:444.389600pt;}
.y295{bottom:444.392267pt;}
.y80{bottom:447.156400pt;}
.y15{bottom:448.907733pt;}
.y274{bottom:457.722933pt;}
.y294{bottom:457.725600pt;}
.y51{bottom:457.981200pt;}
.y21c{bottom:457.984533pt;}
.y49{bottom:458.101200pt;}
.y7f{bottom:463.156400pt;}
.y1ee{bottom:464.908267pt;}
.y1d4{bottom:465.571067pt;}
.y273{bottom:471.056267pt;}
.y293{bottom:471.058933pt;}
.y50{bottom:473.981200pt;}
.y21b{bottom:473.984533pt;}
.y48{bottom:474.101200pt;}
.y23b{bottom:474.104533pt;}
.y1ed{bottom:478.241600pt;}
.y7e{bottom:479.156400pt;}
.y1d3{bottom:481.571067pt;}
.y272{bottom:484.389600pt;}
.y292{bottom:484.392267pt;}
.y4f{bottom:489.981200pt;}
.y21a{bottom:489.984533pt;}
.y47{bottom:490.101200pt;}
.y23a{bottom:490.104533pt;}
.y7d{bottom:495.156400pt;}
.y1d2{bottom:497.571067pt;}
.y271{bottom:497.722933pt;}
.y291{bottom:497.725600pt;}
.y1ec{bottom:505.837733pt;}
.y4e{bottom:505.981200pt;}
.y219{bottom:505.984533pt;}
.y46{bottom:506.101200pt;}
.y239{bottom:506.104533pt;}
.y13{bottom:508.967600pt;}
.y270{bottom:511.056267pt;}
.y2b1{bottom:511.058933pt;}
.y7c{bottom:511.156400pt;}
.y1d1{bottom:513.571067pt;}
.y1eb{bottom:521.837733pt;}
.y4d{bottom:521.981200pt;}
.y218{bottom:521.984533pt;}
.y45{bottom:522.101200pt;}
.y26f{bottom:524.389600pt;}
.y7b{bottom:527.156400pt;}
.y1d0{bottom:529.571067pt;}
.y26e{bottom:537.722933pt;}
.y1ea{bottom:537.837733pt;}
.y4c{bottom:537.981200pt;}
.y217{bottom:537.984533pt;}
.y44{bottom:538.101200pt;}
.y238{bottom:538.104533pt;}
.y12{bottom:538.172933pt;}
.y7a{bottom:543.156400pt;}
.y1cf{bottom:545.571067pt;}
.y26d{bottom:551.056267pt;}
.y11{bottom:551.506267pt;}
.y4b{bottom:553.981200pt;}
.y216{bottom:553.984533pt;}
.y43{bottom:554.101200pt;}
.y79{bottom:559.156400pt;}
.y1ce{bottom:561.571067pt;}
.yc4{bottom:561.697067pt;}
.y26c{bottom:564.389600pt;}
.y10{bottom:564.839600pt;}
.y1e9{bottom:569.704400pt;}
.y215{bottom:569.984533pt;}
.y42{bottom:570.101200pt;}
.y237{bottom:570.104533pt;}
.y78{bottom:575.156400pt;}
.ycb{bottom:577.315600pt;}
.y1cd{bottom:577.571067pt;}
.yc3{bottom:577.697067pt;}
.y26b{bottom:577.722933pt;}
.yf{bottom:578.172933pt;}
.y1e8{bottom:585.704400pt;}
.y4a{bottom:585.981200pt;}
.y214{bottom:585.984533pt;}
.y41{bottom:586.101200pt;}
.y236{bottom:586.104533pt;}
.yca{bottom:590.648933pt;}
.y26a{bottom:591.056267pt;}
.ye{bottom:591.506267pt;}
.y1cc{bottom:593.571067pt;}
.yc2{bottom:593.697067pt;}
.y213{bottom:601.984533pt;}
.y40{bottom:602.101200pt;}
.y235{bottom:602.104533pt;}
.y269{bottom:604.389600pt;}
.yd{bottom:604.839600pt;}
.y77{bottom:606.774933pt;}
.yf9{bottom:607.030400pt;}
.yff{bottom:609.441600pt;}
.y1cb{bottom:609.571067pt;}
.yc1{bottom:609.697067pt;}
.y115{bottom:612.771200pt;}
.y11f{bottom:615.030400pt;}
.y1e7{bottom:617.571067pt;}
.y268{bottom:617.722933pt;}
.y212{bottom:617.984533pt;}
.y3f{bottom:618.101200pt;}
.y234{bottom:618.104533pt;}
.yc9{bottom:618.243733pt;}
.y1a8{bottom:618.367867pt;}
.y19d{bottom:622.648933pt;}
.yfe{bottom:622.774933pt;}
.yf8{bottom:623.030400pt;}
.y1a1{bottom:623.437867pt;}
.y1ca{bottom:625.571067pt;}
.yc0{bottom:625.697067pt;}
.y114{bottom:628.771200pt;}
.y11e{bottom:631.030400pt;}
.y267{bottom:631.056267pt;}
.y1e6{bottom:633.571067pt;}
.y211{bottom:633.984533pt;}
.y3e{bottom:634.101200pt;}
.ydf{bottom:634.104533pt;}
.yc8{bottom:634.243733pt;}
.y1a7{bottom:634.367867pt;}
.y76{bottom:634.377067pt;}
.y1b9{bottom:636.771200pt;}
.yf7{bottom:639.030400pt;}
.y1a0{bottom:639.437867pt;}
.y162{bottom:641.315600pt;}
.y1c9{bottom:641.571067pt;}
.ybf{bottom:641.697067pt;}
.yb6{bottom:644.237733pt;}
.y266{bottom:644.389600pt;}
.y113{bottom:644.771200pt;}
.y11d{bottom:647.030400pt;}
.yc{bottom:648.167600pt;}
.y1e5{bottom:649.571067pt;}
.y210{bottom:649.984533pt;}
.y3d{bottom:650.101200pt;}
.yde{bottom:650.104533pt;}
.y17a{bottom:650.110533pt;}
.ya5{bottom:650.234533pt;}
.y75{bottom:650.377067pt;}
.y1b8{bottom:652.771200pt;}
.y161{bottom:654.648933pt;}
.yf6{bottom:655.030400pt;}
.y15c{bottom:655.437867pt;}
.y1c8{bottom:657.571067pt;}
.ybe{bottom:657.697067pt;}
.y168{bottom:657.697200pt;}
.y265{bottom:657.722933pt;}
.yb5{bottom:660.237733pt;}
.y112{bottom:660.771200pt;}
.yb{bottom:660.968000pt;}
.y14b{bottom:662.774933pt;}
.y11c{bottom:663.030400pt;}
.y1e4{bottom:665.571067pt;}
.y20f{bottom:665.984533pt;}
.y3c{bottom:666.101200pt;}
.ydd{bottom:666.104533pt;}
.yc7{bottom:666.110400pt;}
.y179{bottom:666.110533pt;}
.ya4{bottom:666.234533pt;}
.yfd{bottom:666.377067pt;}
.y160{bottom:667.982267pt;}
.y1b7{bottom:668.771200pt;}
.y1a4{bottom:670.648933pt;}
.y17e{bottom:670.774933pt;}
.yf5{bottom:671.030400pt;}
.y264{bottom:671.056267pt;}
.y15b{bottom:671.437867pt;}
.y133{bottom:673.441600pt;}
.y1c7{bottom:673.571067pt;}
.ybd{bottom:673.697067pt;}
.y167{bottom:673.697200pt;}
.y14a{bottom:676.108267pt;}
.yb4{bottom:676.237733pt;}
.y111{bottom:676.771200pt;}
.ya1{bottom:679.030400pt;}
.y15f{bottom:681.315600pt;}
.y1e3{bottom:681.571067pt;}
.y20e{bottom:681.984533pt;}
.y3b{bottom:682.101200pt;}
.y19b{bottom:682.103067pt;}
.ydc{bottom:682.104533pt;}
.yc6{bottom:682.110400pt;}
.y178{bottom:682.110533pt;}
.y74{bottom:682.243733pt;}
.y263{bottom:684.389600pt;}
.y1b6{bottom:684.771200pt;}
.ya{bottom:685.106267pt;}
.y132{bottom:686.774933pt;}
.yf1{bottom:687.030400pt;}
.y18b{bottom:687.156400pt;}
.y15a{bottom:687.437867pt;}
.y149{bottom:689.441600pt;}
.y1c6{bottom:689.571067pt;}
.ybc{bottom:689.697067pt;}
.yb3{bottom:692.237733pt;}
.y110{bottom:692.771200pt;}
.y15e{bottom:694.648933pt;}
.ya0{bottom:695.030400pt;}
.y1e2{bottom:697.571067pt;}
.y262{bottom:697.722933pt;}
.y1f5{bottom:697.981200pt;}
.y3a{bottom:698.101200pt;}
.y19a{bottom:698.103067pt;}
.ydb{bottom:698.104533pt;}
.yc5{bottom:698.110400pt;}
.y177{bottom:698.110533pt;}
.y1a3{bottom:698.237867pt;}
.yfc{bottom:698.243733pt;}
.y17d{bottom:698.367867pt;}
.y1b5{bottom:700.771200pt;}
.y148{bottom:702.774933pt;}
.yf0{bottom:703.030400pt;}
.y18a{bottom:703.156400pt;}
.y159{bottom:703.437867pt;}
.y166{bottom:705.315600pt;}
.y1c5{bottom:705.571067pt;}
.y12b{bottom:705.697067pt;}
.y15d{bottom:707.982267pt;}
.yb2{bottom:708.237733pt;}
.y10f{bottom:708.771200pt;}
.y9f{bottom:711.030400pt;}
.y261{bottom:711.056267pt;}
.y1e1{bottom:713.571067pt;}
.y1f4{bottom:713.981200pt;}
.y20d{bottom:713.984533pt;}
.y39{bottom:714.101200pt;}
.y199{bottom:714.103067pt;}
.yda{bottom:714.104533pt;}
.y73{bottom:714.110400pt;}
.y176{bottom:714.110533pt;}
.y1a2{bottom:714.237867pt;}
.yfb{bottom:714.243733pt;}
.y131{bottom:714.367867pt;}
.y147{bottom:716.108267pt;}
.y1b4{bottom:716.771200pt;}
.y165{bottom:718.648933pt;}
.yef{bottom:719.030400pt;}
.y9{bottom:719.433333pt;}
.y158{bottom:719.437867pt;}
.ybb{bottom:721.315600pt;}
.y1c4{bottom:721.571067pt;}
.y12a{bottom:721.697067pt;}
.yb1{bottom:724.237733pt;}
.y260{bottom:724.389600pt;}
.y10e{bottom:724.771200pt;}
.y9e{bottom:727.030400pt;}
.y146{bottom:729.441600pt;}
.y1e0{bottom:729.571067pt;}
.y38{bottom:730.101200pt;}
.y198{bottom:730.103067pt;}
.yd9{bottom:730.104533pt;}
.y72{bottom:730.110400pt;}
.y175{bottom:730.110533pt;}
.yfa{bottom:730.243733pt;}
.y130{bottom:730.367867pt;}
.y1b3{bottom:732.771200pt;}
.y8{bottom:734.100000pt;}
.yba{bottom:734.648933pt;}
.y189{bottom:734.774933pt;}
.yee{bottom:735.030400pt;}
.y157{bottom:735.437867pt;}
.y1c3{bottom:737.571067pt;}
.y12f{bottom:737.697067pt;}
.y25f{bottom:737.722933pt;}
.yb0{bottom:740.237733pt;}
.y10d{bottom:740.771200pt;}
.y11b{bottom:742.648933pt;}
.y145{bottom:742.774933pt;}
.y9d{bottom:743.030400pt;}
.y1df{bottom:745.571067pt;}
.y1f3{bottom:745.981200pt;}
.y37{bottom:746.101200pt;}
.y197{bottom:746.103067pt;}
.yd8{bottom:746.104533pt;}
.y71{bottom:746.110400pt;}
.y174{bottom:746.110533pt;}
.y164{bottom:746.234533pt;}
.ye7{bottom:747.982267pt;}
.y7{bottom:748.766667pt;}
.y1b2{bottom:748.771200pt;}
.yed{bottom:751.030400pt;}
.y25e{bottom:751.056267pt;}
.y156{bottom:751.437867pt;}
.y129{bottom:753.315600pt;}
.y1c2{bottom:753.571067pt;}
.y11a{bottom:755.982267pt;}
.y144{bottom:756.108267pt;}
.yaf{bottom:756.237733pt;}
.y10c{bottom:756.771200pt;}
.y9c{bottom:759.030400pt;}
.ye6{bottom:761.315600pt;}
.y1de{bottom:761.571067pt;}
.y36{bottom:762.101200pt;}
.y196{bottom:762.103067pt;}
.yd7{bottom:762.104533pt;}
.y70{bottom:762.110400pt;}
.y173{bottom:762.110533pt;}
.yb9{bottom:762.234533pt;}
.y6{bottom:762.338933pt;}
.y188{bottom:762.367867pt;}
.y25d{bottom:764.389600pt;}
.y1b1{bottom:764.771200pt;}
.y128{bottom:766.648933pt;}
.yec{bottom:767.030400pt;}
.y155{bottom:767.437867pt;}
.y119{bottom:769.315600pt;}
.y143{bottom:769.441600pt;}
.y1c1{bottom:769.571067pt;}
.yae{bottom:772.237733pt;}
.y10b{bottom:772.771200pt;}
.ye5{bottom:774.648933pt;}
.y1dd{bottom:777.571067pt;}
.y25c{bottom:777.722933pt;}
.y13f{bottom:777.725600pt;}
.y35{bottom:778.101200pt;}
.y195{bottom:778.103067pt;}
.yd6{bottom:778.104533pt;}
.y6f{bottom:778.110400pt;}
.y172{bottom:778.110533pt;}
.yb8{bottom:778.234533pt;}
.y187{bottom:778.367867pt;}
.y127{bottom:779.982267pt;}
.y1b0{bottom:780.771200pt;}
.y118{bottom:782.648933pt;}
.y142{bottom:782.774933pt;}
.y5{bottom:783.004267pt;}
.y154{bottom:783.437867pt;}
.y1c0{bottom:785.571067pt;}
.ye4{bottom:787.982267pt;}
.yad{bottom:788.237733pt;}
.y10a{bottom:788.771200pt;}
.y9b{bottom:790.648933pt;}
.y25b{bottom:791.056267pt;}
.y13e{bottom:791.058933pt;}
.y126{bottom:793.315600pt;}
.y1dc{bottom:793.571067pt;}
.y34{bottom:794.101200pt;}
.y194{bottom:794.103067pt;}
.yd5{bottom:794.104533pt;}
.y6e{bottom:794.110400pt;}
.y171{bottom:794.110533pt;}
.y1af{bottom:796.771200pt;}
.yeb{bottom:798.648933pt;}
.y153{bottom:799.437867pt;}
.ye3{bottom:801.315600pt;}
.y1bf{bottom:801.571067pt;}
.y9a{bottom:803.982267pt;}
.yac{bottom:804.237733pt;}
.y25a{bottom:804.389600pt;}
.y13d{bottom:804.392267pt;}
.y109{bottom:804.771200pt;}
.y125{bottom:806.648933pt;}
.y4{bottom:807.350400pt;}
.y33{bottom:810.101200pt;}
.y193{bottom:810.103067pt;}
.yd4{bottom:810.104533pt;}
.y6d{bottom:810.110400pt;}
.y170{bottom:810.110533pt;}
.y12e{bottom:810.234533pt;}
.y117{bottom:810.237867pt;}
.y141{bottom:810.367867pt;}
.y1ae{bottom:812.771200pt;}
.ye2{bottom:814.648933pt;}
.y152{bottom:815.437867pt;}
.y99{bottom:817.315600pt;}
.y1be{bottom:817.571067pt;}
.y259{bottom:817.722933pt;}
.y13c{bottom:817.725600pt;}
.y124{bottom:819.982267pt;}
.yab{bottom:820.237733pt;}
.y108{bottom:820.771200pt;}
.y1db{bottom:825.189600pt;}
.y32{bottom:826.101200pt;}
.y192{bottom:826.103067pt;}
.yd3{bottom:826.104533pt;}
.y6c{bottom:826.110400pt;}
.y16f{bottom:826.110533pt;}
.yea{bottom:826.234533pt;}
.y116{bottom:826.237867pt;}
.y140{bottom:826.367867pt;}
.y1ad{bottom:828.771200pt;}
.y98{bottom:830.648933pt;}
.y258{bottom:831.056267pt;}
.y13b{bottom:831.058933pt;}
.y3{bottom:831.355733pt;}
.y151{bottom:831.437867pt;}
.y123{bottom:833.315600pt;}
.y1bd{bottom:833.571067pt;}
.y107{bottom:836.771200pt;}
.y1da{bottom:838.522933pt;}
.y31{bottom:842.101200pt;}
.y191{bottom:842.103067pt;}
.yd2{bottom:842.104533pt;}
.y6b{bottom:842.110400pt;}
.y16e{bottom:842.110533pt;}
.ye9{bottom:842.234533pt;}
.ye1{bottom:842.237867pt;}
.y257{bottom:844.389600pt;}
.y13a{bottom:844.392267pt;}
.y1ac{bottom:844.771200pt;}
.y122{bottom:846.648933pt;}
.y150{bottom:847.437867pt;}
.yaa{bottom:851.856267pt;}
.y106{bottom:852.771200pt;}
.y184{bottom:857.718933pt;}
.y256{bottom:857.722933pt;}
.y139{bottom:857.725600pt;}
.y30{bottom:858.101200pt;}
.y190{bottom:858.103067pt;}
.yd1{bottom:858.104533pt;}
.y6a{bottom:858.110400pt;}
.y16d{bottom:858.110533pt;}
.y97{bottom:858.234533pt;}
.ye0{bottom:858.237867pt;}
.y1ab{bottom:860.771200pt;}
.y14f{bottom:863.437867pt;}
.ya9{bottom:865.189600pt;}
.y183{bottom:871.052267pt;}
.y255{bottom:871.056267pt;}
.y138{bottom:871.058933pt;}
.y2{bottom:871.060800pt;}
.y2f{bottom:874.101200pt;}
.y18f{bottom:874.103067pt;}
.yd0{bottom:874.104533pt;}
.y69{bottom:874.110400pt;}
.y16c{bottom:874.110533pt;}
.y96{bottom:874.234533pt;}
.y1aa{bottom:876.771200pt;}
.ya8{bottom:878.522933pt;}
.y14e{bottom:879.437867pt;}
.y182{bottom:884.385600pt;}
.y1a6{bottom:884.387600pt;}
.y105{bottom:884.389600pt;}
.y137{bottom:884.392267pt;}
.y2e{bottom:890.101200pt;}
.y18e{bottom:890.103067pt;}
.ycf{bottom:890.104533pt;}
.y68{bottom:890.110400pt;}
.y16b{bottom:890.110533pt;}
.y121{bottom:890.234533pt;}
.y1a9{bottom:892.771200pt;}
.y181{bottom:897.718933pt;}
.y1a5{bottom:897.720933pt;}
.y104{bottom:897.722933pt;}
.y136{bottom:897.725600pt;}
.y2d{bottom:906.101200pt;}
.y18d{bottom:906.103067pt;}
.yce{bottom:906.104533pt;}
.y1bc{bottom:906.107733pt;}
.y67{bottom:906.110400pt;}
.y16a{bottom:906.110533pt;}
.ya7{bottom:906.114533pt;}
.y1d9{bottom:906.117733pt;}
.y180{bottom:911.052267pt;}
.y19f{bottom:911.054267pt;}
.y103{bottom:911.056267pt;}
.y135{bottom:911.058933pt;}
.y14d{bottom:911.062933pt;}
.y2c{bottom:922.101200pt;}
.y18c{bottom:922.103067pt;}
.ycd{bottom:922.104533pt;}
.y1bb{bottom:922.107733pt;}
.y66{bottom:922.110400pt;}
.y169{bottom:922.110533pt;}
.ya6{bottom:922.114533pt;}
.y1d8{bottom:922.117733pt;}
.y17f{bottom:924.385600pt;}
.y19e{bottom:924.387600pt;}
.y102{bottom:924.389600pt;}
.y134{bottom:924.392267pt;}
.y14c{bottom:924.396267pt;}
.y29{bottom:951.795067pt;}
.y54{bottom:965.392400pt;}
.y28{bottom:965.395067pt;}
.h7{height:18.637500pt;}
.h2{height:27.653646pt;}
.h8{height:31.062500pt;}
.hb{height:31.083333pt;}
.h9{height:31.604167pt;}
.ha{height:32.041667pt;}
.h13{height:32.052333pt;}
.h10{height:33.579427pt;}
.hf{height:34.044271pt;}
.he{height:38.854167pt;}
.h12{height:39.491875pt;}
.hd{height:39.505208pt;}
.hc{height:40.052083pt;}
.h11{height:42.010325pt;}
.h6{height:46.206238pt;}
.h5{height:46.211571pt;}
.h3{height:48.062500pt;}
.h4{height:56.072917pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x3b{left:82.324800pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x25{left:94.484800pt;}
.xb{left:98.271467pt;}
.x41{left:102.684800pt;}
.x3d{left:106.004800pt;}
.x43{left:112.328133pt;}
.x34{left:113.385867pt;}
.x39{left:114.905733pt;}
.x5{left:117.170133pt;}
.x42{left:118.618133pt;}
.x21{left:125.022533pt;}
.x15{left:131.441600pt;}
.x13{left:136.241600pt;}
.x40{left:137.498133pt;}
.x3{left:143.619200pt;}
.x22{left:145.022533pt;}
.xf{left:146.465600pt;}
.x14{left:147.854933pt;}
.x3e{left:150.582533pt;}
.x3f{left:157.875867pt;}
.x23{left:168.751467pt;}
.x48{left:187.902533pt;}
.x4{left:189.223467pt;}
.x30{left:193.964800pt;}
.x24{left:197.164800pt;}
.x3c{left:203.444800pt;}
.x12{left:206.548267pt;}
.x3a{left:212.359067pt;}
.x16{left:216.041600pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x31{left:411.681067pt;}
.x38{left:413.884800pt;}
.x18{left:425.205333pt;}
.x6{left:427.090133pt;}
.x2a{left:431.672000pt;}
.x28{left:432.752533pt;}
.xd{left:436.538133pt;}
.x45{left:438.726400pt;}
.x2d{left:439.844800pt;}
.x35{left:440.938667pt;}
.x33{left:446.867733pt;}
.x29{left:448.712000pt;}
.x37{left:450.204800pt;}
.x1e{left:451.660800pt;}
.x17{left:455.432000pt;}
.x7{left:457.330133pt;}
.x19{left:461.352000pt;}
.xe{left:466.911467pt;}
.x44{left:469.845333pt;}
.x1d{left:476.126400pt;}
.x20{left:480.209200pt;}
.x1c{left:481.673067pt;}
.x2c{left:504.298133pt;}
.x26{left:507.001067pt;}
.x47{left:515.044800pt;}
.x49{left:529.849200pt;}
.x1a{left:531.765333pt;}
.x27{left:535.414400pt;}
.x46{left:536.899733pt;}
.x32{left:541.721067pt;}
.x36{left:550.618667pt;}
.x1b{left:554.365333pt;}
.x2b{left:560.605333pt;}
.x11{left:589.770933pt;}
.x2{left:626.078800pt;}
.x2e{left:637.449067pt;}
.x10{left:643.752133pt;}
.x2f{left:657.187867pt;}
.x1f{left:662.649733pt;}
}




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