
    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_f33e42acb25f6ceff423d44e.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_4e617f4a4b830ab30e5ffa95.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_2d0ce69fc340fba26e815d94.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_7c2639a83fddca57b57f0aa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5cd3f1fa27bf13c3ac741b83.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2f6d41013d86f7fb7c4c51f1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3328720de8dbe372a4265e66.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_851563a1371240ae1ce369e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ee14e2a80b8ba55bed117c61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8ca0cda1676c8f289095e684.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_40f67e73cade541aebbcfde3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.877441;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;}
.v3{vertical-align:-18.811800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.ls7b{letter-spacing:-5.520000px;}
.ls66{letter-spacing:-1.776000px;}
.ls4{letter-spacing:-0.780000px;}
.ls31{letter-spacing:-0.660000px;}
.ls98{letter-spacing:-0.624000px;}
.ls6f{letter-spacing:-0.600000px;}
.ls53{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.252000px;}
.ls70{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.180000px;}
.ls35{letter-spacing:-0.168000px;}
.ls55{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls54{letter-spacing:-0.096000px;}
.ls47{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003828px;}
.ls1{letter-spacing:0.004140px;}
.ls50{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls89{letter-spacing:0.096000px;}
.ls15{letter-spacing:0.120000px;}
.ls78{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.180000px;}
.ls6b{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.240000px;}
.ls5b{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.300000px;}
.ls8a{letter-spacing:0.336000px;}
.ls27{letter-spacing:0.360000px;}
.ls6d{letter-spacing:0.384000px;}
.ls3b{letter-spacing:0.420000px;}
.ls58{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls81{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.540000px;}
.ls7d{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.600000px;}
.ls90{letter-spacing:0.624000px;}
.ls11{letter-spacing:0.660000px;}
.ls8b{letter-spacing:0.672000px;}
.lsc{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.768000px;}
.ls1c{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.900000px;}
.ls7c{letter-spacing:0.912000px;}
.ls21{letter-spacing:0.960000px;}
.ls8e{letter-spacing:1.008000px;}
.ls45{letter-spacing:1.020000px;}
.ls46{letter-spacing:1.080000px;}
.ls83{letter-spacing:1.104000px;}
.ls51{letter-spacing:1.140000px;}
.ls26{letter-spacing:1.200000px;}
.ls8d{letter-spacing:1.248000px;}
.ls25{letter-spacing:1.260000px;}
.ls91{letter-spacing:1.296000px;}
.ls24{letter-spacing:1.320000px;}
.ls82{letter-spacing:1.344000px;}
.ls1b{letter-spacing:1.380000px;}
.ls94{letter-spacing:1.392000px;}
.lse{letter-spacing:1.440000px;}
.ls62{letter-spacing:1.488000px;}
.ls32{letter-spacing:1.500000px;}
.ls8f{letter-spacing:1.536000px;}
.ls41{letter-spacing:1.560000px;}
.ls88{letter-spacing:1.584000px;}
.ls18{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.680000px;}
.lsd{letter-spacing:1.740000px;}
.ls33{letter-spacing:1.776000px;}
.ls3e{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.ls13{letter-spacing:1.860000px;}
.ls7e{letter-spacing:1.872000px;}
.ls14{letter-spacing:1.920000px;}
.ls2a{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.040000px;}
.ls8{letter-spacing:2.100000px;}
.ls19{letter-spacing:2.160000px;}
.ls85{letter-spacing:2.208000px;}
.ls2b{letter-spacing:2.220000px;}
.ls63{letter-spacing:2.256000px;}
.ls9{letter-spacing:2.280000px;}
.ls5d{letter-spacing:2.340000px;}
.ls92{letter-spacing:2.352000px;}
.ls17{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.460000px;}
.ls7a{letter-spacing:2.496000px;}
.ls3c{letter-spacing:2.520000px;}
.ls52{letter-spacing:2.580000px;}
.ls4f{letter-spacing:2.640000px;}
.ls44{letter-spacing:2.700000px;}
.ls95{letter-spacing:2.736000px;}
.ls2e{letter-spacing:2.760000px;}
.ls2f{letter-spacing:2.820000px;}
.ls96{letter-spacing:2.832000px;}
.ls2c{letter-spacing:2.880000px;}
.ls7f{letter-spacing:2.928000px;}
.ls16{letter-spacing:2.940000px;}
.ls6c{letter-spacing:2.976000px;}
.ls40{letter-spacing:3.000000px;}
.ls4d{letter-spacing:3.120000px;}
.ls30{letter-spacing:3.180000px;}
.ls84{letter-spacing:3.216000px;}
.ls6{letter-spacing:3.240000px;}
.ls7{letter-spacing:3.360000px;}
.ls71{letter-spacing:3.420000px;}
.ls4b{letter-spacing:3.480000px;}
.ls39{letter-spacing:3.540000px;}
.ls48{letter-spacing:3.600000px;}
.ls4e{letter-spacing:3.660000px;}
.ls8c{letter-spacing:3.696000px;}
.ls6e{letter-spacing:3.720000px;}
.ls29{letter-spacing:3.780000px;}
.ls87{letter-spacing:3.840000px;}
.ls3f{letter-spacing:3.900000px;}
.ls86{letter-spacing:4.032000px;}
.ls4c{letter-spacing:4.080000px;}
.ls79{letter-spacing:4.128000px;}
.ls37{letter-spacing:4.140000px;}
.ls93{letter-spacing:4.176000px;}
.lsa{letter-spacing:4.200000px;}
.ls80{letter-spacing:4.320000px;}
.ls22{letter-spacing:4.380000px;}
.ls36{letter-spacing:4.440000px;}
.ls5a{letter-spacing:4.620000px;}
.ls72{letter-spacing:4.860000px;}
.ls64{letter-spacing:4.920000px;}
.ls49{letter-spacing:4.980000px;}
.ls5f{letter-spacing:5.040000px;}
.ls73{letter-spacing:5.220000px;}
.ls28{letter-spacing:5.280000px;}
.ls56{letter-spacing:5.340000px;}
.ls4a{letter-spacing:5.400000px;}
.ls3d{letter-spacing:5.460000px;}
.ls74{letter-spacing:5.520000px;}
.ls57{letter-spacing:5.580000px;}
.ls6a{letter-spacing:5.640000px;}
.ls97{letter-spacing:5.664000px;}
.ls42{letter-spacing:5.700000px;}
.ls75{letter-spacing:5.760000px;}
.ls61{letter-spacing:5.940000px;}
.ls5e{letter-spacing:6.120000px;}
.ls38{letter-spacing:6.180000px;}
.ls68{letter-spacing:7.740000px;}
.ls67{letter-spacing:8.220000px;}
.ls5c{letter-spacing:8.520000px;}
.ls69{letter-spacing:9.600000px;}
.ls43{letter-spacing:10.260000px;}
.ls0{letter-spacing:59.533476px;}
.ls65{letter-spacing:146.064000px;}
.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;}
}
.ws8e{word-spacing:-158.064000px;}
.ws0{word-spacing:-35.194800px;}
.wsb7{word-spacing:-22.440000px;}
.ws2e{word-spacing:-20.280000px;}
.ws48{word-spacing:-18.660000px;}
.ws9a{word-spacing:-18.600000px;}
.ws96{word-spacing:-18.240000px;}
.wsb4{word-spacing:-18.180000px;}
.wsb8{word-spacing:-18.120000px;}
.ws7b{word-spacing:-18.000000px;}
.ws44{word-spacing:-17.820000px;}
.ws8a{word-spacing:-17.520000px;}
.wsc{word-spacing:-17.460000px;}
.wsad{word-spacing:-17.400000px;}
.wsab{word-spacing:-17.040000px;}
.ws2a{word-spacing:-16.980000px;}
.ws2b{word-spacing:-16.860000px;}
.ws45{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.ws4{word-spacing:-16.560000px;}
.ws42{word-spacing:-16.500000px;}
.wse{word-spacing:-16.320000px;}
.ws28{word-spacing:-16.260000px;}
.ws47{word-spacing:-16.200000px;}
.ws7e{word-spacing:-16.080000px;}
.ws7d{word-spacing:-15.900000px;}
.ws7c{word-spacing:-15.840000px;}
.ws2d{word-spacing:-15.780000px;}
.ws8b{word-spacing:-15.720000px;}
.wsac{word-spacing:-15.660000px;}
.ws29{word-spacing:-15.600000px;}
.ws97{word-spacing:-15.540000px;}
.ws99{word-spacing:-15.420000px;}
.ws69{word-spacing:-15.360000px;}
.wsd{word-spacing:-15.300000px;}
.ws49{word-spacing:-15.240000px;}
.ws46{word-spacing:-15.180000px;}
.wsb5{word-spacing:-15.120000px;}
.ws55{word-spacing:-15.060000px;}
.wsb{word-spacing:-15.000000px;}
.wsae{word-spacing:-14.940000px;}
.ws8c{word-spacing:-14.880000px;}
.ws98{word-spacing:-14.760000px;}
.ws43{word-spacing:-14.340000px;}
.wse5{word-spacing:-13.680000px;}
.ws2c{word-spacing:-13.500000px;}
.wsc7{word-spacing:-13.488000px;}
.ws6{word-spacing:-13.344000px;}
.wsc6{word-spacing:-12.672000px;}
.wsc3{word-spacing:-12.528000px;}
.ws5{word-spacing:-12.510000px;}
.wsc8{word-spacing:-12.480000px;}
.wsc2{word-spacing:-12.384000px;}
.ws7f{word-spacing:-12.240000px;}
.wsc4{word-spacing:-12.192000px;}
.wsc9{word-spacing:-12.048000px;}
.ws52{word-spacing:-12.000000px;}
.wsca{word-spacing:-11.856000px;}
.wsc5{word-spacing:-11.760000px;}
.wsa2{word-spacing:-11.280000px;}
.ws22{word-spacing:-10.500000px;}
.wsb6{word-spacing:-9.480000px;}
.wsa6{word-spacing:-9.024000px;}
.ws27{word-spacing:-8.745000px;}
.ws81{word-spacing:-8.520000px;}
.wsa3{word-spacing:-7.824000px;}
.ws3b{word-spacing:-5.700000px;}
.ws3d{word-spacing:-5.280000px;}
.wsba{word-spacing:-5.220000px;}
.ws9b{word-spacing:-5.040000px;}
.wsbf{word-spacing:-4.920000px;}
.ws4c{word-spacing:-4.380000px;}
.ws6d{word-spacing:-4.140000px;}
.ws4d{word-spacing:-4.080000px;}
.wsd3{word-spacing:-3.840000px;}
.wsb3{word-spacing:-3.420000px;}
.ws9c{word-spacing:-3.360000px;}
.ws9{word-spacing:-3.300000px;}
.wsb9{word-spacing:-3.240000px;}
.wsd1{word-spacing:-3.216000px;}
.ws82{word-spacing:-3.000000px;}
.ws8{word-spacing:-2.886000px;}
.ws4b{word-spacing:-2.820000px;}
.ws9e{word-spacing:-2.760000px;}
.ws93{word-spacing:-2.520000px;}
.wsa1{word-spacing:-2.448000px;}
.wsa0{word-spacing:-2.400000px;}
.ws9d{word-spacing:-2.340000px;}
.ws25{word-spacing:-2.310000px;}
.wsb1{word-spacing:-2.280000px;}
.ws1e{word-spacing:-2.220000px;}
.ws38{word-spacing:-2.160000px;}
.wsb0{word-spacing:-2.040000px;}
.wsbd{word-spacing:-1.980000px;}
.ws15{word-spacing:-1.860000px;}
.ws6a{word-spacing:-1.680000px;}
.ws4e{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.500000px;}
.wsbe{word-spacing:-1.380000px;}
.wse2{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.260000px;}
.wsa5{word-spacing:-1.152000px;}
.ws6b{word-spacing:-1.080000px;}
.ws9f{word-spacing:-1.020000px;}
.ws14{word-spacing:-0.960000px;}
.wse4{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.840000px;}
.ws80{word-spacing:-0.780000px;}
.wsd5{word-spacing:-0.672000px;}
.wsdd{word-spacing:-0.624000px;}
.wsbb{word-spacing:-0.600000px;}
.wscd{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.540000px;}
.wsd7{word-spacing:-0.528000px;}
.ws37{word-spacing:-0.480000px;}
.ws39{word-spacing:-0.420000px;}
.wse6{word-spacing:-0.384000px;}
.ws83{word-spacing:-0.300000px;}
.ws65{word-spacing:-0.288000px;}
.ws89{word-spacing:-0.240000px;}
.wscc{word-spacing:-0.192000px;}
.ws85{word-spacing:-0.180000px;}
.ws73{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.120000px;}
.ws6c{word-spacing:-0.096000px;}
.ws87{word-spacing:-0.060000px;}
.wsc1{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws61{word-spacing:0.048000px;}
.ws34{word-spacing:0.060000px;}
.wsd6{word-spacing:0.096000px;}
.wsa{word-spacing:0.120000px;}
.wse0{word-spacing:0.144000px;}
.ws88{word-spacing:0.180000px;}
.wse1{word-spacing:0.192000px;}
.ws68{word-spacing:0.240000px;}
.ws3e{word-spacing:0.300000px;}
.ws35{word-spacing:0.360000px;}
.wsea{word-spacing:0.384000px;}
.ws71{word-spacing:0.540000px;}
.wse7{word-spacing:0.624000px;}
.ws33{word-spacing:0.660000px;}
.ws70{word-spacing:0.720000px;}
.ws95{word-spacing:0.840000px;}
.wsd4{word-spacing:0.864000px;}
.ws6f{word-spacing:0.900000px;}
.wsd8{word-spacing:0.912000px;}
.ws2f{word-spacing:0.960000px;}
.ws5f{word-spacing:1.008000px;}
.wsd2{word-spacing:1.056000px;}
.ws86{word-spacing:1.080000px;}
.ws67{word-spacing:1.140000px;}
.ws79{word-spacing:1.200000px;}
.ws13{word-spacing:1.260000px;}
.wsdb{word-spacing:1.296000px;}
.wsa9{word-spacing:1.440000px;}
.wsa8{word-spacing:1.536000px;}
.ws4a{word-spacing:1.560000px;}
.wsde{word-spacing:1.584000px;}
.wsaa{word-spacing:1.620000px;}
.wsce{word-spacing:1.728000px;}
.ws19{word-spacing:1.740000px;}
.ws26{word-spacing:1.776000px;}
.ws1b{word-spacing:1.800000px;}
.wse9{word-spacing:1.824000px;}
.ws75{word-spacing:1.860000px;}
.wscf{word-spacing:1.872000px;}
.ws72{word-spacing:1.920000px;}
.ws36{word-spacing:1.980000px;}
.ws5a{word-spacing:2.040000px;}
.ws74{word-spacing:2.100000px;}
.ws64{word-spacing:2.112000px;}
.ws1a{word-spacing:2.280000px;}
.ws16{word-spacing:2.340000px;}
.wseb{word-spacing:2.352000px;}
.ws3a{word-spacing:2.400000px;}
.wsd9{word-spacing:2.448000px;}
.ws57{word-spacing:2.520000px;}
.wsbc{word-spacing:2.640000px;}
.ws63{word-spacing:2.688000px;}
.wsb2{word-spacing:2.760000px;}
.wsdf{word-spacing:2.784000px;}
.ws40{word-spacing:2.820000px;}
.wse8{word-spacing:2.832000px;}
.wsdc{word-spacing:2.880000px;}
.wscb{word-spacing:2.976000px;}
.wse3{word-spacing:3.072000px;}
.wsd0{word-spacing:3.168000px;}
.ws20{word-spacing:3.240000px;}
.ws30{word-spacing:3.300000px;}
.ws31{word-spacing:3.360000px;}
.wsa4{word-spacing:3.408000px;}
.ws78{word-spacing:3.420000px;}
.ws66{word-spacing:3.480000px;}
.ws51{word-spacing:3.504000px;}
.ws56{word-spacing:3.600000px;}
.wsda{word-spacing:3.648000px;}
.ws3c{word-spacing:3.660000px;}
.ws62{word-spacing:3.696000px;}
.ws3f{word-spacing:3.720000px;}
.wsa7{word-spacing:3.744000px;}
.ws12{word-spacing:3.780000px;}
.ws11{word-spacing:3.840000px;}
.ws50{word-spacing:3.900000px;}
.ws76{word-spacing:3.936000px;}
.ws1c{word-spacing:3.960000px;}
.ws53{word-spacing:3.984000px;}
.ws54{word-spacing:4.032000px;}
.ws17{word-spacing:4.080000px;}
.ws59{word-spacing:4.200000px;}
.ws7a{word-spacing:4.224000px;}
.ws41{word-spacing:4.260000px;}
.ws58{word-spacing:4.320000px;}
.ws5e{word-spacing:4.380000px;}
.ws77{word-spacing:4.416000px;}
.ws5c{word-spacing:4.440000px;}
.ws6e{word-spacing:4.500000px;}
.ws5b{word-spacing:4.560000px;}
.ws4f{word-spacing:4.620000px;}
.ws18{word-spacing:4.680000px;}
.ws5d{word-spacing:4.740000px;}
.wsaf{word-spacing:4.800000px;}
.ws1f{word-spacing:4.860000px;}
.ws10{word-spacing:4.920000px;}
.wsf{word-spacing:4.980000px;}
.wsc0{word-spacing:5.520000px;}
.ws94{word-spacing:5.700000px;}
.ws1{word-spacing:49.320999px;}
.ws2{word-spacing:49.321785px;}
.ws91{word-spacing:110.064000px;}
.ws92{word-spacing:115.392000px;}
.ws90{word-spacing:122.064000px;}
.ws8f{word-spacing:134.064000px;}
.ws21{word-spacing:155.946000px;}
.ws23{word-spacing:293.412000px;}
.ws8d{word-spacing:329.808000px;}
._b{margin-left:-2898.096000px;}
._2d{margin-left:-2874.288000px;}
._41{margin-left:-146.064000px;}
._42{margin-left:-23.088000px;}
._4e{margin-left:-16.704000px;}
._40{margin-left:-12.000000px;}
._2{margin-left:-9.495000px;}
._30{margin-left:-7.980000px;}
._a{margin-left:-6.825000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.245000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.035000px;}
._4{width:1.116000px;}
._6{width:2.220000px;}
._8{width:3.660000px;}
._9{width:5.520000px;}
._7{width:7.050000px;}
._2f{width:8.436000px;}
._2e{width:10.500000px;}
._31{width:13.671000px;}
._32{width:15.504000px;}
._25{width:32.676000px;}
._12{width:36.750000px;}
._4c{width:37.905000px;}
._4d{width:39.990000px;}
._3f{width:56.352000px;}
._16{width:60.102000px;}
._10{width:62.370000px;}
._18{width:64.722000px;}
._1f{width:70.560000px;}
._c{width:73.290000px;}
._1a{width:75.264000px;}
._11{width:78.750000px;}
._1e{width:81.060000px;}
._2a{width:82.740000px;}
._26{width:84.630000px;}
._13{width:87.444000px;}
._3a{width:89.196000px;}
._27{width:93.954000px;}
._23{width:97.986000px;}
._21{width:99.750000px;}
._28{width:100.884000px;}
._14{width:102.102000px;}
._3d{width:105.648000px;}
._22{width:116.088000px;}
._20{width:121.296000px;}
._48{width:122.832000px;}
._3c{width:129.648000px;}
._4b{width:133.776000px;}
._15{width:144.060000px;}
._29{width:145.824000px;}
._19{width:153.972000px;}
._d{width:161.616000px;}
._1b{width:169.134000px;}
._2b{width:178.500000px;}
._39{width:191.958000px;}
._1d{width:200.046000px;}
._24{width:209.370000px;}
._f{width:232.134000px;}
._3b{width:244.896000px;}
._38{width:248.880000px;}
._33{width:258.240000px;}
._1c{width:260.694000px;}
._34{width:279.600000px;}
._47{width:287.142000px;}
._e{width:289.926000px;}
._3e{width:295.584000px;}
._37{width:298.284000px;}
._17{width:301.560000px;}
._35{width:307.974000px;}
._36{width:310.284000px;}
._43{width:312.864000px;}
._2c{width:317.898000px;}
._44{width:319.248000px;}
._46{width:339.552000px;}
._49{width:360.816000px;}
._45{width:382.128000px;}
._4a{width:392.880000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs9{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;}
.y2c{bottom:47.777250px;}
.y2ae{bottom:80.263500px;}
.y1ac{bottom:82.980600px;}
.y22f{bottom:82.986300px;}
.y1a1{bottom:83.212350px;}
.y19e{bottom:83.625750px;}
.y192{bottom:83.637450px;}
.y198{bottom:83.673000px;}
.y61{bottom:83.770350px;}
.y23e{bottom:83.785350px;}
.y126{bottom:83.912100px;}
.y91{bottom:83.920350px;}
.y19a{bottom:84.062700px;}
.y19f{bottom:84.074400px;}
.y1a5{bottom:84.169050px;}
.y1a2{bottom:84.499650px;}
.y196{bottom:84.712200px;}
.y22d{bottom:85.980450px;}
.y29{bottom:88.340250px;}
.y156{bottom:88.853850px;}
.y26c{bottom:89.121900px;}
.y16f{bottom:91.112100px;}
.y195{bottom:91.822500px;}
.y1e4{bottom:92.273100px;}
.y22c{bottom:93.972600px;}
.y2ad{bottom:95.263500px;}
.y1ab{bottom:98.724600px;}
.y22e{bottom:98.736300px;}
.y1a0{bottom:98.956350px;}
.y19d{bottom:99.369750px;}
.y191{bottom:99.381450px;}
.y197{bottom:99.417000px;}
.y199{bottom:99.806700px;}
.y1a4{bottom:99.913050px;}
.y60{bottom:101.770350px;}
.y125{bottom:101.912100px;}
.y90{bottom:101.920350px;}
.y28{bottom:103.336500px;}
.y26b{bottom:104.121900px;}
.y155{bottom:106.853850px;}
.yf5{bottom:107.333550px;}
.y194{bottom:107.566500px;}
.y1e3{bottom:108.521100px;}
.y2ac{bottom:110.263500px;}
.y22b{bottom:111.972600px;}
.y1aa{bottom:114.468600px;}
.y19c{bottom:115.113750px;}
.y27{bottom:118.330050px;}
.y26a{bottom:119.121900px;}
.y23d{bottom:119.380350px;}
.y5f{bottom:119.770350px;}
.y124{bottom:119.912100px;}
.y8f{bottom:119.920350px;}
.yf4{bottom:123.833550px;}
.y1e2{bottom:124.769100px;}
.y154{bottom:124.853850px;}
.y2ab{bottom:125.263500px;}
.y16e{bottom:125.952600px;}
.y22a{bottom:129.972600px;}
.y269{bottom:134.121900px;}
.y5e{bottom:137.770350px;}
.y123{bottom:137.912100px;}
.y8e{bottom:137.920350px;}
.y2aa{bottom:140.263500px;}
.y1e1{bottom:141.017100px;}
.y16d{bottom:141.558600px;}
.y153{bottom:142.853850px;}
.y1a9{bottom:145.113900px;}
.y1fa{bottom:145.712100px;}
.y229{bottom:147.972600px;}
.yf3{bottom:148.999650px;}
.y268{bottom:149.121900px;}
.y2a9{bottom:155.263500px;}
.y23c{bottom:155.635350px;}
.y5d{bottom:155.770350px;}
.y122{bottom:155.912100px;}
.y8d{bottom:155.920350px;}
.y1e0{bottom:157.265100px;}
.y152{bottom:160.853850px;}
.y1a8{bottom:160.857900px;}
.y1a3{bottom:161.920800px;}
.y1f9{bottom:163.712100px;}
.yf2{bottom:164.004150px;}
.y267{bottom:164.121900px;}
.y228{bottom:165.972600px;}
.y1a7{bottom:166.555200px;}
.y2a8{bottom:170.263500px;}
.y1df{bottom:173.513100px;}
.y16c{bottom:173.515350px;}
.y23b{bottom:173.635350px;}
.y5c{bottom:173.770350px;}
.y121{bottom:173.912100px;}
.y8c{bottom:173.920350px;}
.yef{bottom:178.756650px;}
.y151{bottom:178.853850px;}
.y266{bottom:179.121900px;}
.y1f8{bottom:181.712100px;}
.y227{bottom:183.972600px;}
.y2a7{bottom:185.263500px;}
.y1de{bottom:189.761100px;}
.y23a{bottom:191.635350px;}
.y190{bottom:191.770350px;}
.y5b{bottom:191.772600px;}
.y120{bottom:191.912100px;}
.y8b{bottom:191.920350px;}
.yee{bottom:193.761150px;}
.y265{bottom:194.121900px;}
.y150{bottom:196.853850px;}
.y1f7{bottom:199.712100px;}
.y2a6{bottom:200.263500px;}
.y226{bottom:201.972600px;}
.y1dd{bottom:206.009100px;}
.yed{bottom:208.765650px;}
.y239{bottom:209.635350px;}
.y16b{bottom:209.770350px;}
.y5a{bottom:209.772600px;}
.y11f{bottom:209.912100px;}
.y8a{bottom:209.920350px;}
.y14f{bottom:214.853850px;}
.y2a5{bottom:215.263500px;}
.y1f6{bottom:217.712100px;}
.y225{bottom:219.972600px;}
.y1dc{bottom:222.257100px;}
.yf1{bottom:223.749150px;}
.yec{bottom:223.770150px;}
.y264{bottom:227.245350px;}
.y238{bottom:227.635350px;}
.y16a{bottom:227.770350px;}
.y59{bottom:227.772600px;}
.y11e{bottom:227.912100px;}
.y89{bottom:227.920350px;}
.y2a4{bottom:230.263500px;}
.y14e{bottom:232.853850px;}
.y1f5{bottom:235.712100px;}
.y224{bottom:237.972600px;}
.y1db{bottom:238.505100px;}
.yf0{bottom:238.753650px;}
.yeb{bottom:238.774650px;}
.y26{bottom:244.408500px;}
.y2a3{bottom:245.263500px;}
.y237{bottom:245.635350px;}
.y169{bottom:245.770350px;}
.y58{bottom:245.772600px;}
.y18f{bottom:245.777100px;}
.y11d{bottom:245.912100px;}
.y88{bottom:245.920350px;}
.y14d{bottom:250.853850px;}
.yea{bottom:253.527150px;}
.y1f4{bottom:253.712100px;}
.y1da{bottom:254.753100px;}
.y223{bottom:255.972600px;}
.y2a2{bottom:260.263500px;}
.y25{bottom:262.417950px;}
.y236{bottom:263.635350px;}
.y168{bottom:263.770350px;}
.y57{bottom:263.772600px;}
.y18e{bottom:263.777100px;}
.y11c{bottom:263.912100px;}
.y87{bottom:263.920350px;}
.ye9{bottom:268.531650px;}
.y14c{bottom:268.853850px;}
.y1f3{bottom:271.712100px;}
.y222{bottom:273.972600px;}
.y2a1{bottom:275.263500px;}
.y235{bottom:281.635350px;}
.y167{bottom:281.770350px;}
.y56{bottom:281.772600px;}
.y18d{bottom:281.777100px;}
.y263{bottom:281.785350px;}
.y11b{bottom:281.912100px;}
.y86{bottom:281.920350px;}
.ye7{bottom:283.284150px;}
.y1d9{bottom:286.265100px;}
.y14b{bottom:286.853850px;}
.y1f2{bottom:289.712100px;}
.y24{bottom:289.762950px;}
.y2a0{bottom:290.263500px;}
.ye6{bottom:298.288650px;}
.y234{bottom:299.635350px;}
.y166{bottom:299.770350px;}
.y55{bottom:299.772600px;}
.y18c{bottom:299.777100px;}
.y262{bottom:299.785350px;}
.y11a{bottom:299.912100px;}
.y85{bottom:299.920350px;}
.y14a{bottom:304.853850px;}
.y29f{bottom:305.263500px;}
.y1f1{bottom:307.712100px;}
.y23{bottom:307.762950px;}
.y221{bottom:309.567600px;}
.ye8{bottom:313.282650px;}
.ye5{bottom:313.293150px;}
.y261{bottom:317.380350px;}
.y233{bottom:317.635350px;}
.y165{bottom:317.770350px;}
.y54{bottom:317.772600px;}
.y18b{bottom:317.777100px;}
.y119{bottom:317.912100px;}
.y84{bottom:317.920350px;}
.y29e{bottom:320.263500px;}
.y1d8{bottom:321.160200px;}
.y149{bottom:322.853850px;}
.y1f0{bottom:325.712100px;}
.y22{bottom:325.762950px;}
.ye4{bottom:328.045650px;}
.y29d{bottom:335.263500px;}
.y232{bottom:335.635350px;}
.y164{bottom:335.770350px;}
.y53{bottom:335.772600px;}
.y18a{bottom:335.777100px;}
.y118{bottom:335.912100px;}
.y83{bottom:335.920350px;}
.y1d7{bottom:340.660200px;}
.y148{bottom:340.853850px;}
.ye3{bottom:343.050150px;}
.y1ef{bottom:343.712100px;}
.y21{bottom:343.762950px;}
.y29c{bottom:350.263500px;}
.y163{bottom:353.770350px;}
.y52{bottom:353.772600px;}
.y189{bottom:353.777100px;}
.y260{bottom:353.785350px;}
.y117{bottom:353.912100px;}
.y82{bottom:353.920350px;}
.ye2{bottom:357.802650px;}
.y147{bottom:358.853850px;}
.y1ee{bottom:361.712100px;}
.y20{bottom:361.762950px;}
.y220{bottom:363.605250px;}
.y29b{bottom:365.263500px;}
.y231{bottom:371.230350px;}
.y25f{bottom:371.380350px;}
.y162{bottom:371.770350px;}
.y51{bottom:371.772600px;}
.y188{bottom:371.777100px;}
.y116{bottom:371.912100px;}
.y81{bottom:371.920350px;}
.ye0{bottom:372.555150px;}
.ydc{bottom:372.565650px;}
.y146{bottom:376.853850px;}
.y21f{bottom:378.605250px;}
.y1ed{bottom:379.712100px;}
.y1f{bottom:379.762950px;}
.y29a{bottom:380.263500px;}
.ydf{bottom:387.559650px;}
.ydb{bottom:387.570150px;}
.y161{bottom:389.770350px;}
.y50{bottom:389.772600px;}
.y187{bottom:389.777100px;}
.y115{bottom:389.912100px;}
.y80{bottom:389.920350px;}
.y1d6{bottom:390.288600px;}
.y21e{bottom:393.605250px;}
.y145{bottom:394.853850px;}
.y299{bottom:395.263500px;}
.y1ec{bottom:397.712100px;}
.y1e{bottom:397.762950px;}
.yde{bottom:402.564150px;}
.yda{bottom:402.574650px;}
.y160{bottom:407.770350px;}
.y4f{bottom:407.772600px;}
.y186{bottom:407.777100px;}
.y25e{bottom:407.785350px;}
.y114{bottom:407.912100px;}
.y7f{bottom:407.920350px;}
.y21d{bottom:408.605250px;}
.y298{bottom:410.263500px;}
.y144{bottom:412.853850px;}
.y1eb{bottom:415.712100px;}
.y1d{bottom:415.762950px;}
.y1d5{bottom:415.800600px;}
.ye1{bottom:417.558150px;}
.ydd{bottom:417.568650px;}
.yd9{bottom:417.579150px;}
.y21c{bottom:423.605250px;}
.y297{bottom:425.263500px;}
.y15f{bottom:425.770350px;}
.y4e{bottom:425.772600px;}
.y185{bottom:425.777100px;}
.y25d{bottom:425.785350px;}
.y113{bottom:425.912100px;}
.y143{bottom:430.853850px;}
.y1d4{bottom:432.300600px;}
.yd6{bottom:432.331650px;}
.y1ea{bottom:433.712100px;}
.y1c{bottom:433.762950px;}
.y21b{bottom:438.605250px;}
.y296{bottom:440.263500px;}
.y7e{bottom:443.515350px;}
.y15e{bottom:443.770350px;}
.y4d{bottom:443.772600px;}
.y184{bottom:443.777100px;}
.y25c{bottom:443.785350px;}
.y112{bottom:443.912100px;}
.yd5{bottom:447.336150px;}
.y1d3{bottom:448.548600px;}
.y142{bottom:448.853850px;}
.y1b{bottom:451.762950px;}
.y21a{bottom:453.605250px;}
.y295{bottom:455.263500px;}
.y15d{bottom:461.770350px;}
.y4c{bottom:461.772600px;}
.y183{bottom:461.777100px;}
.y25b{bottom:461.785350px;}
.y111{bottom:461.912100px;}
.yd8{bottom:462.330150px;}
.yd4{bottom:462.340650px;}
.y1d2{bottom:465.048600px;}
.y141{bottom:466.853850px;}
.y219{bottom:468.605250px;}
.y1e9{bottom:469.205250px;}
.y1a{bottom:469.762950px;}
.y294{bottom:470.263500px;}
.yd7{bottom:477.334650px;}
.yd3{bottom:477.345150px;}
.y7d{bottom:479.770350px;}
.y4b{bottom:479.772600px;}
.y182{bottom:479.777100px;}
.y25a{bottom:479.785350px;}
.y110{bottom:479.912100px;}
.y1d1{bottom:481.296600px;}
.y218{bottom:483.605250px;}
.y140{bottom:484.853850px;}
.y293{bottom:485.263500px;}
.y19{bottom:487.762950px;}
.yd0{bottom:491.912850px;}
.yd2{bottom:492.097650px;}
.y259{bottom:497.380350px;}
.y1d0{bottom:497.544600px;}
.y7c{bottom:497.770350px;}
.y4a{bottom:497.772600px;}
.y181{bottom:497.777100px;}
.y10f{bottom:497.912100px;}
.y217{bottom:498.605250px;}
.y292{bottom:500.263500px;}
.y1e8{bottom:501.552750px;}
.y13f{bottom:502.853850px;}
.y18{bottom:505.762950px;}
.ycf{bottom:506.917350px;}
.yd1{bottom:507.102150px;}
.y216{bottom:513.605250px;}
.y1cf{bottom:514.044600px;}
.y291{bottom:515.263500px;}
.y7b{bottom:515.770350px;}
.y49{bottom:515.772600px;}
.y180{bottom:515.777100px;}
.y10e{bottom:515.912100px;}
.y1e7{bottom:517.158750px;}
.y13e{bottom:520.853850px;}
.ycc{bottom:521.680350px;}
.y17{bottom:523.762950px;}
.y215{bottom:528.605250px;}
.y290{bottom:530.263500px;}
.y1ce{bottom:530.292600px;}
.y1e6{bottom:533.515350px;}
.y7a{bottom:533.770350px;}
.y48{bottom:533.772600px;}
.y17f{bottom:533.777100px;}
.y258{bottom:533.785350px;}
.y10d{bottom:533.912100px;}
.yce{bottom:536.674350px;}
.ycb{bottom:536.684850px;}
.y13d{bottom:538.853850px;}
.y16{bottom:541.762950px;}
.y214{bottom:543.605250px;}
.y28f{bottom:545.263500px;}
.y1cd{bottom:546.540600px;}
.ycd{bottom:551.678850px;}
.yca{bottom:551.689350px;}
.y79{bottom:551.770350px;}
.y47{bottom:551.772600px;}
.y17e{bottom:551.777100px;}
.y257{bottom:551.785350px;}
.y10c{bottom:551.912100px;}
.y13c{bottom:556.853850px;}
.y213{bottom:558.605250px;}
.y15{bottom:559.762950px;}
.y28e{bottom:560.263500px;}
.y1cc{bottom:562.788600px;}
.yc7{bottom:566.441850px;}
.y256{bottom:569.380350px;}
.y78{bottom:569.770350px;}
.y46{bottom:569.772600px;}
.y17d{bottom:569.777100px;}
.y10b{bottom:569.912100px;}
.y212{bottom:573.605250px;}
.y28d{bottom:575.263500px;}
.y14{bottom:577.762950px;}
.y1cb{bottom:579.288600px;}
.yc6{bottom:581.446350px;}
.y77{bottom:587.770350px;}
.y45{bottom:587.772600px;}
.y17c{bottom:587.777100px;}
.y10a{bottom:587.912100px;}
.y211{bottom:588.605250px;}
.y28c{bottom:590.263500px;}
.y13b{bottom:591.694350px;}
.yc5{bottom:596.450850px;}
.y28b{bottom:605.263500px;}
.y15c{bottom:605.770350px;}
.y44{bottom:605.772600px;}
.y17b{bottom:605.777100px;}
.y255{bottom:605.785350px;}
.y109{bottom:605.912100px;}
.y13a{bottom:607.300350px;}
.y1ca{bottom:608.292600px;}
.yc9{bottom:611.434350px;}
.yc4{bottom:611.455350px;}
.y28a{bottom:620.263500px;}
.y210{bottom:621.715350px;}
.y13{bottom:622.917300px;}
.y76{bottom:623.365350px;}
.y139{bottom:623.642100px;}
.y15b{bottom:623.770350px;}
.y43{bottom:623.772600px;}
.y17a{bottom:623.777100px;}
.y254{bottom:623.785350px;}
.y108{bottom:623.912100px;}
.y1c9{bottom:624.792600px;}
.yc8{bottom:626.438850px;}
.yc3{bottom:626.459850px;}
.y289{bottom:635.263500px;}
.y12{bottom:635.368050px;}
.yc2{bottom:641.212350px;}
.y15a{bottom:641.770350px;}
.y42{bottom:641.772600px;}
.y179{bottom:641.777100px;}
.y253{bottom:641.785350px;}
.y107{bottom:641.912100px;}
.y288{bottom:650.263500px;}
.y11{bottom:651.771000px;}
.yc1{bottom:656.216850px;}
.y1c8{bottom:657.190350px;}
.y20f{bottom:657.970350px;}
.y75{bottom:659.230350px;}
.y138{bottom:659.507100px;}
.y159{bottom:659.770350px;}
.y41{bottom:659.772600px;}
.y178{bottom:659.777100px;}
.y252{bottom:659.785350px;}
.y106{bottom:659.912100px;}
.y287{bottom:665.263500px;}
.yc0{bottom:670.969350px;}
.y20e{bottom:675.970350px;}
.y1c7{bottom:676.690350px;}
.y137{bottom:677.507100px;}
.y158{bottom:677.770350px;}
.y40{bottom:677.772600px;}
.y177{bottom:677.777100px;}
.y251{bottom:677.785350px;}
.y105{bottom:677.912100px;}
.y286{bottom:680.263500px;}
.y10{bottom:684.208950px;}
.ybf{bottom:685.973850px;}
.yf{bottom:692.283600px;}
.y20d{bottom:693.970350px;}
.y285{bottom:695.263500px;}
.y136{bottom:695.507100px;}
.y157{bottom:695.770350px;}
.y3f{bottom:695.772600px;}
.y176{bottom:695.777100px;}
.y250{bottom:695.785350px;}
.y104{bottom:695.912100px;}
.y1c6{bottom:696.190350px;}
.ybe{bottom:700.726350px;}
.yba{bottom:700.736850px;}
.yb6{bottom:700.747350px;}
.yb2{bottom:700.757850px;}
.y284{bottom:710.263500px;}
.ye{bottom:711.208950px;}
.y20c{bottom:711.970350px;}
.y24f{bottom:713.380350px;}
.y74{bottom:713.770350px;}
.y3e{bottom:713.772600px;}
.y175{bottom:713.777100px;}
.y103{bottom:713.912100px;}
.y1c5{bottom:715.690350px;}
.ybd{bottom:715.730850px;}
.yb9{bottom:715.741350px;}
.yb5{bottom:715.751850px;}
.yb1{bottom:715.762350px;}
.yae{bottom:715.772850px;}
.yab{bottom:715.783350px;}
.yd{bottom:724.708950px;}
.y283{bottom:725.263500px;}
.y20b{bottom:729.970350px;}
.ybc{bottom:730.735350px;}
.yb8{bottom:730.745850px;}
.yb4{bottom:730.756350px;}
.yb0{bottom:730.766850px;}
.yad{bottom:730.777350px;}
.yaa{bottom:730.787850px;}
.y135{bottom:731.372100px;}
.y73{bottom:731.770350px;}
.y3d{bottom:731.772600px;}
.y174{bottom:731.777100px;}
.y102{bottom:731.912100px;}
.yc{bottom:732.783600px;}
.y282{bottom:740.263500px;}
.ybb{bottom:745.739850px;}
.yb7{bottom:745.750350px;}
.yb3{bottom:745.760850px;}
.yaf{bottom:745.771350px;}
.yac{bottom:745.781850px;}
.ya9{bottom:745.792350px;}
.yb{bottom:746.283600px;}
.y20a{bottom:747.970350px;}
.y72{bottom:749.770350px;}
.y3c{bottom:749.772600px;}
.y173{bottom:749.777100px;}
.y24e{bottom:749.785350px;}
.y101{bottom:749.912100px;}
.y281{bottom:755.263500px;}
.ya8{bottom:760.544850px;}
.ya{bottom:765.208950px;}
.y1b5{bottom:765.605250px;}
.y209{bottom:765.970350px;}
.y134{bottom:767.237100px;}
.y71{bottom:767.770350px;}
.y3b{bottom:767.772600px;}
.y172{bottom:767.777100px;}
.y24d{bottom:767.785350px;}
.y100{bottom:767.912100px;}
.y280{bottom:770.263500px;}
.ya5{bottom:775.307850px;}
.y1c4{bottom:776.770350px;}
.y1b4{bottom:780.605250px;}
.y208{bottom:783.970350px;}
.y27f{bottom:785.263500px;}
.y70{bottom:785.770350px;}
.y3a{bottom:785.772600px;}
.y171{bottom:785.777100px;}
.y24c{bottom:785.785350px;}
.yff{bottom:785.912100px;}
.ya4{bottom:790.312350px;}
.y9{bottom:793.936050px;}
.y1c3{bottom:794.770350px;}
.y1b3{bottom:795.605250px;}
.y27e{bottom:800.263500px;}
.y207{bottom:801.970350px;}
.y6f{bottom:803.770350px;}
.y39{bottom:803.772600px;}
.y170{bottom:803.777100px;}
.y24b{bottom:803.785350px;}
.yfe{bottom:803.912100px;}
.ya3{bottom:805.316850px;}
.y1c2{bottom:812.770350px;}
.y8{bottom:814.930800px;}
.y27d{bottom:815.263500px;}
.y206{bottom:819.970350px;}
.ya2{bottom:820.321350px;}
.y6e{bottom:821.770350px;}
.y38{bottom:821.772600px;}
.y133{bottom:821.777100px;}
.y24a{bottom:821.785350px;}
.yfd{bottom:821.912100px;}
.y1b2{bottom:827.952600px;}
.y27c{bottom:830.263500px;}
.y1c1{bottom:830.770350px;}
.ya1{bottom:835.325850px;}
.y205{bottom:837.970350px;}
.y6d{bottom:839.770350px;}
.y37{bottom:839.772600px;}
.y132{bottom:839.777100px;}
.y249{bottom:839.785350px;}
.yfc{bottom:839.912100px;}
.y1b1{bottom:843.558600px;}
.y27b{bottom:845.263500px;}
.y1c0{bottom:848.770350px;}
.ya7{bottom:850.298850px;}
.ya0{bottom:850.330350px;}
.y204{bottom:855.970350px;}
.y6c{bottom:857.770350px;}
.y36{bottom:857.772600px;}
.y131{bottom:857.777100px;}
.y248{bottom:857.785350px;}
.yfb{bottom:857.912100px;}
.y1b0{bottom:857.920350px;}
.y27a{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.ya6{bottom:865.303350px;}
.y9f{bottom:865.334850px;}
.y1bf{bottom:866.770350px;}
.y203{bottom:873.970350px;}
.y279{bottom:875.263500px;}
.y1af{bottom:875.515350px;}
.y6b{bottom:875.770350px;}
.y35{bottom:875.772600px;}
.y130{bottom:875.777100px;}
.y247{bottom:875.785350px;}
.yfa{bottom:875.920350px;}
.y9c{bottom:880.097850px;}
.y1be{bottom:884.770350px;}
.y278{bottom:890.263500px;}
.y1ae{bottom:893.515350px;}
.y6a{bottom:893.770350px;}
.y34{bottom:893.772600px;}
.y12f{bottom:893.777100px;}
.y246{bottom:893.785350px;}
.yf9{bottom:893.920350px;}
.y9e{bottom:895.091850px;}
.y9b{bottom:895.102350px;}
.y6{bottom:897.543600px;}
.y1bd{bottom:902.770350px;}
.y277{bottom:905.263500px;}
.y202{bottom:909.463500px;}
.y9d{bottom:910.096350px;}
.y9a{bottom:910.106850px;}
.y69{bottom:911.770350px;}
.y33{bottom:911.772600px;}
.y12e{bottom:911.777100px;}
.y245{bottom:911.785350px;}
.yf8{bottom:911.920350px;}
.y276{bottom:920.263500px;}
.y1bc{bottom:920.770350px;}
.y201{bottom:924.463500px;}
.y68{bottom:929.770350px;}
.y32{bottom:929.772600px;}
.y12d{bottom:929.777100px;}
.y244{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y275{bottom:935.263500px;}
.y97{bottom:937.616850px;}
.y1bb{bottom:938.770350px;}
.y200{bottom:939.463500px;}
.y243{bottom:947.380350px;}
.yf7{bottom:947.515350px;}
.y67{bottom:947.770350px;}
.y31{bottom:947.772600px;}
.y12c{bottom:947.777100px;}
.y274{bottom:950.263500px;}
.y99{bottom:952.610850px;}
.y96{bottom:952.621350px;}
.y1ba{bottom:956.770350px;}
.y273{bottom:965.263500px;}
.y66{bottom:965.770350px;}
.y30{bottom:965.772600px;}
.y12b{bottom:965.777100px;}
.y98{bottom:967.615350px;}
.y95{bottom:967.625850px;}
.y4{bottom:970.465200px;}
.y1ff{bottom:970.570350px;}
.y1b9{bottom:974.770350px;}
.y272{bottom:980.263500px;}
.y65{bottom:983.770350px;}
.y2f{bottom:983.772600px;}
.y12a{bottom:983.777100px;}
.y242{bottom:983.785350px;}
.y1fe{bottom:987.411000px;}
.y271{bottom:995.263500px;}
.y94{bottom:998.770350px;}
.y64{bottom:1001.770350px;}
.y2e{bottom:1001.772600px;}
.y129{bottom:1001.777100px;}
.y241{bottom:1001.785350px;}
.y1fd{bottom:1003.017000px;}
.y3{bottom:1006.926000px;}
.y1b8{bottom:1010.261250px;}
.y270{bottom:1010.263500px;}
.y93{bottom:1018.270350px;}
.y1fc{bottom:1019.372100px;}
.y63{bottom:1019.770350px;}
.y128{bottom:1019.777100px;}
.y240{bottom:1019.785350px;}
.y1b7{bottom:1025.261250px;}
.y26f{bottom:1025.263500px;}
.y2d{bottom:1037.367600px;}
.y1fb{bottom:1037.372100px;}
.y62{bottom:1037.770350px;}
.y127{bottom:1037.777100px;}
.y23f{bottom:1037.785350px;}
.y1b6{bottom:1040.261250px;}
.y26e{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y26d{bottom:1132.413900px;}
.y92{bottom:1132.418700px;}
.yf6{bottom:1132.421550px;}
.y193{bottom:1132.421700px;}
.y230{bottom:1132.422300px;}
.y2af{bottom:1132.423500px;}
.y1ad{bottom:1132.428600px;}
.y1a6{bottom:1132.429050px;}
.y19b{bottom:1132.430700px;}
.y1e5{bottom:1132.457100px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h9{height:16.564260px;}
.h7{height:19.125417px;}
.ha{height:28.412109px;}
.h16{height:29.162109px;}
.h15{height:29.182617px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h8{height:32.805176px;}
.he{height:32.815976px;}
.h1a{height:33.328125px;}
.h17{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h19{height:37.520508px;}
.h14{height:41.660156px;}
.h13{height:41.689453px;}
.h12{height:43.681641px;}
.hd{height:43.702434px;}
.hc{height:43.710938px;}
.hb{height:43.740234px;}
.h18{height:52.534951px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:70.582650px;}
.x8{left:76.535400px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.xf{left:99.921300px;}
.x52{left:102.047250px;}
.x4{left:106.299150px;}
.x1a{left:108.436800px;}
.x9{left:110.558550px;}
.x31{left:111.890550px;}
.x3a{left:116.382900px;}
.x37{left:119.275350px;}
.x3b{left:123.307200px;}
.x3{left:125.427900px;}
.x2e{left:131.815350px;}
.x2f{left:171.085350px;}
.x1b{left:180.718800px;}
.x49{left:187.794750px;}
.x1c{left:189.223800px;}
.x5{left:191.332050px;}
.x46{left:210.514800px;}
.x41{left:218.986800px;}
.x32{left:222.563550px;}
.x38{left:227.755350px;}
.x30{left:230.125350px;}
.x39{left:240.535350px;}
.x1d{left:287.020800px;}
.x1e{left:295.525800px;}
.x10{left:302.014800px;}
.x11{left:310.540800px;}
.x42{left:363.550800px;}
.x47{left:366.921300px;}
.x43{left:372.058800px;}
.x3c{left:391.761300px;}
.x1f{left:393.322800px;}
.x12{left:400.882800px;}
.x26{left:401.890800px;}
.x13{left:414.595800px;}
.x7{left:455.041500px;}
.xa{left:457.085400px;}
.x4a{left:469.396200px;}
.x4c{left:471.185250px;}
.x2d{left:474.556950px;}
.x33{left:478.341000px;}
.x50{left:480.047250px;}
.x4f{left:482.598600px;}
.x2b{left:484.406850px;}
.xc{left:491.120400px;}
.x2a{left:498.176850px;}
.x23{left:499.656300px;}
.x14{left:503.971800px;}
.x24{left:508.161300px;}
.x34{left:512.361000px;}
.x3d{left:516.945300px;}
.x15{left:520.887300px;}
.xb{left:525.290400px;}
.x2c{left:526.661850px;}
.x3e{left:560.325300px;}
.x4b{left:565.786200px;}
.x4d{left:579.590250px;}
.x29{left:583.481850px;}
.x28{left:591.671850px;}
.x51{left:596.110350px;}
.x4e{left:599.852400px;}
.x25{left:605.958300px;}
.x16{left:608.530800px;}
.x20{left:614.431800px;}
.x17{left:627.042300px;}
.xe{left:663.492300px;}
.x44{left:669.694800px;}
.x40{left:675.910800px;}
.x45{left:678.202800px;}
.x3f{left:679.845300px;}
.x2{left:693.365400px;}
.x21{left:712.228800px;}
.x22{left:720.733800px;}
.x18{left:722.256300px;}
.xd{left:728.391600px;}
.x19{left:738.741300px;}
.x48{left:742.773300px;}
.x36{left:743.863500px;}
.x27{left:749.659200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.ls7b{letter-spacing:-4.906667pt;}
.ls66{letter-spacing:-1.578667pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls98{letter-spacing:-0.554667pt;}
.ls6f{letter-spacing:-0.533333pt;}
.ls53{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.224000pt;}
.ls70{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.160000pt;}
.ls35{letter-spacing:-0.149333pt;}
.ls55{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls54{letter-spacing:-0.085333pt;}
.ls47{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003403pt;}
.ls1{letter-spacing:0.003680pt;}
.ls50{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls89{letter-spacing:0.085333pt;}
.ls15{letter-spacing:0.106667pt;}
.ls78{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls6b{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.213333pt;}
.ls5b{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls8a{letter-spacing:0.298667pt;}
.ls27{letter-spacing:0.320000pt;}
.ls6d{letter-spacing:0.341333pt;}
.ls3b{letter-spacing:0.373333pt;}
.ls58{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls81{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.480000pt;}
.ls7d{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls90{letter-spacing:0.554667pt;}
.ls11{letter-spacing:0.586667pt;}
.ls8b{letter-spacing:0.597333pt;}
.lsc{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.682667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls7c{letter-spacing:0.810667pt;}
.ls21{letter-spacing:0.853333pt;}
.ls8e{letter-spacing:0.896000pt;}
.ls45{letter-spacing:0.906667pt;}
.ls46{letter-spacing:0.960000pt;}
.ls83{letter-spacing:0.981333pt;}
.ls51{letter-spacing:1.013333pt;}
.ls26{letter-spacing:1.066667pt;}
.ls8d{letter-spacing:1.109333pt;}
.ls25{letter-spacing:1.120000pt;}
.ls91{letter-spacing:1.152000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls82{letter-spacing:1.194667pt;}
.ls1b{letter-spacing:1.226667pt;}
.ls94{letter-spacing:1.237333pt;}
.lse{letter-spacing:1.280000pt;}
.ls62{letter-spacing:1.322667pt;}
.ls32{letter-spacing:1.333333pt;}
.ls8f{letter-spacing:1.365333pt;}
.ls41{letter-spacing:1.386667pt;}
.ls88{letter-spacing:1.408000pt;}
.ls18{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.493333pt;}
.lsd{letter-spacing:1.546667pt;}
.ls33{letter-spacing:1.578667pt;}
.ls3e{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.ls13{letter-spacing:1.653333pt;}
.ls7e{letter-spacing:1.664000pt;}
.ls14{letter-spacing:1.706667pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls8{letter-spacing:1.866667pt;}
.ls19{letter-spacing:1.920000pt;}
.ls85{letter-spacing:1.962667pt;}
.ls2b{letter-spacing:1.973333pt;}
.ls63{letter-spacing:2.005333pt;}
.ls9{letter-spacing:2.026667pt;}
.ls5d{letter-spacing:2.080000pt;}
.ls92{letter-spacing:2.090667pt;}
.ls17{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls7a{letter-spacing:2.218667pt;}
.ls3c{letter-spacing:2.240000pt;}
.ls52{letter-spacing:2.293333pt;}
.ls4f{letter-spacing:2.346667pt;}
.ls44{letter-spacing:2.400000pt;}
.ls95{letter-spacing:2.432000pt;}
.ls2e{letter-spacing:2.453333pt;}
.ls2f{letter-spacing:2.506667pt;}
.ls96{letter-spacing:2.517333pt;}
.ls2c{letter-spacing:2.560000pt;}
.ls7f{letter-spacing:2.602667pt;}
.ls16{letter-spacing:2.613333pt;}
.ls6c{letter-spacing:2.645333pt;}
.ls40{letter-spacing:2.666667pt;}
.ls4d{letter-spacing:2.773333pt;}
.ls30{letter-spacing:2.826667pt;}
.ls84{letter-spacing:2.858667pt;}
.ls6{letter-spacing:2.880000pt;}
.ls7{letter-spacing:2.986667pt;}
.ls71{letter-spacing:3.040000pt;}
.ls4b{letter-spacing:3.093333pt;}
.ls39{letter-spacing:3.146667pt;}
.ls48{letter-spacing:3.200000pt;}
.ls4e{letter-spacing:3.253333pt;}
.ls8c{letter-spacing:3.285333pt;}
.ls6e{letter-spacing:3.306667pt;}
.ls29{letter-spacing:3.360000pt;}
.ls87{letter-spacing:3.413333pt;}
.ls3f{letter-spacing:3.466667pt;}
.ls86{letter-spacing:3.584000pt;}
.ls4c{letter-spacing:3.626667pt;}
.ls79{letter-spacing:3.669333pt;}
.ls37{letter-spacing:3.680000pt;}
.ls93{letter-spacing:3.712000pt;}
.lsa{letter-spacing:3.733333pt;}
.ls80{letter-spacing:3.840000pt;}
.ls22{letter-spacing:3.893333pt;}
.ls36{letter-spacing:3.946667pt;}
.ls5a{letter-spacing:4.106667pt;}
.ls72{letter-spacing:4.320000pt;}
.ls64{letter-spacing:4.373333pt;}
.ls49{letter-spacing:4.426667pt;}
.ls5f{letter-spacing:4.480000pt;}
.ls73{letter-spacing:4.640000pt;}
.ls28{letter-spacing:4.693333pt;}
.ls56{letter-spacing:4.746667pt;}
.ls4a{letter-spacing:4.800000pt;}
.ls3d{letter-spacing:4.853333pt;}
.ls74{letter-spacing:4.906667pt;}
.ls57{letter-spacing:4.960000pt;}
.ls6a{letter-spacing:5.013333pt;}
.ls97{letter-spacing:5.034667pt;}
.ls42{letter-spacing:5.066667pt;}
.ls75{letter-spacing:5.120000pt;}
.ls61{letter-spacing:5.280000pt;}
.ls5e{letter-spacing:5.440000pt;}
.ls38{letter-spacing:5.493333pt;}
.ls68{letter-spacing:6.880000pt;}
.ls67{letter-spacing:7.306667pt;}
.ls5c{letter-spacing:7.573333pt;}
.ls69{letter-spacing:8.533333pt;}
.ls43{letter-spacing:9.120000pt;}
.ls0{letter-spacing:52.918645pt;}
.ls65{letter-spacing:129.834667pt;}
.ws8e{word-spacing:-140.501333pt;}
.ws0{word-spacing:-31.284267pt;}
.wsb7{word-spacing:-19.946667pt;}
.ws2e{word-spacing:-18.026667pt;}
.ws48{word-spacing:-16.586667pt;}
.ws9a{word-spacing:-16.533333pt;}
.ws96{word-spacing:-16.213333pt;}
.wsb4{word-spacing:-16.160000pt;}
.wsb8{word-spacing:-16.106667pt;}
.ws7b{word-spacing:-16.000000pt;}
.ws44{word-spacing:-15.840000pt;}
.ws8a{word-spacing:-15.573333pt;}
.wsc{word-spacing:-15.520000pt;}
.wsad{word-spacing:-15.466667pt;}
.wsab{word-spacing:-15.146667pt;}
.ws2a{word-spacing:-15.093333pt;}
.ws2b{word-spacing:-14.986667pt;}
.ws45{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws4{word-spacing:-14.720000pt;}
.ws42{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.506667pt;}
.ws28{word-spacing:-14.453333pt;}
.ws47{word-spacing:-14.400000pt;}
.ws7e{word-spacing:-14.293333pt;}
.ws7d{word-spacing:-14.133333pt;}
.ws7c{word-spacing:-14.080000pt;}
.ws2d{word-spacing:-14.026667pt;}
.ws8b{word-spacing:-13.973333pt;}
.wsac{word-spacing:-13.920000pt;}
.ws29{word-spacing:-13.866667pt;}
.ws97{word-spacing:-13.813333pt;}
.ws99{word-spacing:-13.706667pt;}
.ws69{word-spacing:-13.653333pt;}
.wsd{word-spacing:-13.600000pt;}
.ws49{word-spacing:-13.546667pt;}
.ws46{word-spacing:-13.493333pt;}
.wsb5{word-spacing:-13.440000pt;}
.ws55{word-spacing:-13.386667pt;}
.wsb{word-spacing:-13.333333pt;}
.wsae{word-spacing:-13.280000pt;}
.ws8c{word-spacing:-13.226667pt;}
.ws98{word-spacing:-13.120000pt;}
.ws43{word-spacing:-12.746667pt;}
.wse5{word-spacing:-12.160000pt;}
.ws2c{word-spacing:-12.000000pt;}
.wsc7{word-spacing:-11.989333pt;}
.ws6{word-spacing:-11.861333pt;}
.wsc6{word-spacing:-11.264000pt;}
.wsc3{word-spacing:-11.136000pt;}
.ws5{word-spacing:-11.120000pt;}
.wsc8{word-spacing:-11.093333pt;}
.wsc2{word-spacing:-11.008000pt;}
.ws7f{word-spacing:-10.880000pt;}
.wsc4{word-spacing:-10.837333pt;}
.wsc9{word-spacing:-10.709333pt;}
.ws52{word-spacing:-10.666667pt;}
.wsca{word-spacing:-10.538667pt;}
.wsc5{word-spacing:-10.453333pt;}
.wsa2{word-spacing:-10.026667pt;}
.ws22{word-spacing:-9.333333pt;}
.wsb6{word-spacing:-8.426667pt;}
.wsa6{word-spacing:-8.021333pt;}
.ws27{word-spacing:-7.773333pt;}
.ws81{word-spacing:-7.573333pt;}
.wsa3{word-spacing:-6.954667pt;}
.ws3b{word-spacing:-5.066667pt;}
.ws3d{word-spacing:-4.693333pt;}
.wsba{word-spacing:-4.640000pt;}
.ws9b{word-spacing:-4.480000pt;}
.wsbf{word-spacing:-4.373333pt;}
.ws4c{word-spacing:-3.893333pt;}
.ws6d{word-spacing:-3.680000pt;}
.ws4d{word-spacing:-3.626667pt;}
.wsd3{word-spacing:-3.413333pt;}
.wsb3{word-spacing:-3.040000pt;}
.ws9c{word-spacing:-2.986667pt;}
.ws9{word-spacing:-2.933333pt;}
.wsb9{word-spacing:-2.880000pt;}
.wsd1{word-spacing:-2.858667pt;}
.ws82{word-spacing:-2.666667pt;}
.ws8{word-spacing:-2.565333pt;}
.ws4b{word-spacing:-2.506667pt;}
.ws9e{word-spacing:-2.453333pt;}
.ws93{word-spacing:-2.240000pt;}
.wsa1{word-spacing:-2.176000pt;}
.wsa0{word-spacing:-2.133333pt;}
.ws9d{word-spacing:-2.080000pt;}
.ws25{word-spacing:-2.053333pt;}
.wsb1{word-spacing:-2.026667pt;}
.ws1e{word-spacing:-1.973333pt;}
.ws38{word-spacing:-1.920000pt;}
.wsb0{word-spacing:-1.813333pt;}
.wsbd{word-spacing:-1.760000pt;}
.ws15{word-spacing:-1.653333pt;}
.ws6a{word-spacing:-1.493333pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.333333pt;}
.wsbe{word-spacing:-1.226667pt;}
.wse2{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.120000pt;}
.wsa5{word-spacing:-1.024000pt;}
.ws6b{word-spacing:-0.960000pt;}
.ws9f{word-spacing:-0.906667pt;}
.ws14{word-spacing:-0.853333pt;}
.wse4{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.746667pt;}
.ws80{word-spacing:-0.693333pt;}
.wsd5{word-spacing:-0.597333pt;}
.wsdd{word-spacing:-0.554667pt;}
.wsbb{word-spacing:-0.533333pt;}
.wscd{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.480000pt;}
.wsd7{word-spacing:-0.469333pt;}
.ws37{word-spacing:-0.426667pt;}
.ws39{word-spacing:-0.373333pt;}
.wse6{word-spacing:-0.341333pt;}
.ws83{word-spacing:-0.266667pt;}
.ws65{word-spacing:-0.256000pt;}
.ws89{word-spacing:-0.213333pt;}
.wscc{word-spacing:-0.170667pt;}
.ws85{word-spacing:-0.160000pt;}
.ws73{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.106667pt;}
.ws6c{word-spacing:-0.085333pt;}
.ws87{word-spacing:-0.053333pt;}
.wsc1{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws61{word-spacing:0.042667pt;}
.ws34{word-spacing:0.053333pt;}
.wsd6{word-spacing:0.085333pt;}
.wsa{word-spacing:0.106667pt;}
.wse0{word-spacing:0.128000pt;}
.ws88{word-spacing:0.160000pt;}
.wse1{word-spacing:0.170667pt;}
.ws68{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.266667pt;}
.ws35{word-spacing:0.320000pt;}
.wsea{word-spacing:0.341333pt;}
.ws71{word-spacing:0.480000pt;}
.wse7{word-spacing:0.554667pt;}
.ws33{word-spacing:0.586667pt;}
.ws70{word-spacing:0.640000pt;}
.ws95{word-spacing:0.746667pt;}
.wsd4{word-spacing:0.768000pt;}
.ws6f{word-spacing:0.800000pt;}
.wsd8{word-spacing:0.810667pt;}
.ws2f{word-spacing:0.853333pt;}
.ws5f{word-spacing:0.896000pt;}
.wsd2{word-spacing:0.938667pt;}
.ws86{word-spacing:0.960000pt;}
.ws67{word-spacing:1.013333pt;}
.ws79{word-spacing:1.066667pt;}
.ws13{word-spacing:1.120000pt;}
.wsdb{word-spacing:1.152000pt;}
.wsa9{word-spacing:1.280000pt;}
.wsa8{word-spacing:1.365333pt;}
.ws4a{word-spacing:1.386667pt;}
.wsde{word-spacing:1.408000pt;}
.wsaa{word-spacing:1.440000pt;}
.wsce{word-spacing:1.536000pt;}
.ws19{word-spacing:1.546667pt;}
.ws26{word-spacing:1.578667pt;}
.ws1b{word-spacing:1.600000pt;}
.wse9{word-spacing:1.621333pt;}
.ws75{word-spacing:1.653333pt;}
.wscf{word-spacing:1.664000pt;}
.ws72{word-spacing:1.706667pt;}
.ws36{word-spacing:1.760000pt;}
.ws5a{word-spacing:1.813333pt;}
.ws74{word-spacing:1.866667pt;}
.ws64{word-spacing:1.877333pt;}
.ws1a{word-spacing:2.026667pt;}
.ws16{word-spacing:2.080000pt;}
.wseb{word-spacing:2.090667pt;}
.ws3a{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.176000pt;}
.ws57{word-spacing:2.240000pt;}
.wsbc{word-spacing:2.346667pt;}
.ws63{word-spacing:2.389333pt;}
.wsb2{word-spacing:2.453333pt;}
.wsdf{word-spacing:2.474667pt;}
.ws40{word-spacing:2.506667pt;}
.wse8{word-spacing:2.517333pt;}
.wsdc{word-spacing:2.560000pt;}
.wscb{word-spacing:2.645333pt;}
.wse3{word-spacing:2.730667pt;}
.wsd0{word-spacing:2.816000pt;}
.ws20{word-spacing:2.880000pt;}
.ws30{word-spacing:2.933333pt;}
.ws31{word-spacing:2.986667pt;}
.wsa4{word-spacing:3.029333pt;}
.ws78{word-spacing:3.040000pt;}
.ws66{word-spacing:3.093333pt;}
.ws51{word-spacing:3.114667pt;}
.ws56{word-spacing:3.200000pt;}
.wsda{word-spacing:3.242667pt;}
.ws3c{word-spacing:3.253333pt;}
.ws62{word-spacing:3.285333pt;}
.ws3f{word-spacing:3.306667pt;}
.wsa7{word-spacing:3.328000pt;}
.ws12{word-spacing:3.360000pt;}
.ws11{word-spacing:3.413333pt;}
.ws50{word-spacing:3.466667pt;}
.ws76{word-spacing:3.498667pt;}
.ws1c{word-spacing:3.520000pt;}
.ws53{word-spacing:3.541333pt;}
.ws54{word-spacing:3.584000pt;}
.ws17{word-spacing:3.626667pt;}
.ws59{word-spacing:3.733333pt;}
.ws7a{word-spacing:3.754667pt;}
.ws41{word-spacing:3.786667pt;}
.ws58{word-spacing:3.840000pt;}
.ws5e{word-spacing:3.893333pt;}
.ws77{word-spacing:3.925333pt;}
.ws5c{word-spacing:3.946667pt;}
.ws6e{word-spacing:4.000000pt;}
.ws5b{word-spacing:4.053333pt;}
.ws4f{word-spacing:4.106667pt;}
.ws18{word-spacing:4.160000pt;}
.ws5d{word-spacing:4.213333pt;}
.wsaf{word-spacing:4.266667pt;}
.ws1f{word-spacing:4.320000pt;}
.ws10{word-spacing:4.373333pt;}
.wsf{word-spacing:4.426667pt;}
.wsc0{word-spacing:4.906667pt;}
.ws94{word-spacing:5.066667pt;}
.ws1{word-spacing:43.840888pt;}
.ws2{word-spacing:43.841587pt;}
.ws91{word-spacing:97.834667pt;}
.ws92{word-spacing:102.570667pt;}
.ws90{word-spacing:108.501333pt;}
.ws8f{word-spacing:119.168000pt;}
.ws21{word-spacing:138.618667pt;}
.ws23{word-spacing:260.810667pt;}
.ws8d{word-spacing:293.162667pt;}
._b{margin-left:-2576.085333pt;}
._2d{margin-left:-2554.922667pt;}
._41{margin-left:-129.834667pt;}
._42{margin-left:-20.522667pt;}
._4e{margin-left:-14.848000pt;}
._40{margin-left:-10.666667pt;}
._2{margin-left:-8.440000pt;}
._30{margin-left:-7.093333pt;}
._a{margin-left:-6.066667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.773333pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.920000pt;}
._4{width:0.992000pt;}
._6{width:1.973333pt;}
._8{width:3.253333pt;}
._9{width:4.906667pt;}
._7{width:6.266667pt;}
._2f{width:7.498667pt;}
._2e{width:9.333333pt;}
._31{width:12.152000pt;}
._32{width:13.781333pt;}
._25{width:29.045333pt;}
._12{width:32.666667pt;}
._4c{width:33.693333pt;}
._4d{width:35.546667pt;}
._3f{width:50.090667pt;}
._16{width:53.424000pt;}
._10{width:55.440000pt;}
._18{width:57.530667pt;}
._1f{width:62.720000pt;}
._c{width:65.146667pt;}
._1a{width:66.901333pt;}
._11{width:70.000000pt;}
._1e{width:72.053333pt;}
._2a{width:73.546667pt;}
._26{width:75.226667pt;}
._13{width:77.728000pt;}
._3a{width:79.285333pt;}
._27{width:83.514667pt;}
._23{width:87.098667pt;}
._21{width:88.666667pt;}
._28{width:89.674667pt;}
._14{width:90.757333pt;}
._3d{width:93.909333pt;}
._22{width:103.189333pt;}
._20{width:107.818667pt;}
._48{width:109.184000pt;}
._3c{width:115.242667pt;}
._4b{width:118.912000pt;}
._15{width:128.053333pt;}
._29{width:129.621333pt;}
._19{width:136.864000pt;}
._d{width:143.658667pt;}
._1b{width:150.341333pt;}
._2b{width:158.666667pt;}
._39{width:170.629333pt;}
._1d{width:177.818667pt;}
._24{width:186.106667pt;}
._f{width:206.341333pt;}
._3b{width:217.685333pt;}
._38{width:221.226667pt;}
._33{width:229.546667pt;}
._1c{width:231.728000pt;}
._34{width:248.533333pt;}
._47{width:255.237333pt;}
._e{width:257.712000pt;}
._3e{width:262.741333pt;}
._37{width:265.141333pt;}
._17{width:268.053333pt;}
._35{width:273.754667pt;}
._36{width:275.808000pt;}
._43{width:278.101333pt;}
._2c{width:282.576000pt;}
._44{width:283.776000pt;}
._46{width:301.824000pt;}
._49{width:320.725333pt;}
._45{width:339.669333pt;}
._4a{width:349.226667pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs9{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;}
.y2c{bottom:42.468667pt;}
.y2ae{bottom:71.345333pt;}
.y1ac{bottom:73.760533pt;}
.y22f{bottom:73.765600pt;}
.y1a1{bottom:73.966533pt;}
.y19e{bottom:74.334000pt;}
.y192{bottom:74.344400pt;}
.y198{bottom:74.376000pt;}
.y61{bottom:74.462533pt;}
.y23e{bottom:74.475867pt;}
.y126{bottom:74.588533pt;}
.y91{bottom:74.595867pt;}
.y19a{bottom:74.722400pt;}
.y19f{bottom:74.732800pt;}
.y1a5{bottom:74.816933pt;}
.y1a2{bottom:75.110800pt;}
.y196{bottom:75.299733pt;}
.y22d{bottom:76.427067pt;}
.y29{bottom:78.524667pt;}
.y156{bottom:78.981200pt;}
.y26c{bottom:79.219467pt;}
.y16f{bottom:80.988533pt;}
.y195{bottom:81.620000pt;}
.y1e4{bottom:82.020533pt;}
.y22c{bottom:83.531200pt;}
.y2ad{bottom:84.678667pt;}
.y1ab{bottom:87.755200pt;}
.y22e{bottom:87.765600pt;}
.y1a0{bottom:87.961200pt;}
.y19d{bottom:88.328667pt;}
.y191{bottom:88.339067pt;}
.y197{bottom:88.370667pt;}
.y199{bottom:88.717067pt;}
.y1a4{bottom:88.811600pt;}
.y60{bottom:90.462533pt;}
.y125{bottom:90.588533pt;}
.y90{bottom:90.595867pt;}
.y28{bottom:91.854667pt;}
.y26b{bottom:92.552800pt;}
.y155{bottom:94.981200pt;}
.yf5{bottom:95.407600pt;}
.y194{bottom:95.614667pt;}
.y1e3{bottom:96.463200pt;}
.y2ac{bottom:98.012000pt;}
.y22b{bottom:99.531200pt;}
.y1aa{bottom:101.749867pt;}
.y19c{bottom:102.323333pt;}
.y27{bottom:105.182267pt;}
.y26a{bottom:105.886133pt;}
.y23d{bottom:106.115867pt;}
.y5f{bottom:106.462533pt;}
.y124{bottom:106.588533pt;}
.y8f{bottom:106.595867pt;}
.yf4{bottom:110.074267pt;}
.y1e2{bottom:110.905867pt;}
.y154{bottom:110.981200pt;}
.y2ab{bottom:111.345333pt;}
.y16e{bottom:111.957867pt;}
.y22a{bottom:115.531200pt;}
.y269{bottom:119.219467pt;}
.y5e{bottom:122.462533pt;}
.y123{bottom:122.588533pt;}
.y8e{bottom:122.595867pt;}
.y2aa{bottom:124.678667pt;}
.y1e1{bottom:125.348533pt;}
.y16d{bottom:125.829867pt;}
.y153{bottom:126.981200pt;}
.y1a9{bottom:128.990133pt;}
.y1fa{bottom:129.521867pt;}
.y229{bottom:131.531200pt;}
.yf3{bottom:132.444133pt;}
.y268{bottom:132.552800pt;}
.y2a9{bottom:138.012000pt;}
.y23c{bottom:138.342533pt;}
.y5d{bottom:138.462533pt;}
.y122{bottom:138.588533pt;}
.y8d{bottom:138.595867pt;}
.y1e0{bottom:139.791200pt;}
.y152{bottom:142.981200pt;}
.y1a8{bottom:142.984800pt;}
.y1a3{bottom:143.929600pt;}
.y1f9{bottom:145.521867pt;}
.yf2{bottom:145.781467pt;}
.y267{bottom:145.886133pt;}
.y228{bottom:147.531200pt;}
.y1a7{bottom:148.049067pt;}
.y2a8{bottom:151.345333pt;}
.y1df{bottom:154.233867pt;}
.y16c{bottom:154.235867pt;}
.y23b{bottom:154.342533pt;}
.y5c{bottom:154.462533pt;}
.y121{bottom:154.588533pt;}
.y8c{bottom:154.595867pt;}
.yef{bottom:158.894800pt;}
.y151{bottom:158.981200pt;}
.y266{bottom:159.219467pt;}
.y1f8{bottom:161.521867pt;}
.y227{bottom:163.531200pt;}
.y2a7{bottom:164.678667pt;}
.y1de{bottom:168.676533pt;}
.y23a{bottom:170.342533pt;}
.y190{bottom:170.462533pt;}
.y5b{bottom:170.464533pt;}
.y120{bottom:170.588533pt;}
.y8b{bottom:170.595867pt;}
.yee{bottom:172.232133pt;}
.y265{bottom:172.552800pt;}
.y150{bottom:174.981200pt;}
.y1f7{bottom:177.521867pt;}
.y2a6{bottom:178.012000pt;}
.y226{bottom:179.531200pt;}
.y1dd{bottom:183.119200pt;}
.yed{bottom:185.569467pt;}
.y239{bottom:186.342533pt;}
.y16b{bottom:186.462533pt;}
.y5a{bottom:186.464533pt;}
.y11f{bottom:186.588533pt;}
.y8a{bottom:186.595867pt;}
.y14f{bottom:190.981200pt;}
.y2a5{bottom:191.345333pt;}
.y1f6{bottom:193.521867pt;}
.y225{bottom:195.531200pt;}
.y1dc{bottom:197.561867pt;}
.yf1{bottom:198.888133pt;}
.yec{bottom:198.906800pt;}
.y264{bottom:201.995867pt;}
.y238{bottom:202.342533pt;}
.y16a{bottom:202.462533pt;}
.y59{bottom:202.464533pt;}
.y11e{bottom:202.588533pt;}
.y89{bottom:202.595867pt;}
.y2a4{bottom:204.678667pt;}
.y14e{bottom:206.981200pt;}
.y1f5{bottom:209.521867pt;}
.y224{bottom:211.531200pt;}
.y1db{bottom:212.004533pt;}
.yf0{bottom:212.225467pt;}
.yeb{bottom:212.244133pt;}
.y26{bottom:217.252000pt;}
.y2a3{bottom:218.012000pt;}
.y237{bottom:218.342533pt;}
.y169{bottom:218.462533pt;}
.y58{bottom:218.464533pt;}
.y18f{bottom:218.468533pt;}
.y11d{bottom:218.588533pt;}
.y88{bottom:218.595867pt;}
.y14d{bottom:222.981200pt;}
.yea{bottom:225.357467pt;}
.y1f4{bottom:225.521867pt;}
.y1da{bottom:226.447200pt;}
.y223{bottom:227.531200pt;}
.y2a2{bottom:231.345333pt;}
.y25{bottom:233.260400pt;}
.y236{bottom:234.342533pt;}
.y168{bottom:234.462533pt;}
.y57{bottom:234.464533pt;}
.y18e{bottom:234.468533pt;}
.y11c{bottom:234.588533pt;}
.y87{bottom:234.595867pt;}
.ye9{bottom:238.694800pt;}
.y14c{bottom:238.981200pt;}
.y1f3{bottom:241.521867pt;}
.y222{bottom:243.531200pt;}
.y2a1{bottom:244.678667pt;}
.y235{bottom:250.342533pt;}
.y167{bottom:250.462533pt;}
.y56{bottom:250.464533pt;}
.y18d{bottom:250.468533pt;}
.y263{bottom:250.475867pt;}
.y11b{bottom:250.588533pt;}
.y86{bottom:250.595867pt;}
.ye7{bottom:251.808133pt;}
.y1d9{bottom:254.457867pt;}
.y14b{bottom:254.981200pt;}
.y1f2{bottom:257.521867pt;}
.y24{bottom:257.567067pt;}
.y2a0{bottom:258.012000pt;}
.ye6{bottom:265.145467pt;}
.y234{bottom:266.342533pt;}
.y166{bottom:266.462533pt;}
.y55{bottom:266.464533pt;}
.y18c{bottom:266.468533pt;}
.y262{bottom:266.475867pt;}
.y11a{bottom:266.588533pt;}
.y85{bottom:266.595867pt;}
.y14a{bottom:270.981200pt;}
.y29f{bottom:271.345333pt;}
.y1f1{bottom:273.521867pt;}
.y23{bottom:273.567067pt;}
.y221{bottom:275.171200pt;}
.ye8{bottom:278.473467pt;}
.ye5{bottom:278.482800pt;}
.y261{bottom:282.115867pt;}
.y233{bottom:282.342533pt;}
.y165{bottom:282.462533pt;}
.y54{bottom:282.464533pt;}
.y18b{bottom:282.468533pt;}
.y119{bottom:282.588533pt;}
.y84{bottom:282.595867pt;}
.y29e{bottom:284.678667pt;}
.y1d8{bottom:285.475733pt;}
.y149{bottom:286.981200pt;}
.y1f0{bottom:289.521867pt;}
.y22{bottom:289.567067pt;}
.ye4{bottom:291.596133pt;}
.y29d{bottom:298.012000pt;}
.y232{bottom:298.342533pt;}
.y164{bottom:298.462533pt;}
.y53{bottom:298.464533pt;}
.y18a{bottom:298.468533pt;}
.y118{bottom:298.588533pt;}
.y83{bottom:298.595867pt;}
.y1d7{bottom:302.809067pt;}
.y148{bottom:302.981200pt;}
.ye3{bottom:304.933467pt;}
.y1ef{bottom:305.521867pt;}
.y21{bottom:305.567067pt;}
.y29c{bottom:311.345333pt;}
.y163{bottom:314.462533pt;}
.y52{bottom:314.464533pt;}
.y189{bottom:314.468533pt;}
.y260{bottom:314.475867pt;}
.y117{bottom:314.588533pt;}
.y82{bottom:314.595867pt;}
.ye2{bottom:318.046800pt;}
.y147{bottom:318.981200pt;}
.y1ee{bottom:321.521867pt;}
.y20{bottom:321.567067pt;}
.y220{bottom:323.204667pt;}
.y29b{bottom:324.678667pt;}
.y231{bottom:329.982533pt;}
.y25f{bottom:330.115867pt;}
.y162{bottom:330.462533pt;}
.y51{bottom:330.464533pt;}
.y188{bottom:330.468533pt;}
.y116{bottom:330.588533pt;}
.y81{bottom:330.595867pt;}
.ye0{bottom:331.160133pt;}
.ydc{bottom:331.169467pt;}
.y146{bottom:334.981200pt;}
.y21f{bottom:336.538000pt;}
.y1ed{bottom:337.521867pt;}
.y1f{bottom:337.567067pt;}
.y29a{bottom:338.012000pt;}
.ydf{bottom:344.497467pt;}
.ydb{bottom:344.506800pt;}
.y161{bottom:346.462533pt;}
.y50{bottom:346.464533pt;}
.y187{bottom:346.468533pt;}
.y115{bottom:346.588533pt;}
.y80{bottom:346.595867pt;}
.y1d6{bottom:346.923200pt;}
.y21e{bottom:349.871333pt;}
.y145{bottom:350.981200pt;}
.y299{bottom:351.345333pt;}
.y1ec{bottom:353.521867pt;}
.y1e{bottom:353.567067pt;}
.yde{bottom:357.834800pt;}
.yda{bottom:357.844133pt;}
.y160{bottom:362.462533pt;}
.y4f{bottom:362.464533pt;}
.y186{bottom:362.468533pt;}
.y25e{bottom:362.475867pt;}
.y114{bottom:362.588533pt;}
.y7f{bottom:362.595867pt;}
.y21d{bottom:363.204667pt;}
.y298{bottom:364.678667pt;}
.y144{bottom:366.981200pt;}
.y1eb{bottom:369.521867pt;}
.y1d{bottom:369.567067pt;}
.y1d5{bottom:369.600533pt;}
.ye1{bottom:371.162800pt;}
.ydd{bottom:371.172133pt;}
.yd9{bottom:371.181467pt;}
.y21c{bottom:376.538000pt;}
.y297{bottom:378.012000pt;}
.y15f{bottom:378.462533pt;}
.y4e{bottom:378.464533pt;}
.y185{bottom:378.468533pt;}
.y25d{bottom:378.475867pt;}
.y113{bottom:378.588533pt;}
.y143{bottom:382.981200pt;}
.y1d4{bottom:384.267200pt;}
.yd6{bottom:384.294800pt;}
.y1ea{bottom:385.521867pt;}
.y1c{bottom:385.567067pt;}
.y21b{bottom:389.871333pt;}
.y296{bottom:391.345333pt;}
.y7e{bottom:394.235867pt;}
.y15e{bottom:394.462533pt;}
.y4d{bottom:394.464533pt;}
.y184{bottom:394.468533pt;}
.y25c{bottom:394.475867pt;}
.y112{bottom:394.588533pt;}
.yd5{bottom:397.632133pt;}
.y1d3{bottom:398.709867pt;}
.y142{bottom:398.981200pt;}
.y1b{bottom:401.567067pt;}
.y21a{bottom:403.204667pt;}
.y295{bottom:404.678667pt;}
.y15d{bottom:410.462533pt;}
.y4c{bottom:410.464533pt;}
.y183{bottom:410.468533pt;}
.y25b{bottom:410.475867pt;}
.y111{bottom:410.588533pt;}
.yd8{bottom:410.960133pt;}
.yd4{bottom:410.969467pt;}
.y1d2{bottom:413.376533pt;}
.y141{bottom:414.981200pt;}
.y219{bottom:416.538000pt;}
.y1e9{bottom:417.071333pt;}
.y1a{bottom:417.567067pt;}
.y294{bottom:418.012000pt;}
.yd7{bottom:424.297467pt;}
.yd3{bottom:424.306800pt;}
.y7d{bottom:426.462533pt;}
.y4b{bottom:426.464533pt;}
.y182{bottom:426.468533pt;}
.y25a{bottom:426.475867pt;}
.y110{bottom:426.588533pt;}
.y1d1{bottom:427.819200pt;}
.y218{bottom:429.871333pt;}
.y140{bottom:430.981200pt;}
.y293{bottom:431.345333pt;}
.y19{bottom:433.567067pt;}
.yd0{bottom:437.255867pt;}
.yd2{bottom:437.420133pt;}
.y259{bottom:442.115867pt;}
.y1d0{bottom:442.261867pt;}
.y7c{bottom:442.462533pt;}
.y4a{bottom:442.464533pt;}
.y181{bottom:442.468533pt;}
.y10f{bottom:442.588533pt;}
.y217{bottom:443.204667pt;}
.y292{bottom:444.678667pt;}
.y1e8{bottom:445.824667pt;}
.y13f{bottom:446.981200pt;}
.y18{bottom:449.567067pt;}
.ycf{bottom:450.593200pt;}
.yd1{bottom:450.757467pt;}
.y216{bottom:456.538000pt;}
.y1cf{bottom:456.928533pt;}
.y291{bottom:458.012000pt;}
.y7b{bottom:458.462533pt;}
.y49{bottom:458.464533pt;}
.y180{bottom:458.468533pt;}
.y10e{bottom:458.588533pt;}
.y1e7{bottom:459.696667pt;}
.y13e{bottom:462.981200pt;}
.ycc{bottom:463.715867pt;}
.y17{bottom:465.567067pt;}
.y215{bottom:469.871333pt;}
.y290{bottom:471.345333pt;}
.y1ce{bottom:471.371200pt;}
.y1e6{bottom:474.235867pt;}
.y7a{bottom:474.462533pt;}
.y48{bottom:474.464533pt;}
.y17f{bottom:474.468533pt;}
.y258{bottom:474.475867pt;}
.y10d{bottom:474.588533pt;}
.yce{bottom:477.043867pt;}
.ycb{bottom:477.053200pt;}
.y13d{bottom:478.981200pt;}
.y16{bottom:481.567067pt;}
.y214{bottom:483.204667pt;}
.y28f{bottom:484.678667pt;}
.y1cd{bottom:485.813867pt;}
.ycd{bottom:490.381200pt;}
.yca{bottom:490.390533pt;}
.y79{bottom:490.462533pt;}
.y47{bottom:490.464533pt;}
.y17e{bottom:490.468533pt;}
.y257{bottom:490.475867pt;}
.y10c{bottom:490.588533pt;}
.y13c{bottom:494.981200pt;}
.y213{bottom:496.538000pt;}
.y15{bottom:497.567067pt;}
.y28e{bottom:498.012000pt;}
.y1cc{bottom:500.256533pt;}
.yc7{bottom:503.503867pt;}
.y256{bottom:506.115867pt;}
.y78{bottom:506.462533pt;}
.y46{bottom:506.464533pt;}
.y17d{bottom:506.468533pt;}
.y10b{bottom:506.588533pt;}
.y212{bottom:509.871333pt;}
.y28d{bottom:511.345333pt;}
.y14{bottom:513.567067pt;}
.y1cb{bottom:514.923200pt;}
.yc6{bottom:516.841200pt;}
.y77{bottom:522.462533pt;}
.y45{bottom:522.464533pt;}
.y17c{bottom:522.468533pt;}
.y10a{bottom:522.588533pt;}
.y211{bottom:523.204667pt;}
.y28c{bottom:524.678667pt;}
.y13b{bottom:525.950533pt;}
.yc5{bottom:530.178533pt;}
.y28b{bottom:538.012000pt;}
.y15c{bottom:538.462533pt;}
.y44{bottom:538.464533pt;}
.y17b{bottom:538.468533pt;}
.y255{bottom:538.475867pt;}
.y109{bottom:538.588533pt;}
.y13a{bottom:539.822533pt;}
.y1ca{bottom:540.704533pt;}
.yc9{bottom:543.497200pt;}
.yc4{bottom:543.515867pt;}
.y28a{bottom:551.345333pt;}
.y210{bottom:552.635867pt;}
.y13{bottom:553.704267pt;}
.y76{bottom:554.102533pt;}
.y139{bottom:554.348533pt;}
.y15b{bottom:554.462533pt;}
.y43{bottom:554.464533pt;}
.y17a{bottom:554.468533pt;}
.y254{bottom:554.475867pt;}
.y108{bottom:554.588533pt;}
.y1c9{bottom:555.371200pt;}
.yc8{bottom:556.834533pt;}
.yc3{bottom:556.853200pt;}
.y289{bottom:564.678667pt;}
.y12{bottom:564.771600pt;}
.yc2{bottom:569.966533pt;}
.y15a{bottom:570.462533pt;}
.y42{bottom:570.464533pt;}
.y179{bottom:570.468533pt;}
.y253{bottom:570.475867pt;}
.y107{bottom:570.588533pt;}
.y288{bottom:578.012000pt;}
.y11{bottom:579.352000pt;}
.yc1{bottom:583.303867pt;}
.y1c8{bottom:584.169200pt;}
.y20f{bottom:584.862533pt;}
.y75{bottom:585.982533pt;}
.y138{bottom:586.228533pt;}
.y159{bottom:586.462533pt;}
.y41{bottom:586.464533pt;}
.y178{bottom:586.468533pt;}
.y252{bottom:586.475867pt;}
.y106{bottom:586.588533pt;}
.y287{bottom:591.345333pt;}
.yc0{bottom:596.417200pt;}
.y20e{bottom:600.862533pt;}
.y1c7{bottom:601.502533pt;}
.y137{bottom:602.228533pt;}
.y158{bottom:602.462533pt;}
.y40{bottom:602.464533pt;}
.y177{bottom:602.468533pt;}
.y251{bottom:602.475867pt;}
.y105{bottom:602.588533pt;}
.y286{bottom:604.678667pt;}
.y10{bottom:608.185733pt;}
.ybf{bottom:609.754533pt;}
.yf{bottom:615.363200pt;}
.y20d{bottom:616.862533pt;}
.y285{bottom:618.012000pt;}
.y136{bottom:618.228533pt;}
.y157{bottom:618.462533pt;}
.y3f{bottom:618.464533pt;}
.y176{bottom:618.468533pt;}
.y250{bottom:618.475867pt;}
.y104{bottom:618.588533pt;}
.y1c6{bottom:618.835867pt;}
.ybe{bottom:622.867867pt;}
.yba{bottom:622.877200pt;}
.yb6{bottom:622.886533pt;}
.yb2{bottom:622.895867pt;}
.y284{bottom:631.345333pt;}
.ye{bottom:632.185733pt;}
.y20c{bottom:632.862533pt;}
.y24f{bottom:634.115867pt;}
.y74{bottom:634.462533pt;}
.y3e{bottom:634.464533pt;}
.y175{bottom:634.468533pt;}
.y103{bottom:634.588533pt;}
.y1c5{bottom:636.169200pt;}
.ybd{bottom:636.205200pt;}
.yb9{bottom:636.214533pt;}
.yb5{bottom:636.223867pt;}
.yb1{bottom:636.233200pt;}
.yae{bottom:636.242533pt;}
.yab{bottom:636.251867pt;}
.yd{bottom:644.185733pt;}
.y283{bottom:644.678667pt;}
.y20b{bottom:648.862533pt;}
.ybc{bottom:649.542533pt;}
.yb8{bottom:649.551867pt;}
.yb4{bottom:649.561200pt;}
.yb0{bottom:649.570533pt;}
.yad{bottom:649.579867pt;}
.yaa{bottom:649.589200pt;}
.y135{bottom:650.108533pt;}
.y73{bottom:650.462533pt;}
.y3d{bottom:650.464533pt;}
.y174{bottom:650.468533pt;}
.y102{bottom:650.588533pt;}
.yc{bottom:651.363200pt;}
.y282{bottom:658.012000pt;}
.ybb{bottom:662.879867pt;}
.yb7{bottom:662.889200pt;}
.yb3{bottom:662.898533pt;}
.yaf{bottom:662.907867pt;}
.yac{bottom:662.917200pt;}
.ya9{bottom:662.926533pt;}
.yb{bottom:663.363200pt;}
.y20a{bottom:664.862533pt;}
.y72{bottom:666.462533pt;}
.y3c{bottom:666.464533pt;}
.y173{bottom:666.468533pt;}
.y24e{bottom:666.475867pt;}
.y101{bottom:666.588533pt;}
.y281{bottom:671.345333pt;}
.ya8{bottom:676.039867pt;}
.ya{bottom:680.185733pt;}
.y1b5{bottom:680.538000pt;}
.y209{bottom:680.862533pt;}
.y134{bottom:681.988533pt;}
.y71{bottom:682.462533pt;}
.y3b{bottom:682.464533pt;}
.y172{bottom:682.468533pt;}
.y24d{bottom:682.475867pt;}
.y100{bottom:682.588533pt;}
.y280{bottom:684.678667pt;}
.ya5{bottom:689.162533pt;}
.y1c4{bottom:690.462533pt;}
.y1b4{bottom:693.871333pt;}
.y208{bottom:696.862533pt;}
.y27f{bottom:698.012000pt;}
.y70{bottom:698.462533pt;}
.y3a{bottom:698.464533pt;}
.y171{bottom:698.468533pt;}
.y24c{bottom:698.475867pt;}
.yff{bottom:698.588533pt;}
.ya4{bottom:702.499867pt;}
.y9{bottom:705.720933pt;}
.y1c3{bottom:706.462533pt;}
.y1b3{bottom:707.204667pt;}
.y27e{bottom:711.345333pt;}
.y207{bottom:712.862533pt;}
.y6f{bottom:714.462533pt;}
.y39{bottom:714.464533pt;}
.y170{bottom:714.468533pt;}
.y24b{bottom:714.475867pt;}
.yfe{bottom:714.588533pt;}
.ya3{bottom:715.837200pt;}
.y1c2{bottom:722.462533pt;}
.y8{bottom:724.382933pt;}
.y27d{bottom:724.678667pt;}
.y206{bottom:728.862533pt;}
.ya2{bottom:729.174533pt;}
.y6e{bottom:730.462533pt;}
.y38{bottom:730.464533pt;}
.y133{bottom:730.468533pt;}
.y24a{bottom:730.475867pt;}
.yfd{bottom:730.588533pt;}
.y1b2{bottom:735.957867pt;}
.y27c{bottom:738.012000pt;}
.y1c1{bottom:738.462533pt;}
.ya1{bottom:742.511867pt;}
.y205{bottom:744.862533pt;}
.y6d{bottom:746.462533pt;}
.y37{bottom:746.464533pt;}
.y132{bottom:746.468533pt;}
.y249{bottom:746.475867pt;}
.yfc{bottom:746.588533pt;}
.y1b1{bottom:749.829867pt;}
.y27b{bottom:751.345333pt;}
.y1c0{bottom:754.462533pt;}
.ya7{bottom:755.821200pt;}
.ya0{bottom:755.849200pt;}
.y204{bottom:760.862533pt;}
.y6c{bottom:762.462533pt;}
.y36{bottom:762.464533pt;}
.y131{bottom:762.468533pt;}
.y248{bottom:762.475867pt;}
.yfb{bottom:762.588533pt;}
.y1b0{bottom:762.595867pt;}
.y27a{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.ya6{bottom:769.158533pt;}
.y9f{bottom:769.186533pt;}
.y1bf{bottom:770.462533pt;}
.y203{bottom:776.862533pt;}
.y279{bottom:778.012000pt;}
.y1af{bottom:778.235867pt;}
.y6b{bottom:778.462533pt;}
.y35{bottom:778.464533pt;}
.y130{bottom:778.468533pt;}
.y247{bottom:778.475867pt;}
.yfa{bottom:778.595867pt;}
.y9c{bottom:782.309200pt;}
.y1be{bottom:786.462533pt;}
.y278{bottom:791.345333pt;}
.y1ae{bottom:794.235867pt;}
.y6a{bottom:794.462533pt;}
.y34{bottom:794.464533pt;}
.y12f{bottom:794.468533pt;}
.y246{bottom:794.475867pt;}
.yf9{bottom:794.595867pt;}
.y9e{bottom:795.637200pt;}
.y9b{bottom:795.646533pt;}
.y6{bottom:797.816533pt;}
.y1bd{bottom:802.462533pt;}
.y277{bottom:804.678667pt;}
.y202{bottom:808.412000pt;}
.y9d{bottom:808.974533pt;}
.y9a{bottom:808.983867pt;}
.y69{bottom:810.462533pt;}
.y33{bottom:810.464533pt;}
.y12e{bottom:810.468533pt;}
.y245{bottom:810.475867pt;}
.yf8{bottom:810.595867pt;}
.y276{bottom:818.012000pt;}
.y1bc{bottom:818.462533pt;}
.y201{bottom:821.745333pt;}
.y68{bottom:826.462533pt;}
.y32{bottom:826.464533pt;}
.y12d{bottom:826.468533pt;}
.y244{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y275{bottom:831.345333pt;}
.y97{bottom:833.437200pt;}
.y1bb{bottom:834.462533pt;}
.y200{bottom:835.078667pt;}
.y243{bottom:842.115867pt;}
.yf7{bottom:842.235867pt;}
.y67{bottom:842.462533pt;}
.y31{bottom:842.464533pt;}
.y12c{bottom:842.468533pt;}
.y274{bottom:844.678667pt;}
.y99{bottom:846.765200pt;}
.y96{bottom:846.774533pt;}
.y1ba{bottom:850.462533pt;}
.y273{bottom:858.012000pt;}
.y66{bottom:858.462533pt;}
.y30{bottom:858.464533pt;}
.y12b{bottom:858.468533pt;}
.y98{bottom:860.102533pt;}
.y95{bottom:860.111867pt;}
.y4{bottom:862.635733pt;}
.y1ff{bottom:862.729200pt;}
.y1b9{bottom:866.462533pt;}
.y272{bottom:871.345333pt;}
.y65{bottom:874.462533pt;}
.y2f{bottom:874.464533pt;}
.y12a{bottom:874.468533pt;}
.y242{bottom:874.475867pt;}
.y1fe{bottom:877.698667pt;}
.y271{bottom:884.678667pt;}
.y94{bottom:887.795867pt;}
.y64{bottom:890.462533pt;}
.y2e{bottom:890.464533pt;}
.y129{bottom:890.468533pt;}
.y241{bottom:890.475867pt;}
.y1fd{bottom:891.570667pt;}
.y3{bottom:895.045333pt;}
.y1b8{bottom:898.010000pt;}
.y270{bottom:898.012000pt;}
.y93{bottom:905.129200pt;}
.y1fc{bottom:906.108533pt;}
.y63{bottom:906.462533pt;}
.y128{bottom:906.468533pt;}
.y240{bottom:906.475867pt;}
.y1b7{bottom:911.343333pt;}
.y26f{bottom:911.345333pt;}
.y2d{bottom:922.104533pt;}
.y1fb{bottom:922.108533pt;}
.y62{bottom:922.462533pt;}
.y127{bottom:922.468533pt;}
.y23f{bottom:922.475867pt;}
.y1b6{bottom:924.676667pt;}
.y26e{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y26d{bottom:1006.590133pt;}
.y92{bottom:1006.594400pt;}
.yf6{bottom:1006.596933pt;}
.y193{bottom:1006.597067pt;}
.y230{bottom:1006.597600pt;}
.y2af{bottom:1006.598667pt;}
.y1ad{bottom:1006.603200pt;}
.y1a6{bottom:1006.603600pt;}
.y19b{bottom:1006.605067pt;}
.y1e5{bottom:1006.628533pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h9{height:14.723786pt;}
.h7{height:17.000371pt;}
.ha{height:25.255208pt;}
.h16{height:25.921875pt;}
.h15{height:25.940104pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h8{height:29.160156pt;}
.he{height:29.169756pt;}
.h1a{height:29.625000pt;}
.h17{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h19{height:33.351562pt;}
.h14{height:37.031250pt;}
.h13{height:37.057292pt;}
.h12{height:38.828125pt;}
.hd{height:38.846608pt;}
.hc{height:38.854167pt;}
.hb{height:38.880208pt;}
.h18{height:46.697734pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:62.740133pt;}
.x8{left:68.031467pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.xf{left:88.818933pt;}
.x52{left:90.708667pt;}
.x4{left:94.488133pt;}
.x1a{left:96.388267pt;}
.x9{left:98.274267pt;}
.x31{left:99.458267pt;}
.x3a{left:103.451467pt;}
.x37{left:106.022533pt;}
.x3b{left:109.606400pt;}
.x3{left:111.491467pt;}
.x2e{left:117.169200pt;}
.x2f{left:152.075867pt;}
.x1b{left:160.638933pt;}
.x49{left:166.928667pt;}
.x1c{left:168.198933pt;}
.x5{left:170.072933pt;}
.x46{left:187.124267pt;}
.x41{left:194.654933pt;}
.x32{left:197.834267pt;}
.x38{left:202.449200pt;}
.x30{left:204.555867pt;}
.x39{left:213.809200pt;}
.x1d{left:255.129600pt;}
.x1e{left:262.689600pt;}
.x10{left:268.457600pt;}
.x11{left:276.036267pt;}
.x42{left:323.156267pt;}
.x47{left:326.152267pt;}
.x43{left:330.718933pt;}
.x3c{left:348.232267pt;}
.x1f{left:349.620267pt;}
.x12{left:356.340267pt;}
.x26{left:357.236267pt;}
.x13{left:368.529600pt;}
.x7{left:404.481333pt;}
.xa{left:406.298133pt;}
.x4a{left:417.241067pt;}
.x4c{left:418.831333pt;}
.x2d{left:421.828400pt;}
.x33{left:425.192000pt;}
.x50{left:426.708667pt;}
.x4f{left:428.976533pt;}
.x2b{left:430.583867pt;}
.xc{left:436.551467pt;}
.x2a{left:442.823867pt;}
.x23{left:444.138933pt;}
.x14{left:447.974933pt;}
.x24{left:451.698933pt;}
.x34{left:455.432000pt;}
.x3d{left:459.506933pt;}
.x15{left:463.010933pt;}
.xb{left:466.924800pt;}
.x2c{left:468.143867pt;}
.x3e{left:498.066933pt;}
.x4b{left:502.921067pt;}
.x4d{left:515.191333pt;}
.x29{left:518.650533pt;}
.x28{left:525.930533pt;}
.x51{left:529.875867pt;}
.x4e{left:533.202133pt;}
.x25{left:538.629600pt;}
.x16{left:540.916267pt;}
.x20{left:546.161600pt;}
.x17{left:557.370933pt;}
.xe{left:589.770933pt;}
.x44{left:595.284267pt;}
.x40{left:600.809600pt;}
.x45{left:602.846933pt;}
.x3f{left:604.306933pt;}
.x2{left:616.324800pt;}
.x21{left:633.092267pt;}
.x22{left:640.652267pt;}
.x18{left:642.005600pt;}
.xd{left:647.459200pt;}
.x19{left:656.658933pt;}
.x48{left:660.242933pt;}
.x36{left:661.212000pt;}
.x27{left:666.363733pt;}
}




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