
    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_36942b3a98d70c98f066c3c2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b035f55cc919669be26e4a45.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_af7ee55bf3a7584b80c1f1fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_4ab138b3d369ab867b0154fb.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_33877b71727e1f1aff4ac75d.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_2acbdfe2aac6343afe0c6d5b.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_1977ea62f59d3bb7cb827a5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0f8cbbf786d11c8c058567c8.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_a1b8a007381fa34711e07f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;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_019c3e1bf4ed961379217e6a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_41204ff90cd4dc103f49fb0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf4f5632c1d0cb98bb66f783.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v4{vertical-align:-11.730000px;}
.v5{vertical-align:-9.514800px;}
.v8{vertical-align:-8.132400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.620000px;}
.v9{vertical-align:8.188200px;}
.v6{vertical-align:9.357600px;}
.v1{vertical-align:30.381600px;}
.v3{vertical-align:33.024000px;}
.v7{vertical-align:35.527200px;}
.ls4d{letter-spacing:-1.776000px;}
.lsf{letter-spacing:-0.780000px;}
.ls12{letter-spacing:-0.765000px;}
.ls10{letter-spacing:-0.693000px;}
.ls7f{letter-spacing:-0.624000px;}
.ls69{letter-spacing:-0.480000px;}
.ls9b{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.404019px;}
.ls9a{letter-spacing:-0.384000px;}
.ls5d{letter-spacing:-0.360000px;}
.ls6a{letter-spacing:-0.300000px;}
.ls57{letter-spacing:-0.240000px;}
.lsa4{letter-spacing:-0.192000px;}
.ls41{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.120000px;}
.lsa6{letter-spacing:-0.096000px;}
.ls13{letter-spacing:-0.060000px;}
.ls7e{letter-spacing:-0.048000px;}
.lse{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004140px;}
.ls5e{letter-spacing:0.004200px;}
.ls5c{letter-spacing:0.008400px;}
.ls5f{letter-spacing:0.013800px;}
.ls61{letter-spacing:0.020400px;}
.ls5b{letter-spacing:0.032400px;}
.ls78{letter-spacing:0.048000px;}
.ls29{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.096000px;}
.lsa{letter-spacing:0.120000px;}
.ls51{letter-spacing:0.139920px;}
.ls8e{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls8b{letter-spacing:0.192000px;}
.ls4e{letter-spacing:0.234600px;}
.ls2c{letter-spacing:0.240000px;}
.ls95{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.300000px;}
.ls48{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.360000px;}
.ls86{letter-spacing:0.384000px;}
.ls34{letter-spacing:0.420000px;}
.ls81{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls90{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls56{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.600000px;}
.ls89{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.660000px;}
.ls9f{letter-spacing:0.672000px;}
.ls9{letter-spacing:0.720000px;}
.ls83{letter-spacing:0.768000px;}
.ls18{letter-spacing:0.780000px;}
.ls98{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.840000px;}
.lsa7{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.900000px;}
.ls96{letter-spacing:0.912000px;}
.ls44{letter-spacing:0.960000px;}
.ls7a{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.020000px;}
.ls9d{letter-spacing:1.056000px;}
.ls1e{letter-spacing:1.080000px;}
.ls97{letter-spacing:1.104000px;}
.ls1a{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.152000px;}
.ls2d{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.224300px;}
.ls80{letter-spacing:1.248000px;}
.ls31{letter-spacing:1.260000px;}
.ls84{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.320000px;}
.lsa1{letter-spacing:1.344000px;}
.ls1c{letter-spacing:1.380000px;}
.ls87{letter-spacing:1.392000px;}
.ls23{letter-spacing:1.440000px;}
.ls76{letter-spacing:1.488000px;}
.ls6{letter-spacing:1.500000px;}
.ls93{letter-spacing:1.536000px;}
.ls20{letter-spacing:1.560000px;}
.ls91{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.620000px;}
.ls35{letter-spacing:1.680000px;}
.ls28{letter-spacing:1.740000px;}
.ls36{letter-spacing:1.800000px;}
.ls82{letter-spacing:1.824000px;}
.ls2e{letter-spacing:1.860000px;}
.lsa5{letter-spacing:1.872000px;}
.ls25{letter-spacing:1.920000px;}
.ls8a{letter-spacing:1.968000px;}
.lsc{letter-spacing:1.980000px;}
.ls54{letter-spacing:2.040000px;}
.lsa2{letter-spacing:2.064000px;}
.ls14{letter-spacing:2.100000px;}
.ls88{letter-spacing:2.112000px;}
.ls52{letter-spacing:2.143200px;}
.ls46{letter-spacing:2.160000px;}
.ls77{letter-spacing:2.208000px;}
.ls2a{letter-spacing:2.220000px;}
.ls94{letter-spacing:2.256000px;}
.ls16{letter-spacing:2.280000px;}
.lsa3{letter-spacing:2.304000px;}
.ls4a{letter-spacing:2.340000px;}
.ls8f{letter-spacing:2.352000px;}
.ls45{letter-spacing:2.400000px;}
.ls79{letter-spacing:2.448000px;}
.ls49{letter-spacing:2.460000px;}
.ls8d{letter-spacing:2.496000px;}
.ls22{letter-spacing:2.520000px;}
.ls92{letter-spacing:2.544000px;}
.ls3c{letter-spacing:2.580000px;}
.ls3d{letter-spacing:2.640000px;}
.ls7c{letter-spacing:2.688000px;}
.ls3a{letter-spacing:2.700000px;}
.lsa8{letter-spacing:2.736000px;}
.ls47{letter-spacing:2.760000px;}
.lsa0{letter-spacing:2.784000px;}
.ls3e{letter-spacing:2.820000px;}
.ls2f{letter-spacing:2.880000px;}
.ls33{letter-spacing:2.940000px;}
.ls8c{letter-spacing:2.976000px;}
.ls3b{letter-spacing:3.000000px;}
.ls99{letter-spacing:3.024000px;}
.ls37{letter-spacing:3.060000px;}
.ls68{letter-spacing:3.120000px;}
.ls74{letter-spacing:3.168000px;}
.ls19{letter-spacing:3.180000px;}
.ls38{letter-spacing:3.240000px;}
.ls66{letter-spacing:3.300000px;}
.ls73{letter-spacing:3.312000px;}
.ls6e{letter-spacing:3.360000px;}
.ls9c{letter-spacing:3.408000px;}
.ls26{letter-spacing:3.420000px;}
.ls4f{letter-spacing:3.480000px;}
.ls6b{letter-spacing:3.600000px;}
.ls5a{letter-spacing:3.660000px;}
.ls3f{letter-spacing:3.720000px;}
.ls1d{letter-spacing:3.780000px;}
.ls53{letter-spacing:3.840000px;}
.ls70{letter-spacing:3.900000px;}
.ls63{letter-spacing:3.960000px;}
.ls60{letter-spacing:3.984000px;}
.ls6d{letter-spacing:4.080000px;}
.ls9e{letter-spacing:4.224000px;}
.ls7b{letter-spacing:4.368000px;}
.ls64{letter-spacing:4.380000px;}
.ls7d{letter-spacing:4.500000px;}
.ls59{letter-spacing:4.560000px;}
.ls67{letter-spacing:4.680000px;}
.ls62{letter-spacing:4.800000px;}
.ls43{letter-spacing:4.860000px;}
.ls30{letter-spacing:4.920000px;}
.ls42{letter-spacing:4.980000px;}
.ls6c{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.160000px;}
.ls72{letter-spacing:5.520000px;}
.ls6f{letter-spacing:5.580000px;}
.ls55{letter-spacing:5.820000px;}
.ls32{letter-spacing:6.240000px;}
.ls65{letter-spacing:7.260000px;}
.ls71{letter-spacing:7.680000px;}
.ls0{letter-spacing:58.440600px;}
.ls1{letter-spacing:58.724676px;}
.ls2{letter-spacing:58.725276px;}
.ls4{letter-spacing:59.532876px;}
.ls3{letter-spacing:59.533476px;}
.ls4c{letter-spacing:66.720000px;}
.ls4b{letter-spacing:69.552000px;}
.ls50{letter-spacing:78.048000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.wsbd{word-spacing:-17.220000px;}
.wsbf{word-spacing:-16.800000px;}
.ws6d{word-spacing:-16.680000px;}
.wse{word-spacing:-16.080000px;}
.ws6e{word-spacing:-15.660000px;}
.wsb3{word-spacing:-15.480000px;}
.wsd{word-spacing:-15.240000px;}
.wsbe{word-spacing:-15.060000px;}
.wsb2{word-spacing:-15.000000px;}
.wse0{word-spacing:-14.208000px;}
.wse6{word-spacing:-13.968000px;}
.ws10c{word-spacing:-13.920000px;}
.wse2{word-spacing:-13.536000px;}
.ws2{word-spacing:-13.344000px;}
.wse7{word-spacing:-13.152000px;}
.ws108{word-spacing:-12.960000px;}
.ws11a{word-spacing:-12.912000px;}
.wsde{word-spacing:-12.720000px;}
.ws10d{word-spacing:-12.624000px;}
.ws109{word-spacing:-12.576000px;}
.wse1{word-spacing:-12.528000px;}
.ws1{word-spacing:-12.510000px;}
.ws10a{word-spacing:-12.480000px;}
.wsdf{word-spacing:-12.432000px;}
.wse8{word-spacing:-12.240000px;}
.wse5{word-spacing:-12.192000px;}
.ws10b{word-spacing:-12.144000px;}
.ws4b{word-spacing:-12.000000px;}
.wse9{word-spacing:-11.952000px;}
.wse4{word-spacing:-11.760000px;}
.wsdd{word-spacing:-11.616000px;}
.wse3{word-spacing:-11.568000px;}
.wsac{word-spacing:-10.500000px;}
.ws84{word-spacing:-9.969300px;}
.ws0{word-spacing:-9.806643px;}
.ws6c{word-spacing:-8.884920px;}
.wsb8{word-spacing:-7.260000px;}
.ws94{word-spacing:-6.996000px;}
.wsab{word-spacing:-6.121500px;}
.ws21{word-spacing:-5.160000px;}
.ws27{word-spacing:-4.980000px;}
.wsb0{word-spacing:-4.800000px;}
.ws5{word-spacing:-4.684200px;}
.ws99{word-spacing:-4.560000px;}
.wscc{word-spacing:-4.500000px;}
.wsb6{word-spacing:-4.380000px;}
.wsd9{word-spacing:-4.368000px;}
.ws112{word-spacing:-4.224000px;}
.wsc9{word-spacing:-4.080000px;}
.wsb5{word-spacing:-3.960000px;}
.wscb{word-spacing:-3.900000px;}
.wsc4{word-spacing:-3.840000px;}
.ws83{word-spacing:-3.720000px;}
.ws82{word-spacing:-3.480000px;}
.ws10e{word-spacing:-3.456000px;}
.ws1e{word-spacing:-3.420000px;}
.wsd6{word-spacing:-3.360000px;}
.wsd1{word-spacing:-3.312000px;}
.wsb9{word-spacing:-3.300000px;}
.ws2e{word-spacing:-3.240000px;}
.wsba{word-spacing:-3.180000px;}
.wsd2{word-spacing:-3.168000px;}
.ws2d{word-spacing:-3.120000px;}
.ws119{word-spacing:-3.072000px;}
.ws32{word-spacing:-3.060000px;}
.ws107{word-spacing:-3.024000px;}
.ws31{word-spacing:-3.000000px;}
.wsf8{word-spacing:-2.976000px;}
.ws29{word-spacing:-2.940000px;}
.ws4{word-spacing:-2.886000px;}
.ws26{word-spacing:-2.880000px;}
.ws115{word-spacing:-2.784000px;}
.ws7f{word-spacing:-2.760000px;}
.ws11b{word-spacing:-2.736000px;}
.ws30{word-spacing:-2.700000px;}
.wsdc{word-spacing:-2.688000px;}
.ws34{word-spacing:-2.640000px;}
.ws1c{word-spacing:-2.580000px;}
.ws101{word-spacing:-2.544000px;}
.ws87{word-spacing:-2.520000px;}
.wsf9{word-spacing:-2.496000px;}
.ws3a{word-spacing:-2.460000px;}
.wsd7{word-spacing:-2.448000px;}
.ws39{word-spacing:-2.400000px;}
.ws113{word-spacing:-2.352000px;}
.ws7e{word-spacing:-2.340000px;}
.wsfd{word-spacing:-2.256000px;}
.ws37{word-spacing:-2.220000px;}
.wsd5{word-spacing:-2.208000px;}
.ws33{word-spacing:-2.160000px;}
.wsf2{word-spacing:-2.112000px;}
.wsb4{word-spacing:-2.100000px;}
.ws117{word-spacing:-2.064000px;}
.ws89{word-spacing:-2.040000px;}
.wsf5{word-spacing:-2.016000px;}
.ws1a{word-spacing:-1.980000px;}
.wsf4{word-spacing:-1.968000px;}
.ws1b{word-spacing:-1.920000px;}
.ws110{word-spacing:-1.872000px;}
.ws25{word-spacing:-1.860000px;}
.wsda{word-spacing:-1.824000px;}
.ws2c{word-spacing:-1.800000px;}
.ws1f{word-spacing:-1.740000px;}
.ws2b{word-spacing:-1.680000px;}
.ws11{word-spacing:-1.620000px;}
.wsff{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.560000px;}
.ws102{word-spacing:-1.536000px;}
.ws24{word-spacing:-1.500000px;}
.wsd4{word-spacing:-1.488000px;}
.ws16{word-spacing:-1.440000px;}
.wsf1{word-spacing:-1.392000px;}
.ws18{word-spacing:-1.380000px;}
.ws116{word-spacing:-1.344000px;}
.ws36{word-spacing:-1.320000px;}
.wsef{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.wsea{word-spacing:-1.248000px;}
.ws23{word-spacing:-1.200000px;}
.wsf0{word-spacing:-1.152000px;}
.ws12{word-spacing:-1.140000px;}
.ws118{word-spacing:-1.104000px;}
.ws13{word-spacing:-1.080000px;}
.ws111{word-spacing:-1.056000px;}
.ws6a{word-spacing:-1.020000px;}
.wsd8{word-spacing:-1.008000px;}
.ws38{word-spacing:-0.960000px;}
.wsfb{word-spacing:-0.912000px;}
.wsc{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.840000px;}
.ws106{word-spacing:-0.816000px;}
.ws3c{word-spacing:-0.780000px;}
.wsed{word-spacing:-0.768000px;}
.wsb{word-spacing:-0.720000px;}
.ws114{word-spacing:-0.672000px;}
.ws2a{word-spacing:-0.660000px;}
.wsf3{word-spacing:-0.624000px;}
.ws1d{word-spacing:-0.600000px;}
.ws8b{word-spacing:-0.576000px;}
.ws17{word-spacing:-0.540000px;}
.wsfe{word-spacing:-0.528000px;}
.ws79{word-spacing:-0.480000px;}
.wseb{word-spacing:-0.432000px;}
.ws67{word-spacing:-0.420000px;}
.ws105{word-spacing:-0.384000px;}
.ws66{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.336000px;}
.ws68{word-spacing:-0.300000px;}
.ws104{word-spacing:-0.288000px;}
.ws22{word-spacing:-0.240000px;}
.wsf7{word-spacing:-0.192000px;}
.ws78{word-spacing:-0.180000px;}
.wsfa{word-spacing:-0.144000px;}
.ws10{word-spacing:-0.120000px;}
.wsd3{word-spacing:-0.096000px;}
.ws35{word-spacing:-0.060000px;}
.wsfc{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsd0{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws6b{word-spacing:0.096000px;}
.ws20{word-spacing:0.120000px;}
.ws86{word-spacing:0.180000px;}
.ws10f{word-spacing:0.192000px;}
.ws88{word-spacing:0.240000px;}
.wsbc{word-spacing:0.300000px;}
.ws9b{word-spacing:0.360000px;}
.wsec{word-spacing:0.384000px;}
.ws103{word-spacing:0.432000px;}
.wsbb{word-spacing:0.480000px;}
.wsb1{word-spacing:0.528000px;}
.wsc5{word-spacing:0.540000px;}
.wsdb{word-spacing:0.624000px;}
.ws6{word-spacing:0.693000px;}
.wsc8{word-spacing:0.840000px;}
.wsc2{word-spacing:1.560000px;}
.wsc7{word-spacing:1.620000px;}
.wsa{word-spacing:1.680000px;}
.ws9a{word-spacing:1.920000px;}
.ws80{word-spacing:2.220000px;}
.wsca{word-spacing:2.340000px;}
.wsf6{word-spacing:2.640000px;}
.wsc3{word-spacing:2.700000px;}
.ws85{word-spacing:2.760000px;}
.ws100{word-spacing:2.784000px;}
.wsb7{word-spacing:2.880000px;}
.ws7d{word-spacing:3.060000px;}
.wsae{word-spacing:3.072000px;}
.wsee{word-spacing:3.264000px;}
.wsc1{word-spacing:3.420000px;}
.ws81{word-spacing:3.480000px;}
.ws19{word-spacing:3.660000px;}
.ws9c{word-spacing:3.696000px;}
.ws69{word-spacing:3.840000px;}
.wsc6{word-spacing:3.900000px;}
.ws3d{word-spacing:3.936000px;}
.ws8a{word-spacing:3.984000px;}
.ws7c{word-spacing:4.020000px;}
.ws7a{word-spacing:4.080000px;}
.ws2f{word-spacing:4.140000px;}
.ws7b{word-spacing:4.260000px;}
.wsc0{word-spacing:4.680000px;}
.wscf{word-spacing:4.740000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.wscd{word-spacing:5.460000px;}
.wsce{word-spacing:5.520000px;}
.wsaf{word-spacing:6.780000px;}
.ws3b{word-spacing:7.140000px;}
.ws65{word-spacing:25.776000px;}
.ws59{word-spacing:33.552000px;}
.ws58{word-spacing:37.776000px;}
.ws4f{word-spacing:37.968000px;}
.ws75{word-spacing:38.064000px;}
.ws50{word-spacing:41.808000px;}
.ws73{word-spacing:42.048000px;}
.ws76{word-spacing:42.960000px;}
.ws71{word-spacing:46.080000px;}
.ws53{word-spacing:46.272000px;}
.ws77{word-spacing:46.464000px;}
.ws56{word-spacing:49.776000px;}
.ws54{word-spacing:50.064000px;}
.ws5e{word-spacing:50.976000px;}
.ws72{word-spacing:54.048000px;}
.ws5a{word-spacing:54.240000px;}
.ws49{word-spacing:56.208000px;}
.ws74{word-spacing:58.464000px;}
.ws6f{word-spacing:60.720000px;}
.ws4c{word-spacing:62.064000px;}
.wsa1{word-spacing:67.410000px;}
.ws4a{word-spacing:77.136000px;}
.ws70{word-spacing:77.520000px;}
.ws9d{word-spacing:77.910000px;}
.wsa4{word-spacing:79.590000px;}
.wsa3{word-spacing:86.436000px;}
.wsad{word-spacing:92.946000px;}
.wsa5{word-spacing:95.088000px;}
.ws5b{word-spacing:95.808000px;}
.ws48{word-spacing:106.224000px;}
.ws5f{word-spacing:106.608000px;}
.ws41{word-spacing:107.136000px;}
.ws9e{word-spacing:107.394000px;}
.wsa7{word-spacing:107.646000px;}
.ws3f{word-spacing:113.904000px;}
.wsaa{word-spacing:116.088000px;}
.ws5c{word-spacing:118.608000px;}
.ws60{word-spacing:120.624000px;}
.wsa8{word-spacing:126.588000px;}
.wsa0{word-spacing:128.604000px;}
.ws55{word-spacing:130.608000px;}
.ws64{word-spacing:132.624000px;}
.wsa2{word-spacing:137.088000px;}
.ws4d{word-spacing:138.624000px;}
.wsa6{word-spacing:139.524000px;}
.ws8c{word-spacing:142.272000px;}
.ws51{word-spacing:142.608000px;}
.ws5d{word-spacing:144.624000px;}
.ws9f{word-spacing:147.588000px;}
.ws8f{word-spacing:149.520000px;}
.ws95{word-spacing:154.272000px;}
.ws57{word-spacing:156.624000px;}
.ws52{word-spacing:168.624000px;}
.ws4e{word-spacing:176.640000px;}
.ws8e{word-spacing:184.176000px;}
.ws61{word-spacing:207.264000px;}
.ws90{word-spacing:208.176000px;}
.ws91{word-spacing:220.176000px;}
.ws93{word-spacing:226.176000px;}
.ws45{word-spacing:229.776000px;}
.ws98{word-spacing:236.160000px;}
.ws96{word-spacing:262.176000px;}
.ws63{word-spacing:264.624000px;}
.ws97{word-spacing:268.176000px;}
.ws8d{word-spacing:280.656000px;}
.ws62{word-spacing:285.187800px;}
.ws42{word-spacing:286.416000px;}
.ws40{word-spacing:287.568000px;}
.ws46{word-spacing:305.328000px;}
.ws47{word-spacing:307.488000px;}
.ws44{word-spacing:311.568000px;}
.ws43{word-spacing:316.416000px;}
.wsa9{word-spacing:365.526000px;}
.ws92{word-spacing:724.944000px;}
._54{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.602400px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.251600px;}
._8{width:1.080000px;}
._9{width:2.520000px;}
._7{width:3.840000px;}
._5{width:4.860000px;}
._6{width:6.240000px;}
._a{width:7.440000px;}
._b{width:9.240000px;}
._c{width:10.440000px;}
._9b{width:12.180000px;}
._7e{width:23.478000px;}
._21{width:25.352400px;}
._7f{width:26.922000px;}
._37{width:44.640000px;}
._9a{width:45.990000px;}
._4e{width:48.310800px;}
._2f{width:50.688000px;}
._38{width:53.808000px;}
._32{width:58.416000px;}
._2b{width:61.776000px;}
._3a{width:62.976000px;}
._2c{width:65.040000px;}
._59{width:66.048000px;}
._80{width:67.368000px;}
._22{width:70.320000px;}
._82{width:71.400000px;}
._25{width:73.776000px;}
._4f{width:74.832000px;}
._56{width:76.800000px;}
._26{width:77.808000px;}
._96{width:84.924000px;}
._81{width:86.478000px;}
._85{width:90.816000px;}
._57{width:93.408000px;}
._47{width:94.944000px;}
._94{width:96.606000px;}
._8c{width:101.094000px;}
._95{width:102.312000px;}
._48{width:104.064000px;}
._8f{width:105.342000px;}
._53{width:106.896000px;}
._87{width:108.216000px;}
._92{width:109.704000px;}
._4a{width:113.232000px;}
._8d{width:114.408000px;}
._1b{width:116.064000px;}
._49{width:118.608000px;}
._8a{width:119.670000px;}
._93{width:121.476000px;}
._12{width:122.544000px;}
._90{width:123.984000px;}
._1a{width:125.232000px;}
._8b{width:126.681600px;}
._20{width:128.880000px;}
._27{width:130.608000px;}
._41{width:133.296000px;}
._99{width:136.146000px;}
._55{width:138.576000px;}
._88{width:139.872000px;}
._42{width:141.216000px;}
._34{width:143.376000px;}
._45{width:144.912000px;}
._51{width:146.064000px;}
._1d{width:147.072000px;}
._10{width:148.416000px;}
._60{width:150.144000px;}
._98{width:151.368000px;}
._31{width:153.792000px;}
._28{width:156.624000px;}
._3c{width:158.640000px;}
._5b{width:165.792000px;}
._4c{width:167.952000px;}
._3b{width:169.302000px;}
._40{width:178.080000px;}
._5c{width:180.048000px;}
._91{width:182.364000px;}
._24{width:185.184000px;}
._67{width:186.288000px;}
._2e{width:187.824000px;}
._62{width:189.408000px;}
._44{width:190.512000px;}
._35{width:192.624000px;}
._4d{width:194.496000px;}
._1c{width:196.320000px;}
._46{width:199.824000px;}
._1f{width:201.792000px;}
._2a{width:207.024000px;}
._65{width:208.272000px;}
._6c{width:211.248000px;}
._64{width:218.160000px;}
._6e{width:219.216000px;}
._3d{width:222.336000px;}
._23{width:224.984400px;}
._17{width:229.502400px;}
._97{width:231.924000px;}
._7d{width:244.032000px;}
._61{width:245.136000px;}
._11{width:247.584000px;}
._76{width:250.176000px;}
._4b{width:251.280000px;}
._77{width:252.434400px;}
._7b{width:254.304000px;}
._5a{width:256.704000px;}
._3e{width:260.640000px;}
._71{width:262.176000px;}
._3f{width:263.522400px;}
._30{width:265.200000px;}
._f{width:266.400000px;}
._86{width:270.480000px;}
._36{width:273.840000px;}
._72{width:276.192000px;}
._7c{width:280.656000px;}
._5f{width:285.072000px;}
._73{width:288.192000px;}
._69{width:292.656000px;}
._43{width:295.296000px;}
._74{width:300.672000px;}
._1e{width:303.888000px;}
._2d{width:312.624000px;}
._83{width:314.202000px;}
._14{width:315.936000px;}
._58{width:316.992000px;}
._50{width:321.792000px;}
._29{width:325.488000px;}
._18{width:327.936000px;}
._5d{width:333.552000px;}
._68{width:336.192000px;}
._89{width:337.554000px;}
._16{width:339.120000px;}
._8e{width:348.012000px;}
._19{width:349.152000px;}
._15{width:357.984000px;}
._84{width:360.864000px;}
._33{width:367.584000px;}
._13{width:370.032000px;}
._52{width:380.928000px;}
._39{width:392.928000px;}
._e{width:439.872000px;}
._6f{width:460.320000px;}
._75{width:467.862000px;}
._5e{width:469.104000px;}
._66{width:553.680000px;}
._70{width:560.256000px;}
._6d{width:638.304000px;}
._6a{width:672.912000px;}
._79{width:684.912000px;}
._6b{width:699.600000px;}
._7a{width:707.616000px;}
._78{width:716.466600px;}
._63{width:740.448000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:24.486000px;}
.fs6{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs5{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y118{bottom:83.262600px;}
.yad{bottom:83.410800px;}
.y1ae{bottom:83.635350px;}
.y66{bottom:83.770350px;}
.y17c{bottom:83.772600px;}
.y7e{bottom:84.192750px;}
.yf7{bottom:84.735900px;}
.y141{bottom:85.288350px;}
.y2d{bottom:87.912300px;}
.y1d4{bottom:89.121900px;}
.yf4{bottom:92.666700px;}
.y147{bottom:93.244350px;}
.y215{bottom:95.263500px;}
.y117{bottom:99.762600px;}
.yac{bottom:99.910800px;}
.y7d{bottom:99.936750px;}
.yf6{bottom:100.479900px;}
.y140{bottom:101.038350px;}
.y1ad{bottom:101.635350px;}
.y65{bottom:101.770350px;}
.y17b{bottom:101.772600px;}
.y2c{bottom:102.908550px;}
.y1d3{bottom:104.121900px;}
.yf1{bottom:105.722700px;}
.yf3{bottom:108.914700px;}
.y146{bottom:108.988350px;}
.y214{bottom:110.263500px;}
.y7c{bottom:115.680750px;}
.y116{bottom:116.257050px;}
.y13f{bottom:116.782350px;}
.y2b{bottom:117.904800px;}
.y1d2{bottom:119.121900px;}
.y1ac{bottom:119.635350px;}
.y64{bottom:119.770350px;}
.y17a{bottom:119.772600px;}
.yf2{bottom:125.162700px;}
.y213{bottom:125.263500px;}
.yab{bottom:125.422800px;}
.y1d1{bottom:134.121900px;}
.y1ab{bottom:137.635350px;}
.y63{bottom:137.770350px;}
.y179{bottom:137.772600px;}
.y212{bottom:140.263500px;}
.yaa{bottom:141.670800px;}
.y115{bottom:141.772950px;}
.y13e{bottom:142.026000px;}
.y13c{bottom:146.215500px;}
.y1d0{bottom:149.121900px;}
.yf0{bottom:154.166700px;}
.y211{bottom:155.263500px;}
.y1aa{bottom:155.635350px;}
.y62{bottom:155.770350px;}
.y178{bottom:155.772600px;}
.y13d{bottom:156.778500px;}
.ya9{bottom:157.918800px;}
.y114{bottom:158.024850px;}
.y1cf{bottom:164.121900px;}
.y28{bottom:167.746800px;}
.y210{bottom:170.263500px;}
.yef{bottom:170.414700px;}
.y1a9{bottom:173.635350px;}
.y61{bottom:173.770350px;}
.y177{bottom:173.772600px;}
.ya8{bottom:174.166800px;}
.y113{bottom:174.308250px;}
.y1ce{bottom:179.121900px;}
.y13b{bottom:184.288500px;}
.y20f{bottom:185.263500px;}
.y27{bottom:185.746800px;}
.yee{bottom:186.662700px;}
.ya7{bottom:190.414800px;}
.y112{bottom:190.556250px;}
.yea{bottom:191.582700px;}
.y1a8{bottom:191.635350px;}
.y60{bottom:191.770350px;}
.y176{bottom:191.772600px;}
.y1cd{bottom:194.121900px;}
.y13a{bottom:199.293000px;}
.y20e{bottom:200.263500px;}
.yed{bottom:202.910700px;}
.y26{bottom:203.746800px;}
.ya6{bottom:206.662800px;}
.y111{bottom:206.804250px;}
.y1cc{bottom:209.121900px;}
.y1a7{bottom:209.635350px;}
.y5f{bottom:209.770350px;}
.y175{bottom:209.772600px;}
.y20d{bottom:215.263500px;}
.yec{bottom:219.158700px;}
.y9e{bottom:219.746100px;}
.y25{bottom:221.746800px;}
.ya5{bottom:222.962100px;}
.y110{bottom:223.052250px;}
.y1cb{bottom:224.121900px;}
.y139{bottom:226.802550px;}
.y1a6{bottom:227.635350px;}
.y5e{bottom:227.770350px;}
.y174{bottom:227.772600px;}
.y20c{bottom:230.263500px;}
.yeb{bottom:235.406700px;}
.y7f{bottom:238.342350px;}
.y1ca{bottom:239.121900px;}
.ya4{bottom:239.210100px;}
.y10f{bottom:239.300250px;}
.y2a{bottom:239.746800px;}
.y109{bottom:240.716250px;}
.y138{bottom:241.554450px;}
.y20b{bottom:245.263500px;}
.y1a5{bottom:245.635350px;}
.y5d{bottom:245.770350px;}
.y173{bottom:245.772600px;}
.y1c9{bottom:254.121900px;}
.ya3{bottom:255.458100px;}
.y10e{bottom:255.548250px;}
.y137{bottom:256.293150px;}
.y24{bottom:257.343900px;}
.y29{bottom:257.746800px;}
.y20a{bottom:260.263500px;}
.y1a4{bottom:263.635350px;}
.y5c{bottom:263.770350px;}
.y172{bottom:263.772600px;}
.ye9{bottom:266.918700px;}
.y1c8{bottom:269.121900px;}
.y136{bottom:271.045650px;}
.ya2{bottom:271.706100px;}
.y209{bottom:275.263500px;}
.y1a3{bottom:281.635350px;}
.y5b{bottom:281.770350px;}
.y171{bottom:281.772600px;}
.y1c7{bottom:284.121900px;}
.y10d{bottom:284.552250px;}
.y135{bottom:285.798150px;}
.ya1{bottom:287.954100px;}
.y208{bottom:290.263500px;}
.y1c6{bottom:299.121900px;}
.y1a2{bottom:299.635350px;}
.y5a{bottom:299.770350px;}
.y170{bottom:299.772600px;}
.y134{bottom:300.550650px;}
.ye8{bottom:301.832100px;}
.ya0{bottom:304.202100px;}
.y207{bottom:305.263500px;}
.y10c{bottom:313.556250px;}
.y1c5{bottom:314.121900px;}
.y133{bottom:315.303150px;}
.y1a1{bottom:317.635350px;}
.y59{bottom:317.770350px;}
.y16f{bottom:317.772600px;}
.y206{bottom:320.263500px;}
.y9f{bottom:320.450100px;}
.ye7{bottom:321.332100px;}
.y1c4{bottom:329.121900px;}
.y10b{bottom:329.804250px;}
.y132{bottom:330.307650px;}
.y23{bottom:332.210250px;}
.y205{bottom:335.263500px;}
.y1a0{bottom:335.635350px;}
.y58{bottom:335.770350px;}
.y16e{bottom:335.772600px;}
.y1c3{bottom:344.121900px;}
.y131{bottom:345.060150px;}
.y10a{bottom:346.052250px;}
.y9d{bottom:349.454100px;}
.y204{bottom:350.263500px;}
.y19f{bottom:353.635350px;}
.y57{bottom:353.770350px;}
.y16d{bottom:353.772600px;}
.y1c2{bottom:359.121900px;}
.y22{bottom:359.555250px;}
.y203{bottom:365.263500px;}
.y9c{bottom:365.702100px;}
.y108{bottom:368.682450px;}
.y19e{bottom:371.635350px;}
.ye6{bottom:371.642100px;}
.y56{bottom:371.770350px;}
.y16c{bottom:371.772600px;}
.yc3{bottom:371.912100px;}
.y12d{bottom:372.525150px;}
.y130{bottom:372.570150px;}
.y1c1{bottom:374.121900px;}
.y21{bottom:377.555250px;}
.y12c{bottom:380.032650px;}
.y202{bottom:380.263500px;}
.y9b{bottom:381.950100px;}
.y121{bottom:384.096150px;}
.y12e{bottom:387.529650px;}
.y12f{bottom:387.574650px;}
.y1c0{bottom:389.121900px;}
.y19d{bottom:389.635350px;}
.ye5{bottom:389.642100px;}
.y55{bottom:389.770350px;}
.y16b{bottom:389.772600px;}
.yc2{bottom:389.912100px;}
.y96{bottom:394.994100px;}
.y201{bottom:395.263500px;}
.y20{bottom:395.555250px;}
.y9a{bottom:398.198100px;}
.y1bf{bottom:404.121900px;}
.y19c{bottom:407.635350px;}
.ye4{bottom:407.642100px;}
.y54{bottom:407.770350px;}
.y16a{bottom:407.772600px;}
.yc1{bottom:407.912100px;}
.y107{bottom:409.080000px;}
.y200{bottom:410.263500px;}
.y1f{bottom:413.555250px;}
.y99{bottom:414.446100px;}
.y12b{bottom:415.039650px;}
.y145{bottom:415.336350px;}
.y1be{bottom:419.121900px;}
.y1ff{bottom:425.263500px;}
.y106{bottom:425.332050px;}
.y19b{bottom:425.635350px;}
.ye3{bottom:425.642100px;}
.y53{bottom:425.770350px;}
.y169{bottom:425.772600px;}
.yc0{bottom:425.912100px;}
.y12a{bottom:429.792150px;}
.y98{bottom:430.694100px;}
.y144{bottom:431.080350px;}
.y1e{bottom:431.555250px;}
.y1bd{bottom:434.121900px;}
.y1fe{bottom:440.263500px;}
.y105{bottom:441.619350px;}
.y19a{bottom:443.635350px;}
.ye2{bottom:443.642100px;}
.y52{bottom:443.770350px;}
.y168{bottom:443.772600px;}
.ybf{bottom:443.912100px;}
.y129{bottom:444.544650px;}
.y97{bottom:446.942100px;}
.y1bc{bottom:449.121900px;}
.y1d{bottom:449.555250px;}
.y1fd{bottom:455.263500px;}
.y104{bottom:457.867350px;}
.y128{bottom:459.297150px;}
.y199{bottom:461.635350px;}
.ye1{bottom:461.642100px;}
.y51{bottom:461.770350px;}
.y167{bottom:461.772600px;}
.ybe{bottom:461.912100px;}
.y1bb{bottom:464.121900px;}
.y1c{bottom:467.555250px;}
.y1fc{bottom:470.263500px;}
.y127{bottom:474.049650px;}
.y103{bottom:474.115350px;}
.y95{bottom:478.454100px;}
.y1ba{bottom:479.121900px;}
.y198{bottom:479.635350px;}
.ye0{bottom:479.642100px;}
.y50{bottom:479.770350px;}
.y166{bottom:479.772600px;}
.ybd{bottom:479.912100px;}
.y1fb{bottom:485.263500px;}
.y1b{bottom:485.555250px;}
.y126{bottom:488.802150px;}
.y102{bottom:490.363350px;}
.y1b9{bottom:494.121900px;}
.y197{bottom:497.635350px;}
.ydf{bottom:497.642100px;}
.y4f{bottom:497.770350px;}
.y165{bottom:497.772600px;}
.ybc{bottom:497.912100px;}
.y1fa{bottom:500.263500px;}
.y125{bottom:503.554650px;}
.y1a{bottom:503.555250px;}
.y101{bottom:506.611350px;}
.y1b8{bottom:509.121900px;}
.y94{bottom:513.349200px;}
.y1f9{bottom:515.263500px;}
.y196{bottom:515.635350px;}
.yde{bottom:515.642100px;}
.y4e{bottom:515.770350px;}
.y164{bottom:515.772600px;}
.ybb{bottom:515.912100px;}
.yfa{bottom:516.151350px;}
.y124{bottom:518.307150px;}
.y19{bottom:521.555250px;}
.y100{bottom:522.859350px;}
.y1b7{bottom:524.121900px;}
.y1f8{bottom:530.263500px;}
.y93{bottom:532.849200px;}
.y123{bottom:533.059650px;}
.y195{bottom:533.635350px;}
.ydd{bottom:533.642100px;}
.y4d{bottom:533.770350px;}
.y163{bottom:533.772600px;}
.yba{bottom:533.912100px;}
.y1b6{bottom:539.121900px;}
.y18{bottom:539.555250px;}
.y1f7{bottom:545.263500px;}
.y122{bottom:547.812150px;}
.y194{bottom:551.230350px;}
.ydc{bottom:551.642100px;}
.y4c{bottom:551.770350px;}
.y162{bottom:551.772600px;}
.yff{bottom:551.863350px;}
.yb9{bottom:551.912100px;}
.y1b5{bottom:554.121900px;}
.y17{bottom:557.555250px;}
.y1f6{bottom:560.263500px;}
.ydb{bottom:569.642100px;}
.y4b{bottom:569.770350px;}
.y161{bottom:569.772600px;}
.yb8{bottom:569.912100px;}
.y1f5{bottom:575.263500px;}
.y11f{bottom:575.322150px;}
.y11e{bottom:575.332650px;}
.y11d{bottom:575.343150px;}
.y11c{bottom:575.353650px;}
.y16{bottom:575.555250px;}
.yfe{bottom:580.867350px;}
.y92{bottom:584.989050px;}
.y1b4{bottom:587.230350px;}
.y193{bottom:587.635350px;}
.yda{bottom:587.642100px;}
.y4a{bottom:587.770350px;}
.y160{bottom:587.772600px;}
.yb7{bottom:587.912100px;}
.y1f4{bottom:590.263500px;}
.y120{bottom:590.326650px;}
.y11b{bottom:590.358150px;}
.y91{bottom:593.245050px;}
.y15{bottom:593.555250px;}
.yfd{bottom:597.115350px;}
.y1f3{bottom:605.263500px;}
.y192{bottom:605.635350px;}
.yd9{bottom:605.642100px;}
.y49{bottom:605.770350px;}
.y15f{bottom:605.772600px;}
.yb6{bottom:605.912100px;}
.y14{bottom:611.555250px;}
.yfc{bottom:613.363350px;}
.y90{bottom:617.749050px;}
.y1f2{bottom:620.263500px;}
.y11a{bottom:621.502650px;}
.y191{bottom:623.635350px;}
.yd8{bottom:623.642100px;}
.y48{bottom:623.770350px;}
.y15e{bottom:623.772600px;}
.yb5{bottom:623.912100px;}
.y8f{bottom:626.005050px;}
.yfb{bottom:629.611350px;}
.y1f1{bottom:635.263500px;}
.y190{bottom:641.635350px;}
.yd7{bottom:641.642100px;}
.y47{bottom:641.770350px;}
.y15d{bottom:641.772600px;}
.yb4{bottom:641.912100px;}
.y13{bottom:644.690250px;}
.y1f0{bottom:650.263500px;}
.y8e{bottom:650.509050px;}
.y8d{bottom:658.765050px;}
.y1b3{bottom:659.365350px;}
.y18f{bottom:659.635350px;}
.yd6{bottom:659.642100px;}
.y46{bottom:659.770350px;}
.y15c{bottom:659.772600px;}
.yb3{bottom:659.912100px;}
.yf9{bottom:661.123350px;}
.y1ef{bottom:665.263500px;}
.y143{bottom:666.316350px;}
.y12{bottom:671.818050px;}
.y18e{bottom:677.635350px;}
.yd5{bottom:677.642100px;}
.y45{bottom:677.770350px;}
.y15b{bottom:677.772600px;}
.yb2{bottom:677.912100px;}
.y1ee{bottom:680.263500px;}
.y142{bottom:682.060350px;}
.y8c{bottom:683.257050px;}
.y11{bottom:683.518050px;}
.y8b{bottom:691.501050px;}
.y1ed{bottom:695.263500px;}
.y18d{bottom:695.635350px;}
.yd4{bottom:695.642100px;}
.y44{bottom:695.770350px;}
.y15a{bottom:695.772600px;}
.yb1{bottom:695.912100px;}
.yf8{bottom:696.025350px;}
.y1ec{bottom:710.263500px;}
.y1b2{bottom:713.365350px;}
.y18c{bottom:713.635350px;}
.yd3{bottom:713.642100px;}
.y43{bottom:713.770350px;}
.y159{bottom:713.772600px;}
.yb0{bottom:713.912100px;}
.y7b{bottom:713.920350px;}
.y10{bottom:715.233600px;}
.y8a{bottom:716.005050px;}
.y89{bottom:724.261050px;}
.y1eb{bottom:725.263500px;}
.y18b{bottom:731.635350px;}
.yd2{bottom:731.642100px;}
.y42{bottom:731.770350px;}
.y158{bottom:731.772600px;}
.y7a{bottom:731.920350px;}
.yf{bottom:734.158800px;}
.y1ea{bottom:740.263500px;}
.ye{bottom:742.233600px;}
.y88{bottom:748.765050px;}
.y18a{bottom:749.635350px;}
.yd1{bottom:749.642100px;}
.y41{bottom:749.770350px;}
.y157{bottom:749.772600px;}
.y79{bottom:749.920350px;}
.y1e9{bottom:755.263500px;}
.y87{bottom:757.021050px;}
.yd{bottom:761.158800px;}
.y189{bottom:767.635350px;}
.yd0{bottom:767.642100px;}
.y40{bottom:767.770350px;}
.y156{bottom:767.772600px;}
.y78{bottom:767.920350px;}
.yc{bottom:769.233600px;}
.y1e8{bottom:770.263500px;}
.y86{bottom:781.513050px;}
.yb{bottom:782.733600px;}
.y1e7{bottom:785.263500px;}
.y1b1{bottom:785.365350px;}
.y188{bottom:785.635350px;}
.ycf{bottom:785.642100px;}
.y3f{bottom:785.770350px;}
.y155{bottom:785.772600px;}
.y77{bottom:785.920350px;}
.y85{bottom:789.757050px;}
.y1e6{bottom:800.263500px;}
.ya{bottom:801.658950px;}
.y187{bottom:803.635350px;}
.y3e{bottom:803.770350px;}
.y154{bottom:803.772600px;}
.y76{bottom:803.920350px;}
.y1e5{bottom:815.263500px;}
.yce{bottom:821.237100px;}
.yaf{bottom:821.515350px;}
.y186{bottom:821.635350px;}
.y3d{bottom:821.770350px;}
.y153{bottom:821.772600px;}
.y75{bottom:821.920350px;}
.y84{bottom:829.513050px;}
.y1e4{bottom:830.263500px;}
.y9{bottom:830.380950px;}
.y1b0{bottom:839.365350px;}
.y185{bottom:839.635350px;}
.y3c{bottom:839.770350px;}
.y152{bottom:839.772600px;}
.y74{bottom:839.920350px;}
.y1e3{bottom:845.263500px;}
.y8{bottom:851.380950px;}
.y184{bottom:857.635350px;}
.y3b{bottom:857.770350px;}
.y151{bottom:857.772600px;}
.y73{bottom:857.920350px;}
.y1e2{bottom:860.263500px;}
.y83{bottom:864.415350px;}
.y1e1{bottom:875.263500px;}
.y183{bottom:875.635350px;}
.y3a{bottom:875.770350px;}
.y150{bottom:875.772600px;}
.ycd{bottom:875.777100px;}
.y72{bottom:875.920350px;}
.y82{bottom:883.915350px;}
.y1e0{bottom:890.263500px;}
.y6b{bottom:893.365350px;}
.y182{bottom:893.635350px;}
.y39{bottom:893.770350px;}
.y14f{bottom:893.772600px;}
.ycc{bottom:893.777100px;}
.y71{bottom:893.920350px;}
.y7{bottom:897.543600px;}
.y81{bottom:903.415350px;}
.y1df{bottom:905.263500px;}
.y6a{bottom:911.365350px;}
.y181{bottom:911.635350px;}
.y38{bottom:911.770350px;}
.y14e{bottom:911.772600px;}
.ycb{bottom:911.777100px;}
.y70{bottom:911.920350px;}
.y1de{bottom:920.263500px;}
.y1af{bottom:929.365350px;}
.y180{bottom:929.635350px;}
.y37{bottom:929.770350px;}
.y14d{bottom:929.772600px;}
.yca{bottom:929.777100px;}
.y6f{bottom:929.920350px;}
.y6{bottom:934.004400px;}
.y1dd{bottom:935.263500px;}
.y69{bottom:947.230350px;}
.y36{bottom:947.770350px;}
.y14c{bottom:947.772600px;}
.yc9{bottom:947.777100px;}
.y6e{bottom:947.920350px;}
.y1dc{bottom:950.263500px;}
.y17f{bottom:965.230350px;}
.y1db{bottom:965.263500px;}
.y35{bottom:965.770350px;}
.y14b{bottom:965.772600px;}
.yc8{bottom:965.777100px;}
.y6d{bottom:965.920350px;}
.y5{bottom:970.465200px;}
.y1da{bottom:980.263500px;}
.y34{bottom:983.770350px;}
.y14a{bottom:983.772600px;}
.yc7{bottom:983.777100px;}
.y1d9{bottom:995.263500px;}
.y6c{bottom:1001.515350px;}
.y33{bottom:1001.770350px;}
.y149{bottom:1001.772600px;}
.yc6{bottom:1001.777100px;}
.y4{bottom:1006.926000px;}
.y1d8{bottom:1010.263500px;}
.y32{bottom:1019.770350px;}
.y17e{bottom:1019.772600px;}
.yc5{bottom:1019.777100px;}
.y1d7{bottom:1025.263500px;}
.y148{bottom:1037.367600px;}
.y31{bottom:1037.770350px;}
.y17d{bottom:1037.772600px;}
.yc4{bottom:1037.777100px;}
.y1d6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.721650px;}
.y1d5{bottom:1132.413900px;}
.y80{bottom:1132.414350px;}
.y67{bottom:1132.418700px;}
.y68{bottom:1132.421700px;}
.y119{bottom:1132.422600px;}
.y216{bottom:1132.423500px;}
.yae{bottom:1132.438800px;}
.yf5{bottom:1132.454700px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h1d{height:29.182617px;}
.h22{height:29.184417px;}
.h21{height:29.185017px;}
.h20{height:29.237817px;}
.h2{height:30.577148px;}
.h4{height:32.761230px;}
.hf{height:32.783203px;}
.h8{height:32.805176px;}
.h18{height:33.328125px;}
.h19{height:33.335363px;}
.h1a{height:33.335962px;}
.h14{height:33.351562px;}
.h1c{height:33.373762px;}
.ha{height:34.945312px;}
.h12{height:34.968750px;}
.h10{height:34.992188px;}
.h15{height:41.660156px;}
.he{height:41.689453px;}
.h13{height:42.949219px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h11{height:44.909297px;}
.h3{height:56.786133px;}
.h6{height:57.121316px;}
.h1f{height:59.170617px;}
.h17{height:66.327563px;}
.h16{height:66.375562px;}
.h1b{height:68.878762px;}
.h1e{height:89.158617px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:70.582650px;}
.xa{left:76.535400px;}
.x16{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x29{left:99.921300px;}
.x45{left:102.047400px;}
.x3{left:106.299150px;}
.xb{left:110.555400px;}
.x43{left:123.307050px;}
.x4{left:125.427900px;}
.x6{left:131.811000px;}
.x38{left:150.932850px;}
.x11{left:165.985350px;}
.x30{left:184.953300px;}
.x40{left:190.130400px;}
.x3d{left:198.877650px;}
.x5{left:212.876400px;}
.x14{left:238.332900px;}
.x32{left:245.432850px;}
.x31{left:250.924350px;}
.x22{left:255.541350px;}
.x1a{left:270.529350px;}
.x21{left:278.881350px;}
.x24{left:280.021350px;}
.x26{left:281.142300px;}
.x23{left:283.705350px;}
.x1d{left:285.457350px;}
.x1b{left:287.473350px;}
.x1c{left:288.805350px;}
.x25{left:292.134300px;}
.x2c{left:304.629300px;}
.x2a{left:306.633300px;}
.x2b{left:307.977300px;}
.x1f{left:312.517350px;}
.x39{left:317.998350px;}
.x27{left:324.294300px;}
.x2f{left:326.637300px;}
.x17{left:329.857350px;}
.x19{left:332.857350px;}
.x18{left:334.069350px;}
.x1e{left:335.977350px;}
.x20{left:342.265350px;}
.x2d{left:348.765300px;}
.x3b{left:363.652350px;}
.x3a{left:370.655850px;}
.x2e{left:382.641300px;}
.x3c{left:425.086650px;}
.x33{left:435.587850px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x12{left:478.330350px;}
.x7{left:480.471000px;}
.x42{left:482.598600px;}
.xd{left:491.105400px;}
.x44{left:503.863050px;}
.x13{left:512.350350px;}
.x34{left:546.635850px;}
.x41{left:574.835400px;}
.x28{left:612.930900px;}
.x35{left:639.161850px;}
.x10{left:663.492300px;}
.x37{left:691.231350px;}
.x2{left:693.365400px;}
.x36{left:702.602850px;}
.x3e{left:721.717650px;}
.xe{left:728.391600px;}
.x3f{left:743.868150px;}
.x15{left:749.652900px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.426667pt;}
.v5{vertical-align:-8.457600pt;}
.v8{vertical-align:-7.228800pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.440000pt;}
.v9{vertical-align:7.278400pt;}
.v6{vertical-align:8.317867pt;}
.v1{vertical-align:27.005867pt;}
.v3{vertical-align:29.354667pt;}
.v7{vertical-align:31.579733pt;}
.ls4d{letter-spacing:-1.578667pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls12{letter-spacing:-0.680000pt;}
.ls10{letter-spacing:-0.616000pt;}
.ls7f{letter-spacing:-0.554667pt;}
.ls69{letter-spacing:-0.426667pt;}
.ls9b{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.359128pt;}
.ls9a{letter-spacing:-0.341333pt;}
.ls5d{letter-spacing:-0.320000pt;}
.ls6a{letter-spacing:-0.266667pt;}
.ls57{letter-spacing:-0.213333pt;}
.lsa4{letter-spacing:-0.170667pt;}
.ls41{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.106667pt;}
.lsa6{letter-spacing:-0.085333pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls7e{letter-spacing:-0.042667pt;}
.lse{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.003680pt;}
.ls5e{letter-spacing:0.003733pt;}
.ls5c{letter-spacing:0.007467pt;}
.ls5f{letter-spacing:0.012267pt;}
.ls61{letter-spacing:0.018133pt;}
.ls5b{letter-spacing:0.028800pt;}
.ls78{letter-spacing:0.042667pt;}
.ls29{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.085333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls51{letter-spacing:0.124373pt;}
.ls8e{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls8b{letter-spacing:0.170667pt;}
.ls4e{letter-spacing:0.208533pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls95{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.266667pt;}
.ls48{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls86{letter-spacing:0.341333pt;}
.ls34{letter-spacing:0.373333pt;}
.ls81{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls90{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls56{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.533333pt;}
.ls89{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.586667pt;}
.ls9f{letter-spacing:0.597333pt;}
.ls9{letter-spacing:0.640000pt;}
.ls83{letter-spacing:0.682667pt;}
.ls18{letter-spacing:0.693333pt;}
.ls98{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.746667pt;}
.lsa7{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls96{letter-spacing:0.810667pt;}
.ls44{letter-spacing:0.853333pt;}
.ls7a{letter-spacing:0.896000pt;}
.ls8{letter-spacing:0.906667pt;}
.ls9d{letter-spacing:0.938667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls97{letter-spacing:0.981333pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.024000pt;}
.ls2d{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.088267pt;}
.ls80{letter-spacing:1.109333pt;}
.ls31{letter-spacing:1.120000pt;}
.ls84{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.173333pt;}
.lsa1{letter-spacing:1.194667pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls87{letter-spacing:1.237333pt;}
.ls23{letter-spacing:1.280000pt;}
.ls76{letter-spacing:1.322667pt;}
.ls6{letter-spacing:1.333333pt;}
.ls93{letter-spacing:1.365333pt;}
.ls20{letter-spacing:1.386667pt;}
.ls91{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.440000pt;}
.ls35{letter-spacing:1.493333pt;}
.ls28{letter-spacing:1.546667pt;}
.ls36{letter-spacing:1.600000pt;}
.ls82{letter-spacing:1.621333pt;}
.ls2e{letter-spacing:1.653333pt;}
.lsa5{letter-spacing:1.664000pt;}
.ls25{letter-spacing:1.706667pt;}
.ls8a{letter-spacing:1.749333pt;}
.lsc{letter-spacing:1.760000pt;}
.ls54{letter-spacing:1.813333pt;}
.lsa2{letter-spacing:1.834667pt;}
.ls14{letter-spacing:1.866667pt;}
.ls88{letter-spacing:1.877333pt;}
.ls52{letter-spacing:1.905067pt;}
.ls46{letter-spacing:1.920000pt;}
.ls77{letter-spacing:1.962667pt;}
.ls2a{letter-spacing:1.973333pt;}
.ls94{letter-spacing:2.005333pt;}
.ls16{letter-spacing:2.026667pt;}
.lsa3{letter-spacing:2.048000pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls8f{letter-spacing:2.090667pt;}
.ls45{letter-spacing:2.133333pt;}
.ls79{letter-spacing:2.176000pt;}
.ls49{letter-spacing:2.186667pt;}
.ls8d{letter-spacing:2.218667pt;}
.ls22{letter-spacing:2.240000pt;}
.ls92{letter-spacing:2.261333pt;}
.ls3c{letter-spacing:2.293333pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls7c{letter-spacing:2.389333pt;}
.ls3a{letter-spacing:2.400000pt;}
.lsa8{letter-spacing:2.432000pt;}
.ls47{letter-spacing:2.453333pt;}
.lsa0{letter-spacing:2.474667pt;}
.ls3e{letter-spacing:2.506667pt;}
.ls2f{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.613333pt;}
.ls8c{letter-spacing:2.645333pt;}
.ls3b{letter-spacing:2.666667pt;}
.ls99{letter-spacing:2.688000pt;}
.ls37{letter-spacing:2.720000pt;}
.ls68{letter-spacing:2.773333pt;}
.ls74{letter-spacing:2.816000pt;}
.ls19{letter-spacing:2.826667pt;}
.ls38{letter-spacing:2.880000pt;}
.ls66{letter-spacing:2.933333pt;}
.ls73{letter-spacing:2.944000pt;}
.ls6e{letter-spacing:2.986667pt;}
.ls9c{letter-spacing:3.029333pt;}
.ls26{letter-spacing:3.040000pt;}
.ls4f{letter-spacing:3.093333pt;}
.ls6b{letter-spacing:3.200000pt;}
.ls5a{letter-spacing:3.253333pt;}
.ls3f{letter-spacing:3.306667pt;}
.ls1d{letter-spacing:3.360000pt;}
.ls53{letter-spacing:3.413333pt;}
.ls70{letter-spacing:3.466667pt;}
.ls63{letter-spacing:3.520000pt;}
.ls60{letter-spacing:3.541333pt;}
.ls6d{letter-spacing:3.626667pt;}
.ls9e{letter-spacing:3.754667pt;}
.ls7b{letter-spacing:3.882667pt;}
.ls64{letter-spacing:3.893333pt;}
.ls7d{letter-spacing:4.000000pt;}
.ls59{letter-spacing:4.053333pt;}
.ls67{letter-spacing:4.160000pt;}
.ls62{letter-spacing:4.266667pt;}
.ls43{letter-spacing:4.320000pt;}
.ls30{letter-spacing:4.373333pt;}
.ls42{letter-spacing:4.426667pt;}
.ls6c{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.586667pt;}
.ls72{letter-spacing:4.906667pt;}
.ls6f{letter-spacing:4.960000pt;}
.ls55{letter-spacing:5.173333pt;}
.ls32{letter-spacing:5.546667pt;}
.ls65{letter-spacing:6.453333pt;}
.ls71{letter-spacing:6.826667pt;}
.ls0{letter-spacing:51.947200pt;}
.ls1{letter-spacing:52.199712pt;}
.ls2{letter-spacing:52.200245pt;}
.ls4{letter-spacing:52.918112pt;}
.ls3{letter-spacing:52.918645pt;}
.ls4c{letter-spacing:59.306667pt;}
.ls4b{letter-spacing:61.824000pt;}
.ls50{letter-spacing:69.376000pt;}
.wsf{word-spacing:-16.000000pt;}
.wsbd{word-spacing:-15.306667pt;}
.wsbf{word-spacing:-14.933333pt;}
.ws6d{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.293333pt;}
.ws6e{word-spacing:-13.920000pt;}
.wsb3{word-spacing:-13.760000pt;}
.wsd{word-spacing:-13.546667pt;}
.wsbe{word-spacing:-13.386667pt;}
.wsb2{word-spacing:-13.333333pt;}
.wse0{word-spacing:-12.629333pt;}
.wse6{word-spacing:-12.416000pt;}
.ws10c{word-spacing:-12.373333pt;}
.wse2{word-spacing:-12.032000pt;}
.ws2{word-spacing:-11.861333pt;}
.wse7{word-spacing:-11.690667pt;}
.ws108{word-spacing:-11.520000pt;}
.ws11a{word-spacing:-11.477333pt;}
.wsde{word-spacing:-11.306667pt;}
.ws10d{word-spacing:-11.221333pt;}
.ws109{word-spacing:-11.178667pt;}
.wse1{word-spacing:-11.136000pt;}
.ws1{word-spacing:-11.120000pt;}
.ws10a{word-spacing:-11.093333pt;}
.wsdf{word-spacing:-11.050667pt;}
.wse8{word-spacing:-10.880000pt;}
.wse5{word-spacing:-10.837333pt;}
.ws10b{word-spacing:-10.794667pt;}
.ws4b{word-spacing:-10.666667pt;}
.wse9{word-spacing:-10.624000pt;}
.wse4{word-spacing:-10.453333pt;}
.wsdd{word-spacing:-10.325333pt;}
.wse3{word-spacing:-10.282667pt;}
.wsac{word-spacing:-9.333333pt;}
.ws84{word-spacing:-8.861600pt;}
.ws0{word-spacing:-8.717016pt;}
.ws6c{word-spacing:-7.897707pt;}
.wsb8{word-spacing:-6.453333pt;}
.ws94{word-spacing:-6.218667pt;}
.wsab{word-spacing:-5.441333pt;}
.ws21{word-spacing:-4.586667pt;}
.ws27{word-spacing:-4.426667pt;}
.wsb0{word-spacing:-4.266667pt;}
.ws5{word-spacing:-4.163733pt;}
.ws99{word-spacing:-4.053333pt;}
.wscc{word-spacing:-4.000000pt;}
.wsb6{word-spacing:-3.893333pt;}
.wsd9{word-spacing:-3.882667pt;}
.ws112{word-spacing:-3.754667pt;}
.wsc9{word-spacing:-3.626667pt;}
.wsb5{word-spacing:-3.520000pt;}
.wscb{word-spacing:-3.466667pt;}
.wsc4{word-spacing:-3.413333pt;}
.ws83{word-spacing:-3.306667pt;}
.ws82{word-spacing:-3.093333pt;}
.ws10e{word-spacing:-3.072000pt;}
.ws1e{word-spacing:-3.040000pt;}
.wsd6{word-spacing:-2.986667pt;}
.wsd1{word-spacing:-2.944000pt;}
.wsb9{word-spacing:-2.933333pt;}
.ws2e{word-spacing:-2.880000pt;}
.wsba{word-spacing:-2.826667pt;}
.wsd2{word-spacing:-2.816000pt;}
.ws2d{word-spacing:-2.773333pt;}
.ws119{word-spacing:-2.730667pt;}
.ws32{word-spacing:-2.720000pt;}
.ws107{word-spacing:-2.688000pt;}
.ws31{word-spacing:-2.666667pt;}
.wsf8{word-spacing:-2.645333pt;}
.ws29{word-spacing:-2.613333pt;}
.ws4{word-spacing:-2.565333pt;}
.ws26{word-spacing:-2.560000pt;}
.ws115{word-spacing:-2.474667pt;}
.ws7f{word-spacing:-2.453333pt;}
.ws11b{word-spacing:-2.432000pt;}
.ws30{word-spacing:-2.400000pt;}
.wsdc{word-spacing:-2.389333pt;}
.ws34{word-spacing:-2.346667pt;}
.ws1c{word-spacing:-2.293333pt;}
.ws101{word-spacing:-2.261333pt;}
.ws87{word-spacing:-2.240000pt;}
.wsf9{word-spacing:-2.218667pt;}
.ws3a{word-spacing:-2.186667pt;}
.wsd7{word-spacing:-2.176000pt;}
.ws39{word-spacing:-2.133333pt;}
.ws113{word-spacing:-2.090667pt;}
.ws7e{word-spacing:-2.080000pt;}
.wsfd{word-spacing:-2.005333pt;}
.ws37{word-spacing:-1.973333pt;}
.wsd5{word-spacing:-1.962667pt;}
.ws33{word-spacing:-1.920000pt;}
.wsf2{word-spacing:-1.877333pt;}
.wsb4{word-spacing:-1.866667pt;}
.ws117{word-spacing:-1.834667pt;}
.ws89{word-spacing:-1.813333pt;}
.wsf5{word-spacing:-1.792000pt;}
.ws1a{word-spacing:-1.760000pt;}
.wsf4{word-spacing:-1.749333pt;}
.ws1b{word-spacing:-1.706667pt;}
.ws110{word-spacing:-1.664000pt;}
.ws25{word-spacing:-1.653333pt;}
.wsda{word-spacing:-1.621333pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws1f{word-spacing:-1.546667pt;}
.ws2b{word-spacing:-1.493333pt;}
.ws11{word-spacing:-1.440000pt;}
.wsff{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.386667pt;}
.ws102{word-spacing:-1.365333pt;}
.ws24{word-spacing:-1.333333pt;}
.wsd4{word-spacing:-1.322667pt;}
.ws16{word-spacing:-1.280000pt;}
.wsf1{word-spacing:-1.237333pt;}
.ws18{word-spacing:-1.226667pt;}
.ws116{word-spacing:-1.194667pt;}
.ws36{word-spacing:-1.173333pt;}
.wsef{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.wsea{word-spacing:-1.109333pt;}
.ws23{word-spacing:-1.066667pt;}
.wsf0{word-spacing:-1.024000pt;}
.ws12{word-spacing:-1.013333pt;}
.ws118{word-spacing:-0.981333pt;}
.ws13{word-spacing:-0.960000pt;}
.ws111{word-spacing:-0.938667pt;}
.ws6a{word-spacing:-0.906667pt;}
.wsd8{word-spacing:-0.896000pt;}
.ws38{word-spacing:-0.853333pt;}
.wsfb{word-spacing:-0.810667pt;}
.wsc{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.746667pt;}
.ws106{word-spacing:-0.725333pt;}
.ws3c{word-spacing:-0.693333pt;}
.wsed{word-spacing:-0.682667pt;}
.wsb{word-spacing:-0.640000pt;}
.ws114{word-spacing:-0.597333pt;}
.ws2a{word-spacing:-0.586667pt;}
.wsf3{word-spacing:-0.554667pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws8b{word-spacing:-0.512000pt;}
.ws17{word-spacing:-0.480000pt;}
.wsfe{word-spacing:-0.469333pt;}
.ws79{word-spacing:-0.426667pt;}
.wseb{word-spacing:-0.384000pt;}
.ws67{word-spacing:-0.373333pt;}
.ws105{word-spacing:-0.341333pt;}
.ws66{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.298667pt;}
.ws68{word-spacing:-0.266667pt;}
.ws104{word-spacing:-0.256000pt;}
.ws22{word-spacing:-0.213333pt;}
.wsf7{word-spacing:-0.170667pt;}
.ws78{word-spacing:-0.160000pt;}
.wsfa{word-spacing:-0.128000pt;}
.ws10{word-spacing:-0.106667pt;}
.wsd3{word-spacing:-0.085333pt;}
.ws35{word-spacing:-0.053333pt;}
.wsfc{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.085333pt;}
.ws20{word-spacing:0.106667pt;}
.ws86{word-spacing:0.160000pt;}
.ws10f{word-spacing:0.170667pt;}
.ws88{word-spacing:0.213333pt;}
.wsbc{word-spacing:0.266667pt;}
.ws9b{word-spacing:0.320000pt;}
.wsec{word-spacing:0.341333pt;}
.ws103{word-spacing:0.384000pt;}
.wsbb{word-spacing:0.426667pt;}
.wsb1{word-spacing:0.469333pt;}
.wsc5{word-spacing:0.480000pt;}
.wsdb{word-spacing:0.554667pt;}
.ws6{word-spacing:0.616000pt;}
.wsc8{word-spacing:0.746667pt;}
.wsc2{word-spacing:1.386667pt;}
.wsc7{word-spacing:1.440000pt;}
.wsa{word-spacing:1.493333pt;}
.ws9a{word-spacing:1.706667pt;}
.ws80{word-spacing:1.973333pt;}
.wsca{word-spacing:2.080000pt;}
.wsf6{word-spacing:2.346667pt;}
.wsc3{word-spacing:2.400000pt;}
.ws85{word-spacing:2.453333pt;}
.ws100{word-spacing:2.474667pt;}
.wsb7{word-spacing:2.560000pt;}
.ws7d{word-spacing:2.720000pt;}
.wsae{word-spacing:2.730667pt;}
.wsee{word-spacing:2.901333pt;}
.wsc1{word-spacing:3.040000pt;}
.ws81{word-spacing:3.093333pt;}
.ws19{word-spacing:3.253333pt;}
.ws9c{word-spacing:3.285333pt;}
.ws69{word-spacing:3.413333pt;}
.wsc6{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.498667pt;}
.ws8a{word-spacing:3.541333pt;}
.ws7c{word-spacing:3.573333pt;}
.ws7a{word-spacing:3.626667pt;}
.ws2f{word-spacing:3.680000pt;}
.ws7b{word-spacing:3.786667pt;}
.wsc0{word-spacing:4.160000pt;}
.wscf{word-spacing:4.213333pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.wscd{word-spacing:4.853333pt;}
.wsce{word-spacing:4.906667pt;}
.wsaf{word-spacing:6.026667pt;}
.ws3b{word-spacing:6.346667pt;}
.ws65{word-spacing:22.912000pt;}
.ws59{word-spacing:29.824000pt;}
.ws58{word-spacing:33.578667pt;}
.ws4f{word-spacing:33.749333pt;}
.ws75{word-spacing:33.834667pt;}
.ws50{word-spacing:37.162667pt;}
.ws73{word-spacing:37.376000pt;}
.ws76{word-spacing:38.186667pt;}
.ws71{word-spacing:40.960000pt;}
.ws53{word-spacing:41.130667pt;}
.ws77{word-spacing:41.301333pt;}
.ws56{word-spacing:44.245333pt;}
.ws54{word-spacing:44.501333pt;}
.ws5e{word-spacing:45.312000pt;}
.ws72{word-spacing:48.042667pt;}
.ws5a{word-spacing:48.213333pt;}
.ws49{word-spacing:49.962667pt;}
.ws74{word-spacing:51.968000pt;}
.ws6f{word-spacing:53.973333pt;}
.ws4c{word-spacing:55.168000pt;}
.wsa1{word-spacing:59.920000pt;}
.ws4a{word-spacing:68.565333pt;}
.ws70{word-spacing:68.906667pt;}
.ws9d{word-spacing:69.253333pt;}
.wsa4{word-spacing:70.746667pt;}
.wsa3{word-spacing:76.832000pt;}
.wsad{word-spacing:82.618667pt;}
.wsa5{word-spacing:84.522667pt;}
.ws5b{word-spacing:85.162667pt;}
.ws48{word-spacing:94.421333pt;}
.ws5f{word-spacing:94.762667pt;}
.ws41{word-spacing:95.232000pt;}
.ws9e{word-spacing:95.461333pt;}
.wsa7{word-spacing:95.685333pt;}
.ws3f{word-spacing:101.248000pt;}
.wsaa{word-spacing:103.189333pt;}
.ws5c{word-spacing:105.429333pt;}
.ws60{word-spacing:107.221333pt;}
.wsa8{word-spacing:112.522667pt;}
.wsa0{word-spacing:114.314667pt;}
.ws55{word-spacing:116.096000pt;}
.ws64{word-spacing:117.888000pt;}
.wsa2{word-spacing:121.856000pt;}
.ws4d{word-spacing:123.221333pt;}
.wsa6{word-spacing:124.021333pt;}
.ws8c{word-spacing:126.464000pt;}
.ws51{word-spacing:126.762667pt;}
.ws5d{word-spacing:128.554667pt;}
.ws9f{word-spacing:131.189333pt;}
.ws8f{word-spacing:132.906667pt;}
.ws95{word-spacing:137.130667pt;}
.ws57{word-spacing:139.221333pt;}
.ws52{word-spacing:149.888000pt;}
.ws4e{word-spacing:157.013333pt;}
.ws8e{word-spacing:163.712000pt;}
.ws61{word-spacing:184.234667pt;}
.ws90{word-spacing:185.045333pt;}
.ws91{word-spacing:195.712000pt;}
.ws93{word-spacing:201.045333pt;}
.ws45{word-spacing:204.245333pt;}
.ws98{word-spacing:209.920000pt;}
.ws96{word-spacing:233.045333pt;}
.ws63{word-spacing:235.221333pt;}
.ws97{word-spacing:238.378667pt;}
.ws8d{word-spacing:249.472000pt;}
.ws62{word-spacing:253.500267pt;}
.ws42{word-spacing:254.592000pt;}
.ws40{word-spacing:255.616000pt;}
.ws46{word-spacing:271.402667pt;}
.ws47{word-spacing:273.322667pt;}
.ws44{word-spacing:276.949333pt;}
.ws43{word-spacing:281.258667pt;}
.wsa9{word-spacing:324.912000pt;}
.ws92{word-spacing:644.394667pt;}
._54{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.202133pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.112533pt;}
._8{width:0.960000pt;}
._9{width:2.240000pt;}
._7{width:3.413333pt;}
._5{width:4.320000pt;}
._6{width:5.546667pt;}
._a{width:6.613333pt;}
._b{width:8.213333pt;}
._c{width:9.280000pt;}
._9b{width:10.826667pt;}
._7e{width:20.869333pt;}
._21{width:22.535467pt;}
._7f{width:23.930667pt;}
._37{width:39.680000pt;}
._9a{width:40.880000pt;}
._4e{width:42.942933pt;}
._2f{width:45.056000pt;}
._38{width:47.829333pt;}
._32{width:51.925333pt;}
._2b{width:54.912000pt;}
._3a{width:55.978667pt;}
._2c{width:57.813333pt;}
._59{width:58.709333pt;}
._80{width:59.882667pt;}
._22{width:62.506667pt;}
._82{width:63.466667pt;}
._25{width:65.578667pt;}
._4f{width:66.517333pt;}
._56{width:68.266667pt;}
._26{width:69.162667pt;}
._96{width:75.488000pt;}
._81{width:76.869333pt;}
._85{width:80.725333pt;}
._57{width:83.029333pt;}
._47{width:84.394667pt;}
._94{width:85.872000pt;}
._8c{width:89.861333pt;}
._95{width:90.944000pt;}
._48{width:92.501333pt;}
._8f{width:93.637333pt;}
._53{width:95.018667pt;}
._87{width:96.192000pt;}
._92{width:97.514667pt;}
._4a{width:100.650667pt;}
._8d{width:101.696000pt;}
._1b{width:103.168000pt;}
._49{width:105.429333pt;}
._8a{width:106.373333pt;}
._93{width:107.978667pt;}
._12{width:108.928000pt;}
._90{width:110.208000pt;}
._1a{width:111.317333pt;}
._8b{width:112.605867pt;}
._20{width:114.560000pt;}
._27{width:116.096000pt;}
._41{width:118.485333pt;}
._99{width:121.018667pt;}
._55{width:123.178667pt;}
._88{width:124.330667pt;}
._42{width:125.525333pt;}
._34{width:127.445333pt;}
._45{width:128.810667pt;}
._51{width:129.834667pt;}
._1d{width:130.730667pt;}
._10{width:131.925333pt;}
._60{width:133.461333pt;}
._98{width:134.549333pt;}
._31{width:136.704000pt;}
._28{width:139.221333pt;}
._3c{width:141.013333pt;}
._5b{width:147.370667pt;}
._4c{width:149.290667pt;}
._3b{width:150.490667pt;}
._40{width:158.293333pt;}
._5c{width:160.042667pt;}
._91{width:162.101333pt;}
._24{width:164.608000pt;}
._67{width:165.589333pt;}
._2e{width:166.954667pt;}
._62{width:168.362667pt;}
._44{width:169.344000pt;}
._35{width:171.221333pt;}
._4d{width:172.885333pt;}
._1c{width:174.506667pt;}
._46{width:177.621333pt;}
._1f{width:179.370667pt;}
._2a{width:184.021333pt;}
._65{width:185.130667pt;}
._6c{width:187.776000pt;}
._64{width:193.920000pt;}
._6e{width:194.858667pt;}
._3d{width:197.632000pt;}
._23{width:199.986133pt;}
._17{width:204.002133pt;}
._97{width:206.154667pt;}
._7d{width:216.917333pt;}
._61{width:217.898667pt;}
._11{width:220.074667pt;}
._76{width:222.378667pt;}
._4b{width:223.360000pt;}
._77{width:224.386133pt;}
._7b{width:226.048000pt;}
._5a{width:228.181333pt;}
._3e{width:231.680000pt;}
._71{width:233.045333pt;}
._3f{width:234.242133pt;}
._30{width:235.733333pt;}
._f{width:236.800000pt;}
._86{width:240.426667pt;}
._36{width:243.413333pt;}
._72{width:245.504000pt;}
._7c{width:249.472000pt;}
._5f{width:253.397333pt;}
._73{width:256.170667pt;}
._69{width:260.138667pt;}
._43{width:262.485333pt;}
._74{width:267.264000pt;}
._1e{width:270.122667pt;}
._2d{width:277.888000pt;}
._83{width:279.290667pt;}
._14{width:280.832000pt;}
._58{width:281.770667pt;}
._50{width:286.037333pt;}
._29{width:289.322667pt;}
._18{width:291.498667pt;}
._5d{width:296.490667pt;}
._68{width:298.837333pt;}
._89{width:300.048000pt;}
._16{width:301.440000pt;}
._8e{width:309.344000pt;}
._19{width:310.357333pt;}
._15{width:318.208000pt;}
._84{width:320.768000pt;}
._33{width:326.741333pt;}
._13{width:328.917333pt;}
._52{width:338.602667pt;}
._39{width:349.269333pt;}
._e{width:390.997333pt;}
._6f{width:409.173333pt;}
._75{width:415.877333pt;}
._5e{width:416.981333pt;}
._66{width:492.160000pt;}
._70{width:498.005333pt;}
._6d{width:567.381333pt;}
._6a{width:598.144000pt;}
._79{width:608.810667pt;}
._6b{width:621.866667pt;}
._7a{width:628.992000pt;}
._78{width:636.859200pt;}
._63{width:658.176000pt;}
.fsc{font-size:21.765333pt;}
.fs6{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs5{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y118{bottom:74.011200pt;}
.yad{bottom:74.142933pt;}
.y1ae{bottom:74.342533pt;}
.y66{bottom:74.462533pt;}
.y17c{bottom:74.464533pt;}
.y7e{bottom:74.838000pt;}
.yf7{bottom:75.320800pt;}
.y141{bottom:75.811867pt;}
.y2d{bottom:78.144267pt;}
.y1d4{bottom:79.219467pt;}
.yf4{bottom:82.370400pt;}
.y147{bottom:82.883867pt;}
.y215{bottom:84.678667pt;}
.y117{bottom:88.677867pt;}
.yac{bottom:88.809600pt;}
.y7d{bottom:88.832667pt;}
.yf6{bottom:89.315467pt;}
.y140{bottom:89.811867pt;}
.y1ad{bottom:90.342533pt;}
.y65{bottom:90.462533pt;}
.y17b{bottom:90.464533pt;}
.y2c{bottom:91.474267pt;}
.y1d3{bottom:92.552800pt;}
.yf1{bottom:93.975733pt;}
.yf3{bottom:96.813067pt;}
.y146{bottom:96.878533pt;}
.y214{bottom:98.012000pt;}
.y7c{bottom:102.827333pt;}
.y116{bottom:103.339600pt;}
.y13f{bottom:103.806533pt;}
.y2b{bottom:104.804267pt;}
.y1d2{bottom:105.886133pt;}
.y1ac{bottom:106.342533pt;}
.y64{bottom:106.462533pt;}
.y17a{bottom:106.464533pt;}
.yf2{bottom:111.255733pt;}
.y213{bottom:111.345333pt;}
.yab{bottom:111.486933pt;}
.y1d1{bottom:119.219467pt;}
.y1ab{bottom:122.342533pt;}
.y63{bottom:122.462533pt;}
.y179{bottom:122.464533pt;}
.y212{bottom:124.678667pt;}
.yaa{bottom:125.929600pt;}
.y115{bottom:126.020400pt;}
.y13e{bottom:126.245333pt;}
.y13c{bottom:129.969333pt;}
.y1d0{bottom:132.552800pt;}
.yf0{bottom:137.037067pt;}
.y211{bottom:138.012000pt;}
.y1aa{bottom:138.342533pt;}
.y62{bottom:138.462533pt;}
.y178{bottom:138.464533pt;}
.y13d{bottom:139.358667pt;}
.ya9{bottom:140.372267pt;}
.y114{bottom:140.466533pt;}
.y1cf{bottom:145.886133pt;}
.y28{bottom:149.108267pt;}
.y210{bottom:151.345333pt;}
.yef{bottom:151.479733pt;}
.y1a9{bottom:154.342533pt;}
.y61{bottom:154.462533pt;}
.y177{bottom:154.464533pt;}
.ya8{bottom:154.814933pt;}
.y113{bottom:154.940667pt;}
.y1ce{bottom:159.219467pt;}
.y13b{bottom:163.812000pt;}
.y20f{bottom:164.678667pt;}
.y27{bottom:165.108267pt;}
.yee{bottom:165.922400pt;}
.ya7{bottom:169.257600pt;}
.y112{bottom:169.383333pt;}
.yea{bottom:170.295733pt;}
.y1a8{bottom:170.342533pt;}
.y60{bottom:170.462533pt;}
.y176{bottom:170.464533pt;}
.y1cd{bottom:172.552800pt;}
.y13a{bottom:177.149333pt;}
.y20e{bottom:178.012000pt;}
.yed{bottom:180.365067pt;}
.y26{bottom:181.108267pt;}
.ya6{bottom:183.700267pt;}
.y111{bottom:183.826000pt;}
.y1cc{bottom:185.886133pt;}
.y1a7{bottom:186.342533pt;}
.y5f{bottom:186.462533pt;}
.y175{bottom:186.464533pt;}
.y20d{bottom:191.345333pt;}
.yec{bottom:194.807733pt;}
.y9e{bottom:195.329867pt;}
.y25{bottom:197.108267pt;}
.ya5{bottom:198.188533pt;}
.y110{bottom:198.268667pt;}
.y1cb{bottom:199.219467pt;}
.y139{bottom:201.602267pt;}
.y1a6{bottom:202.342533pt;}
.y5e{bottom:202.462533pt;}
.y174{bottom:202.464533pt;}
.y20c{bottom:204.678667pt;}
.yeb{bottom:209.250400pt;}
.y7f{bottom:211.859867pt;}
.y1ca{bottom:212.552800pt;}
.ya4{bottom:212.631200pt;}
.y10f{bottom:212.711333pt;}
.y2a{bottom:213.108267pt;}
.y109{bottom:213.970000pt;}
.y138{bottom:214.715067pt;}
.y20b{bottom:218.012000pt;}
.y1a5{bottom:218.342533pt;}
.y5d{bottom:218.462533pt;}
.y173{bottom:218.464533pt;}
.y1c9{bottom:225.886133pt;}
.ya3{bottom:227.073867pt;}
.y10e{bottom:227.154000pt;}
.y137{bottom:227.816133pt;}
.y24{bottom:228.750133pt;}
.y29{bottom:229.108267pt;}
.y20a{bottom:231.345333pt;}
.y1a4{bottom:234.342533pt;}
.y5c{bottom:234.462533pt;}
.y172{bottom:234.464533pt;}
.ye9{bottom:237.261067pt;}
.y1c8{bottom:239.219467pt;}
.y136{bottom:240.929467pt;}
.ya2{bottom:241.516533pt;}
.y209{bottom:244.678667pt;}
.y1a3{bottom:250.342533pt;}
.y5b{bottom:250.462533pt;}
.y171{bottom:250.464533pt;}
.y1c7{bottom:252.552800pt;}
.y10d{bottom:252.935333pt;}
.y135{bottom:254.042800pt;}
.ya1{bottom:255.959200pt;}
.y208{bottom:258.012000pt;}
.y1c6{bottom:265.886133pt;}
.y1a2{bottom:266.342533pt;}
.y5a{bottom:266.462533pt;}
.y170{bottom:266.464533pt;}
.y134{bottom:267.156133pt;}
.ye8{bottom:268.295200pt;}
.ya0{bottom:270.401867pt;}
.y207{bottom:271.345333pt;}
.y10c{bottom:278.716667pt;}
.y1c5{bottom:279.219467pt;}
.y133{bottom:280.269467pt;}
.y1a1{bottom:282.342533pt;}
.y59{bottom:282.462533pt;}
.y16f{bottom:282.464533pt;}
.y206{bottom:284.678667pt;}
.y9f{bottom:284.844533pt;}
.ye7{bottom:285.628533pt;}
.y1c4{bottom:292.552800pt;}
.y10b{bottom:293.159333pt;}
.y132{bottom:293.606800pt;}
.y23{bottom:295.298000pt;}
.y205{bottom:298.012000pt;}
.y1a0{bottom:298.342533pt;}
.y58{bottom:298.462533pt;}
.y16e{bottom:298.464533pt;}
.y1c3{bottom:305.886133pt;}
.y131{bottom:306.720133pt;}
.y10a{bottom:307.602000pt;}
.y9d{bottom:310.625867pt;}
.y204{bottom:311.345333pt;}
.y19f{bottom:314.342533pt;}
.y57{bottom:314.462533pt;}
.y16d{bottom:314.464533pt;}
.y1c2{bottom:319.219467pt;}
.y22{bottom:319.604667pt;}
.y203{bottom:324.678667pt;}
.y9c{bottom:325.068533pt;}
.y108{bottom:327.717733pt;}
.y19e{bottom:330.342533pt;}
.ye6{bottom:330.348533pt;}
.y56{bottom:330.462533pt;}
.y16c{bottom:330.464533pt;}
.yc3{bottom:330.588533pt;}
.y12d{bottom:331.133467pt;}
.y130{bottom:331.173467pt;}
.y1c1{bottom:332.552800pt;}
.y21{bottom:335.604667pt;}
.y12c{bottom:337.806800pt;}
.y202{bottom:338.012000pt;}
.y9b{bottom:339.511200pt;}
.y121{bottom:341.418800pt;}
.y12e{bottom:344.470800pt;}
.y12f{bottom:344.510800pt;}
.y1c0{bottom:345.886133pt;}
.y19d{bottom:346.342533pt;}
.ye5{bottom:346.348533pt;}
.y55{bottom:346.462533pt;}
.y16b{bottom:346.464533pt;}
.yc2{bottom:346.588533pt;}
.y96{bottom:351.105867pt;}
.y201{bottom:351.345333pt;}
.y20{bottom:351.604667pt;}
.y9a{bottom:353.953867pt;}
.y1bf{bottom:359.219467pt;}
.y19c{bottom:362.342533pt;}
.ye4{bottom:362.348533pt;}
.y54{bottom:362.462533pt;}
.y16a{bottom:362.464533pt;}
.yc1{bottom:362.588533pt;}
.y107{bottom:363.626667pt;}
.y200{bottom:364.678667pt;}
.y1f{bottom:367.604667pt;}
.y99{bottom:368.396533pt;}
.y12b{bottom:368.924133pt;}
.y145{bottom:369.187867pt;}
.y1be{bottom:372.552800pt;}
.y1ff{bottom:378.012000pt;}
.y106{bottom:378.072933pt;}
.y19b{bottom:378.342533pt;}
.ye3{bottom:378.348533pt;}
.y53{bottom:378.462533pt;}
.y169{bottom:378.464533pt;}
.yc0{bottom:378.588533pt;}
.y12a{bottom:382.037467pt;}
.y98{bottom:382.839200pt;}
.y144{bottom:383.182533pt;}
.y1e{bottom:383.604667pt;}
.y1bd{bottom:385.886133pt;}
.y1fe{bottom:391.345333pt;}
.y105{bottom:392.550533pt;}
.y19a{bottom:394.342533pt;}
.ye2{bottom:394.348533pt;}
.y52{bottom:394.462533pt;}
.y168{bottom:394.464533pt;}
.ybf{bottom:394.588533pt;}
.y129{bottom:395.150800pt;}
.y97{bottom:397.281867pt;}
.y1bc{bottom:399.219467pt;}
.y1d{bottom:399.604667pt;}
.y1fd{bottom:404.678667pt;}
.y104{bottom:406.993200pt;}
.y128{bottom:408.264133pt;}
.y199{bottom:410.342533pt;}
.ye1{bottom:410.348533pt;}
.y51{bottom:410.462533pt;}
.y167{bottom:410.464533pt;}
.ybe{bottom:410.588533pt;}
.y1bb{bottom:412.552800pt;}
.y1c{bottom:415.604667pt;}
.y1fc{bottom:418.012000pt;}
.y127{bottom:421.377467pt;}
.y103{bottom:421.435867pt;}
.y95{bottom:425.292533pt;}
.y1ba{bottom:425.886133pt;}
.y198{bottom:426.342533pt;}
.ye0{bottom:426.348533pt;}
.y50{bottom:426.462533pt;}
.y166{bottom:426.464533pt;}
.ybd{bottom:426.588533pt;}
.y1fb{bottom:431.345333pt;}
.y1b{bottom:431.604667pt;}
.y126{bottom:434.490800pt;}
.y102{bottom:435.878533pt;}
.y1b9{bottom:439.219467pt;}
.y197{bottom:442.342533pt;}
.ydf{bottom:442.348533pt;}
.y4f{bottom:442.462533pt;}
.y165{bottom:442.464533pt;}
.ybc{bottom:442.588533pt;}
.y1fa{bottom:444.678667pt;}
.y125{bottom:447.604133pt;}
.y1a{bottom:447.604667pt;}
.y101{bottom:450.321200pt;}
.y1b8{bottom:452.552800pt;}
.y94{bottom:456.310400pt;}
.y1f9{bottom:458.012000pt;}
.y196{bottom:458.342533pt;}
.yde{bottom:458.348533pt;}
.y4e{bottom:458.462533pt;}
.y164{bottom:458.464533pt;}
.ybb{bottom:458.588533pt;}
.yfa{bottom:458.801200pt;}
.y124{bottom:460.717467pt;}
.y19{bottom:463.604667pt;}
.y100{bottom:464.763867pt;}
.y1b7{bottom:465.886133pt;}
.y1f8{bottom:471.345333pt;}
.y93{bottom:473.643733pt;}
.y123{bottom:473.830800pt;}
.y195{bottom:474.342533pt;}
.ydd{bottom:474.348533pt;}
.y4d{bottom:474.462533pt;}
.y163{bottom:474.464533pt;}
.yba{bottom:474.588533pt;}
.y1b6{bottom:479.219467pt;}
.y18{bottom:479.604667pt;}
.y1f7{bottom:484.678667pt;}
.y122{bottom:486.944133pt;}
.y194{bottom:489.982533pt;}
.ydc{bottom:490.348533pt;}
.y4c{bottom:490.462533pt;}
.y162{bottom:490.464533pt;}
.yff{bottom:490.545200pt;}
.yb9{bottom:490.588533pt;}
.y1b5{bottom:492.552800pt;}
.y17{bottom:495.604667pt;}
.y1f6{bottom:498.012000pt;}
.ydb{bottom:506.348533pt;}
.y4b{bottom:506.462533pt;}
.y161{bottom:506.464533pt;}
.yb8{bottom:506.588533pt;}
.y1f5{bottom:511.345333pt;}
.y11f{bottom:511.397467pt;}
.y11e{bottom:511.406800pt;}
.y11d{bottom:511.416133pt;}
.y11c{bottom:511.425467pt;}
.y16{bottom:511.604667pt;}
.yfe{bottom:516.326533pt;}
.y92{bottom:519.990267pt;}
.y1b4{bottom:521.982533pt;}
.y193{bottom:522.342533pt;}
.yda{bottom:522.348533pt;}
.y4a{bottom:522.462533pt;}
.y160{bottom:522.464533pt;}
.yb7{bottom:522.588533pt;}
.y1f4{bottom:524.678667pt;}
.y120{bottom:524.734800pt;}
.y11b{bottom:524.762800pt;}
.y91{bottom:527.328933pt;}
.y15{bottom:527.604667pt;}
.yfd{bottom:530.769200pt;}
.y1f3{bottom:538.012000pt;}
.y192{bottom:538.342533pt;}
.yd9{bottom:538.348533pt;}
.y49{bottom:538.462533pt;}
.y15f{bottom:538.464533pt;}
.yb6{bottom:538.588533pt;}
.y14{bottom:543.604667pt;}
.yfc{bottom:545.211867pt;}
.y90{bottom:549.110267pt;}
.y1f2{bottom:551.345333pt;}
.y11a{bottom:552.446800pt;}
.y191{bottom:554.342533pt;}
.yd8{bottom:554.348533pt;}
.y48{bottom:554.462533pt;}
.y15e{bottom:554.464533pt;}
.yb5{bottom:554.588533pt;}
.y8f{bottom:556.448933pt;}
.yfb{bottom:559.654533pt;}
.y1f1{bottom:564.678667pt;}
.y190{bottom:570.342533pt;}
.yd7{bottom:570.348533pt;}
.y47{bottom:570.462533pt;}
.y15d{bottom:570.464533pt;}
.yb4{bottom:570.588533pt;}
.y13{bottom:573.058000pt;}
.y1f0{bottom:578.012000pt;}
.y8e{bottom:578.230267pt;}
.y8d{bottom:585.568933pt;}
.y1b3{bottom:586.102533pt;}
.y18f{bottom:586.342533pt;}
.yd6{bottom:586.348533pt;}
.y46{bottom:586.462533pt;}
.y15c{bottom:586.464533pt;}
.yb3{bottom:586.588533pt;}
.yf9{bottom:587.665200pt;}
.y1ef{bottom:591.345333pt;}
.y143{bottom:592.281200pt;}
.y12{bottom:597.171600pt;}
.y18e{bottom:602.342533pt;}
.yd5{bottom:602.348533pt;}
.y45{bottom:602.462533pt;}
.y15b{bottom:602.464533pt;}
.yb2{bottom:602.588533pt;}
.y1ee{bottom:604.678667pt;}
.y142{bottom:606.275867pt;}
.y8c{bottom:607.339600pt;}
.y11{bottom:607.571600pt;}
.y8b{bottom:614.667600pt;}
.y1ed{bottom:618.012000pt;}
.y18d{bottom:618.342533pt;}
.yd4{bottom:618.348533pt;}
.y44{bottom:618.462533pt;}
.y15a{bottom:618.464533pt;}
.yb1{bottom:618.588533pt;}
.yf8{bottom:618.689200pt;}
.y1ec{bottom:631.345333pt;}
.y1b2{bottom:634.102533pt;}
.y18c{bottom:634.342533pt;}
.yd3{bottom:634.348533pt;}
.y43{bottom:634.462533pt;}
.y159{bottom:634.464533pt;}
.yb0{bottom:634.588533pt;}
.y7b{bottom:634.595867pt;}
.y10{bottom:635.763200pt;}
.y8a{bottom:636.448933pt;}
.y89{bottom:643.787600pt;}
.y1eb{bottom:644.678667pt;}
.y18b{bottom:650.342533pt;}
.yd2{bottom:650.348533pt;}
.y42{bottom:650.462533pt;}
.y158{bottom:650.464533pt;}
.y7a{bottom:650.595867pt;}
.yf{bottom:652.585600pt;}
.y1ea{bottom:658.012000pt;}
.ye{bottom:659.763200pt;}
.y88{bottom:665.568933pt;}
.y18a{bottom:666.342533pt;}
.yd1{bottom:666.348533pt;}
.y41{bottom:666.462533pt;}
.y157{bottom:666.464533pt;}
.y79{bottom:666.595867pt;}
.y1e9{bottom:671.345333pt;}
.y87{bottom:672.907600pt;}
.yd{bottom:676.585600pt;}
.y189{bottom:682.342533pt;}
.yd0{bottom:682.348533pt;}
.y40{bottom:682.462533pt;}
.y156{bottom:682.464533pt;}
.y78{bottom:682.595867pt;}
.yc{bottom:683.763200pt;}
.y1e8{bottom:684.678667pt;}
.y86{bottom:694.678267pt;}
.yb{bottom:695.763200pt;}
.y1e7{bottom:698.012000pt;}
.y1b1{bottom:698.102533pt;}
.y188{bottom:698.342533pt;}
.ycf{bottom:698.348533pt;}
.y3f{bottom:698.462533pt;}
.y155{bottom:698.464533pt;}
.y77{bottom:698.595867pt;}
.y85{bottom:702.006267pt;}
.y1e6{bottom:711.345333pt;}
.ya{bottom:712.585733pt;}
.y187{bottom:714.342533pt;}
.y3e{bottom:714.462533pt;}
.y154{bottom:714.464533pt;}
.y76{bottom:714.595867pt;}
.y1e5{bottom:724.678667pt;}
.yce{bottom:729.988533pt;}
.yaf{bottom:730.235867pt;}
.y186{bottom:730.342533pt;}
.y3d{bottom:730.462533pt;}
.y153{bottom:730.464533pt;}
.y75{bottom:730.595867pt;}
.y84{bottom:737.344933pt;}
.y1e4{bottom:738.012000pt;}
.y9{bottom:738.116400pt;}
.y1b0{bottom:746.102533pt;}
.y185{bottom:746.342533pt;}
.y3c{bottom:746.462533pt;}
.y152{bottom:746.464533pt;}
.y74{bottom:746.595867pt;}
.y1e3{bottom:751.345333pt;}
.y8{bottom:756.783067pt;}
.y184{bottom:762.342533pt;}
.y3b{bottom:762.462533pt;}
.y151{bottom:762.464533pt;}
.y73{bottom:762.595867pt;}
.y1e2{bottom:764.678667pt;}
.y83{bottom:768.369200pt;}
.y1e1{bottom:778.012000pt;}
.y183{bottom:778.342533pt;}
.y3a{bottom:778.462533pt;}
.y150{bottom:778.464533pt;}
.ycd{bottom:778.468533pt;}
.y72{bottom:778.595867pt;}
.y82{bottom:785.702533pt;}
.y1e0{bottom:791.345333pt;}
.y6b{bottom:794.102533pt;}
.y182{bottom:794.342533pt;}
.y39{bottom:794.462533pt;}
.y14f{bottom:794.464533pt;}
.ycc{bottom:794.468533pt;}
.y71{bottom:794.595867pt;}
.y7{bottom:797.816533pt;}
.y81{bottom:803.035867pt;}
.y1df{bottom:804.678667pt;}
.y6a{bottom:810.102533pt;}
.y181{bottom:810.342533pt;}
.y38{bottom:810.462533pt;}
.y14e{bottom:810.464533pt;}
.ycb{bottom:810.468533pt;}
.y70{bottom:810.595867pt;}
.y1de{bottom:818.012000pt;}
.y1af{bottom:826.102533pt;}
.y180{bottom:826.342533pt;}
.y37{bottom:826.462533pt;}
.y14d{bottom:826.464533pt;}
.yca{bottom:826.468533pt;}
.y6f{bottom:826.595867pt;}
.y6{bottom:830.226133pt;}
.y1dd{bottom:831.345333pt;}
.y69{bottom:841.982533pt;}
.y36{bottom:842.462533pt;}
.y14c{bottom:842.464533pt;}
.yc9{bottom:842.468533pt;}
.y6e{bottom:842.595867pt;}
.y1dc{bottom:844.678667pt;}
.y17f{bottom:857.982533pt;}
.y1db{bottom:858.012000pt;}
.y35{bottom:858.462533pt;}
.y14b{bottom:858.464533pt;}
.yc8{bottom:858.468533pt;}
.y6d{bottom:858.595867pt;}
.y5{bottom:862.635733pt;}
.y1da{bottom:871.345333pt;}
.y34{bottom:874.462533pt;}
.y14a{bottom:874.464533pt;}
.yc7{bottom:874.468533pt;}
.y1d9{bottom:884.678667pt;}
.y6c{bottom:890.235867pt;}
.y33{bottom:890.462533pt;}
.y149{bottom:890.464533pt;}
.yc6{bottom:890.468533pt;}
.y4{bottom:895.045333pt;}
.y1d8{bottom:898.012000pt;}
.y32{bottom:906.462533pt;}
.y17e{bottom:906.464533pt;}
.yc5{bottom:906.468533pt;}
.y1d7{bottom:911.345333pt;}
.y148{bottom:922.104533pt;}
.y31{bottom:922.462533pt;}
.y17d{bottom:922.464533pt;}
.yc4{bottom:922.468533pt;}
.y1d6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.641467pt;}
.y1d5{bottom:1006.590133pt;}
.y80{bottom:1006.590533pt;}
.y67{bottom:1006.594400pt;}
.y68{bottom:1006.597067pt;}
.y119{bottom:1006.597867pt;}
.y216{bottom:1006.598667pt;}
.yae{bottom:1006.612267pt;}
.yf5{bottom:1006.626400pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h1d{height:25.940104pt;}
.h22{height:25.941704pt;}
.h21{height:25.942237pt;}
.h20{height:25.989171pt;}
.h2{height:27.179688pt;}
.h4{height:29.121094pt;}
.hf{height:29.140625pt;}
.h8{height:29.160156pt;}
.h18{height:29.625000pt;}
.h19{height:29.631433pt;}
.h1a{height:29.631967pt;}
.h14{height:29.645833pt;}
.h1c{height:29.665567pt;}
.ha{height:31.062500pt;}
.h12{height:31.083333pt;}
.h10{height:31.104167pt;}
.h15{height:37.031250pt;}
.he{height:37.057292pt;}
.h13{height:38.177083pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h11{height:39.919375pt;}
.h3{height:50.476562pt;}
.h6{height:50.774503pt;}
.h1f{height:52.596104pt;}
.h17{height:58.957833pt;}
.h16{height:59.000500pt;}
.h1b{height:61.225567pt;}
.h1e{height:79.252104pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:62.740133pt;}
.xa{left:68.031467pt;}
.x16{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x29{left:88.818933pt;}
.x45{left:90.708800pt;}
.x3{left:94.488133pt;}
.xb{left:98.271467pt;}
.x43{left:109.606267pt;}
.x4{left:111.491467pt;}
.x6{left:117.165333pt;}
.x38{left:134.162533pt;}
.x11{left:147.542533pt;}
.x30{left:164.402933pt;}
.x40{left:169.004800pt;}
.x3d{left:176.780133pt;}
.x5{left:189.223467pt;}
.x14{left:211.851467pt;}
.x32{left:218.162533pt;}
.x31{left:223.043867pt;}
.x22{left:227.147867pt;}
.x1a{left:240.470533pt;}
.x21{left:247.894533pt;}
.x24{left:248.907867pt;}
.x26{left:249.904267pt;}
.x23{left:252.182533pt;}
.x1d{left:253.739867pt;}
.x1b{left:255.531867pt;}
.x1c{left:256.715867pt;}
.x25{left:259.674933pt;}
.x2c{left:270.781600pt;}
.x2a{left:272.562933pt;}
.x2b{left:273.757600pt;}
.x1f{left:277.793200pt;}
.x39{left:282.665200pt;}
.x27{left:288.261600pt;}
.x2f{left:290.344267pt;}
.x17{left:293.206533pt;}
.x19{left:295.873200pt;}
.x18{left:296.950533pt;}
.x1e{left:298.646533pt;}
.x20{left:304.235867pt;}
.x2d{left:310.013600pt;}
.x3b{left:323.246533pt;}
.x3a{left:329.471867pt;}
.x2e{left:340.125600pt;}
.x3c{left:377.854800pt;}
.x33{left:387.189200pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x12{left:425.182533pt;}
.x7{left:427.085333pt;}
.x42{left:428.976533pt;}
.xd{left:436.538133pt;}
.x44{left:447.878267pt;}
.x13{left:455.422533pt;}
.x34{left:485.898533pt;}
.x41{left:510.964800pt;}
.x28{left:544.827467pt;}
.x35{left:568.143867pt;}
.x10{left:589.770933pt;}
.x37{left:614.427867pt;}
.x2{left:616.324800pt;}
.x36{left:624.535867pt;}
.x3e{left:641.526800pt;}
.xe{left:647.459200pt;}
.x3f{left:661.216133pt;}
.x15{left:666.358133pt;}
}




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